commit fe8acfbc2c1d621f292b590c502661c72c6bcaf2 Author: Eddyadame Date: Tue Apr 14 15:19:00 2026 -0500 Modbus RTU - Multi Devices diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..3322ed4 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,4 @@ +cmake_minimum_required(VERSION 3.16) + +include($ENV{IDF_PATH}/tools/cmake/project.cmake) +project(modbus_tcp_esp32) \ No newline at end of file diff --git a/README.txt b/README.txt new file mode 100644 index 0000000..096585f --- /dev/null +++ b/README.txt @@ -0,0 +1,42 @@ +This is a simplified version of Modbus TCP that allows PICS to simulate the equipment: + + - All you need to do to get this running is going into the spiffs folder and open Objects.csv + + - You wil create your Modbus Register Map, this will based on the equipment or UDTs + + - For Input Coil & Input Registers, you will need to create a Output Coil & Holding Register to edit the value + + - Once you modify the Objects.csv file, build and flash the program into the ESP32 board + + - Go to TOP Server and add the Modbus TCP/IP device + + +For PICS: + + - Create an I/O Connection, Set it as OPC Client, choose TOPServer + + - To add the Modbus Device (ESP32), create an I/O Variable, Name the I/O + + - Under Address, you will follow how Ignition UDT works. + + - Device Channel . Device . Tag Name (Address) + + - EX: DFW2_DC3_COD_A11_CH.DFW2_DC3_COD_A11.30001 + + - You will be able to view the data or edit the value + + +Objects.csv Template / Example: +type: Can be an Input Coil (Input), Output Coil (Output), Input Holding Register (Input_Holding), or Output Holding Register (Holding_Reg) +address: Modbus Register, Inputs: 1 - 9999, Outputs: 10000 - 19999, Input_Holding: 30000 - 39999, Holding_Reg: 40000 - 49999 (They can be 6 digits long as well) +name: Name of Modbus Register +data_type: bool, uint16, float, uint32, double +control_address: Address of Ouput or Holding_Reg that will control this Input; if it's an output leave it blank +notes: Any text that will help you identify it + + +type,address,name,data_type,control_address,notes +Coil,1,DI1,bool,10005,Digital Input 1 +Discrete_Input,10005,DO1,bool,,Digital Output 2 +Input_Register,320315,AI1,uint16,465921,Analog Input 1 +Holding_Register,465921,AO1,uint16,,Analog Output 1 \ No newline at end of file diff --git a/app_main.txt b/app_main.txt new file mode 100644 index 0000000..991d02a --- /dev/null +++ b/app_main.txt @@ -0,0 +1,368 @@ +void app_main(void) +{ + esp_err_t ret; + size_t i; + + ESP_LOGI(TAG, "Starting Modbus RTU device"); + + /* ------------------------------------------------------------- + RS485 DE PIN TEST + Toggle the configured DE pin so we can verify the shield + actually responds to the GPIO controlling transmit enable. + Watch the TX LED on the RS485 shield. + ------------------------------------------------------------- */ + + ESP_LOGI(TAG, "Testing RS485 DE pin control"); + + gpio_reset_pin(GPIO_NUM_4); + gpio_set_direction(GPIO_NUM_4, GPIO_MODE_OUTPUT); + + for (int i = 0; i < 10; i++) + { + ESP_LOGI(TAG, "DE LOW"); + gpio_set_level(GPIO_NUM_4, 0); + vTaskDelay(pdMS_TO_TICKS(1000)); + + ESP_LOGI(TAG, "DE HIGH"); + gpio_set_level(GPIO_NUM_4, 1); + vTaskDelay(pdMS_TO_TICKS(1000)); + } + + ESP_LOGI(TAG, "DE pin test finished"); + + ret = nvs_flash_init(); + if (ret == ESP_ERR_NVS_NO_FREE_PAGES || ret == ESP_ERR_NVS_NEW_VERSION_FOUND) + { + ESP_ERROR_CHECK(nvs_flash_erase()); + ret = nvs_flash_init(); + } + ESP_ERROR_CHECK(ret); + + ESP_ERROR_CHECK(spiffs_init()); + spiffs_list_files(); + + if (!config_store_load(DEVICE_CONFIG_PATH, &g_device_cfg)) + { + ESP_LOGE(TAG, "Failed to load device config: %s", DEVICE_CONFIG_PATH); + return; + } + + ESP_LOGI(TAG, + "RTU config: uart=%u baud=%u parity=%d stop_bits=%u tx=%d rx=%d de=%d", + (unsigned)g_device_cfg.rtu.uart_num, + (unsigned)g_device_cfg.rtu.baud_rate, + (int)g_device_cfg.rtu.parity, + (unsigned)g_device_cfg.rtu.stop_bits, + g_device_cfg.rtu.tx_pin, + g_device_cfg.rtu.rx_pin, + g_device_cfg.rtu.de_pin); + + ESP_LOGI(TAG, "Configured device_count = %u", + (unsigned)g_device_cfg.modbus.device_count); + + for (i = 0; i < g_device_cfg.modbus.device_count; i++) + { + ESP_LOGI(TAG, + "CFG device[%u]: enabled=%u unit_id=%u name=%s csv=%s", + (unsigned)i, + g_device_cfg.devices[i].enabled ? 1 : 0, + (unsigned)g_device_cfg.devices[i].unit_id, + g_device_cfg.devices[i].name, + g_device_cfg.devices[i].csv); + } + + if (g_device_cfg.modbus.device_count == 0U) + { + ESP_LOGE(TAG, "No Modbus devices configured"); + return; + } + + if (g_device_cfg.modbus.device_count > MAX_VIRTUAL_DEVICES) + { + ESP_LOGE(TAG, "Too many virtual devices (%u)", + (unsigned)g_device_cfg.modbus.device_count); + return; + } + + if (g_devices != NULL) + { + free(g_devices); + g_devices = NULL; + } + + g_devices = calloc(g_device_cfg.modbus.device_count, sizeof(modbus_device_t)); + if (g_devices == NULL) + { + ESP_LOGE(TAG, "Failed to allocate device table for %u devices", + (unsigned)g_device_cfg.modbus.device_count); + return; + } + + g_device_count = 0U; + + modbus_rtu_init(&g_rtu_ctx, + (uart_port_t)g_device_cfg.rtu.uart_num, + g_device_cfg.rtu.baud_rate); + + ESP_ERROR_CHECK(modbus_uart_init(&g_device_cfg)); + + ESP_LOGI(TAG, + "UART driver installed: uart=%d tx=%d rx=%d de=%d baud=%d", + g_device_cfg.rtu.uart_num, + g_device_cfg.rtu.tx_pin, + g_device_cfg.rtu.rx_pin, + g_device_cfg.rtu.de_pin, + (int)g_device_cfg.rtu.baud_rate); + + for (i = 0; i < g_device_cfg.modbus.device_count; i++) + { + modbus_device_t *dev; + const virtual_device_settings_t *cfg_dev = &g_device_cfg.devices[i]; + + if (!cfg_dev->enabled) + { + ESP_LOGI(TAG, "Skipping disabled device[%u]", (unsigned)i); + continue; + } + + dev = &g_devices[g_device_count]; + memset(dev, 0, sizeof(*dev)); + + dev->unit_id = cfg_dev->unit_id; + + strncpy(dev->name, cfg_dev->name, sizeof(dev->name) - 1U); + dev->name[sizeof(dev->name) - 1U] = '\0'; + + if (strncmp(cfg_dev->csv, "/spiffs/", 8U) == 0) + { + strncpy(dev->csv_path, cfg_dev->csv, sizeof(dev->csv_path) - 1U); + dev->csv_path[sizeof(dev->csv_path) - 1U] = '\0'; + } + else + { + snprintf(dev->csv_path, + sizeof(dev->csv_path), + "/spiffs/%s", + cfg_dev->csv); + } + + ESP_LOGI(TAG, + "Preparing device[%u]: unit_id=%u name=%s csv=%s", + (unsigned)i, + (unsigned)dev->unit_id, + dev->name, + dev->csv_path); + + if (!file_exists(dev->csv_path)) + { + ESP_LOGE(TAG, "CSV file not found for device %u: %s", + (unsigned)dev->unit_id, + dev->csv_path); + continue; + } + + modbus_points_init(&dev->db); + + if (!modbus_points_load(&dev->db, dev->csv_path)) + { + ESP_LOGE(TAG, "Failed to load CSV for device %u: %s", + (unsigned)dev->unit_id, + dev->csv_path); + continue; + } + + if (dev->db.count > MODBUS_MAX_POINTS) + { + ESP_LOGE(TAG, + "Device %u exceeded MODBUS_MAX_POINTS (%u > %u)", + (unsigned)dev->unit_id, + (unsigned)dev->db.count, + (unsigned)MODBUS_MAX_POINTS); + abort(); + } + + if (!modbus_memory_init(&dev->mem, &dev->db)) + { + ESP_LOGE(TAG, "Memory init failed for device %u", + (unsigned)dev->unit_id); + continue; + } + + if (!modbus_rtu_add_device(&g_rtu_ctx, + dev->unit_id, + &dev->mem, + dev->name)) + { + ESP_LOGE(TAG, "Failed to register RTU device unit_id=%u name=%s", + (unsigned)dev->unit_id, + dev->name); + continue; + } + + ESP_LOGI(TAG, "Device %u (%s) loaded %u Modbus points from %s", + (unsigned)dev->unit_id, + dev->name, + (unsigned)dev->db.count, + dev->csv_path); + + g_device_count++; + } + + ESP_LOGI(TAG, "----- Runtime Modbus Device Table -----"); + + for (i = 0; i < g_device_count; i++) + { + ESP_LOGI(TAG, + "RUNTIME device[%u]: unit_id=%u name=%s csv=%s points=%u", + (unsigned)i, + (unsigned)g_devices[i].unit_id, + g_devices[i].name, + g_devices[i].csv_path, + (unsigned)g_devices[i].db.count); + } + + ESP_LOGI(TAG, "---------------------------------------"); + + ESP_LOGI(TAG, "----- Modbus Point Capacity -----"); + + { + size_t total_points_used = 0; + size_t total_points_capacity = g_device_count * MODBUS_MAX_POINTS; + size_t total_points_remaining = 0; + + size_t free_heap = heap_caps_get_free_size(MALLOC_CAP_8BIT); + size_t largest_block = heap_caps_get_largest_free_block(MALLOC_CAP_8BIT); + + size_t point_struct_size = sizeof(modbus_point_t); + size_t heap_equivalent_points = 0; + + if (point_struct_size > 0U) + heap_equivalent_points = free_heap / point_struct_size; + + for (i = 0; i < g_device_count; i++) + { + const modbus_device_t *dev = &g_devices[i]; + size_t remaining = 0; + float pct = 0.0f; + + if (dev->db.count < MODBUS_MAX_POINTS) + remaining = MODBUS_MAX_POINTS - dev->db.count; + + if (MODBUS_MAX_POINTS > 0U) + pct = (100.0f * (float)dev->db.count) / (float)MODBUS_MAX_POINTS; + + ESP_LOGI(TAG, + "Device %u (%s): used=%u / max=%u, remaining=%u (%.1f%% used)", + (unsigned)dev->unit_id, + dev->name, + (unsigned)dev->db.count, + (unsigned)MODBUS_MAX_POINTS, + (unsigned)remaining, + pct); + + total_points_used += dev->db.count; + total_points_remaining += remaining; + } + + ESP_LOGI(TAG, + "Configured capacity: used=%u / max=%u, remaining=%u", + (unsigned)total_points_used, + (unsigned)total_points_capacity, + (unsigned)total_points_remaining); + + ESP_LOGI(TAG, + "Free heap: %u bytes, largest block: %u bytes, point size: %u bytes", + (unsigned)free_heap, + (unsigned)largest_block, + (unsigned)point_struct_size); + + ESP_LOGI(TAG, + "Heap-equivalent points available (informational only): %u", + (unsigned)heap_equivalent_points); + } + + ESP_LOGI(TAG, "---------------------------------"); + + ESP_LOGI(TAG, "----- Point Cost Guide -----"); + ESP_LOGI(TAG, "Internal point usage (counts against MODBUS_MAX_POINTS):"); + ESP_LOGI(TAG, " data_type=bool -> 1 point"); + ESP_LOGI(TAG, " data_type=uint16 -> 1 point"); + ESP_LOGI(TAG, " data_type=uint32 -> 2 points"); + ESP_LOGI(TAG, " data_type=float -> 2 points"); + ESP_LOGI(TAG, " data_type=double -> 4 points"); + + ESP_LOGI(TAG, "PICS staging usage (for pics_address spacing only):"); + ESP_LOGI(TAG, " pics_data_type=Boolean -> 1 register"); + ESP_LOGI(TAG, " pics_data_type=Integer -> 2 registers"); + ESP_LOGI(TAG, " pics_data_type=Float -> 4 registers"); + ESP_LOGI(TAG, " pics_data_type=None -> 0 registers"); + + ESP_LOGI(TAG, "Planning examples:"); + ESP_LOGI(TAG, " 100 uint16 CSV rows -> about 100 internal points"); + ESP_LOGI(TAG, " 100 float CSV rows -> about 200 internal points"); + ESP_LOGI(TAG, " 100 double CSV rows -> about 400 internal points"); + ESP_LOGI(TAG, "--------------------------------"); + + ESP_LOGI(TAG, "----- Device Type Mix -----"); + + for (i = 0; i < g_device_count; i++) + { + print_device_type_mix(&g_devices[i]); + } + + ESP_LOGI(TAG, "---------------------------"); + + ESP_LOGI(TAG, "----- Modbus Memory Usage -----"); + + { + size_t total_points = 0; + size_t d; + + for (d = 0; d < g_device_count; d++) + { + const modbus_device_t *dev = &g_devices[d]; + + ESP_LOGI(TAG, + "Device %u (%s): %u / %u points used (%.1f%%)", + (unsigned)dev->unit_id, + dev->name, + (unsigned)dev->db.count, + (unsigned)MODBUS_MAX_POINTS, + (100.0f * (float)dev->db.count) / (float)MODBUS_MAX_POINTS); + + total_points += dev->db.count; + } + + ESP_LOGI(TAG, "TOTAL POINTS LOADED: %u", (unsigned)total_points); + } + + ESP_LOGI(TAG, "--------------------------------"); + + if (g_device_count == 0U) + { + ESP_LOGE(TAG, "No valid Modbus devices loaded, not starting RTU"); + return; + } + + { + BaseType_t rc; + + ESP_LOGI(TAG, "Creating modbus_rtu_task"); + rc = xTaskCreate(modbus_rtu_task, + "modbus_rtu_task", + 8192, + NULL, + 5, + NULL); + ESP_LOGI(TAG, "modbus_rtu_task create rc=%ld", (long)rc); + + ESP_LOGI(TAG, "Creating modbus_override_task"); + rc = xTaskCreate(modbus_override_task, + "modbus_override_task", + 8192, + NULL, + 5, + NULL); + ESP_LOGI(TAG, "modbus_override_task create rc=%ld", (long)rc); + } +} \ No newline at end of file diff --git a/build/.bin_timestamp b/build/.bin_timestamp new file mode 100644 index 0000000..45d8a4e --- /dev/null +++ b/build/.bin_timestamp @@ -0,0 +1 @@ +952cc5b65db8d3c569a056ba416d2a82 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/modbus_tcp_esp32.bin diff --git a/build/.ninja_deps b/build/.ninja_deps new file mode 100644 index 0000000..2f7ce48 Binary files /dev/null and b/build/.ninja_deps differ diff --git a/build/.ninja_log b/build/.ninja_log new file mode 100644 index 0000000..153305e --- /dev/null +++ b/build/.ninja_log @@ -0,0 +1,1069 @@ +# ninja log v6 +80 142 7973820263489994 project_elf_src_esp32.c 6c67cd7a5680020 +80 142 7973820263489994 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/project_elf_src_esp32.c 6c67cd7a5680020 +67 210 7973820264167825 esp-idf/esp_system/ld/memory.ld b28bf7d47979652d +67 210 7973820264167825 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/ld/memory.ld b28bf7d47979652d +72 221 7973820264389089 esp-idf/esp_system/ld/sections.ld.in f8621db2cf1e20f4 +72 221 7973820264389089 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/ld/sections.ld.in f8621db2cf1e20f4 +86 296 7973820263070070 esp-idf/main/CMakeFiles/spiffs_spiffs_bin 50fe8b78fb1b9e08 +86 296 7973820263070070 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/main/CMakeFiles/spiffs_spiffs_bin 50fe8b78fb1b9e08 +75 717 7973820264110264 partition_table/partition-table.bin 2f9b47c8e99b0cc9 +75 717 7973820264110264 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/partition_table/partition-table.bin 2f9b47c8e99b0cc9 +276 751 7973820265008355 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj 5794ed602f68092e +272 782 7973820264968258 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj 2b9e99ffaf4b63d2 +244 858 7973820264677875 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj a57be28c0ac15bf1 +228 868 7973820264529086 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj 233b99e2d77fe90a +253 879 7973820264738379 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj 3865318503da6c6c +240 927 7973820264617114 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj 8f1cc4e74f01025e +231 936 7973820264559121 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj a24f879363e82354 +248 946 7973820264723314 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws.c.obj c316362adbeb62a7 +224 954 7973820264489160 esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj b6ca6f8b159c42d5 +235 961 7973820264579068 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj 4dc9dd367f3fb53a +265 974 7973820264894815 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj f89fb9d177cce22d +296 1038 7973820265199802 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_internal.c.obj 390cca6e0148af45 +282 1197 7973820265059182 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj 81c9af06e6d46602 +290 1210 7973820265159620 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj 26209290b6f02231 +880 1261 7973820271052859 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali_curve_fitting.c.obj d3ad5f13ff38a411 +868 1272 7973820270931421 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali.c.obj b64db1afe5d985c2 +859 1291 7973820270843756 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_common.c.obj 8e2d36c8aa85a67d +717 1304 7973820269410399 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_socks_proxy.c.obj 52bfffc638a7a8c4 +782 1405 7973820270066724 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_oneshot.c.obj 59b8266bc864d7c4 +947 1470 7973820271707516 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32/adc_cali_line_fitting.c.obj fb27742c698f7187 +936 1490 7973820271607343 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32/adc_dma.c.obj b2739245078ae2ef +260 1556 7973820264857238 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj 690c7e0fbd732cf0 +927 1566 7973820271526853 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_continuous.c.obj 569ca62808162b89 +955 1596 7973820271787962 esp-idf/esp_https_ota/libesp_https_ota.a 7dd9c12406923128 +974 1608 7973820271986576 esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_std.c.obj 65521aad2c3f7832 +1292 1623 7973820275168621 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_platform_port.c.obj d63c803ade880a65 +1039 1762 7973820272640139 esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_pdm.c.obj f3544b95a0420180 +1198 1803 7973820274215425 esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_platform.c.obj a489c96f96ef002b +1261 1810 7973820274851345 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto/esp_tls_crypto.c.obj 326912138f11b095 +753 1818 7973820269787521 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj c12ce28eea75f0fc +1490 1895 7973820277152452 esp-idf/esp_hal_i2c/CMakeFiles/__idf_esp_hal_i2c.dir/i2c_hal_iram.c.obj ccc0a84da5fdbcb7 +1471 1930 7973820276955419 esp-idf/esp_hal_i2c/CMakeFiles/__idf_esp_hal_i2c.dir/i2c_hal.c.obj 761ffc8e29cd7a65 +1272 1937 7973820274962528 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_error_capture.c.obj 5a7b4a54a678cf47 +961 1956 7973820271868454 esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_common.c.obj 9b306649125c249a +1556 1983 7973820277794589 esp-idf/esp_hal_i2c/CMakeFiles/__idf_esp_hal_i2c.dir/esp32/i2c_periph.c.obj e509c0a16c3fae +1810 2078 7973820280347103 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/xt_debugexception.S.obj d977babb085db9c9 +1596 2084 7973820278210633 esp-idf/esp_http_server/libesp_http_server.a b8da4597c212edd1 +1623 2125 7973820278480978 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj 48d9df6afbb88ce4 +1609 2146 7973820278330908 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub_transport.c.obj df6d75aede8d79ec +1803 2180 7973820280273354 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/gdbstub-entry.S.obj 3521f311d72ff516 +1305 2195 7973820275298530 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj ab2287f2a469deba +1210 2246 7973820274353502 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj d1d7ac98714ae50a +1762 2264 7973820279865485 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/gdbstub_xtensa.c.obj 3d2c55f1b3e63937 +1818 2292 7973820280427028 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/lib_printf.c.obj c2e392e20f08461d +1930 2423 7973820281552951 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj 89d436d73fb298ca +1405 2442 7973820276306105 esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir/http_parser.c.obj 1cbb210fa77cc535 +2078 2452 7973820283030218 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default_ap.c.obj 3df413f55d8434cc +1566 2467 7973820277905256 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj 7119857cc292a73a +1895 2510 7973820281184924 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj 9efa6baa662eedea +1956 2521 7973820281808086 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj a50f69b2c14c5f0e +2246 2528 7973820284696069 esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug_diagram.c.obj 506639d199581359 +2146 2584 7973820283693156 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/regulatory/esp_wifi_regulatory.c.obj 50981568906c008c +1937 2599 7973820281612913 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj cde29a8244df4a21 +1983 2606 7973820282077104 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj cce6ddbfe0bf8d11 +2084 2686 7973820283090520 esp-idf/esp_http_client/libesp_http_client.a a098e4818dae194f +2265 2698 7973820284884829 esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug.c.obj 1bb9e0dba0330835 +2196 2706 7973820284201349 esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/esp32/esp_coex_adapter.c.obj 328df91dfc71cac +2292 2908 7973820285159362 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj 432cd396abe37ff1 +2180 2930 7973820284054831 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj af9431d36b94a0de +2125 3003 7973820283499258 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32/esp_adapter.c.obj a06886d9ec5342fd +2423 3031 7973820286474392 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/eloop.c.obj e7af5e564bc0da56 +2453 3134 7973820286768011 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj 1dbd4f2271fa7cde +2528 3141 7973820287526816 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/sta_info.c.obj a3163478f0d57267 +2442 3169 7973820286658055 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj ea1d471be35c8c4b +2510 3179 7973820287349837 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj 51723bfddcc7f014 +2521 3200 7973820287459715 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/pmksa_cache_auth.c.obj a0d306104035b82c +2686 3213 7973820289103791 esp-idf/tcp_transport/libtcp_transport.a 284233bfcf44a42e +2584 3287 7973820288087774 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_11.c.obj 1d315a2961bdcbb7 +2698 3299 7973820289225903 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/dragonfly.c.obj 9ff89a2769b891ba +2599 3306 7973820288237670 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/comeback_token.c.obj f29053292ff53b66 +2467 3425 7973820286920205 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj 26b414a8a2b9c06d +2706 3538 7973820289307193 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj 4d0cb7115f41a14f +2908 3553 7973820291320621 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/bitfield.c.obj bd2f0816a1cc91c6 +3003 3638 7973820292276598 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-kdf.c.obj e8ff7cac83232a46 +2606 3649 7973820288307736 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj 630c8a8ca7dbed09 +2930 3662 7973820291539120 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-siv.c.obj 9f34157444dc21f5 +3031 3670 7973820292557573 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj df9a1922f86b3c48 +3141 3759 7973820293658104 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj ec44c2a4bda9554d +3170 3770 7973820293941177 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj aadec7d9074552a3 +3179 3785 7973820294031154 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj a4049ee235c0151d +3134 3825 7973820293586418 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-gcm.c.obj d75e608543ad7d88 +3201 3836 7973820294250279 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj 4fd0ccc05d735b68 +3213 3847 7973820294370216 esp-idf/esp_adc/libesp_adc.a 5be29b88e56e8615 +3288 3908 7973820295112874 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tlsprf.c.obj 76e5a05bd6e3523b +3306 3940 7973820295304623 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-tlsprf.c.obj 60557306d4fe9b98 +3299 3954 7973820295236226 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-tlsprf.c.obj 68b9a19d4a0ca387 +3425 4044 7973820296490651 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-prf.c.obj af0d37f2c9399390 +3539 4133 7973820297623177 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-prf.c.obj 6700e71a29482587 +3649 4187 7973820298728408 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tprf.c.obj b8007c1208d2b417 +3662 4231 7973820298860613 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_common/eap_wsc_common.c.obj a074e691d3a4eab0 +3638 4260 7973820298624415 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj b8738f107527d794 +3553 4269 7973820297769340 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-prf.c.obj 91900bac95a7e218 +3759 4296 7973820299832782 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj d5526d64c7d6b970 +3785 4407 7973820300093544 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj bee46b590bc9499a +3847 4438 7973820300705380 esp-idf/esp_driver_i2s/libesp_driver_i2s.a 2bf93df8155893a8 +3671 4446 7973820298951920 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/ieee802_11_common.c.obj dcc6af2f6e9a4c82 +3941 4494 7973820301648554 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj bc855098fa4bbd0 +3825 4583 7973820300479220 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj e1cf9eae27451e7d +3771 4595 7973820299942721 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj 4a1b413f5574c177 +3909 4618 7973820301323607 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj 4ddfbc3d7f0eb7fe +3836 4648 7973820300589724 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj d62fe8600054a077 +4133 4736 7973820303567356 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj 5ae7dfed72c78a +3955 4761 7973820301785967 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj cf0754bc4eb8fb74 +4044 4786 7973820302682006 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj d27d028dc0f6b24b +4269 4928 7973820304932914 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj 541717f00703d5fb +4439 4952 7973820306624514 esp-idf/esp-tls/libesp-tls.a 10c1066cf89ebc4c +4260 4973 7973820304838752 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_pac.c.obj 8bf80922a57f915d +4231 4984 7973820304544117 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_common.c.obj 8b376f947f2af1fa +4408 5070 7973820306314573 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj e8c2b99fe050092e +4187 5084 7973820304106554 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast.c.obj d096c05685ee3151 +4446 5112 7973820306689657 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj e27bacfd080a0d0a +4583 5147 7973820308068130 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj 6122ddefe4f82c83 +4495 5160 7973820307183260 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj 311654edf2c71ae5 +4648 5217 7973820308721058 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj ebb74f319c959229 +4595 5227 7973820308188099 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj 344f5ceb8c3f571d +4618 5328 7973820308422973 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj bcbdb56432b45539 +4297 5336 7973820305205808 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj 73fde95dca20d953 +4736 5383 7973820309593782 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/json.c.obj fce59572b90897e7 +4761 5493 7973820309845655 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj 8c6414e08c1144fd +4787 5508 7973820310105546 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj 8fce696f0de5b2fa +4952 5514 7973820311755423 esp-idf/http_parser/libhttp_parser.a 24ccb03d45deddb4 +5160 5520 7973820313834994 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa2_api_port.c.obj 58cdfa9d41a25b50 +4973 5583 7973820311965300 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj 2b71128746ca9729 +4929 5635 7973820311520285 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj 56a3c826481e1fb2 +4985 5659 7973820312075274 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj f0073923fa15e8d4 +5071 5768 7973820312940104 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj 28d0721a81ef0a47 +5112 5854 7973820313349921 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae_pk.c.obj e7e0cc869f1f173c +5217 5862 7973820314404713 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa_main.c.obj 4608918ec539e99 +5227 5937 7973820314504660 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpas_glue.c.obj 9f42f6fc44e24f5 +5084 5971 7973820313070066 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj a79018c90517f4c5 +5328 6016 7973820315512628 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_common.c.obj 396c701d41e619cd +5493 6072 7973820317155626 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_owe.c.obj b8f413e6cedf31b2 +5514 6078 7973820317377226 esp-idf/esp_hal_i2c/libesp_hal_i2c.a 4ffe4d1e5c47a2fd +5383 6114 7973820316067635 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa3.c.obj 73cae9dc6742edc3 +5147 6169 7973820313705043 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_eap_client.c.obj 27876fb4a5e91349 +5336 6229 7973820315592588 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wps.c.obj c37e13c4185dfa5b +5508 6429 7973820317315550 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_hostap.c.obj e309392adc338245 +5854 6444 7973820320769047 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj ed3177c72989106f +5972 6502 7973820321942074 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj e6c7a34ac314ebac +5635 6515 7973820318577580 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c.obj b9d5667e5f91c54a +5583 6534 7973820318063984 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls.c.obj b6cab07f088eb8e6 +5521 6546 7973820317437299 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/tls_mbedtls.c.obj de227ca4cfc86306 +6169 6593 7973820323917147 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj 32ac9bacbe710c57 +6229 6603 7973820324525518 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj 8cafde9ac796968b +6016 6612 7973820322392324 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj 9c4fb9e73ddbb37c +5862 6628 7973820320853723 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj 83eb53892d80ca +6115 6636 7973820323372160 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj fdd7523389fd66b +6078 6652 7973820323012310 esp-idf/esp_gdbstub/libesp_gdbstub.a 6c433e372aa7b2c7 +6073 6721 7973820322952339 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj d6fe8507bd743320 +5659 6756 7973820318822747 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c.obj 1495206659fd858d +5768 6909 7973820319916479 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-ec.c.obj d07322dc0eaea83a +5938 6953 7973820321603510 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/fastpbkdf2.c.obj afc666cfe3b0a215 +6546 7051 7973820327692363 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/esp_pbuf_ref.c.obj 18a340877cf381f8 +6502 7077 7973820327247171 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj 5938bec575f11a59 +6535 7100 7973820327577157 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/ethernetif.c.obj 354bd46b4c7d372a +6444 7117 7973820326671016 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sntp.c.obj 3356771168dd5381 +6516 7127 7973820327387097 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/wlanif.c.obj 59373e8908aa0c12 +6628 7183 7973820328512980 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj 4ee82b0c16462da7 +6593 7201 7973820328152159 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj 29438eee3898ed62 +6637 7210 7973820328592961 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj 7ed104c413e2f6b7 +6652 7234 7973820328748055 esp-idf/esp_wifi/libesp_wifi.a 59230d171e82b5bc +6721 7267 7973820329431209 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj 19f2eb2ef6200385 +6603 7297 7973820328262150 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj 4743f549f3cd248e +6756 7380 7973820329793508 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj 69fb9d51046a7cb1 +6612 7452 7973820328343000 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj 41562000590ee60 +7100 7615 7973820333226364 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj ac5e865000579726 +7117 7624 7973820333396313 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj 8882c2fad1975948 +6909 7672 7973820331316296 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj 851cbce7d2d2620 +7052 7679 7973820332736599 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj e3817c489032209d +6429 7718 7973820326515842 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj 9b48c6e4512f3b02 +7184 7727 7973820334061352 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj 7194ec2f6be767a7 +7078 7755 7973820333006480 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj 1bf60f197411714c +7210 7818 7973820334321262 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj 41ba66a720679f3c +7201 7825 7973820334231305 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj bda4e96df12affc0 +7234 7845 7973820334571257 esp-idf/esp_coex/libesp_coex.a c9b8a87972d19102 +7267 7931 7973820334890649 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj a66ac1692f168fce +7297 7961 7973820335200508 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj 548823decfeab63 +7127 8064 7973820333496392 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj 2e7cea3e74fa4078 +6953 8120 7973820331761709 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj 3d221c2925fbf5b9 +7672 8166 7973820338946042 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj ee783f405e4c3fb7 +7624 8201 7973820338465717 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj d2f0834c7961e221 +7380 8314 7973820336019462 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj 7164e49b4bb882c3 +7453 8357 7973820336748115 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj c3ea64d13cfa1ce9 +7616 8373 7973820338383325 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj f904091babcdf1fa +7727 8449 7973820339493077 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj cfc8817c1b33ed0e +7755 8476 7973820339773213 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj 1804f27ca3c95eef +7679 8495 7973820339004863 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj 9a5276cbc5fdffb +7825 8602 7973820340478106 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj 3386dc532d47bdc6 +7718 8622 7973820339402608 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj 612287027d965c98 +7819 8639 7973820340408076 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj e94391bcd8d46dae +7962 8652 7973820341840667 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj bc65c178c6e04412 +8065 8667 7973820342870486 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj 92368988c76b930d +8120 8851 7973820343426315 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj 2d39fc900923e4fb +8314 8903 7973820345360391 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj 283190ba309d4fd0 +8201 8933 7973820344231288 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj 98521304a0eecf5f +8357 8941 7973820345785615 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj f2f7ea87b2d6a7a3 +7931 8953 7973820341525588 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj 8b3268562bf55eb3 +8374 9002 7973820345959382 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj 87ad98add563d4e4 +8166 9017 7973820343881449 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj e0b857fda83d9548 +7845 9027 7973820340663263 esp-idf/wpa_supplicant/libwpa_supplicant.a 4e12a2dc3258f822 +8496 9035 7973820347174268 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj 51ad7168fcf60990 +8450 9066 7973820346714475 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj 36ccdab82c1c00d9 +8476 9098 7973820346974381 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj c2a474f49fcb1373 +8639 9265 7973820348603360 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj 22aef669286629a0 +8602 9308 7973820348242537 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj 1f9d3df964848592 +8653 9363 7973820348734113 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj fc05fea609817efc +8622 9440 7973820348442108 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj 173d8e4b9ed157a4 +8933 9478 7973820351552795 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif_fdb.c.obj 229bee2e080f1ee7 +8942 9523 7973820351631138 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj e275f6b0bdad0ed0 +9017 9531 7973820352383647 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj 49484a1cefbcd449 +8953 9539 7973820351741710 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj cca6123def4fdbd7 +8851 9562 7973820350727444 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj 3614771b77343502 +9002 9576 7973820352232074 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj c2edae044b73dec7 +9027 9582 7973820352493754 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj 75d007c972adcd7d +9035 9589 7973820352572214 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj cfc87fd37f533774 +8903 9606 7973820351242854 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif.c.obj ad5695bcfb95f31f +9067 9628 7973820352887891 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj 31c95540060032bb +9098 9686 7973820353198620 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj d7764fe34ac1c95c +8667 9729 7973820348887579 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj 53affc9767db0600 +9265 9757 7973820354855485 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj 8552b7cb6478277 +9363 9957 7973820355845790 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj 218787f9815e5798 +9308 9980 7973820355292552 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj ab3b4fef44d47514 +9441 9997 7973820356616584 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj 752c45be853dd50a +9478 10007 7973820356984785 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj 520922d7cf5fe701 +9540 10082 7973820357603381 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj 55e41369b116ea38 +9524 10118 7973820357451934 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj 45fba77491e482ed +9531 10144 7973820357512201 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj f34a84dff420b618 +9628 10156 7973820358477538 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj 4782c8ef00c06d7f +9576 10163 7973820357964060 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj e09068f5570ce462 +9562 10173 7973820357826044 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj cfb880d29a68d696 +9582 10180 7973820358042025 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj 9ee03f2a666c6ba8 +9606 10201 7973820358261125 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj 10ad5536a497cdb9 +9589 10209 7973820358102473 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj 9f143b759d299842 +9686 10242 7973820359070018 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj 391ef86c98753269 +9730 10257 7973820359503866 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj 1c8b356b8964d2cb +9757 10290 7973820359782828 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj fbde3c3e6c745cd4 +9957 10512 7973820361777632 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj 21c394f9f78050c6 +9997 10549 7973820362187417 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/lwip_default_hooks.c.obj d81ff3b3030e4d13 +9980 10558 7973820362017560 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/tcp_isn_default.c.obj c085e75b538ad6d7 +10007 10728 7973820362277413 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/debug/lwip_debug.c.obj f9df31d0713064be +10180 10736 7973820364010969 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/arc4.c.obj a433a31dc9c76f66 +10156 10742 7973820363773092 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/acd_dhcp_check.c.obj 609a4ab24b370c8d +10082 10753 7973820363030427 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/sockets_ext.c.obj b450260967367d2b +10144 10762 7973820363653011 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/if_index.c.obj fee1e823dda40266 +10118 10770 7973820363395518 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/freertos/sys_arch.c.obj 9756df524d26b88c +10202 10778 7973820364226149 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/des.c.obj 616bd627d18b8b0a +10210 10810 7973820364306950 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md4.c.obj a8b3d01eb1bdaef9 +10257 10851 7973820364787348 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/sha1.c.obj 3ccfe3d6235dc301 +10163 10859 7973820363847433 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32xx/vfs_lwip.c.obj a9737e91a2e79195 +10242 10876 7973820364631907 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md5.c.obj f4b055c2bf7e52b1 +10173 10886 7973820363941081 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj 2d87ddf796fcf1c1 +10290 11141 7973820365104332 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj a73e4643d09aa78a +10512 11188 7973820367336010 esp-idf/esp_netif/libesp_netif.a 574b6f35b896a87c +10742 11270 7973820369630848 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/nullfs.c.obj ab746d804928c94d +10762 11279 7973820369828426 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj 1f539895ea5d14a8 +10754 11317 7973820369748443 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_override.c.obj 681a4765383d839c +10852 11328 7973820370726514 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/btbb_init.c.obj 1a6e85cb473043bc +10810 11337 7973820370311489 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/esp32/phy_init_data.c.obj aa1891bcb0b6f37e +10559 11395 7973820367791062 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_calls.c.obj 93bfb27a39ab78c3 +10770 11406 7973820369908377 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_common.c.obj 5379f56badb43911 +10729 11417 7973820369490143 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj 175405000bbfaf8e +10778 11436 7973820369988331 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init.c.obj 74af3163b9075628 +10736 11453 7973820369570718 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj 6c74887eafe475ab +10550 11487 7973820367701152 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj c931f7918afac521 +11436 12066 7973820376554792 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_platform.cpp.obj 5d0fd7b479c34a83 +11453 12286 7973820376733683 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader.c.obj a54c6c824f799a81 +11395 12395 7973820376155482 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.obj 23131cfdb9230e03 +11338 12428 7973820375577682 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj 655450c01ebc5d41 +11188 12552 7973820374089660 esp-idf/lwip/liblwip.a 30d6a18a21e297ff +12066 12721 7973820382857634 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader_aes.c.obj 53d2b59fc81cc813 +12286 12864 7973820385057648 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader_xts_aes.c.obj ef9a5d684dac538b +10886 12902 7973820371074524 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj fe5169223b430aa4 +12396 13190 7973820386146233 esp-idf/nvs_sec_provider/CMakeFiles/__idf_nvs_sec_provider.dir/nvs_sec_provider.c.obj 4888741b4c048ca9 +11328 13262 7973820375487651 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj f0086340d81022d6 +12429 13410 7973820386482955 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj c5df70cafb68b92c +10859 13475 7973820370803865 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj ae884501343b6ba1 +12552 13557 7973820387714923 esp-idf/vfs/libvfs.a 1f3bc603a32609b0 +12864 13594 7973820390841767 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj b97c8984a60db4fc +11142 13615 7973820373624727 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj fdce4d79472e2515 +11487 13631 7973820377072668 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_encrypted_partition.cpp.obj f83dab73db4a5291 +12721 13656 7973820389405231 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj 55ab060409d05f1a +11318 13713 7973820375380341 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj dfccab2620f24258 +10877 13754 7973820370973720 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj 2126da68021b301c +13191 13817 7973820394106263 esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_wakeup.c.obj 6cd3d278dfa850de +11270 13910 7973820374910847 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj de8756bef910e8a5 +11279 13931 7973820375000808 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj 301ffdca97ed6d12 +13410 13965 7973820396305507 esp-idf/esp_psram/CMakeFiles/__idf_esp_psram.dir/system_layer/esp_psram_mspi.c.obj 2047815c435bdd2a +13262 14151 7973820394816908 esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_vfs.c.obj 6c4e788c42982676 +13656 14164 7973820398757021 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj 6c786b9b136bb45b +11406 14177 7973820376255461 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj d2b2a20766127be0 +11417 14187 7973820376376172 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj f6d852d6c5cf9286 +13632 14200 7973820398511843 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj af1e8ba71f855fd5 +13615 14208 7973820398351926 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_init.c.obj bb24f0e0a426bd8f +13594 14245 7973820398142005 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj dd525584dfbc31ab +13713 14257 7973820399331570 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj 960d4e752d48a1d2 +13557 14327 7973820397769279 esp-idf/esp_phy/libesp_phy.a 25f29aac97d7de66 +13476 14337 7973820396955589 esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj f93e987a3d14fd2c +12904 14345 7973820391231486 esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart.c.obj 8c32a087f8f804e9 +13754 14362 7973820399719202 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_lac.c.obj cbb27f4f0e8c6bf0 +13817 14450 7973820400359494 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj c3605fce638bd96b +13932 14457 7973820401508230 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_init.cpp.obj 916052cc872a00dd +14201 14664 7973820404187699 esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/init.c.obj 61ab08626e752b0 +14257 14718 7973820404758038 esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/heap.c.obj 9306ea7ed3111175 +14245 14750 7973820404642383 esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/assert.c.obj df53677fcd7533ee +14209 14773 7973820404265486 esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/abort.c.obj 82427ccefa8a2822 +14151 14783 7973820403710806 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj 9ebcc569816abd3 +14187 14797 7973820404066005 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_semaphore.c.obj 6c249a3a4e02c574 +14362 14807 7973820405814459 esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/pthread.c.obj 761273be8d541af8 +14164 14814 7973820403827544 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj 13e321984deb6796 +14177 14821 7973820403968100 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj 9620ec86f492ff71 +14345 14833 7973820405649368 esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/poll.c.obj 635d0bebd86e3193 +13965 14859 7973820401842301 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj ce909f45ca1c783d +13910 14891 7973820401286925 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj c24dba95d0dcf3b3 +14337 14899 7973820405559390 esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/locks.c.obj a4ad79a2a8758492 +14450 14912 7973820406691656 esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/random.c.obj ec5ade47369dd74d +14458 14928 7973820406766784 esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/getentropy.c.obj a212da3cd313942f +14665 14942 7973820408838477 esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/termios.c.obj 662bccb6dbd502 +14328 15123 7973820405469303 esp-idf/nvs_flash/libnvs_flash.a a5a0b6d7d4d56ba +14783 15219 7973820410024932 esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/realpath.c.obj 825725f1e8ffa48b +14773 15235 7973820409924965 esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/sysconf.c.obj 9d60baad5e3695e3 +14899 15266 7973820411182040 esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/picolibc/errno.c.obj 5698d6dac0a8f9a5 +14814 15282 7973820410335052 esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/reent_syscalls.c.obj 45fae90d79aa5df6 +14822 15290 7973820410405009 esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/port/esp_time_impl.c.obj 9c6390426face543 +14797 15299 7973820410157362 esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/scandir.c.obj 67f091b9e07ff610 +14807 15306 7973820410265112 esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/syscalls.c.obj bc55e39f03293927 +14859 15314 7973820410777006 esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/picolibc/rand.c.obj 59b82320b122173a +14719 15321 7973820409378224 esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/stdatomic.c.obj 456daf93bcb74d7f +14912 15331 7973820411309699 esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/picolibc/getreent.c.obj 506431ae7dbdad02 +14834 15342 7973820410528292 esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/picolibc/picolibc_init.c.obj 9c100cbe55ecd9f7 +14750 15350 7973820409695049 esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/time.c.obj ebc0809420318c1c +14892 15360 7973820411108610 esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/picolibc/open_memstream.c.obj f04ca4113a86bfb4 +14929 15449 7973820411479614 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/heap_idf.c.obj 5ab2ebfcdd70755d +14942 15513 7973820411612054 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj e19d65abc1d8d064 +15123 15608 7973820413415597 esp-idf/nvs_sec_provider/libnvs_sec_provider.a c93f62c0d8b36c07 +15342 15744 7973820415607600 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c.obj 767f071c0886b289 +15235 15753 7973820414540115 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_systick.c.obj 71bc6779d9258300 +15266 15765 7973820414851239 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj 8d0610341376b79a +15219 15774 7973820414381005 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj c669feeb23f97176 +15351 15783 7973820415692931 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_overlay_os_hook.c.obj cb4bbb77e05816f5 +15331 15793 7973820415497503 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/portasm.S.obj 4121bc1b04ef6f12 +15360 15800 7973820415782879 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions_event_groups.c.obj de8835d902f3cfb6 +15299 15807 7973820415184259 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj 324976ec1a72b412 +15306 15825 7973820415254190 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj 3b3d1f7dc6181bbd +15314 15935 7973820415334197 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj 9405cdf6e4f1a3e6 +15282 15988 7973820415011124 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj 679e52375f099b52 +15322 16011 7973820415404096 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/port.c.obj b9a36252d68850 +15514 16093 7973820417322756 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj df47e4e6e6898472 +15450 16111 7973820416681364 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions.c.obj 9864263c3b98cbf6 +15754 16130 7973820419717390 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj 8d95b0dd7d819196 +15744 16231 7973820419625342 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/esp_cpu_intr.c.obj 97d822b4865f4ba9 +15608 16271 7973820418268860 esp-idf/esp_event/libesp_event.a f6897e69cc8d9366 +15765 16295 7973820419835336 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cpu_region_protect.c.obj 839b83a4298e4b69 +15935 16304 7973820421537486 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj 3c7ffd6b141d3d7f +15290 16353 7973820415091083 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj b2aa81159c6457e0 +15808 16451 7973820420265151 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj 939f74e969869554 +15793 16464 7973820420115192 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj 8bf777e9ce38a2d6 +15774 16490 7973820419925323 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj e6c0a2c11573b055 +15783 16511 7973820420015243 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj 6eca24316e764b7a +15825 16531 7973820420435067 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj fca96c58a20e1750 +16094 16546 7973820423117264 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_gpio_reserve.c.obj 835f0f824ec295bd +16130 16568 7973820423482406 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/io_mux.c.obj c0c7c6855471ff16 +15988 16604 7973820422065701 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj a635df8d7d7adc5b +16111 16626 7973820423290759 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_tsens_ctrl.c.obj 907c3c189a22cdd7 +15801 16635 7973820420195169 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj 757bed868c562edd +16011 16686 7973820422295625 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj 8a9def34f6e19cf3 +16231 16853 7973820424487356 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/esp_clk_tree.c.obj 8972ad039759465e +16271 16873 7973820424892406 esp-idf/esp_driver_uart/libesp_driver_uart.a 6560d54cd87759d1 +16305 16880 7973820425232252 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_utils.c.obj 67c8b36046d585a0 +16568 16928 7973820427861800 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_mspi.c.obj 44c419dde8cf1994 +16491 16955 7973820427088986 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modem.c.obj a70d5e14f2d17ea3 +16295 16990 7973820425132303 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_bus_lock.c.obj 6c01a249c25ba920 +16353 16999 7973820425717312 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_clk_tree_common.c.obj f53bc38c01b428f3 +16464 17016 7973820426819177 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj 87e97627e5004907 +16451 17036 7973820426699217 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_share_hw_ctrl.c.obj bba58cb9e3f76449 +16604 17049 7973820428221596 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_usb.c.obj 1c2dfce4825075eb +16546 17060 7973820427643981 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_console.c.obj 22370a55f613823 +16531 17072 7973820427494000 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_uart.c.obj cc79ff0eed0cd94f +16636 17106 7973820428544186 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_event.c.obj 59e1a1762dc99969 +16686 17149 7973820429039762 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_wdt.c.obj c6259d8c9d41312c +17060 17442 7973820432779466 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/chip_info.c.obj b87a74e883591f77 +16853 17460 7973820430713336 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning/mspi_timing_tuning.c.obj 2b0f587ecfd10726 +16873 17468 7973820430913246 esp-idf/esp_psram/libesp_psram.a 2a400cf0bef87c6f +16627 17533 7973820428454405 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj 4e2a0c015f7185cd +16955 17541 7973820431728233 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/power_supply/brownout.c.obj 573a2a9d7defbad4 +16999 17581 7973820432173256 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk_init.c.obj 4a4ffb781fbb5d01 +17036 17592 7973820432543123 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_sleep.c.obj 7a3d06b8b6ed5300 +17050 17599 7973820432679404 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_time.c.obj 8955c0b1f8bb17b3 +17017 17608 7973820432343133 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_init.c.obj a1ee7989e2941052 +16880 17614 7973820430983238 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj b3f491f43d494002 +16511 17630 7973820427294095 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj 9727ef838e6cb9ce +17072 17640 7973820432899408 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cache_sram_mmu.c.obj ceb52e27cdbf8037 +17106 17669 7973820433228465 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/sar_periph_ctrl.c.obj 6dc11d6b95f0d53d +17149 17693 7973820433671165 esp-idf/esp_hal_touch_sens/CMakeFiles/__idf_esp_hal_touch_sens.dir/esp32/touch_sensor_legacy_hal.c.obj ff1bd961e4d18358 +17534 17804 7973820437514070 esp-idf/esp_hal_touch_sens/CMakeFiles/__idf_esp_hal_touch_sens.dir/esp32/touch_sensor_periph.c.obj a6915664bdb64adc +16929 17816 7973820431463031 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clock_output.c.obj 78cf31240ca3838e +17443 17897 7973820436605003 esp-idf/esp_hal_touch_sens/CMakeFiles/__idf_esp_hal_touch_sens.dir/touch_sensor_legacy_hal.c.obj b6e9164557612b6e +17461 17911 7973820436784756 esp-idf/esp_hal_touch_sens/CMakeFiles/__idf_esp_hal_touch_sens.dir/touch_sens_hal.c.obj 2bd94d8224c69cdc +16990 17922 7973820432083263 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk.c.obj f08b1571e2bb1f7 +17614 17940 7973820438318069 esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj 6ed29d314f082a0f +17593 17951 7973820438100049 esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/esp32/rtc_io_periph.c.obj 5c82319dba7aa451 +17468 17964 7973820436856348 esp-idf/esp_ringbuf/libesp_ringbuf.a fda88e9c5482409 +17640 17979 7973820438578048 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/interrupts.c.obj e8a386c1a8d1845a +17599 17987 7973820438170045 esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/sdm_hal.c.obj 9a41fa230cc435cc +17631 18009 7973820438487986 esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj aa0e427cf2c0f6e5 +17693 18016 7973820439098593 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dport_access.c.obj 10d6cdb2ef27572d +17608 18031 7973820438261180 esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/esp32/sdm_periph.c.obj 266218c241f12e89 +17582 18040 7973820437989529 esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/rtc_io_hal.c.obj 4cdcb89dbd084dbb +17541 18052 7973820437589780 esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/gpio_hal.c.obj 4f1e6c0c4c9acbb5 +17669 18062 7973820438873885 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/gpio_periph.c.obj 5131ba168f74527f +17804 18139 7973820440219031 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/emac_periph.c.obj 5f1d9a3fe376a6ca +17816 18181 7973820440338970 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mpi_periph.c.obj a2db68523dbf4bee +17922 18192 7973820441399015 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/power_supply_periph.c.obj 16b67a73f212d16d +17897 18214 7973820441143945 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdmmc_periph.c.obj c86cb5e3551a8ec +17911 18285 7973820441283856 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdio_slave_periph.c.obj 4ec67b05fffc90a5 +18041 18475 7973820442577540 esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_timestamp.c.obj 3866799ccda18d5d +18031 18489 7973820442487512 esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32/memory_layout.c.obj 4a8be3b81c3700c +18062 18530 7973820442799016 esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_lock.c.obj afac07a5b039ff82 +17940 18541 7973820441570307 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_base.c.obj 606dc8ec9e1c7835 +18016 18547 7973820442346114 esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj 32630cc151090357 +17964 18558 7973820441820785 esp-idf/esp_timer/libesp_timer.a 343cc403b0e6816c +18192 18573 7973820444096196 esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj 44c49f388a28037e +18139 18580 7973820443561226 esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj 7e581b977eaf18f3 +17979 18592 7973820441970707 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj d271fd1a2e1e2deb +18053 18606 7973820442699051 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj 19c4dffee49717c0 +18214 18614 7973820444316110 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_format_text.c.obj 8288ee768c1e94e0 +18181 18621 7973820443986245 esp-idf/log/CMakeFiles/__idf_log.dir/src/os/util.c.obj ca7797119ea381f3 +17987 18628 7973820442050674 esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj ac3b3dc1ab05eed9 +17951 18648 7973820441685442 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj 40a514634ef65a8e +18286 18684 7973820445031715 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_print.c.obj 70a285245bbba83 +18009 18831 7973820442266137 esp-idf/heap/CMakeFiles/__idf_heap.dir/tlsf/tlsf.c.obj 564b4fda61387021 +18530 18891 7973820447470538 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/log_level.c.obj 260af4596cf4ee67 +18541 18946 7973820447581508 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/tag_log_level.c.obj e4f7cd2c6f922cae +18548 18955 7973820447651471 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/linked_list/log_linked_list.c.obj a8c7affae5f222c4 +18581 18962 7973820447978471 esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj 874655c9f62f7c5d +18476 18976 7973820446933324 esp-idf/log/CMakeFiles/__idf_log.dir/src/log.c.obj 936399a0bb7e0fe7 +18489 18985 7973820447063273 esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_write.c.obj d75787b2f3a92c86 +18573 18998 7973820447895214 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/cache/log_binary_heap.c.obj 59a910bcaeef8583 +18592 19013 7973820448098461 esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj da95ca26732cd3cb +18558 19066 7973820447751522 esp-idf/cxx/libcxx.a eed82ce24150d6fb +18606 19073 7973820448237420 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/efuse_hal.c.obj b3ae042a9fd0d76e +18621 19080 7973820448387343 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/cache_hal_esp32.c.obj c10ff35b526b2c10 +18628 19100 7973820448460114 esp-idf/hal/CMakeFiles/__idf_hal.dir/color_hal.c.obj a066aec9b3a180e8 +18615 19120 7973820448323219 esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj ce1cdf8ec78e22a7 +18648 19167 7973820448650169 esp-idf/hal/CMakeFiles/__idf_hal.dir/sdmmc_hal.c.obj 21a3b67f06919207 +18685 19183 7973820449018828 esp-idf/hal/CMakeFiles/__idf_hal.dir/emac_hal.c.obj 78a01182ab58e76e +18831 19274 7973820450478081 esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj 67422dd6744ca83a +18962 19286 7973820451795188 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj d83d12c35fc07b03 +19013 19376 7973820452295433 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj 6c3e06bb151dc77c +18998 19401 7973820452144368 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj e91054578e703bf +19073 19410 7973820452902884 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj 22e1ae08ab7943da +18976 19418 7973820451935140 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_serial_output.c.obj 356a7e71f0d8962e +18947 19426 7973820451639845 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj e2e1e7451171e685 +18955 19488 7973820451725217 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj 3285c3c576c77d3c +18985 19547 7973820452026750 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj 6d7e1f9cbb5825fe +19066 19554 7973820452835523 esp-idf/pthread/libpthread.a 15f68d7e541a0828 +18892 19686 7973820451087723 esp-idf/hal/CMakeFiles/__idf_hal.dir/sdio_slave_hal.c.obj cc679d750006908b +19184 19692 7973820454002279 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj 16ad9a58a5a5ff7a +19100 19700 7973820453172829 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj 5cea8e6585d9b4a2 +19120 19708 7973820453372685 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj 3de00f0955a0ce78 +19168 19851 7973820453847802 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj dd479bb67ef5445d +19274 19875 7973820454910914 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj 20270aa2e28a2adb +19426 19916 7973820456430046 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj d8e2884a9dbf67a +19376 19930 7973820455925832 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj 9537c534b7b964dd +19418 19979 7973820456350037 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj e630abc6854895db +19401 19994 7973820456179330 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj 16407bd96aab050c +19488 20043 7973820457055241 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj ef7dfe69ea7d7ea7 +19287 20071 7973820455040833 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj 45722aacfb49ea3e +19410 20096 7973820456270078 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup_funcs.c.obj 6a634e92a17a536a +19547 20154 7973820457638429 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj a47ec2cd275a957a +19081 20212 7973820452972870 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj e71c9c2826711e91 +19708 20291 7973820459252462 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj 294b30ab594c7fa9 +19979 20299 7973820461954426 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_handler.S.obj 66b81c09836f14b8 +19693 20332 7973820459093848 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt_impl_timergroup.c.obj 62da4cdf4788472c +19686 20378 7973820459023557 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt.c.obj 8f005fc134f771eb +19916 20396 7973820461327149 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_ipc_isr.c.obj 554d5cd3e4bcea18 +19930 20413 7973820461467088 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_port.c.obj 9e40ddde03ab80b3 +20071 20430 7973820462872564 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_handler_asm.S.obj 79cc4d7593bc347 +19700 20439 7973820459159307 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj b46206e5a278c18d +19851 20464 7973820460685811 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_system_chip.c.obj dd185d79f34b0d1a +19554 20474 7973820457711634 esp-idf/esp_libc/libesp_libc.a 8b078eddfa0a0f66 +19994 20502 7973820462114364 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_routines.S.obj f79e097ae373269d +19875 20515 7973820460917364 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/image_process.c.obj 813ff601c56eaae4 +20154 20554 7973820463707340 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack_asm.S.obj 5bdc4261fec22fc7 +20096 20634 7973820463122461 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack.c.obj ad6554e3432e18c8 +20043 20653 7973820462597351 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_arch.c.obj 5b0f583234dab84 +20291 20663 7973820465073895 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers_asm.S.obj cce9259d7e4b12f1 +20299 20757 7973820465153870 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_stubs.c.obj 2620c4ab24fbc9a2 +20332 20767 7973820465485733 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/trax.c.obj f8c63b0be1843a59 +20378 20781 7973820465951168 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/highint_hdl.S.obj a5e685b1f54ef526 +20213 20788 7973820464294429 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers.c.obj da30b588b1fa97a8 +20464 20841 7973820466807609 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj 6b2354efb352326b +20502 20868 7973820467177401 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj 6739bc22edea3f9e +20413 20878 7973820466294336 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/reset_reason.c.obj c33459e517924bce +20396 20989 7973820466123797 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/clk.c.obj e60cc7814d334c54 +20440 21003 7973820466565689 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/cache_err_int.c.obj 7a240700697fbcc1 +20554 21017 7973820467707026 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj bbc189950eaf17f +20430 21046 7973820466465525 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/system_internal.c.obj 17a6f3ec08eb8431 +20653 21138 7973820468701961 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj 66b9ec843340918f +20664 21173 7973820468797093 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj 8279657595f22a37 +20757 21185 7973820469731969 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj 5243e858de3031d7 +20515 21196 7973820467311354 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj 5d9888e1ca841c14 +20635 21204 7973820468511864 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj 7424140bd5041920 +20781 21246 7973820469977242 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj 6dd2d729295f1d08 +20767 21299 7973820469836940 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj 2683217dfb1b39de +20841 21316 7973820470574489 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_blockdev.c.obj 82764d2eb86f5a40 +20789 21366 7973820470047204 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj ce62b06360bb223d +20474 21380 7973820466907514 esp-idf/freertos/libfreertos.a 24e991b0cdbe15e1 +20868 21491 7973820470839778 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj 3d1f5c8015e760b3 +21003 21585 7973820472198824 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj 397be63653e9a7ba +20989 21603 7973820472040250 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj 58f6c406d092c0c5 +20878 21610 7973820470949724 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj c08195a518e72640 +21246 21727 7973820474619611 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj e98eac9997b19395 +21173 21773 7973820473900488 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj e4159290b44ae18 +21046 21783 7973820472627051 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj e63686230e3ff65b +21138 21796 7973820473545359 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj fe1dd599f6a136d1 +21204 21808 7973820474202474 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj e48aad60b307874a +21316 21884 7973820475310980 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj 66f00d3d8befff63 +21186 21891 7973820474020460 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj 49a814491bef9bd8 +21017 21909 7973820472337048 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj 4802508abbc409d9 +21196 21924 7973820474122560 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj e2c3b08528ce1020 +21300 21957 7973820475152765 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj acef5c21bb35de51 +21491 21984 7973820477056567 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj 375eab053e160fc5 +21367 22069 7973820475814666 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj a5f2fb4b117ffe5 +21585 22110 7973820478009557 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32.c.obj 683d3c6ed67502bd +21783 22230 7973820479991093 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj e0d6e4315b81294 +21892 22259 7973820481077342 esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/esp32/adc_periph.c.obj 2a911c636ae16d05 +21611 22269 7973820478268911 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj 61f0dd3322e911fd +21380 22277 7973820475950498 esp-idf/esp_hw_support/libesp_hw_support.a 716fd91d9a8803dc +21603 22291 7973820478187717 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj fb77d8d553ebc434 +21909 22352 7973820481257274 esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_hal_common.c.obj ba3e0ad59ee612cf +21884 22373 7973820481007361 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/secure_boot_secure_features.c.obj 8bb81092b63dd09e +21727 22385 7973820479426056 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32.c.obj fc796479bb321b0e +21808 22426 7973820480241010 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_sha.c.obj 2a3463ed527a7d33 +21985 22473 7973820482000583 esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/esp32/dac_periph.c.obj 56ec5286879b40eb +21924 22510 7973820481399564 esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_oneshot_hal.c.obj 332890867a940c05 +21957 22521 7973820481726178 esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_hal.c.obj 20e3fce205a10690 +22231 22529 7973820484462818 esp-idf/esp_hal_wdt/CMakeFiles/__idf_esp_hal_wdt.dir/esp32/mwdt_periph.c.obj 98d394116c4a09af +21797 22542 7973820480121052 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj bcd782383832e02a +22069 22551 7973820482845478 esp-idf/esp_hal_i2s/CMakeFiles/__idf_esp_hal_i2s.dir/i2s_hal.c.obj 5a7c7df76e59cfb0 +22111 22560 7973820483265315 esp-idf/esp_hal_i2s/CMakeFiles/__idf_esp_hal_i2s.dir/esp32/i2s_periph.c.obj 78354e94f9825707 +21773 22579 7973820479891139 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj 868119880a46c73a +22291 22759 7973820485062550 esp-idf/esp_hal_timg/CMakeFiles/__idf_esp_hal_timg.dir/esp32/timer_periph.c.obj 5e1bd5f7a52dc26a +22260 22770 7973820484751817 esp-idf/esp_hal_wdt/CMakeFiles/__idf_esp_hal_wdt.dir/wdt_hal_iram.c.obj 6a128c15c3caf1d5 +22270 22786 7973820484851783 esp-idf/esp_hal_timg/CMakeFiles/__idf_esp_hal_timg.dir/timer_hal.c.obj 4394896131ee5945 +22277 22800 7973820484926799 esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a 5e05d5d845447ac9 +22373 22922 7973820485888017 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/psa_crypto_client.c.obj 6a2ef1627f1c5966 +22510 22939 7973820487258165 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/psa_its_file.c.obj 6391184deb542584 +22529 22950 7973820487448080 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/tf_psa_crypto_version.c.obj abe06c65a1a02cce +22560 23033 7973820487753259 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/esp_mem.c.obj 7cec5c6c67ea5627 +22521 23068 7973820487368087 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/tf_psa_crypto_config.c.obj 4f3e9ac9644d844d +22386 23095 7973820486010043 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj 12cb3f19666ede44 +22579 23119 7973820487948208 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj 39cf22d61c43d164 +22552 23133 7973820487668120 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/esp_hardware.c.obj 6e4c07798eea3dba +22474 23146 7973820486888321 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/psa_crypto_storage.c.obj 7ce434f7c1c9adca +22542 23155 7973820487578202 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_crypto_storage/esp_psa_its.c.obj c000a2deeac4c236 +22426 23164 7973820486404115 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/psa_crypto_slot_management.c.obj c80faa6e7756c47 +22760 23356 7973820489738954 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj 3cba766f4912b7c8 +22786 23535 7973820490007893 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj b22f15568c3f59a8 +22770 23558 7973820489849600 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/aes/esp_aes.c.obj 44c14ba7d9269007 +23033 23600 7973820492488004 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj cef48b7a3a4c8a30 +22801 23612 7973820490166025 esp-idf/esp_hal_gpio/libesp_hal_gpio.a 6106264496f6409a +22923 23624 7973820491373416 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_sha/psa_crypto_driver_esp_sha.c.obj 3f713cd862eb5964 +23069 23634 7973820492842215 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_mac/psa_crypto_driver_esp_hmac_transparent.c.obj 82a867e4a0fa9cba +23155 23674 7973820493701259 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj c5188a4c190b86b4 +23133 23683 7973820493484130 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_md/psa_crypto_driver_esp_md5.c.obj 6f5a9f88f4e73d55 +22939 23700 7973820491531775 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_sha/parallel_engine/psa_crypto_driver_esp_sha256.c.obj 29e4d0d8dfb29187 +22951 23718 7973820491662583 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_sha/parallel_engine/psa_crypto_driver_esp_sha512.c.obj 9dd3a9b9ba26a1cc +23119 23858 7973820493341928 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/sha/parallel_engine/sha.c.obj 8295f83a9463b9e9 +23146 23956 7973820493600669 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj ae71c1dc310e38c9 +23096 24039 7973820493112049 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_sha/parallel_engine/psa_crypto_driver_esp_sha1.c.obj f886329804960d88 +23165 24107 7973820493796808 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_aes/psa_crypto_driver_esp_aes.c.obj 953e1fd776f156ce +23356 24181 7973820495718593 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_aes/psa_crypto_driver_esp_aes_gcm.c.obj a7dd549708252d8a +23536 24196 7973820497508344 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_mac/psa_crypto_driver_esp_cmac.c.obj ca2aa9e502258b0d +23612 24220 7973820498267202 esp-idf/soc/libsoc.a f54c230d61dd65a0 +23558 24234 7973820497727431 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj 15c7de84bd90c30 +23624 24244 7973820498387169 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj 4ed3ee66e956aa2 +23718 24278 7973820499327613 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj a66fd19721808fac +23600 24293 7973820498147259 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj 85b8e162d62f29ed +23634 24308 7973820498490160 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj 63f072a83ac46e8e +23700 24317 7973820499147713 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj f12e5299f9a93e05 +23674 24335 7973820498897823 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj 656dafdb191dfcd4 +23683 24404 7973820498977785 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj bbc64e5bee5b007f +24278 24822 7973820504928916 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj d3c342636f1351e4 +24197 24837 7973820504112312 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj fd72119c0f66a7f5 +23956 24849 7973820501707604 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj 8661689b26720637 +24336 24870 7973820505509380 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj 3b894c7edd3025d6 +24318 24888 7973820505319364 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/version_features.c.obj e5d8355bcf273869 +24244 24909 7973820504583871 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj c83ac037e87c7780 +24234 24925 7973820504493831 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj ee23a4bfd4835c30 +24220 24940 7973820504352201 esp-idf/heap/libheap.a b9ec21629aa5e396 +24405 25013 7973820506197577 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/esp_platform_time.c.obj 9aaaeb1127bf70c9 +24308 25024 7973820505233374 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/version.c.obj da3c5f832ed5ef40 +24293 25033 7973820505079131 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/timing.c.obj 1f29145191361c96 +23859 25155 7973820500735457 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj 2fcc6e307e9ba9c9 +24889 25323 7973820511032168 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/mbedtls_config.c.obj d73f38ea995d335e +24107 25349 7973820503217494 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj a23c223d7450a92b +24822 25382 7973820510362453 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/esp_timing.c.obj 9fd1a4f306302038 +22352 25440 7973820485674701 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/psa_crypto.c.obj a13bf76fbfa20a77 +24181 25454 7973820503952406 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj 9ffbb8ffe8636388 +24838 25494 7973820510523154 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/esp_psa_crypto_init.c.obj 34b7773b85444a27 +24940 25623 7973820511549367 esp-idf/log/liblog.a 3ef36e5af99ed8ad +24870 25668 7973820510842213 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/error.c.obj 558d21ef8ebd08ea +25013 25682 7973820512277414 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj 2c10ec54120f6730 +24909 25726 7973820511236634 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj 5e6b5fc3074cea2b +25025 25735 7973820512387360 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj ffcde3355b21e5cc +24849 25743 7973820510633181 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/net_sockets.c.obj c2dcd7def6141c66 +25155 25850 7973820513689555 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj 9117f07858fc0a30 +25382 25955 7973820515966470 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj b387fdce894c62ab +25494 25965 7973820517074682 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/aesce.c.obj 9b1273c6d54ecc1f +25349 25978 7973820515629599 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj 1cdd798d700d03ce +25323 26005 7973820515370690 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_oid.c.obj c2ed8fb4b8a53d1d +24926 26044 7973820511398715 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj 5d9af55dc55e0f27 +25669 26064 7973820518822390 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/aesni.c.obj 6f9c48045f19889b +25441 26083 7973820516541945 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj 4add8164a7663df7 +25682 26193 7973820518963115 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/aria.c.obj 67688d33dec5ce2d +24039 26354 7973820502542536 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj 66164417661b8e8c +25624 26371 7973820518370105 esp-idf/hal/libhal.a 99ae52baaf9d25f9 +25743 26379 7973820519555838 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/base64.c.obj 185df8de70ee69a7 +25727 26429 7973820519397587 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/asn1parse.c.obj 6913bd80e506e4e9 +25978 26437 7973820521912853 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/bignum_mod_raw.c.obj edc5b5bb7a0ac8de +25735 26446 7973820519495523 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/asn1write.c.obj 9a11cd5dce37f113 +25965 26453 7973820521799015 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/bignum_mod.c.obj 9f8825c791023521 +26044 26464 7973820522588813 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/camellia.c.obj 58936deacfe721df +26005 26513 7973820522191705 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/block_cipher.c.obj d0e31fcc166e7852 +25454 26529 7973820516680126 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/aes.c.obj 5c9ccb09fdbb10fa +26083 26550 7973820522971168 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/chacha20.c.obj 71890ca7d72ff8e0 +26193 26610 7973820524066944 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/chachapoly.c.obj a608eb5d11edbe1 +26065 26865 7973820522779920 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ccm.c.obj 59ce200c38dd00a3 +25033 26933 7973820512477323 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj 8332efd95839e50a +25956 26945 7973820521693953 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/bignum_core.c.obj 99215caa4759a3f8 +26453 26955 7973820526673565 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ecdh.c.obj 33ccd0c316f07fa +26437 26993 7973820526517595 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/constant_time.c.obj 1f41b1549a7de0b7 +26379 27044 7973820525927664 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/cipher_wrap.c.obj 7135861a86210b22 +26371 27055 7973820525847692 esp-idf/esp_rom/libesp_rom.a e7593de44d2eb46e +26429 27107 7973820526427627 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/cmac.c.obj 3b8778ec47e6fdba +26610 27133 7973820528229522 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ecp_curves_new.c.obj 4ce354429c8a9fa6 +25851 27216 7973820520646761 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/bignum.c.obj 9d09136d8f7d91ef +26464 27242 7973820526769251 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ecdsa.c.obj 8a6eadab9e23db12 +26447 27251 7973820526593056 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ctr_drbg.c.obj a7f7a87e8c8d2050 +26514 27270 7973820527277640 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ecjpake.c.obj 2b313e12c4fd1e06 +26354 27290 7973820525687467 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/cipher.c.obj 6fde0a7ebcca6230 +26865 27336 7973820530785604 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/entropy.c.obj 33105baa82951897 +26934 27375 7973820531478893 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/entropy_poll.c.obj 42456b5b18cd44e0 +26994 27390 7973820532068923 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/lmots.c.obj 3bd6f75f6f7083de +26551 27404 7973820527647475 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ecp_curves.c.obj e0fe5c856cfbc6c2 +27044 27472 7973820532578820 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/lms.c.obj 97974df6c6d2082a +27133 27520 7973820533466179 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/md5.c.obj 88f9f07fab5d4c58 +26955 27620 7973820531688912 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/hmac_drbg.c.obj 279b2a1d83787003 +27056 27674 7973820532688852 esp-idf/esp_common/libesp_common.a 5c296d53dad7655f +27216 27729 7973820534301102 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/memory_buffer_alloc.c.obj d843c042c5903c15 +27242 27824 7973820534560985 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/nist_kw.c.obj 1603408b5e6c7987 +26529 27902 7973820527427464 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ecp.c.obj f556745ce1cbd459 +27270 27917 7973820534837687 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pem.c.obj 91e8689e5767854e +27107 27927 7973820533206309 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/md.c.obj 3949d2d55a8d794c +27251 27935 7973820534641006 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/oid.c.obj ddcca70dfb8bb5d7 +26945 27968 7973820531588843 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/gcm.c.obj 77065d4fd12b387c +27375 27996 7973820535885849 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pk_rsa.c.obj 649855495d1cf1fa +27336 28018 7973820535500727 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pk_ecc.c.obj 36689511cd3d98ba +27390 28091 7973820536035806 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pk_wrap.c.obj 2f7472feb8a1e252 +27620 28141 7973820538339904 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/platform.c.obj a9e9e4304de546a2 +27405 28165 7973820536185728 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pkcs5.c.obj 178f6a90cda086a2 +27824 28210 7973820540379655 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/poly1305.c.obj 8a18057abcc1f277 +27472 28235 7973820536857876 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pkparse.c.obj 53d0a554ec57acb3 +27290 28262 7973820535037629 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pk.c.obj 4246be72080b29ce +27729 28299 7973820539424718 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/platform_util.c.obj a05c40eef98a47d0 +27520 28314 7973820537337592 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pkwrite.c.obj 4b633df2f771019d +27675 28500 7973820538874982 esp-idf/esp_system/libesp_system.a 296ba7e06ad9f42b +27902 28511 7973820541149562 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_aead.c.obj 952d7b1485c3fc61 +27997 28629 7973820542094516 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_mac.c.obj 76f178e7a8bd4ad0 +28165 28641 7973820543786372 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ripemd160.c.obj 3a4146387777b813 +27917 28650 7973820541299490 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_cipher.c.obj a05104d1ee9a354f +27936 28659 7973820541489395 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_ffdh.c.obj 9e1adaf923d1a72d +28018 28668 7973820542314400 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_pake.c.obj 2956b4f39bbe862a +27968 28725 7973820541814601 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_hash.c.obj 363342091dcb50ed +28262 28755 7973820544757259 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/sha1.c.obj 3d92776d04310adf +28091 28762 7973820543042360 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_rsa.c.obj f815c3e27789c376 +28314 28781 7973820545276820 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/sha3.c.obj 2b1077c2d9966528 +27927 28788 7973820541399440 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_ecp.c.obj 285d5ae1c2a0a86f +28141 28804 7973820543545910 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_util.c.obj cb341e4b13b8af3e +28235 28914 7973820544479437 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/rsa_alt_helpers.c.obj c4f314e3b5ccc808 +28755 28990 7973820551868078 bootloader-prefix/src/bootloader-stamp/bootloader-mkdir c1556a90815d9436 +28755 28990 7973820551868078 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir c1556a90815d9436 +28299 29009 7973820545120179 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/sha256.c.obj c2f39d39f3b5ab97 +28660 29037 7973820548722738 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/CMakeFiles/everest.dir/library/everest.c.obj 1fc7a1df633f2072 +28650 29038 7973820548627622 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj 953d93b3cc3485aa +28669 29045 7973820548815811 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/CMakeFiles/everest.dir/library/x25519.c.obj 2534d709911f55b5 +28642 29049 7973820548547562 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj 2b556a2df37a4db7 +28629 29057 7973820548417639 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/threading.c.obj 66c88ade5f1871b9 +28726 29079 7973820549381048 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj cbecb6cffb4e198c +28511 29136 7973820547234167 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/sha512.c.obj d5fbb46e8725c87e +28500 29145 7973820547133647 esp-idf/spi_flash/libspi_flash.a 8cf1d496a4fcd7fc +28991 29160 7973820553611919 bootloader-prefix/src/bootloader-stamp/bootloader-download 480c1e31e4737505 +28991 29160 7973820553611919 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-download 480c1e31e4737505 +29160 29313 7973820555148129 bootloader-prefix/src/bootloader-stamp/bootloader-update 95dad8ebc27491 +29160 29313 7973820555148129 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-update 95dad8ebc27491 +29313 29464 7973820556662395 bootloader-prefix/src/bootloader-stamp/bootloader-patch 286022c20e534ed4 +29313 29464 7973820556662395 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch 286022c20e534ed4 +28210 29492 7973820544237035 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/rsa.c.obj c109d01cf9acdeaa +29145 29515 7973820553581766 esp-idf/bootloader_support/libbootloader_support.a 1cc11d2d2d1a421c +29516 29737 7973820557280084 esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a f0746abde0c53346 +29737 29939 7973820559496315 esp-idf/esp_hal_i2s/libesp_hal_i2s.a 1d9979c10620323d +29939 30147 7973820561507746 esp-idf/esp_hal_wdt/libesp_hal_wdt.a 75b49b567880b7d8 +30147 30344 7973820563594795 esp-idf/esp_hal_timg/libesp_hal_timg.a d4228b7d3bb9c0dd +30344 30640 7973820565562404 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a 6ff5e39978875745 +30640 31041 7973820568526824 esp-idf/mbedtls/mbedtls/library/libmbedtls.a eb7b2ad9b1a1cb16 +31041 31280 7973820572526893 esp-idf/mbedtls/mbedtls/library/libmbedx509.a 4b68aed47e00bd47 +31280 31671 7973820574922101 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a e882e094b25acbb +31671 31863 7973820578828761 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/libp256m.a d7b22d93fb993939 +31863 32052 7973820580748818 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/libeverest.a d739ee6402ee2264 +32052 32276 7973820584640546 esp-idf/mbedtls/x509_crt_bundle efb8b175d98b51a1 +32052 32276 7973820584640546 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/x509_crt_bundle efb8b175d98b51a1 +32276 32468 7973820586722487 x509_crt_bundle.S 263ebe64fd7bd3f8 +32276 32468 7973820586722487 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/x509_crt_bundle.S 263ebe64fd7bd3f8 +32473 32734 7973820586838796 esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj 13c3881d3f76cf9b +32492 32874 7973820587029790 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32/ext_mem_layout.c.obj 6afe645ac62345ea +32515 32903 7973820587251013 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/heap_align_hw.c.obj c6ab31a1ca77fbbd +32476 32915 7973820586878713 esp-idf/esp_driver_dma/CMakeFiles/__idf_esp_driver_dma.dir/src/esp_dma_utils.c.obj 77797f118798d68e +32527 32925 7973820587388906 esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj 5fe499dbe8b1080d +32509 32940 7973820587197586 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/cache_esp32.c.obj be962a989e8df87f +32503 32953 7973820587147129 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache_utils.c.obj c9fe9e1b126bf834 +32497 32960 7973820587089785 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache_msync.c.obj 60a529982c37d925 +32552 32968 7973820587635388 esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/uart_hal_iram.c.obj 8264e510948c00d +32544 32982 7973820587553993 esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/uart_hal.c.obj 18c52f960fe3c401 +32481 32993 7973820586918694 esp-idf/esp_driver_dma/CMakeFiles/__idf_esp_driver_dma.dir/src/gdma_link.c.obj 1e3b2fa21d7e4a5d +32486 33088 7973820586969819 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_mmu_map.c.obj 9ff2cc66c7463967 +32535 33099 7973820587470626 esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj 960332f8562889f0 +32520 33112 7973820587315949 esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj 8a86108227360cab +32468 33132 7973820586782403 esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj 1b5fa865f9f85004 +32734 33158 7973820589453044 esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/esp32/uart_periph.c.obj ed64c1a6d1e01859 +32940 33248 7973820591509255 esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_lock.c.obj 9ffb56abcf8ce404 +32904 33301 7973820591147773 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_glitch_filter_ops.c.obj 9820526984023ba3 +32960 33378 7973820591718452 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj fcd56d8d9852eee6 +32969 33387 7973820591801231 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_fields.c.obj 4876cd7f29f7524c +32926 33432 7973820591363550 esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/init.c.obj 18119efecb952e88 +32953 33458 7973820591644203 esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_periph_clk.c.obj 78fd7ed47eaff973 +32993 33569 7973820592045975 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj badfd86ab411c544 +33113 33592 7973820593237930 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/without_key_purposes/three_key_blocks/esp_efuse_api_key.c.obj 6585ee8c634e990c +32982 33600 7973820591931813 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_utility.c.obj 46741763d7c30f83 +33089 33624 7973820592994187 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj 766748a25977a6e9 +33132 33659 7973820593429349 esp-idf/mbedtls/libmbedtls.a 909e6f70f45b4b28 +33158 33671 7973820593689343 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_startup.c.obj 2a0713bb617726cb +32915 33690 7973820591259582 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/rtc_io.c.obj 75f54cf84ef6b5fc +33099 33759 7973820593101968 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj 7b6cc401232b0000 +33301 33767 7973820595118812 esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj 8af209e18cdc5c66 +33387 33776 7973820595985895 esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj e0ba9a6899174c7e +33432 33876 7973820596434093 esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj 421e1c52dd95e48d +32874 33885 7973820590858671 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio.c.obj e7cb7d9c759d9712 +33248 33895 7973820594589458 esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj c94cc242160e595c +33458 33937 7973820596686806 esp-idf/esp_hal_security/CMakeFiles/__idf_esp_hal_security.dir/mpi_hal.c.obj 132305cc3f825df +33592 33963 7973820598028594 esp-idf/esp_hal_security/CMakeFiles/__idf_esp_hal_security.dir/aes_hal.c.obj 1ee4db090019c2db +33569 33970 7973820597798580 esp-idf/esp_hal_security/CMakeFiles/__idf_esp_hal_security.dir/sha_hal.c.obj 67e254b9c6b1f495 +33600 34022 7973820598108571 esp-idf/esp_hal_security/CMakeFiles/__idf_esp_hal_security.dir/mpu_hal.c.obj 355ff3a8efad3256 +33690 34057 7973820598990103 esp-idf/esp_hal_mspi/CMakeFiles/__idf_esp_hal_mspi.dir/spi_flash_encrypt_hal_iram.c.obj ee04677ebfa2361d +33624 34072 7973820598348447 esp-idf/esp_hal_mspi/CMakeFiles/__idf_esp_hal_mspi.dir/spi_flash_hal.c.obj 486547e53fa95292 +33768 34112 7973820599783408 esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/esp32/spi_periph.c.obj bff124595120fa88 +33776 34228 7973820599868575 esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_hal.c.obj 1c2176d5103cc34a +33379 34235 7973820595890970 esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj d0bcf543799c6d0e +33660 34242 7973820598698445 esp-idf/esp_driver_dma/libesp_driver_dma.a 20044877cc3c5142 +33760 34249 7973820599703427 esp-idf/esp_hal_clock/CMakeFiles/__idf_esp_hal_clock.dir/esp32/clk_tree_hal.c.obj 11ac780c4ac709d8 +33671 34259 7973820598819185 esp-idf/esp_hal_mspi/CMakeFiles/__idf_esp_hal_mspi.dir/spi_flash_hal_iram.c.obj 228f4812666c2e79 +33963 34311 7973820601738544 esp-idf/esp_stdio/CMakeFiles/__idf_esp_stdio.dir/stdio_simple.c.obj ffad8ebc020cf6a1 +33895 34320 7973820601062447 esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_slave_hal_iram.c.obj a4b61721404f4272 +34022 34328 7973820602331785 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj 7ee11bc10bf26885 +33885 34337 7973820600952404 esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_slave_hal.c.obj 3d83dd2d481ee75c +34057 34389 7973820602675701 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj 934bc9cf9ad1a805 +34072 34398 7973820602820254 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_context.S.obj be85f7ad7c901f4c +34112 34408 7973820603222099 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr_asm.S.obj 265fb73b8c9ce787 +33876 34426 7973820600864684 esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_hal_iram.c.obj 27ecce4cdd550b9 +33937 34503 7973820601482021 esp-idf/esp_stdio/CMakeFiles/__idf_esp_stdio.dir/stdio_vfs.c.obj db37ee3e1862bdd3 +34236 34518 7973820604462272 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_vectors.S.obj 803601f061b31c31 +33970 34529 7973820601811486 esp-idf/esp_stdio/CMakeFiles/__idf_esp_stdio.dir/stdio_syscalls_simple.c.obj ba16bb3e61b09eab +34311 34766 7973820605211802 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj a4a3472dad91e543 +34228 34777 7973820604383366 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr.c.obj afc7fa6e71559ee1 +34337 34811 7973820605475673 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_blockdev.c.obj 72b699f2445ca262 +34243 34825 7973820604532243 esp-idf/esp_mm/libesp_mm.a 2c5e55c5e588e1c3 +34389 34868 7973820605995025 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sd_pwr_ctrl/sd_pwr_ctrl.c.obj 47ed55adef19349f +34320 34936 7973820605300979 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj 3fbb2f1390d4c8ca +34259 34944 7973820604698317 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj a6af9cab881bcd52 +34250 34953 7973820604603625 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj 4f34d6077307cace +34518 35008 7973820607280919 esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_dma.c.obj 963596feb87b6fe7 +34329 35074 7973820605385724 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj b8062d4bf3f9a084 +34398 35137 7973820606088473 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj c61a4844958fa7b2 +34811 35213 7973820610208498 esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj c28edb1414bba69e +34529 35223 7973820607390874 esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj 5dec6d71beca5686 +34408 35247 7973820606181276 esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_common.c.obj e062645dc845bc9e +34503 35302 7973820607138097 esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave.c.obj ad9757ea220a2f7 +34826 35397 7973820610358387 esp-idf/esp_pm/libesp_pm.a 98bfb13b16563fa2 +34777 35438 7973820609871401 esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl_internal.c.obj 6e6cd5405eae4bfa +34766 35446 7973820609766395 esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_common.c.obj 39732bf87fffbd90 +34944 35454 7973820611548304 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj 4393f24d87a05050 +34426 35464 7973820606360428 esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_master.c.obj 2f3bc45c855f3bdc +35008 35491 7973820612182729 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj 17b32a2b2ea25f6c +35074 35529 7973820612843364 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj 837d2aa9b7a213ec +34954 35540 7973820611638270 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj 7ba7b14959b2f24 +35137 35553 7973820613470610 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj eae4292cfde2ea7e +34936 35562 7973820611463041 esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl_chip.c.obj cce76770af7baa16 +35213 35597 7973820614229814 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj e8af4ac6d62b105a +35302 35652 7973820615115250 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj de024c45f6ef49e4 +35248 35665 7973820614575303 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj 779d1284e8491d6e +35223 35683 7973820614331440 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj 66eaab0f7ca8f33a +35438 35778 7973820616478219 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj e33579e3d6d8bf71 +34868 35873 7973820610782150 esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj f9e8c1ee3eb8ad69 +35464 35964 7973820616743140 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj c659c7f82cf1fb19 +35454 35974 7973820616622488 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj 280f671b951d31b7 +35397 35991 7973820616073497 esp-idf/esp_hal_uart/libesp_hal_uart.a ef2a9dcedccec470 +35562 36015 7973820617727368 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_compat.c.obj 207f56bfc2db13f8 +35529 36045 7973820617396023 esp-idf/esp_driver_sd_intf/CMakeFiles/__idf_esp_driver_sd_intf.dir/sd_host.c.obj 45112ad8dfe9d4d0 +35665 36154 7973820618743195 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_cache.c.obj 57a944d8bf66a738 +35652 36168 7973820618614614 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_freertos.c.obj 428d85fc0fe51578 +35446 36175 7973820616558582 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj d9a2d3078c2a3c51 +35491 36184 7973820617004465 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj be7e7ea255a78c38 +35598 36192 7973820618079355 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj 49a0cea28b8a966f +35778 36232 7973820619882714 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj b4e0b1c03381bd6c +35683 36270 7973820618931228 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_memory.c.obj f2a6d710ba6755b1 +35873 36328 7973820620823750 esp-idf/unity/CMakeFiles/__idf_unity.dir/port/esp/unity_utils_memory_esp.c.obj b4b4d7b70ef6638a +35964 36380 7973820621738764 esp-idf/esp_hal_twai/CMakeFiles/__idf_esp_hal_twai.dir/esp32/twai_periph.c.obj 619c32291552e6c8 +35553 36482 7973820617622507 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj a26ceac36ec21d3d +35991 36499 7973820622011923 esp-idf/esp_driver_gpio/libesp_driver_gpio.a 20bc97cf08b0baeb +36168 36567 7973820623778570 esp-idf/esp_hal_ledc/CMakeFiles/__idf_esp_hal_ledc.dir/ledc_hal.c.obj b9093bfee0e3db54 +36184 36578 7973820623931642 esp-idf/esp_hal_ledc/CMakeFiles/__idf_esp_hal_ledc.dir/esp32/ledc_periph.c.obj 92d2f4873b229975 +35974 36589 7973820621841869 esp-idf/esp_hal_twai/CMakeFiles/__idf_esp_hal_twai.dir/twai_hal_v1.c.obj edd6610b783ee707 +36176 36601 7973820623853750 esp-idf/esp_hal_ledc/CMakeFiles/__idf_esp_hal_ledc.dir/ledc_hal_iram.c.obj 4db228b747cf6500 +36045 36647 7973820622542888 esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_common.c.obj 8f1edb9f8ca195d8 +36270 36673 7973820624794567 esp-idf/esp_hal_pcnt/CMakeFiles/__idf_esp_hal_pcnt.dir/pcnt_hal.c.obj afb5fc6ab3725515 +36232 36681 7973820624420296 esp-idf/esp_hal_mcpwm/CMakeFiles/__idf_esp_hal_mcpwm.dir/esp32/mcpwm_periph.c.obj be2e4d870807da28 +36192 36697 7973820624017666 esp-idf/esp_hal_mcpwm/CMakeFiles/__idf_esp_hal_mcpwm.dir/mcpwm_hal.c.obj 88a3e69c2b9f62b1 +36328 36740 7973820625370007 esp-idf/esp_hal_pcnt/CMakeFiles/__idf_esp_hal_pcnt.dir/esp32/pcnt_periph.c.obj 340e3560a27e7743 +36154 36778 7973820623643571 esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_slave.c.obj d90b570bb2ba6d8a +35540 36806 7973820617502563 esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj b53e07903fb457b4 +36380 36818 7973820625893193 esp-idf/esp_hal_rmt/CMakeFiles/__idf_esp_hal_rmt.dir/rmt_hal.c.obj 41b4eb41236d869f +36482 36890 7973820626919272 esp-idf/esp_hal_rmt/CMakeFiles/__idf_esp_hal_rmt.dir/esp32/rmt_periph.c.obj 123accb422707b40 +36499 36996 7973820627079204 esp-idf/esp_security/libesp_security.a aef422e30fc963ed +36647 37053 7973820628564497 esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_crc.c.obj d679c99be5e2906d +36697 37135 7973820629062812 esp-idf/esp_hal_lcd/CMakeFiles/__idf_esp_hal_lcd.dir/esp32/lcd_periph.c.obj de55523f520c0749 +36016 37154 7973820622252901 esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_master.c.obj 69bc117481e31b1f +36568 37161 7973820627769004 esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/legacy/src/sdmmc_transaction.c.obj 9b1bc2ba69cacda1 +36806 37195 7973820630150411 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj 532846eead0dcfbd +36578 37204 7973820627874156 esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/legacy/src/sdmmc_host.c.obj c5b50e33568c9033 +36681 37215 7973820628896530 esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_transaction.c.obj b607b08878aae4b0 +36819 37262 7973820630280366 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj dd87172c89f1d590 +36601 37286 7973820628100456 esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/src/sd_trans_sdmmc.c.obj 5f49cc9e721b43f +36890 37318 7973820630992513 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj 68d69636d960f120 +36779 37370 7973820629884477 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj ab8a1249af33b4a2 +36673 37386 7973820628824241 esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_host.c.obj 2cb4b165d06ed668 +37054 37515 7973820632627152 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec2.pb-c.c.obj dfa638dcf4439217 +37135 37526 7973820633439328 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj 6d911023e7c87316 +36589 37550 7973820627986495 esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/src/sd_host_sdmmc.c.obj 3267096a73acfc2 +36740 37561 7973820629495348 esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir/src/https_server.c.obj 33467feafeae2a4 +36996 37570 7973820632049041 esp-idf/efuse/libefuse.a e7606260b8b4a23b +37154 37672 7973820633637763 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj e393299398dbbdb7 +37215 37684 7973820634238708 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp_mpi.c.obj 2b675cfe909fec71 +37263 37717 7973820634715128 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj ccb5a707abb7ef47 +37318 37789 7973820635255300 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj fbe447fac9a6d1e2 +37286 37812 7973820634954540 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj e205e48eff0577e6 +37370 37829 7973820635778581 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj be6e84c1f6129359 +37161 37848 7973820633698104 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj da1a83c0b83e49b0 +37515 37870 7973820637240663 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj 41ae0dbd4696abdd +37204 37948 7973820634132099 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp.c.obj e9e707e376dbd5ee +37672 38093 7973820638812507 esp-idf/cmock/CMakeFiles/__idf_cmock.dir/CMock/src/cmock.c.obj bfdf7da75a46c2e1 +37526 38103 7973820637350599 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj b0292029e89c0c67 +37570 38142 7973820637786300 esp-idf/esp_partition/libesp_partition.a a82156af33861c90 +37562 38188 7973820637692757 esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_common.c.obj 9b20ceb803ff4a6b +37196 38205 7973820634034164 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security2.c.obj 382734bce7298fbf +37387 38295 7973820635958513 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj d629d80a51913977 +37550 38302 7973820637587104 esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer.c.obj ebc9bc74ae1b5109 +37848 38330 7973820640569410 esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/dvp_share_ctrl.c.obj 93f47436225a260b +37718 38367 7973820639269629 esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/touch_sensor_common.c.obj 3ddfc588ef71aa79 +37870 38434 7973820640789661 esp-idf/esp_driver_dac/CMakeFiles/__idf_esp_driver_dac.dir/dac_oneshot.c.obj 9021f4278f931868 +37829 38483 7973820640378989 esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/esp_cam_ctlr.c.obj 54e9908c0d76a5c9 +37948 38588 7973820641559332 esp-idf/esp_driver_dac/CMakeFiles/__idf_esp_driver_dac.dir/dac_cosine.c.obj a904a7a221f7edb3 +38103 38700 7973820643123706 esp-idf/esp_driver_dac/CMakeFiles/__idf_esp_driver_dac.dir/dac_common.c.obj 3c39b0551e148160 +37790 38711 7973820639986559 esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/esp32/touch_sensor.c.obj 337d7639a3791e98 +37813 38805 7973820640218122 esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj 4e1be3a21303d14e +38093 38824 7973820643005659 esp-idf/esp_driver_dac/CMakeFiles/__idf_esp_driver_dac.dir/dac_continuous.c.obj 3635483f774e2466 +38142 38839 7973820643500586 esp-idf/app_update/libapp_update.a 77c5ca58f46c60b7 +37684 38918 7973820638930725 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.c.obj 9478ff57fa0eb0af +38330 38953 7973820645388173 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_com.c.obj 4f54f845c22feb4f +38189 38985 7973820643975172 esp-idf/esp_driver_dac/CMakeFiles/__idf_esp_driver_dac.dir/esp32/dac_dma.c.obj b680581880ddcc3d +38303 39024 7973820645115768 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cmpr.c.obj 38f32737316efc80 +38368 39034 7973820645758356 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_fault.c.obj 2f481872abb0d180 +38296 39175 7973820645040386 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cap.c.obj 86048acbddc6e03d +38483 39225 7973820646921201 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_oper.c.obj 15acdf7b5f2ed53c +38434 39247 7973820646423228 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_gen.c.obj 3c562740da2baa18 +38589 39295 7973820647967859 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_sync.c.obj 9b4c51f8d6f11ac6 +38839 39328 7973820650474407 esp-idf/esp_bootloader_format/libesp_bootloader_format.a 2836833748619cc0 +38825 39422 7973820650332498 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder.c.obj 52dd8ec22a310e4 +38700 39464 7973820649088704 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_timer.c.obj d8c1f6c2cb56913 +38805 39475 7973820650132588 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_common.c.obj 3c5d516e2174ac3e +38205 39493 7973820644145124 esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir/src/ledc.c.obj a639bc97666bccf6 +38918 39571 7973820651263636 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_bytes.c.obj bc2173a793f9763b +38953 39687 7973820651618487 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_copy.c.obj e0c27ff120dba30f +38711 39704 7973820649198669 esp-idf/esp_driver_pcnt/CMakeFiles/__idf_esp_driver_pcnt.dir/src/pulse_cnt.c.obj 22330f8238ba4aaa +38985 39849 7973820651935163 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_simple.c.obj 52b9b1f283dd2de7 +39024 39898 7973820652324974 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_rx.c.obj 1a682296878dacc5 +39226 39932 7973820654344495 esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir/src/sdm.c.obj 4775057349dd7568 +39034 39953 7973820652424938 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_tx.c.obj e5b3831906ac093 +39328 39991 7973820655365794 esp-idf/esp_app_format/libesp_app_format.a 615b46e8ceaac2b6 +39175 40040 7973820653833382 esp-idf/esp_driver_sdio/CMakeFiles/__idf_esp_driver_sdio.dir/src/sdio_slave.c.obj 404bc6c0661cdbc +39247 40138 7973820654553680 esp-idf/esp_driver_touch_sens/CMakeFiles/__idf_esp_driver_touch_sens.dir/common/touch_sens_common.c.obj f00735f324bf65e9 +39296 40155 7973820655035436 esp-idf/esp_driver_touch_sens/CMakeFiles/__idf_esp_driver_touch_sens.dir/hw_ver1/touch_version_specific.c.obj b694c17fd569e430 +39422 40185 7973820656306741 esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir/esp_twai.c.obj 7d0618a5c16e90a3 +39475 40310 7973820656835008 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj 8f6a9ab960984cec +39493 40337 7973820657002687 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/phy/esp_eth_phy_802_3.c.obj 2ead53d4d4c355f +39571 40351 7973820657787288 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj 60fb715ed482f82d +39704 40405 7973820659118834 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/mac/esp_eth_mac_esp_dma.c.obj c77465a52d2e50b2 +39932 40425 7973820661401913 esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidd.c.obj 5e534cdad7fa5cf9 +39898 40449 7973820661060462 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/phy/esp_eth_phy_generic.c.obj 9a724cbb2c355880 +39464 40477 7973820656725080 esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir/esp_twai_onchip.c.obj ec1993af044a60fe +40040 40610 7973820662479680 esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hid_common.c.obj 4fb5813c4389cfbf +39992 40673 7973820661996892 esp-idf/esp_hal_security/libesp_hal_security.a c5aff42c90c34dfd +39850 40702 7973820660570300 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/mac/esp_eth_mac_esp_gpio.c.obj e378199a8d9e973 +40155 40727 7973820663627574 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io.c.obj 6af193177c1723d8 +40139 40749 7973820663468126 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_common.c.obj b4d02874bbed03fa +39953 40764 7973820661609021 esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidh.c.obj de6c292e4f64a6ea +39688 40790 7973820658958912 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/mac/esp_eth_mac_esp.c.obj 8c037f5eda7a9f5d +40337 40855 7973820665453353 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ops.c.obj fab4a70e2e117857 +40185 40976 7973820663934032 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ssd1306.c.obj 7cd1fa835306cfb9 +40310 41026 7973820665172672 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_st7789.c.obj 35222372cc2b6673 +40351 41041 7973820665577539 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c/esp_lcd_panel_io_i2c.c.obj f3fc6fb62d6d3ed0 +40405 41189 7973820666124469 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/spi/esp_lcd_panel_io_spi.c.obj 757f96751e7f5a5b +40610 41196 7973820668178347 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c/esp_local_ctrl.pb-c.c.obj efc328b0666459d +40426 41207 7973820666337388 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i80/esp_lcd_panel_io_i2s.c.obj e4037a48250812c +40702 41266 7973820669102376 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_httpd.c.obj 4b718bfd9974a837 +40673 41277 7973820668799981 esp-idf/esp_hal_mspi/libesp_hal_mspi.a c9d452246d7ed58c +40477 41286 7973820666842315 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj 46cd65c17b7501e6 +40449 41308 7973820666567296 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj a9902824ed16ad65 +40764 41348 7973820669716151 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj 300bbb60c00be01a +40749 41367 7973820669566226 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj 4c09d648812779de +40728 41412 7973820669356303 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj 5d952c15d14b77a +40976 41537 7973820671834228 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj 76aedf70c95897d7 +40855 41625 7973820670628619 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj eb221086e3df54e3 +41026 41711 7973820672339774 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj 175f17ef5b179c12 +41208 41766 7973820674138321 esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_access.c.obj e92e21047f792e28 +41286 41804 7973820674919155 esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_masks.c.obj f81709933175c584 +41266 41816 7973820674737926 esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_apis.c.obj aa3f9f8b3291a365 +41197 41882 7973820674040300 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj e6c787dd8b61cd44 +41412 42047 7973820676197875 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj a8ec01b3efedbf44 +41349 42058 7973820675554416 esp-idf/rt/CMakeFiles/__idf_rt.dir/FreeRTOS_POSIX_utils.c.obj 953dba187f36e438 +41277 42068 7973820674848704 esp-idf/esp_hal_clock/libesp_hal_clock.a e7275f1c569e76f2 +40791 42075 7973820669980182 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj e026a7d5b13cbf8c +41367 42087 7973820675742292 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj 74937aa54e43ec4c +41308 42149 7973820675156087 esp-idf/rt/CMakeFiles/__idf_rt.dir/FreeRTOS_POSIX_mqueue.c.obj b6fca98716775d96 +41189 42268 7973820673958769 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj 212548cbc6d7af03 +41538 42296 7973820677445739 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj 4947776fc7c947ee +41626 42351 7973820678325694 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj 49a7a2a6be70dde3 +41041 42376 7973820672489633 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj e740ada7eaa797a5 +41883 42567 7973820680900868 esp-idf/main/CMakeFiles/__idf_main.dir/modbus_memory.c.obj 1d543c9854f8fc88 +42068 42581 7973820682746284 esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a 103961cda5058008 +41711 42605 7973820679187260 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj 3c59aa0216752a58 +42075 42653 7973820682816267 esp-idf/main/CMakeFiles/__idf_main.dir/config_store.c.obj 16ac8a3229204e5a +41804 42691 7973820680111968 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj 59eed74b17a331eb +42047 42724 7973820682546281 esp-idf/main/CMakeFiles/__idf_main.dir/modbus_points.c.obj b9275adc8d9a37b4 +41816 42738 7973820680231626 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj cd1cc683b2c04048 +41766 42770 7973820679731119 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj d677e1db75ba0ba6 +42059 42802 7973820682656225 esp-idf/main/CMakeFiles/__idf_main.dir/modbus_rtu.c.obj 7f782948f1ee7708 +42581 42877 7973820687873571 esp-idf/esp_stdio/libesp_stdio.a fcdf7689b9d3647e +42877 43111 7973820690835631 esp-idf/xtensa/libxtensa.a 4796ed2d330e7a89 +43117 43521 7973820693235694 esp-idf/esp_driver_spi/libesp_driver_spi.a d1baf8d07bf8b96d +43128 43528 7973820693346364 esp-idf/protobuf-c/libprotobuf-c.a 7d1fe9086a986eae +43111 43556 7973820693175715 esp-idf/sdmmc/libsdmmc.a ea42ee4ec07a27e3 +43140 43563 7973820693456303 esp-idf/esp_hal_twai/libesp_hal_twai.a 259fa77d33d695c9 +43150 43576 7973820693568472 esp-idf/esp_hal_ledc/libesp_hal_ledc.a 1cd67497aacc86c8 +43175 43620 7973820693819152 esp-idf/esp_hal_lcd/libesp_hal_lcd.a 4da6bee3acea0223 +43168 43628 7973820693741200 esp-idf/esp_hal_rmt/libesp_hal_rmt.a 2c83c73f43104419 +43182 43634 7973820693884346 esp-idf/esp_https_server/libesp_https_server.a 22e589e6164c01a4 +43162 43646 7973820693691130 esp-idf/esp_hal_pcnt/libesp_hal_pcnt.a a2182997007abf09 +43145 43653 7973820693508487 esp-idf/esp_driver_i2c/libesp_driver_i2c.a b9541c521ec8ebc9 +43198 43664 7973820694037661 esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a 9efce982ac0922e1 +43156 43673 7973820693631017 esp-idf/esp_hal_mcpwm/libesp_hal_mcpwm.a 62ec8aa9ac21b61 +43133 43681 7973820693396342 esp-idf/unity/libunity.a 932502ae67104a02 +43188 43724 7973820693951543 esp-idf/wear_levelling/libwear_levelling.a 7555be1ce0f08aff +43123 43781 7973820693295649 esp-idf/console/libconsole.a 50d97924c57f25c3 +43521 43953 7973820697269235 esp-idf/esp_driver_cam/libesp_driver_cam.a 908e26185a2d6001 +43556 43995 7973820697627207 esp-idf/esp_driver_sd_intf/libesp_driver_sd_intf.a d42b303691f7c79f +43620 44018 7973820698259512 esp-idf/esp_driver_ledc/libesp_driver_ledc.a 3749ba2718c8639c +43563 44036 7973820697688628 esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a bb327b15aa6b2a52 +43528 44043 7973820697349166 esp-idf/esp_driver_dac/libesp_driver_dac.a 438122068700ba90 +43576 44051 7973820697823020 esp-idf/driver/libdriver.a 3eadb6ce0983275 +43634 44064 7973820698403720 esp-idf/esp_driver_sdio/libesp_driver_sdio.a 2d7f0804eae92b3a +43653 44071 7973820698598447 esp-idf/esp_driver_sdm/libesp_driver_sdm.a 3e8b68e73904164d +43628 44096 7973820698339478 esp-idf/esp_driver_rmt/libesp_driver_rmt.a 1ea065e2e22ce92a +43646 44103 7973820698518524 esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a 40b46b45120ef453 +43664 44110 7973820698702152 esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a 9933509652b26efe +43681 44147 7973820698863052 esp-idf/cmock/libcmock.a 77ec55f56e5b7dea +43724 44152 7973820699297403 esp-idf/esp_driver_twai/libesp_driver_twai.a bf9dd0b17e887c12 +43673 44193 7973820698782566 esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a e1054388e4243a34 +43781 44263 7973820699861653 esp-idf/protocomm/libprotocomm.a c4aeeef314b418a6 +43953 44354 7973820701583975 esp-idf/esp_eth/libesp_eth.a 36917891ff43bb20 +44018 44356 7973820702230716 esp-idf/esp_hid/libesp_hid.a 9c58d39dc57ccac2 +43996 44359 7973820702007774 esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a ee049fd97a0640fa +44043 44368 7973820702479184 esp-idf/perfmon/libperfmon.a b1eb4e55402292f7 +44051 44368 7973820702571503 esp-idf/rt/librt.a 3a084a9f22faafaf +44036 44393 7973820702418826 esp-idf/esp_lcd/libesp_lcd.a 87381a0b249b88c +44064 44422 7973820702701436 esp-idf/spiffs/libspiffs.a d7b26544d25dbd2a +44263 44540 7973820704692302 esp-idf/esp_local_ctrl/libesp_local_ctrl.a 56f826a612431b4a +44359 44650 7973820705650933 esp-idf/fatfs/libfatfs.a e1dbcb3d32dded53 +44650 44867 7973820708563055 esp-idf/main/libmain.a db85d0588465fc52 +29465 51669 7973820778630542 bootloader-prefix/src/bootloader-stamp/bootloader-configure acd92b1bb35c70db +29465 51669 7973820778630542 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure acd92b1bb35c70db +51669 60088 7973820778630542 bootloader-prefix/src/bootloader-stamp/bootloader-build e3b663040c05bf49 +51669 60088 7973820778630542 bootloader/bootloader.elf e3b663040c05bf49 +51669 60088 7973820778630542 bootloader/bootloader.bin e3b663040c05bf49 +51669 60088 7973820778630542 bootloader/bootloader.map e3b663040c05bf49 +51669 60088 7973820778630542 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-build e3b663040c05bf49 +51669 60088 7973820778630542 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/bootloader.elf e3b663040c05bf49 +51669 60088 7973820778630542 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/bootloader.bin e3b663040c05bf49 +51669 60088 7973820778630542 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/bootloader.map e3b663040c05bf49 +60089 60169 7973820862776435 bootloader-prefix/src/bootloader-stamp/bootloader-install 3a3b2c11f158d641 +60089 60169 7973820862776435 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 3a3b2c11f158d641 +60169 60351 7973820865372970 CMakeFiles/bootloader-complete e1570ad9cf93cea2 +60169 60351 7973820865372970 bootloader-prefix/src/bootloader-stamp/bootloader-done e1570ad9cf93cea2 +60169 60351 7973820865372970 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/bootloader-complete e1570ad9cf93cea2 +60169 60351 7973820865372970 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-done e1570ad9cf93cea2 +44867 63204 7973820893068630 esp-idf/esp_system/ld/sections.ld 7bb3f57115d86150 +44867 63204 7973820893068630 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/ld/sections.ld 7bb3f57115d86150 +63205 63346 7973820894018211 CMakeFiles/modbus_tcp_esp32.elf.dir/project_elf_src_esp32.c.obj a6ee7fb5191fc8db +63346 64334 7973820895434706 modbus_tcp_esp32.elf caa47a6530e53921 +64335 64653 7973820908365047 .bin_timestamp 368d9b6fae05ead1 +64335 64653 7973820908365047 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/.bin_timestamp 368d9b6fae05ead1 +64653 64760 7973820908484894 CMakeFiles/app_check_size 6669830b7a77d613 +64653 64760 7973820908484894 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/app_check_size 6669830b7a77d613 +81 224 7973821004425677 CMakeFiles/app_check_size 6669830b7a77d613 +81 224 7973821004425677 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/app_check_size 6669830b7a77d613 +86 238 7973821004425677 esp-idf/main/CMakeFiles/spiffs_spiffs_bin 50fe8b78fb1b9e08 +86 238 7973821004425677 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/main/CMakeFiles/spiffs_spiffs_bin 50fe8b78fb1b9e08 +77 329 7973821004405536 bootloader-prefix/src/bootloader-stamp/bootloader-build e3b663040c05bf49 +77 329 7973821004405536 bootloader/bootloader.elf e3b663040c05bf49 +77 329 7973821004405536 bootloader/bootloader.bin e3b663040c05bf49 +77 329 7973821004405536 bootloader/bootloader.map e3b663040c05bf49 +77 329 7973821004405536 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-build e3b663040c05bf49 +77 329 7973821004405536 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/bootloader.elf e3b663040c05bf49 +77 329 7973821004405536 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/bootloader.bin e3b663040c05bf49 +77 329 7973821004405536 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/bootloader.map e3b663040c05bf49 +330 395 7973821006930922 bootloader-prefix/src/bootloader-stamp/bootloader-install 3a3b2c11f158d641 +330 395 7973821006930922 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 3a3b2c11f158d641 +395 541 7973821008863397 CMakeFiles/bootloader-complete e1570ad9cf93cea2 +395 541 7973821008863397 bootloader-prefix/src/bootloader-stamp/bootloader-done e1570ad9cf93cea2 +395 541 7973821008863397 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/bootloader-complete e1570ad9cf93cea2 +395 541 7973821008863397 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-done e1570ad9cf93cea2 +98 220 7973821010879400 esp-idf/main/CMakeFiles/spiffs_spiffs_bin 50fe8b78fb1b9e08 +98 220 7973821010879400 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/main/CMakeFiles/spiffs_spiffs_bin 50fe8b78fb1b9e08 +94 233 7973821010813636 CMakeFiles/app_check_size 6669830b7a77d613 +94 233 7973821010813636 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/app_check_size 6669830b7a77d613 +89 337 7973821010813636 bootloader-prefix/src/bootloader-stamp/bootloader-build e3b663040c05bf49 +89 337 7973821010813636 bootloader/bootloader.elf e3b663040c05bf49 +89 337 7973821010813636 bootloader/bootloader.bin e3b663040c05bf49 +89 337 7973821010813636 bootloader/bootloader.map e3b663040c05bf49 +89 337 7973821010813636 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-build e3b663040c05bf49 +89 337 7973821010813636 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/bootloader.elf e3b663040c05bf49 +89 337 7973821010813636 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/bootloader.bin e3b663040c05bf49 +89 337 7973821010813636 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/bootloader.map e3b663040c05bf49 +338 405 7973821013210233 bootloader-prefix/src/bootloader-stamp/bootloader-install 3a3b2c11f158d641 +338 405 7973821013210233 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-install 3a3b2c11f158d641 +405 540 7973821015209143 CMakeFiles/bootloader-complete e1570ad9cf93cea2 +405 540 7973821015209143 bootloader-prefix/src/bootloader-stamp/bootloader-done e1570ad9cf93cea2 +405 540 7973821015209143 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/bootloader-complete e1570ad9cf93cea2 +405 540 7973821015209143 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-done e1570ad9cf93cea2 +541 13843 7973821015268215 CMakeFiles/flash.util aa8abbe0a50daa2a diff --git a/build/CMakeCache.txt b/build/CMakeCache.txt new file mode 100644 index 0000000..3b08d2d --- /dev/null +++ b/build/CMakeCache.txt @@ -0,0 +1,653 @@ +# This is the CMakeCache file. +# For build in directory: c:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build +# It was generated by CMake: C:/Espressif/tools/cmake/4.0.3/bin/cmake.exe +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//No help, variable specified on the command line. +CCACHE_ENABLE:UNINITIALIZED=False + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-addr2line.exe + +//Path to a program. +CMAKE_AR:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ar.exe + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_ASM_COMPILER_AR:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_ASM_COMPILER_RANLIB:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe + +//Asm Compiler Base Flags +CMAKE_ASM_FLAGS:STRING=@"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/asmflags" + +//Flags used by the ASM compiler during DEBUG builds. +CMAKE_ASM_FLAGS_DEBUG:STRING=-g + +//Flags used by the ASM compiler during MINSIZEREL builds. +CMAKE_ASM_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the ASM compiler during RELEASE builds. +CMAKE_ASM_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the ASM compiler during RELWITHDEBINFO builds. +CMAKE_ASM_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Choose the type of build, options are: None Debug Release RelWithDebInfo +// MinSizeRel ... +CMAKE_BUILD_TYPE:STRING= + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_AR:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe + +//C++ Compiler Base Flags +CMAKE_CXX_FLAGS:STRING=@"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags" + +//Flags used by the CXX compiler during DEBUG builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//Flags used by the CXX compiler during MINSIZEREL builds. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the CXX compiler during RELEASE builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the CXX compiler during RELWITHDEBINFO builds. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_AR:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_RANLIB:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe + +//C Compiler Base Flags +CMAKE_C_FLAGS:STRING=@"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + +//Flags used by the C compiler during DEBUG builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the C compiler during MINSIZEREL builds. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the C compiler during RELEASE builds. +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the C compiler during RELWITHDEBINFO builds. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Path to a program. +CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND + +//Linker Base Flags +CMAKE_EXE_LINKER_FLAGS:STRING=@"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/ldflags" + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of build database during the build. +CMAKE_EXPORT_BUILD_DATABASE:BOOL= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= + +//Value Computed by CMake. +CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/pkgRedirects + +//User executables (bin) +CMAKE_INSTALL_BINDIR:PATH=bin + +//Read-only architecture-independent data (DATAROOTDIR) +CMAKE_INSTALL_DATADIR:PATH= + +//Read-only architecture-independent data root (share) +CMAKE_INSTALL_DATAROOTDIR:PATH=share + +//Documentation root (DATAROOTDIR/doc/PROJECT_NAME) +CMAKE_INSTALL_DOCDIR:PATH= + +//C header files (include) +CMAKE_INSTALL_INCLUDEDIR:PATH=include + +//Info documentation (DATAROOTDIR/info) +CMAKE_INSTALL_INFODIR:PATH= + +//Object code libraries (lib) +CMAKE_INSTALL_LIBDIR:PATH=lib + +//Program executables (libexec) +CMAKE_INSTALL_LIBEXECDIR:PATH=libexec + +//Locale-dependent data (DATAROOTDIR/locale) +CMAKE_INSTALL_LOCALEDIR:PATH= + +//Modifiable single-machine data (var) +CMAKE_INSTALL_LOCALSTATEDIR:PATH=var + +//Man documentation (DATAROOTDIR/man) +CMAKE_INSTALL_MANDIR:PATH= + +//C header files for non-gcc (/usr/include) +CMAKE_INSTALL_OLDINCLUDEDIR:PATH=/usr/include + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/modbus_tcp_esp32 + +//Run-time variable data (LOCALSTATEDIR/run) +CMAKE_INSTALL_RUNSTATEDIR:PATH= + +//System admin executables (sbin) +CMAKE_INSTALL_SBINDIR:PATH=sbin + +//Modifiable architecture-independent data (com) +CMAKE_INSTALL_SHAREDSTATEDIR:PATH=com + +//Read-only single-machine data (etc) +CMAKE_INSTALL_SYSCONFDIR:PATH=etc + +//Path to a program. +CMAKE_LINKER:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ld.exe + +//Program used to build from build.ninja files. +CMAKE_MAKE_PROGRAM:FILEPATH=C:/Espressif/tools/ninja/1.12.1/ninja.exe + +//Flags used by the linker during the creation of modules during +// all build types. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-nm.exe + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objcopy.exe + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=modbus_tcp_esp32 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION:STATIC=4.0.0 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MAJOR:STATIC=4 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MINOR:STATIC=0 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_PATCH:STATIC=0 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_TWEAK:STATIC= + +//Path to a program. +CMAKE_RANLIB:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ranlib.exe + +//Path to a program. +CMAKE_READELF:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-readelf.exe + +//Flags used by the linker during the creation of shared libraries +// during all build types. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-strip.exe + +//Path to a program. +CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND + +//The CMake toolchain file +CMAKE_TOOLCHAIN_FILE:FILEPATH=C:/esp/v6.0/esp-idf/tools/cmake/toolchain-esp32.cmake + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Disable package configuration, target export and installation +DISABLE_PACKAGE_CONFIG_AND_INSTALL:BOOL=ON + +//Build TF-PSA-Crypto programs. +ENABLE_PROGRAMS:BOOL=OFF + +//Build TF-PSA-Crypto tests. +ENABLE_TESTING:BOOL=OFF + +//No help, variable specified on the command line. +ESP_PLATFORM:UNINITIALIZED=1 + +//Generate the auto-generated files as needed +GEN_FILES:BOOL=OFF + +//Git command line client +GIT_EXECUTABLE:FILEPATH=C:/Program Files/Git/cmd/git.exe + +//IDF Build Target +IDF_TARGET:STRING=esp32 + +//IDF Build Toolchain Type +IDF_TOOLCHAIN:STRING=gcc + +//Path to toolchain build directory containing response files and +// toolchain file copy +IDF_TOOLCHAIN_BUILD_DIR:PATH=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain + +//Install Mbed TLS headers. +INSTALL_MBEDTLS_HEADERS:BOOL=ON + +//Install TF PSA Crypto headers. +INSTALL_TF_PSA_CRYPTO_HEADERS:BOOL=ON + +//Explicitly link Mbed TLS library to pthread. +LINK_WITH_PTHREAD:BOOL=OFF + +//Explicitly link Mbed TLS library to trusted_storage. +LINK_WITH_TRUSTED_STORAGE:BOOL=OFF + +//Mbed TLS config file (overrides default). +MBEDTLS_CONFIG_FILE:FILEPATH= + +//Compiler warnings treated as errors +MBEDTLS_FATAL_WARNINGS:BOOL=ON + +//Mbed TLS user config file (appended to default). +MBEDTLS_USER_CONFIG_FILE:FILEPATH= + +//Value Computed by CMake +Mbed TLS_BINARY_DIR:STATIC=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls + +//Value Computed by CMake +Mbed TLS_IS_TOP_LEVEL:STATIC=OFF + +//Value Computed by CMake +Mbed TLS_SOURCE_DIR:STATIC=C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls + +//No help, variable specified on the command line. +PYTHON:UNINITIALIZED=C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe + +//No help, variable specified on the command line. +PYTHON_DEPS_CHECKED:UNINITIALIZED=1 + +//Value Computed by CMake +TF-PSA-Crypto_BINARY_DIR:STATIC=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto + +//Value Computed by CMake +TF-PSA-Crypto_IS_TOP_LEVEL:STATIC=OFF + +//Value Computed by CMake +TF-PSA-Crypto_SOURCE_DIR:STATIC=C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto + +//TF-PSA-Crypto config file (overrides default). +TF_PSA_CRYPTO_CONFIG_FILE:FILEPATH= + +//Compiler warnings treated as errors +TF_PSA_CRYPTO_FATAL_WARNINGS:BOOL=ON + +TF_PSA_CRYPTO_TARGET_PREFIX:STRING= + +//Path to the PSA Crypto configuration file +TF_PSA_CRYPTO_USER_CONFIG_FILE:STRING=mbedtls/esp_config.h + +//Build Mbed TLS shared library. +USE_SHARED_MBEDTLS_LIBRARY:BOOL=OFF + +//Build TF-PSA-Crypto shared library. +USE_SHARED_TF_PSA_CRYPTO_LIBRARY:BOOL=OFF + +//Build Mbed TLS static library. +USE_STATIC_MBEDTLS_LIBRARY:BOOL=ON + +//Build TF-PSA-Crypto static library. +USE_STATIC_TF_PSA_CRYPTO_LIBRARY:BOOL=ON + +//Dependencies for the target +builtin_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_esp_libc;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_esp_stdio;general;__idf_xtensa;general;idf::esp_security; + +//Value Computed by CMake +esp-idf_BINARY_DIR:STATIC=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf + +//Value Computed by CMake +esp-idf_IS_TOP_LEVEL:STATIC=OFF + +//Value Computed by CMake +esp-idf_SOURCE_DIR:STATIC=C:/esp/v6.0/esp-idf + +//Dependencies for the target +everest_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_esp_libc;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_esp_stdio;general;__idf_xtensa; + +//Dependencies for the target +mbedtls_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_esp_libc;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_esp_stdio;general;__idf_xtensa;general;mbedx509; + +//Dependencies for the target +mbedx509_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_esp_libc;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_esp_stdio;general;__idf_xtensa;general;tfpsacrypto; + +//Value Computed by CMake +modbus_tcp_esp32_BINARY_DIR:STATIC=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build + +//Value Computed by CMake +modbus_tcp_esp32_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +modbus_tcp_esp32_SOURCE_DIR:STATIC=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI + +//Dependencies for the target +p256m_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_esp_libc;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_esp_stdio;general;__idf_xtensa;general;idf::esp_security; + +//Dependencies for the target +tfpsacrypto_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_esp_libc;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_esp_stdio;general;__idf_xtensa;general;builtin;general;everest;general;p256m;general;__idf_nvs_flash;general;idf::esp_security; + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_ADDR2LINE +CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_COMPILER_AR +CMAKE_ASM_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_COMPILER_RANLIB +CMAKE_ASM_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +CMAKE_ASM_COMPILER_WORKS:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS +CMAKE_ASM_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_DEBUG +CMAKE_ASM_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_MINSIZEREL +CMAKE_ASM_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELEASE +CMAKE_ASM_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELWITHDEBINFO +CMAKE_ASM_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=c:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=4 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=0 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=3 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=C:/Espressif/tools/cmake/4.0.3/bin/cmake.exe +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=C:/Espressif/tools/cmake/4.0.3/bin/cpack.exe +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=C:/Espressif/tools/cmake/4.0.3/bin/ctest.exe +//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR +CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB +CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_AR +CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB +CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//Path to cache edit program executable. +CMAKE_EDIT_COMMAND:INTERNAL=C:/Espressif/tools/cmake/4.0.3/bin/cmake-gui.exe +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_BUILD_DATABASE +CMAKE_EXPORT_BUILD_DATABASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Ninja +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Test CMAKE_HAVE_LIBC_PTHREAD +CMAKE_HAVE_LIBC_PTHREAD:INTERNAL=1 +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI +//ADVANCED property for variable: CMAKE_INSTALL_BINDIR +CMAKE_INSTALL_BINDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DATADIR +CMAKE_INSTALL_DATADIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DATAROOTDIR +CMAKE_INSTALL_DATAROOTDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DOCDIR +CMAKE_INSTALL_DOCDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_INCLUDEDIR +CMAKE_INSTALL_INCLUDEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_INFODIR +CMAKE_INSTALL_INFODIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LIBDIR +CMAKE_INSTALL_LIBDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LIBEXECDIR +CMAKE_INSTALL_LIBEXECDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LOCALEDIR +CMAKE_INSTALL_LOCALEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LOCALSTATEDIR +CMAKE_INSTALL_LOCALSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_MANDIR +CMAKE_INSTALL_MANDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_OLDINCLUDEDIR +CMAKE_INSTALL_OLDINCLUDEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_RUNSTATEDIR +CMAKE_INSTALL_RUNSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SBINDIR +CMAKE_INSTALL_SBINDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SHAREDSTATEDIR +CMAKE_INSTALL_SHAREDSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SYSCONFDIR +CMAKE_INSTALL_SYSCONFDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//Name of CMakeLists files to read +CMAKE_LIST_FILE_NAME:INTERNAL=CMakeLists.txt +//ADVANCED property for variable: CMAKE_MAKE_PROGRAM +CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=155 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_READELF +CMAKE_READELF-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_TAPI +CMAKE_TAPI-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//Test C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS +C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS:INTERNAL=1 +//Details about finding Git +FIND_PACKAGE_MESSAGE_DETAILS_Git:INTERNAL=[C:/Program Files/Git/cmd/git.exe][v2.53.0.windows.1()] +//Details about finding Python3 +FIND_PACKAGE_MESSAGE_DETAILS_Python3:INTERNAL=[C:/Espressif/tools/python/v6.0/venv/Scripts/python.exe][found components: Interpreter ][v3.13.12()] +//Details about finding Threads +FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()] +//ADVANCED property for variable: GIT_EXECUTABLE +GIT_EXECUTABLE-ADVANCED:INTERNAL=1 +//CMAKE_INSTALL_PREFIX during last run +_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX:INTERNAL=C:/Program Files (x86)/modbus_tcp_esp32 +//Compiler reason failure +_Python3_Compiler_REASON_FAILURE:INTERNAL= +//Development reason failure +_Python3_Development_REASON_FAILURE:INTERNAL= +_Python3_EXECUTABLE:INTERNAL=C:/Espressif/tools/python/v6.0/venv/Scripts/python.exe +//Python3 Properties +_Python3_INTERPRETER_PROPERTIES:INTERNAL=Python;3;13;12;32;64;;;abi3;C:\Users\e.adame\scoop\apps\python313\current\Lib;C:\Espressif\tools\python\v6.0\venv\Lib;C:\Espressif\tools\python\v6.0\venv\Lib\site-packages;C:\Espressif\tools\python\v6.0\venv\Lib\site-packages +_Python3_INTERPRETER_SIGNATURE:INTERNAL=1a80b43be9505f03a5985fe5109cf175 +//NumPy reason failure +_Python3_NumPy_REASON_FAILURE:INTERNAL= + diff --git a/build/CMakeFiles/4.0.3/CMakeASMCompiler.cmake b/build/CMakeFiles/4.0.3/CMakeASMCompiler.cmake new file mode 100644 index 0000000..1bd46d0 --- /dev/null +++ b/build/CMakeFiles/4.0.3/CMakeASMCompiler.cmake @@ -0,0 +1,31 @@ +set(CMAKE_ASM_COMPILER "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc.exe") +set(CMAKE_ASM_COMPILER_ARG1 "") +set(CMAKE_AR "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ar.exe") +set(CMAKE_ASM_COMPILER_AR "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ar.exe") +set(CMAKE_RANLIB "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ranlib.exe") +set(CMAKE_ASM_COMPILER_RANLIB "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe") +set(CMAKE_LINKER "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ld.exe") +set(CMAKE_LINKER_LINK "") +set(CMAKE_LINKER_LLD "") +set(CMAKE_ASM_COMPILER_LINKER "") +set(CMAKE_ASM_COMPILER_LINKER_ID "") +set(CMAKE_ASM_COMPILER_LINKER_VERSION ) +set(CMAKE_ASM_COMPILER_LINKER_FRONTEND_VARIANT ) +set(CMAKE_MT "") +set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") +set(CMAKE_ASM_COMPILER_LOADED 1) +set(CMAKE_ASM_COMPILER_ID "GNU") +set(CMAKE_ASM_COMPILER_VERSION "") +set(CMAKE_ASM_COMPILER_ENV_VAR "ASM") + + +set(CMAKE_ASM_COMPILER_SYSROOT "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr") +set(CMAKE_COMPILER_SYSROOT "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr") + +set(CMAKE_ASM_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_ASM_LINKER_PREFERENCE 0) +set(CMAKE_ASM_LINKER_DEPFILE_SUPPORTED ) +set(CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED ) +set(CMAKE_ASM_LINKER_PUSHPOP_STATE_SUPPORTED ) + + diff --git a/build/CMakeFiles/4.0.3/CMakeCCompiler.cmake b/build/CMakeFiles/4.0.3/CMakeCCompiler.cmake new file mode 100644 index 0000000..40162c3 --- /dev/null +++ b/build/CMakeFiles/4.0.3/CMakeCCompiler.cmake @@ -0,0 +1,85 @@ +set(CMAKE_C_COMPILER "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc.exe") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "15.2.0") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "23") +set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_C_STANDARD_LATEST "23") +set(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") +set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") +set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") +set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") +set(CMAKE_C17_COMPILE_FEATURES "c_std_17") +set(CMAKE_C23_COMPILE_FEATURES "c_std_23") + +set(CMAKE_C_PLATFORM_ID "") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_C_COMPILER_APPLE_SYSROOT "") +set(CMAKE_C_SIMULATE_VERSION "") + +set(CMAKE_C_COMPILER_SYSROOT "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr") +set(CMAKE_COMPILER_SYSROOT "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr") + + +set(CMAKE_AR "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ar.exe") +set(CMAKE_C_COMPILER_AR "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ar.exe") +set(CMAKE_RANLIB "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ranlib.exe") +set(CMAKE_C_COMPILER_RANLIB "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe") +set(CMAKE_LINKER "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ld.exe") +set(CMAKE_LINKER_LINK "") +set(CMAKE_LINKER_LLD "") +set(CMAKE_C_COMPILER_LINKER "NOTFOUND") +set(CMAKE_C_COMPILER_LINKER_ID "") +set(CMAKE_C_COMPILER_LINKER_VERSION ) +set(CMAKE_C_COMPILER_LINKER_FRONTEND_VARIANT ) +set(CMAKE_MT "") +set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") +set(CMAKE_COMPILER_IS_GNUCC 1) +set(CMAKE_C_COMPILER_LOADED 1) +set(CMAKE_C_COMPILER_WORKS TRUE) +set(CMAKE_C_ABI_COMPILED TRUE) + +set(CMAKE_C_COMPILER_ENV_VAR "CC") + +set(CMAKE_C_COMPILER_ID_RUN 1) +set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) +set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_C_LINKER_PREFERENCE 10) +set(CMAKE_C_LINKER_DEPFILE_SUPPORTED ) +set(CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED ) +set(CMAKE_C_LINKER_PUSHPOP_STATE_SUPPORTED ) + +# Save compiler ABI information. +set(CMAKE_C_SIZEOF_DATA_PTR "4") +set(CMAKE_C_COMPILER_ABI "ELF") +set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_C_LIBRARY_ARCHITECTURE "") + +if(CMAKE_C_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_C_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +endif() + +if(CMAKE_C_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include-fixed;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include") +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;c;nosys;c;gcc") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/usr/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/build/CMakeFiles/4.0.3/CMakeCXXCompiler.cmake b/build/CMakeFiles/4.0.3/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..e1e4f40 --- /dev/null +++ b/build/CMakeFiles/4.0.3/CMakeCXXCompiler.cmake @@ -0,0 +1,109 @@ +set(CMAKE_CXX_COMPILER "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-g++.exe") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "15.2.0") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_CXX_STANDARD_LATEST "26") +set(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;cxx_std_26") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(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") +set(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") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") +set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") +set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") +set(CMAKE_CXX26_COMPILE_FEATURES "cxx_std_26") + +set(CMAKE_CXX_PLATFORM_ID "") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_CXX_COMPILER_APPLE_SYSROOT "") +set(CMAKE_CXX_SIMULATE_VERSION "") + +set(CMAKE_CXX_COMPILER_SYSROOT "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr") +set(CMAKE_COMPILER_SYSROOT "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr") + + +set(CMAKE_AR "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ar.exe") +set(CMAKE_CXX_COMPILER_AR "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ar.exe") +set(CMAKE_RANLIB "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ranlib.exe") +set(CMAKE_CXX_COMPILER_RANLIB "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe") +set(CMAKE_LINKER "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ld.exe") +set(CMAKE_LINKER_LINK "") +set(CMAKE_LINKER_LLD "") +set(CMAKE_CXX_COMPILER_LINKER "NOTFOUND") +set(CMAKE_CXX_COMPILER_LINKER_ID "") +set(CMAKE_CXX_COMPILER_LINKER_VERSION ) +set(CMAKE_CXX_COMPILER_LINKER_FRONTEND_VARIANT ) +set(CMAKE_MT "") +set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") +set(CMAKE_COMPILER_IS_GNUCXX 1) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm;ccm;cxxm;c++m) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) + +foreach (lang IN ITEMS C OBJC OBJCXX) + if (CMAKE_${lang}_COMPILER_ID_RUN) + foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) + list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) + endforeach() + endif() +endforeach() + +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) +set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED ) +set(CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED ) +set(CMAKE_CXX_LINKER_PUSHPOP_STATE_SUPPORTED ) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "4") +set(CMAKE_CXX_COMPILER_ABI "ELF") +set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0/backward;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include-fixed;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "gcc;c;nosys;c;gcc") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/usr/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +set(CMAKE_CXX_COMPILER_CLANG_RESOURCE_DIR "") + +set(CMAKE_CXX_COMPILER_IMPORT_STD "") +### Imported target for C++23 standard library +set(CMAKE_CXX23_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Experimental `import std` support not enabled when detecting toolchain; it must be set before `CXX` is enabled (usually a `project()` call)") + + +### Imported target for C++26 standard library +set(CMAKE_CXX26_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Experimental `import std` support not enabled when detecting toolchain; it must be set before `CXX` is enabled (usually a `project()` call)") + + + diff --git a/build/CMakeFiles/4.0.3/CMakeDetermineCompilerABI_C.bin b/build/CMakeFiles/4.0.3/CMakeDetermineCompilerABI_C.bin new file mode 100644 index 0000000..bab3c81 Binary files /dev/null and b/build/CMakeFiles/4.0.3/CMakeDetermineCompilerABI_C.bin differ diff --git a/build/CMakeFiles/4.0.3/CMakeDetermineCompilerABI_CXX.bin b/build/CMakeFiles/4.0.3/CMakeDetermineCompilerABI_CXX.bin new file mode 100644 index 0000000..2234647 Binary files /dev/null and b/build/CMakeFiles/4.0.3/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/build/CMakeFiles/4.0.3/CMakeSystem.cmake b/build/CMakeFiles/4.0.3/CMakeSystem.cmake new file mode 100644 index 0000000..f34c4fd --- /dev/null +++ b/build/CMakeFiles/4.0.3/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Windows-10.0.26100") +set(CMAKE_HOST_SYSTEM_NAME "Windows") +set(CMAKE_HOST_SYSTEM_VERSION "10.0.26100") +set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") + +include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/toolchain-esp32.cmake") + +set(CMAKE_SYSTEM "Generic") +set(CMAKE_SYSTEM_NAME "Generic") +set(CMAKE_SYSTEM_VERSION "") +set(CMAKE_SYSTEM_PROCESSOR "") + +set(CMAKE_CROSSCOMPILING "TRUE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/build/CMakeFiles/4.0.3/CompilerIdC/CMakeCCompilerId.c b/build/CMakeFiles/4.0.3/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000..a842bb6 --- /dev/null +++ b/build/CMakeFiles/4.0.3/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,905 @@ +#ifdef __cplusplus +# error "A C++ compiler has been selected for C." +#endif + +#if defined(__18CXX) +# define ID_VOID_MAIN +#endif +#if defined(__CLASSIC_C__) +/* cv-qualifiers did not exist in K&R C */ +# define const +# define volatile +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_C) +# define COMPILER_ID "SunPro" +# if __SUNPRO_C >= 0x5100 + /* __SUNPRO_C = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# endif + +#elif defined(__HP_cc) +# define COMPILER_ID "HP" + /* __HP_cc = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) + +#elif defined(__DECC) +# define COMPILER_ID "Compaq" + /* __DECC_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) + +#elif defined(__IBMC__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__open_xl__) && defined(__clang__) +# define COMPILER_ID "IBMClang" +# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) +# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) +# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 +# define COMPILER_ID "XL" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(__clang__) && defined(__cray__) +# define COMPILER_ID "CrayClang" +# define COMPILER_VERSION_MAJOR DEC(__cray_major__) +# define COMPILER_VERSION_MINOR DEC(__cray_minor__) +# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TASKING__) +# define COMPILER_ID "Tasking" + # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) + # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) +# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) + +#elif defined(__ORANGEC__) +# define COMPILER_ID "OrangeC" +# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) + +#elif defined(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__BCC__) +# define COMPILER_ID "Bruce" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) && defined(__ti__) +# define COMPILER_ID "TIClang" + # define COMPILER_VERSION_MAJOR DEC(__ti_major__) + # define COMPILER_VERSION_MINOR DEC(__ti_minor__) + # define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__) +# define COMPILER_VERSION_INTERNAL DEC(__ti_version__) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) +# define COMPILER_ID "LCC" +# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) +# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) +# if defined(__LCC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) +# endif +# if defined(__GNUC__) && defined(__GNUC_MINOR__) +# define SIMULATE_ID "GNU" +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif +# endif + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(_ADI_COMPILER) +# define COMPILER_ID "ADSP" +#if defined(__VERSIONNUM__) + /* __VERSIONNUM__ = 0xVVRRPPTT */ +# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) +# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + +#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) +# define COMPILER_ID "SDCC" +# if defined(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) +# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) +# else + /* SDCC = VRP */ +# define COMPILER_VERSION_MAJOR DEC(SDCC/100) +# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) +# define COMPILER_VERSION_PATCH DEC(SDCC % 10) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +# elif defined(_ADI_COMPILER) +# define PLATFORM_ID "ADSP" + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__clang__) && defined(__ti__) +# if defined(__ARM_ARCH) +# define ARCHITECTURE_ID "ARM" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +# elif defined(__ADSPSHARC__) +# define ARCHITECTURE_ID "SHARC" + +# elif defined(__ADSPBLACKFIN__) +# define ARCHITECTURE_ID "Blackfin" + +#elif defined(__TASKING__) + +# if defined(__CTC__) || defined(__CPTC__) +# define ARCHITECTURE_ID "TriCore" + +# elif defined(__CMCS__) +# define ARCHITECTURE_ID "MCS" + +# elif defined(__CARM__) || defined(__CPARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__CARC__) +# define ARCHITECTURE_ID "ARC" + +# elif defined(__C51__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__CPCP__) +# define ARCHITECTURE_ID "PCP" + +# else +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#define C_STD_99 199901L +#define C_STD_11 201112L +#define C_STD_17 201710L +#define C_STD_23 202311L + +#ifdef __STDC_VERSION__ +# define C_STD __STDC_VERSION__ +#endif + +#if !defined(__STDC__) && !defined(__clang__) +# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) +# define C_VERSION "90" +# else +# define C_VERSION +# endif +#elif C_STD > C_STD_17 +# define C_VERSION "23" +#elif C_STD > C_STD_11 +# define C_VERSION "17" +#elif C_STD > C_STD_99 +# define C_VERSION "11" +#elif C_STD >= C_STD_99 +# define C_VERSION "99" +#else +# define C_VERSION "90" +#endif +const char* info_language_standard_default = + "INFO" ":" "standard_default[" C_VERSION "]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +#ifdef ID_VOID_MAIN +void main() {} +#else +# if defined(__CLASSIC_C__) +int main(argc, argv) int argc; char *argv[]; +# else +int main(int argc, char* argv[]) +# endif +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#if defined(COMPILER_VERSION_INTERNAL) || defined(COMPILER_VERSION_INTERNAL_STR) + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} +#endif diff --git a/build/CMakeFiles/4.0.3/CompilerIdC/a.out b/build/CMakeFiles/4.0.3/CompilerIdC/a.out new file mode 100644 index 0000000..ee1b58d Binary files /dev/null and b/build/CMakeFiles/4.0.3/CompilerIdC/a.out differ diff --git a/build/CMakeFiles/4.0.3/CompilerIdCXX/CMakeCXXCompilerId.cpp b/build/CMakeFiles/4.0.3/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..94d4310 --- /dev/null +++ b/build/CMakeFiles/4.0.3/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,920 @@ +/* This source file must have a .cpp extension so that all C++ compilers + recognize the extension without flags. Borland does not know .cxx for + example. */ +#ifndef __cplusplus +# error "A C compiler has been selected for C++." +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + /* __DECCXX_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) + +#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__open_xl__) && defined(__clang__) +# define COMPILER_ID "IBMClang" +# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) +# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) +# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 +# define COMPILER_ID "XL" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(__clang__) && defined(__cray__) +# define COMPILER_ID "CrayClang" +# define COMPILER_VERSION_MAJOR DEC(__cray_major__) +# define COMPILER_VERSION_MINOR DEC(__cray_minor__) +# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TASKING__) +# define COMPILER_ID "Tasking" + # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) + # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) +# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) + +#elif defined(__ORANGEC__) +# define COMPILER_ID "OrangeC" +# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) && defined(__ti__) +# define COMPILER_ID "TIClang" + # define COMPILER_VERSION_MAJOR DEC(__ti_major__) + # define COMPILER_VERSION_MINOR DEC(__ti_minor__) + # define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__) +# define COMPILER_VERSION_INTERNAL DEC(__ti_version__) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) +# define COMPILER_ID "LCC" +# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) +# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) +# if defined(__LCC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) +# endif +# if defined(__GNUC__) && defined(__GNUC_MINOR__) +# define SIMULATE_ID "GNU" +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif +# endif + +#elif defined(__GNUC__) || defined(__GNUG__) +# define COMPILER_ID "GNU" +# if defined(__GNUC__) +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# else +# define COMPILER_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(_ADI_COMPILER) +# define COMPILER_ID "ADSP" +#if defined(__VERSIONNUM__) + /* __VERSIONNUM__ = 0xVVRRPPTT */ +# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) +# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +# elif defined(_ADI_COMPILER) +# define PLATFORM_ID "ADSP" + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__clang__) && defined(__ti__) +# if defined(__ARM_ARCH) +# define ARCHITECTURE_ID "ARM" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +# elif defined(__ADSPSHARC__) +# define ARCHITECTURE_ID "SHARC" + +# elif defined(__ADSPBLACKFIN__) +# define ARCHITECTURE_ID "Blackfin" + +#elif defined(__TASKING__) + +# if defined(__CTC__) || defined(__CPTC__) +# define ARCHITECTURE_ID "TriCore" + +# elif defined(__CMCS__) +# define ARCHITECTURE_ID "MCS" + +# elif defined(__CARM__) || defined(__CPARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__CARC__) +# define ARCHITECTURE_ID "ARC" + +# elif defined(__C51__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__CPCP__) +# define ARCHITECTURE_ID "PCP" + +# else +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#define CXX_STD_98 199711L +#define CXX_STD_11 201103L +#define CXX_STD_14 201402L +#define CXX_STD_17 201703L +#define CXX_STD_20 202002L +#define CXX_STD_23 202302L + +#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) +# if _MSVC_LANG > CXX_STD_17 +# define CXX_STD _MSVC_LANG +# elif _MSVC_LANG == CXX_STD_17 && defined(__cpp_aggregate_paren_init) +# define CXX_STD CXX_STD_20 +# elif _MSVC_LANG > CXX_STD_14 && __cplusplus > CXX_STD_17 +# define CXX_STD CXX_STD_20 +# elif _MSVC_LANG > CXX_STD_14 +# define CXX_STD CXX_STD_17 +# elif defined(__INTEL_CXX11_MODE__) && defined(__cpp_aggregate_nsdmi) +# define CXX_STD CXX_STD_14 +# elif defined(__INTEL_CXX11_MODE__) +# define CXX_STD CXX_STD_11 +# else +# define CXX_STD CXX_STD_98 +# endif +#elif defined(_MSC_VER) && defined(_MSVC_LANG) +# if _MSVC_LANG > __cplusplus +# define CXX_STD _MSVC_LANG +# else +# define CXX_STD __cplusplus +# endif +#elif defined(__NVCOMPILER) +# if __cplusplus == CXX_STD_17 && defined(__cpp_aggregate_paren_init) +# define CXX_STD CXX_STD_20 +# else +# define CXX_STD __cplusplus +# endif +#elif defined(__INTEL_COMPILER) || defined(__PGI) +# if __cplusplus == CXX_STD_11 && defined(__cpp_namespace_attributes) +# define CXX_STD CXX_STD_17 +# elif __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi) +# define CXX_STD CXX_STD_14 +# else +# define CXX_STD __cplusplus +# endif +#elif (defined(__IBMCPP__) || defined(__ibmxl__)) && defined(__linux__) +# if __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi) +# define CXX_STD CXX_STD_14 +# else +# define CXX_STD __cplusplus +# endif +#elif __cplusplus == 1 && defined(__GXX_EXPERIMENTAL_CXX0X__) +# define CXX_STD CXX_STD_11 +#else +# define CXX_STD __cplusplus +#endif + +const char* info_language_standard_default = "INFO" ":" "standard_default[" +#if CXX_STD > CXX_STD_23 + "26" +#elif CXX_STD > CXX_STD_20 + "23" +#elif CXX_STD > CXX_STD_17 + "20" +#elif CXX_STD > CXX_STD_14 + "17" +#elif CXX_STD > CXX_STD_11 + "14" +#elif CXX_STD >= CXX_STD_11 + "11" +#else + "98" +#endif +"]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#if defined(COMPILER_VERSION_INTERNAL) || defined(COMPILER_VERSION_INTERNAL_STR) + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} diff --git a/build/CMakeFiles/4.0.3/CompilerIdCXX/a.out b/build/CMakeFiles/4.0.3/CompilerIdCXX/a.out new file mode 100644 index 0000000..9361588 Binary files /dev/null and b/build/CMakeFiles/4.0.3/CompilerIdCXX/a.out differ diff --git a/build/CMakeFiles/CMakeConfigureLog.yaml b/build/CMakeFiles/CMakeConfigureLog.yaml new file mode 100644 index 0000000..d84e35a --- /dev/null +++ b/build/CMakeFiles/CMakeConfigureLog.yaml @@ -0,0 +1,1695 @@ + +--- +events: + - + kind: "message-v1" + backtrace: + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineSystem.cmake:200 (message)" + - "C:/esp/v6.0/esp-idf/tools/cmake/project.cmake:591 (__project)" + - "CMakeLists.txt:4 (project)" + message: | + The target system is: Generic - - + The host system is: Windows - 10.0.26100 - AMD64 + - + kind: "message-v1" + backtrace: + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)" + - "C:/esp/v6.0/esp-idf/tools/cmake/project.cmake:591 (__project)" + - "CMakeLists.txt:4 (project)" + message: | + Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. + Compiler: C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc.exe + Build flags: @C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags + Id flags: + + The output was: + 0 + + + Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" + + The C compiler identification is GNU, found in: + C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/4.0.3/CompilerIdC/a.out + + - + kind: "message-v1" + backtrace: + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" + - "C:/esp/v6.0/esp-idf/tools/cmake/project.cmake:591 (__project)" + - "CMakeLists.txt:4 (project)" + message: | + Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. + Compiler: C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-g++.exe + Build flags: @C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags + Id flags: + + The output was: + 0 + + + Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" + + The CXX compiler identification is GNU, found in: + C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/4.0.3/CompilerIdCXX/a.out + + - + kind: "message-v1" + backtrace: + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerId.cmake:1271 (message)" + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineASMCompiler.cmake:139 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)" + - "C:/esp/v6.0/esp-idf/tools/cmake/project.cmake:591 (__project)" + - "CMakeLists.txt:4 (project)" + message: | + Checking whether the ASM compiler is GNU using "--version" matched "(GNU assembler)|(GCC)|(Free Software Foundation)": + xtensa-esp-elf-gcc.exe (crosstool-NG esp-15.2.0_20251204) 15.2.0 + Copyright (C) 2025 Free Software Foundation, Inc. + This is free software; see the source for copying conditions. There is NO + warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + + - + kind: "try_compile-v1" + backtrace: + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:83 (try_compile)" + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "C:/esp/v6.0/esp-idf/tools/cmake/project.cmake:591 (__project)" + - "CMakeLists.txt:4 (project)" + checks: + - "Detecting C compiler ABI info" + directories: + source: "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/CMakeScratch/TryCompile-548k6g" + binary: "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/CMakeScratch/TryCompile-548k6g" + cmakeVariables: + CMAKE_C_FLAGS: "@\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\"" + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "@\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/ldflags\"" + CMAKE_MODULE_PATH: "C:/esp/v6.0/esp-idf/tools/cmake;C:/esp/v6.0/esp-idf/tools/cmake/third_party" + buildResult: + variable: "CMAKE_C_ABI_COMPILED" + cached: true + stdout: | + Change Dir: 'C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/CMakeScratch/TryCompile-548k6g' + + Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_8ca56 + [1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -v -o CMakeFiles/cmTC_8ca56.dir/CMakeCCompilerABI.c.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c + Using built-in specs. + COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe + Target: xtensa-esp-elf + Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_8ca56.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_8ca56.dir/' + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_8ca56.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32.so -version -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccz2tzN7.s + GNU C23 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf) + compiled by GNU C version 6.3.0 20170516, GMP version 6.3.0, MPFR version 4.2.1, MPC version 1.3.1, isl version isl-0.26-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include" + ignoring nonexistent directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/../../../../include" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/include" + #include "..." search starts here: + #include <...> search starts here: + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include + End of search list. + Compiler executable checksum: e6b21aec963fbe25dfad096ddce866c1 + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_8ca56.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_8ca56.dir/' + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_8ca56.dir/CMakeCCompilerABI.c.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccz2tzN7.s + COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ + LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/\x0d + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_8ca56.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_8ca56.dir/CMakeCCompilerABI.c.'\x0d + [2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/ldflags" -v CMakeFiles/cmTC_8ca56.dir/CMakeCCompilerABI.c.obj -o cmTC_8ca56 && cd ." + Using built-in specs. + COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe + COLLECT_LTO_WRAPPER=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe + Target: xtensa-esp-elf + Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) + COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ + LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/ + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_8ca56' '-dumpdir' 'cmTC_8ca56.' + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccbcxtCg.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 --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so -o cmTC_8ca56 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccejuk9m -lgcc -lc -lnosys -lc -lgcc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o\x0d + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_8ca56' '-dumpdir' 'cmTC_8ca56.'\x0d + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:191 (message)" + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "C:/esp/v6.0/esp-idf/tools/cmake/project.cmake:591 (__project)" + - "CMakeLists.txt:4 (project)" + message: | + Parsed C implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include] + end of search list found + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include] + implicit include dirs: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include-fixed;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include] + + + - + kind: "message-v1" + backtrace: + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:227 (message)" + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "C:/esp/v6.0/esp-idf/tools/cmake/project.cmake:591 (__project)" + - "CMakeLists.txt:4 (project)" + message: | + Parsed C implicit link information: + link line regex: [^( *|.*[/\\])(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)))("|,| |$)] + ignore line: [Change Dir: 'C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/CMakeScratch/TryCompile-548k6g'] + ignore line: [] + ignore line: [Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_8ca56] + ignore line: [[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -v -o CMakeFiles/cmTC_8ca56.dir/CMakeCCompilerABI.c.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe] + ignore line: [Target: xtensa-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) ] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_8ca56.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_8ca56.dir/'] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_8ca56.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32.so -version -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccz2tzN7.s] + ignore line: [GNU C23 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf)] + ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.3.0 MPFR version 4.2.1 MPC version 1.3.1 isl version isl-0.26-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include"] + ignore line: [ignoring nonexistent directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/../../../../include"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include] + ignore line: [End of search list.] + ignore line: [Compiler executable checksum: e6b21aec963fbe25dfad096ddce866c1] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_8ca56.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_8ca56.dir/'] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_8ca56.dir/CMakeCCompilerABI.c.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccz2tzN7.s] + ignore line: [COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/\x0d] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_8ca56.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_8ca56.dir/CMakeCCompilerABI.c.'\x0d] + ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/ldflags" -v CMakeFiles/cmTC_8ca56.dir/CMakeCCompilerABI.c.obj -o cmTC_8ca56 && cd ."] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe] + ignore line: [COLLECT_LTO_WRAPPER=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe] + ignore line: [Target: xtensa-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) ] + ignore line: [COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_8ca56' '-dumpdir' 'cmTC_8ca56.'] + link line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccbcxtCg.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 --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so -o cmTC_8ca56 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccejuk9m -lgcc -lc -lnosys -lc -lgcc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o\x0d] + arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe] ==> ignore + arg [-plugin] ==> ignore + arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll] ==> ignore + arg [-plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe] ==> ignore + arg [-plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccbcxtCg.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lnosys] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [--sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf] ==> ignore + arg [--dynconfig=xtensa_esp32.so] ==> ignore + arg [-o] ==> ignore + arg [cmTC_8ca56] ==> ignore + arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o] ==> obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o] + arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o] ==> obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o] + arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o] ==> obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] + arg [@C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccejuk9m] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lnosys] ==> lib [nosys] + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o] ==> obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o] + arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o] ==> obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_8ca56' '-dumpdir' 'cmTC_8ca56.'\x0d] + ignore line: [] + ignore line: [] + collapse obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32/crt0.o] + collapse obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o] + collapse obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o] + collapse obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o] + collapse obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/usr/lib] + implicit libs: [gcc;c;nosys;c;gcc] + implicit objs: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32/crt0.o;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o] + implicit dirs: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/usr/lib] + implicit fwks: [] + + + - + kind: "try_compile-v1" + backtrace: + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:83 (try_compile)" + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "C:/esp/v6.0/esp-idf/tools/cmake/project.cmake:591 (__project)" + - "CMakeLists.txt:4 (project)" + checks: + - "Detecting CXX compiler ABI info" + directories: + source: "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/CMakeScratch/TryCompile-t6rorp" + binary: "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/CMakeScratch/TryCompile-t6rorp" + cmakeVariables: + CMAKE_CXX_FLAGS: "@\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags\"" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_CXX_SCAN_FOR_MODULES: "OFF" + CMAKE_EXE_LINKER_FLAGS: "@\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/ldflags\"" + CMAKE_MODULE_PATH: "C:/esp/v6.0/esp-idf/tools/cmake;C:/esp/v6.0/esp-idf/tools/cmake/third_party" + buildResult: + variable: "CMAKE_CXX_ABI_COMPILED" + cached: true + stdout: | + Change Dir: 'C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/CMakeScratch/TryCompile-t6rorp' + + Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_71e58 + [1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags" -v -o CMakeFiles/cmTC_71e58.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp + Using built-in specs. + COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe + Target: xtensa-esp-elf + Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_71e58.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_71e58.dir/' + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1plus.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_71e58.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32.so -version -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccmDntEz.s + GNU C++17 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf) + compiled by GNU C version 6.3.0 20170516, GMP version 6.3.0, MPFR version 4.2.1, MPC version 1.3.1, isl version isl-0.26-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/backward" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include" + ignoring nonexistent directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/../../../../include" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/include" + #include "..." search starts here: + #include <...> search starts here: + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0 + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32 + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/backward + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include + End of search list. + Compiler executable checksum: 4a5fbbbea400d48f02e70eeffcc23385 + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_71e58.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_71e58.dir/' + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_71e58.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccmDntEz.s + COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ + LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/ + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_71e58.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_71e58.dir/CMakeCXXCompilerABI.cpp.'\x0d + [2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags" @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/ldflags" -v CMakeFiles/cmTC_71e58.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_71e58 && cd ." + Using built-in specs. + COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe + COLLECT_LTO_WRAPPER=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe + Target: xtensa-esp-elf + Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) + COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ + LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/ + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_71e58' '-dumpdir' 'cmTC_71e58.' + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccqbCQiI.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 --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so -o cmTC_71e58 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccmem9zg -lgcc -lc -lnosys -lc -lgcc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o\x0d + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_71e58' '-dumpdir' 'cmTC_71e58.'\x0d + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:191 (message)" + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "C:/esp/v6.0/esp-idf/tools/cmake/project.cmake:591 (__project)" + - "CMakeLists.txt:4 (project)" + message: | + Parsed CXX implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/backward] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include] + end of search list found + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/backward] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0/backward] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include] + implicit include dirs: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0/backward;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include-fixed;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include] + + + - + kind: "message-v1" + backtrace: + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:227 (message)" + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "C:/esp/v6.0/esp-idf/tools/cmake/project.cmake:591 (__project)" + - "CMakeLists.txt:4 (project)" + message: | + Parsed CXX implicit link information: + link line regex: [^( *|.*[/\\])(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)))("|,| |$)] + ignore line: [Change Dir: 'C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/CMakeScratch/TryCompile-t6rorp'] + ignore line: [] + ignore line: [Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_71e58] + ignore line: [[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags" -v -o CMakeFiles/cmTC_71e58.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe] + ignore line: [Target: xtensa-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) ] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_71e58.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_71e58.dir/'] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1plus.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_71e58.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32.so -version -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccmDntEz.s] + ignore line: [GNU C++17 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf)] + ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.3.0 MPFR version 4.2.1 MPC version 1.3.1 isl version isl-0.26-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/backward"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include"] + ignore line: [ignoring nonexistent directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/../../../../include"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/backward] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include] + ignore line: [End of search list.] + ignore line: [Compiler executable checksum: 4a5fbbbea400d48f02e70eeffcc23385] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_71e58.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_71e58.dir/'] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_71e58.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccmDntEz.s] + ignore line: [COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_71e58.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_71e58.dir/CMakeCXXCompilerABI.cpp.'\x0d] + ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags" @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/ldflags" -v CMakeFiles/cmTC_71e58.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_71e58 && cd ."] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe] + ignore line: [COLLECT_LTO_WRAPPER=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe] + ignore line: [Target: xtensa-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) ] + ignore line: [COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_71e58' '-dumpdir' 'cmTC_71e58.'] + link line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccqbCQiI.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 --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so -o cmTC_71e58 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccmem9zg -lgcc -lc -lnosys -lc -lgcc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o\x0d] + arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe] ==> ignore + arg [-plugin] ==> ignore + arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll] ==> ignore + arg [-plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe] ==> ignore + arg [-plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccqbCQiI.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lnosys] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [--sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf] ==> ignore + arg [--dynconfig=xtensa_esp32.so] ==> ignore + arg [-o] ==> ignore + arg [cmTC_71e58] ==> ignore + arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o] ==> obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o] + arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o] ==> obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o] + arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o] ==> obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] + arg [@C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccmem9zg] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lnosys] ==> lib [nosys] + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o] ==> obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o] + arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o] ==> obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_71e58' '-dumpdir' 'cmTC_71e58.'\x0d] + ignore line: [] + ignore line: [] + collapse obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32/crt0.o] + collapse obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o] + collapse obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o] + collapse obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o] + collapse obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/usr/lib] + implicit libs: [gcc;c;nosys;c;gcc] + implicit objs: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32/crt0.o;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o] + implicit dirs: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/usr/lib] + implicit fwks: [] + + + - + kind: "try_compile-v1" + backtrace: + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:83 (try_compile)" + - "C:/esp/v6.0/esp-idf/tools/cmake/toolchain_flags.cmake:179 (cmake_determine_compiler_abi)" + - "C:/esp/v6.0/esp-idf/components/esp_libc/project_include.cmake:20 (idf_toolchain_rerun_abi_detection)" + - "C:/esp/v6.0/esp-idf/tools/cmake/build.cmake:517 (include)" + - "C:/esp/v6.0/esp-idf/tools/cmake/build.cmake:791 (__build_process_project_includes)" + - "C:/esp/v6.0/esp-idf/tools/cmake/project.cmake:742 (idf_build_process)" + - "CMakeLists.txt:4 (project)" + checks: + - "Detecting C compiler ABI info" + directories: + source: "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/CMakeScratch/TryCompile-xlhd3d" + binary: "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/CMakeScratch/TryCompile-xlhd3d" + cmakeVariables: + CMAKE_C_FLAGS: "@\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\"" + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "@\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/ldflags\"" + CMAKE_MODULE_PATH: "C:/esp/v6.0/esp-idf/tools/cmake;C:/esp/v6.0/esp-idf/tools/cmake/third_party" + buildResult: + variable: "CMAKE_C_ABI_COMPILED" + cached: true + stdout: | + Change Dir: 'C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/CMakeScratch/TryCompile-xlhd3d' + + Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_b7f3e + [1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -v -o CMakeFiles/cmTC_b7f3e.dir/CMakeCCompilerABI.c.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c + Using built-in specs. + Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs + rename spec link to picolibc_link + rename spec link_libgcc to picolibc_link_libgcc + rename spec cpp to picolibc_cpp + rename spec cc1 to picolibc_cc1 + rename spec cc1plus to picolibc_cc1plus + COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe + Target: xtensa-esp-elf + Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_b7f3e.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_b7f3e.dir/' + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32 C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_b7f3e.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32.so -mlongcalls -Wno-frame-address -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccrQNPa4.s + GNU C23 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf) + compiled by GNU C version 6.3.0 20170516, GMP version 6.3.0, MPFR version 4.2.1, MPC version 1.3.1, isl version isl-0.26-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include" + ignoring nonexistent directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/../../../../include" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/include" + #include "..." search starts here: + #include <...> search starts here: + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32 + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include + End of search list. + Compiler executable checksum: e6b21aec963fbe25dfad096ddce866c1 + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_b7f3e.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_b7f3e.dir/' + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_b7f3e.dir/CMakeCCompilerABI.c.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccrQNPa4.s + COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ + LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/\x0d + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_b7f3e.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_b7f3e.dir/CMakeCCompilerABI.c.'\x0d + [2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/ldflags" -v CMakeFiles/cmTC_b7f3e.dir/CMakeCCompilerABI.c.obj -o cmTC_b7f3e && cd ." + Using built-in specs. + Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs + rename spec link to picolibc_link + rename spec link_libgcc to picolibc_link_libgcc + rename spec cpp to picolibc_cpp + rename spec cc1 to picolibc_cc1 + rename spec cc1plus to picolibc_cc1plus + COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe + COLLECT_LTO_WRAPPER=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe + Target: xtensa-esp-elf + Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) + COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ + LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/ + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-v' '-o' 'cmTC_b7f3e' '-dumpdir' 'cmTC_b7f3e.' + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccVvj3S9.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_b7f3e -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccGRsWB9 -lgcc --start-group -lgcc -lc --end-group -lgcc + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start; defaulting to 10000000\x0d + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-v' '-o' 'cmTC_b7f3e' '-dumpdir' 'cmTC_b7f3e.'\x0d + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:191 (message)" + - "C:/esp/v6.0/esp-idf/tools/cmake/toolchain_flags.cmake:179 (cmake_determine_compiler_abi)" + - "C:/esp/v6.0/esp-idf/components/esp_libc/project_include.cmake:20 (idf_toolchain_rerun_abi_detection)" + - "C:/esp/v6.0/esp-idf/tools/cmake/build.cmake:517 (include)" + - "C:/esp/v6.0/esp-idf/tools/cmake/build.cmake:791 (__build_process_project_includes)" + - "C:/esp/v6.0/esp-idf/tools/cmake/project.cmake:742 (idf_build_process)" + - "CMakeLists.txt:4 (project)" + message: | + Parsed C implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include] + end of search list found + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/include] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include] + implicit include dirs: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/include;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include-fixed;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include] + + + - + kind: "message-v1" + backtrace: + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:227 (message)" + - "C:/esp/v6.0/esp-idf/tools/cmake/toolchain_flags.cmake:179 (cmake_determine_compiler_abi)" + - "C:/esp/v6.0/esp-idf/components/esp_libc/project_include.cmake:20 (idf_toolchain_rerun_abi_detection)" + - "C:/esp/v6.0/esp-idf/tools/cmake/build.cmake:517 (include)" + - "C:/esp/v6.0/esp-idf/tools/cmake/build.cmake:791 (__build_process_project_includes)" + - "C:/esp/v6.0/esp-idf/tools/cmake/project.cmake:742 (idf_build_process)" + - "CMakeLists.txt:4 (project)" + message: | + Parsed C implicit link information: + link line regex: [^( *|.*[/\\])(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)))("|,| |$)] + ignore line: [Change Dir: 'C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/CMakeScratch/TryCompile-xlhd3d'] + ignore line: [] + ignore line: [Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_b7f3e] + ignore line: [[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -v -o CMakeFiles/cmTC_b7f3e.dir/CMakeCCompilerABI.c.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c] + ignore line: [Using built-in specs.] + ignore line: [Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs] + ignore line: [rename spec link to picolibc_link] + ignore line: [rename spec link_libgcc to picolibc_link_libgcc] + ignore line: [rename spec cpp to picolibc_cpp] + ignore line: [rename spec cc1 to picolibc_cc1] + ignore line: [rename spec cc1plus to picolibc_cc1plus] + ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe] + ignore line: [Target: xtensa-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) ] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_b7f3e.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_b7f3e.dir/'] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32 C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_b7f3e.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32.so -mlongcalls -Wno-frame-address -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccrQNPa4.s] + ignore line: [GNU C23 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf)] + ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.3.0 MPFR version 4.2.1 MPC version 1.3.1 isl version isl-0.26-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include"] + ignore line: [ignoring nonexistent directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/../../../../include"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include] + ignore line: [End of search list.] + ignore line: [Compiler executable checksum: e6b21aec963fbe25dfad096ddce866c1] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_b7f3e.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_b7f3e.dir/'] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_b7f3e.dir/CMakeCCompilerABI.c.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccrQNPa4.s] + ignore line: [COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/\x0d] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_b7f3e.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_b7f3e.dir/CMakeCCompilerABI.c.'\x0d] + ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/ldflags" -v CMakeFiles/cmTC_b7f3e.dir/CMakeCCompilerABI.c.obj -o cmTC_b7f3e && cd ."] + ignore line: [Using built-in specs.] + ignore line: [Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs] + ignore line: [rename spec link to picolibc_link] + ignore line: [rename spec link_libgcc to picolibc_link_libgcc] + ignore line: [rename spec cpp to picolibc_cpp] + ignore line: [rename spec cc1 to picolibc_cc1] + ignore line: [rename spec cc1plus to picolibc_cc1plus] + ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe] + ignore line: [COLLECT_LTO_WRAPPER=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe] + ignore line: [Target: xtensa-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) ] + ignore line: [COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-v' '-o' 'cmTC_b7f3e' '-dumpdir' 'cmTC_b7f3e.'] + link line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccVvj3S9.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_b7f3e -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccGRsWB9 -lgcc --start-group -lgcc -lc --end-group -lgcc] + arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe] ==> ignore + arg [-plugin] ==> ignore + arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll] ==> ignore + arg [-plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe] ==> ignore + arg [-plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccVvj3S9.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib] + arg [-Tpicolibc.ld] ==> ignore + arg [--sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf] ==> ignore + arg [--dynconfig=xtensa_esp32.so] ==> ignore + arg [--gc-sections] ==> ignore + arg [-o] ==> ignore + arg [cmTC_b7f3e] ==> ignore + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] + arg [@C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccGRsWB9] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [--start-group] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [--end-group] ==> ignore + arg [-lgcc] ==> lib [gcc] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start] + ignore line: [ defaulting to 10000000\x0d] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-v' '-o' 'cmTC_b7f3e' '-dumpdir' 'cmTC_b7f3e.'\x0d] + ignore line: [] + ignore line: [] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/lib/esp32] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/lib] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/lib/gcc/xtensa-esp-elf/15.2.0] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/usr/lib] + implicit libs: [gcc;gcc;c;gcc] + implicit objs: [] + implicit dirs: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/lib/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/lib;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/lib/gcc/xtensa-esp-elf/15.2.0;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/usr/lib] + implicit fwks: [] + + + - + kind: "try_compile-v1" + backtrace: + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:83 (try_compile)" + - "C:/esp/v6.0/esp-idf/tools/cmake/toolchain_flags.cmake:179 (cmake_determine_compiler_abi)" + - "C:/esp/v6.0/esp-idf/components/esp_libc/project_include.cmake:20 (idf_toolchain_rerun_abi_detection)" + - "C:/esp/v6.0/esp-idf/tools/cmake/build.cmake:517 (include)" + - "C:/esp/v6.0/esp-idf/tools/cmake/build.cmake:791 (__build_process_project_includes)" + - "C:/esp/v6.0/esp-idf/tools/cmake/project.cmake:742 (idf_build_process)" + - "CMakeLists.txt:4 (project)" + checks: + - "Detecting CXX compiler ABI info" + directories: + source: "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/CMakeScratch/TryCompile-7ybsrn" + binary: "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/CMakeScratch/TryCompile-7ybsrn" + cmakeVariables: + CMAKE_CXX_FLAGS: "@\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags\"" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_CXX_SCAN_FOR_MODULES: "OFF" + CMAKE_EXE_LINKER_FLAGS: "@\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/ldflags\"" + CMAKE_MODULE_PATH: "C:/esp/v6.0/esp-idf/tools/cmake;C:/esp/v6.0/esp-idf/tools/cmake/third_party" + buildResult: + variable: "CMAKE_CXX_ABI_COMPILED" + cached: true + stdout: | + Change Dir: 'C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/CMakeScratch/TryCompile-7ybsrn' + + Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_2d10b + [1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags" -v -o CMakeFiles/cmTC_2d10b.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp + Using built-in specs. + Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs + rename spec link to picolibc_link + rename spec link_libgcc to picolibc_link_libgcc + rename spec cpp to picolibc_cpp + rename spec cc1 to picolibc_cc1 + rename spec cc1plus to picolibc_cc1plus + COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe + Target: xtensa-esp-elf + Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_2d10b.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_2d10b.dir/' + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1plus.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_2d10b.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32.so -mlongcalls -Wno-frame-address -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32 -ftls-model=local-exec -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cciHdPag.s + GNU C++17 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf) + compiled by GNU C version 6.3.0 20170516, GMP version 6.3.0, MPFR version 4.2.1, MPC version 1.3.1, isl version isl-0.26-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/backward" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include" + ignoring nonexistent directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/../../../../include" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/include" + #include "..." search starts here: + #include <...> search starts here: + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32 + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0 + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32 + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/backward + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include + End of search list. + Compiler executable checksum: 4a5fbbbea400d48f02e70eeffcc23385 + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_2d10b.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_2d10b.dir/' + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_2d10b.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cciHdPag.s + COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ + LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/ + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_2d10b.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_2d10b.dir/CMakeCXXCompilerABI.cpp.'\x0d + [2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags" @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/ldflags" -v CMakeFiles/cmTC_2d10b.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_2d10b && cd ." + Using built-in specs. + Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs + rename spec link to picolibc_link + rename spec link_libgcc to picolibc_link_libgcc + rename spec cpp to picolibc_cpp + rename spec cc1 to picolibc_cc1 + rename spec cc1plus to picolibc_cc1plus + COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe + COLLECT_LTO_WRAPPER=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe + Target: xtensa-esp-elf + Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) + COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ + LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/ + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-v' '-o' 'cmTC_2d10b' '-dumpdir' 'cmTC_2d10b.' + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccib5knn.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_2d10b -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccqc0vAA -lgcc --start-group -lgcc -lc --end-group -lgcc + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start; defaulting to 10000000\x0d + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-v' '-o' 'cmTC_2d10b' '-dumpdir' 'cmTC_2d10b.'\x0d + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:191 (message)" + - "C:/esp/v6.0/esp-idf/tools/cmake/toolchain_flags.cmake:179 (cmake_determine_compiler_abi)" + - "C:/esp/v6.0/esp-idf/components/esp_libc/project_include.cmake:20 (idf_toolchain_rerun_abi_detection)" + - "C:/esp/v6.0/esp-idf/tools/cmake/build.cmake:517 (include)" + - "C:/esp/v6.0/esp-idf/tools/cmake/build.cmake:791 (__build_process_project_includes)" + - "C:/esp/v6.0/esp-idf/tools/cmake/project.cmake:742 (idf_build_process)" + - "CMakeLists.txt:4 (project)" + message: | + Parsed CXX implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/backward] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include] + end of search list found + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/include] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/backward] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0/backward] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include] + implicit include dirs: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/include;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0/backward;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include-fixed;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include] + + + - + kind: "message-v1" + backtrace: + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:227 (message)" + - "C:/esp/v6.0/esp-idf/tools/cmake/toolchain_flags.cmake:179 (cmake_determine_compiler_abi)" + - "C:/esp/v6.0/esp-idf/components/esp_libc/project_include.cmake:20 (idf_toolchain_rerun_abi_detection)" + - "C:/esp/v6.0/esp-idf/tools/cmake/build.cmake:517 (include)" + - "C:/esp/v6.0/esp-idf/tools/cmake/build.cmake:791 (__build_process_project_includes)" + - "C:/esp/v6.0/esp-idf/tools/cmake/project.cmake:742 (idf_build_process)" + - "CMakeLists.txt:4 (project)" + message: | + Parsed CXX implicit link information: + link line regex: [^( *|.*[/\\])(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)))("|,| |$)] + ignore line: [Change Dir: 'C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/CMakeScratch/TryCompile-7ybsrn'] + ignore line: [] + ignore line: [Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_2d10b] + ignore line: [[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags" -v -o CMakeFiles/cmTC_2d10b.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Using built-in specs.] + ignore line: [Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs] + ignore line: [rename spec link to picolibc_link] + ignore line: [rename spec link_libgcc to picolibc_link_libgcc] + ignore line: [rename spec cpp to picolibc_cpp] + ignore line: [rename spec cc1 to picolibc_cc1] + ignore line: [rename spec cc1plus to picolibc_cc1plus] + ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe] + ignore line: [Target: xtensa-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) ] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_2d10b.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_2d10b.dir/'] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1plus.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_2d10b.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32.so -mlongcalls -Wno-frame-address -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32 -ftls-model=local-exec -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cciHdPag.s] + ignore line: [GNU C++17 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf)] + ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.3.0 MPFR version 4.2.1 MPC version 1.3.1 isl version isl-0.26-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/backward"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include"] + ignore line: [ignoring nonexistent directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/../../../../include"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/backward] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include] + ignore line: [End of search list.] + ignore line: [Compiler executable checksum: 4a5fbbbea400d48f02e70eeffcc23385] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_2d10b.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_2d10b.dir/'] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_2d10b.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cciHdPag.s] + ignore line: [COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_2d10b.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_2d10b.dir/CMakeCXXCompilerABI.cpp.'\x0d] + ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags" @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/ldflags" -v CMakeFiles/cmTC_2d10b.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_2d10b && cd ."] + ignore line: [Using built-in specs.] + ignore line: [Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs] + ignore line: [rename spec link to picolibc_link] + ignore line: [rename spec link_libgcc to picolibc_link_libgcc] + ignore line: [rename spec cpp to picolibc_cpp] + ignore line: [rename spec cc1 to picolibc_cc1] + ignore line: [rename spec cc1plus to picolibc_cc1plus] + ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe] + ignore line: [COLLECT_LTO_WRAPPER=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe] + ignore line: [Target: xtensa-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) ] + ignore line: [COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-v' '-o' 'cmTC_2d10b' '-dumpdir' 'cmTC_2d10b.'] + link line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccib5knn.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_2d10b -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccqc0vAA -lgcc --start-group -lgcc -lc --end-group -lgcc] + arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe] ==> ignore + arg [-plugin] ==> ignore + arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll] ==> ignore + arg [-plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe] ==> ignore + arg [-plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccib5knn.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib] + arg [-Tpicolibc.ld] ==> ignore + arg [--sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf] ==> ignore + arg [--dynconfig=xtensa_esp32.so] ==> ignore + arg [--gc-sections] ==> ignore + arg [-o] ==> ignore + arg [cmTC_2d10b] ==> ignore + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] + arg [@C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccqc0vAA] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [--start-group] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [--end-group] ==> ignore + arg [-lgcc] ==> lib [gcc] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start] + ignore line: [ defaulting to 10000000\x0d] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-v' '-o' 'cmTC_2d10b' '-dumpdir' 'cmTC_2d10b.'\x0d] + ignore line: [] + ignore line: [] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/lib/esp32] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/lib] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/lib/gcc/xtensa-esp-elf/15.2.0] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/usr/lib] + implicit libs: [gcc;gcc;c;gcc] + implicit objs: [] + implicit dirs: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/lib/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/lib;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/lib/gcc/xtensa-esp-elf/15.2.0;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/usr/lib] + implicit fwks: [] + + + - + kind: "try_compile-v1" + backtrace: + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:83 (try_compile)" + - "C:/esp/v6.0/esp-idf/tools/cmake/toolchain_flags.cmake:179 (cmake_determine_compiler_abi)" + - "C:/esp/v6.0/esp-idf/CMakeLists.txt:89 (idf_toolchain_rerun_abi_detection)" + checks: + - "Detecting C compiler ABI info" + directories: + source: "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/CMakeScratch/TryCompile-r3itei" + binary: "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/CMakeScratch/TryCompile-r3itei" + cmakeVariables: + CMAKE_C_FLAGS: "@\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\"" + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "@\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/ldflags\"" + CMAKE_MODULE_PATH: "C:/esp/v6.0/esp-idf/tools/cmake;C:/esp/v6.0/esp-idf/tools/cmake/third_party" + buildResult: + variable: "CMAKE_C_ABI_COMPILED" + cached: true + stdout: | + Change Dir: 'C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/CMakeScratch/TryCompile-r3itei' + + Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_9dd13 + [1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -v -o CMakeFiles/cmTC_9dd13.dir/CMakeCCompilerABI.c.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c + Using built-in specs. + Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs + rename spec link to picolibc_link + rename spec link_libgcc to picolibc_link_libgcc + rename spec cpp to picolibc_cpp + rename spec cc1 to picolibc_cc1 + rename spec cc1plus to picolibc_cc1plus + COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe + Target: xtensa-esp-elf + Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_9dd13.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_9dd13.dir/' + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32 C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_9dd13.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32.so -mlongcalls -Wno-frame-address -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccuDOMrE.s + GNU C23 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf) + compiled by GNU C version 6.3.0 20170516, GMP version 6.3.0, MPFR version 4.2.1, MPC version 1.3.1, isl version isl-0.26-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include" + ignoring nonexistent directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/../../../../include" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/include" + #include "..." search starts here: + #include <...> search starts here: + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32 + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include + End of search list. + Compiler executable checksum: e6b21aec963fbe25dfad096ddce866c1 + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_9dd13.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_9dd13.dir/' + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_9dd13.dir/CMakeCCompilerABI.c.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccuDOMrE.s + COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ + LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/\x0d + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_9dd13.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_9dd13.dir/CMakeCCompilerABI.c.'\x0d + [2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/ldflags" -v CMakeFiles/cmTC_9dd13.dir/CMakeCCompilerABI.c.obj -o cmTC_9dd13 && cd ." + Using built-in specs. + Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs + rename spec link to picolibc_link + rename spec link_libgcc to picolibc_link_libgcc + rename spec cpp to picolibc_cpp + rename spec cc1 to picolibc_cc1 + rename spec cc1plus to picolibc_cc1plus + COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe + COLLECT_LTO_WRAPPER=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe + Target: xtensa-esp-elf + Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) + COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ + LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/ + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_9dd13' '-dumpdir' 'cmTC_9dd13.' + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccIgGCaL.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_9dd13 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccgnc5am -lgcc --start-group -lgcc -lc --end-group -lgcc\x0d + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start; defaulting to 10000000\x0d + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_9dd13' '-dumpdir' 'cmTC_9dd13.'\x0d + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:191 (message)" + - "C:/esp/v6.0/esp-idf/tools/cmake/toolchain_flags.cmake:179 (cmake_determine_compiler_abi)" + - "C:/esp/v6.0/esp-idf/CMakeLists.txt:89 (idf_toolchain_rerun_abi_detection)" + message: | + Parsed C implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include] + end of search list found + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/include] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include] + implicit include dirs: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/include;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include-fixed;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include] + + + - + kind: "message-v1" + backtrace: + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:227 (message)" + - "C:/esp/v6.0/esp-idf/tools/cmake/toolchain_flags.cmake:179 (cmake_determine_compiler_abi)" + - "C:/esp/v6.0/esp-idf/CMakeLists.txt:89 (idf_toolchain_rerun_abi_detection)" + message: | + Parsed C implicit link information: + link line regex: [^( *|.*[/\\])(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)))("|,| |$)] + ignore line: [Change Dir: 'C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/CMakeScratch/TryCompile-r3itei'] + ignore line: [] + ignore line: [Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_9dd13] + ignore line: [[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -v -o CMakeFiles/cmTC_9dd13.dir/CMakeCCompilerABI.c.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c] + ignore line: [Using built-in specs.] + ignore line: [Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs] + ignore line: [rename spec link to picolibc_link] + ignore line: [rename spec link_libgcc to picolibc_link_libgcc] + ignore line: [rename spec cpp to picolibc_cpp] + ignore line: [rename spec cc1 to picolibc_cc1] + ignore line: [rename spec cc1plus to picolibc_cc1plus] + ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe] + ignore line: [Target: xtensa-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) ] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_9dd13.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_9dd13.dir/'] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32 C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_9dd13.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32.so -mlongcalls -Wno-frame-address -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccuDOMrE.s] + ignore line: [GNU C23 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf)] + ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.3.0 MPFR version 4.2.1 MPC version 1.3.1 isl version isl-0.26-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include"] + ignore line: [ignoring nonexistent directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/../../../../include"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include] + ignore line: [End of search list.] + ignore line: [Compiler executable checksum: e6b21aec963fbe25dfad096ddce866c1] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_9dd13.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_9dd13.dir/'] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_9dd13.dir/CMakeCCompilerABI.c.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccuDOMrE.s] + ignore line: [COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/\x0d] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_9dd13.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_9dd13.dir/CMakeCCompilerABI.c.'\x0d] + ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/ldflags" -v CMakeFiles/cmTC_9dd13.dir/CMakeCCompilerABI.c.obj -o cmTC_9dd13 && cd ."] + ignore line: [Using built-in specs.] + ignore line: [Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs] + ignore line: [rename spec link to picolibc_link] + ignore line: [rename spec link_libgcc to picolibc_link_libgcc] + ignore line: [rename spec cpp to picolibc_cpp] + ignore line: [rename spec cc1 to picolibc_cc1] + ignore line: [rename spec cc1plus to picolibc_cc1plus] + ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe] + ignore line: [COLLECT_LTO_WRAPPER=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe] + ignore line: [Target: xtensa-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) ] + ignore line: [COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_9dd13' '-dumpdir' 'cmTC_9dd13.'] + link line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccIgGCaL.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_9dd13 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccgnc5am -lgcc --start-group -lgcc -lc --end-group -lgcc\x0d] + arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe] ==> ignore + arg [-plugin] ==> ignore + arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll] ==> ignore + arg [-plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe] ==> ignore + arg [-plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccIgGCaL.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib] + arg [-Tpicolibc.ld] ==> ignore + arg [--sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf] ==> ignore + arg [--dynconfig=xtensa_esp32.so] ==> ignore + arg [--gc-sections] ==> ignore + arg [-o] ==> ignore + arg [cmTC_9dd13] ==> ignore + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] + arg [@C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccgnc5am] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [--start-group] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [--end-group] ==> ignore + arg [-lgcc] ==> lib [gcc] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start] + ignore line: [ defaulting to 10000000\x0d] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_9dd13' '-dumpdir' 'cmTC_9dd13.'\x0d] + ignore line: [] + ignore line: [] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/lib/esp32/no-rtti] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/lib] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/lib/gcc/xtensa-esp-elf/15.2.0] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32/no-rtti] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32/no-rtti] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/usr/lib] + implicit libs: [gcc;gcc;c;gcc] + implicit objs: [] + implicit dirs: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/lib/esp32/no-rtti;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/lib;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/lib/gcc/xtensa-esp-elf/15.2.0;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32/no-rtti;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/usr/lib] + implicit fwks: [] + + + - + kind: "try_compile-v1" + backtrace: + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:83 (try_compile)" + - "C:/esp/v6.0/esp-idf/tools/cmake/toolchain_flags.cmake:179 (cmake_determine_compiler_abi)" + - "C:/esp/v6.0/esp-idf/CMakeLists.txt:89 (idf_toolchain_rerun_abi_detection)" + checks: + - "Detecting CXX compiler ABI info" + directories: + source: "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/CMakeScratch/TryCompile-wv6fsg" + binary: "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/CMakeScratch/TryCompile-wv6fsg" + cmakeVariables: + CMAKE_CXX_FLAGS: "@\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags\"" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_CXX_SCAN_FOR_MODULES: "OFF" + CMAKE_EXE_LINKER_FLAGS: "@\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/ldflags\"" + CMAKE_MODULE_PATH: "C:/esp/v6.0/esp-idf/tools/cmake;C:/esp/v6.0/esp-idf/tools/cmake/third_party" + buildResult: + variable: "CMAKE_CXX_ABI_COMPILED" + cached: true + stdout: | + Change Dir: 'C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/CMakeScratch/TryCompile-wv6fsg' + + Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_439e4 + [1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags" -v -o CMakeFiles/cmTC_439e4.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp + Using built-in specs. + Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs + rename spec link to picolibc_link + rename spec link_libgcc to picolibc_link_libgcc + rename spec cpp to picolibc_cpp + rename spec cc1 to picolibc_cc1 + rename spec cc1plus to picolibc_cc1plus + COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe + Target: xtensa-esp-elf + Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-fno-rtti' '-v' '-o' 'CMakeFiles/cmTC_439e4.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_439e4.dir/' + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1plus.exe -quiet -v -imultilib esp32/no-rtti -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_439e4.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32.so -mlongcalls -Wno-frame-address -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-rtti -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32/no-rtti -ftls-model=local-exec -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccurgGuX.s + GNU C++17 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf) + compiled by GNU C version 6.3.0 20170516, GMP version 6.3.0, MPFR version 4.2.1, MPC version 1.3.1, isl version isl-0.26-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32/no-rtti" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/backward" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include" + ignoring nonexistent directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/../../../../include" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/include" + #include "..." search starts here: + #include <...> search starts here: + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32/no-rtti + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0 + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32/no-rtti + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/backward + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include + End of search list. + Compiler executable checksum: 4a5fbbbea400d48f02e70eeffcc23385 + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-fno-rtti' '-v' '-o' 'CMakeFiles/cmTC_439e4.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_439e4.dir/' + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_439e4.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccurgGuX.s + COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ + LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/ + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-fno-rtti' '-v' '-o' 'CMakeFiles/cmTC_439e4.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_439e4.dir/CMakeCXXCompilerABI.cpp.'\x0d + [2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags" @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/ldflags" -v CMakeFiles/cmTC_439e4.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_439e4 && cd ." + Using built-in specs. + Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs + rename spec link to picolibc_link + rename spec link_libgcc to picolibc_link_libgcc + rename spec cpp to picolibc_cpp + rename spec cc1 to picolibc_cc1 + rename spec cc1plus to picolibc_cc1plus + COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe + COLLECT_LTO_WRAPPER=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe + Target: xtensa-esp-elf + Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) + COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ + LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/ + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_439e4' '-dumpdir' 'cmTC_439e4.' + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cce3l3Y8.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_439e4 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cciWxWN7 -lgcc --start-group -lgcc -lc --end-group -lgcc\x0d + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start; defaulting to 10000000\x0d + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_439e4' '-dumpdir' 'cmTC_439e4.'\x0d + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:191 (message)" + - "C:/esp/v6.0/esp-idf/tools/cmake/toolchain_flags.cmake:179 (cmake_determine_compiler_abi)" + - "C:/esp/v6.0/esp-idf/CMakeLists.txt:89 (idf_toolchain_rerun_abi_detection)" + message: | + Parsed CXX implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32/no-rtti] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32/no-rtti] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/backward] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include] + end of search list found + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/include] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32/no-rtti] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32/no-rtti] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32/no-rtti] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32/no-rtti] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/backward] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0/backward] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include] + implicit include dirs: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/include;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32/no-rtti;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32/no-rtti;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0/backward;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include-fixed;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include] + + + - + kind: "message-v1" + backtrace: + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:227 (message)" + - "C:/esp/v6.0/esp-idf/tools/cmake/toolchain_flags.cmake:179 (cmake_determine_compiler_abi)" + - "C:/esp/v6.0/esp-idf/CMakeLists.txt:89 (idf_toolchain_rerun_abi_detection)" + message: | + Parsed CXX implicit link information: + link line regex: [^( *|.*[/\\])(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)))("|,| |$)] + ignore line: [Change Dir: 'C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/CMakeScratch/TryCompile-wv6fsg'] + ignore line: [] + ignore line: [Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_439e4] + ignore line: [[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags" -v -o CMakeFiles/cmTC_439e4.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Using built-in specs.] + ignore line: [Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs] + ignore line: [rename spec link to picolibc_link] + ignore line: [rename spec link_libgcc to picolibc_link_libgcc] + ignore line: [rename spec cpp to picolibc_cpp] + ignore line: [rename spec cc1 to picolibc_cc1] + ignore line: [rename spec cc1plus to picolibc_cc1plus] + ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe] + ignore line: [Target: xtensa-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) ] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-fno-rtti' '-v' '-o' 'CMakeFiles/cmTC_439e4.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_439e4.dir/'] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1plus.exe -quiet -v -imultilib esp32/no-rtti -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_439e4.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32.so -mlongcalls -Wno-frame-address -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-rtti -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32/no-rtti -ftls-model=local-exec -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccurgGuX.s] + ignore line: [GNU C++17 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf)] + ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.3.0 MPFR version 4.2.1 MPC version 1.3.1 isl version isl-0.26-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32/no-rtti"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/backward"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include"] + ignore line: [ignoring nonexistent directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/../../../../include"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32/no-rtti] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32/no-rtti] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/backward] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include] + ignore line: [End of search list.] + ignore line: [Compiler executable checksum: 4a5fbbbea400d48f02e70eeffcc23385] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-fno-rtti' '-v' '-o' 'CMakeFiles/cmTC_439e4.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_439e4.dir/'] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_439e4.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccurgGuX.s] + ignore line: [COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-fno-rtti' '-v' '-o' 'CMakeFiles/cmTC_439e4.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_439e4.dir/CMakeCXXCompilerABI.cpp.'\x0d] + ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags" @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/ldflags" -v CMakeFiles/cmTC_439e4.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_439e4 && cd ."] + ignore line: [Using built-in specs.] + ignore line: [Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs] + ignore line: [rename spec link to picolibc_link] + ignore line: [rename spec link_libgcc to picolibc_link_libgcc] + ignore line: [rename spec cpp to picolibc_cpp] + ignore line: [rename spec cc1 to picolibc_cc1] + ignore line: [rename spec cc1plus to picolibc_cc1plus] + ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe] + ignore line: [COLLECT_LTO_WRAPPER=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe] + ignore line: [Target: xtensa-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) ] + ignore line: [COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_439e4' '-dumpdir' 'cmTC_439e4.'] + link line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cce3l3Y8.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_439e4 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cciWxWN7 -lgcc --start-group -lgcc -lc --end-group -lgcc\x0d] + arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe] ==> ignore + arg [-plugin] ==> ignore + arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll] ==> ignore + arg [-plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe] ==> ignore + arg [-plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cce3l3Y8.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib] + arg [-Tpicolibc.ld] ==> ignore + arg [--sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf] ==> ignore + arg [--dynconfig=xtensa_esp32.so] ==> ignore + arg [--gc-sections] ==> ignore + arg [-o] ==> ignore + arg [cmTC_439e4] ==> ignore + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] + arg [@C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cciWxWN7] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [--start-group] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [--end-group] ==> ignore + arg [-lgcc] ==> lib [gcc] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start] + ignore line: [ defaulting to 10000000\x0d] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-specs=picolibc.specs' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_439e4' '-dumpdir' 'cmTC_439e4.'\x0d] + ignore line: [] + ignore line: [] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/lib/esp32/no-rtti] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/lib] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/lib/gcc/xtensa-esp-elf/15.2.0] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32/no-rtti] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32/no-rtti] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/usr/lib] + implicit libs: [gcc;gcc;c;gcc] + implicit objs: [] + implicit dirs: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/lib/esp32/no-rtti;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/lib;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/lib/gcc/xtensa-esp-elf/15.2.0;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32/no-rtti;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/usr/lib] + implicit fwks: [] + + + - + kind: "try_compile-v1" + backtrace: + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/CheckSourceCompiles.cmake:104 (try_compile)" + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CheckCSourceCompiles.cmake:58 (cmake_check_source_compiles)" + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/FindThreads.cmake:97 (check_c_source_compiles)" + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/FindThreads.cmake:163 (_threads_check_libc)" + - "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt:127 (find_package)" + checks: + - "Performing Test CMAKE_HAVE_LIBC_PTHREAD" + directories: + source: "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/CMakeScratch/TryCompile-65c367" + binary: "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/CMakeScratch/TryCompile-65c367" + cmakeVariables: + CMAKE_C_FLAGS: "@\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\"" + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "@\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/ldflags\"" + CMAKE_MODULE_PATH: "C:/esp/v6.0/esp-idf/tools/cmake;C:/esp/v6.0/esp-idf/tools/cmake/third_party" + buildResult: + variable: "CMAKE_HAVE_LIBC_PTHREAD" + cached: true + stdout: | + Change Dir: 'C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/CMakeScratch/TryCompile-65c367' + + Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_c883b + [1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCMAKE_HAVE_LIBC_PTHREAD @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -o CMakeFiles/cmTC_c883b.dir/src.c.obj -c C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/CMakeScratch/TryCompile-65c367/src.c + [2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/ldflags" CMakeFiles/cmTC_c883b.dir/src.c.obj -o cmTC_c883b && cd ." + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_c883b.dir/src.c.obj:(.literal+0x14): warning: pthread_atfork is not implemented and will always fail + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_c883b.dir/src.c.obj: note: the message above does not take linker garbage collection into account + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_c883b.dir/src.c.obj:(.literal+0xc): warning: pthread_cancel is not implemented and will always fail + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_c883b.dir/src.c.obj: note: the message above does not take linker garbage collection into account + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_c883b.dir/src.c.obj:(.literal+0x4): warning: pthread_create is not implemented and will always fail + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_c883b.dir/src.c.obj: note: the message above does not take linker garbage collection into account + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_c883b.dir/src.c.obj:(.literal+0x8): warning: pthread_detach is not implemented and will always fail + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_c883b.dir/src.c.obj: note: the message above does not take linker garbage collection into account + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_c883b.dir/src.c.obj:(.literal+0x18): warning: pthread_exit is not implemented and will always fail + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_c883b.dir/src.c.obj: note: the message above does not take linker garbage collection into account + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_c883b.dir/src.c.obj:(.literal+0x10): warning: pthread_join is not implemented and will always fail + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: CMakeFiles/cmTC_c883b.dir/src.c.obj: note: the message above does not take linker garbage collection into account + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\\libc.a(libc_stdlib_pico-exit.c.o):(.literal.exit+0x4): warning: _exit is not implemented and will always fail + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\\libc.a(libc_stdlib_pico-exit.c.o): note: the message above does not take linker garbage collection into account + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start; defaulting to 10000000\x0d + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/CheckSourceCompiles.cmake:104 (try_compile)" + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/CheckCompilerFlag.cmake:18 (cmake_check_source_compiles)" + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CheckCCompilerFlag.cmake:56 (cmake_check_compiler_flag)" + - "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/CMakeLists.txt:247 (CHECK_C_COMPILER_FLAG)" + - "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/CMakeLists.txt:218 (tf_psa_crypto_set_gnu_base_compile_options)" + - "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core/CMakeLists.txt:145 (tf_psa_crypto_set_base_compile_options)" + checks: + - "Performing Test C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS" + directories: + source: "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/CMakeScratch/TryCompile-qw4phs" + binary: "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/CMakeScratch/TryCompile-qw4phs" + cmakeVariables: + CMAKE_C_FLAGS: "@\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\"" + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "@\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/ldflags\"" + CMAKE_MODULE_PATH: "C:/esp/v6.0/esp-idf/tools/cmake;C:/esp/v6.0/esp-idf/tools/cmake/third_party" + buildResult: + variable: "C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS" + cached: true + stdout: | + Change Dir: 'C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/CMakeScratch/TryCompile-qw4phs' + + Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_d127c + [1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DC_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -std=c2x -Wformat-signedness -o CMakeFiles/cmTC_d127c.dir/src.c.obj -c C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/CMakeScratch/TryCompile-qw4phs/src.c + [2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/ldflags" CMakeFiles/cmTC_d127c.dir/src.c.obj -o cmTC_d127c && cd ." + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start; defaulting to 10000000\x0d + + exitCode: 0 +... diff --git a/build/CMakeFiles/InstallScripts.json b/build/CMakeFiles/InstallScripts.json new file mode 100644 index 0000000..72ab54d --- /dev/null +++ b/build/CMakeFiles/InstallScripts.json @@ -0,0 +1,161 @@ +{ + "InstallScripts" : + [ + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/xtensa/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_stdio/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_dma/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_gpspi/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_clock/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_mspi/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_blockdev/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_security/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/bootloader/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esptool_py/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/partition_table/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_app_format/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_bootloader_format/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/app_update/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_partition/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/efuse/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_security/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_gpio/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_uart/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_pm/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_mm/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_dma/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/include/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/include/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/pkgconfig/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/pkgconfig/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_timg/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_wdt/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_i2s/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ana_conv/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_rtc_timer/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/bootloader_support/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/spi_flash/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_usb_cdc_rom_console/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/port/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/port/soc/esp32/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_common/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_rom/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/hal/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/log/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/heap/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/soc/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_gpio/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_usb/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_pmu/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_touch_sens/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hw_support/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hw_support/port/esp32/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hw_support/lowpower/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/freertos/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_libc/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_libc/src/port/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/pthread/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/cxx/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_timer/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_ringbuf/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_psram/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_uart/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_gptimer/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/app_trace/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_event/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/nvs_sec_provider/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/nvs_flash/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_phy/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_usb_serial_jtag/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/vfs/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/lwip/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_netif_stack/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_netif/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/wpa_supplicant/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_coex/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_wifi/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_spi/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_gdbstub/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/bt/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/unity/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/cmock/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/console/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_i2c/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_twai/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/driver/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/http_parser/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp-tls/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_i2s/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_adc/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ana_cmpr/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_ana_cmpr/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_bitscrambler/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_cam/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_isp/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_cam/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_dac/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_i2c/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_i3c/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_jpeg/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_jpeg/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ledc/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_ledc/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_mcpwm/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_mcpwm/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_parlio/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_parlio/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_pcnt/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_pcnt/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ppa/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_ppa/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_rmt/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_rmt/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/sdmmc/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sd_intf/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdio/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdm/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdmmc/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdspi/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_touch_sens/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_tsens/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_twai/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_eth/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ieee802154/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_lcd/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hid/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/tcp_transport/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_http_client/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_http_server/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_https_ota/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_https_server/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_lcd/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/protobuf-c/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/protocomm/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_local_ctrl/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_trace/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/espcoredump/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/wear_levelling/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/fatfs/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/idf_test/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/ieee802154/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/openthread/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/perfmon/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/rt/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/spiffs/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/ulp/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/main/cmake_install.cmake" + ], + "Parallel" : false +} diff --git a/build/CMakeFiles/TargetDirectories.txt b/build/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..e706c08 --- /dev/null +++ b/build/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,1086 @@ +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/menuconfig.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/config-report.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/confserver.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/save-defconfig.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/flash.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/bootloader.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/_project_elf_src.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/modbus_tcp_esp32.elf.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/size.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/size-files.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/size-components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/uf2.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/uf2-app.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/__ldgen_output_sections.ld.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/gen_modbus_tcp_esp32_binary.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/gen_project_binary.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/app.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/app-flash.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/encrypted-app-flash.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/encrypted-flash.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/erase-flash.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/merge-bin.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/monitor.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/app_check_size.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/xtensa/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/xtensa/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/xtensa/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/xtensa/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/xtensa/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/xtensa/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_stdio/CMakeFiles/__idf_esp_stdio.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_stdio/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_stdio/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_stdio/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_stdio/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_stdio/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_stdio/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_dma/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_dma/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_dma/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_dma/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_dma/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_dma/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_gpspi/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_gpspi/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_gpspi/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_gpspi/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_gpspi/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_gpspi/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_clock/CMakeFiles/__idf_esp_hal_clock.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_clock/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_clock/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_clock/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_clock/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_clock/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_clock/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_mspi/CMakeFiles/__idf_esp_hal_mspi.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_mspi/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_mspi/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_mspi/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_mspi/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_mspi/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_mspi/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_blockdev/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_blockdev/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_blockdev/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_blockdev/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_blockdev/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_blockdev/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_security/CMakeFiles/__idf_esp_hal_security.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_security/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_security/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_security/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_security/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_security/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_security/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/bootloader/CMakeFiles/bootloader-flash.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/bootloader/CMakeFiles/encrypted-bootloader-flash.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/bootloader/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/bootloader/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/bootloader/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/bootloader/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/bootloader/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/bootloader/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esptool_py/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esptool_py/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esptool_py/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esptool_py/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esptool_py/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esptool_py/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/partition_table/CMakeFiles/partition_table_bin.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/partition_table/CMakeFiles/partition-table.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/partition_table/CMakeFiles/partition_table.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/partition_table/CMakeFiles/partition-table-flash.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/partition_table/CMakeFiles/encrypted-partition-table-flash.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/partition_table/CMakeFiles/partition_table-flash.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/partition_table/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/partition_table/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/partition_table/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/partition_table/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/partition_table/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/partition_table/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_app_format/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_app_format/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_app_format/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_app_format/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_app_format/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_app_format/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_bootloader_format/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_bootloader_format/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_bootloader_format/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_bootloader_format/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_bootloader_format/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_bootloader_format/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/app_update/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/app_update/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/app_update/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/app_update/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/app_update/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/app_update/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_partition/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_partition/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_partition/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_partition/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_partition/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_partition/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/efuse/CMakeFiles/efuse-common-table.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/efuse/CMakeFiles/efuse_common_table.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/efuse/CMakeFiles/efuse-custom-table.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/efuse/CMakeFiles/efuse_custom_table.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/efuse/CMakeFiles/show-efuse-table.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/efuse/CMakeFiles/show_efuse_table.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/efuse/CMakeFiles/efuse_test_table.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/efuse/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/efuse/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/efuse/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/efuse/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/efuse/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/efuse/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_security/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_security/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_security/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_security/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_security/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_security/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_gpio/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_gpio/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_gpio/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_gpio/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_gpio/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_gpio/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_uart/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_uart/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_uart/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_uart/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_uart/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_uart/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_pm/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_pm/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_pm/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_pm/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_pm/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_pm/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_mm/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_mm/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_mm/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_mm/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_mm/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_mm/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_dma/CMakeFiles/__idf_esp_driver_dma.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_dma/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_dma/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_dma/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_dma/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_dma/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_dma/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/CMakeFiles/custom_bundle.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/CMakeFiles/mbedtls-apidoc.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/CMakeFiles/tfpsacrypto-apidoc.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/include/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/include/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/include/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/include/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/include/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/include/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/CMakeFiles/everest.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/CMakeFiles/p256m.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/pkgconfig/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/pkgconfig/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/pkgconfig/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/pkgconfig/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/pkgconfig/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/pkgconfig/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/lib.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_timg/CMakeFiles/__idf_esp_hal_timg.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_timg/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_timg/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_timg/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_timg/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_timg/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_timg/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_wdt/CMakeFiles/__idf_esp_hal_wdt.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_wdt/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_wdt/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_wdt/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_wdt/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_wdt/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_wdt/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_i2s/CMakeFiles/__idf_esp_hal_i2s.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_i2s/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_i2s/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_i2s/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_i2s/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_i2s/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_i2s/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ana_conv/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ana_conv/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ana_conv/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ana_conv/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ana_conv/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ana_conv/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_rtc_timer/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_rtc_timer/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_rtc_timer/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_rtc_timer/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_rtc_timer/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_rtc_timer/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/bootloader_support/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/bootloader_support/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/bootloader_support/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/bootloader_support/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/bootloader_support/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/bootloader_support/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/spi_flash/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/spi_flash/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/spi_flash/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/spi_flash/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/spi_flash/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/spi_flash/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_usb_cdc_rom_console/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_usb_cdc_rom_console/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_usb_cdc_rom_console/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_usb_cdc_rom_console/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_usb_cdc_rom_console/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_usb_cdc_rom_console/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/CMakeFiles/memory_ld_in_preprocess.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/CMakeFiles/sections_ld_in_preprocess.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/port/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/port/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/port/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/port/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/port/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/port/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/port/soc/esp32/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/port/soc/esp32/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/port/soc/esp32/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/port/soc/esp32/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/port/soc/esp32/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/port/soc/esp32/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_common/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_common/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_common/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_common/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_common/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_common/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_rom/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_rom/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_rom/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_rom/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_rom/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_rom/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/hal/CMakeFiles/__idf_hal.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/hal/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/hal/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/hal/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/hal/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/hal/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/hal/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/log/CMakeFiles/__idf_log.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/log/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/log/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/log/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/log/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/log/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/log/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/heap/CMakeFiles/__idf_heap.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/heap/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/heap/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/heap/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/heap/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/heap/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/heap/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/soc/CMakeFiles/__idf_soc.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/soc/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/soc/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/soc/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/soc/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/soc/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/soc/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_gpio/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_gpio/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_gpio/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_gpio/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_gpio/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_gpio/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_usb/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_usb/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_usb/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_usb/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_usb/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_usb/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_pmu/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_pmu/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_pmu/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_pmu/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_pmu/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_pmu/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_touch_sens/CMakeFiles/__idf_esp_hal_touch_sens.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_touch_sens/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_touch_sens/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_touch_sens/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_touch_sens/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_touch_sens/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_touch_sens/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hw_support/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hw_support/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hw_support/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hw_support/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hw_support/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hw_support/port/esp32/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hw_support/port/esp32/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hw_support/port/esp32/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hw_support/port/esp32/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hw_support/port/esp32/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hw_support/port/esp32/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/freertos/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/freertos/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/freertos/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/freertos/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/freertos/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/freertos/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_libc/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_libc/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_libc/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_libc/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_libc/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_libc/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_libc/src/port/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_libc/src/port/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_libc/src/port/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_libc/src/port/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_libc/src/port/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_libc/src/port/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/pthread/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/pthread/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/pthread/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/pthread/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/pthread/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/pthread/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/cxx/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/cxx/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/cxx/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/cxx/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/cxx/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/cxx/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_timer/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_timer/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_timer/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_timer/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_timer/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_timer/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_ringbuf/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_ringbuf/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_ringbuf/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_ringbuf/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_ringbuf/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_ringbuf/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_psram/CMakeFiles/__idf_esp_psram.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_psram/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_psram/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_psram/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_psram/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_psram/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_psram/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_uart/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_uart/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_uart/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_uart/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_uart/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_uart/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_gptimer/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_gptimer/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_gptimer/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_gptimer/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_gptimer/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_gptimer/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/app_trace/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/app_trace/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/app_trace/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/app_trace/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/app_trace/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/app_trace/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_event/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_event/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_event/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_event/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_event/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_event/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/nvs_sec_provider/CMakeFiles/__idf_nvs_sec_provider.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/nvs_sec_provider/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/nvs_sec_provider/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/nvs_sec_provider/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/nvs_sec_provider/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/nvs_sec_provider/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/nvs_sec_provider/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/nvs_flash/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/nvs_flash/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/nvs_flash/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/nvs_flash/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/nvs_flash/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/nvs_flash/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_phy/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_phy/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_phy/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_phy/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_phy/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_phy/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/vfs/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/vfs/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/vfs/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/vfs/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/vfs/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/vfs/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/lwip/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/lwip/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/lwip/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/lwip/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/lwip/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/lwip/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_netif_stack/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_netif_stack/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_netif_stack/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_netif_stack/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_netif_stack/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_netif_stack/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_netif/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_netif/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_netif/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_netif/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_netif/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_netif/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/wpa_supplicant/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/wpa_supplicant/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/wpa_supplicant/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/wpa_supplicant/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/wpa_supplicant/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/wpa_supplicant/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_coex/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_coex/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_coex/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_coex/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_coex/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_coex/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_wifi/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_wifi/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_wifi/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_wifi/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_wifi/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_wifi/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_spi/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_spi/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_spi/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_spi/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_spi/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_spi/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_gdbstub/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_gdbstub/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_gdbstub/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_gdbstub/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_gdbstub/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_gdbstub/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/bt/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/bt/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/bt/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/bt/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/bt/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/bt/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/unity/CMakeFiles/__idf_unity.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/unity/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/unity/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/unity/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/unity/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/unity/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/unity/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/cmock/CMakeFiles/__idf_cmock.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/cmock/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/cmock/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/cmock/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/cmock/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/cmock/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/cmock/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/console/CMakeFiles/__idf_console.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/console/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/console/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/console/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/console/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/console/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/console/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_i2c/CMakeFiles/__idf_esp_hal_i2c.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_i2c/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_i2c/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_i2c/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_i2c/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_i2c/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_i2c/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_twai/CMakeFiles/__idf_esp_hal_twai.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_twai/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_twai/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_twai/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_twai/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_twai/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_twai/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/driver/CMakeFiles/__idf_driver.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/driver/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/driver/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/driver/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/driver/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/driver/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/driver/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/http_parser/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/http_parser/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/http_parser/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/http_parser/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/http_parser/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/http_parser/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp-tls/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp-tls/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp-tls/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp-tls/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp-tls/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp-tls/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_i2s/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_i2s/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_i2s/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_i2s/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_i2s/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_i2s/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_adc/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_adc/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_adc/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_adc/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_adc/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_adc/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ana_cmpr/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ana_cmpr/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ana_cmpr/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ana_cmpr/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ana_cmpr/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ana_cmpr/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_bitscrambler/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_bitscrambler/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_bitscrambler/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_bitscrambler/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_bitscrambler/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_bitscrambler/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_cam/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_cam/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_cam/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_cam/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_cam/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_cam/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_isp/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_isp/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_isp/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_isp/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_isp/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_isp/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_cam/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_cam/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_cam/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_cam/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_cam/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_cam/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_dac/CMakeFiles/__idf_esp_driver_dac.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_dac/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_dac/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_dac/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_dac/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_dac/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_dac/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_i2c/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_i2c/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_i2c/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_i2c/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_i2c/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_i2c/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_i3c/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_i3c/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_i3c/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_i3c/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_i3c/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_i3c/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_jpeg/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_jpeg/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_jpeg/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_jpeg/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_jpeg/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_jpeg/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_jpeg/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_jpeg/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_jpeg/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_jpeg/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_jpeg/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_jpeg/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ledc/CMakeFiles/__idf_esp_hal_ledc.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ledc/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ledc/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ledc/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ledc/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ledc/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ledc/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_ledc/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_ledc/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_ledc/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_ledc/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_ledc/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_ledc/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_mcpwm/CMakeFiles/__idf_esp_hal_mcpwm.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_mcpwm/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_mcpwm/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_mcpwm/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_mcpwm/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_mcpwm/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_mcpwm/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_mcpwm/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_mcpwm/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_mcpwm/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_mcpwm/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_mcpwm/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_mcpwm/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_parlio/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_parlio/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_parlio/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_parlio/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_parlio/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_parlio/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_parlio/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_parlio/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_parlio/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_parlio/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_parlio/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_parlio/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_pcnt/CMakeFiles/__idf_esp_hal_pcnt.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_pcnt/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_pcnt/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_pcnt/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_pcnt/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_pcnt/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_pcnt/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_pcnt/CMakeFiles/__idf_esp_driver_pcnt.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_pcnt/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_pcnt/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_pcnt/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_pcnt/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_pcnt/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_pcnt/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ppa/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ppa/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ppa/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ppa/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ppa/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ppa/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_ppa/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_ppa/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_ppa/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_ppa/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_ppa/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_ppa/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_rmt/CMakeFiles/__idf_esp_hal_rmt.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_rmt/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_rmt/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_rmt/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_rmt/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_rmt/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_rmt/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_rmt/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_rmt/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_rmt/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_rmt/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_rmt/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_rmt/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/sdmmc/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/sdmmc/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/sdmmc/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/sdmmc/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/sdmmc/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/sdmmc/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sd_intf/CMakeFiles/__idf_esp_driver_sd_intf.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sd_intf/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sd_intf/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sd_intf/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sd_intf/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sd_intf/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sd_intf/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdio/CMakeFiles/__idf_esp_driver_sdio.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdio/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdio/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdio/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdio/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdio/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdio/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdm/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdm/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdm/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdm/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdm/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdm/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdmmc/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdmmc/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdmmc/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdmmc/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdmmc/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdmmc/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdspi/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdspi/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdspi/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdspi/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdspi/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdspi/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_touch_sens/CMakeFiles/__idf_esp_driver_touch_sens.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_touch_sens/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_touch_sens/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_touch_sens/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_touch_sens/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_touch_sens/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_touch_sens/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_tsens/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_tsens/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_tsens/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_tsens/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_tsens/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_tsens/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_twai/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_twai/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_twai/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_twai/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_twai/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_twai/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_eth/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_eth/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_eth/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_eth/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_eth/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_eth/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ieee802154/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ieee802154/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ieee802154/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ieee802154/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ieee802154/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ieee802154/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_lcd/CMakeFiles/__idf_esp_hal_lcd.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_lcd/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_lcd/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_lcd/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_lcd/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_lcd/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_lcd/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hid/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hid/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hid/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hid/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hid/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hid/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/tcp_transport/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/tcp_transport/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/tcp_transport/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/tcp_transport/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/tcp_transport/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/tcp_transport/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_http_client/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_http_client/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_http_client/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_http_client/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_http_client/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_http_client/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_http_server/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_http_server/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_http_server/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_http_server/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_http_server/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_http_server/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_https_ota/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_https_ota/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_https_ota/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_https_ota/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_https_ota/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_https_ota/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_https_server/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_https_server/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_https_server/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_https_server/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_https_server/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_https_server/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_lcd/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_lcd/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_lcd/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_lcd/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_lcd/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_lcd/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/protobuf-c/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/protobuf-c/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/protobuf-c/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/protobuf-c/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/protobuf-c/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/protobuf-c/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/protocomm/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/protocomm/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/protocomm/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/protocomm/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/protocomm/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/protocomm/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_local_ctrl/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_local_ctrl/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_local_ctrl/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_local_ctrl/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_local_ctrl/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_local_ctrl/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_trace/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_trace/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_trace/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_trace/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_trace/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_trace/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/espcoredump/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/espcoredump/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/espcoredump/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/espcoredump/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/espcoredump/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/espcoredump/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/wear_levelling/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/wear_levelling/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/wear_levelling/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/wear_levelling/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/wear_levelling/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/wear_levelling/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/fatfs/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/fatfs/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/fatfs/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/fatfs/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/fatfs/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/fatfs/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/idf_test/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/idf_test/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/idf_test/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/idf_test/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/idf_test/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/idf_test/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/ieee802154/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/ieee802154/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/ieee802154/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/ieee802154/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/ieee802154/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/ieee802154/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/openthread/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/openthread/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/openthread/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/openthread/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/openthread/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/openthread/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/perfmon/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/perfmon/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/perfmon/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/perfmon/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/perfmon/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/perfmon/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/rt/CMakeFiles/__idf_rt.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/rt/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/rt/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/rt/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/rt/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/rt/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/rt/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/spiffs/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/spiffs/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/spiffs/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/spiffs/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/spiffs/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/spiffs/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/ulp/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/ulp/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/ulp/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/ulp/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/ulp/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/ulp/CMakeFiles/install/strip.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/main/CMakeFiles/__idf_main.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/main/CMakeFiles/spiffs_spiffs_bin.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/main/CMakeFiles/spiffs-flash.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/main/CMakeFiles/encrypted-spiffs-flash.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/main/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/main/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/main/CMakeFiles/list_install_components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/main/CMakeFiles/install.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/main/CMakeFiles/install/local.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/main/CMakeFiles/install/strip.dir diff --git a/build/CMakeFiles/bootloader-complete b/build/CMakeFiles/bootloader-complete new file mode 100644 index 0000000..e69de29 diff --git a/build/CMakeFiles/bootloader.dir/Labels.json b/build/CMakeFiles/bootloader.dir/Labels.json new file mode 100644 index 0000000..4dfafc0 --- /dev/null +++ b/build/CMakeFiles/bootloader.dir/Labels.json @@ -0,0 +1,43 @@ +{ + "sources" : + [ + { + "file" : "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/bootloader" + }, + { + "file" : "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/bootloader.rule" + }, + { + "file" : "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/bootloader-complete.rule" + }, + { + "file" : "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-build.rule" + }, + { + "file" : "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure.rule" + }, + { + "file" : "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-download.rule" + }, + { + "file" : "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-install.rule" + }, + { + "file" : "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir.rule" + }, + { + "file" : "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch.rule" + }, + { + "file" : "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-update.rule" + } + ], + "target" : + { + "labels" : + [ + "bootloader" + ], + "name" : "bootloader" + } +} \ No newline at end of file diff --git a/build/CMakeFiles/bootloader.dir/Labels.txt b/build/CMakeFiles/bootloader.dir/Labels.txt new file mode 100644 index 0000000..66b1523 --- /dev/null +++ b/build/CMakeFiles/bootloader.dir/Labels.txt @@ -0,0 +1,13 @@ +# Target labels + bootloader +# Source files and their labels +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/bootloader +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/bootloader.rule +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/bootloader-complete.rule +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-build.rule +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure.rule +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-download.rule +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-install.rule +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir.rule +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch.rule +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-update.rule diff --git a/build/CMakeFiles/clean_additional.cmake b/build/CMakeFiles/clean_additional.cmake new file mode 100644 index 0000000..d803cd6 --- /dev/null +++ b/build/CMakeFiles/clean_additional.cmake @@ -0,0 +1,25 @@ +# Additional clean files +cmake_minimum_required(VERSION 3.16) + +if("${CONFIG}" STREQUAL "" OR "${CONFIG}" STREQUAL "") + file(REMOVE_RECURSE + "bootloader\\bootloader.bin" + "bootloader\\bootloader.elf" + "bootloader\\bootloader.map" + "config\\sdkconfig.cmake" + "config\\sdkconfig.h" + "esp-idf\\mbedtls\\x509_crt_bundle" + "flash_app_args" + "flash_bootloader_args" + "flash_project_args" + "flasher_args.json" + "flasher_args.json.in" + "ldgen_libraries" + "ldgen_libraries.in" + "modbus_tcp_esp32.bin" + "modbus_tcp_esp32.map" + "project_elf_src_esp32.c" + "spiffs.bin" + "x509_crt_bundle.S" + ) +endif() diff --git a/build/CMakeFiles/cmake.check_cache b/build/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/build/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/build/CMakeFiles/git-data/HEAD b/build/CMakeFiles/git-data/HEAD new file mode 100644 index 0000000..3145922 --- /dev/null +++ b/build/CMakeFiles/git-data/HEAD @@ -0,0 +1 @@ +662a3be354759d9487bf4b1a629fadb766cb1800 diff --git a/build/CMakeFiles/git-data/grabRef.cmake b/build/CMakeFiles/git-data/grabRef.cmake new file mode 100644 index 0000000..c65a03b --- /dev/null +++ b/build/CMakeFiles/git-data/grabRef.cmake @@ -0,0 +1,50 @@ +# +# Internal file for GetGitRevisionDescription.cmake +# +# Requires CMake 2.6 or newer (uses the 'function' command) +# +# Original Author: +# 2009-2010 Ryan Pavlik +# http://academic.cleardefinition.com +# Iowa State University HCI Graduate Program/VRAC +# +# Copyright Iowa State University 2009-2010. +# Distributed under the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http://www.boost.org/LICENSE_1_0.txt) + +set(HEAD_HASH) + +file(READ "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/git-data/HEAD" HEAD_CONTENTS LIMIT 1024) + +string(STRIP "${HEAD_CONTENTS}" HEAD_CONTENTS) +set(GIT_DIR "C:/esp/v6.0/esp-idf/.git") +# handle git-worktree +if(EXISTS "${GIT_DIR}/commondir") + file(READ "${GIT_DIR}/commondir" GIT_DIR_NEW LIMIT 1024) + string(STRIP "${GIT_DIR_NEW}" GIT_DIR_NEW) + if(NOT IS_ABSOLUTE "${GIT_DIR_NEW}") + get_filename_component(GIT_DIR_NEW ${GIT_DIR}/${GIT_DIR_NEW} ABSOLUTE) + endif() + if(EXISTS "${GIT_DIR_NEW}") + set(GIT_DIR "${GIT_DIR_NEW}") + endif() +endif() +if(HEAD_CONTENTS MATCHES "ref") + # named branch + string(REPLACE "ref: " "" HEAD_REF "${HEAD_CONTENTS}") + if(EXISTS "${GIT_DIR}/${HEAD_REF}") + configure_file("${GIT_DIR}/${HEAD_REF}" "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/git-data/head-ref" COPYONLY) + elseif(EXISTS "${GIT_DIR}/logs/${HEAD_REF}") + configure_file("${GIT_DIR}/logs/${HEAD_REF}" "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/git-data/head-ref" COPYONLY) + set(HEAD_HASH "${HEAD_REF}") + endif() +else() + # detached HEAD + configure_file("${GIT_DIR}/HEAD" "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/git-data/head-ref" COPYONLY) +endif() + +if(NOT HEAD_HASH) + file(READ "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/git-data/head-ref" HEAD_HASH LIMIT 1024) + string(STRIP "${HEAD_HASH}" HEAD_HASH) +endif() diff --git a/build/CMakeFiles/git-data/head-ref b/build/CMakeFiles/git-data/head-ref new file mode 100644 index 0000000..3145922 --- /dev/null +++ b/build/CMakeFiles/git-data/head-ref @@ -0,0 +1 @@ +662a3be354759d9487bf4b1a629fadb766cb1800 diff --git a/build/CMakeFiles/modbus_tcp_esp32.elf.dir/project_elf_src_esp32.c.obj b/build/CMakeFiles/modbus_tcp_esp32.elf.dir/project_elf_src_esp32.c.obj new file mode 100644 index 0000000..4cf1e29 Binary files /dev/null and b/build/CMakeFiles/modbus_tcp_esp32.elf.dir/project_elf_src_esp32.c.obj differ diff --git a/build/CMakeFiles/rules.ninja b/build/CMakeFiles/rules.ninja new file mode 100644 index 0000000..c5e5e7d --- /dev/null +++ b/build/CMakeFiles/rules.ninja @@ -0,0 +1,2198 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 4.0 + +# This file contains all the rules used to get the outputs files +# built from the input files. +# It is included in the main 'build.ninja'. + +# ============================================================================= +# Project: modbus_tcp_esp32 +# Configurations: +# ============================================================================= +# ============================================================================= + +############################################# +# Rule for running custom commands. + +rule CUSTOM_COMMAND + command = $COMMAND + description = $DESC + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__modbus_tcp_esp32.2eelf_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX executable. + +rule CXX_EXECUTABLE_LINKER__modbus_tcp_esp32.2eelf_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-g++.exe $FLAGS $LINK_FLAGS @$RSP_FILE -o $TARGET_FILE && $POST_BUILD" + description = Linking CXX executable $TARGET_FILE + rspfile = $RSP_FILE + rspfile_content = $in $LINK_PATH $LINK_LIBRARIES + restat = $RESTAT + + +############################################# +# Rule for compiling ASM files. + +rule ASM_COMPILER____idf_xtensa_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building ASM object $out + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_xtensa_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_xtensa_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_stdio_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_stdio_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_hal_gpspi_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_hal_gpspi_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_hal_clock_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_hal_clock_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_hal_mspi_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_hal_mspi_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_hal_security_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_hal_security_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_app_format_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_app_format_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_bootloader_format_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_bootloader_format_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_app_update_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_app_update_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_partition_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_partition_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_efuse_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_efuse_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_security_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_security_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_gpio_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_gpio_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_hal_uart_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_hal_uart_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_pm_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_pm_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_mm_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_mm_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_dma_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_dma_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling ASM files. + +rule ASM_COMPILER____idf_mbedtls_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building ASM object $out + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_mbedtls_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_mbedtls_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__tfpsacrypto_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER__tfpsacrypto_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__everest_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER__everest_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__p256m_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER__p256m_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__builtin_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER__builtin_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__mbedx509_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER__mbedx509_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__mbedtls_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER__mbedtls_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_hal_timg_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_hal_timg_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_hal_wdt_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_hal_wdt_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_hal_i2s_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_hal_i2s_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_hal_ana_conv_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_hal_ana_conv_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_bootloader_support_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_bootloader_support_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_spi_flash_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_spi_flash_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling ASM files. + +rule ASM_COMPILER____idf_esp_system_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building ASM object $out + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_system_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_system_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_common_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_common_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling ASM files. + +rule ASM_COMPILER____idf_esp_rom_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building ASM object $out + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_rom_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_rom_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_hal_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_hal_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_log_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_log_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_heap_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_heap_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_soc_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_soc_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_hal_gpio_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_hal_gpio_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_hal_touch_sens_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_hal_touch_sens_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_hw_support_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_hw_support_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling ASM files. + +rule ASM_COMPILER____idf_freertos_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building ASM object $out + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_freertos_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_freertos_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_libc_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_libc_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_pthread_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_pthread_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER____idf_cxx_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-g++.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_cxx_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_timer_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_timer_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_ringbuf_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_ringbuf_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_psram_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_psram_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_uart_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_uart_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_gptimer_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_gptimer_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_event_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_event_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_nvs_sec_provider_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_nvs_sec_provider_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_nvs_flash_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER____idf_nvs_flash_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-g++.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_nvs_flash_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_phy_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_phy_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_vfs_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_vfs_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_lwip_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_lwip_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_netif_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_netif_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_wpa_supplicant_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_wpa_supplicant_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS @$RSP_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + rspfile = $RSP_FILE + rspfile_content = $in $LINK_PATH $LINK_LIBRARIES + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_coex_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_coex_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_wifi_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_wifi_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_spi_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_spi_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling ASM files. + +rule ASM_COMPILER____idf_esp_gdbstub_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building ASM object $out + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_gdbstub_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_gdbstub_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_unity_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_unity_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_cmock_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_cmock_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_console_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_console_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_hal_i2c_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_hal_i2c_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_hal_twai_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_hal_twai_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_driver_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_driver_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_http_parser_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_http_parser_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp-tls_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp-tls_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_i2s_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_i2s_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_adc_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_adc_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_cam_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_cam_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_dac_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_dac_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_i2c_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_i2c_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_hal_ledc_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_hal_ledc_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_ledc_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_ledc_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_hal_mcpwm_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_hal_mcpwm_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_mcpwm_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_mcpwm_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_hal_pcnt_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_hal_pcnt_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_pcnt_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_pcnt_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_hal_rmt_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_hal_rmt_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_rmt_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_rmt_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_sdmmc_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_sdmmc_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_sd_intf_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_sd_intf_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_sdio_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_sdio_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_sdm_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_sdm_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_sdmmc_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_sdmmc_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_sdspi_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_sdspi_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_touch_sens_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_touch_sens_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_driver_twai_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_driver_twai_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_eth_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_eth_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_hal_lcd_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_hal_lcd_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_hid_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_hid_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_tcp_transport_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_tcp_transport_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_http_client_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_http_client_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_http_server_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_http_server_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_https_ota_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_https_ota_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_https_server_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_https_server_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_lcd_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_lcd_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_protobuf-c_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_protobuf-c_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_protocomm_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_protocomm_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_local_ctrl_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_local_ctrl_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER____idf_wear_levelling_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-g++.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_wear_levelling_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_fatfs_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_fatfs_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_perfmon_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_perfmon_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_rt_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_rt_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_spiffs_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_spiffs_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_main_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_main_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for re-running cmake. + +rule RERUN_CMAKE + command = C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build + description = Re-running CMake... + generator = 1 + + +############################################# +# Rule for cleaning additional files. + +rule CLEAN_ADDITIONAL + command = C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCONFIG=$CONFIG -P CMakeFiles\clean_additional.cmake + description = Cleaning additional files... + + +############################################# +# Rule for cleaning all built files. + +rule CLEAN + command = C:\Espressif\tools\ninja\1.12.1\ninja.exe $FILE_ARG -t clean $TARGETS + description = Cleaning all built files... + + +############################################# +# Rule for printing all primary targets available. + +rule HELP + command = C:\Espressif\tools\ninja\1.12.1\ninja.exe -t targets + description = All primary targets available: + diff --git a/build/CMakeFiles/sections.ld-d65dc84.bat b/build/CMakeFiles/sections.ld-d65dc84.bat new file mode 100644 index 0000000..451d2b8 --- /dev/null +++ b/build/CMakeFiles/sections.ld-d65dc84.bat @@ -0,0 +1,9 @@ +@echo off +cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build || (set FAIL_LINE=2& goto :ABORT) +C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe C:/esp/v6.0/esp-idf/tools/ldgen/ldgen.py --config C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/sdkconfig --fragments-list C:/esp/v6.0/esp-idf/components/xtensa/linker.lf;C:/esp/v6.0/esp-idf/components/esp_driver_gpio/linker.lf;C:/esp/v6.0/esp-idf/components/esp_pm/linker.lf;C:/esp/v6.0/esp-idf/components/esp_mm/linker.lf;C:/esp/v6.0/esp-idf/components/esp_driver_dma/linker.lf;C:/esp/v6.0/esp-idf/components/esp_hal_wdt/linker.lf;C:/esp/v6.0/esp-idf/components/spi_flash/linker.lf;C:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/linker.lf;C:/esp/v6.0/esp-idf/components/esp_system/linker.lf;C:/esp/v6.0/esp-idf/components/esp_system/app.lf;C:/esp/v6.0/esp-idf/components/esp_common/common.lf;C:/esp/v6.0/esp-idf/components/esp_common/soc.lf;C:/esp/v6.0/esp-idf/components/esp_rom/linker.lf;C:/esp/v6.0/esp-idf/components/hal/linker.lf;C:/esp/v6.0/esp-idf/components/log/linker.lf;C:/esp/v6.0/esp-idf/components/heap/linker.lf;C:/esp/v6.0/esp-idf/components/soc/linker.lf;C:/esp/v6.0/esp-idf/components/esp_hal_pmu/linker.lf;C:/esp/v6.0/esp-idf/components/esp_hw_support/linker.lf;C:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/linker.lf;C:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/linker.lf;C:/esp/v6.0/esp-idf/components/freertos/linker_common.lf;C:/esp/v6.0/esp-idf/components/freertos/linker.lf;C:/esp/v6.0/esp-idf/components/esp_libc/src/esp_libc.lf;C:/esp/v6.0/esp-idf/components/esp_libc/src/system_libs.lf;C:/esp/v6.0/esp-idf/components/esp_libc/src/picolibc/libc.lf;C:/esp/v6.0/esp-idf/components/esp_ringbuf/linker.lf;C:/esp/v6.0/esp-idf/components/esp_psram/linker.lf;C:/esp/v6.0/esp-idf/components/esp_driver_uart/linker.lf;C:/esp/v6.0/esp-idf/components/esp_driver_gptimer/linker.lf;C:/esp/v6.0/esp-idf/components/app_trace/linker.lf;C:/esp/v6.0/esp-idf/components/esp_event/linker.lf;C:/esp/v6.0/esp-idf/components/esp_phy/linker.lf;C:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/linker.lf;C:/esp/v6.0/esp-idf/components/vfs/linker.lf;C:/esp/v6.0/esp-idf/components/lwip/linker.lf;C:/esp/v6.0/esp-idf/components/esp_netif/linker.lf;C:/esp/v6.0/esp-idf/components/wpa_supplicant/linker.lf;C:/esp/v6.0/esp-idf/components/esp_wifi/linker.lf;C:/esp/v6.0/esp-idf/components/esp_driver_spi/linker.lf;C:/esp/v6.0/esp-idf/components/esp_gdbstub/linker.lf;C:/esp/v6.0/esp-idf/components/driver/i2c/linker.lf;C:/esp/v6.0/esp-idf/components/driver/twai/linker.lf;C:/esp/v6.0/esp-idf/components/esp_driver_i2s/linker.lf;C:/esp/v6.0/esp-idf/components/esp_adc/linker.lf;C:/esp/v6.0/esp-idf/components/esp_driver_ana_cmpr/linker.lf;C:/esp/v6.0/esp-idf/components/esp_driver_bitscrambler/linker.lf;C:/esp/v6.0/esp-idf/components/esp_driver_isp/linker.lf;C:/esp/v6.0/esp-idf/components/esp_driver_dac/linker.lf;C:/esp/v6.0/esp-idf/components/esp_driver_i2c/linker.lf;C:/esp/v6.0/esp-idf/components/esp_driver_i3c/linker.lf;C:/esp/v6.0/esp-idf/components/esp_driver_ledc/linker.lf;C:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/linker.lf;C:/esp/v6.0/esp-idf/components/esp_driver_parlio/linker.lf;C:/esp/v6.0/esp-idf/components/esp_driver_pcnt/linker.lf;C:/esp/v6.0/esp-idf/components/esp_driver_rmt/linker.lf;C:/esp/v6.0/esp-idf/components/esp_driver_sdm/linker.lf;C:/esp/v6.0/esp-idf/components/esp_driver_twai/linker.lf;C:/esp/v6.0/esp-idf/components/esp_eth/linker.lf;C:/esp/v6.0/esp-idf/components/esp_lcd/linker.lf;C:/esp/v6.0/esp-idf/components/esp_trace/linker.lf;C:/esp/v6.0/esp-idf/components/ieee802154/linker.lf;C:/esp/v6.0/esp-idf/components/openthread/linker.lf --input C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/ld/sections.ld.in --output C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/ld/sections.ld --kconfig C:/esp/v6.0/esp-idf/Kconfig --env-file C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config.env --libraries-file C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/ldgen_libraries --objdump C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe || (set FAIL_LINE=3& goto :ABORT) +goto :EOF + +:ABORT +set ERROR_CODE=%ERRORLEVEL% +echo Batch file failed at line %FAIL_LINE% with errorcode %ERRORLEVEL% +exit /b %ERROR_CODE% \ No newline at end of file diff --git a/build/app-flash_args b/build/app-flash_args new file mode 100644 index 0000000..94f0936 --- /dev/null +++ b/build/app-flash_args @@ -0,0 +1,2 @@ +--flash-mode dio --flash-freq 40m --flash-size 2MB +0x10000 modbus_tcp_esp32.bin diff --git a/build/app-flash_args.in b/build/app-flash_args.in new file mode 100644 index 0000000..685dd52 --- /dev/null +++ b/build/app-flash_args.in @@ -0,0 +1,2 @@ +--flash-mode dio --flash-freq 40m --flash-size 2MB +0x10000 $.bin \ No newline at end of file diff --git a/build/bootloader-flash_args b/build/bootloader-flash_args new file mode 100644 index 0000000..f98410c --- /dev/null +++ b/build/bootloader-flash_args @@ -0,0 +1,2 @@ +--flash-mode dio --flash-freq 40m --flash-size 2MB +0x1000 bootloader/bootloader.bin diff --git a/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure b/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure new file mode 100644 index 0000000..e69de29 diff --git a/build/bootloader-prefix/src/bootloader-stamp/bootloader-done b/build/bootloader-prefix/src/bootloader-stamp/bootloader-done new file mode 100644 index 0000000..e69de29 diff --git a/build/bootloader-prefix/src/bootloader-stamp/bootloader-download b/build/bootloader-prefix/src/bootloader-stamp/bootloader-download new file mode 100644 index 0000000..e69de29 diff --git a/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir b/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir new file mode 100644 index 0000000..e69de29 diff --git a/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch b/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch new file mode 100644 index 0000000..e69de29 diff --git a/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch-info.txt b/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch-info.txt new file mode 100644 index 0000000..53e1e1e --- /dev/null +++ b/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch-info.txt @@ -0,0 +1,6 @@ +# This is a generated file and its contents are an internal implementation detail. +# The update step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +command= +work_dir= diff --git a/build/bootloader-prefix/src/bootloader-stamp/bootloader-source_dirinfo.txt b/build/bootloader-prefix/src/bootloader-stamp/bootloader-source_dirinfo.txt new file mode 100644 index 0000000..5303316 --- /dev/null +++ b/build/bootloader-prefix/src/bootloader-stamp/bootloader-source_dirinfo.txt @@ -0,0 +1,9 @@ +# This is a generated file and its contents are an internal implementation detail. +# The download step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +method=source_dir +command= +source_dir=C:/esp/v6.0/esp-idf/components/bootloader/subproject +work_dir= + diff --git a/build/bootloader-prefix/src/bootloader-stamp/bootloader-update b/build/bootloader-prefix/src/bootloader-stamp/bootloader-update new file mode 100644 index 0000000..e69de29 diff --git a/build/bootloader-prefix/src/bootloader-stamp/bootloader-update-info.txt b/build/bootloader-prefix/src/bootloader-stamp/bootloader-update-info.txt new file mode 100644 index 0000000..31617d1 --- /dev/null +++ b/build/bootloader-prefix/src/bootloader-stamp/bootloader-update-info.txt @@ -0,0 +1,7 @@ +# This is a generated file and its contents are an internal implementation detail. +# The patch step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +command (connected)= +command (disconnected)= +work_dir= diff --git a/build/bootloader-prefix/tmp/bootloader-cfgcmd.txt b/build/bootloader-prefix/tmp/bootloader-cfgcmd.txt new file mode 100644 index 0000000..c815960 --- /dev/null +++ b/build/bootloader-prefix/tmp/bootloader-cfgcmd.txt @@ -0,0 +1 @@ +cmd='C:/Espressif/tools/cmake/4.0.3/bin/cmake.exe;-DSDKCONFIG=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/sdkconfig;-DIDF_PATH=C:/esp/v6.0/esp-idf;-DIDF_TARGET=esp32;-DPYTHON_DEPS_CHECKED=1;-DPYTHON=C:/Espressif/tools/python/v6.0/venv/Scripts/python.exe;-DEXTRA_COMPONENT_DIRS=C:/esp/v6.0/esp-idf/components/bootloader;-DPROJECT_SOURCE_DIR=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI;-DIGNORE_EXTRA_COMPONENT=;-GNinja;-S;;-B;' diff --git a/build/bootloader-prefix/tmp/bootloader-mkdirs.cmake b/build/bootloader-prefix/tmp/bootloader-mkdirs.cmake new file mode 100644 index 0000000..08ed50a --- /dev/null +++ b/build/bootloader-prefix/tmp/bootloader-mkdirs.cmake @@ -0,0 +1,27 @@ +# Distributed under the OSI-approved BSD 3-Clause License. See accompanying +# file LICENSE.rst or https://cmake.org/licensing for details. + +cmake_minimum_required(VERSION ${CMAKE_VERSION}) # this file comes with cmake + +# If CMAKE_DISABLE_SOURCE_CHANGES is set to true and the source directory is an +# existing directory in our source tree, calling file(MAKE_DIRECTORY) on it +# would cause a fatal error, even though it would be a no-op. +if(NOT EXISTS "C:/esp/v6.0/esp-idf/components/bootloader/subproject") + file(MAKE_DIRECTORY "C:/esp/v6.0/esp-idf/components/bootloader/subproject") +endif() +file(MAKE_DIRECTORY + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader" + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader-prefix" + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader-prefix/tmp" + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp" + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader-prefix/src" + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp" +) + +set(configSubDirs ) +foreach(subDir IN LISTS configSubDirs) + file(MAKE_DIRECTORY "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/${subDir}") +endforeach() +if(cfgdir) + file(MAKE_DIRECTORY "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp${cfgdir}") # cfgdir has leading slash +endif() diff --git a/build/bootloader/.bin_timestamp b/build/bootloader/.bin_timestamp new file mode 100644 index 0000000..3c3ed52 --- /dev/null +++ b/build/bootloader/.bin_timestamp @@ -0,0 +1 @@ +e9b6464301ff88b3c28b00e73da26650 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/bootloader.bin diff --git a/build/bootloader/.ninja_deps b/build/bootloader/.ninja_deps new file mode 100644 index 0000000..6f86161 Binary files /dev/null and b/build/bootloader/.ninja_deps differ diff --git a/build/bootloader/.ninja_log b/build/bootloader/.ninja_log new file mode 100644 index 0000000..f7334d8 --- /dev/null +++ b/build/bootloader/.ninja_log @@ -0,0 +1,147 @@ +# ninja log v6 +38 303 7973820779969568 esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/util.c.obj 298abff32d2aa88f +28 317 7973820779836251 esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_lock.c.obj 5e196036a3ac9153 +44 343 7973820780036440 esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj 5f916337215b689c +24 366 7973820779836251 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj 1ffa81a190b5c923 +50 400 7973820780096424 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_format_text.c.obj b416f7362dafb50b +18 409 7973820779748154 esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_timestamp.c.obj 4b8f2713aa335ba +56 422 7973820780157777 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_print.c.obj 428f9154cf701c4e +84 430 7973820780431651 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj 91a2aa73369caf6c +69 446 7973820780290432 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj dd4edeb05d28d68e +33 460 7973820779919775 esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj f48ace6f0bacfb10 +62 481 7973820780220455 esp-idf/log/CMakeFiles/__idf_log.dir/src/log.c.obj d3a072d8609f273 +94 490 7973820780531429 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_serial_output.c.obj b5224ed220deae55 +108 499 7973820780671377 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj 19e0e3599086801b +117 513 7973820780757910 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj c4af6dc9ec97c7d2 +304 593 7973820782629821 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj c86d87d95e5679a8 +77 651 7973820780367787 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj fb8d9ea819f1bb99 +367 787 7973820783260219 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/esp_cpu_intr.c.obj b0452eef0edc45c5 +343 797 7973820783024095 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj be3a2f528630655c +400 807 7973820783602885 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj 6527ea4d388bcfce +410 815 7973820783683198 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cpu_region_protect.c.obj 6e64fbb7072b5c19 +101 824 7973820780611419 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj 1da24f41148bb5b8 +319 841 7973820782770418 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj dcb746fa5d8d2103 +447 955 7973820784062492 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_init.c.obj 60fdb291e5e25cae +499 972 7973820784588651 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/chip_info.c.obj 4e7e4920ffb25430 +430 999 7973820783886622 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk_init.c.obj 431cc16071c72537 +514 1019 7973820784732502 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj 58e6bedea95d07b8 +460 1038 7973820784188090 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_sleep.c.obj 979890c1c1d3bfe3 +593 1108 7973820785525108 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj be3325538eb5693c +651 1116 7973820786100153 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_fields.c.obj a2bb28616d61aa2c +491 1124 7973820784498568 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_time.c.obj 9d920b3cf1f3aa7d +481 1155 7973820784401033 esp-idf/log/liblog.a e92d446a05650353 +423 1260 7973820783808826 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk.c.obj b570ac784451bcea +807 1308 7973820787672282 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj 97fd337dc00bc1a1 +797 1396 7973820787562334 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj d2272b159e7b93f8 +973 1439 7973820789318567 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj 78fb5b93b865b425 +816 1467 7973820787744413 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj 5903f1eae1a8224d +999 1476 7973820789583747 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj 21996bc5c14dd9ea +841 1498 7973820788004043 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj 28eb35eb561834f7 +787 1509 7973820787462370 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_utility.c.obj 6d49d2b78317c3cf +824 1518 7973820787838929 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/without_key_purposes/three_key_blocks/esp_efuse_api_key.c.obj 2fabb53e4e66aaee +1039 1534 7973820789981279 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj dadf783fd2341b25 +1125 1552 7973820790836765 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32.c.obj 6c6fbcac15a5a5fe +1117 1560 7973820790759288 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj 3988489e0b5c2258 +956 1596 7973820789146062 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj 68a571758221e4c +1108 1616 7973820790674502 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj a9a4398b2eb31e8c +1020 1637 7973820789778221 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj d29cef562f0f6fee +1155 1879 7973820791141798 esp-idf/esp_rom/libesp_rom.a e7593de44d2eb46e +1467 1942 7973820794254933 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj 6c83f4e825c1e8c4 +1519 1958 7973820794774273 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj dced9c492e59cf63 +1309 1967 7973820792680105 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj 2ee16aa186f868d1 +1552 1976 7973820795112051 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj 146d11709ec107c4 +1560 1987 7973820795191999 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_soc.c.obj 5b00afd6f88f9129 +1534 1999 7973820794926961 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj 4d286eb01e3075bd +1498 2047 7973820794571201 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_sha.c.obj f7257902e0c487c3 +1396 2062 7973820793546308 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32.c.obj e17069ffc5359e90 +1261 2078 7973820792195179 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj 689b7ec4e3cea56e +1637 2092 7973820795961848 esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_lock.c.obj ab0f4a55a4f78758 +1509 2101 7973820794684321 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj e6f89a5b2ed26b08 +1616 2121 7973820795756647 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj 9668ab64979547ef +1440 2292 7973820793984705 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj 162aa9eec50ff465 +1597 2318 7973820795556755 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_esp32.c.obj 3d8e06587a5e483d +1959 2326 7973820799175761 esp-idf/esp_hal_security/CMakeFiles/__idf_esp_hal_security.dir/mpu_hal.c.obj ec4d63031cb59f00 +1967 2339 7973820799262429 esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/esp32/adc_periph.c.obj b22b4e882ed3325b +1879 2405 7973820798379924 esp-idf/esp_common/libesp_common.a 5c296d53dad7655f +1976 2430 7973820799354271 esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_hal_common.c.obj f1e79703c258ce84 +1987 2451 7973820799455812 esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_oneshot_hal.c.obj ccbcef25603d4bff +2048 2461 7973820800061730 esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/esp32/dac_periph.c.obj 2c0c719a305fffc3 +1477 2470 7973820794351295 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj 39a5d70ab2efd9b7 +1942 2479 7973820799004848 esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_periph_clk.c.obj dfae40ad210bf37e +2121 2499 7973820800794429 esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/esp32/uart_periph.c.obj 420e1e5fb47f5150 +2079 2531 7973820800377099 esp-idf/esp_hal_i2s/CMakeFiles/__idf_esp_hal_i2s.dir/esp32/i2s_periph.c.obj 38d55f2252029587 +2102 2566 7973820800605888 esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/uart_hal_iram.c.obj 38fac0b71eb8fb69 +2292 2584 7973820802511210 esp-idf/esp_hal_wdt/CMakeFiles/__idf_esp_hal_wdt.dir/esp32/mwdt_periph.c.obj c1cd9b9fac490dba +2062 2660 7973820800211753 esp-idf/esp_hal_i2s/CMakeFiles/__idf_esp_hal_i2s.dir/i2s_hal.c.obj 80c86f5b10e5a939 +2340 2686 7973820802986546 esp-idf/esp_hal_timg/CMakeFiles/__idf_esp_hal_timg.dir/esp32/timer_periph.c.obj baf05ea61c942262 +2092 2720 7973820800515417 esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/uart_hal.c.obj 14796c6855896704 +1999 2795 7973820799575763 esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_hal.c.obj 969a3cb72618633a +2430 2878 7973820803887058 esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj fc2c04687215310f +2327 2911 7973820802855145 esp-idf/esp_hal_timg/CMakeFiles/__idf_esp_hal_timg.dir/timer_hal.c.obj 394cb621bf73aa71 +2318 2922 7973820802767271 esp-idf/esp_hal_wdt/CMakeFiles/__idf_esp_hal_wdt.dir/wdt_hal_iram.c.obj 32da0fc8fcedc25a +2480 2932 7973820804380431 esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_hal.c.obj 56f73a5901f3da18 +2451 2940 7973820804097609 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj 20b7e77abe3d5396 +2470 2973 7973820804280491 esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/esp32/spi_periph.c.obj 851c39438066a9c +2461 3012 7973820804198196 esp-idf/esp_hal_clock/CMakeFiles/__idf_esp_hal_clock.dir/esp32/clk_tree_hal.c.obj adb20edf6f8b74e +2532 3022 7973820804897588 esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_slave_hal.c.obj c8ce14d7b2677fc2 +2405 3044 7973820803633516 esp-idf/esp_hw_support/libesp_hw_support.a 3eee41f06c3b2a3c +2660 3089 7973820806189020 esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/gpio_hal.c.obj 1751cc8810d1a3af +2687 3128 7973820806452834 esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/rtc_io_hal.c.obj 7fa8670128a5a0e0 +2566 3166 7973820805246860 esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_slave_hal_iram.c.obj 22ee6eefd4758948 +2721 3182 7973820806786443 esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/esp32/rtc_io_periph.c.obj 8f6b5a6d3871a5d0 +2500 3216 7973820804580190 esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_hal_iram.c.obj d187d58454c0597f +2878 3247 7973820808363903 esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/esp32/sdm_periph.c.obj f0b3a19f8361b538 +2795 3268 7973820807535158 esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/sdm_hal.c.obj 612f1d169fa605e9 +2922 3326 7973820808808103 esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj 3afd285c27384312 +3013 3363 7973820809713468 esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj 605ff9046ecfc64f +2911 3396 7973820808698037 esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj 4e516cdc63026bf4 +3022 3408 7973820809810155 esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj 96f922aba9375d3c +2932 3419 7973820808908042 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/efuse_hal.c.obj d7dafcab4228cbc4 +2973 3437 7973820809310650 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/cache_hal_esp32.c.obj 1a0e974653432516 +3129 3446 7973820810864091 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/gpio_periph.c.obj 8a8af77b44e6ee69 +3090 3471 7973820810479671 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/interrupts.c.obj d44f978ff7ad0bf2 +3216 3507 7973820811740543 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mpi_periph.c.obj e4b55d20c4f8a0c1 +3183 3516 7973820811408032 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/emac_periph.c.obj 7d35abeb4e9bf2b7 +3044 3523 7973820810025255 esp-idf/esp_system/libesp_system.a c8f49980489c2a0d +3166 3530 7973820811238816 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dport_access.c.obj 6b479f366f06ca3e +3247 3534 7973820812051350 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdmmc_periph.c.obj 35de956383aa72ce +3419 3547 7973820814916392 project_elf_src_esp32.c c4393d4ee73d68a7 +3419 3547 7973820814916392 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/project_elf_src_esp32.c c4393d4ee73d68a7 +3268 3561 7973820812261883 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdio_slave_periph.c.obj 3c805640c4f8e082 +2941 3580 7973820808993200 esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj a900f6fb80b45ccd +3326 3600 7973820812838739 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/power_supply_periph.c.obj 97806803f5b32c5d +3397 3643 7973820813545197 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj 9f50b97af60435e +3363 3643 7973820815888095 ld/bootloader.ld 98b2db902efc5ae +3363 3643 7973820815888095 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/ld/bootloader.ld 98b2db902efc5ae +3409 3666 7973820813671574 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj b54f1b3549d13f61 +3523 3809 7973820814814281 esp-idf/efuse/libefuse.a ad45dec6547a20d +3649 3814 7973820816072751 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32.c.obj 5215d552fc595f92 +3643 3879 7973820816017295 esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj 463cb1d4319642de +2584 3880 7973820805431111 esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj a62205f69e890328 +3809 4151 7973820817662130 esp-idf/bootloader_support/libbootloader_support.a f6aef28c006d00f0 +4151 4373 7973820821073442 esp-idf/esp_security/libesp_security.a 7cdae8ce3fd4a726 +4373 4579 7973820823247935 esp-idf/esp_hal_security/libesp_hal_security.a d1dc3c805130a118 +4579 4784 7973820825273158 esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a f0746abde0c53346 +4784 4986 7973820827402826 esp-idf/esp_hal_i2s/libesp_hal_i2s.a 1d9979c10620323d +4986 5161 7973820829383037 esp-idf/esp_hal_uart/libesp_hal_uart.a ef2a9dcedccec470 +5161 5358 7973820831129436 esp-idf/esp_hal_wdt/libesp_hal_wdt.a 75b49b567880b7d8 +5358 5554 7973820833083043 esp-idf/esp_hal_timg/libesp_hal_timg.a d4228b7d3bb9c0dd +5554 5738 7973820835109993 esp-idf/esp_bootloader_format/libesp_bootloader_format.a 2836833748619cc0 +5738 5934 7973820836956844 esp-idf/spi_flash/libspi_flash.a 8b56a5a671c69517 +5934 6120 7973820838912638 esp-idf/esp_hal_clock/libesp_hal_clock.a e7275f1c569e76f2 +6120 6316 7973820840768035 esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a 103961cda5058008 +6316 6499 7973820842681017 esp-idf/micro-ecc/libmicro-ecc.a 42df0f4b4c268fd1 +6499 6698 7973820844512606 esp-idf/esp_hal_gpio/libesp_hal_gpio.a 6106264496f6409a +6698 6913 7973820846532428 esp-idf/hal/libhal.a b70cb7edf3b5fe50 +6913 7156 7973820848689312 esp-idf/soc/libsoc.a f54c230d61dd65a0 +7156 7365 7973820851096866 esp-idf/xtensa/libxtensa.a 429a4b2358a93fc5 +7365 7583 7973820853213074 esp-idf/main/libmain.a 405077a36f6e7870 +7583 7861 7973820855395645 bootloader.elf c696b6a4c5be1011 +7862 8186 7973820861197313 .bin_timestamp bb0037e039ed1044 +7862 8186 7973820861197313 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/.bin_timestamp bb0037e039ed1044 +8186 8317 7973820861356344 CMakeFiles/bootloader_check_size d43bc3d306968936 +8186 8317 7973820861356344 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/bootloader_check_size d43bc3d306968936 +29 162 7973821005501663 CMakeFiles/bootloader_check_size d43bc3d306968936 +29 162 7973821005501663 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/bootloader_check_size d43bc3d306968936 +29 140 7973821012045637 CMakeFiles/bootloader_check_size d43bc3d306968936 +29 140 7973821012045637 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/bootloader_check_size d43bc3d306968936 diff --git a/build/bootloader/CMakeCache.txt b/build/bootloader/CMakeCache.txt new file mode 100644 index 0000000..81ff592 --- /dev/null +++ b/build/bootloader/CMakeCache.txt @@ -0,0 +1,455 @@ +# This is the CMakeCache file. +# For build in directory: c:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader +# It was generated by CMake: C:/Espressif/tools/cmake/4.0.3/bin/cmake.exe +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-addr2line.exe + +//Path to a program. +CMAKE_AR:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ar.exe + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_ASM_COMPILER_AR:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_ASM_COMPILER_RANLIB:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe + +//Asm Compiler Base Flags +CMAKE_ASM_FLAGS:STRING=@"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/asmflags" + +//Flags used by the ASM compiler during DEBUG builds. +CMAKE_ASM_FLAGS_DEBUG:STRING=-g + +//Flags used by the ASM compiler during MINSIZEREL builds. +CMAKE_ASM_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the ASM compiler during RELEASE builds. +CMAKE_ASM_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the ASM compiler during RELWITHDEBINFO builds. +CMAKE_ASM_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Choose the type of build, options are: None Debug Release RelWithDebInfo +// MinSizeRel ... +CMAKE_BUILD_TYPE:STRING= + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_AR:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe + +//C++ Compiler Base Flags +CMAKE_CXX_FLAGS:STRING=@"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cxxflags" + +//Flags used by the CXX compiler during DEBUG builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//Flags used by the CXX compiler during MINSIZEREL builds. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the CXX compiler during RELEASE builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the CXX compiler during RELWITHDEBINFO builds. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_AR:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_RANLIB:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe + +//C Compiler Base Flags +CMAKE_C_FLAGS:STRING=@"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" + +//Flags used by the C compiler during DEBUG builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the C compiler during MINSIZEREL builds. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the C compiler during RELEASE builds. +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the C compiler during RELWITHDEBINFO builds. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Path to a program. +CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND + +//Linker Base Flags +CMAKE_EXE_LINKER_FLAGS:STRING=@"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/ldflags" + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of build database during the build. +CMAKE_EXPORT_BUILD_DATABASE:BOOL= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= + +//Value Computed by CMake. +CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/pkgRedirects + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/bootloader + +//Path to a program. +CMAKE_LINKER:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ld.exe + +//Program used to build from build.ninja files. +CMAKE_MAKE_PROGRAM:FILEPATH=C:/Espressif/tools/ninja/1.12.1/ninja.exe + +//Flags used by the linker during the creation of modules during +// all build types. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-nm.exe + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objcopy.exe + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=bootloader + +//Path to a program. +CMAKE_RANLIB:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ranlib.exe + +//Path to a program. +CMAKE_READELF:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-readelf.exe + +//Flags used by the linker during the creation of shared libraries +// during all build types. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-strip.exe + +//Path to a program. +CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND + +//The CMake toolchain file +CMAKE_TOOLCHAIN_FILE:FILEPATH=C:/esp/v6.0/esp-idf/tools/cmake/toolchain-esp32.cmake + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//No help, variable specified on the command line. +EXTRA_COMPONENT_DIRS:UNINITIALIZED=C:/esp/v6.0/esp-idf/components/bootloader + +//Git command line client +GIT_EXECUTABLE:FILEPATH=C:/Program Files/Git/cmd/git.exe + +//No help, variable specified on the command line. +IDF_PATH:UNINITIALIZED=C:/esp/v6.0/esp-idf + +//IDF Build Target +IDF_TARGET:STRING=esp32 + +//IDF Build Toolchain Type +IDF_TOOLCHAIN:STRING=gcc + +//Path to toolchain build directory containing response files and +// toolchain file copy +IDF_TOOLCHAIN_BUILD_DIR:PATH=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain + +//No help, variable specified on the command line. +IGNORE_EXTRA_COMPONENT:UNINITIALIZED= + +//No help, variable specified on the command line. +PROJECT_SOURCE_DIR:UNINITIALIZED=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI + +//No help, variable specified on the command line. +PYTHON:UNINITIALIZED=C:/Espressif/tools/python/v6.0/venv/Scripts/python.exe + +//No help, variable specified on the command line. +PYTHON_DEPS_CHECKED:UNINITIALIZED=1 + +//No help, variable specified on the command line. +SDKCONFIG:UNINITIALIZED=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/sdkconfig + +//Value Computed by CMake +bootloader_BINARY_DIR:STATIC=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader + +//Value Computed by CMake +bootloader_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +bootloader_SOURCE_DIR:STATIC=C:/esp/v6.0/esp-idf/components/bootloader/subproject + +//Value Computed by CMake +esp-idf_BINARY_DIR:STATIC=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf + +//Value Computed by CMake +esp-idf_IS_TOP_LEVEL:STATIC=OFF + +//Value Computed by CMake +esp-idf_SOURCE_DIR:STATIC=C:/esp/v6.0/esp-idf + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_ADDR2LINE +CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_COMPILER_AR +CMAKE_ASM_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_COMPILER_RANLIB +CMAKE_ASM_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +CMAKE_ASM_COMPILER_WORKS:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS +CMAKE_ASM_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_DEBUG +CMAKE_ASM_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_MINSIZEREL +CMAKE_ASM_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELEASE +CMAKE_ASM_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELWITHDEBINFO +CMAKE_ASM_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=c:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=4 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=0 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=3 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=C:/Espressif/tools/cmake/4.0.3/bin/cmake.exe +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=C:/Espressif/tools/cmake/4.0.3/bin/cpack.exe +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=C:/Espressif/tools/cmake/4.0.3/bin/ctest.exe +//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR +CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB +CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_AR +CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB +CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//Path to cache edit program executable. +CMAKE_EDIT_COMMAND:INTERNAL=C:/Espressif/tools/cmake/4.0.3/bin/cmake-gui.exe +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_BUILD_DATABASE +CMAKE_EXPORT_BUILD_DATABASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Ninja +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=C:/esp/v6.0/esp-idf/components/bootloader/subproject +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//Name of CMakeLists files to read +CMAKE_LIST_FILE_NAME:INTERNAL=CMakeLists.txt +//ADVANCED property for variable: CMAKE_MAKE_PROGRAM +CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=41 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_READELF +CMAKE_READELF-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_TAPI +CMAKE_TAPI-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//Details about finding Git +FIND_PACKAGE_MESSAGE_DETAILS_Git:INTERNAL=[C:/Program Files/Git/cmd/git.exe][v2.53.0.windows.1()] +//ADVANCED property for variable: GIT_EXECUTABLE +GIT_EXECUTABLE-ADVANCED:INTERNAL=1 + diff --git a/build/bootloader/CMakeFiles/4.0.3/CMakeASMCompiler.cmake b/build/bootloader/CMakeFiles/4.0.3/CMakeASMCompiler.cmake new file mode 100644 index 0000000..1bd46d0 --- /dev/null +++ b/build/bootloader/CMakeFiles/4.0.3/CMakeASMCompiler.cmake @@ -0,0 +1,31 @@ +set(CMAKE_ASM_COMPILER "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc.exe") +set(CMAKE_ASM_COMPILER_ARG1 "") +set(CMAKE_AR "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ar.exe") +set(CMAKE_ASM_COMPILER_AR "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ar.exe") +set(CMAKE_RANLIB "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ranlib.exe") +set(CMAKE_ASM_COMPILER_RANLIB "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe") +set(CMAKE_LINKER "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ld.exe") +set(CMAKE_LINKER_LINK "") +set(CMAKE_LINKER_LLD "") +set(CMAKE_ASM_COMPILER_LINKER "") +set(CMAKE_ASM_COMPILER_LINKER_ID "") +set(CMAKE_ASM_COMPILER_LINKER_VERSION ) +set(CMAKE_ASM_COMPILER_LINKER_FRONTEND_VARIANT ) +set(CMAKE_MT "") +set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") +set(CMAKE_ASM_COMPILER_LOADED 1) +set(CMAKE_ASM_COMPILER_ID "GNU") +set(CMAKE_ASM_COMPILER_VERSION "") +set(CMAKE_ASM_COMPILER_ENV_VAR "ASM") + + +set(CMAKE_ASM_COMPILER_SYSROOT "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr") +set(CMAKE_COMPILER_SYSROOT "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr") + +set(CMAKE_ASM_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_ASM_LINKER_PREFERENCE 0) +set(CMAKE_ASM_LINKER_DEPFILE_SUPPORTED ) +set(CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED ) +set(CMAKE_ASM_LINKER_PUSHPOP_STATE_SUPPORTED ) + + diff --git a/build/bootloader/CMakeFiles/4.0.3/CMakeCCompiler.cmake b/build/bootloader/CMakeFiles/4.0.3/CMakeCCompiler.cmake new file mode 100644 index 0000000..40162c3 --- /dev/null +++ b/build/bootloader/CMakeFiles/4.0.3/CMakeCCompiler.cmake @@ -0,0 +1,85 @@ +set(CMAKE_C_COMPILER "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc.exe") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "15.2.0") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "23") +set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_C_STANDARD_LATEST "23") +set(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") +set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") +set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") +set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") +set(CMAKE_C17_COMPILE_FEATURES "c_std_17") +set(CMAKE_C23_COMPILE_FEATURES "c_std_23") + +set(CMAKE_C_PLATFORM_ID "") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_C_COMPILER_APPLE_SYSROOT "") +set(CMAKE_C_SIMULATE_VERSION "") + +set(CMAKE_C_COMPILER_SYSROOT "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr") +set(CMAKE_COMPILER_SYSROOT "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr") + + +set(CMAKE_AR "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ar.exe") +set(CMAKE_C_COMPILER_AR "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ar.exe") +set(CMAKE_RANLIB "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ranlib.exe") +set(CMAKE_C_COMPILER_RANLIB "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe") +set(CMAKE_LINKER "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ld.exe") +set(CMAKE_LINKER_LINK "") +set(CMAKE_LINKER_LLD "") +set(CMAKE_C_COMPILER_LINKER "NOTFOUND") +set(CMAKE_C_COMPILER_LINKER_ID "") +set(CMAKE_C_COMPILER_LINKER_VERSION ) +set(CMAKE_C_COMPILER_LINKER_FRONTEND_VARIANT ) +set(CMAKE_MT "") +set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") +set(CMAKE_COMPILER_IS_GNUCC 1) +set(CMAKE_C_COMPILER_LOADED 1) +set(CMAKE_C_COMPILER_WORKS TRUE) +set(CMAKE_C_ABI_COMPILED TRUE) + +set(CMAKE_C_COMPILER_ENV_VAR "CC") + +set(CMAKE_C_COMPILER_ID_RUN 1) +set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) +set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_C_LINKER_PREFERENCE 10) +set(CMAKE_C_LINKER_DEPFILE_SUPPORTED ) +set(CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED ) +set(CMAKE_C_LINKER_PUSHPOP_STATE_SUPPORTED ) + +# Save compiler ABI information. +set(CMAKE_C_SIZEOF_DATA_PTR "4") +set(CMAKE_C_COMPILER_ABI "ELF") +set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_C_LIBRARY_ARCHITECTURE "") + +if(CMAKE_C_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_C_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +endif() + +if(CMAKE_C_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include-fixed;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include") +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;c;nosys;c;gcc") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/usr/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/build/bootloader/CMakeFiles/4.0.3/CMakeCXXCompiler.cmake b/build/bootloader/CMakeFiles/4.0.3/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..e1e4f40 --- /dev/null +++ b/build/bootloader/CMakeFiles/4.0.3/CMakeCXXCompiler.cmake @@ -0,0 +1,109 @@ +set(CMAKE_CXX_COMPILER "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-g++.exe") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "15.2.0") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_CXX_STANDARD_LATEST "26") +set(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;cxx_std_26") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(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") +set(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") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") +set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") +set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") +set(CMAKE_CXX26_COMPILE_FEATURES "cxx_std_26") + +set(CMAKE_CXX_PLATFORM_ID "") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_CXX_COMPILER_APPLE_SYSROOT "") +set(CMAKE_CXX_SIMULATE_VERSION "") + +set(CMAKE_CXX_COMPILER_SYSROOT "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr") +set(CMAKE_COMPILER_SYSROOT "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr") + + +set(CMAKE_AR "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ar.exe") +set(CMAKE_CXX_COMPILER_AR "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ar.exe") +set(CMAKE_RANLIB "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ranlib.exe") +set(CMAKE_CXX_COMPILER_RANLIB "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe") +set(CMAKE_LINKER "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-ld.exe") +set(CMAKE_LINKER_LINK "") +set(CMAKE_LINKER_LLD "") +set(CMAKE_CXX_COMPILER_LINKER "NOTFOUND") +set(CMAKE_CXX_COMPILER_LINKER_ID "") +set(CMAKE_CXX_COMPILER_LINKER_VERSION ) +set(CMAKE_CXX_COMPILER_LINKER_FRONTEND_VARIANT ) +set(CMAKE_MT "") +set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") +set(CMAKE_COMPILER_IS_GNUCXX 1) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm;ccm;cxxm;c++m) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) + +foreach (lang IN ITEMS C OBJC OBJCXX) + if (CMAKE_${lang}_COMPILER_ID_RUN) + foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) + list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) + endforeach() + endif() +endforeach() + +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) +set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED ) +set(CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED ) +set(CMAKE_CXX_LINKER_PUSHPOP_STATE_SUPPORTED ) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "4") +set(CMAKE_CXX_COMPILER_ABI "ELF") +set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0/backward;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include-fixed;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "gcc;c;nosys;c;gcc") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/usr/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +set(CMAKE_CXX_COMPILER_CLANG_RESOURCE_DIR "") + +set(CMAKE_CXX_COMPILER_IMPORT_STD "") +### Imported target for C++23 standard library +set(CMAKE_CXX23_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Experimental `import std` support not enabled when detecting toolchain; it must be set before `CXX` is enabled (usually a `project()` call)") + + +### Imported target for C++26 standard library +set(CMAKE_CXX26_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Experimental `import std` support not enabled when detecting toolchain; it must be set before `CXX` is enabled (usually a `project()` call)") + + + diff --git a/build/bootloader/CMakeFiles/4.0.3/CMakeDetermineCompilerABI_C.bin b/build/bootloader/CMakeFiles/4.0.3/CMakeDetermineCompilerABI_C.bin new file mode 100644 index 0000000..bab3c81 Binary files /dev/null and b/build/bootloader/CMakeFiles/4.0.3/CMakeDetermineCompilerABI_C.bin differ diff --git a/build/bootloader/CMakeFiles/4.0.3/CMakeDetermineCompilerABI_CXX.bin b/build/bootloader/CMakeFiles/4.0.3/CMakeDetermineCompilerABI_CXX.bin new file mode 100644 index 0000000..2234647 Binary files /dev/null and b/build/bootloader/CMakeFiles/4.0.3/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/build/bootloader/CMakeFiles/4.0.3/CMakeSystem.cmake b/build/bootloader/CMakeFiles/4.0.3/CMakeSystem.cmake new file mode 100644 index 0000000..f799c2e --- /dev/null +++ b/build/bootloader/CMakeFiles/4.0.3/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Windows-10.0.26100") +set(CMAKE_HOST_SYSTEM_NAME "Windows") +set(CMAKE_HOST_SYSTEM_VERSION "10.0.26100") +set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") + +include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/toolchain-esp32.cmake") + +set(CMAKE_SYSTEM "Generic") +set(CMAKE_SYSTEM_NAME "Generic") +set(CMAKE_SYSTEM_VERSION "") +set(CMAKE_SYSTEM_PROCESSOR "") + +set(CMAKE_CROSSCOMPILING "TRUE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/build/bootloader/CMakeFiles/4.0.3/CompilerIdC/CMakeCCompilerId.c b/build/bootloader/CMakeFiles/4.0.3/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000..a842bb6 --- /dev/null +++ b/build/bootloader/CMakeFiles/4.0.3/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,905 @@ +#ifdef __cplusplus +# error "A C++ compiler has been selected for C." +#endif + +#if defined(__18CXX) +# define ID_VOID_MAIN +#endif +#if defined(__CLASSIC_C__) +/* cv-qualifiers did not exist in K&R C */ +# define const +# define volatile +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_C) +# define COMPILER_ID "SunPro" +# if __SUNPRO_C >= 0x5100 + /* __SUNPRO_C = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# endif + +#elif defined(__HP_cc) +# define COMPILER_ID "HP" + /* __HP_cc = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) + +#elif defined(__DECC) +# define COMPILER_ID "Compaq" + /* __DECC_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) + +#elif defined(__IBMC__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__open_xl__) && defined(__clang__) +# define COMPILER_ID "IBMClang" +# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) +# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) +# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 +# define COMPILER_ID "XL" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(__clang__) && defined(__cray__) +# define COMPILER_ID "CrayClang" +# define COMPILER_VERSION_MAJOR DEC(__cray_major__) +# define COMPILER_VERSION_MINOR DEC(__cray_minor__) +# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TASKING__) +# define COMPILER_ID "Tasking" + # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) + # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) +# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) + +#elif defined(__ORANGEC__) +# define COMPILER_ID "OrangeC" +# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) + +#elif defined(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__BCC__) +# define COMPILER_ID "Bruce" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) && defined(__ti__) +# define COMPILER_ID "TIClang" + # define COMPILER_VERSION_MAJOR DEC(__ti_major__) + # define COMPILER_VERSION_MINOR DEC(__ti_minor__) + # define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__) +# define COMPILER_VERSION_INTERNAL DEC(__ti_version__) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) +# define COMPILER_ID "LCC" +# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) +# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) +# if defined(__LCC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) +# endif +# if defined(__GNUC__) && defined(__GNUC_MINOR__) +# define SIMULATE_ID "GNU" +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif +# endif + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(_ADI_COMPILER) +# define COMPILER_ID "ADSP" +#if defined(__VERSIONNUM__) + /* __VERSIONNUM__ = 0xVVRRPPTT */ +# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) +# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + +#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) +# define COMPILER_ID "SDCC" +# if defined(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) +# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) +# else + /* SDCC = VRP */ +# define COMPILER_VERSION_MAJOR DEC(SDCC/100) +# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) +# define COMPILER_VERSION_PATCH DEC(SDCC % 10) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +# elif defined(_ADI_COMPILER) +# define PLATFORM_ID "ADSP" + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__clang__) && defined(__ti__) +# if defined(__ARM_ARCH) +# define ARCHITECTURE_ID "ARM" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +# elif defined(__ADSPSHARC__) +# define ARCHITECTURE_ID "SHARC" + +# elif defined(__ADSPBLACKFIN__) +# define ARCHITECTURE_ID "Blackfin" + +#elif defined(__TASKING__) + +# if defined(__CTC__) || defined(__CPTC__) +# define ARCHITECTURE_ID "TriCore" + +# elif defined(__CMCS__) +# define ARCHITECTURE_ID "MCS" + +# elif defined(__CARM__) || defined(__CPARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__CARC__) +# define ARCHITECTURE_ID "ARC" + +# elif defined(__C51__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__CPCP__) +# define ARCHITECTURE_ID "PCP" + +# else +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#define C_STD_99 199901L +#define C_STD_11 201112L +#define C_STD_17 201710L +#define C_STD_23 202311L + +#ifdef __STDC_VERSION__ +# define C_STD __STDC_VERSION__ +#endif + +#if !defined(__STDC__) && !defined(__clang__) +# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) +# define C_VERSION "90" +# else +# define C_VERSION +# endif +#elif C_STD > C_STD_17 +# define C_VERSION "23" +#elif C_STD > C_STD_11 +# define C_VERSION "17" +#elif C_STD > C_STD_99 +# define C_VERSION "11" +#elif C_STD >= C_STD_99 +# define C_VERSION "99" +#else +# define C_VERSION "90" +#endif +const char* info_language_standard_default = + "INFO" ":" "standard_default[" C_VERSION "]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +#ifdef ID_VOID_MAIN +void main() {} +#else +# if defined(__CLASSIC_C__) +int main(argc, argv) int argc; char *argv[]; +# else +int main(int argc, char* argv[]) +# endif +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#if defined(COMPILER_VERSION_INTERNAL) || defined(COMPILER_VERSION_INTERNAL_STR) + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} +#endif diff --git a/build/bootloader/CMakeFiles/4.0.3/CompilerIdC/a.out b/build/bootloader/CMakeFiles/4.0.3/CompilerIdC/a.out new file mode 100644 index 0000000..ee1b58d Binary files /dev/null and b/build/bootloader/CMakeFiles/4.0.3/CompilerIdC/a.out differ diff --git a/build/bootloader/CMakeFiles/4.0.3/CompilerIdCXX/CMakeCXXCompilerId.cpp b/build/bootloader/CMakeFiles/4.0.3/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..94d4310 --- /dev/null +++ b/build/bootloader/CMakeFiles/4.0.3/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,920 @@ +/* This source file must have a .cpp extension so that all C++ compilers + recognize the extension without flags. Borland does not know .cxx for + example. */ +#ifndef __cplusplus +# error "A C compiler has been selected for C++." +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + /* __DECCXX_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) + +#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__open_xl__) && defined(__clang__) +# define COMPILER_ID "IBMClang" +# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) +# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) +# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 +# define COMPILER_ID "XL" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(__clang__) && defined(__cray__) +# define COMPILER_ID "CrayClang" +# define COMPILER_VERSION_MAJOR DEC(__cray_major__) +# define COMPILER_VERSION_MINOR DEC(__cray_minor__) +# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TASKING__) +# define COMPILER_ID "Tasking" + # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) + # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) +# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) + +#elif defined(__ORANGEC__) +# define COMPILER_ID "OrangeC" +# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) && defined(__ti__) +# define COMPILER_ID "TIClang" + # define COMPILER_VERSION_MAJOR DEC(__ti_major__) + # define COMPILER_VERSION_MINOR DEC(__ti_minor__) + # define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__) +# define COMPILER_VERSION_INTERNAL DEC(__ti_version__) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) +# define COMPILER_ID "LCC" +# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) +# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) +# if defined(__LCC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) +# endif +# if defined(__GNUC__) && defined(__GNUC_MINOR__) +# define SIMULATE_ID "GNU" +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif +# endif + +#elif defined(__GNUC__) || defined(__GNUG__) +# define COMPILER_ID "GNU" +# if defined(__GNUC__) +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# else +# define COMPILER_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(_ADI_COMPILER) +# define COMPILER_ID "ADSP" +#if defined(__VERSIONNUM__) + /* __VERSIONNUM__ = 0xVVRRPPTT */ +# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) +# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +# elif defined(_ADI_COMPILER) +# define PLATFORM_ID "ADSP" + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__clang__) && defined(__ti__) +# if defined(__ARM_ARCH) +# define ARCHITECTURE_ID "ARM" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +# elif defined(__ADSPSHARC__) +# define ARCHITECTURE_ID "SHARC" + +# elif defined(__ADSPBLACKFIN__) +# define ARCHITECTURE_ID "Blackfin" + +#elif defined(__TASKING__) + +# if defined(__CTC__) || defined(__CPTC__) +# define ARCHITECTURE_ID "TriCore" + +# elif defined(__CMCS__) +# define ARCHITECTURE_ID "MCS" + +# elif defined(__CARM__) || defined(__CPARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__CARC__) +# define ARCHITECTURE_ID "ARC" + +# elif defined(__C51__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__CPCP__) +# define ARCHITECTURE_ID "PCP" + +# else +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#define CXX_STD_98 199711L +#define CXX_STD_11 201103L +#define CXX_STD_14 201402L +#define CXX_STD_17 201703L +#define CXX_STD_20 202002L +#define CXX_STD_23 202302L + +#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) +# if _MSVC_LANG > CXX_STD_17 +# define CXX_STD _MSVC_LANG +# elif _MSVC_LANG == CXX_STD_17 && defined(__cpp_aggregate_paren_init) +# define CXX_STD CXX_STD_20 +# elif _MSVC_LANG > CXX_STD_14 && __cplusplus > CXX_STD_17 +# define CXX_STD CXX_STD_20 +# elif _MSVC_LANG > CXX_STD_14 +# define CXX_STD CXX_STD_17 +# elif defined(__INTEL_CXX11_MODE__) && defined(__cpp_aggregate_nsdmi) +# define CXX_STD CXX_STD_14 +# elif defined(__INTEL_CXX11_MODE__) +# define CXX_STD CXX_STD_11 +# else +# define CXX_STD CXX_STD_98 +# endif +#elif defined(_MSC_VER) && defined(_MSVC_LANG) +# if _MSVC_LANG > __cplusplus +# define CXX_STD _MSVC_LANG +# else +# define CXX_STD __cplusplus +# endif +#elif defined(__NVCOMPILER) +# if __cplusplus == CXX_STD_17 && defined(__cpp_aggregate_paren_init) +# define CXX_STD CXX_STD_20 +# else +# define CXX_STD __cplusplus +# endif +#elif defined(__INTEL_COMPILER) || defined(__PGI) +# if __cplusplus == CXX_STD_11 && defined(__cpp_namespace_attributes) +# define CXX_STD CXX_STD_17 +# elif __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi) +# define CXX_STD CXX_STD_14 +# else +# define CXX_STD __cplusplus +# endif +#elif (defined(__IBMCPP__) || defined(__ibmxl__)) && defined(__linux__) +# if __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi) +# define CXX_STD CXX_STD_14 +# else +# define CXX_STD __cplusplus +# endif +#elif __cplusplus == 1 && defined(__GXX_EXPERIMENTAL_CXX0X__) +# define CXX_STD CXX_STD_11 +#else +# define CXX_STD __cplusplus +#endif + +const char* info_language_standard_default = "INFO" ":" "standard_default[" +#if CXX_STD > CXX_STD_23 + "26" +#elif CXX_STD > CXX_STD_20 + "23" +#elif CXX_STD > CXX_STD_17 + "20" +#elif CXX_STD > CXX_STD_14 + "17" +#elif CXX_STD > CXX_STD_11 + "14" +#elif CXX_STD >= CXX_STD_11 + "11" +#else + "98" +#endif +"]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#if defined(COMPILER_VERSION_INTERNAL) || defined(COMPILER_VERSION_INTERNAL_STR) + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} diff --git a/build/bootloader/CMakeFiles/4.0.3/CompilerIdCXX/a.out b/build/bootloader/CMakeFiles/4.0.3/CompilerIdCXX/a.out new file mode 100644 index 0000000..9361588 Binary files /dev/null and b/build/bootloader/CMakeFiles/4.0.3/CompilerIdCXX/a.out differ diff --git a/build/bootloader/CMakeFiles/CMakeConfigureLog.yaml b/build/bootloader/CMakeFiles/CMakeConfigureLog.yaml new file mode 100644 index 0000000..0bc3114 --- /dev/null +++ b/build/bootloader/CMakeFiles/CMakeConfigureLog.yaml @@ -0,0 +1,1618 @@ + +--- +events: + - + kind: "message-v1" + backtrace: + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineSystem.cmake:200 (message)" + - "C:/esp/v6.0/esp-idf/tools/cmake/project.cmake:591 (__project)" + - "CMakeLists.txt:71 (project)" + message: | + The target system is: Generic - - + The host system is: Windows - 10.0.26100 - AMD64 + - + kind: "message-v1" + backtrace: + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)" + - "C:/esp/v6.0/esp-idf/tools/cmake/project.cmake:591 (__project)" + - "CMakeLists.txt:71 (project)" + message: | + Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. + Compiler: C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc.exe + Build flags: @C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags + Id flags: + + The output was: + 0 + + + Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" + + The C compiler identification is GNU, found in: + C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/4.0.3/CompilerIdC/a.out + + - + kind: "message-v1" + backtrace: + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" + - "C:/esp/v6.0/esp-idf/tools/cmake/project.cmake:591 (__project)" + - "CMakeLists.txt:71 (project)" + message: | + Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. + Compiler: C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-g++.exe + Build flags: @C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cxxflags + Id flags: + + The output was: + 0 + + + Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" + + The CXX compiler identification is GNU, found in: + C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/4.0.3/CompilerIdCXX/a.out + + - + kind: "message-v1" + backtrace: + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerId.cmake:1271 (message)" + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineASMCompiler.cmake:139 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)" + - "C:/esp/v6.0/esp-idf/tools/cmake/project.cmake:591 (__project)" + - "CMakeLists.txt:71 (project)" + message: | + Checking whether the ASM compiler is GNU using "--version" matched "(GNU assembler)|(GCC)|(Free Software Foundation)": + xtensa-esp-elf-gcc.exe (crosstool-NG esp-15.2.0_20251204) 15.2.0 + Copyright (C) 2025 Free Software Foundation, Inc. + This is free software; see the source for copying conditions. There is NO + warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + + - + kind: "try_compile-v1" + backtrace: + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:83 (try_compile)" + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "C:/esp/v6.0/esp-idf/tools/cmake/project.cmake:591 (__project)" + - "CMakeLists.txt:71 (project)" + checks: + - "Detecting C compiler ABI info" + directories: + source: "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-qagbl5" + binary: "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-qagbl5" + cmakeVariables: + CMAKE_C_FLAGS: "@\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\"" + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "@\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/ldflags\"" + CMAKE_MODULE_PATH: "C:/esp/v6.0/esp-idf/tools/cmake;C:/esp/v6.0/esp-idf/tools/cmake/third_party" + buildResult: + variable: "CMAKE_C_ABI_COMPILED" + cached: true + stdout: | + Change Dir: 'C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-qagbl5' + + Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_dde23 + [1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -v -o CMakeFiles/cmTC_dde23.dir/CMakeCCompilerABI.c.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c + Using built-in specs. + COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe + Target: xtensa-esp-elf + Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_dde23.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_dde23.dir/' + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_dde23.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32.so -version -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccYywNtj.s + GNU C23 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf) + compiled by GNU C version 6.3.0 20170516, GMP version 6.3.0, MPFR version 4.2.1, MPC version 1.3.1, isl version isl-0.26-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include" + ignoring nonexistent directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/../../../../include" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/include" + #include "..." search starts here: + #include <...> search starts here: + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include + End of search list. + Compiler executable checksum: e6b21aec963fbe25dfad096ddce866c1 + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_dde23.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_dde23.dir/' + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_dde23.dir/CMakeCCompilerABI.c.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccYywNtj.s + COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ + LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/\x0d + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_dde23.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_dde23.dir/CMakeCCompilerABI.c.'\x0d + [2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/ldflags" -v CMakeFiles/cmTC_dde23.dir/CMakeCCompilerABI.c.obj -o cmTC_dde23 && cd ." + Using built-in specs. + COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe + COLLECT_LTO_WRAPPER=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe + Target: xtensa-esp-elf + Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) + COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ + LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/ + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_dde23' '-dumpdir' 'cmTC_dde23.' + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cc0TZUYB.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 --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so -o cmTC_dde23 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cciA2Sy3 -lgcc -lc -lnosys -lc -lgcc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o\x0d + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_dde23' '-dumpdir' 'cmTC_dde23.'\x0d + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:191 (message)" + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "C:/esp/v6.0/esp-idf/tools/cmake/project.cmake:591 (__project)" + - "CMakeLists.txt:71 (project)" + message: | + Parsed C implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include] + end of search list found + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include] + implicit include dirs: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include-fixed;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include] + + + - + kind: "message-v1" + backtrace: + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:227 (message)" + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "C:/esp/v6.0/esp-idf/tools/cmake/project.cmake:591 (__project)" + - "CMakeLists.txt:71 (project)" + message: | + Parsed C implicit link information: + link line regex: [^( *|.*[/\\])(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)))("|,| |$)] + ignore line: [Change Dir: 'C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-qagbl5'] + ignore line: [] + ignore line: [Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_dde23] + ignore line: [[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -v -o CMakeFiles/cmTC_dde23.dir/CMakeCCompilerABI.c.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe] + ignore line: [Target: xtensa-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) ] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_dde23.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_dde23.dir/'] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_dde23.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32.so -version -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccYywNtj.s] + ignore line: [GNU C23 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf)] + ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.3.0 MPFR version 4.2.1 MPC version 1.3.1 isl version isl-0.26-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include"] + ignore line: [ignoring nonexistent directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/../../../../include"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include] + ignore line: [End of search list.] + ignore line: [Compiler executable checksum: e6b21aec963fbe25dfad096ddce866c1] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_dde23.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_dde23.dir/'] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_dde23.dir/CMakeCCompilerABI.c.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccYywNtj.s] + ignore line: [COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/\x0d] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_dde23.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_dde23.dir/CMakeCCompilerABI.c.'\x0d] + ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/ldflags" -v CMakeFiles/cmTC_dde23.dir/CMakeCCompilerABI.c.obj -o cmTC_dde23 && cd ."] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe] + ignore line: [COLLECT_LTO_WRAPPER=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe] + ignore line: [Target: xtensa-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) ] + ignore line: [COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_dde23' '-dumpdir' 'cmTC_dde23.'] + link line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cc0TZUYB.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 --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so -o cmTC_dde23 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cciA2Sy3 -lgcc -lc -lnosys -lc -lgcc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o\x0d] + arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe] ==> ignore + arg [-plugin] ==> ignore + arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll] ==> ignore + arg [-plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe] ==> ignore + arg [-plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cc0TZUYB.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lnosys] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [--sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf] ==> ignore + arg [--dynconfig=xtensa_esp32.so] ==> ignore + arg [-o] ==> ignore + arg [cmTC_dde23] ==> ignore + arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o] ==> obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o] + arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o] ==> obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o] + arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o] ==> obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] + arg [@C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cciA2Sy3] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lnosys] ==> lib [nosys] + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o] ==> obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o] + arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o] ==> obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_dde23' '-dumpdir' 'cmTC_dde23.'\x0d] + ignore line: [] + ignore line: [] + collapse obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32/crt0.o] + collapse obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o] + collapse obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o] + collapse obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o] + collapse obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/usr/lib] + implicit libs: [gcc;c;nosys;c;gcc] + implicit objs: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32/crt0.o;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o] + implicit dirs: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/usr/lib] + implicit fwks: [] + + + - + kind: "try_compile-v1" + backtrace: + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:83 (try_compile)" + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "C:/esp/v6.0/esp-idf/tools/cmake/project.cmake:591 (__project)" + - "CMakeLists.txt:71 (project)" + checks: + - "Detecting CXX compiler ABI info" + directories: + source: "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-s9h4ne" + binary: "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-s9h4ne" + cmakeVariables: + CMAKE_CXX_FLAGS: "@\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cxxflags\"" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_CXX_SCAN_FOR_MODULES: "OFF" + CMAKE_EXE_LINKER_FLAGS: "@\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/ldflags\"" + CMAKE_MODULE_PATH: "C:/esp/v6.0/esp-idf/tools/cmake;C:/esp/v6.0/esp-idf/tools/cmake/third_party" + buildResult: + variable: "CMAKE_CXX_ABI_COMPILED" + cached: true + stdout: | + Change Dir: 'C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-s9h4ne' + + Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_95f61 + [1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cxxflags" -v -o CMakeFiles/cmTC_95f61.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp + Using built-in specs. + COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe + Target: xtensa-esp-elf + Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_95f61.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_95f61.dir/' + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1plus.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_95f61.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32.so -version -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccy1swl6.s + GNU C++17 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf) + compiled by GNU C version 6.3.0 20170516, GMP version 6.3.0, MPFR version 4.2.1, MPC version 1.3.1, isl version isl-0.26-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/backward" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include" + ignoring nonexistent directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/../../../../include" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/include" + #include "..." search starts here: + #include <...> search starts here: + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0 + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32 + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/backward + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include + End of search list. + Compiler executable checksum: 4a5fbbbea400d48f02e70eeffcc23385 + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_95f61.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_95f61.dir/' + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_95f61.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccy1swl6.s + COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ + LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/ + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_95f61.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_95f61.dir/CMakeCXXCompilerABI.cpp.'\x0d + [2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cxxflags" @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/ldflags" -v CMakeFiles/cmTC_95f61.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_95f61 && cd ." + Using built-in specs. + COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe + COLLECT_LTO_WRAPPER=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe + Target: xtensa-esp-elf + Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) + COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ + LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/ + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_95f61' '-dumpdir' 'cmTC_95f61.' + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cc6awmQe.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 --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so -o cmTC_95f61 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cc2bSywj -lgcc -lc -lnosys -lc -lgcc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o\x0d + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_95f61' '-dumpdir' 'cmTC_95f61.'\x0d + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:191 (message)" + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "C:/esp/v6.0/esp-idf/tools/cmake/project.cmake:591 (__project)" + - "CMakeLists.txt:71 (project)" + message: | + Parsed CXX implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/backward] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include] + end of search list found + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/backward] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0/backward] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include] + implicit include dirs: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0/backward;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include-fixed;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include] + + + - + kind: "message-v1" + backtrace: + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:227 (message)" + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "C:/esp/v6.0/esp-idf/tools/cmake/project.cmake:591 (__project)" + - "CMakeLists.txt:71 (project)" + message: | + Parsed CXX implicit link information: + link line regex: [^( *|.*[/\\])(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)))("|,| |$)] + ignore line: [Change Dir: 'C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-s9h4ne'] + ignore line: [] + ignore line: [Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_95f61] + ignore line: [[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cxxflags" -v -o CMakeFiles/cmTC_95f61.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe] + ignore line: [Target: xtensa-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) ] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_95f61.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_95f61.dir/'] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1plus.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_95f61.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32.so -version -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccy1swl6.s] + ignore line: [GNU C++17 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf)] + ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.3.0 MPFR version 4.2.1 MPC version 1.3.1 isl version isl-0.26-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/backward"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include"] + ignore line: [ignoring nonexistent directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/../../../../include"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/backward] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include] + ignore line: [End of search list.] + ignore line: [Compiler executable checksum: 4a5fbbbea400d48f02e70eeffcc23385] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_95f61.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_95f61.dir/'] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_95f61.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccy1swl6.s] + ignore line: [COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'CMakeFiles/cmTC_95f61.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_95f61.dir/CMakeCXXCompilerABI.cpp.'\x0d] + ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cxxflags" @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/ldflags" -v CMakeFiles/cmTC_95f61.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_95f61 && cd ."] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe] + ignore line: [COLLECT_LTO_WRAPPER=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe] + ignore line: [Target: xtensa-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) ] + ignore line: [COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_95f61' '-dumpdir' 'cmTC_95f61.'] + link line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cc6awmQe.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 --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so -o cmTC_95f61 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cc2bSywj -lgcc -lc -lnosys -lc -lgcc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o\x0d] + arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe] ==> ignore + arg [-plugin] ==> ignore + arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll] ==> ignore + arg [-plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe] ==> ignore + arg [-plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cc6awmQe.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lnosys] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [--sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf] ==> ignore + arg [--dynconfig=xtensa_esp32.so] ==> ignore + arg [-o] ==> ignore + arg [cmTC_95f61] ==> ignore + arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o] ==> obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o] + arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o] ==> obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o] + arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o] ==> obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] + arg [@C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cc2bSywj] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lnosys] ==> lib [nosys] + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o] ==> obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o] + arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o] ==> obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-v' '-o' 'cmTC_95f61' '-dumpdir' 'cmTC_95f61.'\x0d] + ignore line: [] + ignore line: [] + collapse obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/crt0.o] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32/crt0.o] + collapse obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o] + collapse obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o] + collapse obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o] + collapse obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/usr/lib] + implicit libs: [gcc;c;nosys;c;gcc] + implicit objs: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32/crt0.o;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32/crti.o;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtbegin.o;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtend.o;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32/crtn.o] + implicit dirs: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/usr/lib] + implicit fwks: [] + + + - + kind: "try_compile-v1" + backtrace: + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:83 (try_compile)" + - "C:/esp/v6.0/esp-idf/tools/cmake/toolchain_flags.cmake:179 (cmake_determine_compiler_abi)" + - "C:/esp/v6.0/esp-idf/components/esp_libc/project_include.cmake:20 (idf_toolchain_rerun_abi_detection)" + - "C:/esp/v6.0/esp-idf/tools/cmake/build.cmake:517 (include)" + - "C:/esp/v6.0/esp-idf/tools/cmake/build.cmake:791 (__build_process_project_includes)" + - "C:/esp/v6.0/esp-idf/tools/cmake/project.cmake:742 (idf_build_process)" + - "CMakeLists.txt:71 (project)" + checks: + - "Detecting C compiler ABI info" + directories: + source: "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-dn1ust" + binary: "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-dn1ust" + cmakeVariables: + CMAKE_C_FLAGS: "@\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\"" + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "@\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/ldflags\"" + CMAKE_MODULE_PATH: "C:/esp/v6.0/esp-idf/tools/cmake;C:/esp/v6.0/esp-idf/tools/cmake/third_party" + buildResult: + variable: "CMAKE_C_ABI_COMPILED" + cached: true + stdout: | + Change Dir: 'C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-dn1ust' + + Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_77a38 + [1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -v -o CMakeFiles/cmTC_77a38.dir/CMakeCCompilerABI.c.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c + Using built-in specs. + Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs + rename spec link to picolibc_link + rename spec link_libgcc to picolibc_link_libgcc + rename spec cpp to picolibc_cpp + rename spec cc1 to picolibc_cc1 + rename spec cc1plus to picolibc_cc1plus + COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe + Target: xtensa-esp-elf + Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_77a38.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_77a38.dir/' + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32 C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_77a38.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32.so -version -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccF2BGUd.s + GNU C23 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf) + compiled by GNU C version 6.3.0 20170516, GMP version 6.3.0, MPFR version 4.2.1, MPC version 1.3.1, isl version isl-0.26-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include" + ignoring nonexistent directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/../../../../include" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/include" + #include "..." search starts here: + #include <...> search starts here: + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32 + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include + End of search list. + Compiler executable checksum: e6b21aec963fbe25dfad096ddce866c1 + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_77a38.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_77a38.dir/' + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_77a38.dir/CMakeCCompilerABI.c.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccF2BGUd.s + COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ + LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/\x0d + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_77a38.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_77a38.dir/CMakeCCompilerABI.c.'\x0d + [2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/ldflags" -v CMakeFiles/cmTC_77a38.dir/CMakeCCompilerABI.c.obj -o cmTC_77a38 && cd ." + Using built-in specs. + Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs + rename spec link to picolibc_link + rename spec link_libgcc to picolibc_link_libgcc + rename spec cpp to picolibc_cpp + rename spec cc1 to picolibc_cc1 + rename spec cc1plus to picolibc_cc1plus + COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe + COLLECT_LTO_WRAPPER=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe + Target: xtensa-esp-elf + Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) + COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ + LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/ + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'cmTC_77a38' '-dumpdir' 'cmTC_77a38.' + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccPRoXkn.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_77a38 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/crt0.o -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccuzDKvA -lgcc --start-group -lgcc -lc --end-group -lgcc + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'cmTC_77a38' '-dumpdir' 'cmTC_77a38.'\x0d + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:191 (message)" + - "C:/esp/v6.0/esp-idf/tools/cmake/toolchain_flags.cmake:179 (cmake_determine_compiler_abi)" + - "C:/esp/v6.0/esp-idf/components/esp_libc/project_include.cmake:20 (idf_toolchain_rerun_abi_detection)" + - "C:/esp/v6.0/esp-idf/tools/cmake/build.cmake:517 (include)" + - "C:/esp/v6.0/esp-idf/tools/cmake/build.cmake:791 (__build_process_project_includes)" + - "C:/esp/v6.0/esp-idf/tools/cmake/project.cmake:742 (idf_build_process)" + - "CMakeLists.txt:71 (project)" + message: | + Parsed C implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include] + end of search list found + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/include] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include] + implicit include dirs: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/include;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include-fixed;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include] + + + - + kind: "message-v1" + backtrace: + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:227 (message)" + - "C:/esp/v6.0/esp-idf/tools/cmake/toolchain_flags.cmake:179 (cmake_determine_compiler_abi)" + - "C:/esp/v6.0/esp-idf/components/esp_libc/project_include.cmake:20 (idf_toolchain_rerun_abi_detection)" + - "C:/esp/v6.0/esp-idf/tools/cmake/build.cmake:517 (include)" + - "C:/esp/v6.0/esp-idf/tools/cmake/build.cmake:791 (__build_process_project_includes)" + - "C:/esp/v6.0/esp-idf/tools/cmake/project.cmake:742 (idf_build_process)" + - "CMakeLists.txt:71 (project)" + message: | + Parsed C implicit link information: + link line regex: [^( *|.*[/\\])(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)))("|,| |$)] + ignore line: [Change Dir: 'C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-dn1ust'] + ignore line: [] + ignore line: [Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_77a38] + ignore line: [[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -v -o CMakeFiles/cmTC_77a38.dir/CMakeCCompilerABI.c.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c] + ignore line: [Using built-in specs.] + ignore line: [Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs] + ignore line: [rename spec link to picolibc_link] + ignore line: [rename spec link_libgcc to picolibc_link_libgcc] + ignore line: [rename spec cpp to picolibc_cpp] + ignore line: [rename spec cc1 to picolibc_cc1] + ignore line: [rename spec cc1plus to picolibc_cc1plus] + ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe] + ignore line: [Target: xtensa-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) ] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_77a38.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_77a38.dir/'] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32 C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_77a38.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32.so -version -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccF2BGUd.s] + ignore line: [GNU C23 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf)] + ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.3.0 MPFR version 4.2.1 MPC version 1.3.1 isl version isl-0.26-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include"] + ignore line: [ignoring nonexistent directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/../../../../include"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include] + ignore line: [End of search list.] + ignore line: [Compiler executable checksum: e6b21aec963fbe25dfad096ddce866c1] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_77a38.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_77a38.dir/'] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_77a38.dir/CMakeCCompilerABI.c.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccF2BGUd.s] + ignore line: [COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/\x0d] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_77a38.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_77a38.dir/CMakeCCompilerABI.c.'\x0d] + ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/ldflags" -v CMakeFiles/cmTC_77a38.dir/CMakeCCompilerABI.c.obj -o cmTC_77a38 && cd ."] + ignore line: [Using built-in specs.] + ignore line: [Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs] + ignore line: [rename spec link to picolibc_link] + ignore line: [rename spec link_libgcc to picolibc_link_libgcc] + ignore line: [rename spec cpp to picolibc_cpp] + ignore line: [rename spec cc1 to picolibc_cc1] + ignore line: [rename spec cc1plus to picolibc_cc1plus] + ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe] + ignore line: [COLLECT_LTO_WRAPPER=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe] + ignore line: [Target: xtensa-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) ] + ignore line: [COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'cmTC_77a38' '-dumpdir' 'cmTC_77a38.'] + link line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccPRoXkn.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_77a38 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/crt0.o -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccuzDKvA -lgcc --start-group -lgcc -lc --end-group -lgcc] + arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe] ==> ignore + arg [-plugin] ==> ignore + arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll] ==> ignore + arg [-plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe] ==> ignore + arg [-plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccPRoXkn.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib] + arg [-Tpicolibc.ld] ==> ignore + arg [--sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf] ==> ignore + arg [--dynconfig=xtensa_esp32.so] ==> ignore + arg [--gc-sections] ==> ignore + arg [-o] ==> ignore + arg [cmTC_77a38] ==> ignore + arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/crt0.o] ==> obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/crt0.o] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] + arg [@C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccuzDKvA] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [--start-group] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [--end-group] ==> ignore + arg [-lgcc] ==> lib [gcc] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'cmTC_77a38' '-dumpdir' 'cmTC_77a38.'\x0d] + ignore line: [] + ignore line: [] + collapse obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/crt0.o] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/lib/esp32/crt0.o] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/lib/esp32] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/lib] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/lib/gcc/xtensa-esp-elf/15.2.0] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/usr/lib] + implicit libs: [gcc;gcc;c;gcc] + implicit objs: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/lib/esp32/crt0.o] + implicit dirs: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/lib/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/lib;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/lib/gcc/xtensa-esp-elf/15.2.0;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/usr/lib] + implicit fwks: [] + + + - + kind: "try_compile-v1" + backtrace: + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:83 (try_compile)" + - "C:/esp/v6.0/esp-idf/tools/cmake/toolchain_flags.cmake:179 (cmake_determine_compiler_abi)" + - "C:/esp/v6.0/esp-idf/components/esp_libc/project_include.cmake:20 (idf_toolchain_rerun_abi_detection)" + - "C:/esp/v6.0/esp-idf/tools/cmake/build.cmake:517 (include)" + - "C:/esp/v6.0/esp-idf/tools/cmake/build.cmake:791 (__build_process_project_includes)" + - "C:/esp/v6.0/esp-idf/tools/cmake/project.cmake:742 (idf_build_process)" + - "CMakeLists.txt:71 (project)" + checks: + - "Detecting CXX compiler ABI info" + directories: + source: "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-iayjgy" + binary: "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-iayjgy" + cmakeVariables: + CMAKE_CXX_FLAGS: "@\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cxxflags\"" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_CXX_SCAN_FOR_MODULES: "OFF" + CMAKE_EXE_LINKER_FLAGS: "@\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/ldflags\"" + CMAKE_MODULE_PATH: "C:/esp/v6.0/esp-idf/tools/cmake;C:/esp/v6.0/esp-idf/tools/cmake/third_party" + buildResult: + variable: "CMAKE_CXX_ABI_COMPILED" + cached: true + stdout: | + Change Dir: 'C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-iayjgy' + + Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_b15d0 + [1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cxxflags" -v -o CMakeFiles/cmTC_b15d0.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp + Using built-in specs. + Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs + rename spec link to picolibc_link + rename spec link_libgcc to picolibc_link_libgcc + rename spec cpp to picolibc_cpp + rename spec cc1 to picolibc_cc1 + rename spec cc1plus to picolibc_cc1plus + COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe + Target: xtensa-esp-elf + Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_b15d0.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_b15d0.dir/' + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1plus.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_b15d0.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32.so -version -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32 -ftls-model=local-exec -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccHxuFuI.s + GNU C++17 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf) + compiled by GNU C version 6.3.0 20170516, GMP version 6.3.0, MPFR version 4.2.1, MPC version 1.3.1, isl version isl-0.26-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/backward" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include" + ignoring nonexistent directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/../../../../include" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/include" + #include "..." search starts here: + #include <...> search starts here: + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32 + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0 + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32 + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/backward + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include + End of search list. + Compiler executable checksum: 4a5fbbbea400d48f02e70eeffcc23385 + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_b15d0.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_b15d0.dir/' + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_b15d0.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccHxuFuI.s + COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ + LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/ + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_b15d0.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_b15d0.dir/CMakeCXXCompilerABI.cpp.'\x0d + [2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cxxflags" @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/ldflags" -v CMakeFiles/cmTC_b15d0.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_b15d0 && cd ." + Using built-in specs. + Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs + rename spec link to picolibc_link + rename spec link_libgcc to picolibc_link_libgcc + rename spec cpp to picolibc_cpp + rename spec cc1 to picolibc_cc1 + rename spec cc1plus to picolibc_cc1plus + COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe + COLLECT_LTO_WRAPPER=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe + Target: xtensa-esp-elf + Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) + COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ + LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/ + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'cmTC_b15d0' '-dumpdir' 'cmTC_b15d0.' + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cc9zlEzQ.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_b15d0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/crt0.o -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cc8Zw8Yw -lgcc --start-group -lgcc -lc --end-group -lgcc + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'cmTC_b15d0' '-dumpdir' 'cmTC_b15d0.'\x0d + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:191 (message)" + - "C:/esp/v6.0/esp-idf/tools/cmake/toolchain_flags.cmake:179 (cmake_determine_compiler_abi)" + - "C:/esp/v6.0/esp-idf/components/esp_libc/project_include.cmake:20 (idf_toolchain_rerun_abi_detection)" + - "C:/esp/v6.0/esp-idf/tools/cmake/build.cmake:517 (include)" + - "C:/esp/v6.0/esp-idf/tools/cmake/build.cmake:791 (__build_process_project_includes)" + - "C:/esp/v6.0/esp-idf/tools/cmake/project.cmake:742 (idf_build_process)" + - "CMakeLists.txt:71 (project)" + message: | + Parsed CXX implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/backward] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include] + end of search list found + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/include] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/backward] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0/backward] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include] + implicit include dirs: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/include;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0/backward;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include-fixed;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include] + + + - + kind: "message-v1" + backtrace: + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:227 (message)" + - "C:/esp/v6.0/esp-idf/tools/cmake/toolchain_flags.cmake:179 (cmake_determine_compiler_abi)" + - "C:/esp/v6.0/esp-idf/components/esp_libc/project_include.cmake:20 (idf_toolchain_rerun_abi_detection)" + - "C:/esp/v6.0/esp-idf/tools/cmake/build.cmake:517 (include)" + - "C:/esp/v6.0/esp-idf/tools/cmake/build.cmake:791 (__build_process_project_includes)" + - "C:/esp/v6.0/esp-idf/tools/cmake/project.cmake:742 (idf_build_process)" + - "CMakeLists.txt:71 (project)" + message: | + Parsed CXX implicit link information: + link line regex: [^( *|.*[/\\])(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)))("|,| |$)] + ignore line: [Change Dir: 'C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-iayjgy'] + ignore line: [] + ignore line: [Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_b15d0] + ignore line: [[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cxxflags" -v -o CMakeFiles/cmTC_b15d0.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Using built-in specs.] + ignore line: [Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs] + ignore line: [rename spec link to picolibc_link] + ignore line: [rename spec link_libgcc to picolibc_link_libgcc] + ignore line: [rename spec cpp to picolibc_cpp] + ignore line: [rename spec cc1 to picolibc_cc1] + ignore line: [rename spec cc1plus to picolibc_cc1plus] + ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe] + ignore line: [Target: xtensa-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) ] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_b15d0.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_b15d0.dir/'] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1plus.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_b15d0.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32.so -version -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32 -ftls-model=local-exec -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccHxuFuI.s] + ignore line: [GNU C++17 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf)] + ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.3.0 MPFR version 4.2.1 MPC version 1.3.1 isl version isl-0.26-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/backward"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include"] + ignore line: [ignoring nonexistent directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/../../../../include"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/backward] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include] + ignore line: [End of search list.] + ignore line: [Compiler executable checksum: 4a5fbbbea400d48f02e70eeffcc23385] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_b15d0.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_b15d0.dir/'] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_b15d0.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccHxuFuI.s] + ignore line: [COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'CMakeFiles/cmTC_b15d0.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_b15d0.dir/CMakeCXXCompilerABI.cpp.'\x0d] + ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cxxflags" @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/ldflags" -v CMakeFiles/cmTC_b15d0.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_b15d0 && cd ."] + ignore line: [Using built-in specs.] + ignore line: [Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs] + ignore line: [rename spec link to picolibc_link] + ignore line: [rename spec link_libgcc to picolibc_link_libgcc] + ignore line: [rename spec cpp to picolibc_cpp] + ignore line: [rename spec cc1 to picolibc_cc1] + ignore line: [rename spec cc1plus to picolibc_cc1plus] + ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe] + ignore line: [COLLECT_LTO_WRAPPER=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe] + ignore line: [Target: xtensa-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) ] + ignore line: [COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'cmTC_b15d0' '-dumpdir' 'cmTC_b15d0.'] + link line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cc9zlEzQ.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_b15d0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/crt0.o -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cc8Zw8Yw -lgcc --start-group -lgcc -lc --end-group -lgcc] + arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe] ==> ignore + arg [-plugin] ==> ignore + arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll] ==> ignore + arg [-plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe] ==> ignore + arg [-plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cc9zlEzQ.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib] + arg [-Tpicolibc.ld] ==> ignore + arg [--sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf] ==> ignore + arg [--dynconfig=xtensa_esp32.so] ==> ignore + arg [--gc-sections] ==> ignore + arg [-o] ==> ignore + arg [cmTC_b15d0] ==> ignore + arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/crt0.o] ==> obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/crt0.o] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] + arg [@C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cc8Zw8Yw] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [--start-group] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [--end-group] ==> ignore + arg [-lgcc] ==> lib [gcc] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-v' '-o' 'cmTC_b15d0' '-dumpdir' 'cmTC_b15d0.'\x0d] + ignore line: [] + ignore line: [] + collapse obj [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/crt0.o] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/lib/esp32/crt0.o] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/lib/esp32] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/lib] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/lib/gcc/xtensa-esp-elf/15.2.0] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/usr/lib] + implicit libs: [gcc;gcc;c;gcc] + implicit objs: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/lib/esp32/crt0.o] + implicit dirs: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/lib/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/lib;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/lib/gcc/xtensa-esp-elf/15.2.0;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/usr/lib] + implicit fwks: [] + + + - + kind: "try_compile-v1" + backtrace: + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:83 (try_compile)" + - "C:/esp/v6.0/esp-idf/tools/cmake/toolchain_flags.cmake:179 (cmake_determine_compiler_abi)" + - "C:/esp/v6.0/esp-idf/CMakeLists.txt:89 (idf_toolchain_rerun_abi_detection)" + checks: + - "Detecting C compiler ABI info" + directories: + source: "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-9i6fow" + binary: "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-9i6fow" + cmakeVariables: + CMAKE_C_FLAGS: "@\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\"" + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "@\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/ldflags\"" + CMAKE_MODULE_PATH: "C:/esp/v6.0/esp-idf/tools/cmake;C:/esp/v6.0/esp-idf/tools/cmake/third_party" + buildResult: + variable: "CMAKE_C_ABI_COMPILED" + cached: true + stdout: | + Change Dir: 'C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-9i6fow' + + Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_07fc3 + [1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -v -o CMakeFiles/cmTC_07fc3.dir/CMakeCCompilerABI.c.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c + Using built-in specs. + Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs + rename spec link to picolibc_link + rename spec link_libgcc to picolibc_link_libgcc + rename spec cpp to picolibc_cpp + rename spec cc1 to picolibc_cc1 + rename spec cc1plus to picolibc_cc1plus + COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe + Target: xtensa-esp-elf + Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-v' '-o' 'CMakeFiles/cmTC_07fc3.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_07fc3.dir/' + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32 C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_07fc3.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32.so -mlongcalls -Wno-frame-address -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cciYutBx.s + GNU C23 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf) + compiled by GNU C version 6.3.0 20170516, GMP version 6.3.0, MPFR version 4.2.1, MPC version 1.3.1, isl version isl-0.26-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include" + ignoring nonexistent directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/../../../../include" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/include" + #include "..." search starts here: + #include <...> search starts here: + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32 + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include + End of search list. + Compiler executable checksum: e6b21aec963fbe25dfad096ddce866c1 + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-v' '-o' 'CMakeFiles/cmTC_07fc3.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_07fc3.dir/' + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_07fc3.dir/CMakeCCompilerABI.c.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cciYutBx.s + COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ + LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/\x0d + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-v' '-o' 'CMakeFiles/cmTC_07fc3.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_07fc3.dir/CMakeCCompilerABI.c.'\x0d + [2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/ldflags" -v CMakeFiles/cmTC_07fc3.dir/CMakeCCompilerABI.c.obj -o cmTC_07fc3 && cd ." + Using built-in specs. + Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs + rename spec link to picolibc_link + rename spec link_libgcc to picolibc_link_libgcc + rename spec cpp to picolibc_cpp + rename spec cc1 to picolibc_cc1 + rename spec cc1plus to picolibc_cc1plus + COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe + COLLECT_LTO_WRAPPER=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe + Target: xtensa-esp-elf + Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) + COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ + LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/ + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_07fc3' '-dumpdir' 'cmTC_07fc3.' + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccCs9GNF.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_07fc3 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cc4K8drb -lgcc --start-group -lgcc -lc --end-group -lgcc\x0d + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start; defaulting to 10000000\x0d + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_07fc3' '-dumpdir' 'cmTC_07fc3.'\x0d + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:191 (message)" + - "C:/esp/v6.0/esp-idf/tools/cmake/toolchain_flags.cmake:179 (cmake_determine_compiler_abi)" + - "C:/esp/v6.0/esp-idf/CMakeLists.txt:89 (idf_toolchain_rerun_abi_detection)" + message: | + Parsed C implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include] + end of search list found + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/include] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include] + implicit include dirs: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/include;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include-fixed;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include] + + + - + kind: "message-v1" + backtrace: + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:227 (message)" + - "C:/esp/v6.0/esp-idf/tools/cmake/toolchain_flags.cmake:179 (cmake_determine_compiler_abi)" + - "C:/esp/v6.0/esp-idf/CMakeLists.txt:89 (idf_toolchain_rerun_abi_detection)" + message: | + Parsed C implicit link information: + link line regex: [^( *|.*[/\\])(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)))("|,| |$)] + ignore line: [Change Dir: 'C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-9i6fow'] + ignore line: [] + ignore line: [Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_07fc3] + ignore line: [[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -v -o CMakeFiles/cmTC_07fc3.dir/CMakeCCompilerABI.c.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c] + ignore line: [Using built-in specs.] + ignore line: [Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs] + ignore line: [rename spec link to picolibc_link] + ignore line: [rename spec link_libgcc to picolibc_link_libgcc] + ignore line: [rename spec cpp to picolibc_cpp] + ignore line: [rename spec cc1 to picolibc_cc1] + ignore line: [rename spec cc1plus to picolibc_cc1plus] + ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe] + ignore line: [Target: xtensa-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) ] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-v' '-o' 'CMakeFiles/cmTC_07fc3.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_07fc3.dir/'] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1.exe -quiet -v -imultilib esp32 -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32 C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_07fc3.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mdynconfig=xtensa_esp32.so -mlongcalls -Wno-frame-address -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cciYutBx.s] + ignore line: [GNU C23 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf)] + ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.3.0 MPFR version 4.2.1 MPC version 1.3.1 isl version isl-0.26-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include"] + ignore line: [ignoring nonexistent directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/../../../../include"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include] + ignore line: [End of search list.] + ignore line: [Compiler executable checksum: e6b21aec963fbe25dfad096ddce866c1] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-v' '-o' 'CMakeFiles/cmTC_07fc3.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_07fc3.dir/'] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_07fc3.dir/CMakeCCompilerABI.c.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cciYutBx.s] + ignore line: [COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/\x0d] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-v' '-o' 'CMakeFiles/cmTC_07fc3.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_07fc3.dir/CMakeCCompilerABI.c.'\x0d] + ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/ldflags" -v CMakeFiles/cmTC_07fc3.dir/CMakeCCompilerABI.c.obj -o cmTC_07fc3 && cd ."] + ignore line: [Using built-in specs.] + ignore line: [Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs] + ignore line: [rename spec link to picolibc_link] + ignore line: [rename spec link_libgcc to picolibc_link_libgcc] + ignore line: [rename spec cpp to picolibc_cpp] + ignore line: [rename spec cc1 to picolibc_cc1] + ignore line: [rename spec cc1plus to picolibc_cc1plus] + ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-gcc.exe] + ignore line: [COLLECT_LTO_WRAPPER=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe] + ignore line: [Target: xtensa-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) ] + ignore line: [COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_07fc3' '-dumpdir' 'cmTC_07fc3.'] + link line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccCs9GNF.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_07fc3 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cc4K8drb -lgcc --start-group -lgcc -lc --end-group -lgcc\x0d] + arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe] ==> ignore + arg [-plugin] ==> ignore + arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll] ==> ignore + arg [-plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe] ==> ignore + arg [-plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccCs9GNF.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib] + arg [-Tpicolibc.ld] ==> ignore + arg [--sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf] ==> ignore + arg [--dynconfig=xtensa_esp32.so] ==> ignore + arg [--gc-sections] ==> ignore + arg [-o] ==> ignore + arg [cmTC_07fc3] ==> ignore + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] + arg [@C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cc4K8drb] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [--start-group] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [--end-group] ==> ignore + arg [-lgcc] ==> lib [gcc] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start] + ignore line: [ defaulting to 10000000\x0d] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_07fc3' '-dumpdir' 'cmTC_07fc3.'\x0d] + ignore line: [] + ignore line: [] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/lib/esp32/no-rtti] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/lib] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/lib/gcc/xtensa-esp-elf/15.2.0] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32/no-rtti] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32/no-rtti] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/usr/lib] + implicit libs: [gcc;gcc;c;gcc] + implicit objs: [] + implicit dirs: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/lib/esp32/no-rtti;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/lib;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/lib/gcc/xtensa-esp-elf/15.2.0;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32/no-rtti;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/usr/lib] + implicit fwks: [] + + + - + kind: "try_compile-v1" + backtrace: + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:83 (try_compile)" + - "C:/esp/v6.0/esp-idf/tools/cmake/toolchain_flags.cmake:179 (cmake_determine_compiler_abi)" + - "C:/esp/v6.0/esp-idf/CMakeLists.txt:89 (idf_toolchain_rerun_abi_detection)" + checks: + - "Detecting CXX compiler ABI info" + directories: + source: "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-kq9uyq" + binary: "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-kq9uyq" + cmakeVariables: + CMAKE_CXX_FLAGS: "@\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cxxflags\"" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_CXX_SCAN_FOR_MODULES: "OFF" + CMAKE_EXE_LINKER_FLAGS: "@\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/ldflags\"" + CMAKE_MODULE_PATH: "C:/esp/v6.0/esp-idf/tools/cmake;C:/esp/v6.0/esp-idf/tools/cmake/third_party" + buildResult: + variable: "CMAKE_CXX_ABI_COMPILED" + cached: true + stdout: | + Change Dir: 'C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-kq9uyq' + + Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_63af4 + [1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cxxflags" -v -o CMakeFiles/cmTC_63af4.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp + Using built-in specs. + Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs + rename spec link to picolibc_link + rename spec link_libgcc to picolibc_link_libgcc + rename spec cpp to picolibc_cpp + rename spec cc1 to picolibc_cc1 + rename spec cc1plus to picolibc_cc1plus + COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe + Target: xtensa-esp-elf + Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-rtti' '-v' '-o' 'CMakeFiles/cmTC_63af4.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_63af4.dir/' + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1plus.exe -quiet -v -imultilib esp32/no-rtti -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_63af4.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32.so -mlongcalls -Wno-frame-address -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-rtti -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32/no-rtti -ftls-model=local-exec -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccUhkjF0.s + GNU C++17 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf) + compiled by GNU C version 6.3.0 20170516, GMP version 6.3.0, MPFR version 4.2.1, MPC version 1.3.1, isl version isl-0.26-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32/no-rtti" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/backward" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include" + ignoring nonexistent directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/../../../../include" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include" + ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/include" + #include "..." search starts here: + #include <...> search starts here: + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32/no-rtti + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0 + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32/no-rtti + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/backward + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include + End of search list. + Compiler executable checksum: 4a5fbbbea400d48f02e70eeffcc23385 + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-rtti' '-v' '-o' 'CMakeFiles/cmTC_63af4.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_63af4.dir/' + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_63af4.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccUhkjF0.s + COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ + LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/ + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-rtti' '-v' '-o' 'CMakeFiles/cmTC_63af4.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_63af4.dir/CMakeCXXCompilerABI.cpp.'\x0d + [2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cxxflags" @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/ldflags" -v CMakeFiles/cmTC_63af4.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_63af4 && cd ." + Using built-in specs. + Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs + rename spec link to picolibc_link + rename spec link_libgcc to picolibc_link_libgcc + rename spec cpp to picolibc_cpp + rename spec cc1 to picolibc_cc1 + rename spec cc1plus to picolibc_cc1plus + COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe + COLLECT_LTO_WRAPPER=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe + Target: xtensa-esp-elf + Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) + COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ + LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/ + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_63af4' '-dumpdir' 'cmTC_63af4.' + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccaAMy78.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_63af4 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cca0oX47 -lgcc --start-group -lgcc -lc --end-group -lgcc\x0d + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start; defaulting to 10000000\x0d + COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_63af4' '-dumpdir' 'cmTC_63af4.'\x0d + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:191 (message)" + - "C:/esp/v6.0/esp-idf/tools/cmake/toolchain_flags.cmake:179 (cmake_determine_compiler_abi)" + - "C:/esp/v6.0/esp-idf/CMakeLists.txt:89 (idf_toolchain_rerun_abi_detection)" + message: | + Parsed CXX implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32/no-rtti] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32/no-rtti] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/backward] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] + add: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include] + end of search list found + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/include] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32/no-rtti] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32/no-rtti] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32/no-rtti] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32/no-rtti] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/backward] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0/backward] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] + collapse include dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include] + implicit include dirs: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/include;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32/no-rtti;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32/no-rtti;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include/c++/15.2.0/backward;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/include-fixed;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/include] + + + - + kind: "message-v1" + backtrace: + - "C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:227 (message)" + - "C:/esp/v6.0/esp-idf/tools/cmake/toolchain_flags.cmake:179 (cmake_determine_compiler_abi)" + - "C:/esp/v6.0/esp-idf/CMakeLists.txt:89 (idf_toolchain_rerun_abi_detection)" + message: | + Parsed CXX implicit link information: + link line regex: [^( *|.*[/\\])(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)))("|,| |$)] + ignore line: [Change Dir: 'C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-kq9uyq'] + ignore line: [] + ignore line: [Run Build Command(s): C:/Espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_63af4] + ignore line: [[1/2] C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cxxflags" -v -o CMakeFiles/cmTC_63af4.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Using built-in specs.] + ignore line: [Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs] + ignore line: [rename spec link to picolibc_link] + ignore line: [rename spec link_libgcc to picolibc_link_libgcc] + ignore line: [rename spec cpp to picolibc_cpp] + ignore line: [rename spec cc1 to picolibc_cc1] + ignore line: [rename spec cc1plus to picolibc_cc1plus] + ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe] + ignore line: [Target: xtensa-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) ] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-rtti' '-v' '-o' 'CMakeFiles/cmTC_63af4.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_63af4.dir/'] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/cc1plus.exe -quiet -v -imultilib esp32/no-rtti -iprefix C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/ -isysroot C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf C:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp -ftls-model=local-exec -quiet -dumpdir CMakeFiles/cmTC_63af4.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mdynconfig=xtensa_esp32.so -mlongcalls -Wno-frame-address -version -fno-builtin-memcpy -fno-builtin-memset -fno-builtin-bzero -fno-rtti -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include -isystem C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32/no-rtti -ftls-model=local-exec -o C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccUhkjF0.s] + ignore line: [GNU C++17 (crosstool-NG esp-15.2.0_20251204) version 15.2.0 (xtensa-esp-elf)] + ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.3.0 MPFR version 4.2.1 MPC version 1.3.1 isl version isl-0.26-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32/no-rtti"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/backward"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include"] + ignore line: [ignoring nonexistent directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/builds/idf/crosstool-NG/builds/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/../../../../include"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/../../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include"] + ignore line: [ignoring duplicate directory "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/include/../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32/no-rtti] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/xtensa-esp-elf/esp32/no-rtti] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include/c++/15.2.0/backward] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/include-fixed] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/include] + ignore line: [End of search list.] + ignore line: [Compiler executable checksum: 4a5fbbbea400d48f02e70eeffcc23385] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-rtti' '-v' '-o' 'CMakeFiles/cmTC_63af4.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_63af4.dir/'] + ignore line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/as.exe --traditional-format --longcalls --dynconfig=xtensa_esp32.so -o CMakeFiles/cmTC_63af4.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccUhkjF0.s] + ignore line: [COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-fno-rtti' '-v' '-o' 'CMakeFiles/cmTC_63af4.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_63af4.dir/CMakeCXXCompilerABI.cpp.'\x0d] + ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cxxflags" @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/ldflags" -v CMakeFiles/cmTC_63af4.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_63af4 && cd ."] + ignore line: [Using built-in specs.] + ignore line: [Reading specs from C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/picolibc.specs] + ignore line: [rename spec link to picolibc_link] + ignore line: [rename spec link_libgcc to picolibc_link_libgcc] + ignore line: [rename spec cpp to picolibc_cpp] + ignore line: [rename spec cc1 to picolibc_cc1] + ignore line: [rename spec cc1plus to picolibc_cc1plus] + ignore line: [COLLECT_GCC=C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp-elf-g++.exe] + ignore line: [COLLECT_LTO_WRAPPER=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe] + ignore line: [Target: xtensa-esp-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf --with-native-system-header-dir=/include --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp-elf/xtensa-esp-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-15.2.0_20251204' --disable-__cxa_atexit --enable-cxx-flags='-ffunction-sections -fdata-sections' --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --enable-plugin --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-libstdcxx-time=yes --disable-win32-utf8-manifest --with-gnu-ld] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 15.2.0 (crosstool-NG esp-15.2.0_20251204) ] + ignore line: [COMPILER_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/] + ignore line: [LIBRARY_PATH=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_63af4' '-dumpdir' 'cmTC_63af4.'] + link line: [ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe -plugin C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll -plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccaAMy78.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib -Tpicolibc.ld --sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf --dynconfig=xtensa_esp32.so --gc-sections -o cmTC_63af4 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0 -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib -LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib @C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cca0oX47 -lgcc --start-group -lgcc -lc --end-group -lgcc\x0d] + arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/collect2.exe] ==> ignore + arg [-plugin] ==> ignore + arg [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/liblto_plugin.dll] ==> ignore + arg [-plugin-opt=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../libexec/gcc/xtensa-esp-elf/15.2.0/lto-wrapper.exe] ==> ignore + arg [-plugin-opt=-fresolution=C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\ccaAMy78.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib] + arg [-Tpicolibc.ld] ==> ignore + arg [--sysroot=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf] ==> ignore + arg [--dynconfig=xtensa_esp32.so] ==> ignore + arg [--gc-sections] ==> ignore + arg [-o] ==> ignore + arg [cmTC_63af4] ==> ignore + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] + arg [-LC:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] + arg [@C:\\Users\\ED233~1.ADA\\AppData\\Local\\Temp\\cca0oX47] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [--start-group] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [--end-group] ==> ignore + arg [-lgcc] ==> lib [gcc] + ignore line: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start] + ignore line: [ defaulting to 10000000\x0d] + ignore line: [COLLECT_GCC_OPTIONS='-mdynconfig=xtensa_esp32.so' '-specs=picolibc.specs' '-Wno-frame-address' '-mlongcalls' '-fno-builtin-memcpy' '-fno-builtin-memset' '-fno-builtin-bzero' '-nostartfiles' '-fno-rtti' '-v' '-o' 'cmTC_63af4' '-dumpdir' 'cmTC_63af4.'\x0d] + ignore line: [] + ignore line: [] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/lib/esp32/no-rtti] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/lib] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/lib/gcc/xtensa-esp-elf/15.2.0] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32/no-rtti] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib/esp32/no-rtti] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32/no-rtti] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/15.2.0/../../../../xtensa-esp-elf/lib] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/lib] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib] + collapse library dir [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/usr/lib] ==> [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/usr/lib] + implicit libs: [gcc;gcc;c;gcc] + implicit objs: [] + implicit dirs: [C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/lib/esp32/no-rtti;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/xtensa-esp-elf/lib;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/picolibc/lib/gcc/xtensa-esp-elf/15.2.0;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib/esp32/no-rtti;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc/xtensa-esp-elf/15.2.0;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/lib/gcc;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/lib;C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/xtensa-esp-elf/usr/lib] + implicit fwks: [] + + +... diff --git a/build/bootloader/CMakeFiles/InstallScripts.json b/build/bootloader/CMakeFiles/InstallScripts.json new file mode 100644 index 0000000..3627be3 --- /dev/null +++ b/build/bootloader/CMakeFiles/InstallScripts.json @@ -0,0 +1,47 @@ +{ + "InstallScripts" : + [ + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/xtensa/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_libc/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/soc/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/hal/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_gpio/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_usb/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_pmu/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/micro-ecc/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_dma/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_gpspi/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_clock/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_mspi/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_blockdev/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/spi_flash/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_bootloader_format/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_app_format/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/partition_table/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esptool_py/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_timg/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_wdt/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_uart/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_i2s/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_ana_conv/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_rtc_timer/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_security/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_security/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/bootloader_support/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/efuse/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_system/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hw_support/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hw_support/port/esp32/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hw_support/lowpower/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_common/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_rom/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/log/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/bootloader/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_stdio/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/freertos/cmake_install.cmake", + "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/main/cmake_install.cmake" + ], + "Parallel" : false +} diff --git a/build/bootloader/CMakeFiles/TargetDirectories.txt b/build/bootloader/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..30101fa --- /dev/null +++ b/build/bootloader/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,129 @@ +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/menuconfig.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/config-report.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/confserver.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/save-defconfig.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/_project_elf_src.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/bootloader.elf.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/size.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/size-files.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/size-components.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/uf2.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/uf2-app.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/bootloader_ld_in_preprocess.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/gen_bootloader_binary.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/gen_project_binary.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/app.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/bootloader_check_size.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/xtensa/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/xtensa/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_libc/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_libc/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/soc/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/soc/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/hal/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/hal/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_gpio/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_gpio/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_usb/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_usb/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_pmu/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_pmu/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/micro-ecc/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/micro-ecc/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_dma/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_dma/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_gpspi/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_gpspi/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_clock/CMakeFiles/__idf_esp_hal_clock.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_clock/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_clock/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_mspi/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_mspi/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_blockdev/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_blockdev/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/spi_flash/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/spi_flash/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_app_format/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_app_format/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/partition_table/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/partition_table/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esptool_py/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esptool_py/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_timg/CMakeFiles/__idf_esp_hal_timg.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_timg/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_timg/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_wdt/CMakeFiles/__idf_esp_hal_wdt.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_wdt/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_wdt/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_uart/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_uart/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_i2s/CMakeFiles/__idf_esp_hal_i2s.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_i2s/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_i2s/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_ana_conv/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_ana_conv/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_rtc_timer/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_rtc_timer/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_security/CMakeFiles/__idf_esp_hal_security.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_security/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_security/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_security/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_security/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/bootloader_support/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/bootloader_support/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/efuse/CMakeFiles/efuse-common-table.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_common_table.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/efuse/CMakeFiles/efuse-custom-table.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_custom_table.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/efuse/CMakeFiles/show-efuse-table.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/efuse/CMakeFiles/show_efuse_table.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_test_table.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/efuse/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/efuse/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_system/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_system/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hw_support/port/esp32/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hw_support/port/esp32/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hw_support/lowpower/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hw_support/lowpower/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_common/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_common/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_rom/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_rom/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/log/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/log/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/bootloader/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/bootloader/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_stdio/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_stdio/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/freertos/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/freertos/CMakeFiles/rebuild_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/main/CMakeFiles/__idf_main.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/main/CMakeFiles/edit_cache.dir +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/main/CMakeFiles/rebuild_cache.dir diff --git a/build/bootloader/CMakeFiles/bootloader.elf.dir/project_elf_src_esp32.c.obj b/build/bootloader/CMakeFiles/bootloader.elf.dir/project_elf_src_esp32.c.obj new file mode 100644 index 0000000..4cf1e29 Binary files /dev/null and b/build/bootloader/CMakeFiles/bootloader.elf.dir/project_elf_src_esp32.c.obj differ diff --git a/build/bootloader/CMakeFiles/clean_additional.cmake b/build/bootloader/CMakeFiles/clean_additional.cmake new file mode 100644 index 0000000..d0cd175 --- /dev/null +++ b/build/bootloader/CMakeFiles/clean_additional.cmake @@ -0,0 +1,12 @@ +# Additional clean files +cmake_minimum_required(VERSION 3.16) + +if("${CONFIG}" STREQUAL "" OR "${CONFIG}" STREQUAL "") + file(REMOVE_RECURSE + "bootloader.bin" + "bootloader.map" + "config\\sdkconfig.cmake" + "config\\sdkconfig.h" + "project_elf_src_esp32.c" + ) +endif() diff --git a/build/bootloader/CMakeFiles/cmake.check_cache b/build/bootloader/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/build/bootloader/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/build/bootloader/CMakeFiles/git-data/HEAD b/build/bootloader/CMakeFiles/git-data/HEAD new file mode 100644 index 0000000..3145922 --- /dev/null +++ b/build/bootloader/CMakeFiles/git-data/HEAD @@ -0,0 +1 @@ +662a3be354759d9487bf4b1a629fadb766cb1800 diff --git a/build/bootloader/CMakeFiles/git-data/grabRef.cmake b/build/bootloader/CMakeFiles/git-data/grabRef.cmake new file mode 100644 index 0000000..9e3c9fb --- /dev/null +++ b/build/bootloader/CMakeFiles/git-data/grabRef.cmake @@ -0,0 +1,50 @@ +# +# Internal file for GetGitRevisionDescription.cmake +# +# Requires CMake 2.6 or newer (uses the 'function' command) +# +# Original Author: +# 2009-2010 Ryan Pavlik +# http://academic.cleardefinition.com +# Iowa State University HCI Graduate Program/VRAC +# +# Copyright Iowa State University 2009-2010. +# Distributed under the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http://www.boost.org/LICENSE_1_0.txt) + +set(HEAD_HASH) + +file(READ "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/git-data/HEAD" HEAD_CONTENTS LIMIT 1024) + +string(STRIP "${HEAD_CONTENTS}" HEAD_CONTENTS) +set(GIT_DIR "C:/esp/v6.0/esp-idf/.git") +# handle git-worktree +if(EXISTS "${GIT_DIR}/commondir") + file(READ "${GIT_DIR}/commondir" GIT_DIR_NEW LIMIT 1024) + string(STRIP "${GIT_DIR_NEW}" GIT_DIR_NEW) + if(NOT IS_ABSOLUTE "${GIT_DIR_NEW}") + get_filename_component(GIT_DIR_NEW ${GIT_DIR}/${GIT_DIR_NEW} ABSOLUTE) + endif() + if(EXISTS "${GIT_DIR_NEW}") + set(GIT_DIR "${GIT_DIR_NEW}") + endif() +endif() +if(HEAD_CONTENTS MATCHES "ref") + # named branch + string(REPLACE "ref: " "" HEAD_REF "${HEAD_CONTENTS}") + if(EXISTS "${GIT_DIR}/${HEAD_REF}") + configure_file("${GIT_DIR}/${HEAD_REF}" "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/git-data/head-ref" COPYONLY) + elseif(EXISTS "${GIT_DIR}/logs/${HEAD_REF}") + configure_file("${GIT_DIR}/logs/${HEAD_REF}" "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/git-data/head-ref" COPYONLY) + set(HEAD_HASH "${HEAD_REF}") + endif() +else() + # detached HEAD + configure_file("${GIT_DIR}/HEAD" "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/git-data/head-ref" COPYONLY) +endif() + +if(NOT HEAD_HASH) + file(READ "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/CMakeFiles/git-data/head-ref" HEAD_HASH LIMIT 1024) + string(STRIP "${HEAD_HASH}" HEAD_HASH) +endif() diff --git a/build/bootloader/CMakeFiles/git-data/head-ref b/build/bootloader/CMakeFiles/git-data/head-ref new file mode 100644 index 0000000..3145922 --- /dev/null +++ b/build/bootloader/CMakeFiles/git-data/head-ref @@ -0,0 +1 @@ +662a3be354759d9487bf4b1a629fadb766cb1800 diff --git a/build/bootloader/CMakeFiles/rules.ninja b/build/bootloader/CMakeFiles/rules.ninja new file mode 100644 index 0000000..6837bc2 --- /dev/null +++ b/build/bootloader/CMakeFiles/rules.ninja @@ -0,0 +1,540 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 4.0 + +# This file contains all the rules used to get the outputs files +# built from the input files. +# It is included in the main 'build.ninja'. + +# ============================================================================= +# Project: bootloader +# Configurations: +# ============================================================================= +# ============================================================================= + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__bootloader.2eelf_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C executable. + +rule C_EXECUTABLE_LINKER__bootloader.2eelf_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $FLAGS $LINK_FLAGS @$RSP_FILE -o $TARGET_FILE && $POST_BUILD" + description = Linking C executable $TARGET_FILE + rspfile = $RSP_FILE + rspfile_content = $in $LINK_PATH $LINK_LIBRARIES + restat = $RESTAT + + +############################################# +# Rule for running custom commands. + +rule CUSTOM_COMMAND + command = $COMMAND + description = $DESC + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_xtensa_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_xtensa_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_soc_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_soc_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_hal_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_hal_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_hal_gpio_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_hal_gpio_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_micro-ecc_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_micro-ecc_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_hal_gpspi_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_hal_gpspi_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_hal_clock_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_hal_clock_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_spi_flash_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_spi_flash_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_bootloader_format_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_bootloader_format_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_hal_timg_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_hal_timg_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_hal_wdt_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_hal_wdt_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_hal_uart_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_hal_uart_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_hal_i2s_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_hal_i2s_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_hal_ana_conv_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_hal_ana_conv_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_hal_security_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_hal_security_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_security_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_security_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_bootloader_support_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_bootloader_support_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_efuse_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_efuse_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_system_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_system_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_hw_support_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_hw_support_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_common_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_common_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling ASM files. + +rule ASM_COMPILER____idf_esp_rom_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building ASM object $out + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_rom_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_esp_rom_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_log_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_log_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_main_unscanned_ + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_main_ + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Espressif\tools\xtensa-esp-elf\esp-15.2.0_20251204\xtensa-esp-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for re-running cmake. + +rule RERUN_CMAKE + command = C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader + description = Re-running CMake... + generator = 1 + + +############################################# +# Rule for cleaning additional files. + +rule CLEAN_ADDITIONAL + command = C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCONFIG=$CONFIG -P CMakeFiles\clean_additional.cmake + description = Cleaning additional files... + + +############################################# +# Rule for cleaning all built files. + +rule CLEAN + command = C:\Espressif\tools\ninja\1.12.1\ninja.exe $FILE_ARG -t clean $TARGETS + description = Cleaning all built files... + + +############################################# +# Rule for printing all primary targets available. + +rule HELP + command = C:\Espressif\tools\ninja\1.12.1\ninja.exe -t targets + description = All primary targets available: + diff --git a/build/bootloader/bootloader.bin b/build/bootloader/bootloader.bin new file mode 100644 index 0000000..3898b3d Binary files /dev/null and b/build/bootloader/bootloader.bin differ diff --git a/build/bootloader/bootloader.elf b/build/bootloader/bootloader.elf new file mode 100644 index 0000000..86a3ded Binary files /dev/null and b/build/bootloader/bootloader.elf differ diff --git a/build/bootloader/bootloader.map b/build/bootloader/bootloader.map new file mode 100644 index 0000000..5b4fcf2 --- /dev/null +++ b/build/bootloader/bootloader.map @@ -0,0 +1,6579 @@ +Archive member included to satisfy reference by file (symbol) + +esp-idf/soc/libsoc.a(dport_access.c.obj) + (esp_dport_access_reg_read) +esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + (esp_bootloader_desc) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + (__assert_func) +esp-idf/main/libmain.a(bootloader_start.c.obj) + (call_start_cpu0) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/main/libmain.a(bootloader_start.c.obj) (bootloader_utility_load_partition_table) +esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (esp_partition_table_verify) +esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_load_image) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_sha256_start) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_console_deinit) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_ana_clock_glitch_reset_config) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + esp-idf/main/libmain.a(bootloader_start.c.obj) (bootloader_init) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) (bootloader_common_vddsdio_configure) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_common_ota_select_crc) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) (bootloader_clock_configure) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) (bootloader_init_mem) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) (bootloader_fill_random) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) (bootloader_clock_get_rated_freq_mhz) +esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (esp_flash_encryption_enabled) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_random_disable) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_mmap_get_free_pages) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) (bootloader_flash_update_id) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) (bootloader_clear_bss_section) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) (bootloader_console_init) +esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) (ESP_EFUSE_DISABLE_DL_CACHE) +esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) (esp_efuse_disable_rom_download_mode) +esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) (esp_efuse_read_field_blob) +esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) (esp_efuse_utility_count_once) +esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) (esp_efuse_get_coding_scheme) +esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (esp_efuse_utility_clear_program_registers) +esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) (esp_cpu_configure_region_protection) +esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) (rtc_clk_slow_src_get) +esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) (rtc_clk_init) +esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (rtc_vddsdio_get_config) +esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) (rtc_clk_cal_ratio) +esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (esp_rom_set_cpu_ticks_per_us) +esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) (esp_rom_output_tx_wait_idle) +esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) (esp_rom_spiflash_wait_idle) +esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) (esp_rom_gpio_connect_out_signal) +esp-idf/log/liblog.a(log_timestamp.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (esp_log_early_timestamp) +esp-idf/soc/libsoc.a(gpio_periph.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (GPIO_PIN_MUX_REG_OFFSET) +esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) (efuse_hal_chip_revision) +esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/hal/libhal.a(efuse_hal.c.obj) (efuse_hal_get_major_chip_version) +esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) (mmu_hal_ctx_init) +esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) (cache_hal_init) +esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) (wdt_hal_init) +esp-idf/esp_hal_security/libesp_hal_security.a(mpu_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) (mpu_hal_set_region_access) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_loader.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (esp_clk_apb_freq) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_ashldi3.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (__ashldi3) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_lshrdi3.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (__lshrdi3) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) (__bswapsi2) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__divsf3) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__adddf3) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__muldf3) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__divdf3) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__fixdfsi) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__fixunsdfsi) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__floatunsidf) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__extendsfdf2) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (__popcountsi2) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) (__udivdi3) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) (__umoddi3) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memcpy.S.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (memcpy) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memset.S.o) + esp-idf/main/libmain.a(bootloader_start.c.obj) (memset) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strlen.S.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (strlen) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strncpy.S.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (strncpy) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_bzero.c.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bzero) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memcmp.c.o) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) (memcmp) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcspn.c.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (strcspn) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strstr.c.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (strstr) + +Discarded input sections + + .text 0x00000000 0x0 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32.c.obj + .data 0x00000000 0x0 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32.c.obj + .bss 0x00000000 0x0 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32.c.obj + .comment 0x00000000 0x30 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32.c.obj + .text 0x00000000 0x0 esp-idf/soc/libsoc.a(dport_access.c.obj) + .data 0x00000000 0x0 esp-idf/soc/libsoc.a(dport_access.c.obj) + .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(dport_access.c.obj) + .iram1.1 0x00000000 0xa esp-idf/soc/libsoc.a(dport_access.c.obj) + .text 0x00000000 0x0 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + .data 0x00000000 0x0 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .text 0x00000000 0x0 esp-idf/main/libmain.a(bootloader_start.c.obj) + .data 0x00000000 0x0 esp-idf/main/libmain.a(bootloader_start.c.obj) + .bss 0x00000000 0x0 esp-idf/main/libmain.a(bootloader_start.c.obj) + .literal.bootloader_common_get_partition_description + 0x00000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_atexit + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_sha256_flash_contents + 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_common_get_partition_description + 0x00000000 0x73 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_atexit + 0x00000000 0xb esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_sha256_hex_to_str + 0x00000000 0x59 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_sha256_flash_contents.str1.1 + 0x00000000 0x2d esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_sha256_flash_contents + 0x00000000 0xab esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .literal.esp_image_bootloader_offset_get + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_bootloader_offset_set + 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.bootloader_load_image_no_verify + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_verify + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_get_metadata + 0x00000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_verify_bootloader_data + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_verify_bootloader + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_bootloader_offset_get + 0x00000000 0xa esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.esp_image_bootloader_offset_set.str1.1 + 0x00000000 0x44 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_bootloader_offset_set + 0x00000000 0x27 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.bootloader_load_image_no_verify + 0x00000000 0x13 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_verify + 0x00000000 0x13 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_get_metadata + 0x00000000 0x6d esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_verify_bootloader_data + 0x00000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_verify_bootloader + 0x00000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_get_flash_size + 0x00000000 0x4d esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .literal.bootloader_common_check_long_hold_gpio_level + 0x00000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_check_long_hold_gpio + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_label_search + 0x00000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_erase_part_type_data + 0x00000000 0x64 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_get_sha256_of_partition + 0x00000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_check_long_hold_gpio_level + 0x00000000 0xd8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_check_long_hold_gpio + 0x00000000 0x13 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .rodata.bootloader_common_label_search.str1.1 + 0x00000000 0x3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_label_search + 0x00000000 0xa2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .rodata.bootloader_common_erase_part_type_data.str1.1 + 0x00000000 0xe2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_erase_part_type_data + 0x00000000 0x10a esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_get_sha256_of_partition + 0x00000000 0x93 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .literal.esp_flash_write_protect_crypt_cnt + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .literal.esp_get_flash_encryption_mode + 0x00000000 0x2c esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .literal.esp_flash_encryption_set_release_mode + 0x00000000 0x70 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .literal.esp_flash_encryption_cfg_verify_release_mode + 0x00000000 0xe4 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_flash_write_protect_crypt_cnt + 0x00000000 0xe esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_get_flash_encryption_mode + 0x00000000 0x71 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .rodata.esp_flash_encryption_set_release_mode.str1.1 + 0x00000000 0xb3 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_flash_encryption_set_release_mode + 0x00000000 0xc0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .rodata.esp_flash_encryption_cfg_verify_release_mode.str1.1 + 0x00000000 0x34d esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_flash_encryption_cfg_verify_release_mode + 0x00000000 0x1b9 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .literal.bootloader_flash_erase_range + 0x00000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_spi_flash_reset + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.13.literal + 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_erase_range + 0x00000000 0x55 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_spi_flash_reset + 0x00000000 0x23 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.13 0x00000000 0xa1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.14 0x00000000 0x7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_flash_update_size + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .iram1.7.literal + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .literal.bootloader_flash_get_wp_pin + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .literal.bootloader_configure_spi_pins + 0x00000000 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .text.bootloader_flash_update_size + 0x00000000 0xa esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .iram1.7 0x00000000 0x37 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .text.bootloader_flash_get_wp_pin + 0x00000000 0x36 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .text.bootloader_configure_spi_pins + 0x00000000 0x16b esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .literal.bootloader_init_ext_mem + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .text.bootloader_init_ext_mem + 0x00000000 0x2d esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_MAC_VERSION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_VERSION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_TP_HIGH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_TP_LOW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_TP_HIGH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_TP_LOW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_MAC_CUSTOM + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CUSTOM_MAC_CRC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_BLOCK2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_BLOCK1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_STATUS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_DL_CACHE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_DL_DECRYPT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_DL_ENCRYPT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_JTAG_DISABLE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ABS_DONE_1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ABS_DONE_0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_SDIO_HOST + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CONSOLE_DEBUG_DISABLE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CODING_SCHEME + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_CRYPT_CONFIG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WAFER_VERSION_MINOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_VOL_LEVEL_HP_INV + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_VER_REV2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_CS0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_D + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_Q + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_CLK + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_XPD_SDIO_FORCE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_XPD_SDIO_TIEH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_XPD_SDIO_REG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC_VREF + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CLK8M_FREQ + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_VER_REV1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_BLK3_PART_RESERVE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_CPU_FREQ_RATED + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_CPU_FREQ_LOW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_PACKAGE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_HD + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_CACHE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_PACKAGE_4BIT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_BT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_APP_CPU + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_MAC_CRC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_MAC + 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_UART_DOWNLOAD_DIS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_CRYPT_CNT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_KEY_STATUS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_CODING_SCHEME + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_FLASH_CRYPT_CONFIG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLK3_PART_RESERVE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_MAC_VERSION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_SECURE_VERSION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_ADC2_TP_HIGH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_ADC2_TP_LOW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_ADC1_TP_HIGH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_ADC1_TP_LOW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_CUSTOM_MAC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_CUSTOM_MAC_CRC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DISABLE_DL_CACHE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DISABLE_DL_DECRYPT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DISABLE_DL_ENCRYPT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_CONSOLE_DEBUG_DISABLE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_JTAG_DISABLE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ABS_DONE_1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ABS_DONE_0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY_STATUS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_CODING_SCHEME + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_CRYPT_CONFIG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLK3_PART_RESERVE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_MAC_VERSION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SECURE_VERSION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_TP_HIGH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_TP_LOW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_TP_HIGH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_TP_LOW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_CUSTOM_MAC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_CUSTOM_MAC_CRC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_CS0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_Q + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_CLK + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_XPD_SDIO_FORCE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_XPD_SDIO_TIEH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_XPD_SDIO_REG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC_VREF + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_CLK8M_FREQ + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_VOL_LEVEL_HP_INV + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_CACHE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DISABLE_BT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DISABLE_APP_CPU + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_MAC_CRC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_MAC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_UART_DOWNLOAD_DIS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_CRYPT_CNT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_WR_DIS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_RD_DIS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.MAC_VERSION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SECURE_VERSION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_TP_HIGH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_TP_LOW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_TP_HIGH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_TP_LOW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.MAC_CUSTOM + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CUSTOM_MAC_CRC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.BLOCK2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.BLOCK1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY_STATUS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_DL_CACHE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_DL_DECRYPT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_DL_ENCRYPT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.JTAG_DISABLE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ABS_DONE_1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ABS_DONE_0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_SDIO_HOST + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CONSOLE_DEBUG_DISABLE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CODING_SCHEME + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.FLASH_CRYPT_CONFIG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WAFER_VERSION_MINOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.VOL_LEVEL_HP_INV + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_VER_REV2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_CS0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_D + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_Q + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_CLK + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.XPD_SDIO_FORCE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.XPD_SDIO_TIEH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.XPD_SDIO_REG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC_VREF + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CLK8M_FREQ + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_VER_REV1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.BLK3_PART_RESERVE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_CPU_FREQ_RATED + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_CPU_FREQ_LOW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_PACKAGE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_HD + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_CACHE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_PACKAGE_4BIT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_BT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_APP_CPU + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.MAC_CRC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.MAC 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.UART_DOWNLOAD_DIS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.FLASH_CRYPT_CNT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_KEY_STATUS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_CODING_SCHEME + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_FLASH_CRYPT_CONFIG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLK3_PART_RESERVE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_MAC_VERSION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_SECURE_VERSION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_ADC2_TP_HIGH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_ADC2_TP_LOW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_ADC1_TP_HIGH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_ADC1_TP_LOW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_CUSTOM_MAC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_CUSTOM_MAC_CRC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DISABLE_DL_CACHE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DISABLE_DL_DECRYPT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DISABLE_DL_ENCRYPT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_CONSOLE_DEBUG_DISABLE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_JTAG_DISABLE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ABS_DONE_1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ABS_DONE_0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY_STATUS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_CODING_SCHEME + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_CRYPT_CONFIG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLK3_PART_RESERVE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_MAC_VERSION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SECURE_VERSION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_TP_HIGH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_TP_LOW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_TP_HIGH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_TP_LOW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_CUSTOM_MAC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_CUSTOM_MAC_CRC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_CS0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_D + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_Q + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_CLK + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_XPD_SDIO_FORCE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_XPD_SDIO_TIEH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_XPD_SDIO_REG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC_VREF + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_CLK8M_FREQ + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_VOL_LEVEL_HP_INV + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_CACHE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DISABLE_BT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DISABLE_APP_CPU + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_MAC_CRC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_MAC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_UART_DOWNLOAD_DIS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_CRYPT_CNT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_WR_DIS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_RD_DIS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_info 0x00000000 0x1621 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_abbrev 0x00000000 0x106 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_aranges + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_line 0x00000000 0x20d esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_str 0x00000000 0x164c esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .comment 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .literal.esp_efuse_get_pkg_ver + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_disable_basic_rom_console + 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_disable_rom_download_mode + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_get_pkg_ver + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .rodata.esp_efuse_disable_basic_rom_console.str1.1 + 0x00000000 0x43 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_disable_basic_rom_console + 0x00000000 0x2f esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_disable_rom_download_mode + 0x00000000 0x3a esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_set_rom_log_scheme + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_frame 0x00000000 0x70 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_info 0x00000000 0x651 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_abbrev 0x00000000 0x1df esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_loc 0x00000000 0x2b esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_aranges + 0x00000000 0x38 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_ranges 0x00000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_line 0x00000000 0x578 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_str 0x00000000 0xd50 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .comment 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_read_field_blob + 0x00000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_field_bit + 0x00000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_field_cnt + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_field_blob + 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_field_cnt + 0x00000000 0x2c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_field_bit + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_reg + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_block + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_reg + 0x00000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_block + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_batch_write_begin + 0x00000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_batch_write_cancel + 0x00000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_batch_write_commit + 0x00000000 0x2c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_check_errors + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_destroy_block + 0x00000000 0x58 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_field_blob + 0x00000000 0x52 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_read_field_bit.str1.1 + 0x00000000 0x39 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_field_bit + 0x00000000 0x31 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_field_cnt + 0x00000000 0x39 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_blob + 0x00000000 0x5e esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_write_field_cnt.str1.1 + 0x00000000 0x4c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_cnt + 0x00000000 0x86 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_bit + 0x00000000 0x41 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_get_field_size + 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_reg + 0x00000000 0x3e esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_block + 0x00000000 0x41 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_reg + 0x00000000 0x2e esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_block + 0x00000000 0x41 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_begin.str1.1 + 0x00000000 0x4f esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_begin + 0x00000000 0x42 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_cancel.str1.1 + 0x00000000 0x5f esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_cancel + 0x00000000 0x4b esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_commit.str1.1 + 0x00000000 0x37 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_commit + 0x00000000 0x5e esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_check_errors + 0x00000000 0xd esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_destroy_block.str1.1 + 0x00000000 0x11b esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_destroy_block + 0x00000000 0xf6 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.__func__$0 + 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.__func__$1 + 0x00000000 0x13 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.__func__$2 + 0x00000000 0x19 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .bss.s_batch_writing_mode + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_frame 0x00000000 0x190 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_info 0x00000000 0x14ee esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_abbrev 0x00000000 0x426 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_loc 0x00000000 0x773 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_aranges + 0x00000000 0x98 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_ranges 0x00000000 0xb8 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_line 0x00000000 0x1422 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_str 0x00000000 0x1051 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .comment 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.write_reg + 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_process + 0x00000000 0x3c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_reset + 0x00000000 0xc esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_burn_efuses + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_update_virt_blocks + 0x00000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_debug_dump_single_block + 0x00000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_debug_dump_pending + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_debug_dump_blocks + 0x00000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_read_reg + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_fill_buff + 0x00000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_count_once + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_write_cnt + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_write_reg + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_write_blob + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_get_read_register_address + 0x00000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_is_correct_written_data + 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.write_reg.str1.1 + 0x00000000 0xb3 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.write_reg + 0x00000000 0x52 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_process.str1.1 + 0x00000000 0x5b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_process + 0x00000000 0x135 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_reset + 0x00000000 0x45 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_burn_efuses + 0x00000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_erase_virt_blocks + 0x00000000 0x5 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_update_virt_blocks.str1.1 + 0x00000000 0x27 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_update_virt_blocks + 0x00000000 0x19 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_debug_dump_single_block.str1.1 + 0x00000000 0xe esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_debug_dump_single_block + 0x00000000 0x5f esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_debug_dump_pending + 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_debug_dump_blocks.str1.1 + 0x00000000 0xd esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_debug_dump_blocks + 0x00000000 0x2a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_get_number_of_items + 0x00000000 0x16 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_read_reg + 0x00000000 0x41 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_fill_buff + 0x00000000 0xaa esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_count_once + 0x00000000 0x3b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_write_cnt.str1.1 + 0x00000000 0x31 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_cnt + 0x00000000 0x7c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_write_reg.str1.1 + 0x00000000 0x53 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_reg + 0x00000000 0x42 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_blob + 0x00000000 0x9c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_get_read_register_address.str1.1 + 0x00000000 0x16 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_get_read_register_address + 0x00000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_is_correct_written_data.str1.1 + 0x00000000 0xb7 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_is_correct_written_data + 0x00000000 0x85 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$0 + 0x00000000 0x2c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$1 + 0x00000000 0x1b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$2 + 0x00000000 0xa esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$3 + 0x00000000 0xf esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$4 + 0x00000000 0x1a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .bss.s_burn_counter + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_frame 0x00000000 0x1c0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_info 0x00000000 0x179d esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_abbrev 0x00000000 0x490 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_loc 0x00000000 0xfd3 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_aranges + 0x00000000 0xa8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_ranges 0x00000000 0x2e0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_line 0x00000000 0x1948 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_str 0x00000000 0x11cc esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .comment 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_get_coding_scheme$part$0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_write_protect + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_read_protect + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_coding_scheme + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_block_is_empty + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_key_dis_read + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_key_dis_read + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_key_dis_write + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_key_dis_write + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_key_block_unused + 0x00000000 0xc esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_find_purpose + 0x00000000 0xc esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_write_key + 0x00000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_write_keys + 0x00000000 0x34 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_coding_scheme$part$0 + 0x00000000 0x1f esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_write_protect + 0x00000000 0x1f esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_read_protect + 0x00000000 0x1f esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_coding_scheme + 0x00000000 0xf esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_block_is_empty + 0x00000000 0x47 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.esp_efuse_get_key_dis_read.str1.1 + 0x00000000 0xa0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key_dis_read + 0x00000000 0x2c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_key_dis_read + 0x00000000 0x1d esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key_dis_write + 0x00000000 0x2c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_key_dis_write + 0x00000000 0x1d esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_key_block_unused + 0x00000000 0x2f esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key_purpose + 0x00000000 0x21 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_keypurpose_dis_write + 0x00000000 0x7 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_find_purpose + 0x00000000 0x3f esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_write_key + 0x00000000 0x87 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.esp_efuse_write_keys.str1.1 + 0x00000000 0x89 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_write_keys + 0x00000000 0xc4 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__$0 + 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__$1 + 0x00000000 0x1b esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.s_table + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_frame 0x00000000 0x178 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_info 0x00000000 0x310d esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_abbrev 0x00000000 0x49f esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_loc 0x00000000 0x80b esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_aranges + 0x00000000 0x90 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_ranges 0x00000000 0x100 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_line 0x00000000 0xee2 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_str 0x00000000 0x240f esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .comment 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_utility_clear_program_registers + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_apply_34_encoding + 0x00000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_burn_chip_opt + 0x00000000 0xa4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_burn_chip + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_apply_new_coding_scheme + 0x00000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_clear_program_registers + 0x00000000 0xb esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_check_errors + 0x00000000 0x7 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_apply_34_encoding + 0x00000000 0x82 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_burn_chip_opt.str1.1 + 0x00000000 0x15a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_burn_chip_opt + 0x00000000 0x22a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_burn_chip + 0x00000000 0x11 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_apply_new_coding_scheme.str1.1 + 0x00000000 0x3f esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_apply_new_coding_scheme + 0x00000000 0xd3 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.start_write_addr + 0x00000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.range_write_addr_blocks + 0x00000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .bss.write_mass_blocks + 0x00000000 0x80 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.range_read_addr_blocks + 0x00000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_frame 0x00000000 0xa0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_info 0x00000000 0xeb5 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_abbrev 0x00000000 0x3a4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_loc 0x00000000 0x779 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_aranges + 0x00000000 0x48 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_ranges 0x00000000 0x1f0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_line 0x00000000 0x1126 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_str 0x00000000 0xf4e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .comment 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .literal.rtc_clk_32k_enable_external + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_32k_disable_external + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_32k_bootstrap + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_32k_enabled + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_apll_enable + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_apll_coeff_set + 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_apll_coeff_calc + 0x00000000 0x8c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .iram1.1.literal + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_set_xtal + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_set_xtal_for_sleep + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_set_config_fast + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_dig_clk8m_enable + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_dig_clk8m_disable + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_dig_8m_enabled + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_32k_enable_external + 0x00000000 0xd esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_32k_disable_external + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_32k_bootstrap + 0x00000000 0x123 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_32k_enabled + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_apll_enable + 0x00000000 0x85 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_apll_coeff_set + 0x00000000 0xd2 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_apll_coeff_calc + 0x00000000 0x212 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .iram1.1 0x00000000 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_set_xtal + 0x00000000 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_set_xtal_for_sleep + 0x00000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_set_config_fast + 0x00000000 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_dig_clk8m_enable + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_dig_clk8m_disable + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_dig_8m_enabled + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .literal.rtc_init + 0x00000000 0x8c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .text.rtc_init + 0x00000000 0x390 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .literal.rtc_clk_cal + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .literal.rtc_time_us_to_slowclk + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .literal.rtc_time_get + 0x00000000 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .literal.rtc_clk_freq_cal + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_clk_cal + 0x00000000 0xb3 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.rtc_time_us_to_slowclk.str1.1 + 0x00000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_time_us_to_slowclk + 0x00000000 0x82 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_time_slowclk_to_us + 0x00000000 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.rtc_time_get.str1.1 + 0x00000000 0x57 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_time_get + 0x00000000 0x8b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_clk_freq_cal + 0x00000000 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.__func__$3 + 0x00000000 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.__func__$2 + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .literal.esp_rom_output_to_channels + 0x00000000 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .literal.esp_rom_install_channel_putc + 0x00000000 0x10 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .text 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .data 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .text.esp_rom_output_to_channels + 0x00000000 0x20 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .text.esp_rom_install_channel_putc + 0x00000000 0x29 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .bss._putc2 0x00000000 0x4 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .data._putc1 0x00000000 0x4 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .text 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + .data 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + .literal.esp_rom_spiflash_read_statushigh + 0x00000000 0xc esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_write_status + 0x00000000 0x10 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_clear_bp + 0x00000000 0x2c esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_set_bp + 0x00000000 0x14 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_config_readmode + 0x00000000 0x34 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_erase_chip + 0x00000000 0x14 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_erase_block + 0x00000000 0x24 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_erase_area + 0x00000000 0x18 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_write_disable + 0x00000000 0x4 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .data 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_read_statushigh + 0x00000000 0x21 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_write_status + 0x00000000 0x34 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_clear_bp + 0x00000000 0xbf esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_set_bp + 0x00000000 0x44 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_config_readmode + 0x00000000 0x2a3 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_erase_chip + 0x00000000 0x35 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_erase_block + 0x00000000 0x82 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_erase_area + 0x00000000 0x93 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_write_disable + 0x00000000 0x1c esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + .data 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + .text 0x00000000 0x0 esp-idf/log/liblog.a(log_timestamp.c.obj) + .data 0x00000000 0x0 esp-idf/log/liblog.a(log_timestamp.c.obj) + .bss 0x00000000 0x0 esp-idf/log/liblog.a(log_timestamp.c.obj) + .text 0x00000000 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .data 0x00000000 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .rodata.GPIO_HOLD_MASK + 0x00000000 0xa0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .rodata.GPIO_PIN_MUX_REG + 0x00000000 0xa0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .literal.efuse_hal_get_mac + 0x00000000 0x4 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .iram1.3.literal + 0x00000000 0x4 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_get_mac + 0x00000000 0x17 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .iram1.1 0x00000000 0x7 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .iram1.3 0x00000000 0x1e esp-idf/hal/libhal.a(efuse_hal.c.obj) + .iram1.4 0x00000000 0x7 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_set_timing + 0x00000000 0x8 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_read + 0x00000000 0x4 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_clear_program_registers + 0x00000000 0x8 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_program + 0x00000000 0x8 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_is_coding_error_in_block + 0x00000000 0x4 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_set_timing + 0x00000000 0x69 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_read + 0x00000000 0x3d esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_clear_program_registers + 0x00000000 0x49 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_program + 0x00000000 0x42 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_is_coding_error_in_block + 0x00000000 0x38 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.mmu_hal_init + 0x00000000 0x8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .literal.mmu_hal_paddr_to_vaddr + 0x00000000 0xc esp-idf/hal/libhal.a(mmu_hal.c.obj) + .literal.mmu_hal_check_valid_ext_vaddr_region + 0x00000000 0x20 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .literal.mmu_hal_map_region + 0x00000000 0x1c esp-idf/hal/libhal.a(mmu_hal.c.obj) + .literal.mmu_hal_unmap_region + 0x00000000 0x1c esp-idf/hal/libhal.a(mmu_hal.c.obj) + .literal.mmu_hal_vaddr_to_paddr + 0x00000000 0x14 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_init + 0x00000000 0x14 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_pages_to_bytes + 0x00000000 0x8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_bytes_to_pages + 0x00000000 0x8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_paddr_to_vaddr + 0x00000000 0xe7 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_check_valid_ext_vaddr_region + 0x00000000 0x8f esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_map_region + 0x00000000 0xfb esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_unmap_region + 0x00000000 0xde esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_vaddr_to_paddr + 0x00000000 0xc7 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .literal.cache_hal_suspend + 0x00000000 0x1c esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .literal.cache_hal_resume + 0x00000000 0x14 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .literal.cache_hal_is_cache_enabled + 0x00000000 0x8 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .literal.cache_hal_vaddr_to_cache_level_id + 0x00000000 0x14 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .literal.cache_hal_get_cache_line_size + 0x00000000 0x4 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .literal.unlikely.cache_hal_invalidate_addr + 0x00000000 0x4 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .text.cache_hal_init + 0x00000000 0x5 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .text.cache_hal_suspend + 0x00000000 0xce esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .text.cache_hal_resume + 0x00000000 0x7e esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .text.cache_hal_is_cache_enabled + 0x00000000 0x1d esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .text.cache_hal_vaddr_to_cache_level_id + 0x00000000 0x68 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .text.cache_hal_get_cache_line_size + 0x00000000 0x11 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .text.unlikely.cache_hal_invalidate_addr + 0x00000000 0x9 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .bss.s_cache_status + 0x00000000 0x8 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .debug_frame 0x00000000 0xb8 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .debug_info 0x00000000 0x8e4 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .debug_abbrev 0x00000000 0x22a esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .debug_loc 0x00000000 0x5c0 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .debug_aranges + 0x00000000 0x50 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .debug_ranges 0x00000000 0x160 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .debug_line 0x00000000 0xa24 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .debug_str 0x00000000 0xc00 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .comment 0x00000000 0x30 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .literal.wdt_hal_deinit + 0x00000000 0x4 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .text.wdt_hal_deinit + 0x00000000 0xb0 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .text.wdt_hal_disable + 0x00000000 0x30 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .text.wdt_hal_handle_intr + 0x00000000 0x4c esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .text.wdt_hal_feed + 0x00000000 0x2a esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .text.wdt_hal_is_enabled + 0x00000000 0x1d esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hal_security/libesp_hal_security.a(mpu_hal.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hal_security/libesp_hal_security.a(mpu_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hal_security/libesp_hal_security.a(mpu_hal.c.obj) + .literal.esp_clk_apb_freq + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_loader.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_loader.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_loader.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_loader.c.obj) + .text.esp_clk_apb_freq + 0x00000000 0xd esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_loader.c.obj) + .debug_frame 0x00000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_loader.c.obj) + .debug_info 0x00000000 0xbf esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_loader.c.obj) + .debug_abbrev 0x00000000 0x75 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_loader.c.obj) + .debug_aranges + 0x00000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_loader.c.obj) + .debug_ranges 0x00000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_loader.c.obj) + .debug_line 0x00000000 0x1c3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_loader.c.obj) + .debug_str 0x00000000 0x2e4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_loader.c.obj) + .comment 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_loader.c.obj) + .text 0x00000000 0x18 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_ashldi3.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_ashldi3.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_ashldi3.o) + .debug_line 0x00000000 0x7b C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_ashldi3.o) + .debug_line_str + 0x00000000 0xcd C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_ashldi3.o) + .debug_info 0x00000000 0x31 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_ashldi3.o) + .debug_abbrev 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_ashldi3.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_ashldi3.o) + .debug_str 0x00000000 0xe3 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_ashldi3.o) + .text 0x00000000 0x18 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_lshrdi3.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_lshrdi3.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_lshrdi3.o) + .debug_line 0x00000000 0x7b C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_lshrdi3.o) + .debug_line_str + 0x00000000 0xcd C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_lshrdi3.o) + .debug_info 0x00000000 0x31 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_lshrdi3.o) + .debug_abbrev 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_lshrdi3.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_lshrdi3.o) + .debug_str 0x00000000 0xe3 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_lshrdi3.o) + .text 0x00000000 0x14 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + .debug_line 0x00000000 0x6f C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + .debug_line_str + 0x00000000 0xcd C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + .debug_info 0x00000000 0x31 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + .debug_abbrev 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + .debug_str 0x00000000 0xe4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + .text 0x00000000 0x59 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + .debug_line 0x00000000 0xf9 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + .debug_line_str + 0x00000000 0xce C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + .debug_info 0x00000000 0x24 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + .debug_abbrev 0x00000000 0x14 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + .debug_str 0x00000000 0xda C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + .literal 0x00000000 0x10 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + .text 0x00000000 0x312 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + .debug_line 0x00000000 0x6b1 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + .debug_line_str + 0x00000000 0xce C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + .debug_info 0x00000000 0x25 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + .debug_abbrev 0x00000000 0x14 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + .debug_str 0x00000000 0xda C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + .literal 0x00000000 0xc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + .text 0x00000000 0x1ff C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + .debug_line 0x00000000 0x478 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + .debug_line_str + 0x00000000 0xce C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + .debug_info 0x00000000 0x25 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + .debug_abbrev 0x00000000 0x14 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + .debug_str 0x00000000 0xda C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + .literal 0x00000000 0x10 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + .text 0x00000000 0x213 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + .debug_line 0x00000000 0x4a1 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + .debug_line_str + 0x00000000 0xce C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + .debug_info 0x00000000 0x25 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + .debug_abbrev 0x00000000 0x14 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + .debug_str 0x00000000 0xda C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + .literal 0x00000000 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + .text 0x00000000 0x4c C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + .debug_line 0x00000000 0xe7 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + .debug_line_str + 0x00000000 0xce C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + .debug_info 0x00000000 0x24 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + .debug_abbrev 0x00000000 0x14 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + .debug_str 0x00000000 0xda C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + .literal 0x00000000 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + .text 0x00000000 0x5d C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + .debug_line 0x00000000 0x117 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + .debug_line_str + 0x00000000 0xce C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + .debug_info 0x00000000 0x24 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + .debug_abbrev 0x00000000 0x14 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + .debug_str 0x00000000 0xda C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + .text 0x00000000 0x3d C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + .debug_line 0x00000000 0xc9 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + .debug_line_str + 0x00000000 0xce C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + .debug_info 0x00000000 0x24 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + .debug_abbrev 0x00000000 0x14 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + .debug_str 0x00000000 0xda C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + .literal 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + .text 0x00000000 0x62 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + .debug_line 0x00000000 0x117 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + .debug_line_str + 0x00000000 0xce C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + .debug_info 0x00000000 0x24 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + .debug_abbrev 0x00000000 0x14 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + .debug_str 0x00000000 0xda C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + .literal 0x00000000 0xc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .text 0x00000000 0x37 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_frame 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_info 0x00000000 0xd3 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_abbrev 0x00000000 0x6e C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_loclists + 0x00000000 0xf5 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_line 0x00000000 0xef C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_str 0x00000000 0x18e C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_line_str + 0x00000000 0x18e C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .comment 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .text 0x00000000 0x1fa C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_frame 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .eh_frame 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_info 0x00000000 0x650 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_abbrev 0x00000000 0x195 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_loclists + 0x00000000 0x496 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_rnglists + 0x00000000 0x47 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_line 0x00000000 0x93b C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_str 0x00000000 0x204 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_line_str + 0x00000000 0x18e C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .comment 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .text 0x00000000 0x25e C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + .debug_frame 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + .eh_frame 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + .debug_info 0x00000000 0x6c4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + .debug_abbrev 0x00000000 0x1ad C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + .debug_loclists + 0x00000000 0x4b3 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + .debug_rnglists + 0x00000000 0x43 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + .debug_line 0x00000000 0xa01 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + .debug_str 0x00000000 0x204 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + .debug_line_str + 0x00000000 0x18e C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + .comment 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + .literal 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memcpy.S.o) + .text 0x00000000 0x135 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memcpy.S.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memcpy.S.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memcpy.S.o) + .debug_line 0x00000000 0x30f C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memcpy.S.o) + .debug_line_str + 0x00000000 0xab C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memcpy.S.o) + .debug_info 0x00000000 0x33 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memcpy.S.o) + .debug_abbrev 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memcpy.S.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memcpy.S.o) + .debug_str 0x00000000 0xbe C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memcpy.S.o) + .literal 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memset.S.o) + .text 0x00000000 0x74 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memset.S.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memset.S.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memset.S.o) + .debug_line 0x00000000 0x146 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memset.S.o) + .debug_line_str + 0x00000000 0xab C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memset.S.o) + .debug_info 0x00000000 0x31 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memset.S.o) + .debug_abbrev 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memset.S.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memset.S.o) + .debug_str 0x00000000 0xbe C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memset.S.o) + .literal 0x00000000 0xc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strlen.S.o) + .text 0x00000000 0x63 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strlen.S.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strlen.S.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strlen.S.o) + .debug_line 0x00000000 0x122 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strlen.S.o) + .debug_line_str + 0x00000000 0xab C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strlen.S.o) + .debug_info 0x00000000 0x31 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strlen.S.o) + .debug_abbrev 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strlen.S.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strlen.S.o) + .debug_str 0x00000000 0xbe C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strlen.S.o) + .literal 0x00000000 0xc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strncpy.S.o) + .text 0x00000000 0x113 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strncpy.S.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strncpy.S.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strncpy.S.o) + .debug_line 0x00000000 0x2a8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strncpy.S.o) + .debug_line_str + 0x00000000 0xac C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strncpy.S.o) + .debug_info 0x00000000 0x33 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strncpy.S.o) + .debug_abbrev 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strncpy.S.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strncpy.S.o) + .debug_str 0x00000000 0xc0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strncpy.S.o) + .literal.bzero + 0x00000000 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_bzero.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_bzero.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_bzero.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_bzero.c.o) + .text.bzero 0x00000000 0x12 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_bzero.c.o) + .debug_frame 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_bzero.c.o) + .debug_info 0x00000000 0xf7 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_bzero.c.o) + .debug_abbrev 0x00000000 0xc4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_bzero.c.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_bzero.c.o) + .debug_rnglists + 0x00000000 0x13 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_bzero.c.o) + .debug_line 0x00000000 0x8c C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_bzero.c.o) + .debug_str 0x00000000 0x1af C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_bzero.c.o) + .debug_line_str + 0x00000000 0x200 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_bzero.c.o) + .comment 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_bzero.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memcmp.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memcmp.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memcmp.c.o) + .text.memcmp 0x00000000 0x26 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memcmp.c.o) + .debug_frame 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memcmp.c.o) + .debug_info 0x00000000 0xfd C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memcmp.c.o) + .debug_abbrev 0x00000000 0xa7 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memcmp.c.o) + .debug_loclists + 0x00000000 0x89 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memcmp.c.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memcmp.c.o) + .debug_rnglists + 0x00000000 0x13 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memcmp.c.o) + .debug_line 0x00000000 0xf0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memcmp.c.o) + .debug_str 0x00000000 0x196 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memcmp.c.o) + .debug_line_str + 0x00000000 0x1b8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memcmp.c.o) + .comment 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memcmp.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcspn.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcspn.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcspn.c.o) + .text.strcspn 0x00000000 0x25 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcspn.c.o) + .debug_frame 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcspn.c.o) + .debug_info 0x00000000 0xf7 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcspn.c.o) + .debug_abbrev 0x00000000 0xb6 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcspn.c.o) + .debug_loclists + 0x00000000 0x51 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcspn.c.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcspn.c.o) + .debug_rnglists + 0x00000000 0x13 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcspn.c.o) + .debug_line 0x00000000 0xea C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcspn.c.o) + .debug_str 0x00000000 0x197 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcspn.c.o) + .debug_line_str + 0x00000000 0x1bb C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcspn.c.o) + .comment 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcspn.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strstr.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strstr.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strstr.c.o) + .text.strstr 0x00000000 0x36 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strstr.c.o) + .debug_frame 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strstr.c.o) + .debug_info 0x00000000 0xf1 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strstr.c.o) + .debug_abbrev 0x00000000 0xa7 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strstr.c.o) + .debug_loclists + 0x00000000 0x3b C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strstr.c.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strstr.c.o) + .debug_rnglists + 0x00000000 0x13 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strstr.c.o) + .debug_line 0x00000000 0x12b C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strstr.c.o) + .debug_str 0x00000000 0x196 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strstr.c.o) + .debug_line_str + 0x00000000 0x1b8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strstr.c.o) + .comment 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strstr.c.o) + +Memory Configuration + +Name Origin Length Attributes +iram_loader_seg 0x40078000 0x00008000 xrw +iram_seg 0x40080400 0x0000fc00 xrw +dram_seg 0x3fff0000 0x00006000 rw +*default* 0x00000000 0xffffffff + +Linker script and memory map + + 0x00000000 IDF_TARGET_ESP32 = 0x0 +LOAD CMakeFiles/bootloader.elf.dir/project_elf_src_esp32.c.obj +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/soc/libsoc.a +LOAD esp-idf/hal/libhal.a +LOAD esp-idf/esp_hal_gpio/libesp_hal_gpio.a +LOAD esp-idf/micro-ecc/libmicro-ecc.a +LOAD esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a +LOAD esp-idf/esp_hal_clock/libesp_hal_clock.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a +LOAD esp-idf/esp_hal_timg/libesp_hal_timg.a +LOAD esp-idf/esp_hal_wdt/libesp_hal_wdt.a +LOAD esp-idf/esp_hal_uart/libesp_hal_uart.a +LOAD esp-idf/esp_hal_i2s/libesp_hal_i2s.a +LOAD esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a +LOAD esp-idf/esp_hal_security/libesp_hal_security.a +LOAD esp-idf/esp_security/libesp_security.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/esp_system/libesp_system.a +LOAD esp-idf/esp_hw_support/libesp_hw_support.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_rom/libesp_rom.a +LOAD esp-idf/log/liblog.a +LOAD esp-idf/main/libmain.a +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/soc/libsoc.a +LOAD esp-idf/hal/libhal.a +LOAD esp-idf/esp_hal_gpio/libesp_hal_gpio.a +LOAD esp-idf/micro-ecc/libmicro-ecc.a +LOAD esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a +LOAD esp-idf/esp_hal_clock/libesp_hal_clock.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a +LOAD esp-idf/esp_hal_timg/libesp_hal_timg.a +LOAD esp-idf/esp_hal_wdt/libesp_hal_wdt.a +LOAD esp-idf/esp_hal_uart/libesp_hal_uart.a +LOAD esp-idf/esp_hal_i2s/libesp_hal_i2s.a +LOAD esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a +LOAD esp-idf/esp_hal_security/libesp_hal_security.a +LOAD esp-idf/esp_security/libesp_security.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/esp_system/libesp_system.a +LOAD esp-idf/esp_hw_support/libesp_hw_support.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_rom/libesp_rom.a +LOAD esp-idf/log/liblog.a +LOAD C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/soc/libsoc.a +LOAD esp-idf/hal/libhal.a +LOAD esp-idf/esp_hal_gpio/libesp_hal_gpio.a +LOAD esp-idf/micro-ecc/libmicro-ecc.a +LOAD esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a +LOAD esp-idf/esp_hal_clock/libesp_hal_clock.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a +LOAD esp-idf/esp_hal_timg/libesp_hal_timg.a +LOAD esp-idf/esp_hal_wdt/libesp_hal_wdt.a +LOAD esp-idf/esp_hal_uart/libesp_hal_uart.a +LOAD esp-idf/esp_hal_i2s/libesp_hal_i2s.a +LOAD esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a +LOAD esp-idf/esp_hal_security/libesp_hal_security.a +LOAD esp-idf/esp_security/libesp_security.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/esp_system/libesp_system.a +LOAD esp-idf/esp_hw_support/libesp_hw_support.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_rom/libesp_rom.a +LOAD esp-idf/log/liblog.a +LOAD C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/soc/libsoc.a +LOAD esp-idf/hal/libhal.a +LOAD esp-idf/esp_hal_gpio/libesp_hal_gpio.a +LOAD esp-idf/micro-ecc/libmicro-ecc.a +LOAD esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a +LOAD esp-idf/esp_hal_clock/libesp_hal_clock.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a +LOAD esp-idf/esp_hal_timg/libesp_hal_timg.a +LOAD esp-idf/esp_hal_wdt/libesp_hal_wdt.a +LOAD esp-idf/esp_hal_uart/libesp_hal_uart.a +LOAD esp-idf/esp_hal_i2s/libesp_hal_i2s.a +LOAD esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a +LOAD esp-idf/esp_hal_security/libesp_hal_security.a +LOAD esp-idf/esp_security/libesp_security.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/esp_system/libesp_system.a +LOAD esp-idf/esp_hw_support/libesp_hw_support.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_rom/libesp_rom.a +LOAD esp-idf/log/liblog.a +LOAD C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/soc/libsoc.a +LOAD esp-idf/hal/libhal.a +LOAD esp-idf/esp_hal_gpio/libesp_hal_gpio.a +LOAD esp-idf/micro-ecc/libmicro-ecc.a +LOAD esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a +LOAD esp-idf/esp_hal_clock/libesp_hal_clock.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a +LOAD esp-idf/esp_hal_timg/libesp_hal_timg.a +LOAD esp-idf/esp_hal_wdt/libesp_hal_wdt.a +LOAD esp-idf/esp_hal_uart/libesp_hal_uart.a +LOAD esp-idf/esp_hal_i2s/libesp_hal_i2s.a +LOAD esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a +LOAD esp-idf/esp_hal_security/libesp_hal_security.a +LOAD esp-idf/esp_security/libesp_security.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/esp_system/libesp_system.a +LOAD esp-idf/esp_hw_support/libesp_hw_support.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_rom/libesp_rom.a +LOAD esp-idf/log/liblog.a +LOAD C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a +LOAD C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a +START GROUP +LOAD C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a +LOAD C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a +END GROUP +LOAD C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a + [!provide] PROVIDE (Add2SelfBigHex256 = 0x40015b7c) + [!provide] PROVIDE (AddBigHex256 = 0x40015b28) + [!provide] PROVIDE (AddBigHexModP256 = 0x40015c98) + [!provide] PROVIDE (AddP256 = 0x40015c74) + [!provide] PROVIDE (AddPdiv2_256 = 0x40015ce0) + [!provide] PROVIDE (app_gpio_arg = 0x3ffe003c) + [!provide] PROVIDE (app_gpio_handler = 0x3ffe0040) + [!provide] PROVIDE (BasePoint_x_256 = 0x3ff97488) + [!provide] PROVIDE (BasePoint_y_256 = 0x3ff97468) + [!provide] PROVIDE (bigHexInversion256 = 0x400168f0) + [!provide] PROVIDE (bigHexP256 = 0x3ff973bc) + [!provide] PROVIDE (btdm_r_ble_bt_handler_tab_p_get = 0x40019b0c) + [!provide] PROVIDE (btdm_r_btdm_option_data_p_get = 0x40010004) + [!provide] PROVIDE (btdm_r_btdm_rom_version_get = 0x40010078) + [!provide] PROVIDE (btdm_r_data_init = 0x4001002c) + [!provide] PROVIDE (btdm_r_import_rf_phy_func_p_get = 0x40054298) + [!provide] PROVIDE (btdm_r_ip_func_p_get = 0x40019af0) + [!provide] PROVIDE (btdm_r_ip_func_p_set = 0x40019afc) + [!provide] PROVIDE (btdm_r_modules_func_p_get = 0x4005427c) + [!provide] PROVIDE (btdm_r_modules_func_p_set = 0x40054270) + [!provide] PROVIDE (btdm_r_plf_func_p_set = 0x40054288) + [!provide] PROVIDE (bt_util_buf_env = 0x3ffb8bd4) + 0x400095e0 PROVIDE (cache_flash_mmu_set_rom = 0x400095e0) + 0x40009a14 PROVIDE (Cache_Flush_rom = 0x40009a14) + 0x40009ab8 PROVIDE (Cache_Read_Disable_rom = 0x40009ab8) + 0x40009a84 PROVIDE (Cache_Read_Enable_rom = 0x40009a84) + [!provide] PROVIDE (Cache_Read_Init_rom = 0x40009950) + [!provide] PROVIDE (cache_sram_mmu_set_rom = 0x400097f4) + [!provide] PROVIDE (calc_rtc_memory_crc = 0x40008170) + [!provide] PROVIDE (__clear_cache = 0x40063860) + [!provide] PROVIDE (co_default_bdaddr = 0x3ffae704) + [!provide] PROVIDE (co_null_bdaddr = 0x3ffb80e0) + [!provide] PROVIDE (co_sca2ppm = 0x3ff971e8) + [!provide] PROVIDE (crc16_be = 0x4005d09c) + [!provide] PROVIDE (crc16_le = 0x4005d05c) + [!provide] PROVIDE (crc32_be = 0x4005d024) + 0x4005cfec PROVIDE (crc32_le = 0x4005cfec) + [!provide] PROVIDE (crc8_be = 0x4005d114) + [!provide] PROVIDE (crc8_le = 0x4005d0e0) + [!provide] PROVIDE (_data_end_rom = 0x4000d5c8) + [!provide] PROVIDE (_data_end_btdm_rom = 0x4000d4f8) + [!provide] PROVIDE (_data_start_rom = 0x4000d4f8) + [!provide] PROVIDE (_data_start_btdm_rom = 0x4000d4f4) + [!provide] PROVIDE (_data_start_btdm = 0x3ffae6e0) + [!provide] PROVIDE (_data_end_btdm = 0x3ffaff10) + [!provide] PROVIDE (_bss_start_btdm = 0x3ffb8000) + [!provide] PROVIDE (_bss_end_btdm = 0x3ffbff70) + [!provide] PROVIDE (dbg_default_handler = 0x3ff97218) + [!provide] PROVIDE (dbg_default_state = 0x3ff97220) + [!provide] PROVIDE (dbg_state = 0x3ffb8d5d) + [!provide] PROVIDE (DebugE256PublicKey_x = 0x3ff97428) + [!provide] PROVIDE (DebugE256PublicKey_y = 0x3ff97408) + [!provide] PROVIDE (DebugE256SecretKey = 0x3ff973e8) + [!provide] PROVIDE (debug_timer = 0x3ffe042c) + [!provide] PROVIDE (debug_timerfn = 0x3ffe0430) + [!provide] PROVIDE (dh_group14_generator = 0x3ff9ac60) + [!provide] PROVIDE (dh_group14_prime = 0x3ff9ab60) + [!provide] PROVIDE (dh_group15_generator = 0x3ff9ab5f) + [!provide] PROVIDE (dh_group15_prime = 0x3ff9a9df) + [!provide] PROVIDE (dh_group16_generator = 0x3ff9a9de) + [!provide] PROVIDE (dh_group16_prime = 0x3ff9a7de) + [!provide] PROVIDE (dh_group17_generator = 0x3ff9a7dd) + [!provide] PROVIDE (dh_group17_prime = 0x3ff9a4dd) + [!provide] PROVIDE (dh_group18_generator = 0x3ff9a4dc) + [!provide] PROVIDE (dh_group18_prime = 0x3ff9a0dc) + [!provide] PROVIDE (dh_group1_generator = 0x3ff9ae03) + [!provide] PROVIDE (dh_group1_prime = 0x3ff9ada3) + [!provide] PROVIDE (dh_group2_generator = 0x3ff9ada2) + [!provide] PROVIDE (dh_group2_prime = 0x3ff9ad22) + [!provide] PROVIDE (dh_group5_generator = 0x3ff9ad21) + [!provide] PROVIDE (dh_group5_prime = 0x3ff9ac61) + 0x3ffae290 PROVIDE (g_rom_spiflash_dummy_len_plus = 0x3ffae290) + [!provide] PROVIDE (ecc_env = 0x3ffb8d60) + [!provide] PROVIDE (ecc_Jacobian_InfinityPoint256 = 0x3ff972e8) + [!provide] PROVIDE (em_buf_env = 0x3ffb8d74) + [!provide] PROVIDE (esp_crc8 = 0x4005d144) + [!provide] PROVIDE (_etext = 0x4000d66c) + [!provide] PROVIDE (ets_readySet_ = 0x3ffe01f0) + [!provide] PROVIDE (ets_startup_callback = 0x3ffe0404) + [!provide] PROVIDE (rwip_coex_cfg = 0x3ff9914c) + [!provide] PROVIDE (rwip_priority = 0x3ff99159) + [!provide] PROVIDE (exc_cause_table = 0x3ff991d0) + [!provide] PROVIDE (GF_Jacobian_Point_Addition256 = 0x400163a4) + [!provide] PROVIDE (GF_Jacobian_Point_Double256 = 0x40016260) + [!provide] PROVIDE (GF_Point_Jacobian_To_Affine256 = 0x40016b0c) + [!provide] PROVIDE (g_phyFuns_instance = 0x3ffae0c4) + 0x3ffae270 PROVIDE (g_rom_flashchip = 0x3ffae270) + [!provide] PROVIDE (gTxMsg = 0x3ffe0050) + [!provide] PROVIDE (hci_cmd_desc_root_tab = 0x3ff976d4) + [!provide] PROVIDE (hci_cmd_desc_tab_ctrl_bb = 0x3ff97b70) + [!provide] PROVIDE (hci_cmd_desc_tab_info_par = 0x3ff97b1c) + [!provide] PROVIDE (hci_cmd_desc_tab_le = 0x3ff97870) + [!provide] PROVIDE (hci_cmd_desc_tab_lk_ctrl = 0x3ff97fc0) + [!provide] PROVIDE (hci_cmd_desc_tab_lk_pol = 0x3ff97f3c) + [!provide] PROVIDE (hci_cmd_desc_tab_stat_par = 0x3ff97ac8) + [!provide] PROVIDE (hci_cmd_desc_tab_testing = 0x3ff97a98) + [!provide] PROVIDE (hci_cmd_desc_tab_vs = 0x3ff97714) + [!provide] PROVIDE (hci_command_handler = 0x4004c928) + [!provide] PROVIDE (hci_env = 0x3ffb9350) + [!provide] PROVIDE (rwip_env = 0x3ffb8bcc) + [!provide] PROVIDE (hci_evt_dbg_desc_tab = 0x3ff9750c) + [!provide] PROVIDE (hci_evt_desc_tab = 0x3ff9751c) + [!provide] PROVIDE (hci_evt_le_desc_tab = 0x3ff974b4) + [!provide] PROVIDE (hci_fc_env = 0x3ffb9340) + [!provide] PROVIDE (jd_decomp = 0x400613e8) + [!provide] PROVIDE (jd_prepare = 0x40060fa8) + [!provide] PROVIDE (ke_env = 0x3ffb93cc) + [!provide] PROVIDE (ke_handler_search = 0x4001a430) + [!provide] PROVIDE (ke_task_env = 0x3ffb81d4) + [!provide] PROVIDE (ke_event_env = 0x3ffb81a4) + [!provide] PROVIDE (lb_default_handler = 0x3ff982b8) + [!provide] PROVIDE (lb_default_state_tab_p_get = 0x4001c198) + [!provide] PROVIDE (lb_env = 0x3ffb9424) + [!provide] PROVIDE (lb_hci_cmd_handler_tab_p_get = 0x4001c18c) + [!provide] PROVIDE (lb_state = 0x3ffb94e8) + [!provide] PROVIDE (lc_default_handler = 0x3ff98648) + [!provide] PROVIDE (lc_default_state_tab_p_get = 0x4002f494) + [!provide] PROVIDE (lc_env = 0x3ffb94ec) + [!provide] PROVIDE (lc_hci_cmd_handler_tab_p_get = 0x4002f488) + [!provide] PROVIDE (lc_state = 0x3ffb9508) + [!provide] PROVIDE (ld_acl_br_sizes = 0x3ff98a2a) + [!provide] PROVIDE (ld_acl_br_types = 0x3ff98a36) + [!provide] PROVIDE (ld_acl_edr_sizes = 0x3ff98a14) + [!provide] PROVIDE (ld_acl_edr_types = 0x3ff98a22) + [!provide] PROVIDE (ld_env = 0x3ffb9510) + [!provide] PROVIDE (ld_pcm_settings_dft = 0x3ff98a0c) + [!provide] PROVIDE (ld_sched_params = 0x3ffb96c0) + [!provide] PROVIDE (ld_sync_train_channels = 0x3ff98a3c) + [!provide] PROVIDE (llc_default_handler = 0x3ff98b3c) + [!provide] PROVIDE (llc_default_state_tab_p_get = 0x40046058) + [!provide] PROVIDE (llc_env = 0x3ffb96d0) + [!provide] PROVIDE (llc_hci_acl_data_tx_handler = 0x40042398) + [!provide] PROVIDE (llc_hci_cmd_handler_tab_p_get = 0x40042358) + [!provide] PROVIDE (llc_hci_command_handler = 0x40042360) + [!provide] PROVIDE (llcp_pdu_handler_tab_p_get = 0x40043f64) + [!provide] PROVIDE (llc_state = 0x3ffb96f8) + [!provide] PROVIDE (lldesc_build_chain = 0x4000a850) + [!provide] PROVIDE (lldesc_num2link = 0x4000a948) + [!provide] PROVIDE (lldesc_set_owner = 0x4000a974) + [!provide] PROVIDE (lld_evt_deferred_elt_push = 0x400466b4) + [!provide] PROVIDE (lld_evt_deferred_elt_pop = 0x400466dc) + [!provide] PROVIDE (lld_evt_winsize_change = 0x40046730) + [!provide] PROVIDE (lld_evt_rxwin_compute = 0x400467c8) + [!provide] PROVIDE (lld_evt_slave_time_compute = 0x40046818) + [!provide] PROVIDE (lld_evt_env = 0x3ffb9704) + [!provide] PROVIDE (lld_evt_elt_wait_get = 0x400468e4) + [!provide] PROVIDE (lld_evt_get_next_free_slot = 0x4004692c) + [!provide] PROVIDE (lld_pdu_adv_pk_desc_tab = 0x3ff98c70) + [!provide] PROVIDE (lld_pdu_llcp_pk_desc_tab = 0x3ff98b68) + [!provide] PROVIDE (lld_pdu_tx_flush_list = 0x4004a760) + [!provide] PROVIDE (lld_pdu_pack = 0x4004ab14) + [!provide] PROVIDE (LLM_AA_CT1 = 0x3ff98d8a) + [!provide] PROVIDE (LLM_AA_CT2 = 0x3ff98d88) + [!provide] PROVIDE (llm_default_handler = 0x3ff98d80) + [!provide] PROVIDE (llm_default_state_tab_p_get = 0x4004e718) + [!provide] PROVIDE (llm_hci_cmd_handler_tab_p_get = 0x4004c920) + [!provide] PROVIDE (llm_le_env = 0x3ffb976c) + [!provide] PROVIDE (llm_local_cmds = 0x3ff98d38) + [!provide] PROVIDE (llm_local_data_len_values = 0x3ff98d1c) + [!provide] PROVIDE (llm_local_le_feats = 0x3ff98d30) + [!provide] PROVIDE (llm_local_le_states = 0x3ff98d28) + [!provide] PROVIDE (llm_state = 0x3ffb985c) + [!provide] PROVIDE (lm_default_handler = 0x3ff990e0) + [!provide] PROVIDE (lm_default_state_tab_p_get = 0x40054268) + [!provide] PROVIDE (lm_env = 0x3ffb9860) + [!provide] PROVIDE (lm_hci_cmd_handler_tab_p_get = 0x4005425c) + [!provide] PROVIDE (lm_local_supp_feats = 0x3ff990ee) + [!provide] PROVIDE (lm_n_page_tab = 0x3ff990e8) + [!provide] PROVIDE (lmp_desc_tab = 0x3ff96e6c) + [!provide] PROVIDE (lmp_ext_desc_tab = 0x3ff96d9c) + [!provide] PROVIDE (lm_state = 0x3ffb9a1c) + [!provide] PROVIDE (maxSecretKey_256 = 0x3ff97448) + 0x400095a4 PROVIDE (mmu_init = 0x400095a4) + [!provide] PROVIDE (MultiplyBigHexByUint32_256 = 0x40016214) + [!provide] PROVIDE (MultiplyBigHexModP256 = 0x400160b8) + [!provide] PROVIDE (MultiplyByU32ModP256 = 0x40015fdc) + [!provide] PROVIDE (multofup = 0x4000ab8c) + [!provide] PROVIDE (mz_adler32 = 0x4005edbc) + [!provide] PROVIDE (mz_crc32 = 0x4005ee88) + [!provide] PROVIDE (mz_free = 0x4005eed4) + [!provide] PROVIDE (notEqual256 = 0x40015b04) + [!provide] PROVIDE (one_bits = 0x3ff971f8) + [!provide] PROVIDE (phy_get_romfuncs = 0x40004100) + [!provide] PROVIDE (_Pri_4_HandlerAddress = 0x3ffe0648) + [!provide] PROVIDE (_Pri_5_HandlerAddress = 0x3ffe064c) + [!provide] PROVIDE (r_btdm_option_data = 0x3ffae6e0) + [!provide] PROVIDE (r_bt_util_buf_acl_rx_alloc = 0x40010218) + [!provide] PROVIDE (r_bt_util_buf_acl_rx_free = 0x40010234) + [!provide] PROVIDE (r_bt_util_buf_acl_tx_alloc = 0x40010268) + [!provide] PROVIDE (r_bt_util_buf_acl_tx_free = 0x40010280) + [!provide] PROVIDE (r_bt_util_buf_init = 0x400100e4) + [!provide] PROVIDE (r_bt_util_buf_lmp_tx_alloc = 0x400101d0) + [!provide] PROVIDE (r_bt_util_buf_lmp_tx_free = 0x400101ec) + [!provide] PROVIDE (r_bt_util_buf_sync_clear = 0x400103c8) + [!provide] PROVIDE (r_bt_util_buf_sync_init = 0x400102c4) + [!provide] PROVIDE (r_bt_util_buf_sync_rx_alloc = 0x40010468) + [!provide] PROVIDE (r_bt_util_buf_sync_rx_free = 0x4001049c) + [!provide] PROVIDE (r_bt_util_buf_sync_tx_alloc = 0x400103ec) + [!provide] PROVIDE (r_bt_util_buf_sync_tx_free = 0x40010428) + [!provide] PROVIDE (r_co_bdaddr_compare = 0x40014324) + [!provide] PROVIDE (r_co_bytes_to_string = 0x400142e4) + [!provide] PROVIDE (r_co_list_check_size_available = 0x400142c4) + [!provide] PROVIDE (r_co_list_extract = 0x4001404c) + [!provide] PROVIDE (r_co_list_extract_after = 0x40014118) + [!provide] PROVIDE (r_co_list_find = 0x4001419c) + [!provide] PROVIDE (r_co_list_init = 0x40013f14) + [!provide] PROVIDE (r_co_list_insert_after = 0x40014254) + [!provide] PROVIDE (r_co_list_insert_before = 0x40014200) + [!provide] PROVIDE (r_co_list_merge = 0x400141bc) + [!provide] PROVIDE (r_co_list_pool_init = 0x40013f30) + [!provide] PROVIDE (r_co_list_pop_front = 0x40014028) + [!provide] PROVIDE (r_co_list_push_back = 0x40013fb8) + [!provide] PROVIDE (r_co_list_push_front = 0x40013ff4) + [!provide] PROVIDE (r_co_list_size = 0x400142ac) + [!provide] PROVIDE (r_co_nb_good_channels = 0x40014360) + [!provide] PROVIDE (r_co_slot_to_duration = 0x40014348) + [!provide] PROVIDE (r_dbg_init = 0x40014394) + [!provide] PROVIDE (r_dbg_platform_reset_complete = 0x400143d0) + [!provide] PROVIDE (r_dbg_swdiag_init = 0x40014470) + [!provide] PROVIDE (r_dbg_swdiag_read = 0x400144a4) + [!provide] PROVIDE (r_dbg_swdiag_write = 0x400144d0) + [!provide] PROVIDE (r_E1 = 0x400108e8) + [!provide] PROVIDE (r_E21 = 0x40010968) + [!provide] PROVIDE (r_E22 = 0x400109b4) + [!provide] PROVIDE (r_E3 = 0x40010a58) + [!provide] PROVIDE (lm_n192_mod_mul = 0x40011dc0) + [!provide] PROVIDE (lm_n192_mod_add = 0x40011e9c) + [!provide] PROVIDE (lm_n192_mod_sub = 0x40011eec) + [!provide] PROVIDE (r_ea_alarm_clear = 0x40015ab4) + [!provide] PROVIDE (r_ea_alarm_set = 0x40015a10) + [!provide] PROVIDE (r_ea_elt_cancel = 0x400150d0) + [!provide] PROVIDE (r_ea_elt_create = 0x40015264) + [!provide] PROVIDE (r_ea_elt_insert = 0x400152a8) + [!provide] PROVIDE (r_ea_elt_remove = 0x400154f0) + [!provide] PROVIDE (r_ea_finetimer_isr = 0x400155d4) + [!provide] PROVIDE (r_ea_init = 0x40015228) + [!provide] PROVIDE (r_ea_interval_create = 0x4001555c) + [!provide] PROVIDE (r_ea_interval_delete = 0x400155a8) + [!provide] PROVIDE (r_ea_interval_duration_req = 0x4001597c) + [!provide] PROVIDE (r_ea_interval_insert = 0x4001557c) + [!provide] PROVIDE (r_ea_interval_remove = 0x40015590) + [!provide] PROVIDE (ea_conflict_check = 0x40014e9c) + [!provide] PROVIDE (ea_prog_timer = 0x40014f88) + [!provide] PROVIDE (r_ea_offset_req = 0x40015748) + [!provide] PROVIDE (r_ea_sleep_check = 0x40015928) + [!provide] PROVIDE (r_ea_sw_isr = 0x40015724) + [!provide] PROVIDE (r_ea_time_get_halfslot_rounded = 0x40015894) + [!provide] PROVIDE (r_ea_time_get_slot_rounded = 0x400158d4) + [!provide] PROVIDE (r_ecc_abort_key256_generation = 0x40017070) + [!provide] PROVIDE (r_ecc_generate_key256 = 0x40016e00) + [!provide] PROVIDE (r_ecc_gen_new_public_key = 0x400170c0) + [!provide] PROVIDE (r_ecc_gen_new_secret_key = 0x400170e4) + [!provide] PROVIDE (r_ecc_get_debug_Keys = 0x40017224) + [!provide] PROVIDE (r_ecc_init = 0x40016dbc) + [!provide] PROVIDE (ecc_point_multiplication_uint8_256 = 0x40016804) + [!provide] PROVIDE (RecvBuff = 0x3ffe009c) + [!provide] PROVIDE (r_em_buf_init = 0x4001729c) + [!provide] PROVIDE (r_em_buf_rx_buff_addr_get = 0x400173e8) + [!provide] PROVIDE (r_em_buf_rx_free = 0x400173c4) + [!provide] PROVIDE (r_em_buf_tx_buff_addr_get = 0x40017404) + [!provide] PROVIDE (r_em_buf_tx_free = 0x4001741c) + [!provide] PROVIDE (r_F1_256 = 0x400133e4) + [!provide] PROVIDE (r_F2_256 = 0x40013568) + [!provide] PROVIDE (r_F3_256 = 0x40013664) + [!provide] PROVIDE (RFPLL_ICP_TABLE = 0x3ffb8b7c) + [!provide] PROVIDE (r_G_256 = 0x40013470) + [!provide] PROVIDE (r_H3 = 0x40013760) + [!provide] PROVIDE (r_H4 = 0x40013830) + [!provide] PROVIDE (r_h4tl_init = 0x40017878) + [!provide] PROVIDE (r_h4tl_start = 0x40017924) + [!provide] PROVIDE (r_h4tl_stop = 0x40017934) + [!provide] PROVIDE (r_h4tl_write = 0x400178d0) + [!provide] PROVIDE (r_H5 = 0x400138dc) + [!provide] PROVIDE (r_hashConcat = 0x40013a38) + [!provide] PROVIDE (r_hci_acl_tx_data_alloc = 0x4001951c) + [!provide] PROVIDE (r_hci_acl_tx_data_received = 0x40019654) + [!provide] PROVIDE (r_hci_bt_acl_bdaddr_register = 0x40018900) + [!provide] PROVIDE (r_hci_bt_acl_bdaddr_unregister = 0x400189ac) + [!provide] PROVIDE (r_hci_bt_acl_conhdl_register = 0x4001895c) + [!provide] PROVIDE (r_hci_cmd_get_max_param_size = 0x400192d0) + [!provide] PROVIDE (r_hci_cmd_received = 0x400192f8) + [!provide] PROVIDE (r_hci_evt_filter_add = 0x40018a64) + [!provide] PROVIDE (r_hci_evt_mask_set = 0x400189e4) + [!provide] PROVIDE (r_hci_fc_acl_buf_size_set = 0x40017988) + [!provide] PROVIDE (r_hci_fc_acl_en = 0x400179d8) + [!provide] PROVIDE (r_hci_fc_acl_packet_sent = 0x40017a3c) + [!provide] PROVIDE (r_hci_fc_check_host_available_nb_acl_packets = 0x40017aa4) + [!provide] PROVIDE (r_hci_fc_check_host_available_nb_sync_packets = 0x40017ac8) + [!provide] PROVIDE (r_hci_fc_host_nb_acl_pkts_complete = 0x40017a6c) + [!provide] PROVIDE (r_hci_fc_host_nb_sync_pkts_complete = 0x40017a88) + [!provide] PROVIDE (r_hci_fc_init = 0x40017974) + [!provide] PROVIDE (r_hci_fc_sync_buf_size_set = 0x400179b0) + [!provide] PROVIDE (r_hci_fc_sync_en = 0x40017a30) + [!provide] PROVIDE (r_hci_fc_sync_packet_sent = 0x40017a54) + [!provide] PROVIDE (r_hci_init = 0x40018538) + [!provide] PROVIDE (r_hci_look_for_cmd_desc = 0x40018454) + [!provide] PROVIDE (r_hci_look_for_dbg_evt_desc = 0x400184c4) + [!provide] PROVIDE (r_hci_look_for_evt_desc = 0x400184a0) + [!provide] PROVIDE (r_hci_look_for_le_evt_desc = 0x400184e0) + [!provide] PROVIDE (r_hci_reset = 0x4001856c) + [!provide] PROVIDE (r_hci_send_2_host = 0x400185bc) + [!provide] PROVIDE (r_hci_sync_tx_data_alloc = 0x40019754) + [!provide] PROVIDE (r_hci_sync_tx_data_received = 0x400197c0) + [!provide] PROVIDE (r_hci_tl_init = 0x40019290) + [!provide] PROVIDE (r_hci_tl_send = 0x40019228) + [!provide] PROVIDE (r_hci_util_pack = 0x40019874) + [!provide] PROVIDE (r_hci_util_unpack = 0x40019998) + [!provide] PROVIDE (r_hci_voice_settings_get = 0x40018bdc) + [!provide] PROVIDE (r_hci_voice_settings_set = 0x40018be8) + [!provide] PROVIDE (r_HMAC = 0x40013968) + [!provide] PROVIDE (r_import_rf_phy_func = 0x3ffb8354) + [!provide] PROVIDE (r_import_rf_phy_func_p = 0x3ffafd64) + [!provide] PROVIDE (r_ip_funcs = 0x3ffae710) + [!provide] PROVIDE (r_ip_funcs_p = 0x3ffae70c) + [!provide] PROVIDE (r_ke_check_malloc = 0x40019de0) + [!provide] PROVIDE (r_ke_event_callback_set = 0x40019ba8) + [!provide] PROVIDE (r_ke_event_clear = 0x40019c2c) + [!provide] PROVIDE (r_ke_event_flush = 0x40019ccc) + [!provide] PROVIDE (r_ke_event_get = 0x40019c78) + [!provide] PROVIDE (r_ke_event_get_all = 0x40019cc0) + [!provide] PROVIDE (r_ke_event_init = 0x40019b90) + [!provide] PROVIDE (r_ke_event_schedule = 0x40019cdc) + [!provide] PROVIDE (r_ke_event_set = 0x40019be0) + [!provide] PROVIDE (r_ke_flush = 0x4001a374) + [!provide] PROVIDE (r_ke_free = 0x4001a014) + [!provide] PROVIDE (r_ke_get_max_mem_usage = 0x4001a1c8) + [!provide] PROVIDE (r_ke_get_mem_usage = 0x4001a1a0) + [!provide] PROVIDE (r_ke_init = 0x4001a318) + [!provide] PROVIDE (r_ke_is_free = 0x4001a184) + [!provide] PROVIDE (r_ke_malloc = 0x40019eb4) + [!provide] PROVIDE (r_ke_mem_init = 0x40019d3c) + [!provide] PROVIDE (r_ke_mem_is_empty = 0x40019d8c) + [!provide] PROVIDE (r_ke_msg_alloc = 0x4001a1e0) + [!provide] PROVIDE (r_ke_msg_dest_id_get = 0x4001a2e0) + [!provide] PROVIDE (r_ke_msg_discard = 0x4001a850) + [!provide] PROVIDE (r_ke_msg_forward = 0x4001a290) + [!provide] PROVIDE (r_ke_msg_forward_new_id = 0x4001a2ac) + [!provide] PROVIDE (r_ke_msg_free = 0x4001a2cc) + [!provide] PROVIDE (r_ke_msg_in_queue = 0x4001a2f8) + [!provide] PROVIDE (r_ke_msg_save = 0x4001a858) + [!provide] PROVIDE (r_ke_msg_send = 0x4001a234) + [!provide] PROVIDE (r_ke_msg_send_basic = 0x4001a26c) + [!provide] PROVIDE (r_ke_msg_src_id_get = 0x4001a2ec) + [!provide] PROVIDE (r_ke_queue_extract = 0x40055fd0) + [!provide] PROVIDE (r_ke_queue_insert = 0x40056020) + [!provide] PROVIDE (r_ke_sleep_check = 0x4001a3d8) + [!provide] PROVIDE (r_ke_state_get = 0x4001a7d8) + [!provide] PROVIDE (r_ke_state_set = 0x4001a6fc) + [!provide] PROVIDE (r_ke_stats_get = 0x4001a3f0) + [!provide] PROVIDE (r_ke_task_check = 0x4001a8a4) + [!provide] PROVIDE (r_ke_task_create = 0x4001a674) + [!provide] PROVIDE (r_ke_task_delete = 0x4001a6c0) + [!provide] PROVIDE (r_ke_task_init = 0x4001a650) + [!provide] PROVIDE (r_ke_task_msg_flush = 0x4001a860) + [!provide] PROVIDE (r_ke_timer_active = 0x4001ac08) + [!provide] PROVIDE (r_ke_timer_adjust_all = 0x4001ac30) + [!provide] PROVIDE (r_ke_timer_clear = 0x4001ab90) + [!provide] PROVIDE (r_ke_timer_init = 0x4001aa9c) + [!provide] PROVIDE (r_ke_timer_set = 0x4001aac0) + [!provide] PROVIDE (r_ke_timer_sleep_check = 0x4001ac50) + [!provide] PROVIDE (r_KPrimC = 0x40010ad4) + [!provide] PROVIDE (r_lb_clk_adj_activate = 0x4001ae70) + [!provide] PROVIDE (r_lb_clk_adj_id_get = 0x4001af14) + [!provide] PROVIDE (r_lb_clk_adj_period_update = 0x4001af20) + [!provide] PROVIDE (r_lb_init = 0x4001acd4) + [!provide] PROVIDE (r_lb_mst_key = 0x4001afc0) + [!provide] PROVIDE (r_lb_mst_key_cmp = 0x4001af74) + [!provide] PROVIDE (r_lb_mst_key_restart_enc = 0x4001b0d4) + [!provide] PROVIDE (r_lb_mst_start_act_bcst_enc = 0x4001b198) + [!provide] PROVIDE (r_lb_mst_stop_act_bcst_enc = 0x4001b24c) + [!provide] PROVIDE (r_lb_reset = 0x4001ad38) + [!provide] PROVIDE (r_lb_send_lmp = 0x4001adbc) + [!provide] PROVIDE (r_lb_send_pdu_clk_adj = 0x4001af3c) + [!provide] PROVIDE (r_lb_util_get_csb_mode = 0x4001ada4) + [!provide] PROVIDE (r_lb_util_get_nb_broadcast = 0x4001ad80) + [!provide] PROVIDE (r_lb_util_get_res_lt_addr = 0x4001ad98) + [!provide] PROVIDE (r_lb_util_set_nb_broadcast = 0x4001ad8c) + [!provide] PROVIDE (r_lc_afh_set = 0x4001cc74) + [!provide] PROVIDE (r_lc_afh_start = 0x4001d240) + [!provide] PROVIDE (r_lc_auth_cmp = 0x4001cd54) + [!provide] PROVIDE (r_lc_calc_link_key = 0x4001ce7c) + [!provide] PROVIDE (r_lc_chg_pkt_type_cmp = 0x4001d038) + [!provide] PROVIDE (r_lc_chg_pkt_type_cont = 0x4001cfbc) + [!provide] PROVIDE (r_lc_chg_pkt_type_retry = 0x4001d0ac) + [!provide] PROVIDE (r_lc_chk_to = 0x4001d2a8) + [!provide] PROVIDE (r_lc_cmd_stat_send = 0x4001c914) + [!provide] PROVIDE (r_lc_comb_key_svr = 0x4001d30c) + [!provide] PROVIDE (r_lc_con_cmp = 0x4001d44c) + [!provide] PROVIDE (r_lc_con_cmp_evt_send = 0x4001d4fc) + [!provide] PROVIDE (r_lc_conn_seq_done = 0x40021334) + [!provide] PROVIDE (r_lc_detach = 0x4002037c) + [!provide] PROVIDE (r_lc_dhkey = 0x4001d564) + [!provide] PROVIDE (r_lc_enc_cmp = 0x4001d8bc) + [!provide] PROVIDE (r_lc_enc_key_refresh = 0x4001d720) + [!provide] PROVIDE (r_lc_end_chk_colli = 0x4001d858) + [!provide] PROVIDE (r_lc_end_of_sniff_nego = 0x4001d9a4) + [!provide] PROVIDE (r_lc_enter_sniff_mode = 0x4001ddb8) + [!provide] PROVIDE (r_lc_epr_change_lk = 0x4001db38) + [!provide] PROVIDE (r_lc_epr_cmp = 0x4001da88) + [!provide] PROVIDE (r_lc_epr_resp = 0x4001e0b4) + [!provide] PROVIDE (r_lc_epr_rsw_cmp = 0x4001dd40) + [!provide] PROVIDE (r_lc_ext_feat = 0x40020d6c) + [!provide] PROVIDE (r_lc_feat = 0x40020984) + [!provide] PROVIDE (r_lc_hl_connect = 0x400209e8) + [!provide] PROVIDE (r_lc_init = 0x4001c948) + [!provide] PROVIDE (r_lc_init_calc_f3 = 0x4001deb0) + [!provide] PROVIDE (r_lc_initiator_epr = 0x4001e064) + [!provide] PROVIDE (r_lc_init_passkey_loop = 0x4001dfc0) + [!provide] PROVIDE (r_lc_init_start_mutual_auth = 0x4001df60) + [!provide] PROVIDE (r_lc_key_exch_end = 0x4001e140) + [!provide] PROVIDE (r_lc_legacy_pair = 0x4001e1c0) + [!provide] PROVIDE (r_lc_local_switch = 0x4001e22c) + [!provide] PROVIDE (r_lc_local_trans_mode = 0x4001e2e4) + [!provide] PROVIDE (r_lc_local_untrans_mode = 0x4001e3a0) + [!provide] PROVIDE (r_lc_loc_auth = 0x40020ecc) + [!provide] PROVIDE (r_lc_locepr_lkref = 0x4001d648) + [!provide] PROVIDE (r_lc_locepr_rsw = 0x4001d5d0) + [!provide] PROVIDE (r_lc_loc_sniff = 0x40020a6c) + [!provide] PROVIDE (r_lc_max_slot_mgt = 0x4001e410) + [!provide] PROVIDE (r_lc_mst_key = 0x4001e7c0) + [!provide] PROVIDE (r_lc_mst_qos_done = 0x4001ea80) + [!provide] PROVIDE (r_lc_mst_send_mst_key = 0x4001e8f4) + [!provide] PROVIDE (r_lc_mutual_auth_end = 0x4001e670) + [!provide] PROVIDE (r_lc_mutual_auth_end2 = 0x4001e4f4) + [!provide] PROVIDE (r_lc_packet_type = 0x40021038) + [!provide] PROVIDE (r_lc_pair = 0x40020ddc) + [!provide] PROVIDE (r_lc_pairing_cont = 0x4001eafc) + [!provide] PROVIDE (r_lc_passkey_comm = 0x4001ed20) + [!provide] PROVIDE (r_lc_prepare_all_links_for_clk_adj = 0x40021430) + [!provide] PROVIDE (r_lc_proc_rcv_dhkey = 0x4001edec) + [!provide] PROVIDE (r_lc_ptt = 0x4001ee2c) + [!provide] PROVIDE (r_lc_ptt_cmp = 0x4001eeec) + [!provide] PROVIDE (r_lc_qos_setup = 0x4001ef50) + [!provide] PROVIDE (r_lc_rd_rem_name = 0x4001efd0) + [!provide] PROVIDE (r_lc_release = 0x4001f8a8) + [!provide] PROVIDE (r_lc_rem_enc = 0x4001f124) + [!provide] PROVIDE (r_lc_rem_name_cont = 0x4001f290) + [!provide] PROVIDE (r_lc_rem_nego_trans_mode = 0x4001f1b4) + [!provide] PROVIDE (r_lc_rem_sniff = 0x40020ca4) + [!provide] PROVIDE (r_lc_rem_sniff_sub_rate = 0x40020b10) + [!provide] PROVIDE (r_lc_rem_switch = 0x4001f070) + [!provide] PROVIDE (r_lc_rem_trans_mode = 0x4001f314) + [!provide] PROVIDE (r_lc_rem_unsniff = 0x400207a0) + [!provide] PROVIDE (r_lc_rem_untrans_mode = 0x4001f36c) + [!provide] PROVIDE (r_lc_reset = 0x4001c99c) + [!provide] PROVIDE (r_lc_resp_auth = 0x4001f518) + [!provide] PROVIDE (r_lc_resp_calc_f3 = 0x4001f710) + [!provide] PROVIDE (r_lc_resp_num_comp = 0x40020074) + [!provide] PROVIDE (r_lc_resp_oob_nonce = 0x4001f694) + [!provide] PROVIDE (r_lc_resp_oob_wait_nonce = 0x4001f66c) + [!provide] PROVIDE (r_lc_resp_pair = 0x400208a4) + [!provide] PROVIDE (r_lc_resp_sec_auth = 0x4001f4a0) + [!provide] PROVIDE (r_lc_resp_wait_dhkey_cont = 0x4001f86c) + [!provide] PROVIDE (r_lc_restart_enc = 0x4001f8ec) + [!provide] PROVIDE (r_lc_restart_enc_cont = 0x4001f940) + [!provide] PROVIDE (r_lc_restore_afh_reporting = 0x4001f028) + [!provide] PROVIDE (r_lc_restore_to = 0x4001f9e0) + [!provide] PROVIDE (r_lc_ret_sniff_max_slot_chg = 0x4001fa30) + [!provide] PROVIDE (r_lc_rsw_clean_up = 0x4001dc70) + [!provide] PROVIDE (r_lc_rsw_done = 0x4001db94) + [!provide] PROVIDE (r_lc_sco_baseband_ack = 0x40022b00) + [!provide] PROVIDE (r_lc_sco_detach = 0x40021e40) + [!provide] PROVIDE (r_lc_sco_host_accept = 0x40022118) + [!provide] PROVIDE (r_lc_sco_host_reject = 0x400222b8) + [!provide] PROVIDE (r_lc_sco_host_request = 0x40021f4c) + [!provide] PROVIDE (r_lc_sco_host_request_disc = 0x4002235c) + [!provide] PROVIDE (r_lc_sco_init = 0x40021dc8) + [!provide] PROVIDE (r_lc_sco_peer_accept = 0x40022780) + [!provide] PROVIDE (r_lc_sco_peer_accept_disc = 0x40022a08) + [!provide] PROVIDE (r_lc_sco_peer_reject = 0x40022824) + [!provide] PROVIDE (r_lc_sco_peer_reject_disc = 0x40022a8c) + [!provide] PROVIDE (r_lc_sco_peer_request = 0x4002240c) + [!provide] PROVIDE (r_lc_sco_peer_request_disc = 0x400228ec) + [!provide] PROVIDE (r_lc_sco_release = 0x40021eec) + [!provide] PROVIDE (r_lc_sco_reset = 0x40021dfc) + [!provide] PROVIDE (r_lc_sco_timeout = 0x40022bd4) + [!provide] PROVIDE (r_lc_sec_auth_compute_sres = 0x4001f3ec) + [!provide] PROVIDE (r_lc_semi_key_cmp = 0x40020294) + [!provide] PROVIDE (r_lc_send_enc_chg_evt = 0x4002134c) + [!provide] PROVIDE (r_lc_send_enc_mode = 0x40020220) + [!provide] PROVIDE (r_lc_send_lmp = 0x4001c1a8) + [!provide] PROVIDE (r_lc_send_pdu_acc = 0x4001c21c) + [!provide] PROVIDE (r_lc_send_pdu_acc_ext4 = 0x4001c240) + [!provide] PROVIDE (r_lc_send_pdu_au_rand = 0x4001c308) + [!provide] PROVIDE (r_lc_send_pdu_auto_rate = 0x4001c5d0) + [!provide] PROVIDE (r_lc_send_pdu_clk_adj_ack = 0x4001c46c) + [!provide] PROVIDE (r_lc_send_pdu_clk_adj_req = 0x4001c494) + [!provide] PROVIDE (r_lc_send_pdu_comb_key = 0x4001c368) + [!provide] PROVIDE (r_lc_send_pdu_dhkey_chk = 0x4001c8e8) + [!provide] PROVIDE (r_lc_send_pdu_encaps_head = 0x4001c440) + [!provide] PROVIDE (r_lc_send_pdu_encaps_payl = 0x4001c410) + [!provide] PROVIDE (r_lc_send_pdu_enc_key_sz_req = 0x4001c670) + [!provide] PROVIDE (r_lc_send_pdu_esco_lk_rem_req = 0x4001c5a8) + [!provide] PROVIDE (r_lc_send_pdu_feats_ext_req = 0x4001c6ec) + [!provide] PROVIDE (r_lc_send_pdu_feats_res = 0x4001c694) + [!provide] PROVIDE (r_lc_send_pdu_in_rand = 0x4001c338) + [!provide] PROVIDE (r_lc_send_pdu_io_cap_res = 0x4001c72c) + [!provide] PROVIDE (r_lc_send_pdu_lsto = 0x4001c64c) + [!provide] PROVIDE (r_lc_send_pdu_max_slot = 0x4001c3c8) + [!provide] PROVIDE (r_lc_send_pdu_max_slot_req = 0x4001c3ec) + [!provide] PROVIDE (r_lc_send_pdu_not_acc = 0x4001c26c) + [!provide] PROVIDE (r_lc_send_pdu_not_acc_ext4 = 0x4001c294) + [!provide] PROVIDE (r_lc_send_pdu_num_comp_fail = 0x4001c770) + [!provide] PROVIDE (r_lc_send_pdu_pause_enc_aes_req = 0x4001c794) + [!provide] PROVIDE (r_lc_send_pdu_paus_enc_req = 0x4001c7c0) + [!provide] PROVIDE (r_lc_send_pdu_ptt_req = 0x4001c4c0) + [!provide] PROVIDE (r_lc_send_pdu_qos_req = 0x4001c82c) + [!provide] PROVIDE (r_lc_send_pdu_resu_enc_req = 0x4001c7e4) + [!provide] PROVIDE (r_lc_send_pdu_sco_lk_rem_req = 0x4001c580) + [!provide] PROVIDE (r_lc_send_pdu_set_afh = 0x4001c2c8) + [!provide] PROVIDE (r_lc_send_pdu_setup_cmp = 0x4001c808) + [!provide] PROVIDE (r_lc_send_pdu_slot_off = 0x4001c854) + [!provide] PROVIDE (r_lc_send_pdu_sniff_req = 0x4001c5f0) + [!provide] PROVIDE (r_lc_send_pdu_sp_cfm = 0x4001c518) + [!provide] PROVIDE (r_lc_send_pdu_sp_nb = 0x4001c4e8) + [!provide] PROVIDE (r_lc_send_pdu_sres = 0x4001c548) + [!provide] PROVIDE (r_lc_send_pdu_tim_acc = 0x4001c6cc) + [!provide] PROVIDE (r_lc_send_pdu_unit_key = 0x4001c398) + [!provide] PROVIDE (r_lc_send_pdu_unsniff_req = 0x4001c894) + [!provide] PROVIDE (r_lc_send_pdu_vers_req = 0x4001c8b4) + [!provide] PROVIDE (r_lc_skip_hl_oob_req = 0x400201bc) + [!provide] PROVIDE (r_lc_sniff_init = 0x40022cac) + [!provide] PROVIDE (r_lc_sniff_max_slot_chg = 0x40020590) + [!provide] PROVIDE (r_lc_sniff_reset = 0x40022cc8) + [!provide] PROVIDE (r_lc_sniff_slot_unchange = 0x40021100) + [!provide] PROVIDE (r_lc_sniff_sub_mode = 0x400204fc) + [!provide] PROVIDE (r_lc_sp_end = 0x400213a8) + [!provide] PROVIDE (r_lc_sp_fail = 0x40020470) + [!provide] PROVIDE (r_lc_sp_oob_tid_fail = 0x400204cc) + [!provide] PROVIDE (r_lc_ssr_nego = 0x4002125c) + [!provide] PROVIDE (r_lc_start = 0x4001ca28) + [!provide] PROVIDE (r_lc_start_enc = 0x4001fb28) + [!provide] PROVIDE (r_lc_start_enc_key_size = 0x4001fd9c) + [!provide] PROVIDE (r_lc_start_key_exch = 0x4001fe10) + [!provide] PROVIDE (r_lc_start_lmp_to = 0x4001fae8) + [!provide] PROVIDE (r_lc_start_oob = 0x4001fffc) + [!provide] PROVIDE (r_lc_start_passkey = 0x4001feac) + [!provide] PROVIDE (r_lc_start_passkey_loop = 0x4001ff88) + [!provide] PROVIDE (r_lc_stop_afh_report = 0x40020184) + [!provide] PROVIDE (r_lc_stop_enc = 0x40020110) + [!provide] PROVIDE (r_lc_switch_cmp = 0x40020448) + [!provide] PROVIDE (r_lc_unit_key_svr = 0x400206d8) + [!provide] PROVIDE (r_lc_unsniff = 0x40020c50) + [!provide] PROVIDE (r_lc_unsniff_cmp = 0x40020810) + [!provide] PROVIDE (r_lc_unsniff_cont = 0x40020750) + [!provide] PROVIDE (r_lc_upd_to = 0x4002065c) + [!provide] PROVIDE (r_lc_util_convert_pref_rate_to_packet_type = 0x4002f9b0) + [!provide] PROVIDE (r_lc_util_get_max_packet_size = 0x4002f4ac) + [!provide] PROVIDE (r_lc_util_get_offset_clke = 0x4002f538) + [!provide] PROVIDE (r_lc_util_get_offset_clkn = 0x4002f51c) + [!provide] PROVIDE (r_lc_util_set_loc_trans_coll = 0x4002f500) + [!provide] PROVIDE (r_lc_version = 0x40020a30) + [!provide] PROVIDE (lc_set_encap_pdu_data_p192 = 0x4002e4c8) + [!provide] PROVIDE (lc_set_encap_pdu_data_p256 = 0x4002e454) + [!provide] PROVIDE (lm_get_auth_method = 0x40023420) + [!provide] PROVIDE (lmp_accepted_ext_handler = 0x40027290) + [!provide] PROVIDE (lmp_not_accepted_ext_handler = 0x40029c54) + [!provide] PROVIDE (lmp_clk_adj_handler = 0x40027468) + [!provide] PROVIDE (lmp_clk_adj_ack_handler = 0x400274f4) + [!provide] PROVIDE (lm_get_auth_method = 0x40023420) + [!provide] PROVIDE (lmp_accepted_ext_handler = 0x40027290) + [!provide] PROVIDE (lmp_not_accepted_ext_handler = 0x40029c54) + [!provide] PROVIDE (lmp_clk_adj_handler = 0x40027468) + [!provide] PROVIDE (lmp_clk_adj_ack_handler = 0x400274f4) + [!provide] PROVIDE (lmp_clk_adj_req_handler = 0x4002751c) + [!provide] PROVIDE (lmp_feats_res_ext_handler = 0x4002cac4) + [!provide] PROVIDE (lmp_feats_req_ext_handler = 0x4002ccb0) + [!provide] PROVIDE (lmp_pkt_type_tbl_req_handler = 0x40027574) + [!provide] PROVIDE (lmp_esco_link_req_handler = 0x40027610) + [!provide] PROVIDE (lmp_rmv_esco_link_req_handler = 0x400276e8) + [!provide] PROVIDE (lmp_ch_class_req_handler = 0x40027730) + [!provide] PROVIDE (lmp_ch_class_handler = 0x4002ca18) + [!provide] PROVIDE (lmp_ssr_req_handler = 0x4002780c) + [!provide] PROVIDE (lmp_ssr_res_handler = 0x40027900) + [!provide] PROVIDE (lmp_pause_enc_aes_req_handler = 0x400279a4) + [!provide] PROVIDE (lmp_pause_enc_req_handler = 0x4002df90) + [!provide] PROVIDE (lmp_resume_enc_req_handler = 0x4002e084) + [!provide] PROVIDE (lmp_num_comparison_fail_handler = 0x40027a74) + [!provide] PROVIDE (lmp_passkey_fail_handler = 0x40027aec) + [!provide] PROVIDE (lmp_keypress_notif_handler = 0x4002c5c8) + [!provide] PROVIDE (lmp_pwr_ctrl_req_handler = 0x400263bc) + [!provide] PROVIDE (lmp_pwr_ctrl_res_handler = 0x40026480) + [!provide] PROVIDE (lmp_auto_rate_handler = 0x40026548) + [!provide] PROVIDE (lmp_pref_rate_handler = 0x4002657c) + [!provide] PROVIDE (lmp_name_req_handler = 0x40025050) + [!provide] PROVIDE (lmp_name_res_handler = 0x400250bc) + [!provide] PROVIDE (lmp_not_accepted_handler = 0x400251d0) + [!provide] PROVIDE (lmp_accepted_handler = 0x4002e894) + [!provide] PROVIDE (lmp_clk_off_req_handler = 0x40025a44) + [!provide] PROVIDE (lmp_clk_off_res_handler = 0x40025ab8) + [!provide] PROVIDE (lmp_detach_handler = 0x40025b74) + [!provide] PROVIDE (lmp_tempkey_handler = 0x4002b6b0) + [!provide] PROVIDE (lmp_temprand_handler = 0x4002b74c) + [!provide] PROVIDE (lmp_sres_handler = 0x4002b840) + [!provide] PROVIDE (lmp_aurand_handler = 0x4002bda0) + [!provide] PROVIDE (lmp_unitkey_handler = 0x4002c13c) + [!provide] PROVIDE (lmp_combkey_handler = 0x4002c234) + [!provide] PROVIDE (lmp_inrand_handler = 0x4002c414) + [!provide] PROVIDE (lmp_oob_fail_handler = 0x40027b84) + [!provide] PROVIDE (lmp_ping_req_handler = 0x40027c08) + [!provide] PROVIDE (lmp_ping_res_handler = 0x40027c5c) + [!provide] PROVIDE (lmp_enc_mode_req_handler = 0x40025c60) + [!provide] PROVIDE (lmp_enc_key_size_req_handler = 0x40025e54) + [!provide] PROVIDE (lmp_switch_req_handler = 0x40025f84) + [!provide] PROVIDE (lmp_start_enc_req_handler = 0x4002e124) + [!provide] PROVIDE (lmp_stop_enc_req_handler = 0x4002de30) + [!provide] PROVIDE (lmp_sniff_req_handler = 0x400260c8) + [!provide] PROVIDE (lmp_unsniff_req_handler = 0x400261e0) + [!provide] PROVIDE (lmp_incr_pwr_req_handler = 0x4002629c) + [!provide] PROVIDE (lmp_decr_pwr_req_handler = 0x400262f8) + [!provide] PROVIDE (lmp_max_pwr_handler = 0x40026354) + [!provide] PROVIDE (lmp_min_pwr_handler = 0x40026388) + [!provide] PROVIDE (lmp_ver_req_handler = 0x400265f0) + [!provide] PROVIDE (lmp_ver_res_handler = 0x40026670) + [!provide] PROVIDE (lmp_qos_handler = 0x40026790) + [!provide] PROVIDE (lmp_qos_req_handler = 0x40026844) + [!provide] PROVIDE (lmp_sco_link_req_handler = 0x40026930) + [!provide] PROVIDE (lmp_rmv_sco_link_req_handler = 0x40026a10) + [!provide] PROVIDE (lmp_max_slot_handler = 0x40026a54) + [!provide] PROVIDE (lmp_max_slot_req_handler = 0x40026aac) + [!provide] PROVIDE (lmp_timing_accu_req_handler = 0x40026b54) + [!provide] PROVIDE (lmp_timing_accu_res_handler = 0x40026bcc) + [!provide] PROVIDE (lmp_setup_cmp_handler = 0x40026c84) + [!provide] PROVIDE (lmp_feats_res_handler = 0x4002b548) + [!provide] PROVIDE (lmp_feats_req_handler = 0x4002b620) + [!provide] PROVIDE (lmp_host_con_req_handler = 0x4002b3d8) + [!provide] PROVIDE (lmp_use_semi_perm_key_handler = 0x4002b4c4) + [!provide] PROVIDE (lmp_slot_off_handler = 0x40026cc8) + [!provide] PROVIDE (lmp_page_mode_req_handler = 0x40026d0c) + [!provide] PROVIDE (lmp_page_scan_mode_req_handler = 0x40026d4c) + [!provide] PROVIDE (lmp_supv_to_handler = 0x40026d94) + [!provide] PROVIDE (lmp_test_activate_handler = 0x40026e7c) + [!provide] PROVIDE (lmp_test_ctrl_handler = 0x40026ee4) + [!provide] PROVIDE (lmp_enc_key_size_mask_req_handler = 0x40027038) + [!provide] PROVIDE (lmp_enc_key_size_mask_res_handler = 0x400270a4) + [!provide] PROVIDE (lmp_set_afh_handler = 0x4002b2e4) + [!provide] PROVIDE (lmp_encaps_hdr_handler = 0x40027120) + [!provide] PROVIDE (lmp_encaps_payl_handler = 0x4002e590) + [!provide] PROVIDE (lmp_sp_nb_handler = 0x4002acf0) + [!provide] PROVIDE (lmp_sp_cfm_handler = 0x4002b170) + [!provide] PROVIDE (lmp_dhkey_chk_handler = 0x4002ab48) + [!provide] PROVIDE (lmp_pause_enc_aes_req_handler = 0x400279a4) + [!provide] PROVIDE (lmp_io_cap_res_handler = 0x4002c670) + [!provide] PROVIDE (lmp_io_cap_req_handler = 0x4002c7a4) + [!provide] PROVIDE (lc_cmd_cmp_bd_addr_send = 0x4002cec4) + [!provide] PROVIDE (ld_acl_tx_packet_type_select = 0x4002fb40) + [!provide] PROVIDE (ld_acl_sched = 0x40033268) + [!provide] PROVIDE (ld_acl_sniff_sched = 0x4003340c) + [!provide] PROVIDE (ld_acl_sniff_exit = 0x400312b4) + [!provide] PROVIDE (ld_sco_evt_canceled_cbk = 0x40031e18) + [!provide] PROVIDE (ld_acl_rx = 0x4003274c) + [!provide] PROVIDE (ld_acl_tx = 0x4002ffdc) + [!provide] PROVIDE (ld_acl_rx_sync = 0x4002fbec) + [!provide] PROVIDE (ld_acl_rx_sync2 = 0x4002fd8c) + [!provide] PROVIDE (ld_acl_rx_no_sync = 0x4002fe78) + [!provide] PROVIDE (ld_acl_clk_isr = 0x40030cf8) + [!provide] PROVIDE (ld_acl_rsw_frm_cbk = 0x40033bb0) + [!provide] PROVIDE (ld_sco_modify = 0x40031778) + [!provide] PROVIDE (lm_cmd_cmp_send = 0x40051838) + [!provide] PROVIDE (ld_sco_resched_cbk = 0x40031a10) + [!provide] PROVIDE (ld_sco_frm_cbk = 0x400349dc) + [!provide] PROVIDE (ld_sco_evt_start_cbk = 0x40031afc) + [!provide] PROVIDE (ld_sco_evt_stop_cbk = 0x40031d78) + [!provide] PROVIDE (ld_acl_rsw_evt_start_cbk = 0x40031154) + [!provide] PROVIDE (ld_acl_sco_rsvd_check = 0x4002fa94) + [!provide] PROVIDE (ld_acl_sniff_frm_cbk = 0x4003482c) + [!provide] PROVIDE (ld_inq_end = 0x4003ab48) + [!provide] PROVIDE (ld_inq_sched = 0x4003aba4) + [!provide] PROVIDE (ld_inq_frm_cbk = 0x4003ae4c) + [!provide] PROVIDE (ld_pscan_frm_cbk = 0x4003ebe4) + [!provide] PROVIDE (r_ld_acl_active_hop_types_get = 0x40036e10) + [!provide] PROVIDE (r_ld_acl_afh_confirm = 0x40036d40) + [!provide] PROVIDE (r_ld_acl_afh_prepare = 0x40036c84) + [!provide] PROVIDE (r_ld_acl_afh_set = 0x40036b60) + [!provide] PROVIDE (r_ld_acl_allowed_tx_packet_types_set = 0x40036810) + [!provide] PROVIDE (r_ld_acl_bcst_rx_dec = 0x40036394) + [!provide] PROVIDE (r_ld_acl_bit_off_get = 0x40036b18) + [!provide] PROVIDE (r_ld_acl_clk_adj_set = 0x40036a00) + [!provide] PROVIDE (r_ld_acl_clk_off_get = 0x40036b00) + [!provide] PROVIDE (r_ld_acl_clk_set = 0x40036950) + [!provide] PROVIDE (r_ld_acl_clock_offset_get = 0x400364c0) + [!provide] PROVIDE (r_ld_acl_current_tx_power_get = 0x400368f0) + [!provide] PROVIDE (r_ld_acl_data_flush = 0x400357bc) + [!provide] PROVIDE (r_ld_acl_data_tx = 0x4003544c) + [!provide] PROVIDE (r_ld_acl_edr_set = 0x4003678c) + [!provide] PROVIDE (r_ld_acl_enc_key_load = 0x40036404) + [!provide] PROVIDE (r_ld_acl_flow_off = 0x40035400) + [!provide] PROVIDE (r_ld_acl_flow_on = 0x4003541c) + [!provide] PROVIDE (r_ld_acl_flush_timeout_get = 0x40035f9c) + [!provide] PROVIDE (r_ld_acl_flush_timeout_set = 0x40035fe0) + [!provide] PROVIDE (r_ld_acl_init = 0x40034d08) + [!provide] PROVIDE (r_ld_acl_lmp_flush = 0x40035d80) + [!provide] PROVIDE (r_ld_acl_lmp_tx = 0x40035b34) + [!provide] PROVIDE (r_ld_acl_lsto_get = 0x400366b4) + [!provide] PROVIDE (r_ld_acl_lsto_set = 0x400366f8) + [!provide] PROVIDE (r_ld_acl_reset = 0x40034d24) + [!provide] PROVIDE (r_ld_acl_role_get = 0x40036b30) + [!provide] PROVIDE (r_ld_acl_rssi_delta_get = 0x40037028) + [!provide] PROVIDE (r_ld_acl_rsw_req = 0x40035e74) + [!provide] PROVIDE (r_ld_acl_rx_enc = 0x40036344) + [!provide] PROVIDE (r_ld_acl_rx_max_slot_get = 0x40036e58) + [!provide] PROVIDE (r_ld_acl_rx_max_slot_set = 0x40036ea0) + [!provide] PROVIDE (r_ld_acl_slot_offset_get = 0x4003653c) + [!provide] PROVIDE (r_ld_acl_slot_offset_set = 0x40036658) + [!provide] PROVIDE (r_ld_acl_sniff = 0x4003617c) + [!provide] PROVIDE (r_ld_acl_sniff_trans = 0x400360a8) + [!provide] PROVIDE (r_ld_acl_ssr_set = 0x40036274) + [!provide] PROVIDE (r_ld_acl_start = 0x40034ddc) + [!provide] PROVIDE (r_ld_acl_stop = 0x4003532c) + [!provide] PROVIDE (r_ld_acl_test_mode_set = 0x40036f24) + [!provide] PROVIDE (r_ld_acl_timing_accuracy_set = 0x4003673c) + [!provide] PROVIDE (r_ld_acl_t_poll_get = 0x40036024) + [!provide] PROVIDE (r_ld_acl_t_poll_set = 0x40036068) + [!provide] PROVIDE (r_ld_acl_tx_enc = 0x400362f8) + [!provide] PROVIDE (ld_acl_frm_cbk = 0x40034414) + [!provide] PROVIDE (ld_acl_rsw_end = 0x40032bc0) + [!provide] PROVIDE (ld_acl_end = 0x40033140) + [!provide] PROVIDE (ld_acl_resched = 0x40033814) + [!provide] PROVIDE (ld_acl_test_mode_update = 0x40032050) + [!provide] PROVIDE (r_ld_acl_unsniff = 0x400361e0) + [!provide] PROVIDE (r_ld_active_check = 0x4003cac4) + [!provide] PROVIDE (r_ld_afh_ch_assess_data_get = 0x4003caec) + [!provide] PROVIDE (r_ld_bcst_acl_data_tx = 0x40038d3c) + [!provide] PROVIDE (r_ld_bcst_acl_init = 0x40038bd0) + [!provide] PROVIDE (r_ld_bcst_acl_reset = 0x40038bdc) + [!provide] PROVIDE (r_ld_bcst_acl_start = 0x4003882c) + [!provide] PROVIDE (r_ld_bcst_afh_update = 0x40038f3c) + [!provide] PROVIDE (r_ld_bcst_enc_key_load = 0x4003906c) + [!provide] PROVIDE (r_ld_bcst_lmp_tx = 0x40038bf8) + [!provide] PROVIDE (r_ld_bcst_tx_enc = 0x40038ff8) + [!provide] PROVIDE (r_ld_bd_addr_get = 0x4003ca20) + [!provide] PROVIDE (r_ld_channel_assess = 0x4003c184) + [!provide] PROVIDE (r_ld_class_of_dev_get = 0x4003ca34) + [!provide] PROVIDE (r_ld_class_of_dev_set = 0x4003ca50) + [!provide] PROVIDE (r_ld_csb_rx_afh_update = 0x40039af4) + [!provide] PROVIDE (r_ld_csb_rx_init = 0x40039690) + [!provide] PROVIDE (r_ld_csb_rx_reset = 0x4003969c) + [!provide] PROVIDE (r_ld_csb_rx_start = 0x4003972c) + [!provide] PROVIDE (r_ld_csb_rx_stop = 0x40039bb8) + [!provide] PROVIDE (r_ld_csb_tx_afh_update = 0x4003a5fc) + [!provide] PROVIDE (r_ld_csb_tx_clr_data = 0x4003a71c) + [!provide] PROVIDE (r_ld_csb_tx_dis = 0x4003a5e8) + [!provide] PROVIDE (r_ld_csb_tx_en = 0x4003a1c0) + [!provide] PROVIDE (r_ld_csb_tx_init = 0x4003a0e8) + [!provide] PROVIDE (r_ld_csb_tx_reset = 0x4003a0f8) + [!provide] PROVIDE (r_ld_csb_tx_set_data = 0x4003a6c0) + [!provide] PROVIDE (ld_csb_tx_sched = 0x40039c1c) + [!provide] PROVIDE (ld_csb_tx_evt_start_cbk = 0x40039d0c) + [!provide] PROVIDE (ld_csb_tx_evt_canceled_cbk = 0x40039ee4) + [!provide] PROVIDE (r_ld_fm_clk_isr = 0x4003a7a8) + [!provide] PROVIDE (r_ld_fm_frame_isr = 0x4003a82c) + [!provide] PROVIDE (r_ld_fm_init = 0x4003a760) + [!provide] PROVIDE (r_ld_fm_prog_check = 0x4003ab28) + [!provide] PROVIDE (r_ld_fm_prog_disable = 0x4003a984) + [!provide] PROVIDE (r_ld_fm_prog_enable = 0x4003a944) + [!provide] PROVIDE (r_ld_fm_prog_push = 0x4003a9d4) + [!provide] PROVIDE (r_ld_fm_reset = 0x4003a794) + [!provide] PROVIDE (r_ld_fm_rx_isr = 0x4003a7f4) + [!provide] PROVIDE (r_ld_fm_sket_isr = 0x4003a8a4) + [!provide] PROVIDE (r_ld_init = 0x4003c294) + [!provide] PROVIDE (r_ld_inq_init = 0x4003b15c) + [!provide] PROVIDE (r_ld_inq_reset = 0x4003b168) + [!provide] PROVIDE (r_ld_inq_start = 0x4003b1f0) + [!provide] PROVIDE (r_ld_inq_stop = 0x4003b4f0) + [!provide] PROVIDE (r_ld_iscan_eir_get = 0x4003c118) + [!provide] PROVIDE (r_ld_iscan_eir_set = 0x4003bfa0) + [!provide] PROVIDE (r_ld_iscan_init = 0x4003b9f0) + [!provide] PROVIDE (r_ld_iscan_reset = 0x4003ba14) + [!provide] PROVIDE (r_ld_iscan_restart = 0x4003ba44) + [!provide] PROVIDE (r_ld_iscan_start = 0x4003bb28) + [!provide] PROVIDE (r_ld_iscan_stop = 0x4003bf1c) + [!provide] PROVIDE (r_ld_iscan_tx_pwr_get = 0x4003c138) + [!provide] PROVIDE (r_ld_page_init = 0x4003d808) + [!provide] PROVIDE (r_ld_page_reset = 0x4003d814) + [!provide] PROVIDE (r_ld_page_start = 0x4003d848) + [!provide] PROVIDE (r_ld_page_stop = 0x4003da54) + [!provide] PROVIDE (ld_page_frm_cbk = 0x4003d280) + [!provide] PROVIDE (ld_page_em_init = 0x4003cb34) + [!provide] PROVIDE (r_ld_pca_coarse_clock_adjust = 0x4003e324) + [!provide] PROVIDE (r_ld_pca_init = 0x4003deb4) + [!provide] PROVIDE (r_ld_pca_initiate_clock_dragging = 0x4003e4ac) + [!provide] PROVIDE (r_ld_pca_local_config = 0x4003df6c) + [!provide] PROVIDE (r_ld_pca_mws_frame_sync = 0x4003e104) + [!provide] PROVIDE (r_ld_pca_mws_moment_offset_gt = 0x4003e278) + [!provide] PROVIDE (r_ld_pca_mws_moment_offset_lt = 0x4003e280) + [!provide] PROVIDE (r_ld_pca_reporting_enable = 0x4003e018) + [!provide] PROVIDE (r_ld_pca_reset = 0x4003df0c) + [!provide] PROVIDE (r_ld_pca_update_target_offset = 0x4003e050) + [!provide] PROVIDE (r_ld_pscan_evt_handler = 0x4003f238) + [!provide] PROVIDE (r_ld_pscan_init = 0x4003f474) + [!provide] PROVIDE (r_ld_pscan_reset = 0x4003f498) + [!provide] PROVIDE (r_ld_pscan_restart = 0x4003f4b8) + [!provide] PROVIDE (r_ld_pscan_start = 0x4003f514) + [!provide] PROVIDE (r_ld_pscan_stop = 0x4003f618) + [!provide] PROVIDE (r_ld_read_clock = 0x4003c9e4) + [!provide] PROVIDE (r_ld_reset = 0x4003c714) + [!provide] PROVIDE (r_ld_sched_acl_add = 0x4003f978) + [!provide] PROVIDE (r_ld_sched_acl_remove = 0x4003f99c) + [!provide] PROVIDE (r_ld_sched_compute = 0x4003f6f8) + [!provide] PROVIDE (r_ld_sched_init = 0x4003f7ac) + [!provide] PROVIDE (r_ld_sched_inq_add = 0x4003f8a8) + [!provide] PROVIDE (r_ld_sched_inq_remove = 0x4003f8d0) + [!provide] PROVIDE (r_ld_sched_iscan_add = 0x4003f7e8) + [!provide] PROVIDE (r_ld_sched_iscan_remove = 0x4003f808) + [!provide] PROVIDE (r_ld_sched_page_add = 0x4003f910) + [!provide] PROVIDE (r_ld_sched_page_remove = 0x4003f938) + [!provide] PROVIDE (r_ld_sched_pscan_add = 0x4003f828) + [!provide] PROVIDE (r_ld_sched_pscan_remove = 0x4003f848) + [!provide] PROVIDE (r_ld_sched_reset = 0x4003f7d4) + [!provide] PROVIDE (r_ld_sched_sco_add = 0x4003fa4c) + [!provide] PROVIDE (r_ld_sched_sco_remove = 0x4003fa9c) + [!provide] PROVIDE (r_ld_sched_sniff_add = 0x4003f9c4) + [!provide] PROVIDE (r_ld_sched_sniff_remove = 0x4003fa0c) + [!provide] PROVIDE (r_ld_sched_sscan_add = 0x4003f868) + [!provide] PROVIDE (r_ld_sched_sscan_remove = 0x4003f888) + [!provide] PROVIDE (r_ld_sco_audio_isr = 0x40037cc8) + [!provide] PROVIDE (r_ld_sco_data_tx = 0x40037ee8) + [!provide] PROVIDE (r_ld_sco_start = 0x40037110) + [!provide] PROVIDE (r_ld_sco_stop = 0x40037c40) + [!provide] PROVIDE (r_ld_sco_update = 0x40037a74) + [!provide] PROVIDE (r_ld_sscan_activated = 0x4004031c) + [!provide] PROVIDE (r_ld_sscan_init = 0x400402f0) + [!provide] PROVIDE (r_ld_sscan_reset = 0x400402fc) + [!provide] PROVIDE (r_ld_sscan_start = 0x40040384) + [!provide] PROVIDE (r_ld_strain_init = 0x400409f4) + [!provide] PROVIDE (r_ld_strain_reset = 0x40040a00) + [!provide] PROVIDE (r_ld_strain_start = 0x40040a8c) + [!provide] PROVIDE (r_ld_strain_stop = 0x40040df0) + [!provide] PROVIDE (r_ld_timing_accuracy_get = 0x4003caac) + [!provide] PROVIDE (r_ld_util_active_master_afh_map_get = 0x4004131c) + [!provide] PROVIDE (r_ld_util_active_master_afh_map_set = 0x40041308) + [!provide] PROVIDE (r_ld_util_bch_create = 0x40040fcc) + [!provide] PROVIDE (r_ld_util_fhs_pk = 0x400411c8) + [!provide] PROVIDE (r_ld_util_fhs_unpk = 0x40040e54) + [!provide] PROVIDE (r_ld_util_stp_pk = 0x400413f4) + [!provide] PROVIDE (r_ld_util_stp_unpk = 0x40041324) + [!provide] PROVIDE (r_ld_version_get = 0x4003ca6c) + [!provide] PROVIDE (r_ld_wlcoex_set = 0x4003caf8) + [!provide] PROVIDE (r_llc_ch_assess_get_current_ch_map = 0x40041574) + [!provide] PROVIDE (r_llc_ch_assess_get_local_ch_map = 0x4004150c) + [!provide] PROVIDE (r_llc_ch_assess_local = 0x40041494) + [!provide] PROVIDE (r_llc_ch_assess_merge_ch = 0x40041588) + [!provide] PROVIDE (r_llc_ch_assess_reass_ch = 0x400415c0) + [!provide] PROVIDE (r_llc_common_cmd_complete_send = 0x40044eac) + [!provide] PROVIDE (r_llc_common_cmd_status_send = 0x40044ee0) + [!provide] PROVIDE (r_llc_common_enc_change_evt_send = 0x40044f6c) + [!provide] PROVIDE (r_llc_common_enc_key_ref_comp_evt_send = 0x40044f38) + [!provide] PROVIDE (r_llc_common_flush_occurred_send = 0x40044f0c) + [!provide] PROVIDE (r_llc_common_nb_of_pkt_comp_evt_send = 0x40045000) + [!provide] PROVIDE (r_llc_con_update_complete_send = 0x40044d68) + [!provide] PROVIDE (r_llc_con_update_finished = 0x4004518c) + [!provide] PROVIDE (r_llc_con_update_ind = 0x40045038) + [!provide] PROVIDE (r_llc_discon_event_complete_send = 0x40044a30) + [!provide] PROVIDE (r_llc_end_evt_defer = 0x40046330) + [!provide] PROVIDE (r_llc_feats_rd_event_send = 0x40044e0c) + [!provide] PROVIDE (r_llc_init = 0x40044778) + [!provide] PROVIDE (r_llc_le_con_cmp_evt_send = 0x40044a78) + [!provide] PROVIDE (r_llc_llcp_ch_map_update_pdu_send = 0x40043f94) + [!provide] PROVIDE (r_llc_llcp_con_param_req_pdu_send = 0x400442fc) + [!provide] PROVIDE (r_llc_llcp_con_param_rsp_pdu_send = 0x40044358) + [!provide] PROVIDE (r_llc_llcp_con_update_pdu_send = 0x400442c4) + [!provide] PROVIDE (r_llc_llcp_enc_req_pdu_send = 0x40044064) + [!provide] PROVIDE (r_llc_llcp_enc_rsp_pdu_send = 0x40044160) + [!provide] PROVIDE (r_llc_llcp_feats_req_pdu_send = 0x400443b4) + [!provide] PROVIDE (r_llc_llcp_feats_rsp_pdu_send = 0x400443f0) + [!provide] PROVIDE (r_llc_llcp_get_autorize = 0x4004475c) + [!provide] PROVIDE (r_llc_llcp_length_req_pdu_send = 0x40044574) + [!provide] PROVIDE (r_llc_llcp_length_rsp_pdu_send = 0x400445ac) + [!provide] PROVIDE (r_llc_llcp_pause_enc_req_pdu_send = 0x40043fd8) + [!provide] PROVIDE (r_llc_llcp_pause_enc_rsp_pdu_send = 0x40044010) + [!provide] PROVIDE (r_llc_llcp_ping_req_pdu_send = 0x4004454c) + [!provide] PROVIDE (r_llc_llcp_ping_rsp_pdu_send = 0x40044560) + [!provide] PROVIDE (r_llc_llcp_recv_handler = 0x40044678) + [!provide] PROVIDE (r_llc_llcp_reject_ind_pdu_send = 0x4004425c) + [!provide] PROVIDE (r_llc_llcp_start_enc_req_pdu_send = 0x4004441c) + [!provide] PROVIDE (r_llc_llcp_start_enc_rsp_pdu_send = 0x400441f8) + [!provide] PROVIDE (r_llc_llcp_terminate_ind_pdu_send = 0x400444b0) + [!provide] PROVIDE (r_llc_llcp_tester_send = 0x400445e4) + [!provide] PROVIDE (r_llc_llcp_unknown_rsp_send_pdu = 0x40044534) + [!provide] PROVIDE (r_llc_llcp_version_ind_pdu_send = 0x40043f6c) + [!provide] PROVIDE (r_llc_lsto_con_update = 0x40045098) + [!provide] PROVIDE (r_llc_ltk_req_send = 0x40044dc0) + [!provide] PROVIDE (r_llc_map_update_finished = 0x40045260) + [!provide] PROVIDE (r_llc_map_update_ind = 0x400450f0) + [!provide] PROVIDE (r_llc_pdu_acl_tx_ack_defer = 0x400464dc) + [!provide] PROVIDE (r_llc_pdu_defer = 0x40046528) + [!provide] PROVIDE (r_llc_pdu_llcp_tx_ack_defer = 0x400463ac) + [!provide] PROVIDE (r_llc_reset = 0x400447b8) + [!provide] PROVIDE (r_llc_start = 0x400447f4) + [!provide] PROVIDE (r_llc_stop = 0x400449ac) + [!provide] PROVIDE (r_llc_util_bw_mgt = 0x4004629c) + [!provide] PROVIDE (r_llc_util_clear_operation_ptr = 0x40046234) + [!provide] PROVIDE (r_llc_util_dicon_procedure = 0x40046130) + [!provide] PROVIDE (r_llc_util_get_free_conhdl = 0x400460c8) + [!provide] PROVIDE (r_llc_util_get_nb_active_link = 0x40046100) + [!provide] PROVIDE (r_llc_util_set_auth_payl_to_margin = 0x400461f4) + [!provide] PROVIDE (r_llc_util_set_llcp_discard_enable = 0x400461c8) + [!provide] PROVIDE (r_llc_util_update_channel_map = 0x400461ac) + [!provide] PROVIDE (r_llc_version_rd_event_send = 0x40044e60) + [!provide] PROVIDE (r_lld_adv_start = 0x40048b38) + [!provide] PROVIDE (r_lld_adv_stop = 0x40048ea0) + [!provide] PROVIDE (r_lld_ch_map_ind = 0x4004a2f4) + [!provide] PROVIDE (r_lld_con_param_req = 0x40049f0c) + [!provide] PROVIDE (r_lld_con_param_rsp = 0x40049e00) + [!provide] PROVIDE (r_lld_con_start = 0x400491f8) + [!provide] PROVIDE (r_lld_con_stop = 0x40049fdc) + [!provide] PROVIDE (r_lld_con_update_after_param_req = 0x40049bcc) + [!provide] PROVIDE (r_lld_con_update_ind = 0x4004a30c) + [!provide] PROVIDE (r_lld_con_update_req = 0x40049b60) + [!provide] PROVIDE (r_lld_core_reset = 0x40048a9c) + [!provide] PROVIDE (r_lld_crypt_isr = 0x4004a324) + [!provide] PROVIDE (r_lld_evt_adv_create = 0x400481f4) + [!provide] PROVIDE (r_lld_evt_canceled = 0x400485c8) + [!provide] PROVIDE (r_lld_evt_channel_next = 0x40046aac) + [!provide] PROVIDE (r_lld_evt_deffered_elt_handler = 0x400482bc) + [!provide] PROVIDE (r_lld_evt_delete_elt_handler = 0x40046974) + [!provide] PROVIDE (r_lld_evt_delete_elt_push = 0x40046a3c) + [!provide] PROVIDE (r_lld_evt_drift_compute = 0x40047670) + [!provide] PROVIDE (r_lld_evt_elt_delete = 0x40047538) + [!provide] PROVIDE (r_lld_evt_elt_insert = 0x400474c8) + [!provide] PROVIDE (r_lld_evt_end = 0x400483e8) + [!provide] PROVIDE (r_lld_evt_end_isr = 0x4004862c) + [!provide] PROVIDE (r_lld_evt_init = 0x40046b3c) + [!provide] PROVIDE (r_lld_evt_init_evt = 0x40046cd0) + [!provide] PROVIDE (r_lld_evt_move_to_master = 0x40047ba0) + [!provide] PROVIDE (r_lld_evt_move_to_slave = 0x40047e18) + [!provide] PROVIDE (r_lld_evt_prevent_stop = 0x40047adc) + [!provide] PROVIDE (r_lld_evt_restart = 0x40046d50) + [!provide] PROVIDE (r_lld_evt_rx = 0x40048578) + [!provide] PROVIDE (r_lld_evt_rx_isr = 0x40048678) + [!provide] PROVIDE (r_lld_evt_scan_create = 0x40047ae8) + [!provide] PROVIDE (r_lld_evt_schedule = 0x40047908) + [!provide] PROVIDE (r_lld_evt_schedule_next = 0x400477dc) + [!provide] PROVIDE (r_lld_evt_schedule_next_instant = 0x400476a8) + [!provide] PROVIDE (r_lld_evt_slave_update = 0x40048138) + [!provide] PROVIDE (r_lld_evt_update_create = 0x40047cd8) + [!provide] PROVIDE (r_lld_get_mode = 0x40049ff8) + [!provide] PROVIDE (r_lld_init = 0x4004873c) + [!provide] PROVIDE (r_lld_move_to_master = 0x400499e0) + [!provide] PROVIDE (r_lld_move_to_slave = 0x4004a024) + [!provide] PROVIDE (r_lld_pdu_adv_pack = 0x4004b488) + [!provide] PROVIDE (r_lld_pdu_check = 0x4004ac34) + [!provide] PROVIDE (r_lld_pdu_data_send = 0x4004b018) + [!provide] PROVIDE (r_lld_pdu_data_tx_push = 0x4004aecc) + [!provide] PROVIDE (r_lld_pdu_rx_handler = 0x4004b4d4) + [!provide] PROVIDE (r_lld_pdu_send_packet = 0x4004b774) + [!provide] PROVIDE (r_lld_pdu_tx_flush = 0x4004b414) + [!provide] PROVIDE (r_lld_pdu_tx_loop = 0x4004ae40) + [!provide] PROVIDE (r_lld_pdu_tx_prog = 0x4004b120) + [!provide] PROVIDE (r_lld_pdu_tx_push = 0x4004b080) + [!provide] PROVIDE (r_lld_ral_renew_req = 0x4004a73c) + [!provide] PROVIDE (r_lld_scan_start = 0x40048ee0) + [!provide] PROVIDE (r_lld_scan_stop = 0x40049190) + [!provide] PROVIDE (r_lld_test_mode_rx = 0x4004a540) + [!provide] PROVIDE (r_lld_test_mode_tx = 0x4004a350) + [!provide] PROVIDE (r_lld_test_stop = 0x4004a710) + [!provide] PROVIDE (r_lld_util_anchor_point_move = 0x4004bacc) + [!provide] PROVIDE (r_lld_util_compute_ce_max = 0x4004bc0c) + [!provide] PROVIDE (r_lld_util_connection_param_set = 0x4004ba40) + [!provide] PROVIDE (r_lld_util_dle_set_cs_fields = 0x4004ba90) + [!provide] PROVIDE (r_lld_util_eff_tx_time_set = 0x4004bd88) + [!provide] PROVIDE (r_lld_util_elt_programmed = 0x4004bce0) + [!provide] PROVIDE (r_lld_util_flush_list = 0x4004bbd8) + [!provide] PROVIDE (r_lld_util_freq2chnl = 0x4004b9e4) + [!provide] PROVIDE (r_lld_util_get_bd_address = 0x4004b8ac) + [!provide] PROVIDE (r_lld_util_get_local_offset = 0x4004ba10) + [!provide] PROVIDE (r_lld_util_get_peer_offset = 0x4004ba24) + [!provide] PROVIDE (r_lld_util_get_tx_pkt_cnt = 0x4004bd80) + [!provide] PROVIDE (r_lld_util_instant_get = 0x4004b890) + [!provide] PROVIDE (r_lld_util_instant_ongoing = 0x4004bbfc) + [!provide] PROVIDE (r_lld_util_priority_set = 0x4004bd10) + [!provide] PROVIDE (r_lld_util_priority_update = 0x4004bd78) + [!provide] PROVIDE (r_lld_util_ral_force_rpa_renew = 0x4004b980) + [!provide] PROVIDE (r_lld_util_set_bd_address = 0x4004b8f8) + [!provide] PROVIDE (r_lld_wlcoex_set = 0x4004bd98) + [!provide] PROVIDE (r_llm_ble_ready = 0x4004cc34) + [!provide] PROVIDE (r_llm_common_cmd_complete_send = 0x4004d288) + [!provide] PROVIDE (r_llm_common_cmd_status_send = 0x4004d2b4) + [!provide] PROVIDE (r_llm_con_req_ind = 0x4004cc54) + [!provide] PROVIDE (r_llm_con_req_tx_cfm = 0x4004d158) + [!provide] PROVIDE (r_llm_create_con = 0x4004de78) + [!provide] PROVIDE (r_llm_encryption_done = 0x4004dff8) + [!provide] PROVIDE (r_llm_encryption_start = 0x4004e128) + [!provide] PROVIDE (r_llm_end_evt_defer = 0x4004eb6c) + [!provide] PROVIDE (r_llm_init = 0x4004c9f8) + [!provide] PROVIDE (r_llm_le_adv_report_ind = 0x4004cdf4) + [!provide] PROVIDE (r_llm_pdu_defer = 0x4004ec48) + [!provide] PROVIDE (r_llm_ral_clear = 0x4004e1fc) + [!provide] PROVIDE (r_llm_ral_dev_add = 0x4004e23c) + [!provide] PROVIDE (r_llm_ral_dev_rm = 0x4004e3bc) + [!provide] PROVIDE (r_llm_ral_get_rpa = 0x4004e400) + [!provide] PROVIDE (r_llm_ral_set_timeout = 0x4004e4a0) + [!provide] PROVIDE (r_llm_ral_update = 0x4004e4f8) + [!provide] PROVIDE (r_llm_set_adv_data = 0x4004d960) + [!provide] PROVIDE (r_llm_set_adv_en = 0x4004d7ec) + [!provide] PROVIDE (r_llm_set_adv_param = 0x4004d5f4) + [!provide] PROVIDE (r_llm_set_scan_en = 0x4004db64) + [!provide] PROVIDE (r_llm_set_scan_param = 0x4004dac8) + [!provide] PROVIDE (r_llm_set_scan_rsp_data = 0x4004da14) + [!provide] PROVIDE (r_llm_test_mode_start_rx = 0x4004d534) + [!provide] PROVIDE (r_llm_test_mode_start_tx = 0x4004d2fc) + [!provide] PROVIDE (r_llm_util_adv_data_update = 0x4004e8fc) + [!provide] PROVIDE (r_llm_util_apply_bd_addr = 0x4004e868) + [!provide] PROVIDE (r_llm_util_bd_addr_in_ral = 0x4004eb08) + [!provide] PROVIDE (r_llm_util_bd_addr_in_wl = 0x4004e788) + [!provide] PROVIDE (r_llm_util_bd_addr_wl_position = 0x4004e720) + [!provide] PROVIDE (r_llm_util_bl_add = 0x4004e9ac) + [!provide] PROVIDE (r_llm_util_bl_check = 0x4004e930) + [!provide] PROVIDE (r_llm_util_bl_rem = 0x4004ea70) + [!provide] PROVIDE (r_llm_util_check_address_validity = 0x4004e7e4) + [!provide] PROVIDE (r_llm_util_check_evt_mask = 0x4004e8b0) + [!provide] PROVIDE (r_llm_util_check_map_validity = 0x4004e800) + [!provide] PROVIDE (r_llm_util_get_channel_map = 0x4004e8d4) + [!provide] PROVIDE (r_llm_util_get_supp_features = 0x4004e8e8) + [!provide] PROVIDE (r_llm_util_set_public_addr = 0x4004e89c) + [!provide] PROVIDE (r_llm_wl_clr = 0x4004dc54) + [!provide] PROVIDE (r_llm_wl_dev_add = 0x4004dcc0) + [!provide] PROVIDE (r_llm_wl_dev_add_hdl = 0x4004dd38) + [!provide] PROVIDE (r_llm_wl_dev_rem = 0x4004dcfc) + [!provide] PROVIDE (r_llm_wl_dev_rem_hdl = 0x4004dde0) + [!provide] PROVIDE (r_lm_acl_disc = 0x4004f148) + [!provide] PROVIDE (r_LM_AddSniff = 0x40022d20) + [!provide] PROVIDE (r_lm_add_sync = 0x40051358) + [!provide] PROVIDE (r_lm_afh_activate_timer = 0x4004f444) + [!provide] PROVIDE (r_lm_afh_ch_ass_en_get = 0x4004f3f8) + [!provide] PROVIDE (r_lm_afh_host_ch_class_get = 0x4004f410) + [!provide] PROVIDE (r_lm_afh_master_ch_map_get = 0x4004f43c) + [!provide] PROVIDE (r_lm_afh_peer_ch_class_set = 0x4004f418) + [!provide] PROVIDE (r_lm_check_active_sync = 0x40051334) + [!provide] PROVIDE (r_LM_CheckEdrFeatureRequest = 0x4002f90c) + [!provide] PROVIDE (r_LM_CheckSwitchInstant = 0x4002f8c0) + [!provide] PROVIDE (r_lm_check_sync_hl_rsp = 0x4005169c) + [!provide] PROVIDE (r_lm_clk_adj_ack_pending_clear = 0x4004f514) + [!provide] PROVIDE (r_lm_clk_adj_instant_pending_set = 0x4004f4d8) + [!provide] PROVIDE (r_LM_ComputePacketType = 0x4002f554) + [!provide] PROVIDE (r_LM_ComputeSniffSubRate = 0x400233ac) + [!provide] PROVIDE (r_lm_debug_key_compare_192 = 0x4004f3a8) + [!provide] PROVIDE (r_lm_debug_key_compare_256 = 0x4004f3d0) + [!provide] PROVIDE (r_lm_dhkey_calc_init = 0x40013234) + [!provide] PROVIDE (r_lm_dhkey_compare = 0x400132d8) + [!provide] PROVIDE (r_lm_dut_mode_en_get = 0x4004f3ec) + [!provide] PROVIDE (r_LM_ExtractMaxEncKeySize = 0x4001aca4) + [!provide] PROVIDE (r_lm_f1 = 0x40012bb8) + [!provide] PROVIDE (r_lm_f2 = 0x40012cfc) + [!provide] PROVIDE (r_lm_f3 = 0x40013050) + [!provide] PROVIDE (r_lm_g = 0x40012f90) + [!provide] PROVIDE (r_LM_GetAFHSwitchInstant = 0x4002f86c) + [!provide] PROVIDE (r_lm_get_auth_en = 0x4004f1ac) + [!provide] PROVIDE (r_lm_get_common_pkt_types = 0x4002fa1c) + [!provide] PROVIDE (r_LM_GetConnectionAcceptTimeout = 0x4004f1f4) + [!provide] PROVIDE (r_LM_GetFeature = 0x4002f924) + [!provide] PROVIDE (r_LM_GetLinkTimeout = 0x400233ec) + [!provide] PROVIDE (r_LM_GetLocalNameSeg = 0x4004f200) + [!provide] PROVIDE (r_lm_get_loopback_mode = 0x4004f248) + [!provide] PROVIDE (r_LM_GetMasterEncKeySize = 0x4001b29c) + [!provide] PROVIDE (r_LM_GetMasterEncRand = 0x4001b288) + [!provide] PROVIDE (r_LM_GetMasterKey = 0x4001b260) + [!provide] PROVIDE (r_LM_GetMasterKeyRand = 0x4001b274) + [!provide] PROVIDE (r_lm_get_min_sync_intv = 0x400517a8) + [!provide] PROVIDE (r_lm_get_nb_acl = 0x4004ef9c) + [!provide] PROVIDE (r_lm_get_nb_sync_link = 0x4005179c) + [!provide] PROVIDE (r_lm_get_nonce = 0x400131c4) + [!provide] PROVIDE (r_lm_get_oob_local_commit = 0x4004f374) + [!provide] PROVIDE (r_lm_get_oob_local_data_192 = 0x4004f2d4) + [!provide] PROVIDE (r_lm_get_oob_local_data_256 = 0x4004f318) + [!provide] PROVIDE (r_LM_GetPINType = 0x4004f1e8) + [!provide] PROVIDE (r_lm_get_priv_key_192 = 0x4004f278) + [!provide] PROVIDE (r_lm_get_priv_key_256 = 0x4004f2b8) + [!provide] PROVIDE (r_lm_get_pub_key_192 = 0x4004f258) + [!provide] PROVIDE (r_lm_get_pub_key_256 = 0x4004f298) + [!provide] PROVIDE (r_LM_GetQoSParam = 0x4002f6e0) + [!provide] PROVIDE (r_lm_get_sec_con_host_supp = 0x4004f1d4) + [!provide] PROVIDE (r_LM_GetSniffSubratingParam = 0x4002325c) + [!provide] PROVIDE (r_lm_get_sp_en = 0x4004f1c0) + [!provide] PROVIDE (r_LM_GetSwitchInstant = 0x4002f7f8) + [!provide] PROVIDE (r_lm_get_synchdl = 0x4005175c) + [!provide] PROVIDE (r_lm_get_sync_param = 0x400503b4) + [!provide] PROVIDE (r_lm_init = 0x4004ed34) + [!provide] PROVIDE (r_lm_init_sync = 0x400512d8) + [!provide] PROVIDE (r_lm_is_acl_con = 0x4004f47c) + [!provide] PROVIDE (r_lm_is_acl_con_role = 0x4004f49c) + [!provide] PROVIDE (r_lm_is_clk_adj_ack_pending = 0x4004f4e8) + [!provide] PROVIDE (r_lm_is_clk_adj_instant_pending = 0x4004f4c8) + [!provide] PROVIDE (r_lm_local_ext_fr_configured = 0x4004f540) + [!provide] PROVIDE (r_lm_look_for_stored_link_key = 0x4002f948) + [!provide] PROVIDE (r_lm_look_for_sync = 0x40051774) + [!provide] PROVIDE (r_lm_lt_addr_alloc = 0x4004ef1c) + [!provide] PROVIDE (r_lm_lt_addr_free = 0x4004ef74) + [!provide] PROVIDE (r_lm_lt_addr_reserve = 0x4004ef48) + [!provide] PROVIDE (r_LM_MakeCof = 0x4002f84c) + [!provide] PROVIDE (r_LM_MakeRandVec = 0x400112d8) + [!provide] PROVIDE (r_lm_master_clk_adj_req_handler = 0x40054180) + [!provide] PROVIDE (r_LM_MaxSlot = 0x4002f694) + [!provide] PROVIDE (r_lm_modif_sync = 0x40051578) + [!provide] PROVIDE (r_lm_n_is_zero = 0x40012170) + [!provide] PROVIDE (r_lm_num_clk_adj_ack_pending_set = 0x4004f500) + [!provide] PROVIDE (r_lm_oob_f1 = 0x40012e54) + [!provide] PROVIDE (r_lm_pca_sscan_link_get = 0x4004f560) + [!provide] PROVIDE (r_lm_pca_sscan_link_set = 0x4004f550) + [!provide] PROVIDE (nvds_null_read = 0x400542a0) + [!provide] PROVIDE (nvds_null_write = 0x400542a8) + [!provide] PROVIDE (nvds_null_erase = 0x400542b0) + [!provide] PROVIDE (nvds_read = 0x400542c4) + [!provide] PROVIDE (nvds_write = 0x400542fc) + [!provide] PROVIDE (nvds_erase = 0x40054334) + [!provide] PROVIDE (nvds_init_memory = 0x40054358) + [!provide] PROVIDE (r_lmp_pack = 0x4001135c) + [!provide] PROVIDE (r_lmp_unpack = 0x4001149c) + [!provide] PROVIDE (r_lm_read_features = 0x4004f0d8) + [!provide] PROVIDE (r_LM_RemoveSniff = 0x40023124) + [!provide] PROVIDE (r_LM_RemoveSniffSubrating = 0x400233c4) + [!provide] PROVIDE (r_lm_remove_sync = 0x400517c8) + [!provide] PROVIDE (r_lm_reset_sync = 0x40051304) + [!provide] PROVIDE (r_lm_role_switch_finished = 0x4004f028) + [!provide] PROVIDE (r_lm_role_switch_start = 0x4004efe0) + [!provide] PROVIDE (r_lm_sco_nego_end = 0x40051828) + [!provide] PROVIDE (r_LM_SniffSubrateNegoRequired = 0x40023334) + [!provide] PROVIDE (r_LM_SniffSubratingHlReq = 0x40023154) + [!provide] PROVIDE (r_LM_SniffSubratingPeerReq = 0x400231dc) + [!provide] PROVIDE (r_lm_sp_debug_mode_get = 0x4004f398) + [!provide] PROVIDE (r_lm_sp_n192_convert_wnaf = 0x400123c0) + [!provide] PROVIDE (r_lm_sp_n_one = 0x400123a4) + [!provide] PROVIDE (r_lm_sp_p192_add = 0x40012828) + [!provide] PROVIDE (r_lm_sp_p192_dbl = 0x4001268c) + [!provide] PROVIDE (r_lm_sp_p192_invert = 0x40012b6c) + [!provide] PROVIDE (r_lm_sp_p192_point_jacobian_to_affine = 0x40012468) + [!provide] PROVIDE (r_lm_sp_p192_points_jacobian_to_affine = 0x400124e4) + [!provide] PROVIDE (r_lm_sp_p192_point_to_inf = 0x40012458) + [!provide] PROVIDE (r_lm_sp_pre_compute_points = 0x40012640) + [!provide] PROVIDE (r_lm_sp_sha256_calculate = 0x400121a0) + [!provide] PROVIDE (r_LM_SuppressAclPacket = 0x4002f658) + [!provide] PROVIDE (r_lm_sync_flow_ctrl_en_get = 0x4004f404) + [!provide] PROVIDE (r_LM_UpdateAclEdrPacketType = 0x4002f5d8) + [!provide] PROVIDE (r_LM_UpdateAclPacketType = 0x4002f584) + [!provide] PROVIDE (r_modules_funcs = 0x3ffafd6c) + [!provide] PROVIDE (r_modules_funcs_p = 0x3ffafd68) + [!provide] PROVIDE (r_nvds_del = 0x400544c4) + [!provide] PROVIDE (r_nvds_get = 0x40054488) + [!provide] PROVIDE (r_nvds_init = 0x40054410) + [!provide] PROVIDE (r_nvds_lock = 0x400544fc) + [!provide] PROVIDE (r_nvds_put = 0x40054534) + [!provide] PROVIDE (rom_abs_temp = 0x400054f0) + [!provide] PROVIDE (rom_bb_bss_bw_40_en = 0x4000401c) + [!provide] PROVIDE (rom_bb_bss_cbw40_dig = 0x40003bac) + [!provide] PROVIDE (rom_bb_rx_ht20_cen_bcov_en = 0x40003734) + [!provide] PROVIDE (rom_bb_tx_ht20_cen = 0x40003760) + [!provide] PROVIDE (rom_bb_wdg_test_en = 0x40003b70) + [!provide] PROVIDE (rom_cbw2040_cfg = 0x400040b0) + [!provide] PROVIDE (rom_check_noise_floor = 0x40003c78) + [!provide] PROVIDE (rom_chip_i2c_readReg = 0x40004110) + [!provide] PROVIDE (rom_chip_i2c_writeReg = 0x40004168) + [!provide] PROVIDE (rom_chip_v7_bt_init = 0x40004d8c) + [!provide] PROVIDE (rom_chip_v7_rx_init = 0x40004cec) + [!provide] PROVIDE (rom_chip_v7_rx_rifs_en = 0x40003d90) + [!provide] PROVIDE (rom_chip_v7_tx_init = 0x40004d18) + [!provide] PROVIDE (rom_clk_force_on_vit = 0x40003710) + [!provide] PROVIDE (rom_correct_rf_ana_gain = 0x400062a8) + [!provide] PROVIDE (rom_dc_iq_est = 0x400055c8) + [!provide] PROVIDE (rom_disable_agc = 0x40002fa4) + [!provide] PROVIDE (rom_enable_agc = 0x40002fcc) + [!provide] PROVIDE (rom_en_pwdet = 0x4000506c) + [!provide] PROVIDE (rom_gen_rx_gain_table = 0x40003e3c) + [!provide] PROVIDE (rom_get_data_sat = 0x4000312c) + [!provide] PROVIDE (rom_get_fm_sar_dout = 0x40005204) + [!provide] PROVIDE (rom_get_power_db = 0x40005fc8) + [!provide] PROVIDE (rom_get_pwctrl_correct = 0x400065d4) + [!provide] PROVIDE (rom_get_rfcal_rxiq_data = 0x40005bbc) + [!provide] PROVIDE (rom_get_rf_gain_qdb = 0x40006290) + [!provide] PROVIDE (rom_get_sar_dout = 0x40006564) + [!provide] PROVIDE (rom_i2c_readReg = 0x40004148) + 0x400041c0 PROVIDE (rom_i2c_readReg_Mask = 0x400041c0) + 0x400041a4 PROVIDE (rom_i2c_writeReg = 0x400041a4) + 0x400041fc PROVIDE (rom_i2c_writeReg_Mask = 0x400041fc) + [!provide] PROVIDE (rom_index_to_txbbgain = 0x40004df8) + [!provide] PROVIDE (rom_iq_est_disable = 0x40005590) + [!provide] PROVIDE (rom_iq_est_enable = 0x40005514) + [!provide] PROVIDE (rom_linear_to_db = 0x40005f64) + [!provide] PROVIDE (rom_loopback_mode_en = 0x400030f8) + [!provide] PROVIDE (rom_meas_tone_pwr_db = 0x40006004) + [!provide] PROVIDE (rom_mhz2ieee = 0x4000404c) + [!provide] PROVIDE (rom_noise_floor_auto_set = 0x40003bdc) + [!provide] PROVIDE (rom_pbus_debugmode = 0x40004458) + [!provide] PROVIDE (rom_pbus_force_mode = 0x40004270) + [!provide] PROVIDE (rom_pbus_force_test = 0x400043c0) + [!provide] PROVIDE (rom_pbus_rd = 0x40004414) + [!provide] PROVIDE (rom_pbus_rd_addr = 0x40004334) + [!provide] PROVIDE (rom_pbus_rd_shift = 0x40004374) + [!provide] PROVIDE (rom_pbus_rx_dco_cal = 0x40005620) + [!provide] PROVIDE (rom_pbus_set_dco = 0x40004638) + [!provide] PROVIDE (rom_pbus_set_rxgain = 0x40004480) + [!provide] PROVIDE (rom_pbus_workmode = 0x4000446c) + [!provide] PROVIDE (rom_pbus_xpd_rx_off = 0x40004508) + [!provide] PROVIDE (rom_pbus_xpd_rx_on = 0x4000453c) + [!provide] PROVIDE (rom_pbus_xpd_tx_off = 0x40004590) + [!provide] PROVIDE (rom_pbus_xpd_tx_on = 0x400045e0) + [!provide] PROVIDE (rom_phy_disable_agc = 0x40002f6c) + [!provide] PROVIDE (rom_phy_disable_cca = 0x40003000) + [!provide] PROVIDE (rom_phy_enable_agc = 0x40002f88) + [!provide] PROVIDE (rom_phy_enable_cca = 0x4000302c) + [!provide] PROVIDE (rom_phy_freq_correct = 0x40004b44) + [!provide] PROVIDE (rom_phyFuns = 0x3ffae0c0) + [!provide] PROVIDE (rom_phy_get_noisefloor = 0x40003c2c) + [!provide] PROVIDE (rom_phy_get_vdd33 = 0x4000642c) + [!provide] PROVIDE (rom_pow_usr = 0x40003044) + [!provide] PROVIDE (rom_read_sar_dout = 0x400051c0) + [!provide] PROVIDE (rom_restart_cal = 0x400046e0) + [!provide] PROVIDE (rom_rfcal_pwrctrl = 0x40006058) + [!provide] PROVIDE (rom_rfcal_rxiq = 0x40005b4c) + [!provide] PROVIDE (rom_rfcal_txcap = 0x40005dec) + [!provide] PROVIDE (rom_rfpll_reset = 0x40004680) + [!provide] PROVIDE (rom_rfpll_set_freq = 0x400047f8) + [!provide] PROVIDE (rom_rtc_mem_backup = 0x40003db4) + [!provide] PROVIDE (rom_rtc_mem_recovery = 0x40003df4) + [!provide] PROVIDE (rom_rx_gain_force = 0x4000351c) + [!provide] PROVIDE (rom_rxiq_cover_mg_mp = 0x40005a68) + [!provide] PROVIDE (rom_rxiq_get_mis = 0x400058e4) + [!provide] PROVIDE (rom_rxiq_set_reg = 0x40005a00) + [!provide] PROVIDE (rom_set_cal_rxdc = 0x400030b8) + [!provide] PROVIDE (rom_set_chan_cal_interp = 0x40005ce0) + [!provide] PROVIDE (rom_set_channel_freq = 0x40004880) + [!provide] PROVIDE (rom_set_loopback_gain = 0x40003060) + [!provide] PROVIDE (rom_set_noise_floor = 0x40003d48) + [!provide] PROVIDE (rom_set_pbus_mem = 0x400031a4) + [!provide] PROVIDE (rom_set_rf_freq_offset = 0x40004ca8) + [!provide] PROVIDE (rom_set_rxclk_en = 0x40003594) + [!provide] PROVIDE (rom_set_txcap_reg = 0x40005d50) + [!provide] PROVIDE (rom_set_txclk_en = 0x40003564) + [!provide] PROVIDE (rom_spur_coef_cfg = 0x40003ac8) + [!provide] PROVIDE (rom_spur_reg_write_one_tone = 0x400037f0) + [!provide] PROVIDE (rom_start_tx_tone = 0x400036b4) + [!provide] PROVIDE (rom_start_tx_tone_step = 0x400035d0) + [!provide] PROVIDE (rom_stop_tx_tone = 0x40003f98) + [!provide] PROVIDE (_rom_store = 0x4000d66c) + [!provide] PROVIDE (_rom_store_table = 0x4000d4f8) + [!provide] PROVIDE (rom_target_power_add_backoff = 0x40006268) + [!provide] PROVIDE (rom_tx_atten_set_interp = 0x400061cc) + [!provide] PROVIDE (rom_txbbgain_to_index = 0x40004dc0) + [!provide] PROVIDE (rom_txcal_work_mode = 0x4000510c) + [!provide] PROVIDE (rom_txdc_cal_init = 0x40004e10) + [!provide] PROVIDE (rom_txdc_cal_v70 = 0x40004ea4) + [!provide] PROVIDE (rom_txiq_cover = 0x4000538c) + [!provide] PROVIDE (rom_txiq_get_mis_pwr = 0x400052dc) + [!provide] PROVIDE (rom_txiq_set_reg = 0x40005154) + [!provide] PROVIDE (rom_tx_pwctrl_bg_init = 0x4000662c) + [!provide] PROVIDE (rom_txtone_linear_pwr = 0x40005290) + [!provide] PROVIDE (rom_wait_rfpll_cal_end = 0x400047a8) + [!provide] PROVIDE (rom_write_gain_mem = 0x4000348c) + [!provide] PROVIDE (rom_write_rfpll_sdm = 0x40004740) + [!provide] PROVIDE (roundup2 = 0x4000ab7c) + [!provide] PROVIDE (r_plf_funcs_p = 0x3ffb8360) + [!provide] PROVIDE (r_rf_rw_bt_init = 0x40054868) + [!provide] PROVIDE (r_rf_rw_init = 0x40054b0c) + [!provide] PROVIDE (r_rf_rw_le_init = 0x400549d0) + [!provide] PROVIDE (r_rwble_activity_ongoing_check = 0x40054d8c) + [!provide] PROVIDE (r_rwble_init = 0x40054bf4) + [!provide] PROVIDE (r_rwble_isr = 0x40054e08) + [!provide] PROVIDE (r_rwble_reset = 0x40054ce8) + [!provide] PROVIDE (r_rwble_sleep_check = 0x40054d78) + [!provide] PROVIDE (r_rwble_version = 0x40054dac) + [!provide] PROVIDE (r_rwbt_init = 0x40055160) + [!provide] PROVIDE (r_rwbt_isr = 0x40055248) + [!provide] PROVIDE (r_rwbt_reset = 0x400551bc) + [!provide] PROVIDE (r_rwbt_sleep_check = 0x4005577c) + [!provide] PROVIDE (r_rwbt_sleep_enter = 0x400557a4) + [!provide] PROVIDE (r_rwbt_sleep_wakeup = 0x400557fc) + [!provide] PROVIDE (r_rwbt_sleep_wakeup_end = 0x400558cc) + [!provide] PROVIDE (r_rwbt_version = 0x4005520c) + [!provide] PROVIDE (r_rwip_assert_err = 0x40055f88) + [!provide] PROVIDE (r_rwip_check_wakeup_boundary = 0x400558fc) + [!provide] PROVIDE (r_rwip_ext_wakeup_enable = 0x40055f3c) + [!provide] PROVIDE (r_rwip_init = 0x4005595c) + [!provide] PROVIDE (r_rwip_pca_clock_dragging_only = 0x40055f48) + [!provide] PROVIDE (r_rwip_prevent_sleep_clear = 0x40055ec8) + [!provide] PROVIDE (r_rwip_prevent_sleep_set = 0x40055e64) + [!provide] PROVIDE (r_rwip_reset = 0x40055ab8) + [!provide] PROVIDE (r_rwip_schedule = 0x40055b38) + [!provide] PROVIDE (r_rwip_sleep = 0x40055b5c) + [!provide] PROVIDE (r_rwip_sleep_enable = 0x40055f30) + [!provide] PROVIDE (r_rwip_version = 0x40055b20) + [!provide] PROVIDE (r_rwip_wakeup = 0x40055dc4) + [!provide] PROVIDE (r_rwip_wakeup_delay_set = 0x40055e4c) + [!provide] PROVIDE (r_rwip_wakeup_end = 0x40055e18) + [!provide] PROVIDE (r_rwip_wlcoex_set = 0x40055f60) + [!provide] PROVIDE (r_SHA_256 = 0x40013a90) + [!provide] PROVIDE (rwip_coex_cfg = 0x3ff9914c) + [!provide] PROVIDE (rwip_priority = 0x3ff99159) + [!provide] PROVIDE (rwip_rf = 0x3ffbdb28) + [!provide] PROVIDE (rwip_rf_p_get = 0x400558f4) + [!provide] PROVIDE (r_XorKey = 0x400112c0) + [!provide] PROVIDE (sha_blk_bits = 0x3ff99290) + [!provide] PROVIDE (sha_blk_bits_bytes = 0x3ff99288) + [!provide] PROVIDE (sha_blk_hash_bytes = 0x3ff9928c) + [!provide] PROVIDE (sig_matrix = 0x3ffae293) + [!provide] PROVIDE (sip_after_tx_complete = 0x4000b358) + [!provide] PROVIDE (sip_alloc_to_host_evt = 0x4000ab9c) + [!provide] PROVIDE (sip_get_ptr = 0x4000b34c) + [!provide] PROVIDE (sip_get_state = 0x4000ae2c) + [!provide] PROVIDE (sip_init_attach = 0x4000ae58) + [!provide] PROVIDE (sip_install_rx_ctrl_cb = 0x4000ae10) + [!provide] PROVIDE (sip_install_rx_data_cb = 0x4000ae20) + [!provide] PROVIDE (sip_is_active = 0x4000b3c0) + [!provide] PROVIDE (sip_post_init = 0x4000aed8) + [!provide] PROVIDE (sip_reclaim_from_host_cmd = 0x4000adbc) + [!provide] PROVIDE (sip_reclaim_tx_data_pkt = 0x4000ad5c) + [!provide] PROVIDE (sip_send = 0x4000af54) + [!provide] PROVIDE (sip_to_host_chain_append = 0x4000aef8) + [!provide] PROVIDE (sip_to_host_evt_send_done = 0x4000ac04) + [!provide] PROVIDE (slc_add_credits = 0x4000baf4) + [!provide] PROVIDE (slc_enable = 0x4000b64c) + [!provide] PROVIDE (slc_from_host_chain_fetch = 0x4000b7e8) + [!provide] PROVIDE (slc_from_host_chain_recycle = 0x4000bb10) + [!provide] PROVIDE (slc_has_pkt_to_host = 0x4000b5fc) + [!provide] PROVIDE (slc_init_attach = 0x4000b918) + [!provide] PROVIDE (slc_init_credit = 0x4000badc) + [!provide] PROVIDE (slc_reattach = 0x4000b62c) + [!provide] PROVIDE (slc_send_to_host_chain = 0x4000b6a0) + [!provide] PROVIDE (slc_set_host_io_max_window = 0x4000b89c) + [!provide] PROVIDE (slc_to_host_chain_recycle = 0x4000b758) + [!provide] PROVIDE (specialModP256 = 0x4001600c) + [!provide] PROVIDE (__stack = 0x3ffe3f20) + [!provide] PROVIDE (__stack_app = 0x3ffe7e30) + [!provide] PROVIDE (_stack_sentry = 0x3ffe1320) + [!provide] PROVIDE (_stack_sentry_app = 0x3ffe5230) + [!provide] PROVIDE (_start = 0x40000704) + [!provide] PROVIDE (start_tb_console = 0x4005a980) + [!provide] PROVIDE (_stat_r = 0x4000bcb4) + [!provide] PROVIDE (_stext = 0x40000560) + [!provide] PROVIDE (SubtractBigHex256 = 0x40015bcc) + [!provide] PROVIDE (SubtractBigHexMod256 = 0x40015e8c) + [!provide] PROVIDE (SubtractBigHexUint32_256 = 0x40015f8c) + [!provide] PROVIDE (SubtractFromSelfBigHex256 = 0x40015c20) + [!provide] PROVIDE (SubtractFromSelfBigHexSign256 = 0x40015dc8) + [!provide] PROVIDE (sw_to_hw = 0x3ffb8d40) + [!provide] PROVIDE (syscall_table_ptr_app = 0x3ffae020) + [!provide] PROVIDE (syscall_table_ptr_pro = 0x3ffae024) + [!provide] PROVIDE (tdefl_compress = 0x400600bc) + [!provide] PROVIDE (tdefl_compress_buffer = 0x400607f4) + [!provide] PROVIDE (tdefl_compress_mem_to_mem = 0x40060900) + [!provide] PROVIDE (tdefl_compress_mem_to_output = 0x400608e0) + [!provide] PROVIDE (tdefl_get_adler32 = 0x400608d8) + [!provide] PROVIDE (tdefl_get_prev_return_status = 0x400608d0) + [!provide] PROVIDE (tdefl_init = 0x40060810) + [!provide] PROVIDE (tdefl_write_image_to_png_file_in_memory = 0x4006091c) + [!provide] PROVIDE (tdefl_write_image_to_png_file_in_memory_ex = 0x40060910) + [!provide] PROVIDE (tinfl_decompress = 0x4005ef30) + [!provide] PROVIDE (tinfl_decompress_mem_to_callback = 0x40060090) + [!provide] PROVIDE (tinfl_decompress_mem_to_mem = 0x40060050) + [!provide] PROVIDE (UartDev = 0x3ffe019c) + [!provide] PROVIDE (user_code_start = 0x3ffe0400) + [!provide] PROVIDE (veryBigHexP256 = 0x3ff9736c) + [!provide] PROVIDE (xthal_bcopy = 0x4000c098) + [!provide] PROVIDE (xthal_copy123 = 0x4000c124) + [!provide] PROVIDE (xthal_get_ccompare = 0x4000c078) + [!provide] PROVIDE (xthal_get_ccount = 0x4000c050) + [!provide] PROVIDE (xthal_get_interrupt = 0x4000c1e4) + [!provide] PROVIDE (xthal_get_intread = 0x4000c1e4) + [!provide] PROVIDE (Xthal_intlevel = 0x3ff9c2b4) + [!provide] PROVIDE (xthal_memcpy = 0x4000c0bc) + [!provide] PROVIDE (xthal_set_ccompare = 0x4000c058) + [!provide] PROVIDE (xthal_set_intclear = 0x4000c1ec) + [!provide] PROVIDE (_xtos_set_intlevel = 0x4000bfdc) + 0x3ffe01e0 PROVIDE (g_ticks_per_us_pro = 0x3ffe01e0) + 0x3ffe40f0 PROVIDE (g_ticks_per_us_app = 0x3ffe40f0) + 0x40063238 PROVIDE (esp_rom_spiflash_config_param = 0x40063238) + 0x400621b0 PROVIDE (esp_rom_spiflash_read_user_cmd = 0x400621b0) + 0x40062e60 PROVIDE (esp_rom_spiflash_write_encrypted_disable = 0x40062e60) + 0x40062df4 PROVIDE (esp_rom_spiflash_write_encrypted_enable = 0x40062df4) + 0x40062e1c PROVIDE (esp_rom_spiflash_prepare_encrypted_data = 0x40062e1c) + [!provide] PROVIDE (esp_rom_spiflash_select_qio_pins = 0x40061ddc) + [!provide] PROVIDE (esp_rom_spiflash_attach = 0x40062a6c) + 0x40062bc8 PROVIDE (esp_rom_spiflash_config_clk = 0x40062bc8) + 0x3ffae270 PROVIDE (g_rom_spiflash_chip = 0x3ffae270) + [!provide] PROVIDE (SPI_write_enable = 0x40062320) + [!provide] PROVIDE (hci_le_rd_rem_used_feats_cmd_handler = 0x400417b4) + [!provide] PROVIDE (hci_per_inq_mode_cmd_handler = 0x400519b0) + [!provide] PROVIDE (llcp_length_req_handler = 0x40043808) + [!provide] PROVIDE (llcp_unknown_rsp_handler = 0x40043ba8) + [!provide] PROVIDE (llcp_channel_map_req_handler = 0x4004291c) + [!provide] PROVIDE (llcp_con_up_req_handler = 0x400426f0) + [!provide] PROVIDE (FilePacketSendDeflatedReqMsgProc = 0x40008b24) + [!provide] PROVIDE (FilePacketSendReqMsgProc = 0x40008860) + [!provide] PROVIDE (FlashDwnLdDeflatedStartMsgProc = 0x40008ad8) + [!provide] PROVIDE (FlashDwnLdParamCfgMsgProc = 0x4000891c) + [!provide] PROVIDE (FlashDwnLdStartMsgProc = 0x40008820) + [!provide] PROVIDE (FlashDwnLdStopDeflatedReqMsgProc = 0x40008c18) + [!provide] PROVIDE (FlashDwnLdStopReqMsgProc = 0x400088ec) + [!provide] PROVIDE (MemDwnLdStartMsgProc = 0x40008948) + [!provide] PROVIDE (MemDwnLdStopReqMsgProc = 0x400089dc) + [!provide] PROVIDE (MemPacketSendReqMsgProc = 0x40008978) + [!provide] PROVIDE (uart_baudrate_detect = 0x40009034) + [!provide] PROVIDE (uart_buff_switch = 0x400093c0) + [!provide] PROVIDE (UartConnCheck = 0x40008738) + [!provide] PROVIDE (UartConnectProc = 0x40008a04) + [!provide] PROVIDE (UartDwnLdProc = 0x40008ce8) + [!provide] PROVIDE (UartRegReadProc = 0x40008a58) + [!provide] PROVIDE (UartRegWriteProc = 0x40008a14) + [!provide] PROVIDE (UartSetBaudProc = 0x40008aac) + [!provide] PROVIDE (UartSpiAttachProc = 0x40008a6c) + [!provide] PROVIDE (UartSpiReadProc = 0x40008a80) + [!provide] PROVIDE (VerifyFlashMd5Proc = 0x40008c44) + [!provide] PROVIDE (GetUartDevice = 0x40009598) + [!provide] PROVIDE (RcvMsg = 0x4000954c) + [!provide] PROVIDE (SendMsg = 0x40009384) + [!provide] PROVIDE (UartGetCmdLn = 0x40009564) + [!provide] PROVIDE (UartRxString = 0x400092fc) + [!provide] PROVIDE (Uart_Init = 0x40009120) + [!provide] PROVIDE (recv_packet = 0x40009424) + [!provide] PROVIDE (send_packet = 0x40009340) + [!provide] PROVIDE (uartAttach = 0x40008fd0) + [!provide] PROVIDE (uart_div_modify = 0x400090cc) + [!provide] PROVIDE (uart_rx_intr_handler = 0x40008f4c) + [!provide] PROVIDE (uart_rx_one_char = 0x400092d0) + [!provide] PROVIDE (uart_rx_one_char_block = 0x400092a4) + [!provide] PROVIDE (uart_rx_readbuff = 0x40009394) + 0x40009258 PROVIDE (uart_tx_flush = 0x40009258) + [!provide] PROVIDE (uart_tx_one_char = 0x40009200) + [!provide] PROVIDE (uart_tx_one_char2 = 0x4000922c) + [!provide] PROVIDE (uart_tx_switch = 0x40009028) + [!provide] PROVIDE (rom_gpio_output_set = 0x40009b24) + [!provide] PROVIDE (rom_gpio_output_set_high = 0x40009b5c) + [!provide] PROVIDE (rom_gpio_input_get = 0x40009b88) + [!provide] PROVIDE (rom_gpio_input_get_high = 0x40009b9c) + 0x40009edc PROVIDE (rom_gpio_matrix_in = 0x40009edc) + [!provide] PROVIDE (rom_gpio_matrix_out = 0x40009f0c) + 0x40009fdc PROVIDE (rom_gpio_pad_select_gpio = 0x40009fdc) + [!provide] PROVIDE (rom_gpio_pad_set_drv = 0x4000a11c) + [!provide] PROVIDE (rom_gpio_pad_pulldown = 0x4000a348) + 0x4000a22c PROVIDE (rom_gpio_pad_pullup = 0x4000a22c) + [!provide] PROVIDE (rom_gpio_pad_hold = 0x4000a734) + [!provide] PROVIDE (rom_gpio_pad_unhold = 0x4000a484) + [!provide] PROVIDE (ets_aes_crypt = 0x4005c9b8) + [!provide] PROVIDE (ets_aes_disable = 0x4005c8f8) + [!provide] PROVIDE (ets_aes_enable = 0x4005c8cc) + [!provide] PROVIDE (ets_aes_set_endian = 0x4005c928) + [!provide] PROVIDE (ets_aes_setkey_dec = 0x4005c994) + [!provide] PROVIDE (ets_aes_setkey_enc = 0x4005c97c) + [!provide] PROVIDE (ets_bigint_disable = 0x4005c4e0) + [!provide] PROVIDE (ets_bigint_enable = 0x4005c498) + [!provide] PROVIDE (ets_bigint_mod_mult_getz = 0x4005c818) + [!provide] PROVIDE (ets_bigint_mod_mult_prepare = 0x4005c7b4) + [!provide] PROVIDE (ets_bigint_mod_power_getz = 0x4005c614) + [!provide] PROVIDE (ets_bigint_mod_power_prepare = 0x4005c54c) + [!provide] PROVIDE (ets_bigint_montgomery_mult_getz = 0x4005c7a4) + [!provide] PROVIDE (ets_bigint_montgomery_mult_prepare = 0x4005c6fc) + [!provide] PROVIDE (ets_bigint_mult_getz = 0x4005c6e8) + [!provide] PROVIDE (ets_bigint_mult_prepare = 0x4005c630) + [!provide] PROVIDE (ets_bigint_wait_finish = 0x4005c520) + [!provide] PROVIDE (ets_post = 0x4000673c) + [!provide] PROVIDE (ets_run = 0x400066bc) + [!provide] PROVIDE (ets_set_idle_cb = 0x40006674) + [!provide] PROVIDE (ets_task = 0x40006688) + [!provide] PROVIDE (ets_efuse_get_8M_clock = 0x40008710) + 0x40008658 PROVIDE (ets_efuse_get_spiconfig = 0x40008658) + [!provide] PROVIDE (ets_efuse_program_op = 0x40008628) + [!provide] PROVIDE (ets_efuse_read_op = 0x40008600) + [!provide] PROVIDE (ets_intr_lock = 0x400067b0) + [!provide] PROVIDE (ets_intr_unlock = 0x400067c4) + [!provide] PROVIDE (ets_isr_attach = 0x400067ec) + [!provide] PROVIDE (ets_waiti0 = 0x400067d8) + [!provide] PROVIDE (intr_matrix_set = 0x4000681c) + [!provide] PROVIDE (check_pos = 0x400068b8) + [!provide] PROVIDE (ets_set_appcpu_boot_addr = 0x4000689c) + [!provide] PROVIDE (ets_set_startup_callback = 0x4000688c) + [!provide] PROVIDE (ets_set_user_start = 0x4000687c) + [!provide] PROVIDE (ets_unpack_flash_code = 0x40007018) + [!provide] PROVIDE (ets_unpack_flash_code_legacy = 0x4000694c) + [!provide] PROVIDE (rom_main = 0x400076c4) + 0x40007cf8 PROVIDE (ets_write_char_uart = 0x40007cf8) + 0x40007d18 PROVIDE (ets_install_putc1 = 0x40007d18) + 0x40007d38 PROVIDE (ets_install_putc2 = 0x40007d38) + 0x40007d28 PROVIDE (ets_install_uart_printf = 0x40007d28) + 0x40007d54 PROVIDE (ets_printf = 0x40007d54) + [!provide] PROVIDE (rtc_boot_control = 0x4000821c) + 0x400081d4 PROVIDE (rtc_get_reset_reason = 0x400081d4) + [!provide] PROVIDE (rtc_get_wakeup_cause = 0x400081f4) + [!provide] PROVIDE (rtc_select_apb_bridge = 0x40008288) + [!provide] PROVIDE (set_rtc_memory_crc = 0x40008208) + 0x4000824c PROVIDE (software_reset = 0x4000824c) + [!provide] PROVIDE (software_reset_cpu = 0x40008264) + [!provide] PROVIDE (ets_secure_boot_check = 0x4005cb40) + [!provide] PROVIDE (ets_secure_boot_check_finish = 0x4005cc04) + [!provide] PROVIDE (ets_secure_boot_check_start = 0x4005cbcc) + [!provide] PROVIDE (ets_secure_boot_finish = 0x4005ca84) + [!provide] PROVIDE (ets_secure_boot_hash = 0x4005cad4) + [!provide] PROVIDE (ets_secure_boot_obtain = 0x4005cb14) + [!provide] PROVIDE (ets_secure_boot_rd_abstract = 0x4005cba8) + [!provide] PROVIDE (ets_secure_boot_rd_iv = 0x4005cb84) + [!provide] PROVIDE (ets_secure_boot_start = 0x4005ca34) + [!provide] PROVIDE (ets_sha_disable = 0x4005c0a8) + 0x4005c07c PROVIDE (ets_sha_enable = 0x4005c07c) + [!provide] PROVIDE (ets_sha_finish = 0x4005c104) + [!provide] PROVIDE (ets_sha_init = 0x4005c0d4) + [!provide] PROVIDE (ets_sha_update = 0x4005c2a0) + 0x40008534 PROVIDE (ets_delay_us = 0x40008534) + 0x4000855c PROVIDE (ets_get_cpu_frequency = 0x4000855c) + [!provide] PROVIDE (ets_get_detected_xtal_freq = 0x40008588) + [!provide] PROVIDE (ets_get_xtal_scale = 0x4000856c) + [!provide] PROVIDE (ets_update_cpu_frequency_rom = 0x40008550) + [!provide] PROVIDE (hci_tl_env = 0x3ffb8154) + [!provide] PROVIDE (ld_acl_env = 0x3ffb8258) + [!provide] PROVIDE (ea_env = 0x3ffb80ec) + [!provide] PROVIDE (lc_sco_data_path_config = 0x3ffb81f8) + [!provide] PROVIDE (lc_sco_env = 0x3ffb81fc) + [!provide] PROVIDE (ld_active_ch_map = 0x3ffb8334) + [!provide] PROVIDE (ld_bcst_acl_env = 0x3ffb8274) + [!provide] PROVIDE (ld_csb_rx_env = 0x3ffb8278) + [!provide] PROVIDE (ld_csb_tx_env = 0x3ffb827c) + [!provide] PROVIDE (ld_env = 0x3ffb9510) + [!provide] PROVIDE (ld_fm_env = 0x3ffb8284) + [!provide] PROVIDE (ld_inq_env = 0x3ffb82e4) + [!provide] PROVIDE (ld_iscan_env = 0x3ffb82e8) + [!provide] PROVIDE (ld_page_env = 0x3ffb82f0) + [!provide] PROVIDE (ld_pca_env = 0x3ffb82f4) + [!provide] PROVIDE (ld_pscan_env = 0x3ffb8308) + [!provide] PROVIDE (ld_sched_env = 0x3ffb830c) + [!provide] PROVIDE (ld_sched_params = 0x3ffb96c0) + [!provide] PROVIDE (ld_sco_env = 0x3ffb824c) + [!provide] PROVIDE (ld_sscan_env = 0x3ffb832c) + [!provide] PROVIDE (ld_strain_env = 0x3ffb8330) + [!provide] PROVIDE (LM_Sniff = 0x3ffb8230) + [!provide] PROVIDE (LM_SniffSubRate = 0x3ffb8214) + [!provide] PROVIDE (prbs_64bytes = 0x3ff98992) + [!provide] PROVIDE (nvds_env = 0x3ffb8364) + [!provide] PROVIDE (nvds_magic_number = 0x3ff9912a) + [!provide] PROVIDE (TASK_DESC_LLD = 0x3ff98b58) + [!provide] PROVIDE (ld_acl_clk_isr = 0x40030cf8) + [!provide] PROVIDE (ld_acl_evt_canceled_cbk = 0x40033944) + [!provide] PROVIDE (ld_acl_rsw_evt_canceled_cbk = 0x40033364) + [!provide] PROVIDE (ld_acl_evt_stop_cbk = 0x40033870) + [!provide] PROVIDE (ld_acl_evt_start_cbk = 0x40030ab0) + [!provide] PROVIDE (ld_acl_sniff_evt_start_cbk = 0x40031360) + [!provide] PROVIDE (ld_acl_test_mode_update = 0x40032050) + [!provide] PROVIDE (ld_acl_resched = 0x40033814) + [!provide] PROVIDE (ld_acl_rx_isr = 0x40033aa8) + [!provide] PROVIDE (lc_acl_disc_ind_handler = 0x4002f270) + [!provide] PROVIDE (lc_pca_sscan_start_req_handler = 0x40029b34) + [!provide] PROVIDE (lmp_feats_req_ext_handler = 0x4002ccb0) + [!provide] PROVIDE (ld_pscan_em_init = 0x4003e5e8) + [!provide] PROVIDE (ld_acl_rsw_start = 0x40032e90) + [!provide] PROVIDE (ld_acl_sniff_enter = 0x40031244) + [!provide] PROVIDE (ld_acl_sniff_trans_sched = 0x40033734) + [!provide] PROVIDE (ld_acl_afh_apply = 0x40030e94) + [!provide] PROVIDE (ld_acl_afh_switch_on_cbk = 0x40030fa8) + [!provide] PROVIDE (ld_acl_afh_switch_off_cbk = 0x400310c4) + [!provide] PROVIDE (lc_pwr_decr_ind_handler = 0x4002859c) + [!provide] PROVIDE (lc_pwr_incr_ind_handler = 0x400284a8) + [!provide] PROVIDE (lc_pwr_max_ind_handler = 0x40028690) + [!provide] PROVIDE (lc_setup_sync_param_check = 0x4002354c) + [!provide] PROVIDE (lc_lmp_rsp_to_flow_spec_handler = 0x400297f0) + [!provide] PROVIDE (lc_lmp_rsp_to_ind_handler = 0x4002a674) + [!provide] PROVIDE (lc_pca_sscan_clk_ind_handler = 0x4002a38c) + [!provide] PROVIDE (lc_op_loc_unsniff_req_handler = 0x40028be0) + [!provide] PROVIDE (lc_op_loc_sniff_req_handler = 0x40028ccc) + [!provide] PROVIDE (lc_op_loc_switch_req_handler = 0x40028df4) + [!provide] PROVIDE (lc_op_loc_sync_con_req_handler = 0x40028f6c) + [!provide] PROVIDE (lm_sync_conf = 0x3ffb8348) + [!provide] PROVIDE (lm_nb_sync_active = 0x3ffb8346) + [!provide] PROVIDE (lm_sync_nego = 0x3ffb8345) + [!provide] PROVIDE (lm_nego_cnt = 0x3ffb8344) + [!provide] PROVIDE (lm_nego_cntl = 0x3ffb8342) + [!provide] PROVIDE (lm_nego_max_cnt = 0x3ffb8343) + [!provide] PROVIDE (lm_nego_pkt_used = 0x3ffb8340) + 0x4005cfec PROVIDE (esp_rom_crc32_le = crc32_le) + [!provide] PROVIDE (esp_rom_crc16_le = crc16_le) + [!provide] PROVIDE (esp_rom_crc8_le = crc8_le) + [!provide] PROVIDE (esp_rom_crc32_be = crc32_be) + [!provide] PROVIDE (esp_rom_crc16_be = crc16_be) + [!provide] PROVIDE (esp_rom_crc8_be = crc8_be) + 0x40009fdc PROVIDE (esp_rom_gpio_pad_select_gpio = rom_gpio_pad_select_gpio) + 0x4000a22c PROVIDE (esp_rom_gpio_pad_pullup_only = rom_gpio_pad_pullup) + [!provide] PROVIDE (esp_rom_gpio_pad_set_drv = rom_gpio_pad_set_drv) + [!provide] PROVIDE (esp_rom_gpio_pad_unhold = rom_gpio_pad_unhold) + 0x40009edc PROVIDE (esp_rom_gpio_connect_in_signal = rom_gpio_matrix_in) + [!provide] PROVIDE (esp_rom_gpio_connect_out_signal = rom_gpio_matrix_out) + [!provide] PROVIDE (esp_rom_efuse_mac_address_crc8 = esp_crc8) + 0x40008658 PROVIDE (esp_rom_efuse_get_flash_gpio_info = ets_efuse_get_spiconfig) + [!provide] PROVIDE (esp_rom_efuse_is_secure_boot_enabled = ets_efuse_secure_boot_enabled) + [!provide] PROVIDE (esp_rom_uart_flush_tx = uart_tx_flush) + [!provide] PROVIDE (esp_rom_uart_tx_one_char = uart_tx_one_char) + [!provide] PROVIDE (esp_rom_uart_tx_wait_idle = uart_tx_wait_idle) + [!provide] PROVIDE (esp_rom_uart_rx_one_char = uart_rx_one_char) + [!provide] PROVIDE (esp_rom_uart_rx_string = UartRxString) + [!provide] PROVIDE (esp_rom_uart_set_as_console = uart_tx_switch) + [!provide] PROVIDE (esp_rom_uart_putc = ets_write_char_uart) + [!provide] PROVIDE (esp_rom_uart_switch_buffer = uart_buff_switch) + 0x40009258 PROVIDE (esp_rom_output_flush_tx = uart_tx_flush) + [!provide] PROVIDE (esp_rom_output_tx_one_char = uart_tx_one_char) + [!provide] PROVIDE (esp_rom_output_tx_wait_idle = uart_tx_wait_idle) + [!provide] PROVIDE (esp_rom_output_rx_one_char = uart_rx_one_char) + [!provide] PROVIDE (esp_rom_output_rx_string = UartRxString) + [!provide] PROVIDE (esp_rom_output_set_as_console = uart_tx_switch) + 0x40007cf8 PROVIDE (esp_rom_output_putc = ets_write_char_uart) + [!provide] PROVIDE (esp_rom_output_switch_buffer = uart_buff_switch) + 0x4005da7c PROVIDE (esp_rom_md5_init = 0x4005da7c) + 0x4005da9c PROVIDE (esp_rom_md5_update = 0x4005da9c) + 0x4005db1c PROVIDE (esp_rom_md5_final = 0x4005db1c) + 0x4000824c PROVIDE (esp_rom_software_reset_system = software_reset) + [!provide] PROVIDE (esp_rom_software_reset_cpu = software_reset_cpu) + 0x40007d54 PROVIDE (esp_rom_printf = ets_printf) + 0x40008534 PROVIDE (esp_rom_delay_us = ets_delay_us) + 0x40007d28 PROVIDE (esp_rom_install_uart_printf = ets_install_uart_printf) + 0x400081d4 PROVIDE (esp_rom_get_reset_reason = rtc_get_reset_reason) + [!provide] PROVIDE (esp_rom_route_intr_matrix = intr_matrix_set) + 0x4000855c PROVIDE (esp_rom_get_cpu_ticks_per_us = ets_get_cpu_frequency) + [!provide] PROVIDE (esp_rom_spiflash_set_bp = esp_rom_spiflash_lock) + [!provide] PROVIDE (esp_rom_spiflash_write_enable = SPI_write_enable) + [!provide] PROVIDE (esp_rom_regi2c_read = rom_i2c_readReg) + 0x400041c0 PROVIDE (esp_rom_regi2c_read_mask = rom_i2c_readReg_Mask) + 0x400041a4 PROVIDE (esp_rom_regi2c_write = rom_i2c_writeReg) + 0x400041fc PROVIDE (esp_rom_regi2c_write_mask = rom_i2c_writeReg_Mask) + 0x4006387c __absvdi2 = 0x4006387c + 0x40063868 __absvsi2 = 0x40063868 + 0x40002590 __adddf3 = 0x40002590 + 0x400020e8 __addsf3 = 0x400020e8 + 0x40002cbc __addvdi3 = 0x40002cbc + 0x40002c98 __addvsi3 = 0x40002c98 + 0x4000c818 __ashldi3 = 0x4000c818 + 0x4000c830 __ashrdi3 = 0x4000c830 + 0x40064b08 __bswapdi2 = 0x40064b08 + 0x40064ae0 __bswapsi2 = 0x40064ae0 + 0x40064b7c __clrsbdi2 = 0x40064b7c + 0x40064b64 __clrsbsi2 = 0x40064b64 + 0x4000ca50 __clzdi2 = 0x4000ca50 + 0x4000c7e8 __clzsi2 = 0x4000c7e8 + 0x40063820 __cmpdi2 = 0x40063820 + 0x4000ca64 __ctzdi2 = 0x4000ca64 + 0x4000c7f0 __ctzsi2 = 0x4000c7f0 + 0x400645a4 __divdc3 = 0x400645a4 + 0x40002954 __divdf3 = 0x40002954 + 0x4000ca84 __divdi3 = 0x4000ca84 + 0x4000c7b8 __divsi3 = 0x4000c7b8 + 0x400636a8 __eqdf2 = 0x400636a8 + 0x40063374 __eqsf2 = 0x40063374 + 0x40002c34 __extendsfdf2 = 0x40002c34 + 0x4000ca2c __ffsdi2 = 0x4000ca2c + 0x4000c804 __ffssi2 = 0x4000c804 + 0x40002ac4 __fixdfdi = 0x40002ac4 + 0x40002a78 __fixdfsi = 0x40002a78 + 0x4000244c __fixsfdi = 0x4000244c + 0x4000240c __fixsfsi = 0x4000240c + 0x40002b30 __fixunsdfsi = 0x40002b30 + 0x40002504 __fixunssfdi = 0x40002504 + 0x400024ac __fixunssfsi = 0x400024ac + 0x4000c988 __floatdidf = 0x4000c988 + 0x4000c8c0 __floatdisf = 0x4000c8c0 + 0x4000c944 __floatsidf = 0x4000c944 + 0x4000c870 __floatsisf = 0x4000c870 + 0x4000c978 __floatundidf = 0x4000c978 + 0x4000c8b0 __floatundisf = 0x4000c8b0 + 0x4000c938 __floatunsidf = 0x4000c938 + 0x4000c864 __floatunsisf = 0x4000c864 + 0x40064a70 __gcc_bcmp = 0x40064a70 + 0x40063768 __gedf2 = 0x40063768 + 0x4006340c __gesf2 = 0x4006340c + 0x400636dc __gtdf2 = 0x400636dc + 0x400633a0 __gtsf2 = 0x400633a0 + 0x40063704 __ledf2 = 0x40063704 + 0x400633c0 __lesf2 = 0x400633c0 + 0x4000c84c __lshrdi3 = 0x4000c84c + 0x40063790 __ltdf2 = 0x40063790 + 0x4006342c __ltsf2 = 0x4006342c + 0x4000cd4c __moddi3 = 0x4000cd4c + 0x4000c7c0 __modsi3 = 0x4000c7c0 + 0x40063c90 __muldc3 = 0x40063c90 + 0x4006358c __muldf3 = 0x4006358c + 0x4000c9fc __muldi3 = 0x4000c9fc + 0x400632c8 __mulsf3 = 0x400632c8 + 0x4000c7b0 __mulsi3 = 0x4000c7b0 + 0x40002d78 __mulvdi3 = 0x40002d78 + 0x40002d60 __mulvsi3 = 0x40002d60 + 0x400636a8 __nedf2 = 0x400636a8 + 0x400634a0 __negdf2 = 0x400634a0 + 0x4000ca14 __negdi2 = 0x4000ca14 + 0x400020c0 __negsf2 = 0x400020c0 + 0x40002e98 __negvdi2 = 0x40002e98 + 0x40002e78 __negvsi2 = 0x40002e78 + 0x40063374 __nesf2 = 0x40063374 + 0x3ff96544 __nsau_data = 0x3ff96544 + 0x40002f3c __paritysi2 = 0x40002f3c + 0x3ff96544 __popcount_tab = 0x3ff96544 + 0x40002ef8 __popcountdi2 = 0x40002ef8 + 0x40002ed0 __popcountsi2 = 0x40002ed0 + 0x400638e4 __powidf2 = 0x400638e4 + 0x400026e4 __subdf3 = 0x400026e4 + 0x400021d0 __subsf3 = 0x400021d0 + 0x40002d20 __subvdi3 = 0x40002d20 + 0x40002cf8 __subvsi3 = 0x40002cf8 + 0x40002b90 __truncdfsf2 = 0x40002b90 + 0x40063840 __ucmpdi2 = 0x40063840 + 0x40064bec __udiv_w_sdiv = 0x40064bec + 0x4000cff8 __udivdi3 = 0x4000cff8 + 0x40064bf4 __udivmoddi4 = 0x40064bf4 + 0x4000c7c8 __udivsi3 = 0x4000c7c8 + 0x4000d280 __umoddi3 = 0x4000d280 + 0x4000c7d0 __umodsi3 = 0x4000c7d0 + 0x4000c7d8 __umulsidi3 = 0x4000c7d8 + 0x400637f4 __unorddf2 = 0x400637f4 + 0x40063478 __unordsf2 = 0x40063478 + 0x40056340 abs = 0x40056340 + 0x4000c1f4 bzero = 0x4000c1f4 + 0x40056348 div = 0x40056348 + 0x4000c728 __dummy_lock = 0x4000c728 + 0x4000c730 __dummy_lock_try = 0x4000c730 + 0x4000c20c isascii = 0x4000c20c + 0x40000f2c isblank = 0x40000f2c + 0x40000f50 iscntrl = 0x40000f50 + 0x40000f94 isgraph = 0x40000f94 + 0x40000fa8 isprint = 0x40000fa8 + 0x40000fc0 ispunct = 0x40000fc0 + 0x40056678 __itoa = 0x40056678 + 0x400566b4 itoa = 0x400566b4 + 0x40056370 labs = 0x40056370 + 0x40056378 ldiv = 0x40056378 + 0x400562cc longjmp = 0x400562cc + 0x4000c220 memccpy = 0x4000c220 + 0x4000c244 memchr = 0x4000c244 + 0x4000c260 memcmp = 0x4000c260 + 0x4000c2c8 memcpy = 0x4000c2c8 + 0x4000c3c0 memmove = 0x4000c3c0 + 0x4000c400 memrchr = 0x4000c400 + 0x4000c44c memset = 0x4000c44c + 0x40056424 qsort = 0x40056424 + 0x4000c498 __sccl = 0x4000c498 + 0x40056268 setjmp = 0x40056268 + 0x40001210 strcasestr = 0x40001210 + 0x4000c518 strcat = 0x4000c518 + 0x4000c53c strchr = 0x4000c53c + 0x40001274 strcmp = 0x40001274 + 0x400013ac strcpy = 0x400013ac + 0x4000c558 strcspn = 0x4000c558 + 0x40001470 strlcat = 0x40001470 + 0x4000c584 strlcpy = 0x4000c584 + 0x400014c0 strlen = 0x400014c0 + 0x4000c5c4 strncat = 0x4000c5c4 + 0x4000c5f4 strncmp = 0x4000c5f4 + 0x400015d4 strncpy = 0x400015d4 + 0x4000c628 strnlen = 0x4000c628 + 0x40001708 strrchr = 0x40001708 + 0x40001734 strsep = 0x40001734 + 0x4000c648 strspn = 0x4000c648 + 0x4000c674 strstr = 0x4000c674 + 0x40058f3c __submore = 0x40058f3c + 0x4000c720 toascii = 0x4000c720 + 0x400561f0 __utoa = 0x400561f0 + 0x40056258 utoa = 0x40056258 + 0x3ff40000 PROVIDE (UART0 = 0x3ff40000) + 0x3ff42000 PROVIDE (SPI1 = 0x3ff42000) + 0x3ff43000 PROVIDE (SPI0 = 0x3ff43000) + 0x3ff44000 PROVIDE (GPIO = 0x3ff44000) + [!provide] PROVIDE (SDM = 0x3ff44f00) + 0x3ff48000 PROVIDE (RTCCNTL = 0x3ff48000) + [!provide] PROVIDE (RTCIO = 0x3ff48400) + [!provide] PROVIDE (SENS = 0x3ff48800) + [!provide] PROVIDE (HINF = 0x3ff4b000) + [!provide] PROVIDE (UHCI1 = 0x3ff4c000) + [!provide] PROVIDE (I2S0 = 0x3ff4f000) + 0x3ff50000 PROVIDE (UART1 = 0x3ff50000) + [!provide] PROVIDE (I2C0 = 0x3ff53000) + [!provide] PROVIDE (UHCI0 = 0x3ff54000) + [!provide] PROVIDE (HOST = 0x3ff55000) + [!provide] PROVIDE (RMT = 0x3ff56000) + [!provide] PROVIDE (RMTMEM = 0x3ff56800) + [!provide] PROVIDE (PCNT = 0x3ff57000) + [!provide] PROVIDE (SLC = 0x3ff58000) + [!provide] PROVIDE (LEDC = 0x3ff59000) + 0x3ff5a000 PROVIDE (EFUSE = 0x3ff5a000) + [!provide] PROVIDE (MCPWM0 = 0x3ff5e000) + 0x3ff5f000 PROVIDE (TIMERG0 = 0x3ff5f000) + 0x3ff60000 PROVIDE (TIMERG1 = 0x3ff60000) + [!provide] PROVIDE (SPI2 = 0x3ff64000) + [!provide] PROVIDE (SPI3 = 0x3ff65000) + [!provide] PROVIDE (SYSCON = 0x3ff66000) + [!provide] PROVIDE (I2C1 = 0x3ff67000) + [!provide] PROVIDE (SDMMC = 0x3ff68000) + [!provide] PROVIDE (EMAC_DMA = 0x3ff69000) + [!provide] PROVIDE (EMAC_EXT = 0x3ff69800) + [!provide] PROVIDE (EMAC_MAC = 0x3ff6a000) + [!provide] PROVIDE (TWAI = 0x3ff6b000) + [!provide] PROVIDE (MCPWM1 = 0x3ff6c000) + [!provide] PROVIDE (I2S1 = 0x3ff6d000) + 0x3ff6e000 PROVIDE (UART2 = 0x3ff6e000) + +.iram_loader.text + 0x40078000 0x3de7 + 0x40078000 . = ALIGN (0x10) + 0x40078000 _loader_text_start = ABSOLUTE (.) + *(.stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*) + *(.iram1 .iram1.*) + .iram1.0.literal + 0x40078000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .iram1.0.literal + 0x40078004 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + 0x4 (size before relaxing) + .iram1.7.literal + 0x40078004 0x34 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x3c (size before relaxing) + .iram1.8.literal + 0x40078038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x4 (size before relaxing) + .iram1.6.literal + 0x40078038 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x3c (size before relaxing) + .iram1.9.literal + 0x4007803c 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x14 (size before relaxing) + .iram1.10.literal + 0x40078044 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x8 (size before relaxing) + .iram1.12.literal + 0x40078048 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x48 (size before relaxing) + .iram1.6.literal + 0x4007805c 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .iram1.8.literal + 0x4007806c 0x38 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x60 (size before relaxing) + .iram1.9.literal + 0x400780a4 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0xc (size before relaxing) + .iram1.2.literal + 0x400780ac 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .iram1.3.literal + 0x400780b0 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .iram1.0.literal + 0x400780b4 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x20 (size before relaxing) + .iram1.2.literal + 0x400780c8 0xc esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + .iram1.0.literal + 0x400780d4 0xc esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + .iram1.0.literal + 0x400780e0 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x8 (size before relaxing) + .iram1.5.literal + 0x400780e0 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x400780e0 0x4 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x8 (size before relaxing) + .iram1.1.literal + 0x400780e4 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x4 (size before relaxing) + .literal.esp_log_early_timestamp + 0x400780e4 0x4 esp-idf/log/liblog.a(log_timestamp.c.obj) + .literal.bootloader_common_check_chip_revision_validity + 0x400780e8 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x28 (size before relaxing) + .literal.bootloader_common_ota_select_crc + 0x400780fc 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .literal.bootloader_common_ota_select_valid + 0x40078100 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x8 (size before relaxing) + .literal.bootloader_common_check_chip_validity + 0x40078100 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x14 (size before relaxing) + .literal.bootloader_common_get_active_otadata + 0x40078104 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0xc (size before relaxing) + .literal.bootloader_mmap + 0x40078104 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x48 (size before relaxing) + .literal.bootloader_munmap + 0x40078128 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x10 (size before relaxing) + .literal.bootloader_flash_read + 0x4007812c 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x4c (size before relaxing) + .literal.bootloader_flash_erase_sector + 0x40078140 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x8 (size before relaxing) + .literal.bootloader_flash_write + 0x40078140 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x34 (size before relaxing) + .literal.bootloader_enable_wp + 0x4007814c 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x4 (size before relaxing) + .literal.bootloader_flash_get_spi_mode + 0x4007814c 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_fill_random + 0x40078150 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + 0x14 (size before relaxing) + .literal.bootloader_random_disable + 0x40078160 0x38 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + 0x44 (size before relaxing) + .literal.bootloader_clock_get_rated_freq_mhz + 0x40078198 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + 0x4 (size before relaxing) + .literal.log_invalid_app_partition + 0x40078198 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x28 (size before relaxing) + .literal.cache_ll_l1_enable_bus$part$0 + 0x400781ac 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.try_load_partition + 0x400781b0 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x14 (size before relaxing) + .literal.cache_ll_l1_enable_bus$constprop$0 + 0x400781b4 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.set_actual_ota_seq + 0x400781b8 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x34 (size before relaxing) + .literal.cache_ll_l1_get_bus$isra$0 + 0x400781c8 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x20 (size before relaxing) + .literal.load_image + 0x400781e4 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x84 (size before relaxing) + .literal.bootloader_common_read_otadata + 0x40078200 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x28 (size before relaxing) + .literal.bootloader_utility_load_partition_table + 0x40078208 0x60 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0xa0 (size before relaxing) + .literal.bootloader_utility_get_selected_boot_partition + 0x40078268 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x48 (size before relaxing) + .literal.bootloader_reset + 0x40078278 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0xc (size before relaxing) + .literal.bootloader_utility_load_boot_image + 0x4007827c 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x5c (size before relaxing) + .literal.bootloader_sha256_start + 0x4007828c 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .literal.bootloader_sha256_data + 0x40078294 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0x2c (size before relaxing) + .literal.bootloader_sha256_finish + 0x400782b4 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0x44 (size before relaxing) + .literal.bootloader_console_deinit + 0x400782d0 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .literal.__assert_func + 0x400782d4 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + 0x8 (size before relaxing) + .literal.unlikely.abort + 0x400782d8 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + 0x10 (size before relaxing) + .literal.process_checksum + 0x400782e4 0x8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x1c (size before relaxing) + .literal.bootloader_util_regions_overlap + 0x400782ec 0x10 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x14 (size before relaxing) + .literal.verify_load_addresses$constprop$0 + 0x400782fc 0x84 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0xa8 (size before relaxing) + .literal.process_appended_hash_and_sig$isra$0 + 0x40078380 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x14 (size before relaxing) + .literal.process_image_header + 0x40078384 0xc esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x34 (size before relaxing) + .literal.should_load + 0x40078390 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x10 (size before relaxing) + .literal.process_segments + 0x40078394 0x2c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x98 (size before relaxing) + .literal.image_load + 0x400783c0 0x14 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x64 (size before relaxing) + .literal.bootloader_load_image + 0x400783d4 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x4 (size before relaxing) + .literal.esp_partition_table_verify + 0x400783d4 0x2c esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + 0x54 (size before relaxing) + .literal.mmu_hal_ctx_init + 0x40078400 0x4 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .literal.mmu_hal_unmap_all + 0x40078404 0x8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x10 (size before relaxing) + .literal.efuse_hal_get_rated_freq_mhz + 0x4007840c 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x4 (size before relaxing) + .literal.wdt_hal_init + 0x4007840c 0x3c esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x44 (size before relaxing) + .literal.wdt_hal_config_stage + 0x40078448 0x0 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x24 (size before relaxing) + .literal.wdt_hal_write_protect_disable + 0x40078448 0x0 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_32k_enable_common + 0x40078448 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_bbpll_disable + 0x40078454 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_32k_enable + 0x40078460 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_8m_enable + 0x40078468 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xc (size before relaxing) + .literal.rtc_clk_8m_enabled + 0x4007846c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_8md256_enabled + 0x4007846c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_slow_src_set + 0x4007846c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xc (size before relaxing) + .literal.rtc_clk_slow_src_get + 0x4007846c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_slow_freq_get_hz + 0x4007846c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x8 (size before relaxing) + .literal.rtc_clk_fast_src_set + 0x40078470 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_fast_src_get + 0x40078470 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_cpu_freq_mhz_to_config + 0x40078470 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_cpu_freq_get_config + 0x40078470 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x24 (size before relaxing) + .literal.rtc_clk_xtal_freq_update + 0x4007847c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x8 (size before relaxing) + .literal.rtc_clk_cpu_freq_to_pll_mhz + 0x40078480 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x3c (size before relaxing) + .literal.rtc_clk_cpu_freq_set_config + 0x40078498 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x8c (size before relaxing) + .literal.rtc_clk_apb_freq_get + 0x400784a4 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xc (size before relaxing) + .literal.rtc_clk_cal_internal + 0x400784ac 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x58 (size before relaxing) + .literal.rtc_clk_cal_ratio + 0x400784d4 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x18 (size before relaxing) + .literal.rtc_clk_wait_for_slow_cycle + 0x400784dc 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x28 (size before relaxing) + .literal.startup.enable_timer_group0_for_calibration + 0x400784e4 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0xc (size before relaxing) + .literal.esp_rom_set_cpu_ticks_per_us + 0x400784e4 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .literal.esp_rom_spiflash_read_status + 0x400784ec 0xc esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + 0x10 (size before relaxing) + .literal.esp_rom_spiflash_wait_idle + 0x400784f8 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + 0xc (size before relaxing) + .literal.esp_rom_spiflash_enable_write$constprop$0$isra$0 + 0x40078500 0x4 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + 0x10 (size before relaxing) + .literal.esp_rom_spiflash_program_page_internal$constprop$0 + 0x40078504 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + 0x1c (size before relaxing) + .literal.esp_rom_spiflash_erase_sector + 0x4007850c 0x4 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + 0x24 (size before relaxing) + .literal.esp_rom_spiflash_write + 0x40078510 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + 0x1c (size before relaxing) + .literal.esp_rom_spiflash_write_encrypted + 0x40078510 0xc esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + 0x10 (size before relaxing) + .literal.esp_rom_spiflash_read + 0x4007851c 0x34 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + 0x5c (size before relaxing) + .iram1.0 0x40078550 0x1e esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + 0x40078550 bootloader_common_get_chip_ver_pkg + *fill* 0x4007856e 0x2 + .iram1.0 0x40078570 0xa esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + 0xd (size before relaxing) + 0x40078570 esp_flash_encryption_enabled + *fill* 0x4007857a 0x2 + .iram1.7 0x4007857c 0x259 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x4007857c bootloader_flash_execute_command_common + *fill* 0x400787d5 0x3 + .iram1.8 0x400787d8 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x400787d8 bootloader_execute_flash_command + .iram1.6 0x400787f8 0x127 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x147 (size before relaxing) + 0x400787f8 bootloader_flash_unlock_default + 0x400787f8 bootloader_flash_unlock + *fill* 0x4007891f 0x1 + .iram1.9 0x40078920 0x32 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x36 (size before relaxing) + 0x40078920 bootloader_flash_read_sfdp + *fill* 0x40078952 0x2 + .iram1.10 0x40078954 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x40078954 bootloader_read_flash_id + *fill* 0x4007897a 0x2 + .iram1.12 0x4007897c 0x97 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0xaf (size before relaxing) + 0x4007897c bootloader_flash_xmc_startup + *fill* 0x40078a13 0x1 + .iram1.6 0x40078a14 0x6e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x40078a14 bootloader_flash_cs_timing_config + *fill* 0x40078a82 0x2 + .iram1.8 0x40078a84 0x1ea esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x1fa (size before relaxing) + 0x40078a84 bootloader_flash_gpio_config + *fill* 0x40078c6e 0x2 + .iram1.9 0x40078c70 0x8c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x40078c70 bootloader_flash_dummy_config + .iram1.2 0x40078cfc 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40078cfc rtc_clk_xtal_freq_get + 0x40078cfc rtc_get_xtal + .iram1.3 0x40078d20 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40078d20 rtc_clk_apb_freq_update + *fill* 0x40078d39 0x3 + .iram1.0 0x40078d3c 0x76 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x7e (size before relaxing) + 0x40078d3c rtc_clk_cpu_freq_to_xtal + *fill* 0x40078db2 0x2 + .iram1.2 0x40078db4 0x40 esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + 0x40078db4 esp_rom_output_tx_wait_idle + .iram1.0 0x40078df4 0x45 esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + 0x40078df4 esp_rom_gpio_connect_out_signal + *fill* 0x40078e39 0x3 + .iram1.0 0x40078e3c 0x18 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x1c (size before relaxing) + 0x40078e3c efuse_hal_chip_revision + .iram1.5 0x40078e54 0x20 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x40078e54 efuse_hal_flash_encryption_enabled + .iram1.0 0x40078e74 0x40 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x40078e74 efuse_hal_get_major_chip_version + .iram1.1 0x40078eb4 0x10 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x40078eb4 efuse_hal_get_minor_chip_version + .iram1.0 0x40078ec4 0xa esp-idf/soc/libsoc.a(dport_access.c.obj) + 0x40078ec4 esp_dport_access_reg_read + *fill* 0x40078ece 0x0 + *fill* 0x40078ece 0x0 + *fill* 0x40078ece 0x2 + .iram1.11 0x40078ed0 0x4e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + *fill* 0x40078f1e 0x0 + *fill* 0x40078f1e 0x0 + *fill* 0x40078f1e 0x0 + *fill* 0x40078f1e 0x0 + *fill* 0x40078f1e 0x0 + *fill* 0x40078f1e 0x0 + *fill* 0x40078f1e 0x0 + *fill* 0x40078f1e 0x0 + *fill* 0x40078f1e 0x0 + *fill* 0x40078f1e 0x0 + *fill* 0x40078f1e 0x2 + .iram1.2 0x40078f20 0x7 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x40078f20 efuse_hal_get_disable_wafer_version_major + *fill* 0x40078f27 0x0 + *liblog.a:(.literal .text .literal.* .text.*) + *fill* 0x40078f27 0x1 + .text.esp_log_early_timestamp + 0x40078f28 0x1d esp-idf/log/liblog.a(log_timestamp.c.obj) + 0x40078f28 esp_log_early_timestamp + 0x40078f28 esp_log_timestamp + *libgcc.a:(.literal .text .literal.* .text.*) + *libclang_rt.builtins.a:(.literal .text .literal.* .text.*) + *libbootloader_support.a:bootloader_clock_loader.*(.literal .text .literal.* .text.*) + *libbootloader_support.a:bootloader_common_loader.*(.literal .text .literal.* .text.*) + *fill* 0x40078f45 0x3 + .text.bootloader_common_check_chip_revision_validity + 0x40078f48 0xbd esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0xc5 (size before relaxing) + 0x40078f48 bootloader_common_check_chip_revision_validity + *fill* 0x40079005 0x3 + .text.bootloader_common_ota_select_crc + 0x40079008 0x13 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x40079008 bootloader_common_ota_select_crc + *fill* 0x4007901b 0x1 + .text.bootloader_common_ota_select_valid + 0x4007901c 0x22 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x26 (size before relaxing) + 0x4007901c bootloader_common_ota_select_valid + *fill* 0x4007903e 0x2 + .text.bootloader_common_check_chip_validity + 0x40079040 0x4f esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x52 (size before relaxing) + 0x40079040 bootloader_common_check_chip_validity + *fill* 0x4007908f 0x1 + .text.bootloader_common_get_active_otadata + 0x40079090 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x2e (size before relaxing) + 0x40079090 bootloader_common_get_active_otadata + *fill* 0x400790b6 0x0 + *fill* 0x400790b6 0x0 + *fill* 0x400790b6 0x2 + .text.bootloader_common_ota_select_invalid + 0x400790b8 0x1b esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x400790b8 bootloader_common_ota_select_invalid + *fill* 0x400790d3 0x0 + *fill* 0x400790d3 0x0 + *fill* 0x400790d3 0x1 + .text.bootloader_common_select_otadata + 0x400790d4 0x45 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x400790d4 bootloader_common_select_otadata + *fill* 0x40079119 0x0 + *libbootloader_support.a:bootloader_flash.*(.literal .text .literal.* .text.*) + *fill* 0x40079119 0x3 + .text.bootloader_mmap + 0x4007911c 0xdb esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x4007911c bootloader_mmap + *fill* 0x400791f7 0x1 + .text.bootloader_munmap + 0x400791f8 0x2d esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x400791f8 bootloader_munmap + *fill* 0x40079225 0x3 + .text.bootloader_flash_read + 0x40079228 0xd9 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0xdd (size before relaxing) + 0x40079228 bootloader_flash_read + *fill* 0x40079301 0x3 + .text.bootloader_flash_erase_sector + 0x40079304 0x11 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x15 (size before relaxing) + 0x40079304 bootloader_flash_erase_sector + *fill* 0x40079315 0x3 + .text.bootloader_flash_write + 0x40079318 0x8a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x95 (size before relaxing) + 0x40079318 bootloader_flash_write + *fill* 0x400793a2 0x2 + .text.bootloader_enable_wp + 0x400793a4 0x13 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x400793a4 bootloader_enable_wp + *fill* 0x400793b7 0x1 + .text.bootloader_flash_get_spi_mode + 0x400793b8 0x2e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x400793b8 bootloader_flash_get_spi_mode + *fill* 0x400793e6 0x2 + .text.spi_to_esp_err + 0x400793e8 0x1f esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + *fill* 0x40079407 0x1 + .text.bootloader_mmap_get_free_pages + 0x40079408 0x7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x40079408 bootloader_mmap_get_free_pages + *fill* 0x4007940f 0x0 + *fill* 0x4007940f 0x0 + *fill* 0x4007940f 0x0 + *fill* 0x4007940f 0x0 + *fill* 0x4007940f 0x0 + *fill* 0x4007940f 0x0 + *fill* 0x4007940f 0x0 + *libbootloader_support.a:bootloader_random.*(.literal .text .literal.* .text.*) + *fill* 0x4007940f 0x1 + .text.bootloader_fill_random + 0x40079410 0x55 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + 0x40079410 bootloader_fill_random + *fill* 0x40079465 0x0 + *libbootloader_support.a:bootloader_random*.*(.literal.bootloader_random_disable .text.bootloader_random_disable) + *fill* 0x40079465 0x3 + .text.bootloader_random_disable + 0x40079468 0x13c esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + 0x40079468 bootloader_random_disable + *fill* 0x400795a4 0x0 + *libesp_common.a:fpga_overrides.*(.literal.bootloader_fill_random .text.bootloader_fill_random) + *libbootloader_support.a:bootloader_efuse.*(.literal .text .literal.* .text.*) + .text.bootloader_clock_get_rated_freq_mhz + 0x400795a4 0xa esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + 0xd (size before relaxing) + 0x400795a4 bootloader_clock_get_rated_freq_mhz + *libbootloader_support.a:bootloader_utility.*(.literal .text .literal.* .text.*) + *fill* 0x400795ae 0x2 + .text.log_invalid_app_partition + 0x400795b0 0x51 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x54 (size before relaxing) + *fill* 0x40079601 0x3 + .text.cache_ll_l1_enable_bus$part$0 + 0x40079604 0x2d esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + *fill* 0x40079631 0x3 + .text.try_load_partition + 0x40079634 0x2f esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x33 (size before relaxing) + *fill* 0x40079663 0x1 + .text.cache_ll_l1_enable_bus$constprop$0 + 0x40079664 0x2d esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + *fill* 0x40079691 0x3 + .text.set_actual_ota_seq + 0x40079694 0x78 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x88 (size before relaxing) + .text.cache_ll_l1_get_bus$isra$0 + 0x4007970c 0x73 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + *fill* 0x4007977f 0x1 + .text.load_image + 0x40079780 0x17f esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x1a7 (size before relaxing) + *fill* 0x400798ff 0x1 + .text.bootloader_common_read_otadata + 0x40079900 0x79 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x7d (size before relaxing) + 0x40079900 bootloader_common_read_otadata + *fill* 0x40079979 0x3 + .text.bootloader_utility_load_partition_table + 0x4007997c 0x18a esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x19e (size before relaxing) + 0x4007997c bootloader_utility_load_partition_table + *fill* 0x40079b06 0x2 + .text.bootloader_utility_get_selected_boot_partition + 0x40079b08 0xe7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0xeb (size before relaxing) + 0x40079b08 bootloader_utility_get_selected_boot_partition + *fill* 0x40079bef 0x1 + .text.bootloader_reset + 0x40079bf0 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x1b (size before relaxing) + 0x40079bf0 bootloader_reset + *fill* 0x40079c08 0x0 + .text.bootloader_utility_load_boot_image + 0x40079c08 0xea esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x106 (size before relaxing) + 0x40079c08 bootloader_utility_load_boot_image + *fill* 0x40079cf2 0x0 + *fill* 0x40079cf2 0x2 + .text.index_to_partition + 0x40079cf4 0x3e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + *fill* 0x40079d32 0x0 + *fill* 0x40079d32 0x0 + *fill* 0x40079d32 0x0 + *fill* 0x40079d32 0x0 + *fill* 0x40079d32 0x0 + *fill* 0x40079d32 0x0 + *fill* 0x40079d32 0x0 + *fill* 0x40079d32 0x0 + *fill* 0x40079d32 0x0 + *fill* 0x40079d32 0x2 + .text.bootloader_debug_buffer + 0x40079d34 0x5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x40079d34 bootloader_debug_buffer + *libbootloader_support.a:bootloader_sha.*(.literal .text .literal.* .text.*) + *fill* 0x40079d39 0x3 + .text.bootloader_sha256_start + 0x40079d3c 0x12 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0x40079d3c bootloader_sha256_start + *fill* 0x40079d4e 0x2 + .text.bootloader_sha256_data + 0x40079d50 0x8f esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0x40079d50 bootloader_sha256_data + *fill* 0x40079ddf 0x1 + .text.bootloader_sha256_finish + 0x40079de0 0xba esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0xbe (size before relaxing) + 0x40079de0 bootloader_sha256_finish + *fill* 0x40079e9a 0x0 + *fill* 0x40079e9a 0x0 + *fill* 0x40079e9a 0x0 + *libbootloader_support.a:bootloader_console_loader.*(.literal .text .literal.* .text.*) + *fill* 0x40079e9a 0x2 + .text.bootloader_console_deinit + 0x40079e9c 0xd esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + 0x40079e9c bootloader_console_deinit + *fill* 0x40079ea9 0x0 + *libbootloader_support.a:bootloader_panic.*(.literal .text .literal.* .text.*) + *fill* 0x40079ea9 0x3 + .text.__assert_func + 0x40079eac 0x17 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + 0x40079eac __assert_func + *fill* 0x40079ec3 0x1 + .text.unlikely.abort + 0x40079ec4 0x2d esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + 0x40079ec4 abort + *fill* 0x40079ef1 0x0 + *fill* 0x40079ef1 0x0 + *libbootloader_support.a:bootloader_soc.*(.literal .text .literal.* .text.*) + *fill* 0x40079ef1 0x3 + .text.bootloader_ana_clock_glitch_reset_config + 0x40079ef4 0x5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + 0x40079ef4 bootloader_ana_clock_glitch_reset_config + *libbootloader_support.a:esp_image_format.*(.literal .text .literal.* .text.*) + *fill* 0x40079ef9 0x3 + .text.process_checksum + 0x40079efc 0xa7 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + *fill* 0x40079fa3 0x1 + .text.bootloader_util_regions_overlap + 0x40079fa4 0x3b esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + *fill* 0x40079fdf 0x1 + .text.verify_load_addresses$constprop$0 + 0x40079fe0 0x190 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x1a0 (size before relaxing) + .text.process_appended_hash_and_sig$isra$0 + 0x4007a170 0x5a esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + *fill* 0x4007a1ca 0x2 + .text.process_image_header + 0x4007a1cc 0xc1 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0xd1 (size before relaxing) + *fill* 0x4007a28d 0x3 + .text.should_load + 0x4007a290 0x7f esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + *fill* 0x4007a30f 0x1 + .text.process_segments + 0x4007a310 0x2dd esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x2e9 (size before relaxing) + *fill* 0x4007a5ed 0x3 + .text.image_load + 0x4007a5f0 0x1de esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x1f2 (size before relaxing) + *fill* 0x4007a7ce 0x2 + .text.bootloader_load_image + 0x4007a7d0 0x13 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x4007a7d0 bootloader_load_image + *fill* 0x4007a7e3 0x0 + *fill* 0x4007a7e3 0x0 + *fill* 0x4007a7e3 0x0 + *fill* 0x4007a7e3 0x0 + *fill* 0x4007a7e3 0x0 + *fill* 0x4007a7e3 0x0 + *fill* 0x4007a7e3 0x0 + *fill* 0x4007a7e3 0x0 + *libbootloader_support.a:flash_encrypt.*(.literal .text .literal.* .text.*) + *libbootloader_support.a:flash_encryption_secure_features.*(.literal .text .literal.* .text.*) + *libbootloader_support.a:flash_partitions.*(.literal .text .literal.* .text.*) + *fill* 0x4007a7e3 0x1 + .text.esp_partition_table_verify + 0x4007a7e4 0x125 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + 0x128 (size before relaxing) + 0x4007a7e4 esp_partition_table_verify + *fill* 0x4007a909 0x0 + *libbootloader_support.a:secure_boot.*(.literal .text .literal.* .text.*) + *libbootloader_support.a:secure_boot_secure_features.*(.literal .text .literal.* .text.*) + *libbootloader_support.a:secure_boot_signatures_bootloader.*(.literal .text .literal.* .text.*) + *libmicro-ecc.a:*.*(.literal .text .literal.* .text.*) + *libspi_flash.a:*.*(.literal .text .literal.* .text.*) + *libhal.a:mmu_hal.*(.literal .text .literal.* .text.*) + *fill* 0x4007a909 0x3 + .text.mmu_hal_ctx_init + 0x4007a90c 0xe esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x4007a90c mmu_hal_ctx_init + *fill* 0x4007a91a 0x2 + .text.mmu_hal_unmap_all + 0x4007a91c 0x3e esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x4007a91c mmu_hal_unmap_all + *fill* 0x4007a95a 0x0 + *libhal.a:efuse_hal.*(.literal .text .literal.* .text.*) + *fill* 0x4007a95a 0x2 + .text.efuse_hal_get_rated_freq_mhz + 0x4007a95c 0x21 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x4007a95c efuse_hal_get_rated_freq_mhz + *fill* 0x4007a97d 0x0 + *libesp_hal_wdt.a:wdt_hal_iram.*(.literal .text .literal.* .text.*) + *fill* 0x4007a97d 0x3 + .text.wdt_hal_init + 0x4007a980 0x25b esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x4007a980 wdt_hal_init + *fill* 0x4007abdb 0x1 + .text.wdt_hal_config_stage + 0x4007abdc 0x137 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x4007abdc wdt_hal_config_stage + *fill* 0x4007ad13 0x1 + .text.wdt_hal_write_protect_disable + 0x4007ad14 0x1d esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x4007ad14 wdt_hal_write_protect_disable + *fill* 0x4007ad31 0x0 + *fill* 0x4007ad31 0x0 + *fill* 0x4007ad31 0x0 + *fill* 0x4007ad31 0x3 + .text.wdt_hal_write_protect_enable + 0x4007ad34 0x1c esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x4007ad34 wdt_hal_write_protect_enable + .text.wdt_hal_enable + 0x4007ad50 0x48 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x4007ad50 wdt_hal_enable + .text.wdt_hal_set_flashboot_en + 0x4007ad98 0x43 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x4007ad98 wdt_hal_set_flashboot_en + *libesp_hw_support.a:rtc_clk.*(.literal .text .literal.* .text.*) + *fill* 0x4007addb 0x1 + .text.rtc_clk_32k_enable_common + 0x4007addc 0x88 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_bbpll_disable + 0x4007ae64 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_32k_enable + 0x4007aea0 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4007aea0 rtc_clk_32k_enable + .text.rtc_clk_8m_enable + 0x4007aed8 0x7f esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4007aed8 rtc_clk_8m_enable + *fill* 0x4007af57 0x1 + .text.rtc_clk_8m_enabled + 0x4007af58 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4007af58 rtc_clk_8m_enabled + .text.rtc_clk_8md256_enabled + 0x4007af70 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4007af70 rtc_clk_8md256_enabled + .text.rtc_clk_slow_src_set + 0x4007af88 0x79 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x7c (size before relaxing) + 0x4007af88 rtc_clk_slow_src_set + *fill* 0x4007b001 0x3 + .text.rtc_clk_slow_src_get + 0x4007b004 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4007b004 rtc_clk_slow_src_get + *fill* 0x4007b01f 0x1 + .text.rtc_clk_slow_freq_get_hz + 0x4007b020 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4007b020 rtc_clk_slow_freq_get_hz + .text.rtc_clk_fast_src_set + 0x4007b044 0x3b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4007b044 rtc_clk_fast_src_set + *fill* 0x4007b07f 0x1 + .text.rtc_clk_fast_src_get + 0x4007b080 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4007b080 rtc_clk_fast_src_get + .text.rtc_clk_cpu_freq_mhz_to_config + 0x4007b090 0x5a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4007b090 rtc_clk_cpu_freq_mhz_to_config + *fill* 0x4007b0ea 0x2 + .text.rtc_clk_cpu_freq_get_config + 0x4007b0ec 0x89 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x8d (size before relaxing) + 0x4007b0ec rtc_clk_cpu_freq_get_config + *fill* 0x4007b175 0x3 + .text.rtc_clk_xtal_freq_update + 0x4007b178 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4007b178 rtc_clk_xtal_freq_update + *fill* 0x4007b19e 0x2 + .text.rtc_clk_cpu_freq_to_pll_mhz + 0x4007b1a0 0x96 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xa1 (size before relaxing) + *fill* 0x4007b236 0x2 + .text.rtc_clk_cpu_freq_set_config + 0x4007b238 0x2b1 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x2c5 (size before relaxing) + 0x4007b238 rtc_clk_cpu_freq_set_config + *fill* 0x4007b4e9 0x3 + .text.rtc_clk_apb_freq_get + 0x4007b4ec 0x2d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4007b4ec rtc_clk_apb_freq_get + *fill* 0x4007b519 0x0 + *fill* 0x4007b519 0x0 + *fill* 0x4007b519 0x0 + *fill* 0x4007b519 0x0 + *fill* 0x4007b519 0x0 + *fill* 0x4007b519 0x0 + *fill* 0x4007b519 0x0 + *fill* 0x4007b519 0x0 + *fill* 0x4007b519 0x0 + *libesp_hw_support.a:rtc_time.*(.literal .text .literal.* .text.*) + *fill* 0x4007b519 0x3 + .text.rtc_clk_cal_internal + 0x4007b51c 0x1d2 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x1da (size before relaxing) + *fill* 0x4007b6ee 0x2 + .text.rtc_clk_cal_ratio + 0x4007b6f0 0x33 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x37 (size before relaxing) + 0x4007b6f0 rtc_clk_cal_ratio + *fill* 0x4007b723 0x1 + .text.rtc_clk_wait_for_slow_cycle + 0x4007b724 0xa7 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x4007b724 rtc_clk_wait_for_slow_cycle + *fill* 0x4007b7cb 0x1 + .text.startup.enable_timer_group0_for_calibration + 0x4007b7cc 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + *fill* 0x4007b80c 0x0 + *fill* 0x4007b80c 0x0 + *fill* 0x4007b80c 0x0 + *fill* 0x4007b80c 0x0 + *libefuse.a:*.*(.literal .text .literal.* .text.*) + *libesp_rom.a:*.*(.literal .text .literal.* .text.*) + .text.esp_rom_set_cpu_ticks_per_us + 0x4007b80c 0xf esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + 0x4007b80c esp_rom_set_cpu_ticks_per_us + *fill* 0x4007b81b 0x1 + .text.esp_rom_spiflash_read_status + 0x4007b81c 0x5a esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + 0x4007b81c esp_rom_spiflash_read_status + *fill* 0x4007b876 0x2 + .text.esp_rom_spiflash_wait_idle + 0x4007b878 0x2d esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + 0x4007b878 esp_rom_spiflash_wait_idle + *fill* 0x4007b8a5 0x3 + .text.esp_rom_spiflash_enable_write$constprop$0$isra$0 + 0x4007b8a8 0x39 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + 0x3c (size before relaxing) + *fill* 0x4007b8e1 0x3 + .text.esp_rom_spiflash_program_page_internal$constprop$0 + 0x4007b8e4 0xce esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + 0xd2 (size before relaxing) + *fill* 0x4007b9b2 0x2 + .text.esp_rom_spiflash_erase_sector + 0x4007b9b4 0x81 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + 0x89 (size before relaxing) + 0x4007b9b4 esp_rom_spiflash_erase_sector + *fill* 0x4007ba35 0x3 + .text.esp_rom_spiflash_write + 0x4007ba38 0x9a esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + 0x4007ba38 esp_rom_spiflash_write + *fill* 0x4007bad2 0x2 + .text.esp_rom_spiflash_write_encrypted + 0x4007bad4 0x57 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + 0x4007bad4 esp_rom_spiflash_write_encrypted + *fill* 0x4007bb2b 0x1 + .text.esp_rom_spiflash_read + 0x4007bb2c 0x2bb esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + 0x2bf (size before relaxing) + 0x4007bb2c esp_rom_spiflash_read + *fill* 0x4007bde7 0x0 + *fill* 0x4007bde7 0x0 + *fill* 0x4007bde7 0x0 + *fill* 0x4007bde7 0x0 + *fill* 0x4007bde7 0x0 + *fill* 0x4007bde7 0x0 + *fill* 0x4007bde7 0x0 + *(.fini.literal) + *(.fini) + *(.gnu.version) + 0x4007bde7 _loader_text_end = ABSOLUTE (.) + +.iram.text 0x40080400 0x0 + 0x40080400 . = ALIGN (0x10) + *(.entry.text) + *(.init.literal) + *(.init) + +.dram0.bss 0x3fff0000 0x38 + 0x3fff0000 . = ALIGN (0x8) + 0x3fff0000 _dram_start = ABSOLUTE (.) + 0x3fff0000 _bss_start = ABSOLUTE (.) + *(.dynsbss) + *(.sbss) + *(.sbss.*) + *(.gnu.linkonce.sb.*) + *(.scommon) + *(.sbss2) + *(.sbss2.*) + *(.gnu.linkonce.sb2.*) + *(.dynbss) + *(.bss) + *(.bss.*) + .bss.ota_has_initial_contents + 0x3fff0000 0x1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + *fill* 0x3fff0001 0x3 + .bss.ram_obfs_value + 0x3fff0004 0x8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .bss.words_hashed + 0x3fff000c 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .bss.mapped 0x3fff0010 0x1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + *fill* 0x3fff0011 0x3 + .bss.bootloader_image_hdr + 0x3fff0014 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x3fff0014 bootloader_image_hdr + .bss.s_cur_pll_freq + 0x3fff002c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .bss.s_ctx 0x3fff0030 0x1 esp-idf/hal/libhal.a(mmu_hal.c.obj) + *(.gnu.linkonce.b.*) + *(COMMON) + 0x3fff0038 . = ALIGN (0x8) + *fill* 0x3fff0031 0x7 + 0x3fff0038 _bss_end = ABSOLUTE (.) + +.dram0.bootdesc + 0x3fff0040 0x50 + 0x3fff0040 _data_start = ABSOLUTE (.) + *(.data_bootloader_desc .data_bootloader_desc.*) + .data_bootloader_desc + 0x3fff0040 0x50 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + 0x3fff0040 esp_bootloader_desc + +.dram0.data 0x3fff0090 0x30 + *(.dram1 .dram1.*) + .dram1.0 0x3fff0090 0x28 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + 0x3fff0090 GPIO_PIN_MUX_REG_OFFSET + *(.data) + *(.data.*) + .data.s_bootloader_partition_offset + 0x3fff00b8 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .data.current_read_mapping + 0x3fff00bc 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + *(.gnu.linkonce.d.*) + *(.data1) + *(.sdata) + *(.sdata.*) + *(.gnu.linkonce.s.*) + *(.gnu.linkonce.s2.*) + *(.jcr) + 0x3fff00c0 _data_end = ABSOLUTE (.) + +.dram0.rodata 0x3fff00c0 0x1800 + 0x3fff00c0 _rodata_start = ABSOLUTE (.) + *(.rodata) + .rodata 0x3fff00c0 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .rodata 0x3fff00c8 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + *(.rodata.*) + .rodata.__assert_func.str1.1 + 0x3fff00dc 0x1682 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + 0x22 (size before relaxing) + .rodata.abort.str1.1 + 0x3fff175e 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + 0x22 (size before relaxing) + .rodata.call_start_cpu0.str1.1 + 0x3fff175e 0x0 esp-idf/main/libmain.a(bootloader_start.c.obj) + 0x2e (size before relaxing) + .rodata.log_invalid_app_partition.str1.1 + 0x3fff175e 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x8e (size before relaxing) + .rodata.try_load_partition.str1.1 + 0x3fff175e 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x37 (size before relaxing) + .rodata.set_actual_ota_seq.str1.1 + 0x3fff175e 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x6c (size before relaxing) + .rodata.load_image.str1.1 + 0x3fff175e 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x91 (size before relaxing) + .rodata.bootloader_common_read_otadata.str1.1 + 0x3fff175e 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x7b (size before relaxing) + .rodata.bootloader_utility_load_partition_table.str1.1 + 0x3fff175e 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x1e5 (size before relaxing) + .rodata.bootloader_utility_get_selected_boot_partition.str1.1 + 0x3fff175e 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0xe6 (size before relaxing) + .rodata.bootloader_utility_load_boot_image.str1.1 + 0x3fff175e 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0xbf (size before relaxing) + .rodata.esp_partition_table_verify.str1.1 + 0x3fff175e 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + 0x12d (size before relaxing) + .rodata.process_checksum.str1.1 + 0x3fff175e 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x42 (size before relaxing) + .rodata.bootloader_util_regions_overlap.str1.1 + 0x3fff175e 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x5a (size before relaxing) + .rodata.verify_load_addresses$constprop$0.str1.1 + 0x3fff175e 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0xe1 (size before relaxing) + .rodata.process_appended_hash_and_sig$isra$0.str1.1 + 0x3fff175e 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x42 (size before relaxing) + .rodata.process_image_header.str1.1 + 0x3fff175e 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x87 (size before relaxing) + .rodata.process_segments.str1.1 + 0x3fff175e 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x17d (size before relaxing) + .rodata.image_load.str1.1 + 0x3fff175e 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x8c (size before relaxing) + .rodata.__func__$0 + 0x3fff175e 0x20 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.__func__$1 + 0x3fff177e 0x16 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.bootloader_sha256_data.str1.1 + 0x3fff1794 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0x5a (size before relaxing) + .rodata.bootloader_sha256_finish.str1.1 + 0x3fff1794 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0x45 (size before relaxing) + .rodata.padding$0 + 0x3fff1794 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.__func__$1 + 0x3fff17d4 0x19 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.__func__$2 + 0x3fff17ed 0x17 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.wdt_reset_info_dump.str1.1 + 0x3fff1804 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + 0x76 (size before relaxing) + .rodata.bootloader_init.str1.1 + 0x3fff1804 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + 0x17c (size before relaxing) + .rodata.__func__$0 + 0x3fff1804 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .rodata.bootloader_common_check_chip_revision_validity.str1.1 + 0x3fff1814 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0xa0 (size before relaxing) + .rodata.bootloader_common_check_chip_validity.str1.1 + 0x3fff1814 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x35 (size before relaxing) + .rodata.bootloader_fill_random.str1.1 + 0x3fff1814 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + 0x4b (size before relaxing) + .rodata.__func__$0 + 0x3fff1814 0x17 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .rodata.bootloader_mmap.str1.1 + 0x3fff182b 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0xb3 (size before relaxing) + .rodata.bootloader_flash_read.str1.1 + 0x3fff182b 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0xaf (size before relaxing) + .rodata.str1.1 + 0x3fff182b 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x79 (size before relaxing) + .rodata.bootloader_flash_write.str1.1 + 0x3fff182b 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0xc9 (size before relaxing) + .rodata.__func__$2 + 0x3fff182b 0x1b esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.__func__$1 + 0x3fff1846 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.__func__$0 + 0x3fff186e 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.bootloader_init_spi_flash.str1.1 + 0x3fff1892 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0xd3 (size before relaxing) + .rodata.bootloader_read_bootloader_header.str1.1 + 0x3fff1892 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x3a (size before relaxing) + .rodata.bootloader_check_bootloader_validity.str1.1 + 0x3fff1892 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x23 (size before relaxing) + .rodata.bootloader_enable_random.str1.1 + 0x3fff1892 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x32 (size before relaxing) + .rodata.bootloader_print_banner.str1.1 + 0x3fff1892 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x6c (size before relaxing) + .rodata.rtc_clk_apll_coeff_calc.str1.1 + 0x3fff1892 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xa6 (size before relaxing) + .rodata.rtc_clk_cpu_freq_get_config.str1.1 + 0x3fff1892 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x31 (size before relaxing) + .rodata.rtc_clk_xtal_freq_estimate.str1.1 + 0x3fff1892 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + 0xb0 (size before relaxing) + .rodata.rtc_clk_init.str1.1 + 0x3fff1892 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + 0xaa (size before relaxing) + .rodata.rtc_clk_cal_internal.str1.1 + 0x3fff1892 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x95 (size before relaxing) + .rodata.rtc_clk_cal_ratio.str1.1 + 0x3fff1892 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0xf (size before relaxing) + .rodata.rtc_clk_wait_for_slow_cycle.str1.1 + 0x3fff1892 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x29 (size before relaxing) + .rodata.__func__$1 + 0x3fff1892 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.__func__$0 + 0x3fff18a7 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + *(.gnu.linkonce.r.*) + *(.rodata1) + *(.sdata2 .sdata2.*) + 0x3fff18b9 __XT_EXCEPTION_TABLE_ = ABSOLUTE (.) + *(.xt_except_table) + *(.gcc_except_table) + *(.gnu.linkonce.e.*) + *(.gnu.version_r) + *(.eh_frame_hdr) + *(.eh_frame) + 0x3fff18bc . = ((. + 0x3) & 0xfffffffffffffffc) + *fill* 0x3fff18b9 0x3 + 0x3fff18bc __init_array_start = ABSOLUTE (.) + *crtbegin.*(.ctors) + *(EXCLUDE_FILE(*crtend.*) .ctors) + .ctors 0x3fff18bc 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + *(SORT_BY_NAME(.ctors.*)) + *(.ctors) + 0x3fff18c0 __init_array_end = ABSOLUTE (.) + *crtbegin.*(.dtors) + *(EXCLUDE_FILE(*crtend.*) .dtors) + *(SORT_BY_NAME(.dtors.*)) + *(.dtors) + 0x3fff18c0 __XT_EXCEPTION_DESCS_ = ABSOLUTE (.) + *(.xt_except_desc) + *(.gnu.linkonce.h.*) + 0x3fff18c0 __XT_EXCEPTION_DESCS_END__ = ABSOLUTE (.) + *(.xt_except_desc_end) + *(.dynamic) + *(.gnu.version_d) + 0x3fff18c0 _rodata_end = ABSOLUTE (.) + 0x3fff18c0 _lit4_start = ABSOLUTE (.) + *(*.lit4) + *(.lit4.*) + *(.gnu.linkonce.lit4.*) + 0x3fff18c0 _lit4_end = ABSOLUTE (.) + 0x3fff18c0 . = ALIGN (0x4) + 0x3fff18c0 _dram_end = ABSOLUTE (.) + +.iram.text 0x40080400 0xf4f + 0x40080400 _stext = . + 0x40080400 _text_start = ABSOLUTE (.) + *(.literal .text .literal.* .text.* .stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*) + .literal.esp_bootloader_get_description + 0x40080400 0x4 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + .literal.call_start_cpu0 + 0x40080404 0x1c esp-idf/main/libmain.a(bootloader_start.c.obj) + 0x3c (size before relaxing) + .literal.wdt_reset_info_dump + 0x40080420 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + 0x68 (size before relaxing) + .literal.bootloader_init + 0x4008047c 0x54 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + 0xd4 (size before relaxing) + .literal.bootloader_common_vddsdio_configure + 0x400804d0 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + 0xc (size before relaxing) + .literal.bootloader_clock_configure + 0x400804d4 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + 0x3c (size before relaxing) + .literal.bootloader_init_mem + 0x400804f4 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x4 (size before relaxing) + .literal.bootloader_random_enable + 0x400804f4 0x4c esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .literal.bootloader_flash_update_id + 0x40080540 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x8 (size before relaxing) + .literal.bootloader_init_spi_flash + 0x40080544 0x64 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0xa0 (size before relaxing) + .literal.bootloader_clear_bss_section + 0x400805a8 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0xc (size before relaxing) + .literal.bootloader_read_bootloader_header + 0x400805a8 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x18 (size before relaxing) + .literal.bootloader_check_bootloader_validity + 0x400805b0 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x20 (size before relaxing) + .literal.bootloader_config_wdt + 0x400805b8 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x38 (size before relaxing) + .literal.bootloader_enable_random + 0x400805c0 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x14 (size before relaxing) + .literal.bootloader_print_banner + 0x400805c4 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x2c (size before relaxing) + .literal.bootloader_console_init + 0x400805d0 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + 0x18 (size before relaxing) + .literal.esp_cpu_configure_region_protection + 0x400805e0 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_xtal_freq_estimate + 0x400805e8 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + 0x48 (size before relaxing) + .literal.rtc_clk_init + 0x40080604 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + 0x88 (size before relaxing) + .literal.rtc_vddsdio_get_config + 0x40080630 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .literal.rtc_vddsdio_set_config + 0x4008063c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x4 (size before relaxing) + .text.esp_bootloader_get_description + 0x4008063c 0x8 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + 0x4008063c esp_bootloader_get_description + .text.call_start_cpu0 + 0x40080644 0x6f esp-idf/main/libmain.a(bootloader_start.c.obj) + 0x7b (size before relaxing) + 0x40080644 call_start_cpu0 + *fill* 0x400806b3 0x1 + .text.wdt_reset_info_dump + 0x400806b4 0xdc esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .text.bootloader_init + 0x40080790 0x1e3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + 0x217 (size before relaxing) + 0x40080790 bootloader_init + *fill* 0x40080973 0x1 + .text.bootloader_common_vddsdio_configure + 0x40080974 0x34 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + 0x37 (size before relaxing) + 0x40080974 bootloader_common_vddsdio_configure + *fill* 0x400809a8 0x0 + .text.bootloader_clock_configure + 0x400809a8 0xeb esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + 0xef (size before relaxing) + 0x400809a8 bootloader_clock_configure + *fill* 0x40080a93 0x1 + .text.bootloader_init_mem + 0x40080a94 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0xb (size before relaxing) + 0x40080a94 bootloader_init_mem + *fill* 0x40080a9c 0x0 + .text.bootloader_random_enable + 0x40080a9c 0x1ea esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + 0x40080a9c bootloader_random_enable + *fill* 0x40080c86 0x2 + .text.bootloader_flash_update_id + 0x40080c88 0xd esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x10 (size before relaxing) + 0x40080c88 bootloader_flash_update_id + *fill* 0x40080c95 0x3 + .text.bootloader_init_spi_flash + 0x40080c98 0x15d esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x175 (size before relaxing) + 0x40080c98 bootloader_init_spi_flash + *fill* 0x40080df5 0x3 + .text.bootloader_clear_bss_section + 0x40080df8 0x16 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x40080df8 bootloader_clear_bss_section + *fill* 0x40080e0e 0x2 + .text.bootloader_read_bootloader_header + 0x40080e10 0x2d esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x31 (size before relaxing) + 0x40080e10 bootloader_read_bootloader_header + *fill* 0x40080e3d 0x3 + .text.bootloader_check_bootloader_validity + 0x40080e40 0x41 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x49 (size before relaxing) + 0x40080e40 bootloader_check_bootloader_validity + *fill* 0x40080e81 0x3 + .text.bootloader_config_wdt + 0x40080e84 0x68 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x8c (size before relaxing) + 0x40080e84 bootloader_config_wdt + .text.bootloader_enable_random + 0x40080eec 0x1b esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x1f (size before relaxing) + 0x40080eec bootloader_enable_random + *fill* 0x40080f07 0x1 + .text.bootloader_print_banner + 0x40080f08 0x42 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x4e (size before relaxing) + 0x40080f08 bootloader_print_banner + *fill* 0x40080f4a 0x2 + .text.bootloader_console_init + 0x40080f4c 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + 0x54 (size before relaxing) + 0x40080f4c bootloader_console_init + .text.esp_cpu_configure_region_protection + 0x40080f9c 0x2d esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + 0x31 (size before relaxing) + 0x40080f9c esp_cpu_configure_region_protection + *fill* 0x40080fc9 0x3 + .text.rtc_clk_xtal_freq_estimate + 0x40080fcc 0xa9 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + 0xbc (size before relaxing) + *fill* 0x40081075 0x3 + .text.rtc_clk_init + 0x40081078 0x1b1 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + 0x1e1 (size before relaxing) + 0x40081078 rtc_clk_init + *fill* 0x40081229 0x3 + .text.rtc_vddsdio_get_config + 0x4008122c 0x98 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x4008122c rtc_vddsdio_get_config + .text.rtc_vddsdio_set_config + 0x400812c4 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x400812c4 rtc_vddsdio_set_config + *fill* 0x4008130c 0x0 + *fill* 0x4008130c 0x0 + *fill* 0x4008130c 0x0 + *fill* 0x4008130c 0x0 + *fill* 0x4008130c 0x0 + *fill* 0x4008130c 0x0 + *fill* 0x4008130c 0x0 + *fill* 0x4008130c 0x0 + *fill* 0x4008130c 0x0 + *fill* 0x4008130c 0x0 + *fill* 0x4008130c 0x0 + *fill* 0x4008130c 0x0 + *fill* 0x4008130c 0x0 + *fill* 0x4008130c 0x0 + .text.mpu_hal_set_region_access + 0x4008130c 0x33 esp-idf/esp_hal_security/libesp_hal_security.a(mpu_hal.c.obj) + 0x4008130c mpu_hal_set_region_access + *(.iram .iram.*) + *(.fini.literal) + *(.fini) + *(.gnu.version) + 0x4008134f . = (. + 0x10) + *fill* 0x4008133f 0x10 + 0x4008134f _text_end = ABSOLUTE (.) + 0x4008134f _etext = . + +.xt.prop 0x00000000 0x3204 + *(.xt.prop .xt.prop.* .gnu.linkonce.prop.*) + .xt.prop 0x00000000 0x24 esp-idf/soc/libsoc.a(dport_access.c.obj) + 0x48 (size before relaxing) + .xt.prop 0x00000024 0x3c esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + .xt.prop 0x00000060 0x60 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .xt.prop 0x000000c0 0x6c esp-idf/main/libmain.a(bootloader_start.c.obj) + .xt.prop 0x0000012c 0x678 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x7ec (size before relaxing) + .xt.prop 0x000007a4 0xf0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .xt.prop 0x00000894 0x6cc esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x8ac (size before relaxing) + .xt.prop 0x00000f60 0x144 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .xt.prop 0x000010a4 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .xt.prop 0x000010d4 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .xt.prop 0x000010f8 0x150 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .xt.prop 0x00001248 0x3c esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + 0x270 (size before relaxing) + .xt.prop 0x00001284 0x1e0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x1f8 (size before relaxing) + .xt.prop 0x00001464 0x78 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .xt.prop 0x000014dc 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x30 (size before relaxing) + .xt.prop 0x00001500 0x6c esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .xt.prop 0x0000156c 0x54 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + 0x60 (size before relaxing) + .xt.prop 0x000015c0 0x24 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + 0x1bc (size before relaxing) + .xt.prop 0x000015e4 0x60 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .xt.prop 0x00001644 0x558 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x678 (size before relaxing) + .xt.prop 0x00001b9c 0x1e0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x300 (size before relaxing) + .xt.prop 0x00001d7c 0x138 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x174 (size before relaxing) + .xt.prop 0x00001eb4 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .xt.prop 0x00001ee4 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x9d8 (size before relaxing) + .xt.prop 0x00001ee4 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + 0xcc (size before relaxing) + .xt.prop 0x00001ee4 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x504 (size before relaxing) + .xt.prop 0x00001ee4 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x57c (size before relaxing) + .xt.prop 0x00001ee4 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + 0x42c (size before relaxing) + .xt.prop 0x00001ee4 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x324 (size before relaxing) + .xt.prop 0x00001ee4 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .xt.prop 0x00001f2c 0x63c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xa20 (size before relaxing) + .xt.prop 0x00002568 0x12c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .xt.prop 0x00002694 0x84 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0xf0 (size before relaxing) + .xt.prop 0x00002718 0x1d4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x378 (size before relaxing) + .xt.prop 0x000028ec 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + 0xf0 (size before relaxing) + .xt.prop 0x0000291c 0x3c esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + .xt.prop 0x00002958 0x3e4 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + 0x75c (size before relaxing) + .xt.prop 0x00002d3c 0x48 esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + .xt.prop 0x00002d84 0x30 esp-idf/log/liblog.a(log_timestamp.c.obj) + .xt.prop 0x00002db4 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + 0x18 (size before relaxing) + .xt.prop 0x00002db4 0x84 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x144 (size before relaxing) + .xt.prop 0x00002e38 0x90 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x1bc (size before relaxing) + .xt.prop 0x00002ec8 0xa8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x4c8 (size before relaxing) + .xt.prop 0x00002f70 0x0 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0x1c8 (size before relaxing) + .xt.prop 0x00002f70 0x234 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x384 (size before relaxing) + .xt.prop 0x000031a4 0x60 esp-idf/esp_hal_security/libesp_hal_security.a(mpu_hal.c.obj) + .xt.prop 0x00003204 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_loader.c.obj) + 0x30 (size before relaxing) + .xt.prop 0x00003204 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_ashldi3.o) + 0x3c (size before relaxing) + .xt.prop 0x00003204 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_lshrdi3.o) + 0x3c (size before relaxing) + .xt.prop 0x00003204 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + 0x24 (size before relaxing) + .xt.prop 0x00003204 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + 0x24 (size before relaxing) + .xt.prop 0x00003204 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + 0x420 (size before relaxing) + .xt.prop 0x00003204 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + 0x228 (size before relaxing) + .xt.prop 0x00003204 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + 0x264 (size before relaxing) + .xt.prop 0x00003204 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + 0x6c (size before relaxing) + .xt.prop 0x00003204 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + 0xa8 (size before relaxing) + .xt.prop 0x00003204 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + 0x54 (size before relaxing) + .xt.prop 0x00003204 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + 0x6c (size before relaxing) + .xt.prop 0x00003204 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + 0x30 (size before relaxing) + .xt.prop 0x00003204 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + 0x1c8 (size before relaxing) + .xt.prop 0x00003204 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + 0x1b0 (size before relaxing) + .xt.prop 0x00003204 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memcpy.S.o) + 0x15c (size before relaxing) + .xt.prop 0x00003204 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memset.S.o) + 0xd8 (size before relaxing) + .xt.prop 0x00003204 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strlen.S.o) + 0xc0 (size before relaxing) + .xt.prop 0x00003204 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strncpy.S.o) + 0x1a4 (size before relaxing) + .xt.prop 0x00003204 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_bzero.c.o) + 0x30 (size before relaxing) + .xt.prop 0x00003204 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memcmp.c.o) + 0x54 (size before relaxing) + .xt.prop 0x00003204 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcspn.c.o) + 0x54 (size before relaxing) + .xt.prop 0x00003204 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strstr.c.o) + 0x78 (size before relaxing) + +.xt.lit 0x00000000 0x300 + *(.xt.lit .xt.lit.* .gnu.linkonce.p.*) + .xt.lit 0x00000000 0x8 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + .xt.lit 0x00000008 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .xt.lit 0x00000018 0x8 esp-idf/main/libmain.a(bootloader_start.c.obj) + .xt.lit 0x00000020 0x60 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x78 (size before relaxing) + .xt.lit 0x00000080 0x8 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .xt.lit 0x00000088 0x40 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x80 (size before relaxing) + .xt.lit 0x000000c8 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .xt.lit 0x000000e0 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .xt.lit 0x000000e8 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .xt.lit 0x000000f8 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x00000100 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000118 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .xt.lit 0x00000120 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000120 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .xt.lit 0x00000128 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + 0x10 (size before relaxing) + .xt.lit 0x00000130 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x00000130 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .xt.lit 0x00000140 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x80 (size before relaxing) + .xt.lit 0x00000190 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x48 (size before relaxing) + .xt.lit 0x000001b8 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x38 (size before relaxing) + .xt.lit 0x000001e0 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .xt.lit 0x000001e8 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x000001e8 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x78 (size before relaxing) + .xt.lit 0x000001e8 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x80 (size before relaxing) + .xt.lit 0x000001e8 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + 0x68 (size before relaxing) + .xt.lit 0x000001e8 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x28 (size before relaxing) + .xt.lit 0x000001e8 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .xt.lit 0x000001f0 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x110 (size before relaxing) + .xt.lit 0x00000258 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .xt.lit 0x00000268 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000270 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x00000288 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + 0x18 (size before relaxing) + .xt.lit 0x00000290 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + .xt.lit 0x00000298 0x38 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + 0x88 (size before relaxing) + .xt.lit 0x000002d0 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + .xt.lit 0x000002d8 0x8 esp-idf/log/liblog.a(log_timestamp.c.obj) + .xt.lit 0x000002e0 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x000002e0 0x8 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x000002e8 0x10 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x40 (size before relaxing) + .xt.lit 0x000002f8 0x0 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0x30 (size before relaxing) + .xt.lit 0x000002f8 0x8 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x20 (size before relaxing) + .xt.lit 0x00000300 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_loader.c.obj) + 0x8 (size before relaxing) + .xt.lit 0x00000300 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + 0x8 (size before relaxing) + .xt.lit 0x00000300 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + 0x8 (size before relaxing) + .xt.lit 0x00000300 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + 0x8 (size before relaxing) + .xt.lit 0x00000300 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + 0x8 (size before relaxing) + .xt.lit 0x00000300 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + 0x8 (size before relaxing) + .xt.lit 0x00000300 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + 0x8 (size before relaxing) + .xt.lit 0x00000300 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + 0x8 (size before relaxing) + .xt.lit 0x00000300 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strlen.S.o) + 0x8 (size before relaxing) + .xt.lit 0x00000300 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strncpy.S.o) + 0x8 (size before relaxing) + .xt.lit 0x00000300 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_bzero.c.o) + 0x8 (size before relaxing) + +.xtensa.info 0x00000000 0x38 + *(.xtensa.info) + .xtensa.info 0x00000000 0x38 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32.c.obj + .xtensa.info 0x00000038 0x0 esp-idf/soc/libsoc.a(dport_access.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/main/libmain.a(bootloader_start.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/log/liblog.a(log_timestamp.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hal_security/libesp_hal_security.a(mpu_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_loader.c.obj) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_ashldi3.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_lshrdi3.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memcpy.S.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memset.S.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strlen.S.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strncpy.S.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_bzero.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memcmp.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcspn.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strstr.c.o) + +.debug + *(.debug) + +.line + *(.line) + +.debug_srcinfo + *(.debug_srcinfo) + +.debug_sfnames + *(.debug_sfnames) + +.debug_aranges 0x00000000 0xa88 + *(.debug_aranges) + .debug_aranges + 0x00000000 0x28 esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_aranges + 0x00000028 0x20 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + .debug_aranges + 0x00000048 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .debug_aranges + 0x00000070 0x20 esp-idf/main/libmain.a(bootloader_start.c.obj) + .debug_aranges + 0x00000090 0xa8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_aranges + 0x00000138 0x20 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_aranges + 0x00000158 0xa0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_aranges + 0x000001f8 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_aranges + 0x00000228 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .debug_aranges + 0x00000248 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .debug_aranges + 0x00000268 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .debug_aranges + 0x00000290 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_aranges + 0x000002d8 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_aranges + 0x00000328 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .debug_aranges + 0x00000348 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_aranges + 0x00000368 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_aranges + 0x00000388 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .debug_aranges + 0x000003b0 0x40 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_aranges + 0x000003f0 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .debug_aranges + 0x00000418 0xb8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_aranges + 0x000004d0 0x60 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_aranges + 0x00000530 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .debug_aranges + 0x00000580 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .debug_aranges + 0x000005a0 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_aranges + 0x000005c0 0x128 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_aranges + 0x000006e8 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .debug_aranges + 0x00000710 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_aranges + 0x00000740 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_aranges + 0x000007a0 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_aranges + 0x000007d0 0x20 esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + .debug_aranges + 0x000007f0 0xa0 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_aranges + 0x00000890 0x20 esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + .debug_aranges + 0x000008b0 0x20 esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_aranges + 0x000008d0 0x18 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_aranges + 0x000008e8 0x50 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_aranges + 0x00000938 0x58 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_aranges + 0x00000990 0x68 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_aranges + 0x000009f8 0x70 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .debug_aranges + 0x00000a68 0x20 esp-idf/esp_hal_security/libesp_hal_security.a(mpu_hal.c.obj) + +.debug_pubnames + *(.debug_pubnames) + +.debug_info 0x00000000 0x2e746 + *(.debug_info .gnu.linkonce.wi.*) + .debug_info 0x00000000 0xec esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_info 0x000000ec 0x18e esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + .debug_info 0x0000027a 0x236 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .debug_info 0x000004b0 0x6cc esp-idf/main/libmain.a(bootloader_start.c.obj) + .debug_info 0x00000b7c 0x26f9 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_info 0x00003275 0x64a esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_info 0x000038bf 0x2a1b esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_info 0x000062da 0x596 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_info 0x00006870 0xbf esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .debug_info 0x0000692f 0x52 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .debug_info 0x00006981 0xbb8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .debug_info 0x00007539 0x1ae6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_info 0x0000901f 0xa62 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_info 0x00009a81 0x39b esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .debug_info 0x00009e1c 0x9f esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_info 0x00009ebb 0x275 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_info 0x0000a130 0x217b esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .debug_info 0x0000c2ab 0xb69 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_info 0x0000ce14 0xb6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .debug_info 0x0000ceca 0x3fdb esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_info 0x00010ea5 0x1c4a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_info 0x00012aef 0x3c4b esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .debug_info 0x0001673a 0x1532 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .debug_info 0x00017c6c 0x17b esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_info 0x00017de7 0x4f45 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_info 0x0001cd2c 0xf38 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .debug_info 0x0001dc64 0x23b5 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_info 0x00020019 0x1fd2 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_info 0x00021feb 0x1ba esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_info 0x000221a5 0x14be esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + .debug_info 0x00023663 0xdd2 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_info 0x00024435 0x108 esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + .debug_info 0x0002453d 0x12a esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_info 0x00024667 0x2c3 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_info 0x0002492a 0x230d esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_info 0x00026c37 0x259f esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_info 0x000291d6 0x1157 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_info 0x0002a32d 0x41e6 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .debug_info 0x0002e513 0x233 esp-idf/esp_hal_security/libesp_hal_security.a(mpu_hal.c.obj) + +.debug_abbrev 0x00000000 0x6204 + *(.debug_abbrev) + .debug_abbrev 0x00000000 0x87 esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_abbrev 0x00000087 0xaa esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + .debug_abbrev 0x00000131 0x172 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .debug_abbrev 0x000002a3 0x26e esp-idf/main/libmain.a(bootloader_start.c.obj) + .debug_abbrev 0x00000511 0x57d esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_abbrev 0x00000a8e 0x211 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_abbrev 0x00000c9f 0x5c3 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_abbrev 0x00001262 0x1e2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_abbrev 0x00001444 0x86 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .debug_abbrev 0x000014ca 0x4c esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .debug_abbrev 0x00001516 0x357 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .debug_abbrev 0x0000186d 0x497 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_abbrev 0x00001d04 0x2d3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_abbrev 0x00001fd7 0x18e esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .debug_abbrev 0x00002165 0x62 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_abbrev 0x000021c7 0x176 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_abbrev 0x0000233d 0x1c3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .debug_abbrev 0x00002500 0x2f6 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_abbrev 0x000027f6 0x53 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .debug_abbrev 0x00002849 0x5a5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_abbrev 0x00002dee 0x460 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_abbrev 0x0000324e 0x361 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .debug_abbrev 0x000035af 0x2b7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .debug_abbrev 0x00003866 0x10b esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_abbrev 0x00003971 0x6a4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_abbrev 0x00004015 0x3f6 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .debug_abbrev 0x0000440b 0x231 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_abbrev 0x0000463c 0x492 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_abbrev 0x00004ace 0x110 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_abbrev 0x00004bde 0x235 esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + .debug_abbrev 0x00004e13 0x3f9 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_abbrev 0x0000520c 0x8e esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + .debug_abbrev 0x0000529a 0xe1 esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_abbrev 0x0000537b 0x9f esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_abbrev 0x0000541a 0x23d esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_abbrev 0x00005657 0x2ed esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_abbrev 0x00005944 0x385 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_abbrev 0x00005cc9 0x3fb esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .debug_abbrev 0x000060c4 0x140 esp-idf/esp_hal_security/libesp_hal_security.a(mpu_hal.c.obj) + +.debug_line 0x00000000 0x1c553 + *(.debug_line) + .debug_line 0x00000000 0x198 esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_line 0x00000198 0x1be esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + .debug_line 0x00000356 0x382 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .debug_line 0x000006d8 0x51c esp-idf/main/libmain.a(bootloader_start.c.obj) + .debug_line 0x00000bf4 0x2a85 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_line 0x00003679 0x752 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_line 0x00003dcb 0x2a1a esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_line 0x000067e5 0x701 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_line 0x00006ee6 0x1ba esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .debug_line 0x000070a0 0x99 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .debug_line 0x00007139 0xf88 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .debug_line 0x000080c1 0xf87 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_line 0x00009048 0x8a8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_line 0x000098f0 0x508 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .debug_line 0x00009df8 0xce esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_line 0x00009ec6 0x46d esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_line 0x0000a333 0x261 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .debug_line 0x0000a594 0xe0d esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_line 0x0000b3a1 0x8af esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .debug_line 0x0000bc50 0x2287 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_line 0x0000ded7 0x161e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_line 0x0000f4f5 0xad7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .debug_line 0x0000ffcc 0x39d esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .debug_line 0x00010369 0x1dd esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_line 0x00010546 0x2cc2 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_line 0x00013208 0xc50 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .debug_line 0x00013e58 0xde3 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_line 0x00014c3b 0x122f esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_line 0x00015e6a 0x30d esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_line 0x00016177 0x30e esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + .debug_line 0x00016485 0x20f9 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_line 0x0001857e 0x20c esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + .debug_line 0x0001878a 0x264 esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_line 0x000189ee 0x1b6 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_line 0x00018ba4 0x429 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_line 0x00018fcd 0x8da esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_line 0x000198a7 0x1487 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_line 0x0001ad2e 0x1573 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .debug_line 0x0001c2a1 0x2b2 esp-idf/esp_hal_security/libesp_hal_security.a(mpu_hal.c.obj) + +.debug_frame 0x00000000 0x1700 + *(.debug_frame) + .debug_frame 0x00000000 0x40 esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_frame 0x00000040 0x28 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + .debug_frame 0x00000068 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .debug_frame 0x000000a8 0x28 esp-idf/main/libmain.a(bootloader_start.c.obj) + .debug_frame 0x000000d0 0x1c0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_frame 0x00000290 0x28 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_frame 0x000002b8 0x1a8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_frame 0x00000460 0x58 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_frame 0x000004b8 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .debug_frame 0x000004e0 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .debug_frame 0x00000508 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .debug_frame 0x00000548 0xa0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_frame 0x000005e8 0xb8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_frame 0x000006a0 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .debug_frame 0x000006c8 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_frame 0x000006f0 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_frame 0x00000718 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .debug_frame 0x00000758 0x88 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_frame 0x000007e0 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .debug_frame 0x00000820 0x1f0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_frame 0x00000a10 0xe8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_frame 0x00000af8 0xb8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .debug_frame 0x00000bb0 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .debug_frame 0x00000bd8 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_frame 0x00000c00 0x340 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_frame 0x00000f40 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .debug_frame 0x00000f80 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_frame 0x00000fd8 0xe8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_frame 0x000010c0 0x58 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_frame 0x00001118 0x28 esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + .debug_frame 0x00001140 0x1a8 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_frame 0x000012e8 0x28 esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + .debug_frame 0x00001310 0x28 esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_frame 0x00001338 0xb8 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_frame 0x000013f0 0xd0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_frame 0x000014c0 0x100 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_frame 0x000015c0 0x118 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .debug_frame 0x000016d8 0x28 esp-idf/esp_hal_security/libesp_hal_security.a(mpu_hal.c.obj) + +.debug_str 0x00000000 0xac14 + *(.debug_str) + .debug_str 0x00000000 0xac14 esp-idf/soc/libsoc.a(dport_access.c.obj) + 0x2e3 (size before relaxing) + .debug_str 0x0000ac14 0x0 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + 0x35b (size before relaxing) + .debug_str 0x0000ac14 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + 0x362 (size before relaxing) + .debug_str 0x0000ac14 0x0 esp-idf/main/libmain.a(bootloader_start.c.obj) + 0xd78 (size before relaxing) + .debug_str 0x0000ac14 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x1830 (size before relaxing) + .debug_str 0x0000ac14 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + 0x585 (size before relaxing) + .debug_str 0x0000ac14 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x18fb (size before relaxing) + .debug_str 0x0000ac14 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0xa7d (size before relaxing) + .debug_str 0x0000ac14 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + 0x2eb (size before relaxing) + .debug_str 0x0000ac14 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + 0x248 (size before relaxing) + .debug_str 0x0000ac14 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + 0x1064 (size before relaxing) + .debug_str 0x0000ac14 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + 0x14dd (size before relaxing) + .debug_str 0x0000ac14 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0xfee (size before relaxing) + .debug_str 0x0000ac14 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + 0x77a (size before relaxing) + .debug_str 0x0000ac14 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x2d9 (size before relaxing) + .debug_str 0x0000ac14 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + 0x375 (size before relaxing) + .debug_str 0x0000ac14 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + 0x1705 (size before relaxing) + .debug_str 0x0000ac14 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + 0xf00 (size before relaxing) + .debug_str 0x0000ac14 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + 0x2f1 (size before relaxing) + .debug_str 0x0000ac14 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x2440 (size before relaxing) + .debug_str 0x0000ac14 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x1744 (size before relaxing) + .debug_str 0x0000ac14 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x2dac (size before relaxing) + .debug_str 0x0000ac14 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + 0xa24 (size before relaxing) + .debug_str 0x0000ac14 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + 0x35f (size before relaxing) + .debug_str 0x0000ac14 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x3314 (size before relaxing) + .debug_str 0x0000ac14 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + 0x15d4 (size before relaxing) + .debug_str 0x0000ac14 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x183d (size before relaxing) + .debug_str 0x0000ac14 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x1c79 (size before relaxing) + .debug_str 0x0000ac14 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + 0x386 (size before relaxing) + .debug_str 0x0000ac14 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + 0x9a9 (size before relaxing) + .debug_str 0x0000ac14 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + 0x9da (size before relaxing) + .debug_str 0x0000ac14 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + 0x2fc (size before relaxing) + .debug_str 0x0000ac14 0x0 esp-idf/log/liblog.a(log_timestamp.c.obj) + 0x32d (size before relaxing) + .debug_str 0x0000ac14 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + 0x955 (size before relaxing) + .debug_str 0x0000ac14 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x189c (size before relaxing) + .debug_str 0x0000ac14 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x1953 (size before relaxing) + .debug_str 0x0000ac14 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0xd67 (size before relaxing) + .debug_str 0x0000ac14 0x0 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x248d (size before relaxing) + .debug_str 0x0000ac14 0x0 esp-idf/esp_hal_security/libesp_hal_security.a(mpu_hal.c.obj) + 0x383 (size before relaxing) + +.debug_loc 0x00000000 0xac45 + *(.debug_loc) + .debug_loc 0x00000000 0x56 esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_loc 0x00000056 0x23 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .debug_loc 0x00000079 0xec esp-idf/main/libmain.a(bootloader_start.c.obj) + .debug_loc 0x00000165 0x1906 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_loc 0x00001a6b 0x1bb esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_loc 0x00001c26 0x1ef7 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_loc 0x00003b1d 0x1e7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_loc 0x00003d04 0x328 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .debug_loc 0x0000402c 0x4f1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_loc 0x0000451d 0x31a esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_loc 0x00004837 0x57 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .debug_loc 0x0000488e 0x92 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_loc 0x00004920 0x166 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_loc 0x00004a86 0x1561 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_loc 0x00005fe7 0x4f0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_loc 0x000064d7 0x9b esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .debug_loc 0x00006572 0x92 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .debug_loc 0x00006604 0x3f esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_loc 0x00006643 0x1061 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_loc 0x000076a4 0x349 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .debug_loc 0x000079ed 0x3b2 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_loc 0x00007d9f 0x62d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_loc 0x000083cc 0x38 esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + .debug_loc 0x00008404 0xbab esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_loc 0x00008faf 0xad esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + .debug_loc 0x0000905c 0x38 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_loc 0x00009094 0x18d esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_loc 0x00009221 0x10f8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_loc 0x0000a319 0x8ad esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .debug_loc 0x0000abc6 0x7f esp-idf/esp_hal_security/libesp_hal_security.a(mpu_hal.c.obj) + +.debug_macinfo + *(.debug_macinfo) + +.debug_pubtypes + *(.debug_pubtypes) + +.debug_ranges 0x00000000 0x1ac8 + *(.debug_ranges) + .debug_ranges 0x00000000 0x18 esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_ranges 0x00000018 0x10 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + .debug_ranges 0x00000028 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + .debug_ranges 0x00000040 0x28 esp-idf/main/libmain.a(bootloader_start.c.obj) + .debug_ranges 0x00000068 0x178 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_ranges 0x000001e0 0x70 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_ranges 0x00000250 0x418 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_ranges 0x00000668 0x38 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_ranges 0x000006a0 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + .debug_ranges 0x000006b0 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + .debug_ranges 0x000006c0 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + .debug_ranges 0x000006f0 0xf0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_ranges 0x000007e0 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_ranges 0x00000820 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + .debug_ranges 0x00000848 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_ranges 0x00000858 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_ranges 0x00000888 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .debug_ranges 0x000008a0 0x48 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_ranges 0x000008e8 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .debug_ranges 0x00000900 0x268 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_ranges 0x00000b68 0x158 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_ranges 0x00000cc0 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + .debug_ranges 0x00000d00 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + .debug_ranges 0x00000d10 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_ranges 0x00000d20 0x448 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_ranges 0x00001168 0x88 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + .debug_ranges 0x000011f0 0x98 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_ranges 0x00001288 0x100 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_ranges 0x00001388 0x20 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_ranges 0x000013a8 0x10 esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + .debug_ranges 0x000013b8 0x110 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_ranges 0x000014c8 0x10 esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + .debug_ranges 0x000014d8 0x10 esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_ranges 0x000014e8 0x58 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_ranges 0x00001540 0xe0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_ranges 0x00001620 0x2a8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_ranges 0x000018c8 0x1d8 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .debug_ranges 0x00001aa0 0x28 esp-idf/esp_hal_security/libesp_hal_security.a(mpu_hal.c.obj) + +.debug_weaknames + *(.debug_weaknames) + +.debug_funcnames + *(.debug_funcnames) + +.debug_typenames + *(.debug_typenames) + +.debug_varnames + *(.debug_varnames) + +.debug_gnu_pubnames + *(.debug_gnu_pubnames) + +.debug_gnu_pubtypes + *(.debug_gnu_pubtypes) + +.debug_types + *(.debug_types) + +.debug_addr + *(.debug_addr) + +.debug_line_str + *(.debug_line_str) + +.debug_loclists + *(.debug_loclists) + +.debug_macro + *(.debug_macro) + +.debug_names + *(.debug_names) + +.debug_rnglists + *(.debug_rnglists) + +.debug_str_offsets + *(.debug_str_offsets) + +.comment 0x00000000 0x2f + *(.comment) + .comment 0x00000000 0x2f esp-idf/soc/libsoc.a(dport_access.c.obj) + 0x30 (size before relaxing) + .comment 0x0000002f 0x0 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + 0x30 (size before relaxing) + .comment 0x0000002f 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + 0x30 (size before relaxing) + .comment 0x0000002f 0x0 esp-idf/main/libmain.a(bootloader_start.c.obj) + 0x30 (size before relaxing) + .comment 0x0000002f 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 0x30 (size before relaxing) + .comment 0x0000002f 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + 0x30 (size before relaxing) + .comment 0x0000002f 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + 0x30 (size before relaxing) + .comment 0x0000002f 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + 0x30 (size before relaxing) + .comment 0x0000002f 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + 0x30 (size before relaxing) + .comment 0x0000002f 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + 0x30 (size before relaxing) + .comment 0x0000002f 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + 0x30 (size before relaxing) + .comment 0x0000002f 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + 0x30 (size before relaxing) + .comment 0x0000002f 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + 0x30 (size before relaxing) + .comment 0x0000002f 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + 0x30 (size before relaxing) + .comment 0x0000002f 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x30 (size before relaxing) + .comment 0x0000002f 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + 0x30 (size before relaxing) + .comment 0x0000002f 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + 0x30 (size before relaxing) + .comment 0x0000002f 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + 0x30 (size before relaxing) + .comment 0x0000002f 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + 0x30 (size before relaxing) + .comment 0x0000002f 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x30 (size before relaxing) + .comment 0x0000002f 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x30 (size before relaxing) + .comment 0x0000002f 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + 0x30 (size before relaxing) + .comment 0x0000002f 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + 0x30 (size before relaxing) + .comment 0x0000002f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + 0x30 (size before relaxing) + .comment 0x0000002f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x30 (size before relaxing) + .comment 0x0000002f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + 0x30 (size before relaxing) + .comment 0x0000002f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x30 (size before relaxing) + .comment 0x0000002f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x30 (size before relaxing) + .comment 0x0000002f 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + 0x30 (size before relaxing) + .comment 0x0000002f 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + 0x30 (size before relaxing) + .comment 0x0000002f 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + 0x30 (size before relaxing) + .comment 0x0000002f 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + 0x30 (size before relaxing) + .comment 0x0000002f 0x0 esp-idf/log/liblog.a(log_timestamp.c.obj) + 0x30 (size before relaxing) + .comment 0x0000002f 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + 0x30 (size before relaxing) + .comment 0x0000002f 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x30 (size before relaxing) + .comment 0x0000002f 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x30 (size before relaxing) + .comment 0x0000002f 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x30 (size before relaxing) + .comment 0x0000002f 0x0 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x30 (size before relaxing) + .comment 0x0000002f 0x0 esp-idf/esp_hal_security/libesp_hal_security.a(mpu_hal.c.obj) + 0x30 (size before relaxing) + +.note.GNU-stack + *(.note.GNU-stack) + +.noload 0x00000000 0x4 + 0x00000000 . = 0x0 + 0x00000000 0x4 LONG 0x0 + 0x00000004 _noload_keep_in_elf_start = ABSOLUTE (.) + *(.noload_keep_in_elf .noload_keep_in_elf.*) + 0x00000004 _noload_keep_in_elf_end = ABSOLUTE (.) +OUTPUT(bootloader.elf elf32-xtensa-le) + +Cross Reference Table + +Symbol File +Cache_Flush_rom esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +Cache_Read_Disable_rom esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +Cache_Read_Enable_rom esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +EFUSE esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) +ESP_EFUSE_ABS_DONE_0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ABS_DONE_1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC1_TP_HIGH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC1_TP_LOW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC2_TP_HIGH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC2_TP_LOW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC_VREF esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_BLK3_PART_RESERVE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_BLOCK1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_BLOCK2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CHIP_CPU_FREQ_LOW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CHIP_CPU_FREQ_RATED esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CHIP_PACKAGE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +ESP_EFUSE_CHIP_PACKAGE_4BIT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CHIP_VER_REV1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CHIP_VER_REV2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CLK8M_FREQ esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CODING_SCHEME esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CONSOLE_DEBUG_DISABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_CUSTOM_MAC_CRC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DISABLE_APP_CPU esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DISABLE_BT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DISABLE_DL_CACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_DISABLE_DL_DECRYPT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_DISABLE_DL_ENCRYPT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_DISABLE_SDIO_HOST esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_CACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_FLASH_CRYPT_CNT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_FLASH_CRYPT_CONFIG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_JTAG_DISABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_KEY_STATUS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_MAC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_MAC_CRC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_MAC_CUSTOM esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_MAC_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_ADC1_TP_HIGH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_ADC1_TP_LOW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_ADC2_TP_HIGH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_ADC2_TP_LOW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_BLK3_PART_RESERVE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_BLOCK1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_RD_DIS_BLOCK2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_RD_DIS_BLOCK3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_RD_DIS_CODING_SCHEME esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_CUSTOM_MAC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_CUSTOM_MAC_CRC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_FLASH_CRYPT_CONFIG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_KEY_STATUS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_MAC_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_SECURE_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SECURE_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_CLK esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_CS0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_D esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_HD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_Q esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_UART_DOWNLOAD_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +ESP_EFUSE_VOL_LEVEL_HP_INV esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WAFER_VERSION_MINOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ABS_DONE_0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ABS_DONE_1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_TP_HIGH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_TP_LOW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC2_TP_HIGH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC2_TP_LOW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC_VREF esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_BLK3_PART_RESERVE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_BLOCK1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_WR_DIS_BLOCK2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_WR_DIS_BLOCK3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_WR_DIS_CLK8M_FREQ esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_CODING_SCHEME esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_CONSOLE_DEBUG_DISABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_CUSTOM_MAC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_CUSTOM_MAC_CRC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DISABLE_APP_CPU esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DISABLE_BT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DISABLE_DL_CACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DISABLE_DL_DECRYPT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DISABLE_DL_ENCRYPT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_CACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_WR_DIS_FLASH_CRYPT_CNT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_WR_DIS_FLASH_CRYPT_CONFIG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_JTAG_DISABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_KEY_STATUS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_MAC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_MAC_CRC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_MAC_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_RD_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +ESP_EFUSE_WR_DIS_SECURE_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_CLK esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_CS0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_Q esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_UART_DOWNLOAD_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_VOL_LEVEL_HP_INV esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_WR_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_XPD_SDIO_FORCE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_XPD_SDIO_REG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_XPD_SDIO_TIEH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_XPD_SDIO_FORCE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_XPD_SDIO_REG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_XPD_SDIO_TIEH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +GPIO esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +GPIO_HOLD_MASK esp-idf/soc/libsoc.a(gpio_periph.c.obj) +GPIO_PIN_MUX_REG esp-idf/soc/libsoc.a(gpio_periph.c.obj) +GPIO_PIN_MUX_REG_OFFSET esp-idf/soc/libsoc.a(gpio_periph.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +RTCCNTL esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +SPI0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +SPI1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +TIMERG0 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +TIMERG1 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) +UART0 esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) +UART1 esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) +UART2 esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) +__adddf3 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__ashldi3 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_ashldi3.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +__assert_func esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +__bswapsi2 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +__divdf3 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__divsf3 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__extendsfdf2 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__fixdfsi C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__fixunsdfsi C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__floatsidf C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__floatunsidf C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__lshrdi3 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_lshrdi3.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +__muldf3 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__popcountsi2 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +__subdf3 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) +__udivdi3 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) +__umoddi3 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) +_bss_end esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +_bss_start esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +_data_end esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +_data_start esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +_dram_end esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +_dram_start esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +_loader_text_end esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +_loader_text_start esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +_putc1 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) +_putc2 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) +abort esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) + esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_after_init esp-idf/main/libmain.a(bootloader_start.c.obj) +bootloader_ana_clock_glitch_reset_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_atexit esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_before_init esp-idf/main/libmain.a(bootloader_start.c.obj) +bootloader_check_bootloader_validity esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +bootloader_clear_bss_section esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +bootloader_clock_configure esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +bootloader_clock_get_rated_freq_mhz esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +bootloader_common_check_chip_revision_validity esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) +bootloader_common_check_chip_validity esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_common_check_long_hold_gpio esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_check_long_hold_gpio_level esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_erase_part_type_data esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_get_active_otadata esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_common_get_chip_ver_pkg esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_common_get_partition_description esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_common_get_sha256_of_partition esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_label_search esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_ota_select_crc esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_common_ota_select_invalid esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_common_ota_select_valid esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) +bootloader_common_read_otadata esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_common_select_otadata esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) +bootloader_common_vddsdio_configure esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +bootloader_config_wdt esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +bootloader_configure_spi_pins esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_console_deinit esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_console_init esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +bootloader_debug_buffer esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_enable_random esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +bootloader_enable_wp esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_execute_flash_command esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_fill_random esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_flash_clock_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_flash_cs_timing_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_flash_dummy_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_flash_erase_range esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_flash_erase_sector esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_flash_execute_command_common esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_flash_get_spi_mode esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_flash_get_wp_pin esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_flash_gpio_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_flash_is_octal_mode_enabled esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_flash_read esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_flash_read_sfdp esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_flash_reset_chip esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_flash_unlock esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_flash_unlock_default esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_flash_update_id esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +bootloader_flash_update_size esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_flash_write esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_flash_xmc_startup esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +bootloader_image_hdr esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_init esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + esp-idf/main/libmain.a(bootloader_start.c.obj) +bootloader_init_ext_mem esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +bootloader_init_mem esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +bootloader_init_spi_flash esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +bootloader_load_image esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_load_image_no_verify esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_mmap esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_mmap_get_free_pages esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_munmap esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_print_banner esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +bootloader_random_disable esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_random_enable esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +bootloader_read_bootloader_header esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +bootloader_read_flash_id esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_reset esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/main/libmain.a(bootloader_start.c.obj) +bootloader_sha256_data esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_sha256_finish esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_sha256_flash_contents esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_sha256_hex_to_str esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_sha256_start esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_spi_flash_reset esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_utility_get_selected_boot_partition esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/main/libmain.a(bootloader_start.c.obj) +bootloader_utility_load_boot_image esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/main/libmain.a(bootloader_start.c.obj) +bootloader_utility_load_partition_table esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/main/libmain.a(bootloader_start.c.obj) +bzero C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_bzero.c.o) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +cache_flash_mmu_set_rom esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +cache_hal_get_cache_line_size esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) +cache_hal_init esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +cache_hal_invalidate_addr esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) +cache_hal_is_cache_enabled esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) +cache_hal_resume esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) +cache_hal_suspend esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) +cache_hal_vaddr_to_cache_level_id esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) +call_start_cpu0 esp-idf/main/libmain.a(bootloader_start.c.obj) +efuse_hal_blk_version esp-idf/hal/libhal.a(efuse_hal.c.obj) +efuse_hal_chip_revision esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) +efuse_hal_clear_program_registers esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +efuse_hal_flash_encryption_enabled esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +efuse_hal_get_chip_ver_pkg esp-idf/hal/libhal.a(efuse_hal.c.obj) +efuse_hal_get_disable_blk_version_major esp-idf/hal/libhal.a(efuse_hal.c.obj) +efuse_hal_get_disable_wafer_version_major esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) +efuse_hal_get_mac esp-idf/hal/libhal.a(efuse_hal.c.obj) +efuse_hal_get_major_chip_version esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/hal/libhal.a(efuse_hal.c.obj) +efuse_hal_get_minor_chip_version esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/hal/libhal.a(efuse_hal.c.obj) +efuse_hal_get_rated_freq_mhz esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) +efuse_hal_is_coding_error_in_block esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +efuse_hal_program esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +efuse_hal_read esp-idf/hal/libhal.a(efuse_hal.c.obj) +efuse_hal_set_timing esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_bootloader_desc esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) +esp_bootloader_get_description esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +esp_clk_apb_freq esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_loader.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_cpu_configure_region_protection esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) +esp_dport_access_reg_read esp-idf/soc/libsoc.a(dport_access.c.obj) +esp_dport_access_sequence_reg_read esp-idf/soc/libsoc.a(dport_access.c.obj) +esp_efuse_batch_write_begin esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_efuse_batch_write_cancel esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_batch_write_commit esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_efuse_block_is_empty esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_check_errors esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_destroy_block esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_disable_basic_rom_console esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +esp_efuse_disable_rom_download_mode esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_efuse_find_purpose esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_get_coding_scheme esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_get_field_size esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_get_key_dis_read esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_get_key_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_get_key_purpose esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_get_keypurpose_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_get_pkg_ver esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +esp_efuse_key_block_unused esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_read_block esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_read_field_bit esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_efuse_read_field_blob esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_efuse_read_field_cnt esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_efuse_read_reg esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_set_key_dis_read esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_set_key_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_set_read_protect esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_set_rom_log_scheme esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +esp_efuse_set_write_protect esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_utility_apply_34_encoding esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_apply_new_coding_scheme esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_burn_chip esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_burn_chip_opt esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_burn_efuses esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_check_errors esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_clear_program_registers esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_count_once esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_debug_dump_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_debug_dump_pending esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_debug_dump_single_block esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_erase_virt_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_fill_buff esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_get_number_of_items esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_get_read_register_address esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_is_correct_written_data esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_process esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_read_reg esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_reset esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_update_virt_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_write_blob esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_write_cnt esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_write_reg esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_write_block esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_write_field_bit esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_efuse_write_field_blob esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_write_field_cnt esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_efuse_write_key esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_write_keys esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_write_reg esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_flash_encryption_cfg_verify_release_mode esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_flash_encryption_enabled esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +esp_flash_encryption_set_release_mode esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_flash_write_protect_crypt_cnt esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_get_flash_encryption_mode esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_image_bootloader_offset_get esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +esp_image_bootloader_offset_set esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +esp_image_get_flash_size esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +esp_image_get_metadata esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +esp_image_verify esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +esp_image_verify_bootloader esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +esp_image_verify_bootloader_data esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +esp_log_early_timestamp esp-idf/log/liblog.a(log_timestamp.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +esp_log_timestamp esp-idf/log/liblog.a(log_timestamp.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/main/libmain.a(bootloader_start.c.obj) +esp_partition_table_verify esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +esp_rom_crc32_le esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) +esp_rom_delay_us esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +esp_rom_efuse_get_flash_gpio_info esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +esp_rom_get_cpu_ticks_per_us esp-idf/log/liblog.a(log_timestamp.c.obj) +esp_rom_get_reset_reason esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/main/libmain.a(bootloader_start.c.obj) +esp_rom_gpio_connect_in_signal esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +esp_rom_gpio_connect_out_signal esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +esp_rom_gpio_pad_pullup_only esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +esp_rom_gpio_pad_select_gpio esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +esp_rom_install_channel_putc esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) +esp_rom_install_uart_printf esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) +esp_rom_md5_final esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) +esp_rom_md5_init esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) +esp_rom_md5_update esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) +esp_rom_output_flush_tx esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) +esp_rom_output_putc esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) +esp_rom_output_to_channels esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) +esp_rom_output_tx_wait_idle esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) +esp_rom_printf esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/main/libmain.a(bootloader_start.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) +esp_rom_regi2c_read_mask esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +esp_rom_regi2c_write esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +esp_rom_regi2c_write_mask esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +esp_rom_set_cpu_ticks_per_us esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +esp_rom_software_reset_system esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +esp_rom_spiflash_clear_bp esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_config_clk esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +esp_rom_spiflash_config_param esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +esp_rom_spiflash_config_readmode esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_erase_area esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_erase_block esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_rom_spiflash_erase_chip esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_erase_sector esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_rom_spiflash_lock esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_prepare_encrypted_data esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_read esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_rom_spiflash_read_status esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_read_statushigh esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_read_user_cmd esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_set_bp esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_unlock esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_wait_idle esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_rom_spiflash_write esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_rom_spiflash_write_disable esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_write_encrypted esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_rom_spiflash_write_encrypted_disable esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_write_encrypted_enable esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_write_status esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +ets_install_putc1 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) +ets_install_putc2 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) +ets_sha_enable esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +g_rom_flashchip esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) +g_rom_spiflash_chip esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +g_rom_spiflash_dummy_len_plus esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +g_ticks_per_us_app esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) +g_ticks_per_us_pro esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) +memcmp C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memcmp.c.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) +memcpy C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memcpy.S.o) + esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +memset C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memset.S.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_bzero.c.o) + esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/main/libmain.a(bootloader_start.c.obj) +mmu_hal_bytes_to_pages esp-idf/hal/libhal.a(mmu_hal.c.obj) +mmu_hal_check_valid_ext_vaddr_region esp-idf/hal/libhal.a(mmu_hal.c.obj) +mmu_hal_ctx_init esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +mmu_hal_init esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +mmu_hal_map_region esp-idf/hal/libhal.a(mmu_hal.c.obj) +mmu_hal_paddr_to_vaddr esp-idf/hal/libhal.a(mmu_hal.c.obj) +mmu_hal_pages_to_bytes esp-idf/hal/libhal.a(mmu_hal.c.obj) +mmu_hal_unmap_all esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +mmu_hal_unmap_region esp-idf/hal/libhal.a(mmu_hal.c.obj) +mmu_hal_vaddr_to_paddr esp-idf/hal/libhal.a(mmu_hal.c.obj) +mmu_init esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32.c.obj) +mpu_hal_set_region_access esp-idf/esp_hal_security/libesp_hal_security.a(mpu_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) +range_read_addr_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +range_write_addr_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +rtc_clk_32k_bootstrap esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_32k_disable_external esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_32k_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) +rtc_clk_32k_enable_external esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_32k_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_8m_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) +rtc_clk_8m_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) +rtc_clk_8md256_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) +rtc_clk_apb_freq_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) +rtc_clk_apb_freq_update esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) +rtc_clk_apll_coeff_calc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_apll_coeff_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_apll_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_cal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) +rtc_clk_cal_ratio esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) +rtc_clk_cpu_freq_get_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) +rtc_clk_cpu_freq_mhz_to_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) +rtc_clk_cpu_freq_set_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) +rtc_clk_cpu_freq_set_config_fast esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_cpu_freq_set_xtal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_cpu_freq_set_xtal_for_sleep esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_cpu_freq_to_xtal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) +rtc_clk_cpu_set_to_default_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_fast_src_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) +rtc_clk_fast_src_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) +rtc_clk_freq_cal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) +rtc_clk_freq_to_period esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) +rtc_clk_init esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) +rtc_clk_slow_freq_get_hz esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +rtc_clk_slow_src_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) +rtc_clk_slow_src_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) +rtc_clk_wait_for_slow_cycle esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_xtal_freq_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) +rtc_clk_xtal_freq_update esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) +rtc_dig_8m_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_dig_clk8m_disable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_dig_clk8m_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_get_xtal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_init esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) +rtc_time_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) +rtc_time_slowclk_to_us esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) +rtc_time_us_to_slowclk esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) +rtc_vddsdio_get_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +rtc_vddsdio_set_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +s_table esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +start_write_addr esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +strcspn C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcspn.c.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +strlen C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strlen.S.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +strncpy C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strncpy.S.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +strstr C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strstr.c.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +wdt_hal_config_stage esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +wdt_hal_deinit esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) +wdt_hal_disable esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) +wdt_hal_enable esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +wdt_hal_feed esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) +wdt_hal_handle_intr esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) +wdt_hal_init esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +wdt_hal_is_enabled esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) +wdt_hal_set_flashboot_en esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +wdt_hal_write_protect_disable esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) +wdt_hal_write_protect_enable esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) diff --git a/build/bootloader/build.ninja b/build/bootloader/build.ninja new file mode 100644 index 0000000..f7e1d7e --- /dev/null +++ b/build/bootloader/build.ninja @@ -0,0 +1,3720 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 4.0 + +# This file contains all the build statements describing the +# compilation DAG. + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# +# Which is the root file. +# ============================================================================= + +# ============================================================================= +# Project: bootloader +# Configurations: +# ============================================================================= + +############################################# +# Minimal version of Ninja required by this file + +ninja_required_version = 1.5 + +# ============================================================================= +# Include auxiliary files. + + +############################################# +# Include rules file. + +include CMakeFiles/rules.ninja + +# ============================================================================= + +############################################# +# Logical path to working directory; prefix for absolute paths. + +cmake_ninja_workdir = C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/ + +############################################# +# Utility command for menuconfig + +build menuconfig: phony CMakeFiles/menuconfig + + +############################################# +# Utility command for config-report + +build config-report: phony CMakeFiles/config-report + + +############################################# +# Utility command for confserver + +build confserver: phony CMakeFiles/confserver + + +############################################# +# Utility command for save-defconfig + +build save-defconfig: phony CMakeFiles/save-defconfig + + +############################################# +# Utility command for _project_elf_src + +build _project_elf_src: phony CMakeFiles/_project_elf_src project_elf_src_esp32.c + +# ============================================================================= +# Object build statements for EXECUTABLE target bootloader.elf + + +############################################# +# Order-only phony target for bootloader.elf + +build 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_esp32.c + +build CMakeFiles/bootloader.elf.dir/project_elf_src_esp32.c.obj: C_COMPILER__bootloader.2eelf_unscanned_ C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/project_elf_src_esp32.c || cmake_object_order_depends_target_bootloader.elf + DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ + DEP_FILE = CMakeFiles\bootloader.elf.dir\project_elf_src_esp32.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always + INCLUDES = -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_system/include + OBJECT_DIR = CMakeFiles\bootloader.elf.dir + OBJECT_FILE_DIR = CMakeFiles\bootloader.elf.dir + TARGET_COMPILE_PDB = CMakeFiles\bootloader.elf.dir\ + TARGET_PDB = bootloader.elf.pdb + + +# ============================================================================= +# Link build statements for EXECUTABLE target bootloader.elf + + +############################################# +# Link the executable bootloader.elf + +build bootloader.elf: C_EXECUTABLE_LINKER__bootloader.2eelf_ CMakeFiles/bootloader.elf.dir/project_elf_src_esp32.c.obj | esp-idf/xtensa/libxtensa.a esp-idf/soc/libsoc.a esp-idf/hal/libhal.a esp-idf/esp_hal_gpio/libesp_hal_gpio.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a esp-idf/esp_hal_clock/libesp_hal_clock.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_hal_timg/libesp_hal_timg.a esp-idf/esp_hal_wdt/libesp_hal_wdt.a esp-idf/esp_hal_uart/libesp_hal_uart.a esp-idf/esp_hal_i2s/libesp_hal_i2s.a esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a esp-idf/esp_hal_security/libesp_hal_security.a esp-idf/esp_security/libesp_security.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/hal/libhal.a esp-idf/esp_hal_gpio/libesp_hal_gpio.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a esp-idf/esp_hal_clock/libesp_hal_clock.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_hal_timg/libesp_hal_timg.a esp-idf/esp_hal_wdt/libesp_hal_wdt.a esp-idf/esp_hal_uart/libesp_hal_uart.a esp-idf/esp_hal_i2s/libesp_hal_i2s.a esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a esp-idf/esp_hal_security/libesp_hal_security.a esp-idf/esp_security/libesp_security.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$:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a esp-idf/xtensa/libxtensa.a esp-idf/soc/libsoc.a esp-idf/hal/libhal.a esp-idf/esp_hal_gpio/libesp_hal_gpio.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a esp-idf/esp_hal_clock/libesp_hal_clock.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_hal_timg/libesp_hal_timg.a esp-idf/esp_hal_wdt/libesp_hal_wdt.a esp-idf/esp_hal_uart/libesp_hal_uart.a esp-idf/esp_hal_i2s/libesp_hal_i2s.a esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a esp-idf/esp_hal_security/libesp_hal_security.a esp-idf/esp_security/libesp_security.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$:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a esp-idf/xtensa/libxtensa.a esp-idf/soc/libsoc.a esp-idf/hal/libhal.a esp-idf/esp_hal_gpio/libesp_hal_gpio.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a esp-idf/esp_hal_clock/libesp_hal_clock.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_hal_timg/libesp_hal_timg.a esp-idf/esp_hal_wdt/libesp_hal_wdt.a esp-idf/esp_hal_uart/libesp_hal_uart.a esp-idf/esp_hal_i2s/libesp_hal_i2s.a esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a esp-idf/esp_hal_security/libesp_hal_security.a esp-idf/esp_security/libesp_security.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$:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a esp-idf/xtensa/libxtensa.a esp-idf/soc/libsoc.a esp-idf/hal/libhal.a esp-idf/esp_hal_gpio/libesp_hal_gpio.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a esp-idf/esp_hal_clock/libesp_hal_clock.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_hal_timg/libesp_hal_timg.a esp-idf/esp_hal_wdt/libesp_hal_wdt.a esp-idf/esp_hal_uart/libesp_hal_uart.a esp-idf/esp_hal_i2s/libesp_hal_i2s.a esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a esp-idf/esp_hal_security/libesp_hal_security.a esp-idf/esp_security/libesp_security.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$:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a C$:/esp/v6.0/esp-idf/components/soc/esp32/ld/esp32.peripherals.ld C$:/esp/v6.0/esp-idf/components/esp_rom/esp32/ld/esp32.rom.ld C$:/esp/v6.0/esp-idf/components/esp_rom/esp32/ld/esp32.rom.api.ld C$:/esp/v6.0/esp-idf/components/esp_rom/esp32/ld/esp32.rom.libgcc.ld C$:/esp/v6.0/esp-idf/components/esp_rom/esp32/ld/esp32.rom.libc-funcs.ld || _project_elf_src esp-idf/main/libmain.a esp-idf/xtensa/libxtensa.a + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" + LINK_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/ldflags" -Wl,--cref -Wl,--defsym=IDF_TARGET_ESP32=0 -Wl,--Map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/bootloader.map -Wl,--no-warn-rwx-segments -Wl,--orphan-handling=error -fno-lto -Wl,--gc-sections -Wl,--warn-common -T esp32.rom.ld -T esp32.rom.api.ld -T esp32.rom.libgcc.ld -T esp32.rom.libc-funcs.ld -T esp32.peripherals.ld -T bootloader.ld + LINK_LIBRARIES = esp-idf/xtensa/libxtensa.a esp-idf/soc/libsoc.a esp-idf/hal/libhal.a esp-idf/esp_hal_gpio/libesp_hal_gpio.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a esp-idf/esp_hal_clock/libesp_hal_clock.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_hal_timg/libesp_hal_timg.a esp-idf/esp_hal_wdt/libesp_hal_wdt.a esp-idf/esp_hal_uart/libesp_hal_uart.a esp-idf/esp_hal_i2s/libesp_hal_i2s.a esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a esp-idf/esp_hal_security/libesp_hal_security.a esp-idf/esp_security/libesp_security.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/hal/libhal.a esp-idf/esp_hal_gpio/libesp_hal_gpio.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a esp-idf/esp_hal_clock/libesp_hal_clock.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_hal_timg/libesp_hal_timg.a esp-idf/esp_hal_wdt/libesp_hal_wdt.a esp-idf/esp_hal_uart/libesp_hal_uart.a esp-idf/esp_hal_i2s/libesp_hal_i2s.a esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a esp-idf/esp_hal_security/libesp_hal_security.a esp-idf/esp_security/libesp_security.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:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a esp-idf/xtensa/libxtensa.a esp-idf/soc/libsoc.a esp-idf/hal/libhal.a esp-idf/esp_hal_gpio/libesp_hal_gpio.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a esp-idf/esp_hal_clock/libesp_hal_clock.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_hal_timg/libesp_hal_timg.a esp-idf/esp_hal_wdt/libesp_hal_wdt.a esp-idf/esp_hal_uart/libesp_hal_uart.a esp-idf/esp_hal_i2s/libesp_hal_i2s.a esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a esp-idf/esp_hal_security/libesp_hal_security.a esp-idf/esp_security/libesp_security.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:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a esp-idf/xtensa/libxtensa.a esp-idf/soc/libsoc.a esp-idf/hal/libhal.a esp-idf/esp_hal_gpio/libesp_hal_gpio.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a esp-idf/esp_hal_clock/libesp_hal_clock.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_hal_timg/libesp_hal_timg.a esp-idf/esp_hal_wdt/libesp_hal_wdt.a esp-idf/esp_hal_uart/libesp_hal_uart.a esp-idf/esp_hal_i2s/libesp_hal_i2s.a esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a esp-idf/esp_hal_security/libesp_hal_security.a esp-idf/esp_security/libesp_security.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:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a esp-idf/xtensa/libxtensa.a esp-idf/soc/libsoc.a esp-idf/hal/libhal.a esp-idf/esp_hal_gpio/libesp_hal_gpio.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a esp-idf/esp_hal_clock/libesp_hal_clock.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_hal_timg/libesp_hal_timg.a esp-idf/esp_hal_wdt/libesp_hal_wdt.a esp-idf/esp_hal_uart/libesp_hal_uart.a esp-idf/esp_hal_i2s/libesp_hal_i2s.a esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a esp-idf/esp_hal_security/libesp_hal_security.a esp-idf/esp_security/libesp_security.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:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a -u esp_dport_access_reg_read -u __assert_func -u esp_bootloader_desc -u abort -u __ubsan_include -u esp_system_include_startup_funcs -u bootloader_hooks_include + LINK_PATH = -LC:/esp/v6.0/esp-idf/components/esp_rom/esp32/ld -LC:/esp/v6.0/esp-idf/components/soc/esp32/ld -LC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/ld + OBJECT_DIR = CMakeFiles\bootloader.elf.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = CMakeFiles\bootloader.elf.dir\ + TARGET_FILE = bootloader.elf + TARGET_PDB = bootloader.elf.pdb + RSP_FILE = CMakeFiles\bootloader.elf.rsp + + +############################################# +# Utility command for size + +build size: phony CMakeFiles/size + + +############################################# +# Utility command for size-files + +build size-files: phony CMakeFiles/size-files + + +############################################# +# Utility command for size-components + +build size-components: phony CMakeFiles/size-components + + +############################################# +# Utility command for uf2 + +build uf2: phony CMakeFiles/uf2 + + +############################################# +# Utility command for uf2-app + +build uf2-app: phony CMakeFiles/uf2-app + + +############################################# +# Utility command for bootloader_ld_in_preprocess + +build bootloader_ld_in_preprocess: phony CMakeFiles/bootloader_ld_in_preprocess ld/bootloader.ld + + +############################################# +# Utility command for gen_bootloader_binary + +build gen_bootloader_binary: phony CMakeFiles/gen_bootloader_binary .bin_timestamp bootloader.elf + + +############################################# +# Utility command for gen_project_binary + +build gen_project_binary: phony CMakeFiles/gen_project_binary gen_bootloader_binary + + +############################################# +# Utility command for app + +build app: phony CMakeFiles/app bootloader_check_size gen_project_binary + + +############################################# +# Utility command for bootloader_check_size + +build bootloader_check_size: phony CMakeFiles/bootloader_check_size gen_project_binary + + +############################################# +# Utility command for edit_cache + +build CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build edit_cache: phony CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build rebuild_cache: phony CMakeFiles/rebuild_cache.util + + +############################################# +# Custom command for CMakeFiles\menuconfig + +build CMakeFiles/menuconfig | ${cmake_ninja_workdir}CMakeFiles/menuconfig: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe C:/esp/v6.0/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config.env && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe -m kconfgen --list-separator=semicolon --kconfig C:/esp/v6.0/esp-idf/Kconfig --sdkconfig-rename C:/esp/v6.0/esp-idf/sdkconfig.rename --config C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/sdkconfig --env IDF_MINIMAL_BUILD=n --env-file C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config.env --env IDF_TARGET=esp32 --env IDF_TOOLCHAIN=gcc --env IDF_ENV_FPGA= --env IDF_INIT_VERSION=6.0.0 --env KCONFIG_REPORT_VERBOSITY=quiet --dont-write-deprecated --output config C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/sdkconfig && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe C:/esp/v6.0/esp-idf/tools/check_term.py && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E env COMPONENT_KCONFIGS_SOURCE_FILE=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/kconfigs.in COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/kconfigs_projbuild.in KCONFIG_CONFIG=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/sdkconfig IDF_TARGET=esp32 IDF_TOOLCHAIN=gcc IDF_ENV_FPGA= IDF_INIT_VERSION=6.0.0 IDF_MINIMAL_BUILD=n C:/Espressif/tools/python/v6.0/venv/Scripts/python.exe -m esp_menuconfig C:/esp/v6.0/esp-idf/Kconfig && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe -m kconfgen --list-separator=semicolon --kconfig C:/esp/v6.0/esp-idf/Kconfig --sdkconfig-rename C:/esp/v6.0/esp-idf/sdkconfig.rename --config C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/sdkconfig --env IDF_MINIMAL_BUILD=n --env-file C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config.env --env IDF_TARGET=esp32 --env IDF_TOOLCHAIN=gcc --env IDF_ENV_FPGA= --env IDF_INIT_VERSION=6.0.0 --output header C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config/sdkconfig.h --output cmake C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config/sdkconfig.cmake --output json C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config/sdkconfig.json --output json_menus C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config/kconfig_menus.json --env KCONFIG_REPORT_VERBOSITY=default" + pool = console + + +############################################# +# Custom command for CMakeFiles\config-report + +build CMakeFiles/config-report | ${cmake_ninja_workdir}CMakeFiles/config-report: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe C:/esp/v6.0/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config.env && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe -m kconfgen --list-separator=semicolon --kconfig C:/esp/v6.0/esp-idf/Kconfig --sdkconfig-rename C:/esp/v6.0/esp-idf/sdkconfig.rename --config C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/sdkconfig --env IDF_MINIMAL_BUILD=n --env-file C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config.env --env IDF_TARGET=esp32 --env IDF_TOOLCHAIN=gcc --env IDF_ENV_FPGA= --env IDF_INIT_VERSION=6.0.0 --output report C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config/kconfig_parse_report.json --env KCONFIG_REPORT_VERBOSITY=default" + pool = console + + +############################################# +# Custom command for CMakeFiles\confserver + +build CMakeFiles/confserver | ${cmake_ninja_workdir}CMakeFiles/confserver: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe C:/esp/v6.0/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config.env && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe -m kconfserver --env-file C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config.env --kconfig C:/esp/v6.0/esp-idf/Kconfig --sdkconfig-rename C:/esp/v6.0/esp-idf/sdkconfig.rename --config C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/sdkconfig --env KCONFIG_REPORT_VERBOSITY=default" + pool = console + + +############################################# +# Custom command for CMakeFiles\save-defconfig + +build CMakeFiles/save-defconfig | ${cmake_ninja_workdir}CMakeFiles/save-defconfig: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe C:/esp/v6.0/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config.env && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe -m kconfgen --list-separator=semicolon --kconfig C:/esp/v6.0/esp-idf/Kconfig --sdkconfig-rename C:/esp/v6.0/esp-idf/sdkconfig.rename --config C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/sdkconfig --env IDF_MINIMAL_BUILD=n --env-file C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config.env --dont-write-deprecated --output savedefconfig C:/esp/v6.0/esp-idf/components/bootloader/subproject/sdkconfig.defaults --env KCONFIG_REPORT_VERBOSITY=default" + pool = console + + +############################################# +# Phony custom command for CMakeFiles\_project_elf_src + +build CMakeFiles/_project_elf_src | ${cmake_ninja_workdir}CMakeFiles/_project_elf_src: phony project_elf_src_esp32.c + + +############################################# +# Custom command for project_elf_src_esp32.c + +build project_elf_src_esp32.c | ${cmake_ninja_workdir}project_elf_src_esp32.c: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E touch C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/project_elf_src_esp32.c" + DESC = Generating project_elf_src_esp32.c + restat = 1 + + +############################################# +# Custom command for CMakeFiles\size + +build CMakeFiles/size | ${cmake_ninja_workdir}CMakeFiles/size: CUSTOM_COMMAND bootloader.map + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -D IDF_SIZE_TOOL=C:/Espressif/tools/python/v6.0/venv/Scripts/python.exe;-m;esp_idf_size -D MAP_FILE=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/bootloader.map -D OUTPUT_JSON= -P C:/esp/v6.0/esp-idf/tools/cmake/run_size_tool.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\size-files + +build CMakeFiles/size-files | ${cmake_ninja_workdir}CMakeFiles/size-files: CUSTOM_COMMAND bootloader.map + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -D IDF_SIZE_TOOL=C:/Espressif/tools/python/v6.0/venv/Scripts/python.exe;-m;esp_idf_size -D IDF_SIZE_MODE=--files -D MAP_FILE=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/bootloader.map -D OUTPUT_JSON= -P C:/esp/v6.0/esp-idf/tools/cmake/run_size_tool.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\size-components + +build CMakeFiles/size-components | ${cmake_ninja_workdir}CMakeFiles/size-components: CUSTOM_COMMAND bootloader.map + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -D IDF_SIZE_TOOL=C:/Espressif/tools/python/v6.0/venv/Scripts/python.exe;-m;esp_idf_size -D IDF_SIZE_MODE=--archives -D MAP_FILE=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/bootloader.map -D OUTPUT_JSON= -P C:/esp/v6.0/esp-idf/tools/cmake/run_size_tool.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\uf2 + +build CMakeFiles/uf2 | ${cmake_ninja_workdir}CMakeFiles/uf2: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -D IDF_PATH=C:/esp/v6.0/esp-idf -D UF2_CMD=C:/Espressif/tools/python/v6.0/venv/Scripts/python.exe;C:/esp/v6.0/esp-idf/tools/mkuf2.py;write;--chip;esp32 -D UF2_ARGS=--json;C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/flasher_args.json;-o;C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/uf2.bin -P C:/esp/v6.0/esp-idf/tools/cmake/run_uf2_cmds.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\uf2-app + +build CMakeFiles/uf2-app | ${cmake_ninja_workdir}CMakeFiles/uf2-app: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -D IDF_PATH=C:/esp/v6.0/esp-idf -D UF2_CMD=C:/Espressif/tools/python/v6.0/venv/Scripts/python.exe;C:/esp/v6.0/esp-idf/tools/mkuf2.py;write;--chip;esp32 -D UF2_ARGS=--json;C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/flasher_args.json;-o;C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/uf2-app.bin;--bin;app -P C:/esp/v6.0/esp-idf/tools/cmake/run_uf2_cmds.cmake" + pool = console + + +############################################# +# Phony custom command for CMakeFiles\bootloader_ld_in_preprocess + +build CMakeFiles/bootloader_ld_in_preprocess | ${cmake_ninja_workdir}CMakeFiles/bootloader_ld_in_preprocess: phony ld/bootloader.ld + + +############################################# +# Custom command for ld\bootloader.ld + +build ld/bootloader.ld | ${cmake_ninja_workdir}ld/bootloader.ld: CUSTOM_COMMAND C$:/esp/v6.0/esp-idf/components/bootloader/subproject/main/ld/esp32/bootloader.ld.in config/sdkconfig.h + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCC=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc.exe -DSOURCE=C:/esp/v6.0/esp-idf/components/bootloader/subproject/main/ld/esp32/bootloader.ld.in -DTARGET=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/ld/bootloader.ld "-DCFLAGS=-I\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config\" -I\"C:/esp/v6.0/esp-idf/components/bootloader/subproject/main/ld\"" -P C:/esp/v6.0/esp-idf/tools/cmake/linker_script_preprocessor.cmake" + DESC = Preprocessing linker script C:/esp/v6.0/esp-idf/components/bootloader/subproject/main/ld/esp32/bootloader.ld.in -> C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/ld/bootloader.ld + restat = 1 + + +############################################# +# Phony custom command for CMakeFiles\gen_bootloader_binary + +build CMakeFiles/gen_bootloader_binary | ${cmake_ninja_workdir}CMakeFiles/gen_bootloader_binary: phony .bin_timestamp || _project_elf_src bootloader.elf bootloader_ld_in_preprocess esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a esp-idf/esp_hal_clock/libesp_hal_clock.a esp-idf/esp_hal_gpio/libesp_hal_gpio.a esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a esp-idf/esp_hal_i2s/libesp_hal_i2s.a esp-idf/esp_hal_security/libesp_hal_security.a esp-idf/esp_hal_timg/libesp_hal_timg.a esp-idf/esp_hal_uart/libesp_hal_uart.a esp-idf/esp_hal_wdt/libesp_hal_wdt.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.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 + + +############################################# +# Custom command for .bin_timestamp + +build .bin_timestamp | ${cmake_ninja_workdir}.bin_timestamp: CUSTOM_COMMAND bootloader.elf || _project_elf_src bootloader.elf bootloader_ld_in_preprocess esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a esp-idf/esp_hal_clock/libesp_hal_clock.a esp-idf/esp_hal_gpio/libesp_hal_gpio.a esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a esp-idf/esp_hal_i2s/libesp_hal_i2s.a esp-idf/esp_hal_security/libesp_hal_security.a esp-idf/esp_hal_timg/libesp_hal_timg.a esp-idf/esp_hal_uart/libesp_hal_uart.a esp-idf/esp_hal_wdt/libesp_hal_wdt.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.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 + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe -m esptool --chip esp32 elf2image --flash-mode dio --flash-freq 40m --flash-size 2MB --min-rev-full 0 --max-rev-full 399 -o C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/bootloader.bin C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/bootloader.elf && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E echo "Generated C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/bootloader.bin" && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E md5sum C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/bootloader.bin > C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/.bin_timestamp" + DESC = Generating binary image from built executable + restat = 1 + + +############################################# +# Phony custom command for CMakeFiles\gen_project_binary + +build CMakeFiles/gen_project_binary | ${cmake_ninja_workdir}CMakeFiles/gen_project_binary: phony || _project_elf_src bootloader.elf bootloader_ld_in_preprocess esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a esp-idf/esp_hal_clock/libesp_hal_clock.a esp-idf/esp_hal_gpio/libesp_hal_gpio.a esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a esp-idf/esp_hal_i2s/libesp_hal_i2s.a esp-idf/esp_hal_security/libesp_hal_security.a esp-idf/esp_hal_timg/libesp_hal_timg.a esp-idf/esp_hal_uart/libesp_hal_uart.a esp-idf/esp_hal_wdt/libesp_hal_wdt.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.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_bootloader_binary + + +############################################# +# Phony custom command for CMakeFiles\app + +build CMakeFiles/app | ${cmake_ninja_workdir}CMakeFiles/app: phony || _project_elf_src bootloader.elf bootloader_check_size bootloader_ld_in_preprocess esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a esp-idf/esp_hal_clock/libesp_hal_clock.a esp-idf/esp_hal_gpio/libesp_hal_gpio.a esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a esp-idf/esp_hal_i2s/libesp_hal_i2s.a esp-idf/esp_hal_security/libesp_hal_security.a esp-idf/esp_hal_timg/libesp_hal_timg.a esp-idf/esp_hal_uart/libesp_hal_uart.a esp-idf/esp_hal_wdt/libesp_hal_wdt.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.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_bootloader_binary gen_project_binary + + +############################################# +# Custom command for CMakeFiles\bootloader_check_size + +build CMakeFiles/bootloader_check_size | ${cmake_ninja_workdir}CMakeFiles/bootloader_check_size: CUSTOM_COMMAND || _project_elf_src bootloader.elf bootloader_ld_in_preprocess esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a esp-idf/esp_hal_clock/libesp_hal_clock.a esp-idf/esp_hal_gpio/libesp_hal_gpio.a esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a esp-idf/esp_hal_i2s/libesp_hal_i2s.a esp-idf/esp_hal_security/libesp_hal_security.a esp-idf/esp_hal_timg/libesp_hal_timg.a esp-idf/esp_hal_uart/libesp_hal_uart.a esp-idf/esp_hal_wdt/libesp_hal_wdt.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.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_bootloader_binary gen_project_binary + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe C:/esp/v6.0/esp-idf/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x1000 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/bootloader.bin" + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/components/bootloader/subproject/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/edit_cache: phony esp-idf/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/rebuild_cache: phony esp-idf/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_xtensa + + +############################################# +# Order-only phony target for __idf_xtensa + +build cmake_object_order_depends_target___idf_xtensa: phony || cmake_object_order_depends_target___idf_soc + +build esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj: C_COMPILER____idf_xtensa_unscanned_ C$:/esp/v6.0/esp-idf/components/xtensa/eri.c || cmake_object_order_depends_target___idf_xtensa + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\eri.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + OBJECT_FILE_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + TARGET_COMPILE_PDB = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\__idf_xtensa.pdb + TARGET_PDB = esp-idf\xtensa\libxtensa.pdb + +build esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj: C_COMPILER____idf_xtensa_unscanned_ C$:/esp/v6.0/esp-idf/components/xtensa/xt_trax.c || cmake_object_order_depends_target___idf_xtensa + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\xt_trax.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + OBJECT_FILE_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + TARGET_COMPILE_PDB = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\__idf_xtensa.pdb + TARGET_PDB = esp-idf\xtensa\libxtensa.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_xtensa + + +############################################# +# Link the static library esp-idf\xtensa\libxtensa.a + +build 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 + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" + OBJECT_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\__idf_xtensa.pdb + TARGET_FILE = esp-idf\xtensa\libxtensa.a + TARGET_PDB = esp-idf\xtensa\libxtensa.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/xtensa/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\xtensa && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/xtensa/edit_cache: phony esp-idf/xtensa/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/xtensa/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\xtensa && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/xtensa/rebuild_cache: phony esp-idf/xtensa/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_libc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_libc && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_libc/edit_cache: phony esp-idf/esp_libc/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_libc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_libc && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_libc/rebuild_cache: phony esp-idf/esp_libc/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_soc + + +############################################# +# Order-only phony target for __idf_soc + +build cmake_object_order_depends_target___idf_soc: phony || cmake_object_order_depends_target___idf_hal + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/esp/v6.0/esp-idf/components/soc/lldesc.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\lldesc.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/esp/v6.0/esp-idf/components/soc/dport_access_common.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\dport_access_common.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/interrupts.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/esp/v6.0/esp-idf/components/soc/esp32/interrupts.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32\interrupts.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/gpio_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/esp/v6.0/esp-idf/components/soc/esp32/gpio_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32\gpio_periph.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dport_access.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/esp/v6.0/esp-idf/components/soc/esp32/dport_access.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32\dport_access.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/emac_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/esp/v6.0/esp-idf/components/soc/esp32/emac_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32\emac_periph.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mpi_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/esp/v6.0/esp-idf/components/soc/esp32/mpi_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32\mpi_periph.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdmmc_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/esp/v6.0/esp-idf/components/soc/esp32/sdmmc_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32\sdmmc_periph.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdio_slave_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/esp/v6.0/esp-idf/components/soc/esp32/sdio_slave_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32\sdio_slave_periph.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/power_supply_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/esp/v6.0/esp-idf/components/soc/esp32/power_supply_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32\power_supply_periph.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_soc + + +############################################# +# Link the static library esp-idf\soc\libsoc.a + +build 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/esp32/interrupts.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/gpio_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dport_access.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/emac_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mpi_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdmmc_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdio_slave_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/power_supply_periph.c.obj || esp-idf/hal/libhal.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_FILE = esp-idf\soc\libsoc.a + TARGET_PDB = esp-idf\soc\libsoc.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/soc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\soc && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/soc/edit_cache: phony esp-idf/soc/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/soc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\soc && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/soc/rebuild_cache: phony esp-idf/soc/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_hal + + +############################################# +# Order-only phony target for __idf_hal + +build cmake_object_order_depends_target___idf_hal: phony || cmake_object_order_depends_target___idf_esp_hal_gpio + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/esp/v6.0/esp-idf/components/hal/hal_utils.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\hal_utils.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/esp/v6.0/esp-idf/components/hal/efuse_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\efuse_hal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/efuse_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/esp/v6.0/esp-idf/components/hal/esp32/efuse_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32\efuse_hal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/esp/v6.0/esp-idf/components/hal/mmu_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\mmu_hal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/cache_hal_esp32.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/esp/v6.0/esp-idf/components/hal/esp32/cache_hal_esp32.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32\cache_hal_esp32.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_hal + + +############################################# +# Link the static library esp-idf\hal\libhal.a + +build esp-idf/hal/libhal.a: C_STATIC_LIBRARY_LINKER____idf_hal_ esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/efuse_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/cache_hal_esp32.c.obj || esp-idf/esp_hal_gpio/libesp_hal_gpio.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_FILE = esp-idf\hal\libhal.a + TARGET_PDB = esp-idf\hal\libhal.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/hal/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\hal && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/hal/edit_cache: phony esp-idf/hal/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/hal/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\hal && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/hal/rebuild_cache: phony esp-idf/hal/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_hal_gpio + + +############################################# +# Order-only phony target for __idf_esp_hal_gpio + +build cmake_object_order_depends_target___idf_esp_hal_gpio: phony || cmake_object_order_depends_target___idf_micro-ecc + +build esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/gpio_hal.c.obj: C_COMPILER____idf_esp_hal_gpio_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_gpio/gpio_hal.c || cmake_object_order_depends_target___idf_esp_hal_gpio + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hal_gpio\CMakeFiles\__idf_esp_hal_gpio.dir\gpio_hal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\esp_hal_gpio\CMakeFiles\__idf_esp_hal_gpio.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_gpio\CMakeFiles\__idf_esp_hal_gpio.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_gpio\CMakeFiles\__idf_esp_hal_gpio.dir\__idf_esp_hal_gpio.pdb + TARGET_PDB = esp-idf\esp_hal_gpio\libesp_hal_gpio.pdb + +build esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/rtc_io_hal.c.obj: C_COMPILER____idf_esp_hal_gpio_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_gpio/rtc_io_hal.c || cmake_object_order_depends_target___idf_esp_hal_gpio + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hal_gpio\CMakeFiles\__idf_esp_hal_gpio.dir\rtc_io_hal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\esp_hal_gpio\CMakeFiles\__idf_esp_hal_gpio.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_gpio\CMakeFiles\__idf_esp_hal_gpio.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_gpio\CMakeFiles\__idf_esp_hal_gpio.dir\__idf_esp_hal_gpio.pdb + TARGET_PDB = esp-idf\esp_hal_gpio\libesp_hal_gpio.pdb + +build esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/esp32/rtc_io_periph.c.obj: C_COMPILER____idf_esp_hal_gpio_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/rtc_io_periph.c || cmake_object_order_depends_target___idf_esp_hal_gpio + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hal_gpio\CMakeFiles\__idf_esp_hal_gpio.dir\esp32\rtc_io_periph.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\esp_hal_gpio\CMakeFiles\__idf_esp_hal_gpio.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_gpio\CMakeFiles\__idf_esp_hal_gpio.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hal_gpio\CMakeFiles\__idf_esp_hal_gpio.dir\__idf_esp_hal_gpio.pdb + TARGET_PDB = esp-idf\esp_hal_gpio\libesp_hal_gpio.pdb + +build esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/sdm_hal.c.obj: C_COMPILER____idf_esp_hal_gpio_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_gpio/sdm_hal.c || cmake_object_order_depends_target___idf_esp_hal_gpio + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hal_gpio\CMakeFiles\__idf_esp_hal_gpio.dir\sdm_hal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\esp_hal_gpio\CMakeFiles\__idf_esp_hal_gpio.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_gpio\CMakeFiles\__idf_esp_hal_gpio.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_gpio\CMakeFiles\__idf_esp_hal_gpio.dir\__idf_esp_hal_gpio.pdb + TARGET_PDB = esp-idf\esp_hal_gpio\libesp_hal_gpio.pdb + +build esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/esp32/sdm_periph.c.obj: C_COMPILER____idf_esp_hal_gpio_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/sdm_periph.c || cmake_object_order_depends_target___idf_esp_hal_gpio + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hal_gpio\CMakeFiles\__idf_esp_hal_gpio.dir\esp32\sdm_periph.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\esp_hal_gpio\CMakeFiles\__idf_esp_hal_gpio.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_gpio\CMakeFiles\__idf_esp_hal_gpio.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hal_gpio\CMakeFiles\__idf_esp_hal_gpio.dir\__idf_esp_hal_gpio.pdb + TARGET_PDB = esp-idf\esp_hal_gpio\libesp_hal_gpio.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_hal_gpio + + +############################################# +# Link the static library esp-idf\esp_hal_gpio\libesp_hal_gpio.a + +build esp-idf/esp_hal_gpio/libesp_hal_gpio.a: C_STATIC_LIBRARY_LINKER____idf_esp_hal_gpio_ esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/gpio_hal.c.obj esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/rtc_io_hal.c.obj esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/esp32/rtc_io_periph.c.obj esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/sdm_hal.c.obj esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/esp32/sdm_periph.c.obj || esp-idf/micro-ecc/libmicro-ecc.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_hal_gpio\CMakeFiles\__idf_esp_hal_gpio.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_hal_gpio\CMakeFiles\__idf_esp_hal_gpio.dir\__idf_esp_hal_gpio.pdb + TARGET_FILE = esp-idf\esp_hal_gpio\libesp_hal_gpio.a + TARGET_PDB = esp-idf\esp_hal_gpio\libesp_hal_gpio.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hal_gpio/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_hal_gpio && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hal_gpio/edit_cache: phony esp-idf/esp_hal_gpio/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hal_gpio/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_hal_gpio && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hal_gpio/rebuild_cache: phony esp-idf/esp_hal_gpio/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hal_usb/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_hal_usb && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hal_usb/edit_cache: phony esp-idf/esp_hal_usb/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hal_usb/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_hal_usb && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hal_usb/rebuild_cache: phony esp-idf/esp_hal_usb/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hal_pmu/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_hal_pmu && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hal_pmu/edit_cache: phony esp-idf/esp_hal_pmu/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hal_pmu/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_hal_pmu && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hal_pmu/rebuild_cache: phony esp-idf/esp_hal_pmu/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_micro-ecc + + +############################################# +# Order-only phony target for __idf_micro-ecc + +build cmake_object_order_depends_target___idf_micro-ecc: phony || cmake_object_order_depends_target___idf_esp_hal_gpspi + +build esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj: C_COMPILER____idf_micro-ecc_unscanned_ C$:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/uECC_verify_antifault.c || cmake_object_order_depends_target___idf_micro-ecc + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\micro-ecc\CMakeFiles\__idf_micro-ecc.dir\uECC_verify_antifault.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\micro-ecc\CMakeFiles\__idf_micro-ecc.dir + OBJECT_FILE_DIR = esp-idf\micro-ecc\CMakeFiles\__idf_micro-ecc.dir + TARGET_COMPILE_PDB = esp-idf\micro-ecc\CMakeFiles\__idf_micro-ecc.dir\__idf_micro-ecc.pdb + TARGET_PDB = esp-idf\micro-ecc\libmicro-ecc.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_micro-ecc + + +############################################# +# Link the static library esp-idf\micro-ecc\libmicro-ecc.a + +build 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/esp_hal_gpspi/libesp_hal_gpspi.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" + OBJECT_DIR = esp-idf\micro-ecc\CMakeFiles\__idf_micro-ecc.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\micro-ecc\CMakeFiles\__idf_micro-ecc.dir\__idf_micro-ecc.pdb + TARGET_FILE = esp-idf\micro-ecc\libmicro-ecc.a + TARGET_PDB = esp-idf\micro-ecc\libmicro-ecc.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/micro-ecc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\micro-ecc && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/micro-ecc/edit_cache: phony esp-idf/micro-ecc/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/micro-ecc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\micro-ecc && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/micro-ecc/rebuild_cache: phony esp-idf/micro-ecc/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hal_dma/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_hal_dma && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hal_dma/edit_cache: phony esp-idf/esp_hal_dma/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hal_dma/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_hal_dma && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hal_dma/rebuild_cache: phony esp-idf/esp_hal_dma/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_hal_gpspi + + +############################################# +# Order-only phony target for __idf_esp_hal_gpspi + +build cmake_object_order_depends_target___idf_esp_hal_gpspi: phony || cmake_object_order_depends_target___idf_esp_hal_clock + +build esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/esp32/spi_periph.c.obj: C_COMPILER____idf_esp_hal_gpspi_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/spi_periph.c || cmake_object_order_depends_target___idf_esp_hal_gpspi + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hal_gpspi\CMakeFiles\__idf_esp_hal_gpspi.dir\esp32\spi_periph.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\esp_hal_gpspi\CMakeFiles\__idf_esp_hal_gpspi.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_gpspi\CMakeFiles\__idf_esp_hal_gpspi.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hal_gpspi\CMakeFiles\__idf_esp_hal_gpspi.dir\__idf_esp_hal_gpspi.pdb + TARGET_PDB = esp-idf\esp_hal_gpspi\libesp_hal_gpspi.pdb + +build esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_hal.c.obj: C_COMPILER____idf_esp_hal_gpspi_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_gpspi/spi_hal.c || cmake_object_order_depends_target___idf_esp_hal_gpspi + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hal_gpspi\CMakeFiles\__idf_esp_hal_gpspi.dir\spi_hal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\esp_hal_gpspi\CMakeFiles\__idf_esp_hal_gpspi.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_gpspi\CMakeFiles\__idf_esp_hal_gpspi.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_gpspi\CMakeFiles\__idf_esp_hal_gpspi.dir\__idf_esp_hal_gpspi.pdb + TARGET_PDB = esp-idf\esp_hal_gpspi\libesp_hal_gpspi.pdb + +build esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_hal_iram.c.obj: C_COMPILER____idf_esp_hal_gpspi_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_gpspi/spi_hal_iram.c || cmake_object_order_depends_target___idf_esp_hal_gpspi + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hal_gpspi\CMakeFiles\__idf_esp_hal_gpspi.dir\spi_hal_iram.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\esp_hal_gpspi\CMakeFiles\__idf_esp_hal_gpspi.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_gpspi\CMakeFiles\__idf_esp_hal_gpspi.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_gpspi\CMakeFiles\__idf_esp_hal_gpspi.dir\__idf_esp_hal_gpspi.pdb + TARGET_PDB = esp-idf\esp_hal_gpspi\libesp_hal_gpspi.pdb + +build esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_slave_hal.c.obj: C_COMPILER____idf_esp_hal_gpspi_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_gpspi/spi_slave_hal.c || cmake_object_order_depends_target___idf_esp_hal_gpspi + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hal_gpspi\CMakeFiles\__idf_esp_hal_gpspi.dir\spi_slave_hal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\esp_hal_gpspi\CMakeFiles\__idf_esp_hal_gpspi.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_gpspi\CMakeFiles\__idf_esp_hal_gpspi.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_gpspi\CMakeFiles\__idf_esp_hal_gpspi.dir\__idf_esp_hal_gpspi.pdb + TARGET_PDB = esp-idf\esp_hal_gpspi\libesp_hal_gpspi.pdb + +build esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_slave_hal_iram.c.obj: C_COMPILER____idf_esp_hal_gpspi_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_gpspi/spi_slave_hal_iram.c || cmake_object_order_depends_target___idf_esp_hal_gpspi + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hal_gpspi\CMakeFiles\__idf_esp_hal_gpspi.dir\spi_slave_hal_iram.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\esp_hal_gpspi\CMakeFiles\__idf_esp_hal_gpspi.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_gpspi\CMakeFiles\__idf_esp_hal_gpspi.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_gpspi\CMakeFiles\__idf_esp_hal_gpspi.dir\__idf_esp_hal_gpspi.pdb + TARGET_PDB = esp-idf\esp_hal_gpspi\libesp_hal_gpspi.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_hal_gpspi + + +############################################# +# Link the static library esp-idf\esp_hal_gpspi\libesp_hal_gpspi.a + +build esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a: C_STATIC_LIBRARY_LINKER____idf_esp_hal_gpspi_ esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/esp32/spi_periph.c.obj esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_hal.c.obj esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_hal_iram.c.obj esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_slave_hal.c.obj esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_slave_hal_iram.c.obj || esp-idf/esp_hal_clock/libesp_hal_clock.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_hal_gpspi\CMakeFiles\__idf_esp_hal_gpspi.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_hal_gpspi\CMakeFiles\__idf_esp_hal_gpspi.dir\__idf_esp_hal_gpspi.pdb + TARGET_FILE = esp-idf\esp_hal_gpspi\libesp_hal_gpspi.a + TARGET_PDB = esp-idf\esp_hal_gpspi\libesp_hal_gpspi.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hal_gpspi/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_hal_gpspi && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hal_gpspi/edit_cache: phony esp-idf/esp_hal_gpspi/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hal_gpspi/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_hal_gpspi && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hal_gpspi/rebuild_cache: phony esp-idf/esp_hal_gpspi/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_hal_clock + + +############################################# +# Order-only phony target for __idf_esp_hal_clock + +build cmake_object_order_depends_target___idf_esp_hal_clock: phony || cmake_object_order_depends_target___idf_spi_flash + +build esp-idf/esp_hal_clock/CMakeFiles/__idf_esp_hal_clock.dir/esp32/clk_tree_hal.c.obj: C_COMPILER____idf_esp_hal_clock_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/clk_tree_hal.c || cmake_object_order_depends_target___idf_esp_hal_clock + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hal_clock\CMakeFiles\__idf_esp_hal_clock.dir\esp32\clk_tree_hal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\esp_hal_clock\CMakeFiles\__idf_esp_hal_clock.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_clock\CMakeFiles\__idf_esp_hal_clock.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hal_clock\CMakeFiles\__idf_esp_hal_clock.dir\__idf_esp_hal_clock.pdb + TARGET_PDB = esp-idf\esp_hal_clock\libesp_hal_clock.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_hal_clock + + +############################################# +# Link the static library esp-idf\esp_hal_clock\libesp_hal_clock.a + +build esp-idf/esp_hal_clock/libesp_hal_clock.a: C_STATIC_LIBRARY_LINKER____idf_esp_hal_clock_ esp-idf/esp_hal_clock/CMakeFiles/__idf_esp_hal_clock.dir/esp32/clk_tree_hal.c.obj || esp-idf/spi_flash/libspi_flash.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_hal_clock\CMakeFiles\__idf_esp_hal_clock.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_hal_clock\CMakeFiles\__idf_esp_hal_clock.dir\__idf_esp_hal_clock.pdb + TARGET_FILE = esp-idf\esp_hal_clock\libesp_hal_clock.a + TARGET_PDB = esp-idf\esp_hal_clock\libesp_hal_clock.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hal_clock/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_hal_clock && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hal_clock/edit_cache: phony esp-idf/esp_hal_clock/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hal_clock/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_hal_clock && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hal_clock/rebuild_cache: phony esp-idf/esp_hal_clock/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hal_mspi/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_hal_mspi && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hal_mspi/edit_cache: phony esp-idf/esp_hal_mspi/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hal_mspi/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_hal_mspi && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hal_mspi/rebuild_cache: phony esp-idf/esp_hal_mspi/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_blockdev/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_blockdev && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_blockdev/edit_cache: phony esp-idf/esp_blockdev/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_blockdev/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_blockdev && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_blockdev/rebuild_cache: phony esp-idf/esp_blockdev/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_spi_flash + + +############################################# +# Order-only phony target for __idf_spi_flash + +build cmake_object_order_depends_target___idf_spi_flash: phony || cmake_object_order_depends_target___idf_esp_bootloader_format + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/esp/v6.0/esp-idf/components/spi_flash/spi_flash_wrap.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_wrap.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_spi_flash + + +############################################# +# Link the static library esp-idf\spi_flash\libspi_flash.a + +build 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_bootloader_format/libesp_bootloader_format.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_FILE = esp-idf\spi_flash\libspi_flash.a + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/spi_flash/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\spi_flash && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/spi_flash/edit_cache: phony esp-idf/spi_flash/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/spi_flash/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\spi_flash && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/spi_flash/rebuild_cache: phony esp-idf/spi_flash/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_bootloader_format + + +############################################# +# Order-only phony target for __idf_esp_bootloader_format + +build cmake_object_order_depends_target___idf_esp_bootloader_format: phony || cmake_object_order_depends_target___idf_esp_hal_timg + +build esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj: C_COMPILER____idf_esp_bootloader_format_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_bootloader_format/esp_bootloader_desc.c || cmake_object_order_depends_target___idf_esp_bootloader_format + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_bootloader_format\CMakeFiles\__idf_esp_bootloader_format.dir\esp_bootloader_desc.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\esp_bootloader_format\CMakeFiles\__idf_esp_bootloader_format.dir + OBJECT_FILE_DIR = esp-idf\esp_bootloader_format\CMakeFiles\__idf_esp_bootloader_format.dir + TARGET_COMPILE_PDB = esp-idf\esp_bootloader_format\CMakeFiles\__idf_esp_bootloader_format.dir\__idf_esp_bootloader_format.pdb + TARGET_PDB = esp-idf\esp_bootloader_format\libesp_bootloader_format.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_bootloader_format + + +############################################# +# Link the static library esp-idf\esp_bootloader_format\libesp_bootloader_format.a + +build esp-idf/esp_bootloader_format/libesp_bootloader_format.a: C_STATIC_LIBRARY_LINKER____idf_esp_bootloader_format_ esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj || esp-idf/esp_hal_timg/libesp_hal_timg.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_bootloader_format\CMakeFiles\__idf_esp_bootloader_format.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_bootloader_format\CMakeFiles\__idf_esp_bootloader_format.dir\__idf_esp_bootloader_format.pdb + TARGET_FILE = esp-idf\esp_bootloader_format\libesp_bootloader_format.a + TARGET_PDB = esp-idf\esp_bootloader_format\libesp_bootloader_format.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_bootloader_format/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_bootloader_format && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_bootloader_format/edit_cache: phony esp-idf/esp_bootloader_format/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_bootloader_format/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_bootloader_format && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_bootloader_format/rebuild_cache: phony esp-idf/esp_bootloader_format/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_app_format/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_app_format && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_app_format/edit_cache: phony esp-idf/esp_app_format/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_app_format/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_app_format && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_app_format/rebuild_cache: phony esp-idf/esp_app_format/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/partition_table/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\partition_table && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/partition_table/edit_cache: phony esp-idf/partition_table/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/partition_table/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\partition_table && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/partition_table/rebuild_cache: phony esp-idf/partition_table/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esptool_py/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esptool_py && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esptool_py/edit_cache: phony esp-idf/esptool_py/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esptool_py/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esptool_py && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esptool_py/rebuild_cache: phony esp-idf/esptool_py/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_hal_timg + + +############################################# +# Order-only phony target for __idf_esp_hal_timg + +build cmake_object_order_depends_target___idf_esp_hal_timg: phony || cmake_object_order_depends_target___idf_esp_hal_wdt + +build esp-idf/esp_hal_timg/CMakeFiles/__idf_esp_hal_timg.dir/timer_hal.c.obj: C_COMPILER____idf_esp_hal_timg_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_timg/timer_hal.c || cmake_object_order_depends_target___idf_esp_hal_timg + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hal_timg\CMakeFiles\__idf_esp_hal_timg.dir\timer_hal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\esp_hal_timg\CMakeFiles\__idf_esp_hal_timg.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_timg\CMakeFiles\__idf_esp_hal_timg.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_timg\CMakeFiles\__idf_esp_hal_timg.dir\__idf_esp_hal_timg.pdb + TARGET_PDB = esp-idf\esp_hal_timg\libesp_hal_timg.pdb + +build esp-idf/esp_hal_timg/CMakeFiles/__idf_esp_hal_timg.dir/esp32/timer_periph.c.obj: C_COMPILER____idf_esp_hal_timg_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/timer_periph.c || cmake_object_order_depends_target___idf_esp_hal_timg + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hal_timg\CMakeFiles\__idf_esp_hal_timg.dir\esp32\timer_periph.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\esp_hal_timg\CMakeFiles\__idf_esp_hal_timg.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_timg\CMakeFiles\__idf_esp_hal_timg.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hal_timg\CMakeFiles\__idf_esp_hal_timg.dir\__idf_esp_hal_timg.pdb + TARGET_PDB = esp-idf\esp_hal_timg\libesp_hal_timg.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_hal_timg + + +############################################# +# Link the static library esp-idf\esp_hal_timg\libesp_hal_timg.a + +build esp-idf/esp_hal_timg/libesp_hal_timg.a: C_STATIC_LIBRARY_LINKER____idf_esp_hal_timg_ esp-idf/esp_hal_timg/CMakeFiles/__idf_esp_hal_timg.dir/timer_hal.c.obj esp-idf/esp_hal_timg/CMakeFiles/__idf_esp_hal_timg.dir/esp32/timer_periph.c.obj || esp-idf/esp_hal_wdt/libesp_hal_wdt.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_hal_timg\CMakeFiles\__idf_esp_hal_timg.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_hal_timg\CMakeFiles\__idf_esp_hal_timg.dir\__idf_esp_hal_timg.pdb + TARGET_FILE = esp-idf\esp_hal_timg\libesp_hal_timg.a + TARGET_PDB = esp-idf\esp_hal_timg\libesp_hal_timg.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hal_timg/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_hal_timg && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hal_timg/edit_cache: phony esp-idf/esp_hal_timg/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hal_timg/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_hal_timg && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hal_timg/rebuild_cache: phony esp-idf/esp_hal_timg/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_hal_wdt + + +############################################# +# Order-only phony target for __idf_esp_hal_wdt + +build cmake_object_order_depends_target___idf_esp_hal_wdt: phony || cmake_object_order_depends_target___idf_esp_hal_uart + +build esp-idf/esp_hal_wdt/CMakeFiles/__idf_esp_hal_wdt.dir/esp32/mwdt_periph.c.obj: C_COMPILER____idf_esp_hal_wdt_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/mwdt_periph.c || cmake_object_order_depends_target___idf_esp_hal_wdt + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hal_wdt\CMakeFiles\__idf_esp_hal_wdt.dir\esp32\mwdt_periph.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include + OBJECT_DIR = esp-idf\esp_hal_wdt\CMakeFiles\__idf_esp_hal_wdt.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_wdt\CMakeFiles\__idf_esp_hal_wdt.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hal_wdt\CMakeFiles\__idf_esp_hal_wdt.dir\__idf_esp_hal_wdt.pdb + TARGET_PDB = esp-idf\esp_hal_wdt\libesp_hal_wdt.pdb + +build esp-idf/esp_hal_wdt/CMakeFiles/__idf_esp_hal_wdt.dir/wdt_hal_iram.c.obj: C_COMPILER____idf_esp_hal_wdt_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_wdt/wdt_hal_iram.c || cmake_object_order_depends_target___idf_esp_hal_wdt + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hal_wdt\CMakeFiles\__idf_esp_hal_wdt.dir\wdt_hal_iram.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include + OBJECT_DIR = esp-idf\esp_hal_wdt\CMakeFiles\__idf_esp_hal_wdt.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_wdt\CMakeFiles\__idf_esp_hal_wdt.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_wdt\CMakeFiles\__idf_esp_hal_wdt.dir\__idf_esp_hal_wdt.pdb + TARGET_PDB = esp-idf\esp_hal_wdt\libesp_hal_wdt.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_hal_wdt + + +############################################# +# Link the static library esp-idf\esp_hal_wdt\libesp_hal_wdt.a + +build esp-idf/esp_hal_wdt/libesp_hal_wdt.a: C_STATIC_LIBRARY_LINKER____idf_esp_hal_wdt_ esp-idf/esp_hal_wdt/CMakeFiles/__idf_esp_hal_wdt.dir/esp32/mwdt_periph.c.obj esp-idf/esp_hal_wdt/CMakeFiles/__idf_esp_hal_wdt.dir/wdt_hal_iram.c.obj || esp-idf/esp_hal_uart/libesp_hal_uart.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_hal_wdt\CMakeFiles\__idf_esp_hal_wdt.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_hal_wdt\CMakeFiles\__idf_esp_hal_wdt.dir\__idf_esp_hal_wdt.pdb + TARGET_FILE = esp-idf\esp_hal_wdt\libesp_hal_wdt.a + TARGET_PDB = esp-idf\esp_hal_wdt\libesp_hal_wdt.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hal_wdt/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_hal_wdt && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hal_wdt/edit_cache: phony esp-idf/esp_hal_wdt/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hal_wdt/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_hal_wdt && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hal_wdt/rebuild_cache: phony esp-idf/esp_hal_wdt/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_hal_uart + + +############################################# +# Order-only phony target for __idf_esp_hal_uart + +build cmake_object_order_depends_target___idf_esp_hal_uart: phony || cmake_object_order_depends_target___idf_esp_hal_i2s + +build esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/uart_hal.c.obj: C_COMPILER____idf_esp_hal_uart_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_uart/uart_hal.c || cmake_object_order_depends_target___idf_esp_hal_uart + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hal_uart\CMakeFiles\__idf_esp_hal_uart.dir\uart_hal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\esp_hal_uart\CMakeFiles\__idf_esp_hal_uart.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_uart\CMakeFiles\__idf_esp_hal_uart.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_uart\CMakeFiles\__idf_esp_hal_uart.dir\__idf_esp_hal_uart.pdb + TARGET_PDB = esp-idf\esp_hal_uart\libesp_hal_uart.pdb + +build esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/uart_hal_iram.c.obj: C_COMPILER____idf_esp_hal_uart_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_uart/uart_hal_iram.c || cmake_object_order_depends_target___idf_esp_hal_uart + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hal_uart\CMakeFiles\__idf_esp_hal_uart.dir\uart_hal_iram.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\esp_hal_uart\CMakeFiles\__idf_esp_hal_uart.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_uart\CMakeFiles\__idf_esp_hal_uart.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_uart\CMakeFiles\__idf_esp_hal_uart.dir\__idf_esp_hal_uart.pdb + TARGET_PDB = esp-idf\esp_hal_uart\libesp_hal_uart.pdb + +build esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/esp32/uart_periph.c.obj: C_COMPILER____idf_esp_hal_uart_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/uart_periph.c || cmake_object_order_depends_target___idf_esp_hal_uart + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hal_uart\CMakeFiles\__idf_esp_hal_uart.dir\esp32\uart_periph.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\esp_hal_uart\CMakeFiles\__idf_esp_hal_uart.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_uart\CMakeFiles\__idf_esp_hal_uart.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hal_uart\CMakeFiles\__idf_esp_hal_uart.dir\__idf_esp_hal_uart.pdb + TARGET_PDB = esp-idf\esp_hal_uart\libesp_hal_uart.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_hal_uart + + +############################################# +# Link the static library esp-idf\esp_hal_uart\libesp_hal_uart.a + +build esp-idf/esp_hal_uart/libesp_hal_uart.a: C_STATIC_LIBRARY_LINKER____idf_esp_hal_uart_ esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/uart_hal.c.obj esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/uart_hal_iram.c.obj esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/esp32/uart_periph.c.obj || esp-idf/esp_hal_i2s/libesp_hal_i2s.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_hal_uart\CMakeFiles\__idf_esp_hal_uart.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_hal_uart\CMakeFiles\__idf_esp_hal_uart.dir\__idf_esp_hal_uart.pdb + TARGET_FILE = esp-idf\esp_hal_uart\libesp_hal_uart.a + TARGET_PDB = esp-idf\esp_hal_uart\libesp_hal_uart.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hal_uart/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_hal_uart && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hal_uart/edit_cache: phony esp-idf/esp_hal_uart/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hal_uart/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_hal_uart && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hal_uart/rebuild_cache: phony esp-idf/esp_hal_uart/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_hal_i2s + + +############################################# +# Order-only phony target for __idf_esp_hal_i2s + +build cmake_object_order_depends_target___idf_esp_hal_i2s: phony || cmake_object_order_depends_target___idf_esp_hal_ana_conv + +build esp-idf/esp_hal_i2s/CMakeFiles/__idf_esp_hal_i2s.dir/i2s_hal.c.obj: C_COMPILER____idf_esp_hal_i2s_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_i2s/i2s_hal.c || cmake_object_order_depends_target___idf_esp_hal_i2s + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hal_i2s\CMakeFiles\__idf_esp_hal_i2s.dir\i2s_hal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include + OBJECT_DIR = esp-idf\esp_hal_i2s\CMakeFiles\__idf_esp_hal_i2s.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_i2s\CMakeFiles\__idf_esp_hal_i2s.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_i2s\CMakeFiles\__idf_esp_hal_i2s.dir\__idf_esp_hal_i2s.pdb + TARGET_PDB = esp-idf\esp_hal_i2s\libesp_hal_i2s.pdb + +build esp-idf/esp_hal_i2s/CMakeFiles/__idf_esp_hal_i2s.dir/esp32/i2s_periph.c.obj: C_COMPILER____idf_esp_hal_i2s_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/i2s_periph.c || cmake_object_order_depends_target___idf_esp_hal_i2s + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hal_i2s\CMakeFiles\__idf_esp_hal_i2s.dir\esp32\i2s_periph.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include + OBJECT_DIR = esp-idf\esp_hal_i2s\CMakeFiles\__idf_esp_hal_i2s.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_i2s\CMakeFiles\__idf_esp_hal_i2s.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hal_i2s\CMakeFiles\__idf_esp_hal_i2s.dir\__idf_esp_hal_i2s.pdb + TARGET_PDB = esp-idf\esp_hal_i2s\libesp_hal_i2s.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_hal_i2s + + +############################################# +# Link the static library esp-idf\esp_hal_i2s\libesp_hal_i2s.a + +build esp-idf/esp_hal_i2s/libesp_hal_i2s.a: C_STATIC_LIBRARY_LINKER____idf_esp_hal_i2s_ esp-idf/esp_hal_i2s/CMakeFiles/__idf_esp_hal_i2s.dir/i2s_hal.c.obj esp-idf/esp_hal_i2s/CMakeFiles/__idf_esp_hal_i2s.dir/esp32/i2s_periph.c.obj || esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_hal_i2s\CMakeFiles\__idf_esp_hal_i2s.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_hal_i2s\CMakeFiles\__idf_esp_hal_i2s.dir\__idf_esp_hal_i2s.pdb + TARGET_FILE = esp-idf\esp_hal_i2s\libesp_hal_i2s.a + TARGET_PDB = esp-idf\esp_hal_i2s\libesp_hal_i2s.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hal_i2s/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_hal_i2s && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hal_i2s/edit_cache: phony esp-idf/esp_hal_i2s/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hal_i2s/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_hal_i2s && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hal_i2s/rebuild_cache: phony esp-idf/esp_hal_i2s/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_hal_ana_conv + + +############################################# +# Order-only phony target for __idf_esp_hal_ana_conv + +build cmake_object_order_depends_target___idf_esp_hal_ana_conv: phony || cmake_object_order_depends_target___idf_esp_hal_security + +build esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/esp32/adc_periph.c.obj: C_COMPILER____idf_esp_hal_ana_conv_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/adc_periph.c || cmake_object_order_depends_target___idf_esp_hal_ana_conv + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hal_ana_conv\CMakeFiles\__idf_esp_hal_ana_conv.dir\esp32\adc_periph.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\esp_hal_ana_conv\CMakeFiles\__idf_esp_hal_ana_conv.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_ana_conv\CMakeFiles\__idf_esp_hal_ana_conv.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hal_ana_conv\CMakeFiles\__idf_esp_hal_ana_conv.dir\__idf_esp_hal_ana_conv.pdb + TARGET_PDB = esp-idf\esp_hal_ana_conv\libesp_hal_ana_conv.pdb + +build esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_hal_common.c.obj: C_COMPILER____idf_esp_hal_ana_conv_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/adc_hal_common.c || cmake_object_order_depends_target___idf_esp_hal_ana_conv + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hal_ana_conv\CMakeFiles\__idf_esp_hal_ana_conv.dir\adc_hal_common.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\esp_hal_ana_conv\CMakeFiles\__idf_esp_hal_ana_conv.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_ana_conv\CMakeFiles\__idf_esp_hal_ana_conv.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_ana_conv\CMakeFiles\__idf_esp_hal_ana_conv.dir\__idf_esp_hal_ana_conv.pdb + TARGET_PDB = esp-idf\esp_hal_ana_conv\libesp_hal_ana_conv.pdb + +build esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_oneshot_hal.c.obj: C_COMPILER____idf_esp_hal_ana_conv_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/adc_oneshot_hal.c || cmake_object_order_depends_target___idf_esp_hal_ana_conv + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hal_ana_conv\CMakeFiles\__idf_esp_hal_ana_conv.dir\adc_oneshot_hal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\esp_hal_ana_conv\CMakeFiles\__idf_esp_hal_ana_conv.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_ana_conv\CMakeFiles\__idf_esp_hal_ana_conv.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_ana_conv\CMakeFiles\__idf_esp_hal_ana_conv.dir\__idf_esp_hal_ana_conv.pdb + TARGET_PDB = esp-idf\esp_hal_ana_conv\libesp_hal_ana_conv.pdb + +build esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_hal.c.obj: C_COMPILER____idf_esp_hal_ana_conv_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/adc_hal.c || cmake_object_order_depends_target___idf_esp_hal_ana_conv + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hal_ana_conv\CMakeFiles\__idf_esp_hal_ana_conv.dir\adc_hal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\esp_hal_ana_conv\CMakeFiles\__idf_esp_hal_ana_conv.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_ana_conv\CMakeFiles\__idf_esp_hal_ana_conv.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_ana_conv\CMakeFiles\__idf_esp_hal_ana_conv.dir\__idf_esp_hal_ana_conv.pdb + TARGET_PDB = esp-idf\esp_hal_ana_conv\libesp_hal_ana_conv.pdb + +build esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/esp32/dac_periph.c.obj: C_COMPILER____idf_esp_hal_ana_conv_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/dac_periph.c || cmake_object_order_depends_target___idf_esp_hal_ana_conv + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hal_ana_conv\CMakeFiles\__idf_esp_hal_ana_conv.dir\esp32\dac_periph.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\esp_hal_ana_conv\CMakeFiles\__idf_esp_hal_ana_conv.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_ana_conv\CMakeFiles\__idf_esp_hal_ana_conv.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hal_ana_conv\CMakeFiles\__idf_esp_hal_ana_conv.dir\__idf_esp_hal_ana_conv.pdb + TARGET_PDB = esp-idf\esp_hal_ana_conv\libesp_hal_ana_conv.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_hal_ana_conv + + +############################################# +# Link the static library esp-idf\esp_hal_ana_conv\libesp_hal_ana_conv.a + +build esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a: C_STATIC_LIBRARY_LINKER____idf_esp_hal_ana_conv_ esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/esp32/adc_periph.c.obj esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_hal_common.c.obj esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_oneshot_hal.c.obj esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_hal.c.obj esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/esp32/dac_periph.c.obj || esp-idf/esp_hal_security/libesp_hal_security.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_hal_ana_conv\CMakeFiles\__idf_esp_hal_ana_conv.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_hal_ana_conv\CMakeFiles\__idf_esp_hal_ana_conv.dir\__idf_esp_hal_ana_conv.pdb + TARGET_FILE = esp-idf\esp_hal_ana_conv\libesp_hal_ana_conv.a + TARGET_PDB = esp-idf\esp_hal_ana_conv\libesp_hal_ana_conv.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hal_ana_conv/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_hal_ana_conv && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hal_ana_conv/edit_cache: phony esp-idf/esp_hal_ana_conv/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hal_ana_conv/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_hal_ana_conv && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hal_ana_conv/rebuild_cache: phony esp-idf/esp_hal_ana_conv/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hal_rtc_timer/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_hal_rtc_timer && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hal_rtc_timer/edit_cache: phony esp-idf/esp_hal_rtc_timer/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hal_rtc_timer/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_hal_rtc_timer && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hal_rtc_timer/rebuild_cache: phony esp-idf/esp_hal_rtc_timer/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_hal_security + + +############################################# +# Order-only phony target for __idf_esp_hal_security + +build cmake_object_order_depends_target___idf_esp_hal_security: phony || cmake_object_order_depends_target___idf_esp_security + +build esp-idf/esp_hal_security/CMakeFiles/__idf_esp_hal_security.dir/mpu_hal.c.obj: C_COMPILER____idf_esp_hal_security_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_security/mpu_hal.c || cmake_object_order_depends_target___idf_esp_hal_security + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hal_security\CMakeFiles\__idf_esp_hal_security.dir\mpu_hal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\esp_hal_security\CMakeFiles\__idf_esp_hal_security.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_security\CMakeFiles\__idf_esp_hal_security.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_security\CMakeFiles\__idf_esp_hal_security.dir\__idf_esp_hal_security.pdb + TARGET_PDB = esp-idf\esp_hal_security\libesp_hal_security.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_hal_security + + +############################################# +# Link the static library esp-idf\esp_hal_security\libesp_hal_security.a + +build esp-idf/esp_hal_security/libesp_hal_security.a: C_STATIC_LIBRARY_LINKER____idf_esp_hal_security_ esp-idf/esp_hal_security/CMakeFiles/__idf_esp_hal_security.dir/mpu_hal.c.obj || esp-idf/esp_security/libesp_security.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_hal_security\CMakeFiles\__idf_esp_hal_security.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_hal_security\CMakeFiles\__idf_esp_hal_security.dir\__idf_esp_hal_security.pdb + TARGET_FILE = esp-idf\esp_hal_security\libesp_hal_security.a + TARGET_PDB = esp-idf\esp_hal_security\libesp_hal_security.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hal_security/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_hal_security && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hal_security/edit_cache: phony esp-idf/esp_hal_security/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hal_security/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_hal_security && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hal_security/rebuild_cache: phony esp-idf/esp_hal_security/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_security + + +############################################# +# Order-only phony target for __idf_esp_security + +build cmake_object_order_depends_target___idf_esp_security: phony || cmake_object_order_depends_target___idf_bootloader_support + +build esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_lock.c.obj: C_COMPILER____idf_esp_security_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_security/src/esp_crypto_lock.c || cmake_object_order_depends_target___idf_esp_security + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\src\esp_crypto_lock.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include + OBJECT_DIR = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir + OBJECT_FILE_DIR = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\__idf_esp_security.pdb + TARGET_PDB = esp-idf\esp_security\libesp_security.pdb + +build esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_periph_clk.c.obj: C_COMPILER____idf_esp_security_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_security/src/esp_crypto_periph_clk.c || cmake_object_order_depends_target___idf_esp_security + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\src\esp_crypto_periph_clk.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include + OBJECT_DIR = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir + OBJECT_FILE_DIR = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\__idf_esp_security.pdb + TARGET_PDB = esp-idf\esp_security\libesp_security.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_security + + +############################################# +# Link the static library esp-idf\esp_security\libesp_security.a + +build esp-idf/esp_security/libesp_security.a: C_STATIC_LIBRARY_LINKER____idf_esp_security_ esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_lock.c.obj esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_periph_clk.c.obj || esp-idf/bootloader_support/libbootloader_support.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\__idf_esp_security.pdb + TARGET_FILE = esp-idf\esp_security\libesp_security.a + TARGET_PDB = esp-idf\esp_security\libesp_security.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_security/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_security && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_security/edit_cache: phony esp-idf/esp_security/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_security/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_security && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_security/rebuild_cache: phony esp-idf/esp_security/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_bootloader_support + + +############################################# +# Order-only phony target for __idf_bootloader_support + +build cmake_object_order_depends_target___idf_bootloader_support: phony || cmake_object_order_depends_target___idf_efuse + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/esp/v6.0/esp-idf/components/bootloader_support/src/bootloader_common.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_common.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/esp/v6.0/esp-idf/components/bootloader_support/src/bootloader_common_loader.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_common_loader.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/esp/v6.0/esp-idf/components/bootloader_support/src/bootloader_clock_init.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_clock_init.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/esp/v6.0/esp-idf/components/bootloader_support/src/bootloader_mem.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_mem.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/esp/v6.0/esp-idf/components/bootloader_support/src/bootloader_random.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_random.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/esp/v6.0/esp-idf/components/bootloader_support/src/bootloader_efuse.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_efuse.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/esp/v6.0/esp-idf/components/bootloader_support/src/flash_encrypt.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\flash_encrypt.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/esp/v6.0/esp-idf/components/bootloader_support/src/secure_boot.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\secure_boot.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/esp/v6.0/esp-idf/components/bootloader_support/src/bootloader_random_esp32.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_random_esp32.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src\bootloader_flash.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src\flash_qio_mode.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src\bootloader_flash_config_esp32.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/esp/v6.0/esp-idf/components/bootloader_support/src/bootloader_utility.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_utility.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/esp/v6.0/esp-idf/components/bootloader_support/src/flash_partitions.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\flash_partitions.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/esp/v6.0/esp-idf/components/bootloader_support/src/esp_image_format.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\esp_image_format.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_sha.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/esp/v6.0/esp-idf/components/bootloader_support/src/bootloader_sha.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_sha.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/esp/v6.0/esp-idf/components/bootloader_support/src/bootloader_init.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_init.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/esp/v6.0/esp-idf/components/bootloader_support/src/bootloader_clock_loader.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_clock_loader.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/esp/v6.0/esp-idf/components/bootloader_support/src/bootloader_console.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_console.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/esp/v6.0/esp-idf/components/bootloader_support/src/bootloader_console_loader.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_console_loader.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_soc.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/esp/v6.0/esp-idf/components/bootloader_support/src/esp32/bootloader_soc.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\esp32\bootloader_soc.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\esp32 + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_esp32.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/esp/v6.0/esp-idf/components/bootloader_support/src/esp32/bootloader_esp32.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\esp32\bootloader_esp32.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\esp32 + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/esp/v6.0/esp-idf/components/bootloader_support/src/bootloader_panic.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_panic.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_bootloader_support + + +############################################# +# Link the static library esp-idf\bootloader_support\libbootloader_support.a + +build 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_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/src/bootloader_random_esp32.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_esp32.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_sha.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/esp32/bootloader_soc.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_esp32.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj || esp-idf/efuse/libefuse.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_FILE = esp-idf\bootloader_support\libbootloader_support.a + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/bootloader_support/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\bootloader_support && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/bootloader_support/edit_cache: phony esp-idf/bootloader_support/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/bootloader_support/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\bootloader_support && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/bootloader_support/rebuild_cache: phony esp-idf/bootloader_support/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_efuse + + +############################################# +# Order-only phony target for __idf_efuse + +build cmake_object_order_depends_target___idf_efuse: phony || cmake_object_order_depends_target___idf_esp_system + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/esp/v6.0/esp-idf/components/efuse/esp32/esp_efuse_table.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32\esp_efuse_table.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/private_include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_fields.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/esp/v6.0/esp-idf/components/efuse/esp32/esp_efuse_fields.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32\esp_efuse_fields.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/private_include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_utility.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/esp/v6.0/esp-idf/components/efuse/esp32/esp_efuse_utility.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32\esp_efuse_utility.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/private_include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/esp/v6.0/esp-idf/components/efuse/src/esp_efuse_api.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\esp_efuse_api.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/private_include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/esp/v6.0/esp-idf/components/efuse/src/esp_efuse_fields.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\esp_efuse_fields.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/private_include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/esp/v6.0/esp-idf/components/efuse/src/esp_efuse_utility.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\esp_efuse_utility.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/private_include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/without_key_purposes/three_key_blocks/esp_efuse_api_key.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/esp/v6.0/esp-idf/components/efuse/src/efuse_controller/keys/without_key_purposes/three_key_blocks/esp_efuse_api_key.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\efuse_controller\keys\without_key_purposes\three_key_blocks\esp_efuse_api_key.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/private_include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\efuse_controller\keys\without_key_purposes\three_key_blocks + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_efuse + + +############################################# +# Link the static library esp-idf\efuse\libefuse.a + +build esp-idf/efuse/libefuse.a: C_STATIC_LIBRARY_LINKER____idf_efuse_ esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_fields.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/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/without_key_purposes/three_key_blocks/esp_efuse_api_key.c.obj || esp-idf/esp_system/libesp_system.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_FILE = esp-idf\efuse\libefuse.a + TARGET_PDB = esp-idf\efuse\libefuse.pdb + + +############################################# +# Utility command for efuse-common-table + +build esp-idf/efuse/efuse-common-table: phony esp-idf/efuse/CMakeFiles/efuse-common-table + + +############################################# +# Utility command for efuse_common_table + +build esp-idf/efuse/efuse_common_table: phony esp-idf/efuse/CMakeFiles/efuse_common_table esp-idf/efuse/efuse-common-table + + +############################################# +# Utility command for efuse-custom-table + +build esp-idf/efuse/efuse-custom-table: phony + + +############################################# +# Utility command for efuse_custom_table + +build esp-idf/efuse/efuse_custom_table: phony esp-idf/efuse/CMakeFiles/efuse_custom_table esp-idf/efuse/efuse-custom-table + + +############################################# +# Utility command for show-efuse-table + +build esp-idf/efuse/show-efuse-table: phony esp-idf/efuse/CMakeFiles/show-efuse-table + + +############################################# +# Utility command for show_efuse_table + +build esp-idf/efuse/show_efuse_table: phony esp-idf/efuse/CMakeFiles/show_efuse_table esp-idf/efuse/show-efuse-table + + +############################################# +# Utility command for efuse_test_table + +build esp-idf/efuse/efuse_test_table: phony esp-idf/efuse/CMakeFiles/efuse_test_table + + +############################################# +# Utility command for edit_cache + +build esp-idf/efuse/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\efuse && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/efuse/edit_cache: phony esp-idf/efuse/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/efuse/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\efuse && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/efuse/rebuild_cache: phony esp-idf/efuse/CMakeFiles/rebuild_cache.util + + +############################################# +# Custom command for esp-idf\efuse\CMakeFiles\efuse-common-table + +build esp-idf/efuse/CMakeFiles/efuse-common-table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/efuse-common-table: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\efuse && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe C:/esp/v6.0/esp-idf/components/efuse/efuse_table_gen.py C:/esp/v6.0/esp-idf/components/efuse/esp32/esp_efuse_table.csv -t esp32 --max_blk_len 192" + + +############################################# +# Custom command for esp-idf\efuse\CMakeFiles\efuse_common_table + +build 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 + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\efuse && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E echo " + DESC = Warning: command "efuse_common_table" is deprecated. Have you wanted to run "efuse-common-table" instead? + + +############################################# +# Custom command for esp-idf\efuse\CMakeFiles\efuse_custom_table + +build 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 + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\efuse && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E echo " + DESC = Warning: command "efuse_custom_table" is deprecated. Have you wanted to run "efuse-custom-table" instead? + + +############################################# +# Custom command for esp-idf\efuse\CMakeFiles\show-efuse-table + +build esp-idf/efuse/CMakeFiles/show-efuse-table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/show-efuse-table: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\efuse && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe C:/esp/v6.0/esp-idf/components/efuse/efuse_table_gen.py C:/esp/v6.0/esp-idf/components/efuse/esp32/esp_efuse_table.csv -t esp32 --max_blk_len 192 --info" + + +############################################# +# Custom command for esp-idf\efuse\CMakeFiles\show_efuse_table + +build 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 + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\efuse && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E echo " + DESC = Warning: command "show_efuse_table" is deprecated. Have you wanted to run "show-efuse-table" instead? + + +############################################# +# Custom command for esp-idf\efuse\CMakeFiles\efuse_test_table + +build esp-idf/efuse/CMakeFiles/efuse_test_table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/efuse_test_table: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\efuse && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe C:/esp/v6.0/esp-idf/components/efuse/efuse_table_gen.py C:/esp/v6.0/esp-idf/components/efuse/test/esp_efuse_test_table.csv -t esp32 --max_blk_len 192" + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_system + + +############################################# +# Order-only phony target for __idf_esp_system + +build cmake_object_order_depends_target___idf_esp_system: phony || cmake_object_order_depends_target___idf_esp_hw_support + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_system/esp_err.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\esp_err.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_system + + +############################################# +# Link the static library esp-idf\esp_system\libesp_system.a + +build 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 + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_FILE = esp-idf\esp_system\libesp_system.a + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_system/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_system && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_system/edit_cache: phony esp-idf/esp_system/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_system/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_system && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_system/rebuild_cache: phony esp-idf/esp_system/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_hw_support + + +############################################# +# Order-only phony target for __idf_esp_hw_support + +build cmake_object_order_depends_target___idf_esp_hw_support: phony || cmake_object_order_depends_target___idf_esp_common + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/cpu.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\cpu.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_system/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/esp_cpu_intr.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/esp_cpu_intr.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32\esp_cpu_intr.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_system/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/esp_memory_utils.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\esp_memory_utils.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_system/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cpu_region_protect.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/cpu_region_protect.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32\cpu_region_protect.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_system/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/rtc_clk.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32\rtc_clk.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_system/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk_init.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/rtc_clk_init.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32\rtc_clk_init.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_system/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_init.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/rtc_init.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32\rtc_init.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_system/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_sleep.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/rtc_sleep.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32\rtc_sleep.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_system/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_time.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/rtc_time.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32\rtc_time.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_system/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/chip_info.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/chip_info.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32\chip_info.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_system/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_hw_support + + +############################################# +# Link the static library esp-idf\esp_hw_support\libesp_hw_support.a + +build 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/port/esp32/esp_cpu_intr.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/esp32/cpu_region_protect.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk_init.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_init.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_sleep.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_time.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/chip_info.c.obj || esp-idf/esp_common/libesp_common.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_FILE = esp-idf\esp_hw_support\libesp_hw_support.a + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hw_support/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_hw_support && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/edit_cache: phony esp-idf/esp_hw_support/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_hw_support && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/rebuild_cache: phony esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/components/esp_hw_support/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hw_support/port/esp32/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_hw_support\port\esp32 && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/port/esp32/edit_cache: phony esp-idf/esp_hw_support/port/esp32/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hw_support/port/esp32/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_hw_support\port\esp32 && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/port/esp32/rebuild_cache: phony esp-idf/esp_hw_support/port/esp32/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/components/esp_hw_support/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hw_support/lowpower/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_hw_support\lowpower && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/lowpower/edit_cache: phony esp-idf/esp_hw_support/lowpower/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hw_support/lowpower/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_hw_support\lowpower && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/lowpower/rebuild_cache: phony esp-idf/esp_hw_support/lowpower/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_common + + +############################################# +# Order-only phony target for __idf_esp_common + +build cmake_object_order_depends_target___idf_esp_common: phony || cmake_object_order_depends_target___idf_esp_rom + +build esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj: C_COMPILER____idf_esp_common_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_common/src/esp_err_to_name.c || cmake_object_order_depends_target___idf_esp_common + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir\src\esp_err_to_name.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include + OBJECT_DIR = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir + OBJECT_FILE_DIR = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir\__idf_esp_common.pdb + TARGET_PDB = esp-idf\esp_common\libesp_common.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_common + + +############################################# +# Link the static library esp-idf\esp_common\libesp_common.a + +build 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 + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir\__idf_esp_common.pdb + TARGET_FILE = esp-idf\esp_common\libesp_common.a + TARGET_PDB = esp-idf\esp_common\libesp_common.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_common/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_common && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_common/edit_cache: phony esp-idf/esp_common/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_common/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_common && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_common/rebuild_cache: phony esp-idf/esp_common/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_rom + + +############################################# +# Order-only phony target for __idf_esp_rom + +build cmake_object_order_depends_target___idf_esp_rom: phony || cmake_object_order_depends_target___idf_log + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_rom/patches/esp_rom_sys.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_sys.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_rom/patches/esp_rom_print.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_print.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_rom/patches/esp_rom_crc.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_crc.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_serial_output.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_rom/patches/esp_rom_serial_output.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_serial_output.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_rom/patches/esp_rom_spiflash.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_spiflash.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_rom/patches/esp_rom_efuse.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_efuse.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_rom/patches/esp_rom_gpio.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_gpio.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj: ASM_COMPILER____idf_esp_rom_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_rom/patches/esp_rom_longjmp.S || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_longjmp.S.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/asmflags" -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_rom + + +############################################# +# Link the static library esp-idf\esp_rom\libesp_rom.a + +build 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_sys.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj 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_serial_output.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_gpio.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj || esp-idf/log/liblog.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_FILE = esp-idf\esp_rom\libesp_rom.a + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_rom/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_rom && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_rom/edit_cache: phony esp-idf/esp_rom/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_rom/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_rom && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_rom/rebuild_cache: phony esp-idf/esp_rom/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_log + + +############################################# +# Order-only phony target for __idf_log + +build cmake_object_order_depends_target___idf_log: phony || . + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_timestamp.c.obj: C_COMPILER____idf_log_unscanned_ C$:/esp/v6.0/esp-idf/components/log/src/noos/log_timestamp.c || cmake_object_order_depends_target___idf_log + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\noos\log_timestamp.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/log/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src\noos + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj: C_COMPILER____idf_log_unscanned_ C$:/esp/v6.0/esp-idf/components/log/src/log_timestamp_common.c || cmake_object_order_depends_target___idf_log + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_timestamp_common.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/log/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_lock.c.obj: C_COMPILER____idf_log_unscanned_ C$:/esp/v6.0/esp-idf/components/log/src/noos/log_lock.c || cmake_object_order_depends_target___idf_log + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\noos\log_lock.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/log/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src\noos + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj: C_COMPILER____idf_log_unscanned_ C$:/esp/v6.0/esp-idf/components/log/src/buffer/log_buffers.c || cmake_object_order_depends_target___idf_log + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\buffer\log_buffers.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/log/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src\buffer + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/util.c.obj: C_COMPILER____idf_log_unscanned_ C$:/esp/v6.0/esp-idf/components/log/src/noos/util.c || cmake_object_order_depends_target___idf_log + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\noos\util.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/log/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src\noos + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj: C_COMPILER____idf_log_unscanned_ C$:/esp/v6.0/esp-idf/components/log/src/util.c || cmake_object_order_depends_target___idf_log + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\util.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/log/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/log_format_text.c.obj: C_COMPILER____idf_log_unscanned_ C$:/esp/v6.0/esp-idf/components/log/src/log_format_text.c || cmake_object_order_depends_target___idf_log + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_format_text.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/log/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/log_print.c.obj: C_COMPILER____idf_log_unscanned_ C$:/esp/v6.0/esp-idf/components/log/src/log_print.c || cmake_object_order_depends_target___idf_log + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_print.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/log/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/log.c.obj: C_COMPILER____idf_log_unscanned_ C$:/esp/v6.0/esp-idf/components/log/src/log.c || cmake_object_order_depends_target___idf_log + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\log.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/log/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_log + + +############################################# +# Link the static library esp-idf\log\liblog.a + +build esp-idf/log/liblog.a: C_STATIC_LIBRARY_LINKER____idf_log_ esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_timestamp.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_lock.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/util.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log_format_text.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log_print.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log.c.obj + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_FILE = esp-idf\log\liblog.a + TARGET_PDB = esp-idf\log\liblog.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/log/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\log && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/log/edit_cache: phony esp-idf/log/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/log/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\log && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/log/rebuild_cache: phony esp-idf/log/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/bootloader/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\bootloader && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/bootloader/edit_cache: phony esp-idf/bootloader/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/bootloader/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\bootloader && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/bootloader/rebuild_cache: phony esp-idf/bootloader/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_stdio/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_stdio && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_stdio/edit_cache: phony esp-idf/esp_stdio/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_stdio/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\esp_stdio && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_stdio/rebuild_cache: phony esp-idf/esp_stdio/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/freertos/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\freertos && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/freertos/edit_cache: phony esp-idf/freertos/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/freertos/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\freertos && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/freertos/rebuild_cache: phony esp-idf/freertos/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_main + + +############################################# +# Order-only phony target for __idf_main + +build cmake_object_order_depends_target___idf_main: phony || bootloader_ld_in_preprocess cmake_object_order_depends_target___idf_xtensa + +build esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj: C_COMPILER____idf_main_unscanned_ C$:/esp/v6.0/esp-idf/components/bootloader/subproject/main/bootloader_start.c || cmake_object_order_depends_target___idf_main + DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE + DEP_FILE = esp-idf\main\CMakeFiles\__idf_main.dir\bootloader_start.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include + OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + OBJECT_FILE_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + TARGET_COMPILE_PDB = esp-idf\main\CMakeFiles\__idf_main.dir\__idf_main.pdb + TARGET_PDB = esp-idf\main\libmain.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_main + + +############################################# +# Link the static library esp-idf\main\libmain.a + +build esp-idf/main/libmain.a: C_STATIC_LIBRARY_LINKER____idf_main_ esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj || bootloader_ld_in_preprocess esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags" + OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\main\CMakeFiles\__idf_main.dir\__idf_main.pdb + TARGET_FILE = esp-idf\main\libmain.a + TARGET_PDB = esp-idf\main\libmain.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/main/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\main && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/main/edit_cache: phony esp-idf/main/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/main/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\esp-idf\main && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\esp\v6.0\esp-idf\components\bootloader\subproject -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/main/rebuild_cache: phony esp-idf/main/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Target aliases. + +build __idf_bootloader_support: phony esp-idf/bootloader_support/libbootloader_support.a + +build __idf_efuse: phony esp-idf/efuse/libefuse.a + +build __idf_esp_bootloader_format: phony esp-idf/esp_bootloader_format/libesp_bootloader_format.a + +build __idf_esp_common: phony esp-idf/esp_common/libesp_common.a + +build __idf_esp_hal_ana_conv: phony esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a + +build __idf_esp_hal_clock: phony esp-idf/esp_hal_clock/libesp_hal_clock.a + +build __idf_esp_hal_gpio: phony esp-idf/esp_hal_gpio/libesp_hal_gpio.a + +build __idf_esp_hal_gpspi: phony esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a + +build __idf_esp_hal_i2s: phony esp-idf/esp_hal_i2s/libesp_hal_i2s.a + +build __idf_esp_hal_security: phony esp-idf/esp_hal_security/libesp_hal_security.a + +build __idf_esp_hal_timg: phony esp-idf/esp_hal_timg/libesp_hal_timg.a + +build __idf_esp_hal_uart: phony esp-idf/esp_hal_uart/libesp_hal_uart.a + +build __idf_esp_hal_wdt: phony esp-idf/esp_hal_wdt/libesp_hal_wdt.a + +build __idf_esp_hw_support: phony esp-idf/esp_hw_support/libesp_hw_support.a + +build __idf_esp_rom: phony esp-idf/esp_rom/libesp_rom.a + +build __idf_esp_security: phony esp-idf/esp_security/libesp_security.a + +build __idf_esp_system: phony esp-idf/esp_system/libesp_system.a + +build __idf_hal: phony esp-idf/hal/libhal.a + +build __idf_log: phony esp-idf/log/liblog.a + +build __idf_main: phony esp-idf/main/libmain.a + +build __idf_micro-ecc: phony esp-idf/micro-ecc/libmicro-ecc.a + +build __idf_soc: phony esp-idf/soc/libsoc.a + +build __idf_spi_flash: phony esp-idf/spi_flash/libspi_flash.a + +build __idf_xtensa: phony esp-idf/xtensa/libxtensa.a + +build efuse-common-table: phony esp-idf/efuse/efuse-common-table + +build efuse-custom-table: phony esp-idf/efuse/efuse-custom-table + +build efuse_common_table: phony esp-idf/efuse/efuse_common_table + +build efuse_custom_table: phony esp-idf/efuse/efuse_custom_table + +build efuse_test_table: phony esp-idf/efuse/efuse_test_table + +build libbootloader_support.a: phony esp-idf/bootloader_support/libbootloader_support.a + +build libefuse.a: phony esp-idf/efuse/libefuse.a + +build libesp_bootloader_format.a: phony esp-idf/esp_bootloader_format/libesp_bootloader_format.a + +build libesp_common.a: phony esp-idf/esp_common/libesp_common.a + +build libesp_hal_ana_conv.a: phony esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a + +build libesp_hal_clock.a: phony esp-idf/esp_hal_clock/libesp_hal_clock.a + +build libesp_hal_gpio.a: phony esp-idf/esp_hal_gpio/libesp_hal_gpio.a + +build libesp_hal_gpspi.a: phony esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a + +build libesp_hal_i2s.a: phony esp-idf/esp_hal_i2s/libesp_hal_i2s.a + +build libesp_hal_security.a: phony esp-idf/esp_hal_security/libesp_hal_security.a + +build libesp_hal_timg.a: phony esp-idf/esp_hal_timg/libesp_hal_timg.a + +build libesp_hal_uart.a: phony esp-idf/esp_hal_uart/libesp_hal_uart.a + +build libesp_hal_wdt.a: phony esp-idf/esp_hal_wdt/libesp_hal_wdt.a + +build libesp_hw_support.a: phony esp-idf/esp_hw_support/libesp_hw_support.a + +build libesp_rom.a: phony esp-idf/esp_rom/libesp_rom.a + +build libesp_security.a: phony esp-idf/esp_security/libesp_security.a + +build libesp_system.a: phony esp-idf/esp_system/libesp_system.a + +build libhal.a: phony esp-idf/hal/libhal.a + +build liblog.a: phony esp-idf/log/liblog.a + +build libmain.a: phony esp-idf/main/libmain.a + +build libmicro-ecc.a: phony esp-idf/micro-ecc/libmicro-ecc.a + +build libsoc.a: phony esp-idf/soc/libsoc.a + +build libspi_flash.a: phony esp-idf/spi_flash/libspi_flash.a + +build libxtensa.a: phony esp-idf/xtensa/libxtensa.a + +build show-efuse-table: phony esp-idf/efuse/show-efuse-table + +build show_efuse_table: phony esp-idf/efuse/show_efuse_table + +# ============================================================================= +# Folder targets. + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader + +build all: phony bootloader.elf app esp-idf/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf + +build esp-idf/all: phony esp-idf/xtensa/all esp-idf/esp_libc/all esp-idf/soc/all esp-idf/hal/all esp-idf/esp_hal_gpio/all esp-idf/esp_hal_usb/all esp-idf/esp_hal_pmu/all esp-idf/micro-ecc/all esp-idf/esp_hal_dma/all esp-idf/esp_hal_gpspi/all esp-idf/esp_hal_clock/all esp-idf/esp_hal_mspi/all esp-idf/esp_blockdev/all esp-idf/spi_flash/all esp-idf/esp_bootloader_format/all esp-idf/esp_app_format/all esp-idf/partition_table/all esp-idf/esptool_py/all esp-idf/esp_hal_timg/all esp-idf/esp_hal_wdt/all esp-idf/esp_hal_uart/all esp-idf/esp_hal_i2s/all esp-idf/esp_hal_ana_conv/all esp-idf/esp_hal_rtc_timer/all esp-idf/esp_hal_security/all esp-idf/esp_security/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/bootloader/all esp-idf/esp_stdio/all esp-idf/freertos/all esp-idf/main/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/bootloader + +build esp-idf/bootloader/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/bootloader_support + +build esp-idf/bootloader_support/all: phony esp-idf/bootloader_support/libbootloader_support.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/efuse + +build esp-idf/efuse/all: phony esp-idf/efuse/libefuse.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_app_format + +build esp-idf/esp_app_format/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_blockdev + +build esp-idf/esp_blockdev/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_bootloader_format + +build esp-idf/esp_bootloader_format/all: phony esp-idf/esp_bootloader_format/libesp_bootloader_format.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_common + +build esp-idf/esp_common/all: phony esp-idf/esp_common/libesp_common.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_ana_conv + +build esp-idf/esp_hal_ana_conv/all: phony esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_clock + +build esp-idf/esp_hal_clock/all: phony esp-idf/esp_hal_clock/libesp_hal_clock.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_dma + +build esp-idf/esp_hal_dma/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_gpio + +build esp-idf/esp_hal_gpio/all: phony esp-idf/esp_hal_gpio/libesp_hal_gpio.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_gpspi + +build esp-idf/esp_hal_gpspi/all: phony esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_i2s + +build esp-idf/esp_hal_i2s/all: phony esp-idf/esp_hal_i2s/libesp_hal_i2s.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_mspi + +build esp-idf/esp_hal_mspi/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_pmu + +build esp-idf/esp_hal_pmu/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_rtc_timer + +build esp-idf/esp_hal_rtc_timer/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_security + +build esp-idf/esp_hal_security/all: phony esp-idf/esp_hal_security/libesp_hal_security.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_timg + +build esp-idf/esp_hal_timg/all: phony esp-idf/esp_hal_timg/libesp_hal_timg.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_uart + +build esp-idf/esp_hal_uart/all: phony esp-idf/esp_hal_uart/libesp_hal_uart.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_usb + +build esp-idf/esp_hal_usb/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_wdt + +build esp-idf/esp_hal_wdt/all: phony esp-idf/esp_hal_wdt/libesp_hal_wdt.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hw_support + +build esp-idf/esp_hw_support/all: phony esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_hw_support/port/esp32/all esp-idf/esp_hw_support/lowpower/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hw_support/lowpower + +build esp-idf/esp_hw_support/lowpower/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hw_support/port/esp32 + +build esp-idf/esp_hw_support/port/esp32/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_libc + +build esp-idf/esp_libc/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_rom + +build esp-idf/esp_rom/all: phony esp-idf/esp_rom/libesp_rom.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_security + +build esp-idf/esp_security/all: phony esp-idf/esp_security/libesp_security.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_stdio + +build esp-idf/esp_stdio/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_system + +build esp-idf/esp_system/all: phony esp-idf/esp_system/libesp_system.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esptool_py + +build esp-idf/esptool_py/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/freertos + +build esp-idf/freertos/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/hal + +build esp-idf/hal/all: phony esp-idf/hal/libhal.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/log + +build esp-idf/log/all: phony esp-idf/log/liblog.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/main + +build esp-idf/main/all: phony esp-idf/main/libmain.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/micro-ecc + +build esp-idf/micro-ecc/all: phony esp-idf/micro-ecc/libmicro-ecc.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/partition_table + +build esp-idf/partition_table/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/soc + +build esp-idf/soc/all: phony esp-idf/soc/libsoc.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/spi_flash + +build esp-idf/spi_flash/all: phony esp-idf/spi_flash/libspi_flash.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/xtensa + +build esp-idf/xtensa/all: phony esp-idf/xtensa/libxtensa.a + +# ============================================================================= +# Built-in targets + + +############################################# +# Re-run CMake if any of its inputs changed. + +build build.ninja C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/xtensa/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_libc/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/soc/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/hal/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_gpio/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_usb/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_pmu/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/micro-ecc/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_dma/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_gpspi/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_clock/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_mspi/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_blockdev/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/spi_flash/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_bootloader_format/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_app_format/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/partition_table/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esptool_py/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_timg/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_wdt/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_uart/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_i2s/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_ana_conv/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_rtc_timer/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_security/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_security/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/bootloader_support/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/efuse/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_system/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hw_support/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hw_support/port/esp32/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hw_support/lowpower/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_common/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_rom/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/log/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/bootloader/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_stdio/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/freertos/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/main/cmake_install.cmake: RERUN_CMAKE | C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeASMCompiler.cmake.in C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeASMInformation.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompiler.cmake.in C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCInformation.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompiler.cmake.in C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXInformation.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCommonLanguageInclude.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCompilerIdDetection.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineASMCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCXXCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerId.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerSupport.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineSystem.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeFindBinUtils.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeGenericSystem.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeInitializeConfigs.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeLanguageInformation.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeNinjaFindMake.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeParseImplicitIncludeInfo.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeParseImplicitLinkInfo.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeParseLibraryArchitecture.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeSystem.cmake.in C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeSystemSpecificInformation.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeSystemSpecificInitialize.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeTestASMCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeTestCCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeTestCXXCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeTestCompilerCommon.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CheckCCompilerFlag.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CheckCSourceCompiles.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CheckCXXCompilerFlag.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CheckCXXSourceCompiles.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/ADSP-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/ARMCC-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/ARMClang-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/AppleClang-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Borland-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Bruce-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Clang-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Clang-DetermineCompilerInternal.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Compaq-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Cray-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/CrayClang-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Embarcadero-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Fujitsu-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/GHS-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/GNU-ASM.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/GNU-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/GNU-C.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/GNU-CXX-CXXImportStd.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/GNU-CXX.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/GNU-FindBinUtils.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/GNU.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/HP-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/HP-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/IAR-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Intel-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/LCC-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/MSVC-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/NVHPC-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/NVIDIA-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/OrangeC-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/PGI-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/PathScale-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/SCO-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/SDCC-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/SunPro-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/TI-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/TIClang-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Tasking-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Watcom-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/XL-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/XL-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/XLClang-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/zOS-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/ExternalProject.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/ExternalProject/shared_internal_commands.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/FindGit.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/FindPackageHandleStandardArgs.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/FindPackageMessage.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/CMakeASMLinkerInformation.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/CMakeCLinkerInformation.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/CMakeCXXLinkerInformation.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/CMakeCommonLinkerInformation.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/CMakeDetermineLinkerId.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/CMakeInspectASMLinker.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/CMakeInspectCLinker.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/CMakeInspectCXXLinker.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/CheckCompilerFlag.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/CheckFlagCommonConfig.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/CheckSourceCompiles.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/FeatureTesting.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Platform/Generic.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/sdkconfig C$:/esp/v6.0/esp-idf/.git/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/bt/controller/lib_esp32/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/bt/controller/lib_esp32c3_family/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/bt/esp_ble_mesh/lib/lib/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/bt/host/nimble/nimble/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/cmock/CMock/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/esp_coex/lib/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/esp_phy/lib/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/esp_wifi/lib/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/heap/tlsf/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/lwip/lwip/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/mbedtls/mbedtls/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/openthread/lib/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/openthread/openthread/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/protobuf-c/protobuf-c/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/spiffs/spiffs/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/unity/unity/HEAD C$:/esp/v6.0/esp-idf/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/bootloader/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/bootloader/project_include.cmake C$:/esp/v6.0/esp-idf/components/bootloader/subproject/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git C$:/esp/v6.0/esp-idf/components/bootloader/subproject/main/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/bootloader_support/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/bt/controller/lib_esp32/.git C$:/esp/v6.0/esp-idf/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/.git C$:/esp/v6.0/esp-idf/components/bt/controller/lib_esp32c3_family/.git C$:/esp/v6.0/esp-idf/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/.git C$:/esp/v6.0/esp-idf/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/.git C$:/esp/v6.0/esp-idf/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/.git C$:/esp/v6.0/esp-idf/components/bt/esp_ble_mesh/lib/lib/.git C$:/esp/v6.0/esp-idf/components/bt/host/nimble/nimble/.git C$:/esp/v6.0/esp-idf/components/cmock/CMock/.git C$:/esp/v6.0/esp-idf/components/efuse/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/efuse/esp32/sources.cmake C$:/esp/v6.0/esp-idf/components/esp_app_format/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_blockdev/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_bootloader_format/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_coex/lib/.git C$:/esp/v6.0/esp-idf/components/esp_common/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_common/project_include.cmake C$:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_clock/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_dma/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_gpio/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_gpspi/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_i2s/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_mspi/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_pmu/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_security/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_timg/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_uart/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_usb/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_wdt/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hw_support/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hw_support/lowpower/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_libc/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_libc/project_include.cmake C$:/esp/v6.0/esp-idf/components/esp_phy/lib/.git C$:/esp/v6.0/esp-idf/components/esp_rom/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_security/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_stdio/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_system/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_wifi/lib/.git C$:/esp/v6.0/esp-idf/components/esptool_py/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esptool_py/espefuse.cmake C$:/esp/v6.0/esp-idf/components/esptool_py/project_include.cmake C$:/esp/v6.0/esp-idf/components/freertos/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/hal/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/heap/tlsf/.git C$:/esp/v6.0/esp-idf/components/log/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/lwip/lwip/.git C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/.git C$:/esp/v6.0/esp-idf/components/openthread/lib/.git C$:/esp/v6.0/esp-idf/components/openthread/openthread/.git C$:/esp/v6.0/esp-idf/components/partition_table/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/partition_table/project_include.cmake C$:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c/.git C$:/esp/v6.0/esp-idf/components/soc/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/soc/project_include.cmake C$:/esp/v6.0/esp-idf/components/spi_flash/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/spiffs/spiffs/.git C$:/esp/v6.0/esp-idf/components/unity/unity/.git C$:/esp/v6.0/esp-idf/components/xtensa/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/xtensa/project_include.cmake C$:/esp/v6.0/esp-idf/tools/cmake/build.cmake C$:/esp/v6.0/esp-idf/tools/cmake/component.cmake C$:/esp/v6.0/esp-idf/tools/cmake/deduplicate_flags.cmake C$:/esp/v6.0/esp-idf/tools/cmake/depgraph.cmake C$:/esp/v6.0/esp-idf/tools/cmake/dfu.cmake C$:/esp/v6.0/esp-idf/tools/cmake/flash_targets.cmake C$:/esp/v6.0/esp-idf/tools/cmake/gdbinit.cmake C$:/esp/v6.0/esp-idf/tools/cmake/git_submodules.cmake C$:/esp/v6.0/esp-idf/tools/cmake/idf.cmake C$:/esp/v6.0/esp-idf/tools/cmake/kconfig.cmake C$:/esp/v6.0/esp-idf/tools/cmake/ldgen.cmake C$:/esp/v6.0/esp-idf/tools/cmake/openocd.cmake C$:/esp/v6.0/esp-idf/tools/cmake/post_build_validation.cmake C$:/esp/v6.0/esp-idf/tools/cmake/prefix_map.cmake C$:/esp/v6.0/esp-idf/tools/cmake/project.cmake C$:/esp/v6.0/esp-idf/tools/cmake/project_description.json.in C$:/esp/v6.0/esp-idf/tools/cmake/symbols.gdbinit.in C$:/esp/v6.0/esp-idf/tools/cmake/targets.cmake C$:/esp/v6.0/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake C$:/esp/v6.0/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake.in C$:/esp/v6.0/esp-idf/tools/cmake/tool_version_check.cmake C$:/esp/v6.0/esp-idf/tools/cmake/toolchain-esp32.cmake C$:/esp/v6.0/esp-idf/tools/cmake/toolchain.cmake C$:/esp/v6.0/esp-idf/tools/cmake/toolchain_flags.cmake C$:/esp/v6.0/esp-idf/tools/cmake/utilities.cmake C$:/esp/v6.0/esp-idf/tools/cmake/version.cmake C$:/esp/v6.0/esp-idf/tools/kconfig_new/confgen.py C$:/esp/v6.0/esp-idf/tools/kconfig_new/config.env.in CMakeCache.txt CMakeFiles/4.0.3/CMakeASMCompiler.cmake CMakeFiles/4.0.3/CMakeCCompiler.cmake CMakeFiles/4.0.3/CMakeCXXCompiler.cmake CMakeFiles/4.0.3/CMakeSystem.cmake CMakeFiles/git-data/grabRef.cmake config/sdkconfig.cmake config/sdkconfig.h toolchain/toolchain-esp32.cmake + pool = console + + +############################################# +# A missing CMake input file is not an error. + +build C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeASMCompiler.cmake.in C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeASMInformation.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompiler.cmake.in C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCInformation.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompiler.cmake.in C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXInformation.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCommonLanguageInclude.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCompilerIdDetection.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineASMCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCXXCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerId.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerSupport.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineSystem.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeFindBinUtils.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeGenericSystem.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeInitializeConfigs.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeLanguageInformation.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeNinjaFindMake.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeParseImplicitIncludeInfo.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeParseImplicitLinkInfo.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeParseLibraryArchitecture.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeSystem.cmake.in C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeSystemSpecificInformation.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeSystemSpecificInitialize.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeTestASMCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeTestCCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeTestCXXCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeTestCompilerCommon.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CheckCCompilerFlag.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CheckCSourceCompiles.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CheckCXXCompilerFlag.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CheckCXXSourceCompiles.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/ADSP-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/ARMCC-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/ARMClang-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/AppleClang-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Borland-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Bruce-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Clang-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Clang-DetermineCompilerInternal.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Compaq-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Cray-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/CrayClang-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Embarcadero-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Fujitsu-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/GHS-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/GNU-ASM.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/GNU-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/GNU-C.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/GNU-CXX-CXXImportStd.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/GNU-CXX.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/GNU-FindBinUtils.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/GNU.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/HP-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/HP-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/IAR-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Intel-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/LCC-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/MSVC-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/NVHPC-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/NVIDIA-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/OrangeC-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/PGI-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/PathScale-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/SCO-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/SDCC-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/SunPro-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/TI-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/TIClang-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Tasking-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Watcom-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/XL-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/XL-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/XLClang-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/zOS-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/ExternalProject.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/ExternalProject/shared_internal_commands.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/FindGit.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/FindPackageHandleStandardArgs.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/FindPackageMessage.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/CMakeASMLinkerInformation.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/CMakeCLinkerInformation.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/CMakeCXXLinkerInformation.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/CMakeCommonLinkerInformation.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/CMakeDetermineLinkerId.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/CMakeInspectASMLinker.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/CMakeInspectCLinker.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/CMakeInspectCXXLinker.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/CheckCompilerFlag.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/CheckFlagCommonConfig.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/CheckSourceCompiles.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/FeatureTesting.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Platform/Generic.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/sdkconfig C$:/esp/v6.0/esp-idf/.git/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/bt/controller/lib_esp32/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/bt/controller/lib_esp32c3_family/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/bt/esp_ble_mesh/lib/lib/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/bt/host/nimble/nimble/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/cmock/CMock/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/esp_coex/lib/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/esp_phy/lib/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/esp_wifi/lib/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/heap/tlsf/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/lwip/lwip/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/mbedtls/mbedtls/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/openthread/lib/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/openthread/openthread/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/protobuf-c/protobuf-c/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/spiffs/spiffs/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/unity/unity/HEAD C$:/esp/v6.0/esp-idf/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/bootloader/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/bootloader/project_include.cmake C$:/esp/v6.0/esp-idf/components/bootloader/subproject/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git C$:/esp/v6.0/esp-idf/components/bootloader/subproject/main/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/bootloader_support/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/bt/controller/lib_esp32/.git C$:/esp/v6.0/esp-idf/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/.git C$:/esp/v6.0/esp-idf/components/bt/controller/lib_esp32c3_family/.git C$:/esp/v6.0/esp-idf/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/.git C$:/esp/v6.0/esp-idf/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/.git C$:/esp/v6.0/esp-idf/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/.git C$:/esp/v6.0/esp-idf/components/bt/esp_ble_mesh/lib/lib/.git C$:/esp/v6.0/esp-idf/components/bt/host/nimble/nimble/.git C$:/esp/v6.0/esp-idf/components/cmock/CMock/.git C$:/esp/v6.0/esp-idf/components/efuse/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/efuse/esp32/sources.cmake C$:/esp/v6.0/esp-idf/components/esp_app_format/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_blockdev/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_bootloader_format/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_coex/lib/.git C$:/esp/v6.0/esp-idf/components/esp_common/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_common/project_include.cmake C$:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_clock/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_dma/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_gpio/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_gpspi/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_i2s/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_mspi/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_pmu/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_security/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_timg/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_uart/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_usb/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_wdt/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hw_support/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hw_support/lowpower/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_libc/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_libc/project_include.cmake C$:/esp/v6.0/esp-idf/components/esp_phy/lib/.git C$:/esp/v6.0/esp-idf/components/esp_rom/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_security/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_stdio/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_system/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_wifi/lib/.git C$:/esp/v6.0/esp-idf/components/esptool_py/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esptool_py/espefuse.cmake C$:/esp/v6.0/esp-idf/components/esptool_py/project_include.cmake C$:/esp/v6.0/esp-idf/components/freertos/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/hal/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/heap/tlsf/.git C$:/esp/v6.0/esp-idf/components/log/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/lwip/lwip/.git C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/.git C$:/esp/v6.0/esp-idf/components/openthread/lib/.git C$:/esp/v6.0/esp-idf/components/openthread/openthread/.git C$:/esp/v6.0/esp-idf/components/partition_table/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/partition_table/project_include.cmake C$:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c/.git C$:/esp/v6.0/esp-idf/components/soc/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/soc/project_include.cmake C$:/esp/v6.0/esp-idf/components/spi_flash/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/spiffs/spiffs/.git C$:/esp/v6.0/esp-idf/components/unity/unity/.git C$:/esp/v6.0/esp-idf/components/xtensa/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/xtensa/project_include.cmake C$:/esp/v6.0/esp-idf/tools/cmake/build.cmake C$:/esp/v6.0/esp-idf/tools/cmake/component.cmake C$:/esp/v6.0/esp-idf/tools/cmake/deduplicate_flags.cmake C$:/esp/v6.0/esp-idf/tools/cmake/depgraph.cmake C$:/esp/v6.0/esp-idf/tools/cmake/dfu.cmake C$:/esp/v6.0/esp-idf/tools/cmake/flash_targets.cmake C$:/esp/v6.0/esp-idf/tools/cmake/gdbinit.cmake C$:/esp/v6.0/esp-idf/tools/cmake/git_submodules.cmake C$:/esp/v6.0/esp-idf/tools/cmake/idf.cmake C$:/esp/v6.0/esp-idf/tools/cmake/kconfig.cmake C$:/esp/v6.0/esp-idf/tools/cmake/ldgen.cmake C$:/esp/v6.0/esp-idf/tools/cmake/openocd.cmake C$:/esp/v6.0/esp-idf/tools/cmake/post_build_validation.cmake C$:/esp/v6.0/esp-idf/tools/cmake/prefix_map.cmake C$:/esp/v6.0/esp-idf/tools/cmake/project.cmake C$:/esp/v6.0/esp-idf/tools/cmake/project_description.json.in C$:/esp/v6.0/esp-idf/tools/cmake/symbols.gdbinit.in C$:/esp/v6.0/esp-idf/tools/cmake/targets.cmake C$:/esp/v6.0/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake C$:/esp/v6.0/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake.in C$:/esp/v6.0/esp-idf/tools/cmake/tool_version_check.cmake C$:/esp/v6.0/esp-idf/tools/cmake/toolchain-esp32.cmake C$:/esp/v6.0/esp-idf/tools/cmake/toolchain.cmake C$:/esp/v6.0/esp-idf/tools/cmake/toolchain_flags.cmake C$:/esp/v6.0/esp-idf/tools/cmake/utilities.cmake C$:/esp/v6.0/esp-idf/tools/cmake/version.cmake C$:/esp/v6.0/esp-idf/tools/kconfig_new/confgen.py C$:/esp/v6.0/esp-idf/tools/kconfig_new/config.env.in CMakeCache.txt CMakeFiles/4.0.3/CMakeASMCompiler.cmake CMakeFiles/4.0.3/CMakeCCompiler.cmake CMakeFiles/4.0.3/CMakeCXXCompiler.cmake CMakeFiles/4.0.3/CMakeSystem.cmake CMakeFiles/git-data/grabRef.cmake config/sdkconfig.cmake config/sdkconfig.h toolchain/toolchain-esp32.cmake: phony + + +############################################# +# Clean additional files. + +build CMakeFiles/clean.additional: CLEAN_ADDITIONAL + + +############################################# +# Clean all the built files. + +build clean: CLEAN CMakeFiles/clean.additional + + +############################################# +# Print all primary targets available. + +build help: HELP + + +############################################# +# Make the all target the default. + +default all diff --git a/build/bootloader/cmake_install.cmake b/build/bootloader/cmake_install.cmake new file mode 100644 index 0000000..264533c --- /dev/null +++ b/build/bootloader/cmake_install.cmake @@ -0,0 +1,66 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/bootloader/subproject + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() +if(CMAKE_INSTALL_COMPONENT) + if(CMAKE_INSTALL_COMPONENT MATCHES "^[a-zA-Z0-9_.+-]+$") + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") + else() + string(MD5 CMAKE_INST_COMP_HASH "${CMAKE_INSTALL_COMPONENT}") + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INST_COMP_HASH}.txt") + unset(CMAKE_INST_COMP_HASH) + endif() +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/bootloader/compile_commands.json b/build/bootloader/compile_commands.json new file mode 100644 index 0000000..a3187b1 --- /dev/null +++ b/build/bootloader/compile_commands.json @@ -0,0 +1,656 @@ +[ +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_system/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -o CMakeFiles\\bootloader.elf.dir\\project_elf_src_esp32.c.obj -c C:\\Users\\e.adame\\Documents\\ESP32_Modbus_RTU_to_PICS_MULTI\\build\\bootloader\\project_elf_src_esp32.c", + "file": "C:\\Users\\e.adame\\Documents\\ESP32_Modbus_RTU_to_PICS_MULTI\\build\\bootloader\\project_elf_src_esp32.c", + "output": "CMakeFiles\\bootloader.elf.dir\\project_elf_src_esp32.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\eri.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\xtensa\\eri.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\xtensa\\eri.c", + "output": "esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\eri.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\xt_trax.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\xtensa\\xt_trax.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\xtensa\\xt_trax.c", + "output": "esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\xt_trax.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\lldesc.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\soc\\lldesc.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\soc\\lldesc.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\lldesc.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\dport_access_common.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\soc\\dport_access_common.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\soc\\dport_access_common.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\dport_access_common.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\interrupts.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\soc\\esp32\\interrupts.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\soc\\esp32\\interrupts.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\interrupts.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\gpio_periph.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\soc\\esp32\\gpio_periph.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\soc\\esp32\\gpio_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\gpio_periph.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\dport_access.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\soc\\esp32\\dport_access.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\soc\\esp32\\dport_access.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\dport_access.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\emac_periph.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\soc\\esp32\\emac_periph.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\soc\\esp32\\emac_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\emac_periph.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\mpi_periph.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\soc\\esp32\\mpi_periph.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\soc\\esp32\\mpi_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\mpi_periph.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\sdmmc_periph.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\soc\\esp32\\sdmmc_periph.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\soc\\esp32\\sdmmc_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\sdmmc_periph.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\sdio_slave_periph.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\soc\\esp32\\sdio_slave_periph.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\soc\\esp32\\sdio_slave_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\sdio_slave_periph.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\power_supply_periph.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\soc\\esp32\\power_supply_periph.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\soc\\esp32\\power_supply_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\power_supply_periph.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\hal_utils.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\hal\\hal_utils.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\hal\\hal_utils.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\hal_utils.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\efuse_hal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\hal\\efuse_hal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\hal\\efuse_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\efuse_hal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32\\efuse_hal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\hal\\esp32\\efuse_hal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\hal\\esp32\\efuse_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32\\efuse_hal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mmu_hal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\hal\\mmu_hal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\hal\\mmu_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mmu_hal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32\\cache_hal_esp32.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\hal\\esp32\\cache_hal_esp32.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\hal\\esp32\\cache_hal_esp32.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32\\cache_hal_esp32.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_gpio\\CMakeFiles\\__idf_esp_hal_gpio.dir\\gpio_hal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_gpio\\gpio_hal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_gpio\\gpio_hal.c", + "output": "esp-idf\\esp_hal_gpio\\CMakeFiles\\__idf_esp_hal_gpio.dir\\gpio_hal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_gpio\\CMakeFiles\\__idf_esp_hal_gpio.dir\\rtc_io_hal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_gpio\\rtc_io_hal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_gpio\\rtc_io_hal.c", + "output": "esp-idf\\esp_hal_gpio\\CMakeFiles\\__idf_esp_hal_gpio.dir\\rtc_io_hal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_gpio\\CMakeFiles\\__idf_esp_hal_gpio.dir\\esp32\\rtc_io_periph.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_gpio\\esp32\\rtc_io_periph.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_gpio\\esp32\\rtc_io_periph.c", + "output": "esp-idf\\esp_hal_gpio\\CMakeFiles\\__idf_esp_hal_gpio.dir\\esp32\\rtc_io_periph.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_gpio\\CMakeFiles\\__idf_esp_hal_gpio.dir\\sdm_hal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_gpio\\sdm_hal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_gpio\\sdm_hal.c", + "output": "esp-idf\\esp_hal_gpio\\CMakeFiles\\__idf_esp_hal_gpio.dir\\sdm_hal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_gpio\\CMakeFiles\\__idf_esp_hal_gpio.dir\\esp32\\sdm_periph.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_gpio\\esp32\\sdm_periph.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_gpio\\esp32\\sdm_periph.c", + "output": "esp-idf\\esp_hal_gpio\\CMakeFiles\\__idf_esp_hal_gpio.dir\\esp32\\sdm_periph.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\micro-ecc\\CMakeFiles\\__idf_micro-ecc.dir\\uECC_verify_antifault.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\bootloader\\subproject\\components\\micro-ecc\\uECC_verify_antifault.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\bootloader\\subproject\\components\\micro-ecc\\uECC_verify_antifault.c", + "output": "esp-idf\\micro-ecc\\CMakeFiles\\__idf_micro-ecc.dir\\uECC_verify_antifault.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_gpspi\\CMakeFiles\\__idf_esp_hal_gpspi.dir\\esp32\\spi_periph.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_gpspi\\esp32\\spi_periph.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_gpspi\\esp32\\spi_periph.c", + "output": "esp-idf\\esp_hal_gpspi\\CMakeFiles\\__idf_esp_hal_gpspi.dir\\esp32\\spi_periph.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_gpspi\\CMakeFiles\\__idf_esp_hal_gpspi.dir\\spi_hal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_gpspi\\spi_hal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_gpspi\\spi_hal.c", + "output": "esp-idf\\esp_hal_gpspi\\CMakeFiles\\__idf_esp_hal_gpspi.dir\\spi_hal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_gpspi\\CMakeFiles\\__idf_esp_hal_gpspi.dir\\spi_hal_iram.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_gpspi\\spi_hal_iram.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_gpspi\\spi_hal_iram.c", + "output": "esp-idf\\esp_hal_gpspi\\CMakeFiles\\__idf_esp_hal_gpspi.dir\\spi_hal_iram.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_gpspi\\CMakeFiles\\__idf_esp_hal_gpspi.dir\\spi_slave_hal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_gpspi\\spi_slave_hal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_gpspi\\spi_slave_hal.c", + "output": "esp-idf\\esp_hal_gpspi\\CMakeFiles\\__idf_esp_hal_gpspi.dir\\spi_slave_hal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_gpspi\\CMakeFiles\\__idf_esp_hal_gpspi.dir\\spi_slave_hal_iram.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_gpspi\\spi_slave_hal_iram.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_gpspi\\spi_slave_hal_iram.c", + "output": "esp-idf\\esp_hal_gpspi\\CMakeFiles\\__idf_esp_hal_gpspi.dir\\spi_slave_hal_iram.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_clock\\CMakeFiles\\__idf_esp_hal_clock.dir\\esp32\\clk_tree_hal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_clock\\esp32\\clk_tree_hal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_clock\\esp32\\clk_tree_hal.c", + "output": "esp-idf\\esp_hal_clock\\CMakeFiles\\__idf_esp_hal_clock.dir\\esp32\\clk_tree_hal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_wrap.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\spi_flash\\spi_flash_wrap.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\spi_flash\\spi_flash_wrap.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_wrap.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_bootloader_format\\CMakeFiles\\__idf_esp_bootloader_format.dir\\esp_bootloader_desc.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_bootloader_format\\esp_bootloader_desc.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_bootloader_format\\esp_bootloader_desc.c", + "output": "esp-idf\\esp_bootloader_format\\CMakeFiles\\__idf_esp_bootloader_format.dir\\esp_bootloader_desc.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_timg\\CMakeFiles\\__idf_esp_hal_timg.dir\\timer_hal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_timg\\timer_hal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_timg\\timer_hal.c", + "output": "esp-idf\\esp_hal_timg\\CMakeFiles\\__idf_esp_hal_timg.dir\\timer_hal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_timg\\CMakeFiles\\__idf_esp_hal_timg.dir\\esp32\\timer_periph.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_timg\\esp32\\timer_periph.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_timg\\esp32\\timer_periph.c", + "output": "esp-idf\\esp_hal_timg\\CMakeFiles\\__idf_esp_hal_timg.dir\\esp32\\timer_periph.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_wdt\\CMakeFiles\\__idf_esp_hal_wdt.dir\\esp32\\mwdt_periph.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_wdt\\esp32\\mwdt_periph.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_wdt\\esp32\\mwdt_periph.c", + "output": "esp-idf\\esp_hal_wdt\\CMakeFiles\\__idf_esp_hal_wdt.dir\\esp32\\mwdt_periph.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_wdt\\CMakeFiles\\__idf_esp_hal_wdt.dir\\wdt_hal_iram.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_wdt\\wdt_hal_iram.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_wdt\\wdt_hal_iram.c", + "output": "esp-idf\\esp_hal_wdt\\CMakeFiles\\__idf_esp_hal_wdt.dir\\wdt_hal_iram.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_uart\\CMakeFiles\\__idf_esp_hal_uart.dir\\uart_hal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_uart\\uart_hal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_uart\\uart_hal.c", + "output": "esp-idf\\esp_hal_uart\\CMakeFiles\\__idf_esp_hal_uart.dir\\uart_hal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_uart\\CMakeFiles\\__idf_esp_hal_uart.dir\\uart_hal_iram.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_uart\\uart_hal_iram.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_uart\\uart_hal_iram.c", + "output": "esp-idf\\esp_hal_uart\\CMakeFiles\\__idf_esp_hal_uart.dir\\uart_hal_iram.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_uart\\CMakeFiles\\__idf_esp_hal_uart.dir\\esp32\\uart_periph.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_uart\\esp32\\uart_periph.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_uart\\esp32\\uart_periph.c", + "output": "esp-idf\\esp_hal_uart\\CMakeFiles\\__idf_esp_hal_uart.dir\\esp32\\uart_periph.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_i2s\\CMakeFiles\\__idf_esp_hal_i2s.dir\\i2s_hal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_i2s\\i2s_hal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_i2s\\i2s_hal.c", + "output": "esp-idf\\esp_hal_i2s\\CMakeFiles\\__idf_esp_hal_i2s.dir\\i2s_hal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_i2s\\CMakeFiles\\__idf_esp_hal_i2s.dir\\esp32\\i2s_periph.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_i2s\\esp32\\i2s_periph.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_i2s\\esp32\\i2s_periph.c", + "output": "esp-idf\\esp_hal_i2s\\CMakeFiles\\__idf_esp_hal_i2s.dir\\esp32\\i2s_periph.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_ana_conv\\CMakeFiles\\__idf_esp_hal_ana_conv.dir\\esp32\\adc_periph.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_ana_conv\\esp32\\adc_periph.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_ana_conv\\esp32\\adc_periph.c", + "output": "esp-idf\\esp_hal_ana_conv\\CMakeFiles\\__idf_esp_hal_ana_conv.dir\\esp32\\adc_periph.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_ana_conv\\CMakeFiles\\__idf_esp_hal_ana_conv.dir\\adc_hal_common.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_ana_conv\\adc_hal_common.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_ana_conv\\adc_hal_common.c", + "output": "esp-idf\\esp_hal_ana_conv\\CMakeFiles\\__idf_esp_hal_ana_conv.dir\\adc_hal_common.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_ana_conv\\CMakeFiles\\__idf_esp_hal_ana_conv.dir\\adc_oneshot_hal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_ana_conv\\adc_oneshot_hal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_ana_conv\\adc_oneshot_hal.c", + "output": "esp-idf\\esp_hal_ana_conv\\CMakeFiles\\__idf_esp_hal_ana_conv.dir\\adc_oneshot_hal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_ana_conv\\CMakeFiles\\__idf_esp_hal_ana_conv.dir\\adc_hal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_ana_conv\\adc_hal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_ana_conv\\adc_hal.c", + "output": "esp-idf\\esp_hal_ana_conv\\CMakeFiles\\__idf_esp_hal_ana_conv.dir\\adc_hal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_ana_conv\\CMakeFiles\\__idf_esp_hal_ana_conv.dir\\esp32\\dac_periph.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_ana_conv\\esp32\\dac_periph.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_ana_conv\\esp32\\dac_periph.c", + "output": "esp-idf\\esp_hal_ana_conv\\CMakeFiles\\__idf_esp_hal_ana_conv.dir\\esp32\\dac_periph.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_security\\CMakeFiles\\__idf_esp_hal_security.dir\\mpu_hal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_security\\mpu_hal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_security\\mpu_hal.c", + "output": "esp-idf\\esp_hal_security\\CMakeFiles\\__idf_esp_hal_security.dir\\mpu_hal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\esp_crypto_lock.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_security\\src\\esp_crypto_lock.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_security\\src\\esp_crypto_lock.c", + "output": "esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\esp_crypto_lock.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\esp_crypto_periph_clk.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_security\\src\\esp_crypto_periph_clk.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_security\\src\\esp_crypto_periph_clk.c", + "output": "esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\esp_crypto_periph_clk.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_common.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\bootloader_common.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\bootloader_common.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_common.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_common_loader.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\bootloader_common_loader.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\bootloader_common_loader.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_common_loader.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_clock_init.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\bootloader_clock_init.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\bootloader_clock_init.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_clock_init.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_mem.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\bootloader_mem.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\bootloader_mem.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_mem.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\bootloader_random.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\bootloader_random.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_efuse.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\bootloader_efuse.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\bootloader_efuse.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_efuse.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_encrypt.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\flash_encrypt.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\flash_encrypt.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_encrypt.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\secure_boot.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\secure_boot.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\secure_boot.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\secure_boot.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random_esp32.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\bootloader_random_esp32.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\bootloader_random_esp32.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random_esp32.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\flash_qio_mode.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\flash_qio_mode.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\flash_qio_mode.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\flash_qio_mode.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash_config_esp32.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash_config_esp32.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash_config_esp32.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash_config_esp32.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_utility.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\bootloader_utility.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\bootloader_utility.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_utility.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_partitions.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\flash_partitions.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\flash_partitions.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_partitions.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp_image_format.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\esp_image_format.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\esp_image_format.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp_image_format.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_sha.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\bootloader_sha.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\bootloader_sha.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_sha.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_init.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\bootloader_init.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\bootloader_init.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_init.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_clock_loader.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\bootloader_clock_loader.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\bootloader_clock_loader.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_clock_loader.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_console.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\bootloader_console.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\bootloader_console.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_console.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_console_loader.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\bootloader_console_loader.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\bootloader_console_loader.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_console_loader.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp32\\bootloader_soc.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\esp32\\bootloader_soc.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\esp32\\bootloader_soc.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp32\\bootloader_soc.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp32\\bootloader_esp32.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\esp32\\bootloader_esp32.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\esp32\\bootloader_esp32.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp32\\bootloader_esp32.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_panic.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\bootloader_panic.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\bootloader_panic.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_panic.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/private_include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32\\esp_efuse_table.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\efuse\\esp32\\esp_efuse_table.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\efuse\\esp32\\esp_efuse_table.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32\\esp_efuse_table.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/private_include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32\\esp_efuse_fields.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\efuse\\esp32\\esp_efuse_fields.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\efuse\\esp32\\esp_efuse_fields.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32\\esp_efuse_fields.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/private_include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32\\esp_efuse_utility.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\efuse\\esp32\\esp_efuse_utility.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\efuse\\esp32\\esp_efuse_utility.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32\\esp_efuse_utility.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/private_include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_api.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\efuse\\src\\esp_efuse_api.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\efuse\\src\\esp_efuse_api.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_api.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/private_include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_fields.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\efuse\\src\\esp_efuse_fields.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\efuse\\src\\esp_efuse_fields.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_fields.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/private_include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_utility.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\efuse\\src\\esp_efuse_utility.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\efuse\\src\\esp_efuse_utility.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_utility.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/private_include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/private_include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\efuse_controller\\keys\\without_key_purposes\\three_key_blocks\\esp_efuse_api_key.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\efuse\\src\\efuse_controller\\keys\\without_key_purposes\\three_key_blocks\\esp_efuse_api_key.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\efuse\\src\\efuse_controller\\keys\\without_key_purposes\\three_key_blocks\\esp_efuse_api_key.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\efuse_controller\\keys\\without_key_purposes\\three_key_blocks\\esp_efuse_api_key.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_err.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\esp_err.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\esp_err.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_err.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_system/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\cpu.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\cpu.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\cpu.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\cpu.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_system/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32\\esp_cpu_intr.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\port\\esp32\\esp_cpu_intr.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\port\\esp32\\esp_cpu_intr.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32\\esp_cpu_intr.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_system/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_memory_utils.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\esp_memory_utils.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\esp_memory_utils.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_memory_utils.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_system/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32\\cpu_region_protect.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\port\\esp32\\cpu_region_protect.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\port\\esp32\\cpu_region_protect.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32\\cpu_region_protect.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_system/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32\\rtc_clk.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_clk.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_clk.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32\\rtc_clk.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_system/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32\\rtc_clk_init.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_clk_init.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_clk_init.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32\\rtc_clk_init.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_system/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32\\rtc_init.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_init.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_init.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32\\rtc_init.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_system/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32\\rtc_sleep.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_sleep.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_sleep.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32\\rtc_sleep.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_system/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32\\rtc_time.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_time.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_time.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32\\rtc_time.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_system/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32\\chip_info.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\port\\esp32\\chip_info.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\port\\esp32\\chip_info.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32\\chip_info.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_common\\CMakeFiles\\__idf_esp_common.dir\\src\\esp_err_to_name.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_common\\src\\esp_err_to_name.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_common\\src\\esp_err_to_name.c", + "output": "esp-idf\\esp_common\\CMakeFiles\\__idf_esp_common.dir\\src\\esp_err_to_name.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_sys.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_rom\\patches\\esp_rom_sys.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_rom\\patches\\esp_rom_sys.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_sys.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_print.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_rom\\patches\\esp_rom_print.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_rom\\patches\\esp_rom_print.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_print.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_crc.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_rom\\patches\\esp_rom_crc.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_rom\\patches\\esp_rom_crc.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_crc.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_serial_output.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_rom\\patches\\esp_rom_serial_output.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_rom\\patches\\esp_rom_serial_output.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_serial_output.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_spiflash.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_rom\\patches\\esp_rom_spiflash.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_rom\\patches\\esp_rom_spiflash.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_spiflash.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_efuse.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_rom\\patches\\esp_rom_efuse.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_rom\\patches\\esp_rom_efuse.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_efuse.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_gpio.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_rom\\patches\\esp_rom_gpio.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_rom\\patches\\esp_rom_gpio.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_gpio.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/asmflags\" -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/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:\\esp\\v6.0\\esp-idf\\components\\esp_rom\\patches\\esp_rom_longjmp.S", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_rom\\patches\\esp_rom_longjmp.S", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_longjmp.S.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/log/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\noos\\log_timestamp.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\log\\src\\noos\\log_timestamp.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\log\\src\\noos\\log_timestamp.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\noos\\log_timestamp.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/log/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_timestamp_common.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\log\\src\\log_timestamp_common.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\log\\src\\log_timestamp_common.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_timestamp_common.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/log/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\noos\\log_lock.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\log\\src\\noos\\log_lock.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\log\\src\\noos\\log_lock.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\noos\\log_lock.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/log/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\buffer\\log_buffers.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\log\\src\\buffer\\log_buffers.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\log\\src\\buffer\\log_buffers.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\buffer\\log_buffers.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/log/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\noos\\util.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\log\\src\\noos\\util.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\log\\src\\noos\\util.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\noos\\util.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/log/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\util.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\log\\src\\util.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\log\\src\\util.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\util.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/log/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_format_text.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\log\\src\\log_format_text.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\log\\src\\log_format_text.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_format_text.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/log/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_print.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\log\\src\\log_print.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\log\\src\\log_print.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_print.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/log/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\log\\src\\log.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\log\\src\\log.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -mno-target-align -fmacro-prefix-map=C:/esp/v6.0/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\main\\CMakeFiles\\__idf_main.dir\\bootloader_start.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\bootloader\\subproject\\main\\bootloader_start.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\bootloader\\subproject\\main\\bootloader_start.c", + "output": "esp-idf\\main\\CMakeFiles\\__idf_main.dir\\bootloader_start.c.obj" +} +] \ No newline at end of file diff --git a/build/bootloader/config.env b/build/bootloader/config.env new file mode 100644 index 0000000..a1bf478 --- /dev/null +++ b/build/bootloader/config.env @@ -0,0 +1,12 @@ +{ + "COMPONENT_KCONFIGS": "C:/esp/v6.0/esp-idf/components/efuse/Kconfig;C:/esp/v6.0/esp-idf/components/esp_common/Kconfig;C:/esp/v6.0/esp-idf/components/esp_hw_support/Kconfig;C:/esp/v6.0/esp-idf/components/esp_libc/Kconfig;C:/esp/v6.0/esp-idf/components/esp_rom/Kconfig;C:/esp/v6.0/esp-idf/components/esp_security/Kconfig;C:/esp/v6.0/esp-idf/components/esp_stdio/Kconfig;C:/esp/v6.0/esp-idf/components/esp_system/Kconfig;C:/esp/v6.0/esp-idf/components/freertos/Kconfig;C:/esp/v6.0/esp-idf/components/hal/Kconfig;C:/esp/v6.0/esp-idf/components/log/Kconfig;C:/esp/v6.0/esp-idf/components/soc/Kconfig;C:/esp/v6.0/esp-idf/components/spi_flash/Kconfig", + "COMPONENT_KCONFIGS_PROJBUILD": "C:/esp/v6.0/esp-idf/components/bootloader/Kconfig.projbuild;C:/esp/v6.0/esp-idf/components/esp_app_format/Kconfig.projbuild;C:/esp/v6.0/esp-idf/components/esp_rom/Kconfig.projbuild;C:/esp/v6.0/esp-idf/components/esptool_py/Kconfig.projbuild;C:/esp/v6.0/esp-idf/components/partition_table/Kconfig.projbuild", + "COMPONENT_SDKCONFIG_RENAMES": "C:/esp/v6.0/esp-idf/components/bootloader/sdkconfig.rename;C:/esp/v6.0/esp-idf/components/esp_hw_support/sdkconfig.rename;C:/esp/v6.0/esp-idf/components/esp_hw_support/sdkconfig.rename.esp32;C:/esp/v6.0/esp-idf/components/esp_libc/sdkconfig.rename;C:/esp/v6.0/esp-idf/components/esp_libc/sdkconfig.rename.esp32;C:/esp/v6.0/esp-idf/components/esp_system/sdkconfig.rename;C:/esp/v6.0/esp-idf/components/esp_system/sdkconfig.rename.esp32;C:/esp/v6.0/esp-idf/components/esptool_py/sdkconfig.rename;C:/esp/v6.0/esp-idf/components/freertos/sdkconfig.rename;C:/esp/v6.0/esp-idf/components/hal/sdkconfig.rename;C:/esp/v6.0/esp-idf/components/spi_flash/sdkconfig.rename", + "IDF_TARGET": "esp32", + "IDF_TOOLCHAIN": "gcc", + "IDF_VERSION": "6.0.0", + "IDF_ENV_FPGA": "", + "IDF_PATH": "C:/esp/v6.0/esp-idf", + "COMPONENT_KCONFIGS_SOURCE_FILE": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/kconfigs.in", + "COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/kconfigs_projbuild.in" +} diff --git a/build/bootloader/config/kconfig_menus.json b/build/bootloader/config/kconfig_menus.json new file mode 100644 index 0000000..24741b3 --- /dev/null +++ b/build/bootloader/config/kconfig_menus.json @@ -0,0 +1,9979 @@ +[ + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CAPS_ECO_VER_MAX", + "name": "SOC_CAPS_ECO_VER_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_SUPPORTED", + "name": "SOC_ADC_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DAC_SUPPORTED", + "name": "SOC_DAC_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_SUPPORTED", + "name": "SOC_UART_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_SUPPORTED", + "name": "SOC_MCPWM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPTIMER_SUPPORTED", + "name": "SOC_GPTIMER_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SDMMC_HOST_SUPPORTED", + "name": "SOC_SDMMC_HOST_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BT_SUPPORTED", + "name": "SOC_BT_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PCNT_SUPPORTED", + "name": "SOC_PCNT_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PHY_SUPPORTED", + "name": "SOC_PHY_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_SUPPORTED", + "name": "SOC_WIFI_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SDIO_SLAVE_SUPPORTED", + "name": "SOC_SDIO_SLAVE_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TWAI_SUPPORTED", + "name": "SOC_TWAI_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_SUPPORTED", + "name": "SOC_EFUSE_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EMAC_SUPPORTED", + "name": "SOC_EMAC_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ULP_SUPPORTED", + "name": "SOC_ULP_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CCOMP_TIMER_SUPPORTED", + "name": "SOC_CCOMP_TIMER_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RTC_FAST_MEM_SUPPORTED", + "name": "SOC_RTC_FAST_MEM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RTC_SLOW_MEM_SUPPORTED", + "name": "SOC_RTC_SLOW_MEM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RTC_MEM_SUPPORTED", + "name": "SOC_RTC_MEM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RTC_TIMER_V1_SUPPORTED", + "name": "SOC_RTC_TIMER_V1_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTED", + "name": "SOC_I2S_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_I80_LCD_SUPPORTED", + "name": "SOC_I2S_I80_LCD_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCD_I80_SUPPORTED", + "name": "SOC_LCD_I80_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORTED", + "name": "SOC_RMT_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SDM_SUPPORTED", + "name": "SOC_SDM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPSPI_SUPPORTED", + "name": "SOC_GPSPI_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_SUPPORTED", + "name": "SOC_LEDC_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SUPPORTED", + "name": "SOC_I2C_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SUPPORT_COEXISTENCE", + "name": "SOC_SUPPORT_COEXISTENCE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_AES_SUPPORTED", + "name": "SOC_AES_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MPI_SUPPORTED", + "name": "SOC_MPI_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORTED", + "name": "SOC_SHA_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_FLASH_ENC_SUPPORTED", + "name": "SOC_FLASH_ENC_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SECURE_BOOT_SUPPORTED", + "name": "SOC_SECURE_BOOT_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_SENSOR_SUPPORTED", + "name": "SOC_TOUCH_SENSOR_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BOD_SUPPORTED", + "name": "SOC_BOD_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ULP_FSM_SUPPORTED", + "name": "SOC_ULP_FSM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CLK_TREE_SUPPORTED", + "name": "SOC_CLK_TREE_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MPU_SUPPORTED", + "name": "SOC_MPU_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WDT_SUPPORTED", + "name": "SOC_WDT_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_FLASH_SUPPORTED", + "name": "SOC_SPI_FLASH_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RNG_SUPPORTED", + "name": "SOC_RNG_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LIGHT_SLEEP_SUPPORTED", + "name": "SOC_LIGHT_SLEEP_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DEEP_SLEEP_SUPPORTED", + "name": "SOC_DEEP_SLEEP_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LP_PERIPH_SHARE_INTERRUPT", + "name": "SOC_LP_PERIPH_SHARE_INTERRUPT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORTED", + "name": "SOC_PM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DPORT_WORKAROUND_DIS_INTERRUPT_LVL", + "name": "SOC_DPORT_WORKAROUND_DIS_INTERRUPT_LVL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_XTAL_SUPPORT_26M", + "name": "SOC_XTAL_SUPPORT_26M", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_XTAL_SUPPORT_40M", + "name": "SOC_XTAL_SUPPORT_40M", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_RTC_CTRL_SUPPORTED", + "name": "SOC_ADC_RTC_CTRL_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_DIG_CTRL_SUPPORTED", + "name": "SOC_ADC_DIG_CTRL_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_DMA_SUPPORTED", + "name": "SOC_ADC_DMA_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_PERIPH_NUM", + "name": "SOC_ADC_PERIPH_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_MAX_CHANNEL_NUM", + "name": "SOC_ADC_MAX_CHANNEL_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_ATTEN_NUM", + "name": "SOC_ADC_ATTEN_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_DIGI_CONTROLLER_NUM", + "name": "SOC_ADC_DIGI_CONTROLLER_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_PATT_LEN_MAX", + "name": "SOC_ADC_PATT_LEN_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_DIGI_MIN_BITWIDTH", + "name": "SOC_ADC_DIGI_MIN_BITWIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_DIGI_MAX_BITWIDTH", + "name": "SOC_ADC_DIGI_MAX_BITWIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_DIGI_RESULT_BYTES", + "name": "SOC_ADC_DIGI_RESULT_BYTES", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_DIGI_DATA_BYTES_PER_CONV", + "name": "SOC_ADC_DIGI_DATA_BYTES_PER_CONV", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_DIGI_MONITOR_NUM", + "name": "SOC_ADC_DIGI_MONITOR_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_SAMPLE_FREQ_THRES_HIGH", + "name": "SOC_ADC_SAMPLE_FREQ_THRES_HIGH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_SAMPLE_FREQ_THRES_LOW", + "name": "SOC_ADC_SAMPLE_FREQ_THRES_LOW", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_RTC_MIN_BITWIDTH", + "name": "SOC_ADC_RTC_MIN_BITWIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_RTC_MAX_BITWIDTH", + "name": "SOC_ADC_RTC_MAX_BITWIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_SHARED_POWER", + "name": "SOC_ADC_SHARED_POWER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BROWNOUT_RESET_SUPPORTED", + "name": "SOC_BROWNOUT_RESET_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHARED_IDCACHE_SUPPORTED", + "name": "SOC_SHARED_IDCACHE_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_IDCACHE_PER_CORE", + "name": "SOC_IDCACHE_PER_CORE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CPU_CORES_NUM", + "name": "SOC_CPU_CORES_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CPU_INTR_NUM", + "name": "SOC_CPU_INTR_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CPU_HAS_FPU", + "name": "SOC_CPU_HAS_FPU", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_HP_CPU_HAS_MULTIPLE_CORES", + "name": "SOC_HP_CPU_HAS_MULTIPLE_CORES", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CPU_BREAKPOINTS_NUM", + "name": "SOC_CPU_BREAKPOINTS_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CPU_WATCHPOINTS_NUM", + "name": "SOC_CPU_WATCHPOINTS_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CPU_WATCHPOINT_MAX_REGION_SIZE", + "name": "SOC_CPU_WATCHPOINT_MAX_REGION_SIZE", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DAC_CHAN_NUM", + "name": "SOC_DAC_CHAN_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DAC_RESOLUTION", + "name": "SOC_DAC_RESOLUTION", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DAC_DMA_16BIT_ALIGN", + "name": "SOC_DAC_DMA_16BIT_ALIGN", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_PORT", + "name": "SOC_GPIO_PORT", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_PIN_COUNT", + "name": "SOC_GPIO_PIN_COUNT", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_VALID_GPIO_MASK", + "name": "SOC_GPIO_VALID_GPIO_MASK", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_IN_RANGE_MAX", + "name": "SOC_GPIO_IN_RANGE_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_OUT_RANGE_MAX", + "name": "SOC_GPIO_OUT_RANGE_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK", + "name": "SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_CLOCKOUT_BY_IO_MUX", + "name": "SOC_GPIO_CLOCKOUT_BY_IO_MUX", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_CLOCKOUT_CHANNEL_NUM", + "name": "SOC_GPIO_CLOCKOUT_CHANNEL_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_NUM", + "name": "SOC_I2C_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_HP_I2C_NUM", + "name": "SOC_HP_I2C_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SUPPORT_APB", + "name": "SOC_I2C_SUPPORT_APB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SUPPORT_10BIT_ADDR", + "name": "SOC_I2C_SUPPORT_10BIT_ADDR", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SUPPORT_SLAVE", + "name": "SOC_I2C_SUPPORT_SLAVE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_STOP_INDEPENDENT", + "name": "SOC_I2C_STOP_INDEPENDENT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_HW_VERSION_1", + "name": "SOC_I2S_HW_VERSION_1", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_APLL", + "name": "SOC_I2S_SUPPORTS_APLL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_PDM", + "name": "SOC_I2S_SUPPORTS_PDM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_PDM_TX", + "name": "SOC_I2S_SUPPORTS_PDM_TX", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_PCM2PDM", + "name": "SOC_I2S_SUPPORTS_PCM2PDM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_PDM_RX", + "name": "SOC_I2S_SUPPORTS_PDM_RX", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_PDM2PCM", + "name": "SOC_I2S_SUPPORTS_PDM2PCM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_PDM_MAX_TX_LINES", + "name": "SOC_I2S_PDM_MAX_TX_LINES", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_PDM_MAX_RX_LINES", + "name": "SOC_I2S_PDM_MAX_RX_LINES", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_HAS_TIMER_SPECIFIC_MUX", + "name": "SOC_LEDC_HAS_TIMER_SPECIFIC_MUX", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_SUPPORT_APB_CLOCK", + "name": "SOC_LEDC_SUPPORT_APB_CLOCK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_SUPPORT_REF_TICK", + "name": "SOC_LEDC_SUPPORT_REF_TICK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_SUPPORT_HS_MODE", + "name": "SOC_LEDC_SUPPORT_HS_MODE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_TIMER_NUM", + "name": "SOC_LEDC_TIMER_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_CHANNEL_NUM", + "name": "SOC_LEDC_CHANNEL_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_TIMER_BIT_WIDTH", + "name": "SOC_LEDC_TIMER_BIT_WIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MMU_PERIPH_NUM", + "name": "SOC_MMU_PERIPH_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MMU_LINEAR_ADDRESS_REGION_NUM", + "name": "SOC_MMU_LINEAR_ADDRESS_REGION_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MPU_CONFIGURABLE_REGIONS_SUPPORTED", + "name": "SOC_MPU_CONFIGURABLE_REGIONS_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MPU_MIN_REGION_SIZE", + "name": "SOC_MPU_MIN_REGION_SIZE", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MPU_REGIONS_MAX_NUM", + "name": "SOC_MPU_REGIONS_MAX_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MPU_REGION_RO_SUPPORTED", + "name": "SOC_MPU_REGION_RO_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MPU_REGION_WO_SUPPORTED", + "name": "SOC_MPU_REGION_WO_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_MEM_WORDS_PER_CHANNEL", + "name": "SOC_RMT_MEM_WORDS_PER_CHANNEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RTCIO_PIN_COUNT", + "name": "SOC_RTCIO_PIN_COUNT", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RTCIO_INPUT_OUTPUT_SUPPORTED", + "name": "SOC_RTCIO_INPUT_OUTPUT_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RTCIO_HOLD_SUPPORTED", + "name": "SOC_RTCIO_HOLD_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RTCIO_WAKE_SUPPORTED", + "name": "SOC_RTCIO_WAKE_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_HD_BOTH_INOUT_SUPPORTED", + "name": "SOC_SPI_HD_BOTH_INOUT_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_AS_CS_SUPPORTED", + "name": "SOC_SPI_AS_CS_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_PERIPH_NUM", + "name": "SOC_SPI_PERIPH_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_DMA_CHAN_NUM", + "name": "SOC_SPI_DMA_CHAN_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MAX_CS_NUM", + "name": "SOC_SPI_MAX_CS_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SUPPORT_CLK_APB", + "name": "SOC_SPI_SUPPORT_CLK_APB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MAXIMUM_BUFFER_SIZE", + "name": "SOC_SPI_MAXIMUM_BUFFER_SIZE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MAX_PRE_DIVIDER", + "name": "SOC_SPI_MAX_PRE_DIVIDER", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED", + "name": "SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED", + "name": "SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED", + "name": "SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED", + "name": "SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LP_TIMER_BIT_WIDTH_LO", + "name": "SOC_LP_TIMER_BIT_WIDTH_LO", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LP_TIMER_BIT_WIDTH_HI", + "name": "SOC_LP_TIMER_BIT_WIDTH_HI", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_SENSOR_VERSION", + "name": "SOC_TOUCH_SENSOR_VERSION", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_MIN_CHAN_ID", + "name": "SOC_TOUCH_MIN_CHAN_ID", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_MAX_CHAN_ID", + "name": "SOC_TOUCH_MAX_CHAN_ID", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_SUPPORT_SLEEP_WAKEUP", + "name": "SOC_TOUCH_SUPPORT_SLEEP_WAKEUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_SAMPLE_CFG_NUM", + "name": "SOC_TOUCH_SAMPLE_CFG_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TWAI_CONTROLLER_NUM", + "name": "SOC_TWAI_CONTROLLER_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TWAI_MASK_FILTER_NUM", + "name": "SOC_TWAI_MASK_FILTER_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_NUM", + "name": "SOC_UART_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_HP_NUM", + "name": "SOC_UART_HP_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_SUPPORT_APB_CLK", + "name": "SOC_UART_SUPPORT_APB_CLK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_SUPPORT_REF_TICK", + "name": "SOC_UART_SUPPORT_REF_TICK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_FIFO_LEN", + "name": "SOC_UART_FIFO_LEN", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_BITRATE_MAX", + "name": "SOC_UART_BITRATE_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE", + "name": "SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPIRAM_SUPPORTED", + "name": "SOC_SPIRAM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE", + "name": "SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_PARALLEL_ENG", + "name": "SOC_SHA_SUPPORT_PARALLEL_ENG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_ENDIANNESS_BE", + "name": "SOC_SHA_ENDIANNESS_BE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_SHA1", + "name": "SOC_SHA_SUPPORT_SHA1", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_SHA256", + "name": "SOC_SHA_SUPPORT_SHA256", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_SHA384", + "name": "SOC_SHA_SUPPORT_SHA384", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_SHA512", + "name": "SOC_SHA_SUPPORT_SHA512", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MPI_MEM_BLOCKS_NUM", + "name": "SOC_MPI_MEM_BLOCKS_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MPI_OPERATIONS_NUM", + "name": "SOC_MPI_OPERATIONS_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RSA_MAX_BIT_LEN", + "name": "SOC_RSA_MAX_BIT_LEN", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_AES_SUPPORT_AES_128", + "name": "SOC_AES_SUPPORT_AES_128", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_AES_SUPPORT_AES_192", + "name": "SOC_AES_SUPPORT_AES_192", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_AES_SUPPORT_AES_256", + "name": "SOC_AES_SUPPORT_AES_256", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SECURE_BOOT_V1", + "name": "SOC_SECURE_BOOT_V1", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS", + "name": "SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX", + "name": "SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PHY_DIG_REGS_MEM_SIZE", + "name": "SOC_PHY_DIG_REGS_MEM_SIZE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_EXT0_WAKEUP", + "name": "SOC_PM_SUPPORT_EXT0_WAKEUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_EXT1_WAKEUP", + "name": "SOC_PM_SUPPORT_EXT1_WAKEUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_EXT_WAKEUP", + "name": "SOC_PM_SUPPORT_EXT_WAKEUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP", + "name": "SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_RTC_PERIPH_PD", + "name": "SOC_PM_SUPPORT_RTC_PERIPH_PD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_RTC_FAST_MEM_PD", + "name": "SOC_PM_SUPPORT_RTC_FAST_MEM_PD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_RTC_SLOW_MEM_PD", + "name": "SOC_PM_SUPPORT_RTC_SLOW_MEM_PD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_RC_FAST_PD", + "name": "SOC_PM_SUPPORT_RC_FAST_PD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_VDDSDIO_PD", + "name": "SOC_PM_SUPPORT_VDDSDIO_PD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_MODEM_PD", + "name": "SOC_PM_SUPPORT_MODEM_PD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CONFIGURABLE_VDDSDIO_SUPPORTED", + "name": "SOC_CONFIGURABLE_VDDSDIO_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_MODEM_PD_BY_SW", + "name": "SOC_PM_MODEM_PD_BY_SW", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CLK_APLL_SUPPORTED", + "name": "SOC_CLK_APLL_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CLK_RC_FAST_D256_SUPPORTED", + "name": "SOC_CLK_RC_FAST_D256_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256", + "name": "SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CLK_RC_FAST_SUPPORT_CALIBRATION", + "name": "SOC_CLK_RC_FAST_SUPPORT_CALIBRATION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CLK_XTAL32K_SUPPORTED", + "name": "SOC_CLK_XTAL32K_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CLK_LP_FAST_SUPPORT_XTAL_D4", + "name": "SOC_CLK_LP_FAST_SUPPORT_XTAL_D4", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SDMMC_USE_IOMUX", + "name": "SOC_SDMMC_USE_IOMUX", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SDMMC_NUM_SLOTS", + "name": "SOC_SDMMC_NUM_SLOTS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SDMMC_DATA_WIDTH_MAX", + "name": "SOC_SDMMC_DATA_WIDTH_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_WAPI_SUPPORT", + "name": "SOC_WIFI_WAPI_SUPPORT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_CSI_SUPPORT", + "name": "SOC_WIFI_CSI_SUPPORT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_MESH_SUPPORT", + "name": "SOC_WIFI_MESH_SUPPORT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW", + "name": "SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_NAN_SUPPORT", + "name": "SOC_WIFI_NAN_SUPPORT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BLE_SUPPORTED", + "name": "SOC_BLE_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BLE_MESH_SUPPORTED", + "name": "SOC_BLE_MESH_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BT_CLASSIC_SUPPORTED", + "name": "SOC_BT_CLASSIC_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BLE_DEVICE_PRIVACY_SUPPORTED", + "name": "SOC_BLE_DEVICE_PRIVACY_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BLUFI_SUPPORTED", + "name": "SOC_BLUFI_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BT_H2C_ENC_KEY_CTRL_ENH_VSC_SUPPORTED", + "name": "SOC_BT_H2C_ENC_KEY_CTRL_ENH_VSC_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BLE_MULTI_CONN_OPTIMIZATION", + "name": "SOC_BLE_MULTI_CONN_OPTIMIZATION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ULP_HAS_ADC", + "name": "SOC_ULP_HAS_ADC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PHY_COMBO_MODULE", + "name": "SOC_PHY_COMBO_MODULE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EMAC_RMII_CLK_OUT_INTERNAL_LOOPBACK", + "name": "SOC_EMAC_RMII_CLK_OUT_INTERNAL_LOOPBACK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_CMAKE", + "name": "IDF_CMAKE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "- This option is for internal use only.\n- Enabling this option will help enable all FPGA support so as to\n run ESP-IDF on an FPGA. This can help reproduce some issues that\n only happens on FPGA condition, or when you have to burn some\n efuses multiple times.", + "id": "IDF_ENV_FPGA", + "name": "IDF_ENV_FPGA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "- This option is ONLY used when doing new chip bringup.\n- This option will only enable necessary hw / sw settings for running\n a hello_world application.", + "id": "IDF_ENV_BRINGUP", + "name": "IDF_ENV_BRINGUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_CI_BUILD", + "name": "IDF_CI_BUILD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_DOC_BUILD", + "name": "IDF_DOC_BUILD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TOOLCHAIN", + "name": "IDF_TOOLCHAIN", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TOOLCHAIN_CLANG", + "name": "IDF_TOOLCHAIN_CLANG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TOOLCHAIN_GCC", + "name": "IDF_TOOLCHAIN_GCC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ARCH_RISCV", + "name": "IDF_TARGET_ARCH_RISCV", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ARCH_XTENSA", + "name": "IDF_TARGET_ARCH_XTENSA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ARCH", + "name": "IDF_TARGET_ARCH", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET", + "name": "IDF_TARGET", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_INIT_VERSION", + "name": "IDF_INIT_VERSION", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32", + "name": "IDF_TARGET_ESP32", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32S2", + "name": "IDF_TARGET_ESP32S2", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32S3", + "name": "IDF_TARGET_ESP32S3", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32C3", + "name": "IDF_TARGET_ESP32C3", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32C2", + "name": "IDF_TARGET_ESP32C2", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32C6", + "name": "IDF_TARGET_ESP32C6", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32C5", + "name": "IDF_TARGET_ESP32C5", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32P4", + "name": "IDF_TARGET_ESP32P4", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32H2", + "name": "IDF_TARGET_ESP32H2", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32C61", + "name": "IDF_TARGET_ESP32C61", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32H21", + "name": "IDF_TARGET_ESP32H21", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32H4", + "name": "IDF_TARGET_ESP32H4", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_LINUX", + "name": "IDF_TARGET_LINUX", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_FIRMWARE_CHIP_ID", + "name": "IDF_FIRMWARE_CHIP_ID", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "!IDF_TARGET_LINUX && ", + "help": null, + "id": "APP_BUILD_TYPE_APP_2NDBOOT", + "name": "APP_BUILD_TYPE_APP_2NDBOOT", + "range": null, + "title": "Default (binary application + 2nd stage bootloader)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "APP_BUILD_TYPE_RAM", + "name": "APP_BUILD_TYPE_RAM", + "range": null, + "title": "Build app runs entirely in RAM (EXPERIMENTAL)", + "type": "bool" + } + ], + "depends_on": null, + "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 to load the generated .bin file into ram and execute.\n\nExample:\n esptool --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_LIBC_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=", + "id": "build-type-application-build-type-C:-esp-v6.0-esp-idf-Kconfig-177", + "name": "APP_BUILD_TYPE", + "title": "Application build type", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "APP_BUILD_GENERATE_BINARIES", + "name": "APP_BUILD_GENERATE_BINARIES", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "APP_BUILD_BOOTLOADER", + "name": "APP_BUILD_BOOTLOADER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "APP_BUILD_TYPE_RAM", + "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.", + "id": "APP_BUILD_TYPE_PURE_RAM_APP", + "name": "APP_BUILD_TYPE_PURE_RAM_APP", + "range": null, + "title": "Build app without SPI_FLASH/PSRAM support (saves ram)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "APP_BUILD_USE_FLASH_SECTIONS", + "name": "APP_BUILD_USE_FLASH_SECTIONS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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)", + "id": "APP_REPRODUCIBLE_BUILD", + "name": "APP_REPRODUCIBLE_BUILD", + "range": null, + "title": "Enable reproducible build", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "APP_NO_BLOBS", + "name": "APP_NO_BLOBS", + "range": null, + "title": "No Binary Blobs", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32", + "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.", + "id": "APP_COMPATIBLE_PRE_V2_1_BOOTLOADERS", + "name": "APP_COMPATIBLE_PRE_V2_1_BOOTLOADERS", + "range": null, + "title": "App compatible with bootloaders before ESP-IDF v2.1", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32", + "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).", + "id": "APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS", + "name": "APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS", + "range": null, + "title": "App compatible with bootloader and partition table before ESP-IDF v3.1", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32", + "help": null, + "id": "APP_INIT_CLK", + "name": "APP_INIT_CLK", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "build-type-C:-esp-v6.0-esp-idf-Kconfig-175", + "title": "Build type", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "!APP_REPRODUCIBLE_BUILD", + "help": "If set, then the bootloader will be built with the current time/date stamp.\nIt is stored in the bootloader description\nstructure. If not set, time/date stamp will be excluded from bootloader image.\nThis can be useful for getting the\nsame binary image files made from the same source, but at different times.", + "id": "BOOTLOADER_COMPILE_TIME_DATE", + "name": "BOOTLOADER_COMPILE_TIME_DATE", + "range": null, + "title": "Use time/date stamp for bootloader", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Project version. It is placed in \"version\" field of the esp_bootloader_desc structure.\nThe type of this field is \"uint32_t\".", + "id": "BOOTLOADER_PROJECT_VER", + "name": "BOOTLOADER_PROJECT_VER", + "range": [ + 0, + 4294967295 + ], + "title": "Project version", + "type": "int" + } + ], + "depends_on": null, + "id": "bootloader-config-bootloader-manager-C:-esp-v6.0-esp-idf-components-bootloader-..-esp_bootloader_format-Kconfig.bootloader-1", + "title": "Bootloader manager", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_APP_ANTI_ROLLBACK", + "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).", + "id": "BOOTLOADER_APP_SECURE_VERSION", + "name": "BOOTLOADER_APP_SECURE_VERSION", + "range": null, + "title": "eFuse secure version of app", + "type": "int" + }, + { + "children": [], + "depends_on": "BOOTLOADER_APP_ANTI_ROLLBACK", + "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.", + "id": "BOOTLOADER_APP_SEC_VER_SIZE_EFUSE_FIELD", + "name": "BOOTLOADER_APP_SEC_VER_SIZE_EFUSE_FIELD", + "range": null, + "title": "Size of the efuse secure version field", + "type": "int" + }, + { + "children": [], + "depends_on": "BOOTLOADER_APP_ANTI_ROLLBACK", + "help": "This option allows to emulate read/write operations with all eFuses and efuse secure version.\nIt allows to test anti-rollback implementation 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.", + "id": "BOOTLOADER_EFUSE_SECURE_VERSION_EMULATE", + "name": "BOOTLOADER_EFUSE_SECURE_VERSION_EMULATE", + "range": null, + "title": "Emulate operations with efuse secure version(only test)", + "type": "bool" + } + ], + "depends_on": "BOOTLOADER_APP_ROLLBACK_ENABLE", + "help": "This option prevents rollback to previous firmware/application image with lower security version.", + "id": "BOOTLOADER_APP_ANTI_ROLLBACK", + "name": "BOOTLOADER_APP_ANTI_ROLLBACK", + "range": null, + "title": "Enable app anti-rollback support", + "type": "bool" + } + ], + "depends_on": null, + "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.", + "id": "BOOTLOADER_APP_ROLLBACK_ENABLE", + "name": "BOOTLOADER_APP_ROLLBACK_ENABLE", + "range": null, + "title": "Enable app rollback support", + "type": "bool" + } + ], + "depends_on": null, + "id": "bootloader-config-application-rollback-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.app_rollback-1", + "title": "Application Rollback", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_RECOVERY_ENABLE", + "help": "Flash address where the recovery bootloader is stored.\nThis value must be written to the eFuse field (ESP_EFUSE_RECOVERY_BOOTLOADER_FLASH_SECTOR)\nto activate the recovery bootloader in the ROM bootloader. The eFuse can be programmed\nusing espefuse or in the user application with the API esp_efuse_set_recovery_bootloader_offset().\nSetting this value in the config allows parttool.py to verify that it does not overlap with existing\npartitions in the partition table.\n\nThe address must be a multiple of the flash sector size (0x1000 bytes).\nThe eFuse field stores the offset in sectors.\nIf the feature is no longer needed or unused, you can burn the 0xFFF value to disable this feature in\nthe ROM bootloader.", + "id": "BOOTLOADER_RECOVERY_OFFSET", + "name": "BOOTLOADER_RECOVERY_OFFSET", + "range": null, + "title": "Recovery Bootloader Flash Offset", + "type": "hex" + }, + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_ANTI_ROLLBACK_ENABLE", + "help": "The secure version is the sequence number stored in the header of each bootloader.\n\nThe ROM Bootloader which runs the 2nd stage bootloader (PRIMARY or RECOVERY) checks that\nthe security version is greater or equal that recorded in the eFuse field.\nBootloaders that have a secure version in the image < secure version in efuse will not boot.\n\nThe security version is worth increasing if in previous versions there is\na significant vulnerability and their use is not acceptable.", + "id": "BOOTLOADER_SECURE_VERSION", + "name": "BOOTLOADER_SECURE_VERSION", + "range": null, + "title": "Secure version of bootloader", + "type": "int" + } + ], + "depends_on": "BOOTLOADER_RECOVERY_ENABLE", + "help": "This option prevents rollback to previous bootloader image with lower security version.", + "id": "BOOTLOADER_ANTI_ROLLBACK_ENABLE", + "name": "BOOTLOADER_ANTI_ROLLBACK_ENABLE", + "range": null, + "title": "Enable bootloader rollback support", + "type": "bool" + } + ], + "depends_on": "SOC_RECOVERY_BOOTLOADER_SUPPORTED", + "help": "The recovery bootloader feature is implemented in the ROM bootloader. It is required for safe OTA\nupdates of the bootloader. The feature is activated when the eFuse field\n(ESP_EFUSE_RECOVERY_BOOTLOADER_FLASH_SECTOR) is set, which defines the flash address of the\nrecovery bootloader. If activated and the primary bootloader fails to load, the ROM bootloader\nwill attempt to load the recovery bootloader from the address specified in eFuse.", + "id": "BOOTLOADER_RECOVERY_ENABLE", + "name": "BOOTLOADER_RECOVERY_ENABLE", + "range": null, + "title": "Enable Recovery Bootloader", + "type": "bool" + } + ], + "depends_on": null, + "id": "bootloader-config-recovery-bootloader-and-rollback-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.bootloader_rollback-1", + "title": "Recovery Bootloader and Rollback", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "BOOTLOADER_OFFSET_IN_FLASH", + "name": "BOOTLOADER_OFFSET_IN_FLASH", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_COMPILER_OPTIMIZATION_SIZE", + "name": "BOOTLOADER_COMPILER_OPTIMIZATION_SIZE", + "range": null, + "title": "Size (-Os with GCC, -Oz with Clang)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG", + "name": "BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG", + "range": null, + "title": "Debug (-Og)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_COMPILER_OPTIMIZATION_PERF", + "name": "BOOTLOADER_COMPILER_OPTIMIZATION_PERF", + "range": null, + "title": "Optimize for performance (-O2)", + "type": "bool" + } + ], + "depends_on": null, + "help": "This option sets compiler optimization level (gcc -O argument)\nfor the bootloader.\n\n- The default \"Size\" setting will add the -Os (-Oz with clang) 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\nNote that custom optimization levels may be unsupported.", + "id": "bootloader-config-bootloader-optimization-level-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.projbuild-18", + "name": "BOOTLOADER_COMPILER_OPTIMIZATION", + "title": "Bootloader optimization Level", + "type": "choice" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_VERSION_1", + "name": "BOOTLOADER_LOG_VERSION_1", + "range": null, + "title": "V1", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_VERSION_2", + "name": "BOOTLOADER_LOG_VERSION_2", + "range": null, + "title": "V2", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select the log version to be used by the ESP log component.\nThe app log version (CONFIG_LOG_VERSION) controls the version used in the bootloader,\npreventing the selection of different versions.\nFor description of V1 and V2 see CONFIG_LOG_VERSION.", + "id": "bootloader-config-log-log-version-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.log-3", + "name": "BOOTLOADER_LOG_VERSION", + "title": "Log version", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "This configuration sets the log version number based on the chosen log version.", + "id": "BOOTLOADER_LOG_VERSION", + "name": "BOOTLOADER_LOG_VERSION", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_NONE", + "name": "BOOTLOADER_LOG_LEVEL_NONE", + "range": null, + "title": "No output", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_ERROR", + "name": "BOOTLOADER_LOG_LEVEL_ERROR", + "range": null, + "title": "Error", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_WARN", + "name": "BOOTLOADER_LOG_LEVEL_WARN", + "range": null, + "title": "Warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_INFO", + "name": "BOOTLOADER_LOG_LEVEL_INFO", + "range": null, + "title": "Info", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_DEBUG", + "name": "BOOTLOADER_LOG_LEVEL_DEBUG", + "range": null, + "title": "Debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_VERBOSE", + "name": "BOOTLOADER_LOG_LEVEL_VERBOSE", + "range": null, + "title": "Verbose", + "type": "bool" + } + ], + "depends_on": null, + "help": "Specify how much output to see in bootloader logs.", + "id": "bootloader-config-log-bootloader-log-verbosity-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.log-24", + "name": "BOOTLOADER_LOG_LEVEL", + "title": "Bootloader log verbosity", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "BOOTLOADER_LOG_LEVEL", + "name": "BOOTLOADER_LOG_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Enable ANSI terminal color codes. Logs (info, errors, warnings) will contain color codes.\nIn order to view these, your terminal program must support ANSI color codes.", + "id": "BOOTLOADER_LOG_COLORS", + "name": "BOOTLOADER_LOG_COLORS", + "range": null, + "title": "Color", + "type": "bool" + }, + { + "children": [], + "depends_on": "BOOTLOADER_LOG_VERSION_2", + "help": "Enables support for color codes in the esp_log() function. If CONFIG_LOG_COLORS is enabled, this option\nis always active. If CONFIG_LOG_COLORS is disabled, this option allows you to still handle color codes\nin specific files by defining ESP_LOG_COLOR_DISABLED as 0 before including esp_log.h.\n\nNote that enabling this option may slightly increase RAM/FLASH usage due to additional color handling\nfunctionality. It provides flexibility to manage color output even when CONFIG_LOG_COLORS is turned off.", + "id": "BOOTLOADER_LOG_COLORS_SUPPORT", + "name": "BOOTLOADER_LOG_COLORS_SUPPORT", + "range": null, + "title": "Allow enabling color output at run time", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_LOG_VERSION_2 && ", + "help": null, + "id": "BOOTLOADER_LOG_TIMESTAMP_SOURCE_NONE", + "name": "BOOTLOADER_LOG_TIMESTAMP_SOURCE_NONE", + "range": null, + "title": "None", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS", + "name": "BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS", + "range": null, + "title": "Milliseconds Since Boot", + "type": "bool" + } + ], + "depends_on": null, + "help": "Choose what sort of timestamp is displayed in the log output:\n\n- \"None\" - The log will only contain the actual log messages themselves\n without any time-related information. Avoiding timestamps can help conserve\n processing power and memory. It might useful when you\n perform log analysis or debugging, sometimes it's more straightforward\n to work with logs that lack timestamps, especially if the time of occurrence\n is not critical for understanding the issues.\n \"I log_test: info message\"\n\n- \"Milliseconds since boot\" is calculated from the RTOS tick count multiplied\n by the tick period. This time will reset after a software reboot.\n \"I (112500) log_test: info message\"", + "id": "bootloader-config-log-format-timestamp-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.log.format-23", + "name": "BOOTLOADER_LOG_TIMESTAMP_SOURCE", + "title": "Timestamp", + "type": "choice" + }, + { + "children": [], + "depends_on": "BOOTLOADER_LOG_VERSION_2", + "help": "Enables support for timestamp in the esp_log() function.\nIf CONFIG_LOG_TIMESTAMP_SOURCE_NONE, this option allows you to still handle timestamp\nin specific files by defining ESP_LOG_TIMESTAMP_DISABLED as 0 before including esp_log.h.\n\nNote that enabling this option may slightly increase RAM/FLASH usage due to additional timestamp handling\nfunctionality. It provides flexibility to manage timestamp output even when\nCONFIG_LOG_TIMESTAMP_SOURCE_NONE.", + "id": "BOOTLOADER_LOG_TIMESTAMP_SUPPORT", + "name": "BOOTLOADER_LOG_TIMESTAMP_SUPPORT", + "range": null, + "title": "Allow enabling timestamp output at run time", + "type": "bool" + } + ], + "depends_on": null, + "id": "bootloader-config-log-format-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.log.format-1", + "title": "Format", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "BOOTLOADER_LOG_MODE_TEXT_EN", + "name": "BOOTLOADER_LOG_MODE_TEXT_EN", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "BOOTLOADER_LOG_MODE_BINARY_EN", + "name": "BOOTLOADER_LOG_MODE_BINARY_EN", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Enables text-based logging, where log messages are stored in a human-readable format.\nThis mode is useful for development and debugging, as it allows logs to be easily\nread and interpreted without additional processing.", + "id": "BOOTLOADER_LOG_MODE_TEXT", + "name": "BOOTLOADER_LOG_MODE_TEXT", + "range": null, + "title": "Text Log Mode", + "type": "bool" + }, + { + "children": [], + "depends_on": "BOOTLOADER_LOG_VERSION_2 && ", + "help": "Enables binary logging with host-side format string expansion. In this mode, the\nformat argument of ESP_LOGx, ESP_EARLY_LOG, and ESP_DRAM_LOG macros is stored in a\nNOLOAD section, not included in the final binary file. This reduces flash usage by\napproximately 10% - 35%. The esp_log() function uses the binary log handler to output\nmessages. Instead of sending the full log string, the chip transmits only the\naddresses of these strings (if present in the ELF file). If the format string\ncannot be found in the ELF file, the chip sends the entire string. The host-side\nmonitor tool, which has access to the ELF file, reconstructs the log message using\nthe format string.\nThis reduces firmware size by eliminating format strings from\nflash memory and removing the usage of printf-like functions, potentially freeing up\na few kilobytes of space. To further reduce firmware size, wrap string data with ESP_LOG_ATTR_STR.", + "id": "BOOTLOADER_LOG_MODE_BINARY", + "name": "BOOTLOADER_LOG_MODE_BINARY", + "range": null, + "title": "Binary Log Mode", + "type": "bool" + } + ], + "depends_on": null, + "help": null, + "id": "bootloader-config-log-settings-log-mode-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.log.settings-9", + "name": "BOOTLOADER_LOG_MODE", + "title": "Log Mode", + "type": "choice" + } + ], + "depends_on": null, + "id": "bootloader-config-log-settings-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.log.settings-1", + "title": "Settings", + "type": "menu" + } + ], + "depends_on": null, + "id": "bootloader-config-log-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.log-1", + "title": "Log", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": "The CPU clock frequency to be at least raised to in 2nd bootloader. Invisible for users.", + "id": "BOOTLOADER_CPU_CLK_FREQ_MHZ", + "name": "BOOTLOADER_CPU_CLK_FREQ_MHZ", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "IDF_TARGET_ESP32 && (ESPTOOLPY_FLASHMODE_QIO || ESPTOOLPY_FLASHMODE_QOUT)", + "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.", + "id": "BOOTLOADER_SPI_CUSTOM_WP_PIN", + "name": "BOOTLOADER_SPI_CUSTOM_WP_PIN", + "range": null, + "title": "Use custom SPI Flash WP Pin when flash pins set in eFuse (read help)", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32 && (ESPTOOLPY_FLASHMODE_QIO || ESPTOOLPY_FLASHMODE_QOUT)", + "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.", + "id": "BOOTLOADER_SPI_WP_PIN", + "name": "BOOTLOADER_SPI_WP_PIN", + "range": null, + "title": "Custom SPI Flash WP Pin", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "This will force 2nd bootloader to be loaded by DOUT mode, and will restore Dummy Cycle setting by\nresetting the Flash", + "id": "BOOTLOADER_FLASH_DC_AWARE", + "name": "BOOTLOADER_FLASH_DC_AWARE", + "range": null, + "title": "Allow app adjust Dummy Cycle bits in SPI Flash for higher frequency (READ HELP FIRST)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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\ncomment \"Features below require specific hardware (READ DOCS FIRST!)\"", + "id": "BOOTLOADER_FLASH_XMC_SUPPORT", + "name": "BOOTLOADER_FLASH_XMC_SUPPORT", + "range": null, + "title": "Enable the support for flash chips of XMC (READ DOCS FIRST)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This is a helper config for 32bits address flash. Invisible for users.", + "id": "BOOTLOADER_FLASH_32BIT_ADDR", + "name": "BOOTLOADER_FLASH_32BIT_ADDR", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This is a helper config for 32bits address flash. Invisible for users.", + "id": "BOOTLOADER_FLASH_NEEDS_32BIT_FEAT", + "name": "BOOTLOADER_FLASH_NEEDS_32BIT_FEAT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This is a helper config for 32bits address quad flash. Invisible for users.", + "id": "BOOTLOADER_FLASH_NEEDS_32BIT_ADDR_QUAD_FLASH", + "name": "BOOTLOADER_FLASH_NEEDS_32BIT_ADDR_QUAD_FLASH", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "BOOTLOADER_FLASH_NEEDS_32BIT_ADDR_QUAD_FLASH && IDF_EXPERIMENTAL_FEATURES", + "help": "Enabling this option allows the CPU to access 32-bit-address flash beyond 16M range.\n1. This option only valid for 4-line flash. Octal flash doesn't need this.\n2. This option is experimental, which means it can\u2019t use on all flash chips stable, for more\ninformation, please contact Espressif Business support.", + "id": "BOOTLOADER_CACHE_32BIT_ADDR_QUAD_FLASH", + "name": "BOOTLOADER_CACHE_32BIT_ADDR_QUAD_FLASH", + "range": null, + "title": "Enable cache access to 32-bit-address (over 16MB) range of SPI Flash (READ DOCS FIRST)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "BOOTLOADER_CACHE_32BIT_ADDR_OCTAL_FLASH", + "name": "BOOTLOADER_CACHE_32BIT_ADDR_OCTAL_FLASH", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "bootloader-config-serial-flash-configurations-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.projbuild-52", + "title": "Serial Flash Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "!ESPTOOLPY_FLASHFREQ_80M && ", + "help": null, + "id": "BOOTLOADER_VDDSDIO_BOOST_1_8V", + "name": "BOOTLOADER_VDDSDIO_BOOST_1_8V", + "range": null, + "title": "1.8V", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_VDDSDIO_BOOST_1_9V", + "name": "BOOTLOADER_VDDSDIO_BOOST_1_9V", + "range": null, + "title": "1.9V", + "type": "bool" + } + ], + "depends_on": "SOC_CONFIGURABLE_VDDSDIO_SUPPORTED", + "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.", + "id": "bootloader-config-vddsdio-ldo-voltage-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.projbuild-135", + "name": "BOOTLOADER_VDDSDIO_BOOST", + "title": "VDDSDIO LDO voltage", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_FACTORY_RESET", + "help": "The selected GPIO will be configured as an input with internal pull-up enabled. To trigger a factory\nreset, this GPIO must be held high or low (as configured) on startup.\n\nNote that on some SoCs not all pins have an internal pull-up and certain pins are already\nused by ROM bootloader as bootstrapping. Refer to the technical reference manual for further\ndetails on the selected SoC.", + "id": "BOOTLOADER_NUM_PIN_FACTORY_RESET", + "name": "BOOTLOADER_NUM_PIN_FACTORY_RESET", + "range": null, + "title": "Number of the GPIO input for factory reset", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_FACTORY_RESET_PIN_LOW", + "name": "BOOTLOADER_FACTORY_RESET_PIN_LOW", + "range": null, + "title": "Reset on GPIO low", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_FACTORY_RESET_PIN_HIGH", + "name": "BOOTLOADER_FACTORY_RESET_PIN_HIGH", + "range": null, + "title": "Reset on GPIO high", + "type": "bool" + } + ], + "depends_on": "BOOTLOADER_FACTORY_RESET", + "help": "Pin level for factory reset, can be triggered on low or high.", + "id": "bootloader-config-gpio-triggers-factory-reset-factory-reset-gpio-level-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.projbuild-187", + "name": "BOOTLOADER_FACTORY_RESET_PIN_LEVEL", + "title": "Factory reset GPIO level", + "type": "choice" + }, + { + "children": [], + "depends_on": "BOOTLOADER_FACTORY_RESET", + "help": "The device will boot from \"factory\" partition (or OTA slot 0 if no factory partition is present) after a\nfactory reset.", + "id": "BOOTLOADER_OTA_DATA_ERASE", + "name": "BOOTLOADER_OTA_DATA_ERASE", + "range": null, + "title": "Clear OTA data on factory reset (select factory partition)", + "type": "bool" + }, + { + "children": [], + "depends_on": "BOOTLOADER_FACTORY_RESET", + "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.", + "id": "BOOTLOADER_DATA_FACTORY_RESET", + "name": "BOOTLOADER_DATA_FACTORY_RESET", + "range": null, + "title": "Comma-separated names of partitions to clear on factory reset", + "type": "string" + } + ], + "depends_on": null, + "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.", + "id": "BOOTLOADER_FACTORY_RESET", + "name": "BOOTLOADER_FACTORY_RESET", + "range": null, + "title": "GPIO triggers factory reset", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_APP_TEST", + "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]).\n\nNote that on some SoCs not all pins have an internal pull-up and certain pins are already\nused by ROM bootloader as bootstrapping. Refer to the technical reference manual for further\ndetails on the selected SoC.", + "id": "BOOTLOADER_NUM_PIN_APP_TEST", + "name": "BOOTLOADER_NUM_PIN_APP_TEST", + "range": null, + "title": "Number of the GPIO input to boot TEST partition", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_APP_TEST_PIN_LOW", + "name": "BOOTLOADER_APP_TEST_PIN_LOW", + "range": null, + "title": "Enter test app on GPIO low", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_APP_TEST_PIN_HIGH", + "name": "BOOTLOADER_APP_TEST_PIN_HIGH", + "range": null, + "title": "Enter test app on GPIO high", + "type": "bool" + } + ], + "depends_on": "BOOTLOADER_APP_TEST", + "help": "Pin level for app test, can be triggered on low or high.", + "id": "bootloader-config-gpio-triggers-boot-from-test-app-partition-app-test-gpio-level-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.projbuild-252", + "name": "BOOTLOADER_APP_TEST_PIN_LEVEL", + "title": "App test GPIO level", + "type": "choice" + } + ], + "depends_on": "!BOOTLOADER_APP_ANTI_ROLLBACK", + "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.", + "id": "BOOTLOADER_APP_TEST", + "name": "BOOTLOADER_APP_TEST", + "range": null, + "title": "GPIO triggers boot from test app partition", + "type": "bool" + }, + { + "children": [], + "depends_on": "BOOTLOADER_FACTORY_RESET || BOOTLOADER_APP_TEST", + "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.", + "id": "BOOTLOADER_HOLD_TIME_GPIO", + "name": "BOOTLOADER_HOLD_TIME_GPIO", + "range": null, + "title": "Hold time of GPIO for reset/test mode (seconds)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "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.\nNOTE: Disabling this config on some targets (ESP32-C6, ESP32-H2, ESP32-C5) would not generate\nan exception when reading from or writing to 0x0.", + "id": "BOOTLOADER_REGION_PROTECTION_ENABLE", + "name": "BOOTLOADER_REGION_PROTECTION_ENABLE", + "range": null, + "title": "Enable protection for unmapped memory regions", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_WDT_ENABLE", + "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 wdt_hal_feed() for resetting counter of RTC_WDT.\nFor esp32/s2 you can also use rtc_wdt_feed().\n\nUse function wdt_hal_disable() for disabling RTC_WDT.\nFor esp32/s2 you can also use rtc_wdt_disable().", + "id": "BOOTLOADER_WDT_DISABLE_IN_USER_CODE", + "name": "BOOTLOADER_WDT_DISABLE_IN_USER_CODE", + "range": null, + "title": "Allows RTC watchdog disable in user code", + "type": "bool" + }, + { + "children": [], + "depends_on": "BOOTLOADER_WDT_ENABLE", + "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.", + "id": "BOOTLOADER_WDT_TIME_MS", + "name": "BOOTLOADER_WDT_TIME_MS", + "range": [ + 0, + 120000 + ], + "title": "Timeout for RTC watchdog (ms)", + "type": "int" + } + ], + "depends_on": null, + "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).", + "id": "BOOTLOADER_WDT_ENABLE", + "name": "BOOTLOADER_WDT_ENABLE", + "range": null, + "title": "Use RTC watchdog in start code", + "type": "bool" + }, + { + "children": [], + "depends_on": "(SECURE_BOOT && SECURE_BOOT_INSECURE) || !SECURE_BOOT", + "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.", + "id": "BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP", + "name": "BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP", + "range": null, + "title": "Skip image validation when exiting deep sleep", + "type": "bool" + }, + { + "children": [], + "depends_on": "!SECURE_SIGNED_ON_BOOT", + "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.", + "id": "BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON", + "name": "BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON", + "range": null, + "title": "Skip image validation from power on reset (READ HELP FIRST)", + "type": "bool" + }, + { + "children": [], + "depends_on": "!SECURE_SIGNED_ON_BOOT", + "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.", + "id": "BOOTLOADER_SKIP_VALIDATE_ALWAYS", + "name": "BOOTLOADER_SKIP_VALIDATE_ALWAYS", + "range": null, + "title": "Skip image validation always (READ HELP FIRST)", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_RTC_FAST_MEM_SUPPORTED", + "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.", + "id": "BOOTLOADER_RESERVE_RTC_SIZE", + "name": "BOOTLOADER_RESERVE_RTC_SIZE", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_CUSTOM_RESERVE_RTC", + "help": "This option allows the customer to use the legacy bootloader behavior when the\nRTC FAST memory CRC calculation takes place. When this option is enabled, the\nallocated user custom data will be taken into account in the CRC calculation.\nThis means that any change to the custom data would need a CRC update to prevent\nthe bootloader from marking this data as corrupted.\nIf this option is disabled, the custom data will not be taken into account when\ncalculating the RTC FAST memory CRC. The user custom data can be changed freely,\nwithout the need to update the CRC.\nTHIS OPTION MUST BE THE SAME FOR BOTH THE BOOTLOADER AND THE APPLICATION BUILDS.", + "id": "BOOTLOADER_CUSTOM_RESERVE_RTC_IN_CRC", + "name": "BOOTLOADER_CUSTOM_RESERVE_RTC_IN_CRC", + "range": null, + "title": "Include custom memory in the CRC calculation", + "type": "bool" + }, + { + "children": [], + "depends_on": "BOOTLOADER_CUSTOM_RESERVE_RTC", + "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.", + "id": "BOOTLOADER_CUSTOM_RESERVE_RTC_SIZE", + "name": "BOOTLOADER_CUSTOM_RESERVE_RTC_SIZE", + "range": null, + "title": "Size in bytes for custom purposes", + "type": "hex" + } + ], + "depends_on": "SOC_RTC_FAST_MEM_SUPPORTED", + "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 bootloader must be compiled with the same option).\nThe RTC FAST memory has access only through PRO_CPU.", + "id": "BOOTLOADER_CUSTOM_RESERVE_RTC", + "name": "BOOTLOADER_CUSTOM_RESERVE_RTC", + "range": null, + "title": "Reserve RTC FAST memory for custom purposes", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_RTC_FAST_MEM_SUPPORTED", + "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\"", + "id": "BOOTLOADER_RESERVE_RTC_MEM", + "name": "BOOTLOADER_RESERVE_RTC_MEM", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "bootloader-config-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.projbuild-1", + "title": "Bootloader config", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SECURE_BOOT || SECURE_SIGNED_ON_BOOT_NO_SECURE_BOOT", + "help": null, + "id": "SECURE_SIGNED_ON_BOOT", + "name": "SECURE_SIGNED_ON_BOOT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT || SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT", + "help": null, + "id": "SECURE_SIGNED_ON_UPDATE", + "name": "SECURE_SIGNED_ON_UPDATE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_SIGNED_ON_BOOT || SECURE_SIGNED_ON_UPDATE", + "help": null, + "id": "SECURE_SIGNED_APPS", + "name": "SECURE_SIGNED_APPS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "(IDF_TARGET_ESP32 && ESP32_REV_MIN_FULL >= 300) || SOC_SECURE_BOOT_V2_RSA", + "help": null, + "id": "SECURE_BOOT_V2_RSA_SUPPORTED", + "name": "SECURE_BOOT_V2_RSA_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_SECURE_BOOT_V2_ECC", + "help": null, + "id": "SECURE_BOOT_V2_ECC_SUPPORTED", + "name": "SECURE_BOOT_V2_ECC_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_SECURE_BOOT_V1", + "help": null, + "id": "SECURE_BOOT_V1_SUPPORTED", + "name": "SECURE_BOOT_V1_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP32_REV_MIN_FULL >= 300", + "help": null, + "id": "SECURE_BOOT_V2_PREFERRED", + "name": "SECURE_BOOT_V2_PREFERRED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SECURE_BOOT_V2_ECDSA_ENABLED", + "name": "SECURE_BOOT_V2_ECDSA_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SECURE_BOOT_V2_RSA_ENABLED", + "name": "SECURE_BOOT_V2_RSA_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SECURE_BOOT_FLASH_ENC_KEYS_BURN_TOGETHER", + "name": "SECURE_BOOT_FLASH_ENC_KEYS_BURN_TOGETHER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!SECURE_BOOT", + "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.", + "id": "SECURE_SIGNED_APPS_NO_SECURE_BOOT", + "name": "SECURE_SIGNED_APPS_NO_SECURE_BOOT", + "range": null, + "title": "Require signed app images", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "SECURE_BOOT_V1_SUPPORTED && (SECURE_SIGNED_APPS_NO_SECURE_BOOT || SECURE_BOOT_V1_ENABLED) && ", + "help": "Embeds the ECDSA public key in the bootloader and signs the application with an ECDSA key.\nRefer to the documentation before enabling.", + "id": "SECURE_SIGNED_APPS_ECDSA_SCHEME", + "name": "SECURE_SIGNED_APPS_ECDSA_SCHEME", + "range": null, + "title": "ECDSA", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT_V2_RSA_SUPPORTED && (SECURE_SIGNED_APPS_NO_SECURE_BOOT || SECURE_BOOT_V2_ENABLED) && !(IDF_TARGET_ESP32C5 && ESP32C5_REV_MIN_FULL < 1) && ", + "help": "Appends the RSA-3072 based Signature block to the application.\nRefer to before enabling.", + "id": "SECURE_SIGNED_APPS_RSA_SCHEME", + "name": "SECURE_SIGNED_APPS_RSA_SCHEME", + "range": null, + "title": "RSA", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT_V2_ECC_SUPPORTED && (SECURE_SIGNED_APPS_NO_SECURE_BOOT || SECURE_BOOT_V2_ENABLED) && ", + "help": "For Secure boot V2 (e.g., ESP32-C2 SoC), appends ECDSA based signature block to the application.\nRefer to documentation before enabling.", + "id": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME", + "name": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME", + "range": null, + "title": "ECDSA (V2)", + "type": "bool" + } + ], + "depends_on": "SECURE_BOOT || SECURE_SIGNED_APPS_NO_SECURE_BOOT", + "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.", + "id": "security-features-app-signing-scheme-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.projbuild-515", + "name": "SECURE_SIGNED_APPS_SCHEME", + "title": "App Signing Scheme", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME && ", + "help": null, + "id": "SECURE_BOOT_ECDSA_KEY_LEN_192_BITS", + "name": "SECURE_BOOT_ECDSA_KEY_LEN_192_BITS", + "range": null, + "title": "Using ECC curve NISTP192", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME && ", + "help": null, + "id": "SECURE_BOOT_ECDSA_KEY_LEN_256_BITS", + "name": "SECURE_BOOT_ECDSA_KEY_LEN_256_BITS", + "range": null, + "title": "Using ECC curve NISTP256 (Recommended)", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME && SOC_ECDSA_SUPPORT_CURVE_P384 && ", + "help": null, + "id": "SECURE_BOOT_ECDSA_KEY_LEN_384_BITS", + "name": "SECURE_BOOT_ECDSA_KEY_LEN_384_BITS", + "range": null, + "title": "Using ECC curve NISTP384 (Recommended)", + "type": "bool" + } + ], + "depends_on": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME", + "help": "Select the ECDSA key size. Three key sizes are supported depending upon on the target:\n\n- 192 bit key using NISTP192 curve\n- 256 bit key using NISTP256 curve (Recommended)\n- 384 bit key using NISTP384 curve (Recommended)\n\nThe advantage of using 384 and 256 bit keys 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.", + "id": "security-features-ecdsa-key-size-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.projbuild-558", + "name": "SECURE_BOOT_ECDSA_KEY_LEN_SIZE", + "title": "ECDSA key size", + "type": "choice" + }, + { + "children": [], + "depends_on": "SECURE_SIGNED_APPS_NO_SECURE_BOOT && SECURE_SIGNED_APPS_ECDSA_SCHEME", + "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.", + "id": "SECURE_SIGNED_ON_BOOT_NO_SECURE_BOOT", + "name": "SECURE_SIGNED_ON_BOOT_NO_SECURE_BOOT", + "range": null, + "title": "Bootloader verifies app signatures", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_SIGNED_APPS_NO_SECURE_BOOT", + "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.", + "id": "SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT", + "name": "SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT", + "range": null, + "title": "Verify app signature on update", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "SECURE_BOOT_V1_SUPPORTED && ", + "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.", + "id": "SECURE_BOOT_V1_ENABLED", + "name": "SECURE_BOOT_V1_ENABLED", + "range": null, + "title": "Enable Secure Boot version 1", + "type": "bool" + }, + { + "children": [], + "depends_on": "(SECURE_BOOT_V2_RSA_SUPPORTED || SECURE_BOOT_V2_ECC_SUPPORTED) && ", + "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.", + "id": "SECURE_BOOT_V2_ENABLED", + "name": "SECURE_BOOT_V2_ENABLED", + "range": null, + "title": "Enable Secure Boot version 2", + "type": "bool" + } + ], + "depends_on": "SECURE_BOOT", + "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.", + "id": "security-features-enable-hardware-secure-boot-in-bootloader-read-docs-first--select-secure-boot-version-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.projbuild-628", + "name": "SECURE_BOOT_VERSION", + "title": "Select secure boot version", + "type": "choice" + } + ], + "depends_on": "SOC_SECURE_BOOT_SUPPORTED && !(IDF_TARGET_ESP32C3 && ESP32C3_REV_MIN_FULL < 3)", + "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.", + "id": "SECURE_BOOT", + "name": "SECURE_BOOT", + "range": null, + "title": "Enable hardware Secure Boot in bootloader (READ DOCS FIRST)", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "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.", + "id": "SECURE_BOOTLOADER_ONE_TIME_FLASH", + "name": "SECURE_BOOTLOADER_ONE_TIME_FLASH", + "range": null, + "title": "One-time flash", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "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.", + "id": "SECURE_BOOTLOADER_REFLASHABLE", + "name": "SECURE_BOOTLOADER_REFLASHABLE", + "range": null, + "title": "Reflashable", + "type": "bool" + } + ], + "depends_on": "SECURE_BOOT_V1_ENABLED", + "help": null, + "id": "security-features-secure-bootloader-mode-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.projbuild-661", + "name": "SECURE_BOOTLOADER_MODE", + "title": "Secure bootloader mode", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "SECURE_BOOT_BUILD_SIGNED_BINARIES", + "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 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.", + "id": "SECURE_BOOT_SIGNING_KEY", + "name": "SECURE_BOOT_SIGNING_KEY", + "range": null, + "title": "Secure boot private signing key", + "type": "string" + } + ], + "depends_on": "SECURE_SIGNED_APPS", + "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.\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.)", + "id": "SECURE_BOOT_BUILD_SIGNED_BINARIES", + "name": "SECURE_BOOT_BUILD_SIGNED_BINARIES", + "range": null, + "title": "Sign binaries during build", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_SIGNED_APPS && SECURE_SIGNED_APPS_ECDSA_SCHEME && !SECURE_BOOT_BUILD_SIGNED_BINARIES", + "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\nextract-public-key command.\n\nRefer to the Secure Boot section of the ESP-IDF Programmer's Guide for this version before enabling.", + "id": "SECURE_BOOT_VERIFICATION_KEY", + "name": "SECURE_BOOT_VERIFICATION_KEY", + "range": null, + "title": "Secure boot public signature verification key", + "type": "string" + }, + { + "children": [], + "depends_on": "SECURE_BOOT && SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY", + "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.", + "id": "SECURE_BOOT_ENABLE_AGGRESSIVE_KEY_REVOKE", + "name": "SECURE_BOOT_ENABLE_AGGRESSIVE_KEY_REVOKE", + "range": null, + "title": "Enable Aggressive key revoke strategy", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT_V2_ENABLED", + "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 secure boot public key digest,\ncausing an immediate denial of service and possibly allowing an additional fault injection attack to\nbypass the signature protection.\n\nThe option must be set when you need to program any read-protected key type into the efuses,\ne.g., HMAC, ECDSA etc. after secure boot has already been enabled on the device.\nPlease refer to secure boot V2 documentation guide for more details.\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 utility.\nHowever, efuse can be read/written from the application\n\nPlease refer to the Secure Boot V2 documentation guide for more information.", + "id": "SECURE_BOOT_V2_ALLOW_EFUSE_RD_DIS", + "name": "SECURE_BOOT_V2_ALLOW_EFUSE_RD_DIS", + "range": null, + "title": "Do not disable the ability to further read protect eFuses", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT_V2_ENABLED", + "help": "When Secure Boot V2 is enabled, by default the bootloader is not flashed along with other artifacts\nlike the application and the partition table images, i.e. bootloader has to be separately flashed\nusing the command `idf.py bootloader flash`, whereas, the application and partition table can be flashed\nusing the command `idf.py flash` itself.\nEnabling this option allows flashing the bootloader along with the other artifacts\nby invocation of the command `idf.py flash`.\n\nIf this option is enabled make sure that even the bootloader is signed using the correct secure boot key,\notherwise the bootloader signature verification would fail, as hash of the public key which is present in\nthe bootloader signature would not match with the digest stored into the efuses\nand thus the device will not be able to boot up.", + "id": "SECURE_BOOT_FLASH_BOOTLOADER_DEFAULT", + "name": "SECURE_BOOT_FLASH_BOOTLOADER_DEFAULT", + "range": null, + "title": "Flash bootloader along with other artifacts when using the default flash command", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SECURE_BOOTLOADER_KEY_ENCODING_256BIT", + "name": "SECURE_BOOTLOADER_KEY_ENCODING_256BIT", + "range": null, + "title": "No encoding (256 bit key)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SECURE_BOOTLOADER_KEY_ENCODING_192BIT", + "name": "SECURE_BOOTLOADER_KEY_ENCODING_192BIT", + "range": null, + "title": "3/4 encoding (192 bit key)", + "type": "bool" + } + ], + "depends_on": "SECURE_BOOTLOADER_REFLASHABLE", + "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.\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.", + "id": "security-features-hardware-key-encoding-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.projbuild-794", + "name": "SECURE_BOOTLOADER_KEY_ENCODING", + "title": "Hardware Key Encoding", + "type": "choice" + }, + { + "children": [], + "depends_on": "SECURE_BOOT", + "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.", + "id": "SECURE_BOOT_INSECURE", + "name": "SECURE_BOOT_INSECURE", + "range": null, + "title": "Allow potentially insecure options", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Use a key that is stored in the eFuses key blocks.", + "id": "SECURE_FLASH_ENCRYPTION_KEY_SOURCE_EFUSES", + "name": "SECURE_FLASH_ENCRYPTION_KEY_SOURCE_EFUSES", + "range": null, + "title": "eFuse Key Block", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_KEY_MANAGER_SUPPORTED && SOC_KEY_MANAGER_FE_KEY_DEPLOY && !(IDF_TARGET_ESP32P4 && ESP32P4_SELECTS_REV_LESS_V3) && ", + "help": "Use a key that is deployed using the Key Manager", + "id": "SECURE_FLASH_ENCRYPTION_KEY_SOURCE_KEY_MGR", + "name": "SECURE_FLASH_ENCRYPTION_KEY_SOURCE_KEY_MGR", + "range": null, + "title": "Key Manager", + "type": "bool" + } + ], + "depends_on": "SECURE_FLASH_ENC_ENABLED", + "help": "Specify the key source for the Flash Encryption Key", + "id": "security-features-enable-flash-encryption-on-boot-read-docs-first--flash-encryption-key-source-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.projbuild-842", + "name": "SECURE_FLASH_ENCRYPTION_KEY_SOURCE", + "title": "Flash Encryption Key Source", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_FLASH_ENCRYPTION_XTS_AES_128_DERIVED && ", + "help": null, + "id": "SECURE_FLASH_ENCRYPTION_AES128_DERIVED", + "name": "SECURE_FLASH_ENCRYPTION_AES128_DERIVED", + "range": null, + "title": "AES-128 key derived from 128 bits (SHA256(128 bits))", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_FLASH_ENCRYPTION_XTS_AES_128 && ((SECURE_FLASH_ENCRYPTION_KEY_SOURCE_EFUSES && SOC_EFUSE_XTS_AES_KEY_128) || (SECURE_FLASH_ENCRYPTION_KEY_SOURCE_KEY_MGR && SOC_KEY_MANAGER_FE_KEY_DEPLOY_XTS_AES_128)) && !(IDF_TARGET_ESP32C2 && SECURE_BOOT) && ", + "help": null, + "id": "SECURE_FLASH_ENCRYPTION_AES128", + "name": "SECURE_FLASH_ENCRYPTION_AES128", + "range": null, + "title": "AES-128 (256-bit key)", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_FLASH_ENCRYPTION_XTS_AES_256 && ((SECURE_FLASH_ENCRYPTION_KEY_SOURCE_EFUSES && SOC_EFUSE_XTS_AES_KEY_256) || (SECURE_FLASH_ENCRYPTION_KEY_SOURCE_KEY_MGR && SOC_KEY_MANAGER_FE_KEY_DEPLOY_XTS_AES_256)) && ", + "help": null, + "id": "SECURE_FLASH_ENCRYPTION_AES256", + "name": "SECURE_FLASH_ENCRYPTION_AES256", + "range": null, + "title": "AES-256 (512-bit key)", + "type": "bool" + } + ], + "depends_on": "SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS && SECURE_FLASH_ENC_ENABLED", + "help": "Size of generated XTS-AES 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.", + "id": "security-features-enable-flash-encryption-on-boot-read-docs-first--size-of-generated-xts-aes-key-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.projbuild-862", + "name": "SECURE_FLASH_ENCRYPTION_KEYSIZE", + "title": "Size of generated XTS-AES key", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", + "name": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", + "range": null, + "title": "Development (NOT SECURE)", + "type": "bool" + }, + { + "children": [], + "depends_on": "(!EFUSE_VIRTUAL || IDF_CI_BUILD) && ", + "help": null, + "id": "SECURE_FLASH_ENCRYPTION_MODE_RELEASE", + "name": "SECURE_FLASH_ENCRYPTION_MODE_RELEASE", + "range": null, + "title": "Release", + "type": "bool" + } + ], + "depends_on": "SECURE_FLASH_ENC_ENABLED", + "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.", + "id": "security-features-enable-flash-encryption-on-boot-read-docs-first--enable-usage-mode-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.projbuild-895", + "name": "SECURE_FLASH_ENCRYPTION_MODE", + "title": "Enable usage mode", + "type": "choice" + } + ], + "depends_on": null, + "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.", + "id": "SECURE_FLASH_ENC_ENABLED", + "name": "SECURE_FLASH_ENC_ENABLED", + "range": null, + "title": "Enable flash encryption on boot (READ DOCS FIRST)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SECURE_FLASH_HAS_WRITE_PROTECTION_CACHE", + "name": "SECURE_FLASH_HAS_WRITE_PROTECTION_CACHE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "(SECURE_BOOT_INSECURE || SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT) && IDF_TARGET_ESP32", + "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.", + "id": "SECURE_BOOT_ALLOW_ROM_BASIC", + "name": "SECURE_BOOT_ALLOW_ROM_BASIC", + "range": null, + "title": "Leave ROM BASIC Interpreter available on reset", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT_INSECURE || SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", + "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.", + "id": "SECURE_BOOT_ALLOW_JTAG", + "name": "SECURE_BOOT_ALLOW_JTAG", + "range": null, + "title": "Allow JTAG Debugging", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT_INSECURE || SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT", + "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.", + "id": "SECURE_BOOT_ALLOW_SHORT_APP_PARTITION", + "name": "SECURE_BOOT_ALLOW_SHORT_APP_PARTITION", + "range": null, + "title": "Allow app partition length not 64KB aligned", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT_INSECURE && SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS", + "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\nNote that if you plan to enable secure boot during the first boot up, the bootloader will intentionally\nrevoke the unused digest slots while enabling secure boot, even if the above config is enabled because\nkeeping the unused key slots un-revoked would a security hazard.\nIn case for any development workflow if you need to avoid this revocation, you should enable\nsecure boot externally (host based mechanism) rather than enabling it during the boot up,\nso that the bootloader would not need to enable secure boot and thus you could avoid its revocation\nstrategy.", + "id": "SECURE_BOOT_ALLOW_UNUSED_DIGEST_SLOTS", + "name": "SECURE_BOOT_ALLOW_UNUSED_DIGEST_SLOTS", + "range": null, + "title": "Leave unused digest slots available (not revoke)", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_ECDSA_SUPPORT_CURVE_P384 && SOC_FLASH_ENCRYPTION_XTS_AES_SUPPORT_PSEUDO_ROUND", + "help": "If not set (default, recommended), on the first boot when Secure Boot is enabled for\ntargets that support Secure Boot using ECDSA-P384, the bootloader will burn the write-protection bit of\nof SECURE_BOOT_SHA384_EN that could be shared by multiple other efuse bits like\nSECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH / XTS_DPA_PSEUDO_LEVEL.\n\nOnce this efuse bit is write-protected you cannot update the values of the shared efuses, for example,\nthe security strength value of XTS_DPA_PSEUDO_LEVEL or setting ECC_FORCE_CONST_TIME.\n\nList of eFuses with the same write protection bit:\n\nESP32-C5: XTS_DPA_PSEUDO_LEVEL and ECC_FORCE_CONST_TIME", + "id": "SECURE_BOOT_SKIP_WRITE_PROTECTION_SCA", + "name": "SECURE_BOOT_SKIP_WRITE_PROTECTION_SCA", + "range": null, + "title": "Skip write-protection of SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", + "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.", + "id": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_ENC", + "name": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_ENC", + "range": null, + "title": "Leave UART bootloader encryption enabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT && IDF_TARGET_ESP32", + "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.", + "id": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_DEC", + "name": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_DEC", + "range": null, + "title": "Leave UART bootloader decryption enabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT && (IDF_TARGET_ESP32 || SOC_EFUSE_DIS_DOWNLOAD_ICACHE || SOC_EFUSE_DIS_DOWNLOAD_DCACHE)", + "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.", + "id": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_CACHE", + "name": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_CACHE", + "range": null, + "title": "Leave UART bootloader flash cache enabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", + "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.", + "id": "SECURE_FLASH_REQUIRE_ALREADY_ENABLED", + "name": "SECURE_FLASH_REQUIRE_ALREADY_ENABLED", + "range": null, + "title": "Require flash encryption to be already enabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_HAS_WRITE_PROTECTION_CACHE", + "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 & ESP32H21: DIS_ICACHE, DIS_ICACHE, DIS_USB_JTAG, POWERGLITCH_EN, DIS_FORCE_DOWNLOAD,\nSPI_DOWNLOAD_MSPI_DIS, DIS_TWAI, JTAG_SEL_ENABLE, DIS_PAD_JTAG, DIS_DOWNLOAD_MANUAL_ENCRYPT,\nDIS_USB_SERIAL_JTAG\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.", + "id": "SECURE_FLASH_SKIP_WRITE_PROTECTION_CACHE", + "name": "SECURE_FLASH_SKIP_WRITE_PROTECTION_CACHE", + "range": null, + "title": "Skip write-protection of DIS_CACHE (DIS_ICACHE, DIS_DCACHE)", + "type": "bool" + } + ], + "depends_on": null, + "id": "security-features-potentially-insecure-options-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.projbuild-929", + "title": "Potentially insecure options", + "type": "menu" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_ENC_ENABLED && !SECURE_FLASH_REQUIRE_ALREADY_ENABLED", + "help": "If set (default), optimise encryption time for the partition of type APP,\nby only encrypting the app image that is present in the partition,\ninstead of the whole partition.\nThe image length used for encryption is derived from the image metadata, which\nincludes the size of the app image, checksum, hash and also the signature sector\nwhen secure boot is enabled.\n\nIf not set, the whole partition of type APP would be encrypted,\nwhich increases the encryption time but might be useful if there\nis any custom data appended to the firmware image.", + "id": "SECURE_FLASH_ENCRYPT_ONLY_IMAGE_LEN_IN_APP_PART", + "name": "SECURE_FLASH_ENCRYPT_ONLY_IMAGE_LEN_IN_APP_PART", + "range": null, + "title": "Encrypt contents upto app image length in app partition", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_ENC_ENABLED", + "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.", + "id": "SECURE_FLASH_CHECK_ENC_EN_IN_APP", + "name": "SECURE_FLASH_CHECK_ENC_EN_IN_APP", + "range": null, + "title": "Check Flash Encryption enabled on app startup", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_LOW", + "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_LOW", + "range": null, + "title": "Low", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_MEDIUM", + "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_MEDIUM", + "range": null, + "title": "Medium", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_HIGH", + "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_HIGH", + "range": null, + "title": "High", + "type": "bool" + } + ], + "depends_on": "SECURE_FLASH_PSEUDO_ROUND_FUNC", + "help": "The strength of the pseudo rounds functions can be configured to low, medium and high,\neach denoting the values that would be stored in the efuses field.\nBy default the value to set to low.\n\nIt is recommended that the required strength of the pseudo rounds function should be set during the\nfirst boot itself. If your workflow needs to update the function's strength after the first boot,\nyou should enable CONFIG_SECURE_BOOT_SKIP_WRITE_PROTECTION_SCA to avoid write protecting this\nbit during the boot up for targets that support Secure Boot using ECDSA-P384.\n\nYou can configure the strength of the pseudo rounds functions according to your use cases,\nfor example, increasing the strength would provide higher security but would slow down the\nflash encryption/decryption operations.\nFor more info regarding the performance impact, please checkout the pseudo round function section of the\nsecurity guide documentation.", + "id": "security-features-permanently-enable-xts-aes-s-pseudo-rounds-function-strength-of-the-pseudo-rounds-function-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.projbuild-1141", + "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH", + "title": "Strength of the pseudo rounds function", + "type": "choice" + } + ], + "depends_on": "SECURE_FLASH_ENC_ENABLED && SOC_FLASH_ENCRYPTION_XTS_AES_SUPPORT_PSEUDO_ROUND", + "help": "If set (default), the bootloader will permanently enable the XTS-AES peripheral's pseudo rounds function.\nNote: Enabling this config would burn an efuse.", + "id": "SECURE_FLASH_PSEUDO_ROUND_FUNC", + "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC", + "range": null, + "title": "Permanently enable XTS-AES's pseudo rounds function", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH", + "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SECURE_ROM_DL_MODE_ENABLED", + "name": "SECURE_ROM_DL_MODE_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "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, espefuse 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.", + "id": "SECURE_DISABLE_ROM_DL_MODE", + "name": "SECURE_DISABLE_ROM_DL_MODE", + "range": null, + "title": "UART ROM download mode (Permanently disabled (recommended))", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_SUPPORTS_SECURE_DL_MODE && ", + "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 flasher stub feature,\nespefuse, 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.", + "id": "SECURE_ENABLE_SECURE_ROM_DL_MODE", + "name": "SECURE_ENABLE_SECURE_ROM_DL_MODE", + "range": null, + "title": "UART ROM download mode (Permanently switch to Secure mode (recommended))", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "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.", + "id": "SECURE_INSECURE_ALLOW_DL_MODE", + "name": "SECURE_INSECURE_ALLOW_DL_MODE", + "range": null, + "title": "UART ROM download mode (Enabled (not recommended))", + "type": "bool" + } + ], + "depends_on": "(SECURE_BOOT_V2_ENABLED || SECURE_FLASH_ENC_ENABLED) && !(IDF_TARGET_ESP32 && ESP32_REV_MIN_FULL < 300)", + "help": null, + "id": "security-features-uart-rom-download-mode-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.projbuild-1181", + "name": "SECURE_UART_ROM_DL_MODE", + "title": "UART ROM download mode", + "type": "choice" + } + ], + "depends_on": null, + "id": "security-features-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.projbuild-447", + "title": "Security features", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "!APP_REPRODUCIBLE_BUILD", + "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.", + "id": "APP_COMPILE_TIME_DATE", + "name": "APP_COMPILE_TIME_DATE", + "range": null, + "title": "Use time/date stamp for app", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "APP_EXCLUDE_PROJECT_VER_VAR", + "name": "APP_EXCLUDE_PROJECT_VER_VAR", + "range": null, + "title": "Exclude PROJECT_VER from firmware image", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "APP_EXCLUDE_PROJECT_NAME_VAR", + "name": "APP_EXCLUDE_PROJECT_NAME_VAR", + "range": null, + "title": "Exclude PROJECT_NAME from firmware image", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "APP_PROJECT_VER_FROM_CONFIG", + "help": "Project version", + "id": "APP_PROJECT_VER", + "name": "APP_PROJECT_VER", + "range": null, + "title": "Project version", + "type": "string" + } + ], + "depends_on": null, + "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.", + "id": "APP_PROJECT_VER_FROM_CONFIG", + "name": "APP_PROJECT_VER_FROM_CONFIG", + "range": null, + "title": "Get the project version from Kconfig", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "At startup, the app will read the embedded APP ELF SHA-256 hash value from flash\nand convert it into a string and store it in a RAM buffer.\nThis ensures the panic handler and core dump will be able to print this string\neven when cache is disabled.\nThe size of the buffer is APP_RETRIEVE_LEN_ELF_SHA plus the null terminator.\nChanging this value will change the size of this buffer, in bytes.", + "id": "APP_RETRIEVE_LEN_ELF_SHA", + "name": "APP_RETRIEVE_LEN_ELF_SHA", + "range": [ + 8, + 64 + ], + "title": "The length of APP ELF SHA is stored in RAM(chars)", + "type": "int" + } + ], + "depends_on": null, + "id": "application-manager-C:-esp-v6.0-esp-idf-components-esp_app_format-Kconfig.projbuild-1", + "title": "Application manager", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_CRC_LE", + "name": "ESP_ROM_HAS_CRC_LE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_CRC_BE", + "name": "ESP_ROM_HAS_CRC_BE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_MZ_CRC32", + "name": "ESP_ROM_HAS_MZ_CRC32", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_JPEG_DECODE", + "name": "ESP_ROM_HAS_JPEG_DECODE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_UART_BUF_SWITCH", + "name": "ESP_ROM_HAS_UART_BUF_SWITCH", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_NEEDS_SWSETUP_WORKAROUND", + "name": "ESP_ROM_NEEDS_SWSETUP_WORKAROUND", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_NEWLIB", + "name": "ESP_ROM_HAS_NEWLIB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_NEWLIB_NANO_FORMAT", + "name": "ESP_ROM_HAS_NEWLIB_NANO_FORMAT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_NEWLIB_32BIT_TIME", + "name": "ESP_ROM_HAS_NEWLIB_32BIT_TIME", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_SW_FLOAT", + "name": "ESP_ROM_HAS_SW_FLOAT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_USB_OTG_NUM", + "name": "ESP_ROM_USB_OTG_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_USB_SERIAL_DEVICE_NUM", + "name": "ESP_ROM_USB_SERIAL_DEVICE_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB", + "name": "ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_OUTPUT_PUTC_FUNC", + "name": "ESP_ROM_HAS_OUTPUT_PUTC_FUNC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Always print ROM logs, this is the default behavior.", + "id": "BOOT_ROM_LOG_ALWAYS_ON", + "name": "BOOT_ROM_LOG_ALWAYS_ON", + "range": null, + "title": "Always Log", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Don't print ROM logs.", + "id": "BOOT_ROM_LOG_ALWAYS_OFF", + "name": "BOOT_ROM_LOG_ALWAYS_OFF", + "range": null, + "title": "Permanently disable logging", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "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.", + "id": "BOOT_ROM_LOG_ON_GPIO_HIGH", + "name": "BOOT_ROM_LOG_ON_GPIO_HIGH", + "range": null, + "title": "Log on GPIO High", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "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.", + "id": "BOOT_ROM_LOG_ON_GPIO_LOW", + "name": "BOOT_ROM_LOG_ON_GPIO_LOW", + "range": null, + "title": "Log on GPIO Low", + "type": "bool" + } + ], + "depends_on": "!IDF_TARGET_ESP32", + "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.", + "id": "boot-rom-behavior-permanently-change-boot-rom-output-C:-esp-v6.0-esp-idf-components-esp_rom-Kconfig.projbuild-6", + "name": "BOOT_ROM_LOG_SCHEME", + "title": "Permanently change Boot ROM output", + "type": "choice" + } + ], + "depends_on": null, + "id": "boot-rom-behavior-C:-esp-v6.0-esp-idf-components-esp_rom-Kconfig.projbuild-3", + "title": "Boot ROM Behavior", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "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", + "id": "ESPTOOLPY_NO_STUB", + "name": "ESPTOOLPY_NO_STUB", + "range": null, + "title": "Disable download stub", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_SPI_MEM_SUPPORT_FLASH_OPI_MODE && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "ESPTOOLPY_OCT_FLASH", + "name": "ESPTOOLPY_OCT_FLASH", + "range": null, + "title": "Enable Octal Flash", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_SPI_MEM_SUPPORT_FLASH_OPI_MODE && !APP_BUILD_TYPE_PURE_RAM_APP", + "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. This option is mainly to improve the out-of-box experience of developers. It doesn't guarantee\n the feature-complete. Some code still rely on `ESPTOOLPY_OCT_FLASH`. Please do not rely on this option\n when you are pretty sure that you are using Octal flash.\n In this case, 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.", + "id": "ESPTOOLPY_FLASH_MODE_AUTO_DETECT", + "name": "ESPTOOLPY_FLASH_MODE_AUTO_DETECT", + "range": null, + "title": "Choose flash mode automatically (please read help)", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "!ESPTOOLPY_OCT_FLASH && ", + "help": null, + "id": "ESPTOOLPY_FLASHMODE_QIO", + "name": "ESPTOOLPY_FLASHMODE_QIO", + "range": null, + "title": "QIO", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESPTOOLPY_OCT_FLASH && ", + "help": null, + "id": "ESPTOOLPY_FLASHMODE_QOUT", + "name": "ESPTOOLPY_FLASHMODE_QOUT", + "range": null, + "title": "QOUT", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESPTOOLPY_OCT_FLASH && ", + "help": null, + "id": "ESPTOOLPY_FLASHMODE_DIO", + "name": "ESPTOOLPY_FLASHMODE_DIO", + "range": null, + "title": "DIO", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESPTOOLPY_OCT_FLASH && ", + "help": null, + "id": "ESPTOOLPY_FLASHMODE_DOUT", + "name": "ESPTOOLPY_FLASHMODE_DOUT", + "range": null, + "title": "DOUT", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESPTOOLPY_OCT_FLASH && ", + "help": null, + "id": "ESPTOOLPY_FLASHMODE_OPI", + "name": "ESPTOOLPY_FLASHMODE_OPI", + "range": null, + "title": "OPI", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Mode the flash chip is flashed in, as well as the default mode for the\nbinary to run in.", + "id": "serial-flasher-config-flash-spi-mode-C:-esp-v6.0-esp-idf-components-esptool_py-Kconfig.projbuild-39", + "name": "ESPTOOLPY_FLASHMODE", + "title": "Flash SPI mode", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASH_SAMPLE_MODE_STR", + "name": "ESPTOOLPY_FLASH_SAMPLE_MODE_STR", + "range": null, + "title": "STR Mode", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESPTOOLPY_OCT_FLASH && ", + "help": null, + "id": "ESPTOOLPY_FLASH_SAMPLE_MODE_DTR", + "name": "ESPTOOLPY_FLASH_SAMPLE_MODE_DTR", + "range": null, + "title": "DTR Mode", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "serial-flasher-config-flash-sampling-mode-C:-esp-v6.0-esp-idf-components-esptool_py-Kconfig.projbuild-64", + "name": "ESPTOOLPY_FLASH_SAMPLE_MODE", + "title": "Flash Sampling Mode", + "type": "choice" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "ESPTOOLPY_FLASHMODE", + "name": "ESPTOOLPY_FLASHMODE", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_80M", + "name": "ESPTOOLPY_FLASHFREQ_80M", + "range": null, + "title": "80 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_40M", + "name": "ESPTOOLPY_FLASHFREQ_40M", + "range": null, + "title": "40 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_26M", + "name": "ESPTOOLPY_FLASHFREQ_26M", + "range": null, + "title": "26 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_20M", + "name": "ESPTOOLPY_FLASHFREQ_20M", + "range": null, + "title": "20 MHz", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "serial-flasher-config-flash-spi-speed-C:-esp-v6.0-esp-idf-components-esptool_py-..-spi_flash-esp32-Kconfig.flash_freq-1", + "name": "ESPTOOLPY_FLASHFREQ", + "title": "Flash SPI speed", + "type": "choice" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ", + "name": "ESPTOOLPY_FLASHFREQ", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_1MB", + "name": "ESPTOOLPY_FLASHSIZE_1MB", + "range": null, + "title": "1 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_2MB", + "name": "ESPTOOLPY_FLASHSIZE_2MB", + "range": null, + "title": "2 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_4MB", + "name": "ESPTOOLPY_FLASHSIZE_4MB", + "range": null, + "title": "4 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_8MB", + "name": "ESPTOOLPY_FLASHSIZE_8MB", + "range": null, + "title": "8 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_16MB", + "name": "ESPTOOLPY_FLASHSIZE_16MB", + "range": null, + "title": "16 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_32MB", + "name": "ESPTOOLPY_FLASHSIZE_32MB", + "range": null, + "title": "32 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_64MB", + "name": "ESPTOOLPY_FLASHSIZE_64MB", + "range": null, + "title": "64 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_128MB", + "name": "ESPTOOLPY_FLASHSIZE_128MB", + "range": null, + "title": "128 MB", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "SPI flash size, in megabytes", + "id": "serial-flasher-config-flash-size-C:-esp-v6.0-esp-idf-components-esptool_py-Kconfig.projbuild-112", + "name": "ESPTOOLPY_FLASHSIZE", + "title": "Flash size", + "type": "choice" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE", + "name": "ESPTOOLPY_FLASHSIZE", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "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.", + "id": "ESPTOOLPY_HEADER_FLASHSIZE_UPDATE", + "name": "ESPTOOLPY_HEADER_FLASHSIZE_UPDATE", + "range": null, + "title": "Detect flash size when flashing bootloader", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_BEFORE_RESET", + "name": "ESPTOOLPY_BEFORE_RESET", + "range": null, + "title": "Reset to bootloader", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_BEFORE_NORESET", + "name": "ESPTOOLPY_BEFORE_NORESET", + "range": null, + "title": "No reset", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Configure whether esptool 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.", + "id": "serial-flasher-config-before-flashing-C:-esp-v6.0-esp-idf-components-esptool_py-Kconfig.projbuild-159", + "name": "ESPTOOLPY_BEFORE", + "title": "Before flashing", + "type": "choice" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "ESPTOOLPY_BEFORE", + "name": "ESPTOOLPY_BEFORE", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_AFTER_RESET", + "name": "ESPTOOLPY_AFTER_RESET", + "range": null, + "title": "Reset after flashing", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_AFTER_NORESET", + "name": "ESPTOOLPY_AFTER_NORESET", + "range": null, + "title": "Stay in bootloader", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Configure whether esptool 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.", + "id": "serial-flasher-config-after-flashing-C:-esp-v6.0-esp-idf-components-esptool_py-Kconfig.projbuild-180", + "name": "ESPTOOLPY_AFTER", + "title": "After flashing", + "type": "choice" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "ESPTOOLPY_AFTER", + "name": "ESPTOOLPY_AFTER", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "ESPTOOLPY_MONITOR_BAUD", + "name": "ESPTOOLPY_MONITOR_BAUD", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "id": "serial-flasher-config-C:-esp-v6.0-esp-idf-components-esptool_py-Kconfig.projbuild-1", + "title": "Serial flasher config", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "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.", + "id": "PARTITION_TABLE_SINGLE_APP", + "name": "PARTITION_TABLE_SINGLE_APP", + "range": null, + "title": "Single factory app, no OTA", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "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.", + "id": "PARTITION_TABLE_SINGLE_APP_LARGE", + "name": "PARTITION_TABLE_SINGLE_APP_LARGE", + "range": null, + "title": "Single factory app (large), no OTA", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "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", + "id": "PARTITION_TABLE_TWO_OTA", + "name": "PARTITION_TABLE_TWO_OTA", + "range": null, + "title": "Factory app, two OTA definitions", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "This is a basic OTA-enabled partition table with\ntwo OTA app partitions. Both app partition sizes are 1700K,\nso this partition table requires 4MB or larger flash size.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_two_ota_large.csv", + "id": "PARTITION_TABLE_TWO_OTA_LARGE", + "name": "PARTITION_TABLE_TWO_OTA_LARGE", + "range": null, + "title": "Two large size OTA partitions", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "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.", + "id": "PARTITION_TABLE_CUSTOM", + "name": "PARTITION_TABLE_CUSTOM", + "range": null, + "title": "Custom partition table CSV", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP32_COREDUMP_ENABLE_TO_FLASH && NVS_SEC_KEY_PROTECT_USING_FLASH_ENC && ", + "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", + "id": "PARTITION_TABLE_SINGLE_APP_ENCRYPTED_NVS", + "name": "PARTITION_TABLE_SINGLE_APP_ENCRYPTED_NVS", + "range": null, + "title": "Single factory app, no OTA, encrypted NVS", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP32_COREDUMP_ENABLE_TO_FLASH && NVS_SEC_KEY_PROTECT_USING_FLASH_ENC && ", + "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", + "id": "PARTITION_TABLE_SINGLE_APP_LARGE_ENC_NVS", + "name": "PARTITION_TABLE_SINGLE_APP_LARGE_ENC_NVS", + "range": null, + "title": "Single factory app (large), no OTA, encrypted NVS", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP_COREDUMP_ENABLE_TO_FLASH && NVS_SEC_KEY_PROTECT_USING_FLASH_ENC && ", + "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", + "id": "PARTITION_TABLE_TWO_OTA_ENCRYPTED_NVS", + "name": "PARTITION_TABLE_TWO_OTA_ENCRYPTED_NVS", + "range": null, + "title": "Factory app, two OTA definitions, encrypted NVS", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_ENABLE_TEE && ", + "help": "This is a variation of the default \"Single factory app, no OTA\" partition table\nthat supports the ESP-TEE framework. See the Trusted Execution Environment (TEE) 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_tee.csv", + "id": "PARTITION_TABLE_SINGLE_APP_TEE", + "name": "PARTITION_TABLE_SINGLE_APP_TEE", + "range": null, + "title": "Single factory app, no OTA, TEE", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_ENABLE_TEE && ", + "help": "This is a basic OTA-enabled partition table with two OTA app partitions each\nfor the TEE and the user (REE) application. The user app partition sizes are 1536K,\nso this partition table requires 4MB or larger flash size. See the\nTrusted Execution Environment (TEE) section in the ESP-IDF Programmers Guide\nfor more information.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_two_ota_tee.csv", + "id": "PARTITION_TABLE_TWO_OTA_TEE", + "name": "PARTITION_TABLE_TWO_OTA_TEE", + "range": null, + "title": "Two OTA definitions, TEE", + "type": "bool" + } + ], + "depends_on": null, + "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.", + "id": "partition-table-partition-table-C:-esp-v6.0-esp-idf-components-partition_table-Kconfig.projbuild-3", + "name": "PARTITION_TABLE_TYPE", + "title": "Partition Table", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "Name of the custom partition CSV filename.\nThis path is evaluated relative to the project root directory by default.\nHowever, if the absolute path for the CSV file is provided, then the absolute path is configured.", + "id": "PARTITION_TABLE_CUSTOM_FILENAME", + "name": "PARTITION_TABLE_CUSTOM_FILENAME", + "range": null, + "title": "Custom partition CSV file", + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "PARTITION_TABLE_FILENAME", + "name": "PARTITION_TABLE_FILENAME", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": "The offset address of the partition table is, by default, 0x8000, and it starts right after\nthe bootloader. This offset can be changed if more space is required for the bootloader.\nIf you change this offset, both the bootloader and the app must be compiled with the same\nPARTITION_TABLE_OFFSET value.\n\nThis value must be a multiple of 0x1000.\n\nIf you change the partition table offset, make sure to update the partition offsets in\nthe partition table CSV file. To let the build system automatically adjust partition offsets based on\nthe configured partition table offset, leave the offset fields blank in the CSV file.\n\nNote: If you specify fixed offsets in the partition table CSV (i.e., the offset column is not blank),\nthe first partition must start at PARTITION_TABLE_OFFSET + 0x1000, since the partition table occupies\n0x1000 bytes of flash space.", + "id": "PARTITION_TABLE_OFFSET", + "name": "PARTITION_TABLE_OFFSET", + "range": null, + "title": "Offset of partition table", + "type": "hex" + }, + { + "children": [], + "depends_on": "!APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS && !IDF_TARGET_LINUX", + "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.", + "id": "PARTITION_TABLE_MD5", + "name": "PARTITION_TABLE_MD5", + "range": null, + "title": "Generate an MD5 checksum for the partition table", + "type": "bool" + } + ], + "depends_on": null, + "id": "partition-table-C:-esp-v6.0-esp-idf-components-partition_table-Kconfig.projbuild-1", + "title": "Partition Table", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_OPTIMIZATION_DEBUG", + "name": "COMPILER_OPTIMIZATION_DEBUG", + "range": null, + "title": "Debug (-Og)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_OPTIMIZATION_SIZE", + "name": "COMPILER_OPTIMIZATION_SIZE", + "range": null, + "title": "Optimize for size (-Os with GCC, -Oz with Clang)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_OPTIMIZATION_PERF", + "name": "COMPILER_OPTIMIZATION_PERF", + "range": null, + "title": "Optimize for performance (-O2)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_OPTIMIZATION_NONE", + "name": "COMPILER_OPTIMIZATION_NONE", + "range": null, + "title": "Debug without optimization (-O0)", + "type": "bool" + } + ], + "depends_on": null, + "help": "This option sets compiler optimization level (gcc -O argument) for the app.\n\n- The \"Debug\" setting will add the -Og flag to CFLAGS.\n- The \"Size\" setting will add the -Os flag to CFLAGS (-Oz with Clang).\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.", + "id": "compiler-options-optimization-level-C:-esp-v6.0-esp-idf-Kconfig-337", + "name": "COMPILER_OPTIMIZATION", + "title": "Optimization Level", + "type": "choice" + }, + { + "children": [], + "depends_on": "SOC_CPU_ZCMP_WORKAROUND", + "help": "Enable the RISC-V ZCMP (Compressed Macro) extension to reduce binary size\nby optimizing function prologue and epilogue sequences.\n\nNote: Due to a hardware issue on some ESP32 chips (e.g., ESP32C5, ESP32C61,\nESP32H4), executing \"cm.push\" may re-enable interrupts even when global\ninterrupts are disabled (mstatus.mie = 0). This can cause unexpected interrupts\nduring CPU retention or within critical sections.\n\nWorkarounds are implemented in the IDF codebase. However, if user code\ndirectly disables interrupts, additional actions may be required. Refer\nto code examples under the SOC_CPU_ZCMP_WORKAROUND macro, or disable\nthe ZCMP extension for source files that contain functions which may\nexecute while mstatus.mie = 0.", + "id": "COMPILER_ENABLE_RISCV_ZCMP", + "name": "COMPILER_ENABLE_RISCV_ZCMP", + "range": null, + "title": "Enable RISCV ZCMP extension", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Enable assertions. Assertion content and line number will be printed on failure.", + "id": "COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE", + "name": "COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE", + "range": null, + "title": "Enabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Enable silent assertions. Failed assertions will abort(), user needs to\nuse the aborting address to find the line number with the failed assertion.", + "id": "COMPILER_OPTIMIZATION_ASSERTIONS_SILENT", + "name": "COMPILER_OPTIMIZATION_ASSERTIONS_SILENT", + "range": null, + "title": "Silent (saves code size)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "If assertions are disabled, -DNDEBUG is added to CPPFLAGS.", + "id": "COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE", + "name": "COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE", + "range": null, + "title": "Disabled (sets -DNDEBUG)", + "type": "bool" + } + ], + "depends_on": null, + "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.", + "id": "compiler-options-assertion-level-C:-esp-v6.0-esp-idf-Kconfig-392", + "name": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL", + "title": "Assertion level", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "When NDEBUG is set, assert(X) will not cause code to trigger an assertion.\nWith this option set, assert(X) will still evaluate the expression X, though\nthe result will never cause an assertion. This means that if X is a function\nthen the function will be called.\n\nThis is not according to the standard, which states that the assert(X) should\nbe replaced with ((void)0) if NDEBUG is defined.", + "id": "COMPILER_ASSERT_NDEBUG_EVALUATE", + "name": "COMPILER_ASSERT_NDEBUG_EVALUATE", + "range": null, + "title": "Enable the evaluation of the expression inside assert(X) when NDEBUG is set", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_FLOAT_LIB_FROM_GCCLIB", + "name": "COMPILER_FLOAT_LIB_FROM_GCCLIB", + "range": null, + "title": "libgcc", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_ROM_HAS_RVFPLIB && ", + "help": null, + "id": "COMPILER_FLOAT_LIB_FROM_RVFPLIB", + "name": "COMPILER_FLOAT_LIB_FROM_RVFPLIB", + "range": null, + "title": "librvfp", + "type": "bool" + } + ], + "depends_on": null, + "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.", + "id": "compiler-options-compiler-float-lib-source-C:-esp-v6.0-esp-idf-Kconfig-439", + "name": "COMPILER_FLOAT_LIB_FROM", + "title": "Compiler float lib source", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL", + "name": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "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", + "id": "COMPILER_OPTIMIZATION_CHECKS_SILENT", + "name": "COMPILER_OPTIMIZATION_CHECKS_SILENT", + "range": null, + "title": "Disable messages in ESP_RETURN_ON_* and ESP_EXIT_ON_* macros", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "COMPILER_HIDE_PATHS_MACROS", + "is_menuconfig": true, + "name": "COMPILER_HIDE_PATHS_MACROS", + "range": null, + "title": "Replace ESP-IDF and project paths in binaries", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "COMPILER_CXX_EXCEPTIONS", + "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.", + "id": "COMPILER_CXX_EXCEPTIONS_EMG_POOL_SIZE", + "name": "COMPILER_CXX_EXCEPTIONS_EMG_POOL_SIZE", + "range": null, + "title": "Emergency Pool Size", + "type": "int" + } + ], + "depends_on": null, + "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.", + "id": "COMPILER_CXX_EXCEPTIONS", + "is_menuconfig": true, + "name": "COMPILER_CXX_EXCEPTIONS", + "range": null, + "title": "Enable C++ exceptions", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "COMPILER_CXX_RTTI", + "name": "COMPILER_CXX_RTTI", + "range": null, + "title": "Enable C++ run-time type info (RTTI)", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_STACK_CHECK_MODE_NONE", + "name": "COMPILER_STACK_CHECK_MODE_NONE", + "range": null, + "title": "None", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_STACK_CHECK_MODE_NORM", + "name": "COMPILER_STACK_CHECK_MODE_NORM", + "range": null, + "title": "Normal", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_STACK_CHECK_MODE_STRONG", + "name": "COMPILER_STACK_CHECK_MODE_STRONG", + "range": null, + "title": "Strong", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_STACK_CHECK_MODE_ALL", + "name": "COMPILER_STACK_CHECK_MODE_ALL", + "range": null, + "title": "Overall", + "type": "bool" + } + ], + "depends_on": null, + "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.", + "id": "compiler-options-stack-smashing-protection-mode-C:-esp-v6.0-esp-idf-Kconfig-518", + "name": "COMPILER_STACK_CHECK_MODE", + "title": "Stack smashing protection mode", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "Stack smashing protection.", + "id": "COMPILER_STACK_CHECK", + "name": "COMPILER_STACK_CHECK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TOOLCHAIN_GCC", + "help": "Disable merging identical constants (string/floating-point) across compilation units.\nThis helps in better size analysis of the application binary as the rodata section\ndistribution is more uniform across libraries. On downside, it may increase\nthe binary size and hence should be used during development phase only.", + "id": "COMPILER_NO_MERGE_CONSTANTS", + "name": "COMPILER_NO_MERGE_CONSTANTS", + "range": null, + "title": "Disable merging const sections", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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 *``.", + "id": "COMPILER_WARN_WRITE_STRINGS", + "name": "COMPILER_WARN_WRITE_STRINGS", + "range": null, + "title": "Enable -Wwrite-strings warning flag", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ARCH_RISCV", + "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.", + "id": "COMPILER_SAVE_RESTORE_LIBCALLS", + "name": "COMPILER_SAVE_RESTORE_LIBCALLS", + "range": null, + "title": "Enable -msave-restore flag to reduce code size", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this option if you do not want default warnings to be considered as errors,\nespecially when updating IDF.\n\nThis is a temporary flag that could help to allow upgrade while having\nsome time to address the warnings raised by those default warnings.\nAlternatives are:\n1) fix code (preferred),\n2) remove specific warnings,\n3) do not consider specific warnings as error.", + "id": "COMPILER_DISABLE_DEFAULT_ERRORS", + "name": "COMPILER_DISABLE_DEFAULT_ERRORS", + "range": null, + "title": "Disable errors for default warnings", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this option if use GCC 12 or newer, and want to disable warnings which don't appear with\nGCC 11.", + "id": "COMPILER_DISABLE_GCC12_WARNINGS", + "name": "COMPILER_DISABLE_GCC12_WARNINGS", + "range": null, + "title": "Disable new warnings introduced in GCC 12", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this option if use GCC 13 or newer, and want to disable warnings which don't appear with\nGCC 12.", + "id": "COMPILER_DISABLE_GCC13_WARNINGS", + "name": "COMPILER_DISABLE_GCC13_WARNINGS", + "range": null, + "title": "Disable new warnings introduced in GCC 13", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this option if use GCC 14 or newer, and want to disable warnings which don't appear with\nGCC 13.", + "id": "COMPILER_DISABLE_GCC14_WARNINGS", + "name": "COMPILER_DISABLE_GCC14_WARNINGS", + "range": null, + "title": "Disable new warnings introduced in GCC 14", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this option if use GCC 15 or newer, and want to disable warnings which don't appear with\nGCC 14.", + "id": "COMPILER_DISABLE_GCC15_WARNINGS", + "name": "COMPILER_DISABLE_GCC15_WARNINGS", + "range": null, + "title": "Disable new warnings introduced in GCC 15", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If enabled, RTL files will be produced during compilation. These files\ncan be used by other tools, for example to calculate call graphs.", + "id": "COMPILER_DUMP_RTL_FILES", + "name": "COMPILER_DUMP_RTL_FILES", + "range": null, + "title": "Dump RTL files during compilation", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "!IDF_TARGET_LINUX && ", + "help": null, + "id": "COMPILER_RT_LIB_GCCLIB", + "name": "COMPILER_RT_LIB_GCCLIB", + "range": null, + "title": "libgcc", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TOOLCHAIN_CLANG && !IDF_TARGET_LINUX && ", + "help": null, + "id": "COMPILER_RT_LIB_CLANGRT", + "name": "COMPILER_RT_LIB_CLANGRT", + "range": null, + "title": "libclang_rt", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_LINUX && ", + "help": null, + "id": "COMPILER_RT_LIB_HOST", + "name": "COMPILER_RT_LIB_HOST", + "range": null, + "title": "Host", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select runtime library to be used by compiler.\n- GCC toolchain supports libgcc only.\n- Clang allows to choose between libgcc or libclang_rt.\n- For host builds (\"linux\" target), uses the default library.", + "id": "compiler-options-compiler-runtime-library-C:-esp-v6.0-esp-idf-Kconfig-643", + "name": "COMPILER_RT_LIB", + "title": "Compiler runtime library", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "COMPILER_RT_LIB_NAME", + "name": "COMPILER_RT_LIB_NAME", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Fails the link step with an error if orphan sections are detected.", + "id": "COMPILER_ORPHAN_SECTIONS_ERROR", + "name": "COMPILER_ORPHAN_SECTIONS_ERROR", + "range": null, + "title": "Fail if orphan sections found", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Places orphan sections with a warning message.", + "id": "COMPILER_ORPHAN_SECTIONS_WARNING", + "name": "COMPILER_ORPHAN_SECTIONS_WARNING", + "range": null, + "title": "Place with warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Places orphan sections without a warning/error message.", + "id": "COMPILER_ORPHAN_SECTIONS_PLACE", + "name": "COMPILER_ORPHAN_SECTIONS_PLACE", + "range": null, + "title": "Place silently", + "type": "bool" + } + ], + "depends_on": "!IDF_TARGET_LINUX", + "help": "If the linker finds orphan sections, it attempts to place orphan sections after sections of the same\nattribute such as code vs data, loadable vs non-loadable, etc.\nThat means that orphan sections could placed between sections defined in IDF linker scripts.\nThis could lead to corruption of the binary image. Configure the linker action here.", + "id": "compiler-options-orphan-sections-handling-C:-esp-v6.0-esp-idf-Kconfig-671", + "name": "COMPILER_ORPHAN_SECTIONS", + "title": "Orphan sections handling", + "type": "choice" + }, + { + "children": [], + "depends_on": "IDF_TOOLCHAIN_GCC", + "help": "Enable compiler static analyzer. This may produce false-positive results and increases compile time.", + "id": "COMPILER_STATIC_ANALYZER", + "name": "COMPILER_STATIC_ANALYZER", + "range": null, + "title": "Enable compiler static analyzer", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Use default _GLIBCXX20_CONSTEXPR and _GLIBCXX23_CONSTEXPR defined in libstdc++", + "id": "COMPILER_CXX_GLIBCXX_CONSTEXPR_NO_CHANGE", + "name": "COMPILER_CXX_GLIBCXX_CONSTEXPR_NO_CHANGE", + "range": null, + "title": "No change", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Define _GLIBCXX20_CONSTEXPR=__attribute__((cold)) constexpr\nDefine _GLIBCXX23_CONSTEXPR=__attribute__((cold)) constexpr", + "id": "COMPILER_CXX_GLIBCXX_CONSTEXPR_COLD_CONSTEXPR", + "name": "COMPILER_CXX_GLIBCXX_CONSTEXPR_COLD_CONSTEXPR", + "range": null, + "title": "_GLIBCXX2X_CONSTEXPR=__attribute__((cold)) constexpr", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Define _GLIBCXX20_CONSTEXPR=__attribute__((cold)).\nDefine _GLIBCXX23_CONSTEXPR=__attribute__((cold)).", + "id": "COMPILER_CXX_GLIBCXX_CONSTEXPR_COLD", + "name": "COMPILER_CXX_GLIBCXX_CONSTEXPR_COLD", + "range": null, + "title": "_GLIBCXX2X_CONSTEXPR=__attribute__((cold))", + "type": "bool" + } + ], + "depends_on": "IDF_TOOLCHAIN_GCC && !IDF_TARGET_LINUX", + "help": "Modify libstdc++ _GLIBCXX20_CONSTEXPR and _GLIBCXX23_CONSTEXPR definitions to provide size\noptimizations. The total size optimization depends on the application's structure.\nThere is no robust way to determine which option would be better in a particular case.\nPlease try all available options to find the best size optimization.", + "id": "compiler-options-define-_glibcxx_constexpr-C:-esp-v6.0-esp-idf-Kconfig-704", + "name": "COMPILER_CXX_GLIBCXX_CONSTEXPR", + "title": "Define _GLIBCXX_CONSTEXPR", + "type": "choice" + } + ], + "depends_on": null, + "id": "compiler-options-C:-esp-v6.0-esp-idf-Kconfig-335", + "title": "Compiler options", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "EFUSE_CUSTOM_TABLE", + "help": "Name of the custom eFuse CSV filename. This path is evaluated\nrelative to the project root directory.", + "id": "EFUSE_CUSTOM_TABLE_FILENAME", + "name": "EFUSE_CUSTOM_TABLE_FILENAME", + "range": null, + "title": "Custom eFuse CSV file", + "type": "string" + } + ], + "depends_on": null, + "help": "Allows to generate a structure for eFuse from the CSV file.", + "id": "EFUSE_CUSTOM_TABLE", + "name": "EFUSE_CUSTOM_TABLE", + "range": null, + "title": "Use custom eFuse table", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "EFUSE_VIRTUAL && !IDF_TARGET_LINUX", + "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).", + "id": "EFUSE_VIRTUAL_KEEP_IN_FLASH", + "name": "EFUSE_VIRTUAL_KEEP_IN_FLASH", + "range": null, + "title": "Keep eFuses in flash", + "type": "bool" + }, + { + "children": [], + "depends_on": "EFUSE_VIRTUAL", + "help": "If enabled, log efuse burns. This shows changes that would be made.", + "id": "EFUSE_VIRTUAL_LOG_ALL_WRITES", + "name": "EFUSE_VIRTUAL_LOG_ALL_WRITES", + "range": null, + "title": "Log all virtual writes", + "type": "bool" + } + ], + "depends_on": null, + "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.", + "id": "EFUSE_VIRTUAL", + "name": "EFUSE_VIRTUAL", + "range": null, + "title": "Simulate eFuse operations in RAM", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "EFUSE_CODE_SCHEME_COMPAT_NONE", + "name": "EFUSE_CODE_SCHEME_COMPAT_NONE", + "range": null, + "title": "None Only", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "EFUSE_CODE_SCHEME_COMPAT_3_4", + "name": "EFUSE_CODE_SCHEME_COMPAT_3_4", + "range": null, + "title": "3/4 and None", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "EFUSE_CODE_SCHEME_COMPAT_REPEAT", + "name": "EFUSE_CODE_SCHEME_COMPAT_REPEAT", + "range": null, + "title": "Repeat, 3/4 and None (common table does not support it)", + "type": "bool" + } + ], + "depends_on": "IDF_TARGET_ESP32", + "help": "Selector eFuse code scheme.", + "id": "component-config-efuse-bit-manager-coding-scheme-compatibility-C:-esp-v6.0-esp-idf-components-efuse-Kconfig-51", + "name": "EFUSE_CODE_SCHEME_SELECTOR", + "title": "Coding Scheme Compatibility", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "EFUSE_MAX_BLK_LEN", + "name": "EFUSE_MAX_BLK_LEN", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-efuse-bit-manager-C:-esp-v6.0-esp-idf-components-efuse-Kconfig-1", + "title": "eFuse Bit Manager", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "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.", + "id": "ESP_ERR_TO_NAME_LOOKUP", + "name": "ESP_ERR_TO_NAME_LOOKUP", + "range": null, + "title": "Enable lookup of error code strings", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ALLOW_BSS_SEG_EXTERNAL_MEMORY", + "name": "ESP_ALLOW_BSS_SEG_EXTERNAL_MEMORY", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-common-esp-related-C:-esp-v6.0-esp-idf-components-esp_common-Kconfig-1", + "title": "Common ESP-related", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_HW_SUPPORT_FUNC_IN_IRAM", + "name": "ESP_HW_SUPPORT_FUNC_IN_IRAM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_REV_MIN_0", + "name": "ESP32_REV_MIN_0", + "range": null, + "title": "Rev v0.0 (ECO0)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_REV_MIN_1", + "name": "ESP32_REV_MIN_1", + "range": null, + "title": "Rev v1.0 (ECO1)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_REV_MIN_1_1", + "name": "ESP32_REV_MIN_1_1", + "range": null, + "title": "Rev v1.1 (ECO1.1)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_REV_MIN_2", + "name": "ESP32_REV_MIN_2", + "range": null, + "title": "Rev v2.0 (ECO2)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_REV_MIN_3", + "name": "ESP32_REV_MIN_3", + "range": null, + "title": "Rev v3.0 (ECO3)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_REV_MIN_3_1", + "name": "ESP32_REV_MIN_3_1", + "range": null, + "title": "Rev v3.1 (ECO4)", + "type": "bool" + } + ], + "depends_on": null, + "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.", + "id": "component-config-hardware-settings-chip-revision-minimum-supported-esp32-revision-C:-esp-v6.0-esp-idf-components-esp_hw_support-.-port-esp32-Kconfig.hw_support-1", + "name": "ESP32_REV_MIN", + "title": "Minimum Supported ESP32 Revision", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_REV_MIN", + "name": "ESP32_REV_MIN", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_REV_MIN_FULL", + "name": "ESP32_REV_MIN_FULL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_REV_MIN_FULL", + "name": "ESP_REV_MIN_FULL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_REV_MAX_FULL", + "name": "ESP32_REV_MAX_FULL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_REV_MAX_FULL", + "name": "ESP_REV_MAX_FULL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Required minimum eFuse Block revision. ESP-IDF will check it at the 2nd bootloader stage\nwhether the current image can work correctly for this eFuse Block revision.\nSo that to avoid running an incompatible image on a SoC that contains breaking change in the eFuse Block.\nIf you want to update this value to run the image that not compatible with the current eFuse Block revision,\nplease contact to Espressif's business team for details:\nhttps://www.espressif.com.cn/en/contact-us/sales-questions", + "id": "ESP_EFUSE_BLOCK_REV_MIN_FULL", + "name": "ESP_EFUSE_BLOCK_REV_MIN_FULL", + "range": null, + "title": "Minimum Supported ESP32 eFuse Block Revision", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_EFUSE_BLOCK_REV_MAX_FULL", + "name": "ESP_EFUSE_BLOCK_REV_MAX_FULL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "IDF_CI_BUILD", + "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.", + "id": "ESP_REV_NEW_CHIP_TEST", + "name": "ESP_REV_NEW_CHIP_TEST", + "range": null, + "title": "Internal test mode", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-chip-revision-C:-esp-v6.0-esp-idf-components-esp_hw_support-Kconfig-12", + "title": "Chip revision", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_ADDR_UNIVERSE_WIFI_STA", + "name": "ESP_MAC_ADDR_UNIVERSE_WIFI_STA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_ADDR_UNIVERSE_WIFI_AP", + "name": "ESP_MAC_ADDR_UNIVERSE_WIFI_AP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_ADDR_UNIVERSE_BT", + "name": "ESP_MAC_ADDR_UNIVERSE_BT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_ADDR_UNIVERSE_ETH", + "name": "ESP_MAC_ADDR_UNIVERSE_ETH", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_ADDR_UNIVERSE_IEEE802154", + "name": "ESP_MAC_ADDR_UNIVERSE_IEEE802154", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_ONE", + "name": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_ONE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_TWO", + "name": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_TWO", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR", + "name": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES", + "name": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_UNIVERSAL_MAC_ADDRESSES_TWO", + "name": "ESP32_UNIVERSAL_MAC_ADDRESSES_TWO", + "range": null, + "title": "Two", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR", + "name": "ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR", + "range": null, + "title": "Four", + "type": "bool" + } + ], + "depends_on": null, + "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.)", + "id": "component-config-hardware-settings-mac-config-number-of-universally-administered-by-ieee-mac-address-C:-esp-v6.0-esp-idf-components-esp_hw_support-.-port-esp32-Kconfig.mac-1", + "name": "ESP32_UNIVERSAL_MAC_ADDRESSES", + "title": "Number of universally administered (by IEEE) MAC address", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_UNIVERSAL_MAC_ADDRESSES", + "name": "ESP32_UNIVERSAL_MAC_ADDRESSES", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32", + "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.", + "id": "ESP_MAC_IGNORE_MAC_CRC_ERROR", + "name": "ESP_MAC_IGNORE_MAC_CRC_ERROR", + "range": null, + "title": "Ignore MAC CRC error (not recommended)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "When this configuration is enabled, the user can invoke `esp_read_mac` to obtain the desired type of\nMAC using a custom MAC as the base MAC.", + "id": "ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC", + "name": "ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC", + "range": null, + "title": "Enable using custom mac as base mac", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-mac-config-C:-esp-v6.0-esp-idf-components-esp_hw_support-Kconfig-26", + "title": "MAC Config", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "(!SPIRAM || ESP_LDO_RESERVE_PSRAM) && !(IDF_TARGET_ESP32P4 && ESP32P4_REV_MIN_FULL < 100)", + "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.", + "id": "ESP_SLEEP_POWER_DOWN_FLASH", + "name": "ESP_SLEEP_POWER_DOWN_FLASH", + "range": null, + "title": "Power down flash in light sleep when there is no SPIRAM or SPIRAM has independent power supply", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "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.)", + "id": "ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND", + "name": "ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND", + "range": null, + "title": "Pull-up Flash CS pin in light sleep", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM", + "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.)", + "id": "ESP_SLEEP_PSRAM_LEAKAGE_WORKAROUND", + "name": "ESP_SLEEP_PSRAM_LEAKAGE_WORKAROUND", + "range": null, + "title": "Pull-up PSRAM CS pin in light sleep", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_SLEEP_PSRAM_LEAKAGE_WORKAROUND || ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND", + "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.", + "id": "ESP_SLEEP_MSPI_NEED_ALL_IO_PU", + "name": "ESP_SLEEP_MSPI_NEED_ALL_IO_PU", + "range": null, + "title": "Pull-up all SPI pins in light sleep", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_SLEEP_RTC_BUS_ISO_WORKAROUND", + "name": "ESP_SLEEP_RTC_BUS_ISO_WORKAROUND", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "All existing chips except esp32 and esp32s2 will reset on wake-up if a GPIO receives\na small electrostatic pulse during light sleep, with specific conditions.\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.", + "id": "ESP_SLEEP_GPIO_RESET_WORKAROUND", + "name": "ESP_SLEEP_GPIO_RESET_WORKAROUND", + "range": null, + "title": "light sleep GPIO reset workaround", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "When the chip exits sleep, the CPU and the flash chip are powered on at the same time.\nCPU will run rom code (deepsleep) or ram code (lightsleep) first, and then load or execute\ncode from flash.\n\nSome flash chips need sufficient time to pass between power on and first read operation.\nBy default, without any extra delay, this time is approximately 900us, although\nsome flash chip types need more than that.\n\n(!!! Please adjust this value according to the Data Sheet of SPI Flash used in your project.)\nIn Flash Data Sheet, the parameters that define the Flash ready timing after power-up (minimum\ntime from Vcc(min) to CS active) are usually named tVSL in ELECTRICAL CHARACTERISTICS chapter,\nand the configuration value here should be:\nESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY = tVSL - 900\n\nFor esp32 and esp32s3, the 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 console after deep sleep reset\non esp32, or triggered RTC_WDT/LP_WDT after lightsleep wakeup, try increasing this value.\n(For esp32, the delay will be executed in both deep sleep and light sleep wake up flow.\nFor chips after esp32, the delay will be executed only in light sleep flow, the delay\ncontrolled by the EFUSE_FLASH_TPUW in ROM will be executed in deepsleep wake up flow.)", + "id": "ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY", + "name": "ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY", + "range": [ + 0, + 5000 + ], + "title": "Extra delay (in us) after flash powerdown sleep wakeup to wait flash ready", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Enabling it will check the cache safety of the code before the flash power is ready after\nlight sleep wakeup, and check PM_SLP_IRAM_OPT related code cache safety. This option is\nonly for code quality inspection. Enabling it will increase the time overhead of entering\nand exiting sleep. It is not recommended to enable it in the release version.", + "id": "ESP_SLEEP_CACHE_SAFE_ASSERTION", + "name": "ESP_SLEEP_CACHE_SAFE_ASSERTION", + "range": null, + "title": "Check the cache safety of the sleep wakeup code in sleep process", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable esp sleep debug.", + "id": "ESP_SLEEP_DEBUG", + "name": "ESP_SLEEP_DEBUG", + "range": null, + "title": "esp sleep debug", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "When using rtc gpio wakeup source during deepsleep without external pull-up/downs, you may want to\nmake use of the internal ones.", + "id": "ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS", + "name": "ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS", + "range": null, + "title": "Allow to enable internal pull-up/downs for the Deep-Sleep wakeup IOs", + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_USE_TICKLESS_IDLE", + "help": "If enabled, it allows user to register sleep event callbacks. It is primarily designed for internal\ndevelopers and customers can use PM_LIGHT_SLEEP_CALLBACKS as an alternative.\n\nNOTE: These callbacks are executed from the IDLE task context hence you cannot have any blocking calls\nin your callbacks.\n\nNOTE: Enabling these callbacks may change sleep duration calculations based on time spent in\ncallback and hence it is highly recommended to keep them as short as possible.", + "id": "ESP_SLEEP_EVENT_CALLBACKS", + "name": "ESP_SLEEP_EVENT_CALLBACKS", + "range": null, + "title": "Enable registration of sleep event callbacks", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-sleep-config-C:-esp-v6.0-esp-idf-components-esp_hw_support-Kconfig-77", + "title": "Sleep Config", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "RTC_CLK_SRC_INT_RC", + "name": "RTC_CLK_SRC_INT_RC", + "range": null, + "title": "Internal 150 kHz RC oscillator", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "RTC_CLK_SRC_EXT_CRYS", + "name": "RTC_CLK_SRC_EXT_CRYS", + "range": null, + "title": "External 32kHz crystal", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "RTC_CLK_SRC_EXT_OSC", + "name": "RTC_CLK_SRC_EXT_OSC", + "range": null, + "title": "External 32kHz oscillator at 32K_XN pin", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "RTC_CLK_SRC_INT_8MD256", + "name": "RTC_CLK_SRC_INT_8MD256", + "range": null, + "title": "Internal 8.5MHz oscillator, divided by 256 (~33kHz)", + "type": "bool" + } + ], + "depends_on": null, + "help": "Choose which clock is used as RTC clock source.\n\n- \"Internal 150kHz oscillator\" option provides lowest deep sleep current\n consumption, and does not require extra external components. However\n frequency stability with respect to temperature is poor, so time may\n drift in deep/light sleep modes.\n- \"External 32kHz crystal\" provides better frequency stability, at the\n expense of slightly higher (1uA) deep sleep current consumption.\n- \"External 32kHz oscillator\" allows using 32kHz clock generated by an\n external circuit. In this case, external clock signal must be connected\n to 32K_XN pin.\n Additionally, 1nF capacitor must be connected between 32K_XP pin and\n ground. 32K_XP pin can not be used as a GPIO in this case.\n- \"Internal 8.5MHz oscillator divided by 256\" option results in higher\n deep sleep current (by 5uA) but has better frequency stability than\n the internal 150kHz oscillator. It does not require external components.", + "id": "component-config-hardware-settings-rtc-clock-config-rtc-clock-source-C:-esp-v6.0-esp-idf-components-esp_hw_support-.-port-esp32-Kconfig.rtc-1", + "name": "RTC_CLK_SRC", + "title": "RTC clock source", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "RTC_EXT_CRYST_ADDIT_CURRENT_NONE", + "name": "RTC_EXT_CRYST_ADDIT_CURRENT_NONE", + "range": null, + "title": "None", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "RTC_EXT_CRYST_ADDIT_CURRENT", + "name": "RTC_EXT_CRYST_ADDIT_CURRENT", + "range": null, + "title": "Method 1", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "RTC_EXT_CRYST_ADDIT_CURRENT_V2", + "name": "RTC_EXT_CRYST_ADDIT_CURRENT_V2", + "range": null, + "title": "Method 2", + "type": "bool" + } + ], + "depends_on": "RTC_CLK_SRC_EXT_CRYS && ESP32_REV_MIN_FULL < 200", + "help": "With some 32kHz crystal configurations, the X32N and X32P pins may not have enough\ndrive strength to keep the crystal oscillating. Choose the method to provide\nadditional current from touchpad 9 to the external 32kHz crystal. Note that\nthe deep sleep current is slightly high (4-5uA) and the touchpad and the\nwakeup sources of both touchpad and ULP are not available in method 1 and method 2.\n\nThis problem is fixed in ESP32 ECO 3, so this workaround is not needed. Setting the\nproject configuration to minimum revision ECO3 will disable this option, , allow\nall wakeup sources, and save some code size.\n\n- \"None\" option will not provide additional current to external crystal\n- \"Method 1\" option can't ensure 100% to solve the external 32k crystal start failed\n issue, but the touchpad can work in this method.\n- \"Method 2\" option can solve the external 32k issue, but the touchpad can't work\n in this method.", + "id": "component-config-hardware-settings-rtc-clock-config-additional-current-for-external-32khz-crystal-C:-esp-v6.0-esp-idf-components-esp_hw_support-.-port-esp32-Kconfig.rtc-34", + "name": "RTC_EXT_CRYST_ADDIT_CURRENT_METHOD", + "title": "Additional current for external 32kHz crystal", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "RTC_CLK_CAL_CYCLES", + "name": "RTC_CLK_CAL_CYCLES", + "range": [ + 0, + 32766 + ], + "title": "Number of cycles for RTC_SLOW_CLK calibration", + "type": "int" + }, + { + "children": [], + "depends_on": "RTC_CLK_SRC_EXT_CRYS", + "help": "Number of attempts to repeat 32k XTAL calibration\nbefore giving up and switching to the internal RC.\nIncrease this option if the 32k crystal oscillator\ndoes not start and switches to internal RC.", + "id": "RTC_XTAL_CAL_RETRY", + "name": "RTC_XTAL_CAL_RETRY", + "range": null, + "title": "Number of attempts to repeat 32k XTAL calibration", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Place RTC clock module (all rtc clock functions and const data) into IRAM.", + "id": "RTC_CLK_FUNC_IN_IRAM", + "name": "RTC_CLK_FUNC_IN_IRAM", + "range": null, + "title": "Place RTC clock module functions into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Place RTC time module (all rtc clock functions) into IRAM.", + "id": "RTC_TIME_FUNC_IN_IRAM", + "name": "RTC_TIME_FUNC_IN_IRAM", + "range": null, + "title": "Place RTC time module functions into IRAM", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-rtc-clock-config-C:-esp-v6.0-esp-idf-components-esp_hw_support-Kconfig-228", + "title": "RTC Clock Config", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "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.", + "id": "ESP_PERIPH_CTRL_FUNC_IN_IRAM", + "name": "ESP_PERIPH_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place peripheral control functions into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Place analog i2c master control functions (e.g. regi2c_ctrl_read_reg, regi2c_ctrl_write_reg) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", + "id": "ESP_REGI2C_CTRL_FUNC_IN_IRAM", + "name": "ESP_REGI2C_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place regi2c control functions into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MODEM_CLOCK_SUPPORTED", + "help": "If enabled, this option will perform additional checks on modem clock configuration\nto ensure proper operation and detect potential configuration issues.", + "id": "ESP_MODEM_CLOCK_ENABLE_CHECKING", + "name": "ESP_MODEM_CLOCK_ENABLE_CHECKING", + "range": null, + "title": "Enable modem clock configuration checking", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-peripheral-control-C:-esp-v6.0-esp-idf-components-esp_hw_support-Kconfig-244", + "title": "Peripheral Control", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_ETM_SUPPORTED", + "help": "If enabled, ETM driver will:\n1. ignore the global logging settings\n2. compile all log messages into the binary\n3. set the runtime log level to VERBOSE\nPlease enable this option by caution, as it will increase the binary size.", + "id": "ETM_ENABLE_DEBUG_LOG", + "name": "ETM_ENABLE_DEBUG_LOG", + "range": null, + "title": "Force enable debug log", + "type": "bool" + } + ], + "depends_on": "SOC_ETM_SUPPORTED", + "id": "component-config-hardware-settings-event-task-matrix-etm-configurations-C:-esp-v6.0-esp-idf-components-esp_hw_support-.-etm-Kconfig.etm-1", + "title": "Event Task Matrix (ETM) Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "XTAL_FREQ_26", + "name": "XTAL_FREQ_26", + "range": null, + "title": "26 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "XTAL_FREQ_32", + "name": "XTAL_FREQ_32", + "range": null, + "title": "32 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "XTAL_FREQ_40", + "name": "XTAL_FREQ_40", + "range": null, + "title": "40 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "XTAL_FREQ_AUTO", + "name": "XTAL_FREQ_AUTO", + "range": null, + "title": "Autodetect", + "type": "bool" + } + ], + "depends_on": null, + "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: On ESP32, the XTAL_FREQ_AUTO option allows the ESP target to automatically estimating XTAL clock's\noperating frequency. The ESP32 uses the internal 8MHZ as a reference when estimating. Due to the internal\noscillator's frequency being temperature dependent, usage of the XTAL_FREQ_AUTO is not recommended in\napplications that operate in high ambient temperatures or use high-temperature qualified chips and modules.", + "id": "component-config-hardware-settings-main-xtal-config-main-xtal-frequency-C:-esp-v6.0-esp-idf-components-esp_hw_support-.-port-esp32-Kconfig.xtal-1", + "name": "XTAL_FREQ", + "title": "Main XTAL frequency", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "XTAL_FREQ", + "name": "XTAL_FREQ", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-main-xtal-config-C:-esp-v6.0-esp-idf-components-esp_hw_support-Kconfig-270", + "title": "Main XTAL Config", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_0", + "name": "ESP_BROWNOUT_DET_LVL_SEL_0", + "range": null, + "title": "2.43V +/- 0.05", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_1", + "name": "ESP_BROWNOUT_DET_LVL_SEL_1", + "range": null, + "title": "2.48V +/- 0.05", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_2", + "name": "ESP_BROWNOUT_DET_LVL_SEL_2", + "range": null, + "title": "2.58V +/- 0.05", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_3", + "name": "ESP_BROWNOUT_DET_LVL_SEL_3", + "range": null, + "title": "2.62V +/- 0.05", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_4", + "name": "ESP_BROWNOUT_DET_LVL_SEL_4", + "range": null, + "title": "2.67V +/- 0.05", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_5", + "name": "ESP_BROWNOUT_DET_LVL_SEL_5", + "range": null, + "title": "2.70V +/- 0.05", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_6", + "name": "ESP_BROWNOUT_DET_LVL_SEL_6", + "range": null, + "title": "2.77V +/- 0.05", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_7", + "name": "ESP_BROWNOUT_DET_LVL_SEL_7", + "range": null, + "title": "2.80V +/- 0.05", + "type": "bool" + } + ], + "depends_on": "ESP_BROWNOUT_DET", + "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 ESP 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.", + "id": "component-config-hardware-settings-power-supplier-brownout-detector-hardware-brownout-detect-reset-brownout-voltage-level-C:-esp-v6.0-esp-idf-components-esp_hw_support-.-power_supply-port-esp32-Kconfig.power-14", + "name": "ESP_BROWNOUT_DET_LVL_SEL", + "title": "Brownout voltage level", + "type": "choice" + } + ], + "depends_on": "!IDF_ENV_FPGA", + "help": "The ESP 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.", + "id": "ESP_BROWNOUT_DET", + "name": "ESP_BROWNOUT_DET", + "range": null, + "title": "Hardware brownout detect & reset", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_BROWNOUT_DET_LVL", + "name": "ESP_BROWNOUT_DET_LVL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "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 RES-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.", + "id": "ESP_BROWNOUT_USE_INTR", + "name": "ESP_BROWNOUT_USE_INTR", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-power-supplier-brownout-detector-C:-esp-v6.0-esp-idf-components-esp_hw_support-.-power_supply-port-esp32-Kconfig.power-3", + "title": "Brownout Detector", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-power-supplier-C:-esp-v6.0-esp-idf-components-esp_hw_support-.-power_supply-port-esp32-Kconfig.power-1", + "title": "Power Supplier", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": "This option is only used for new chip bringup, when\nclock support isn't done yet. So with this option,\nwe use xtal on FPGA as the clock source.", + "id": "ESP_BRINGUP_BYPASS_CPU_CLK_SETTING", + "name": "ESP_BRINGUP_BYPASS_CPU_CLK_SETTING", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This option is only used for new chip bringup, when\nRNG isn't done yet. So with this option, we use 0x5A\nto fill the random buffers", + "id": "ESP_BRINGUP_BYPASS_RANDOM_SETTING", + "name": "ESP_BRINGUP_BYPASS_RANDOM_SETTING", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM", + "name": "ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_SPI_BUS_LOCK_FUNCS_IN_IRAM", + "name": "ESP_SPI_BUS_LOCK_FUNCS_IN_IRAM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Due to the poor low-temperature characteristics of\nRC32K (it cannot operate below -40 degrees Celsius),\nplease avoid using it whenever possible", + "id": "ESP_CLK_RC32K_NOT_TO_USE", + "name": "ESP_CLK_RC32K_NOT_TO_USE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_PMU_PVT_SUPPORTED", + "help": "If enabled, hp & lp voltage can be auto adjust by PVT characteristic.\nOtherwise, internal voltage will be set to fix dbias.\nThis is a must for stable mass production. Disable for debugging only.", + "id": "ESP_ENABLE_PVT", + "name": "ESP_ENABLE_PVT", + "range": null, + "title": "Auto adjust hp & lp voltage using pvt function (MUST ENABLE FOR MP)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_INTR_IN_IRAM", + "name": "ESP_INTR_IN_IRAM", + "range": null, + "title": "Place esp_intr_alloc functions in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32P4", + "help": null, + "id": "P4_REV3_MSPI_CRASH_AFTER_POWER_UP_WORKAROUND", + "name": "P4_REV3_MSPI_CRASH_AFTER_POWER_UP_WORKAROUND", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32P4", + "help": null, + "id": "P4_REV3_MSPI_WORKAROUND_SIZE", + "name": "P4_REV3_MSPI_WORKAROUND_SIZE", + "range": null, + "title": null, + "type": "hex" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-C:-esp-v6.0-esp-idf-components-esp_hw_support-Kconfig-1", + "title": "Hardware Settings", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LIBC_NEWLIB", + "name": "LIBC_NEWLIB", + "range": null, + "title": "NewLib", + "type": "bool" + }, + { + "children": [], + "depends_on": "!IDF_TOOLCHAIN_CLANG && ", + "help": null, + "id": "LIBC_PICOLIBC", + "name": "LIBC_PICOLIBC", + "range": null, + "title": "Picolibc", + "type": "bool" + } + ], + "depends_on": null, + "help": null, + "id": "component-config-libc-libc-to-build-application-with-C:-esp-v6.0-esp-idf-components-esp_libc-Kconfig-3", + "name": "LIBC", + "title": "LibC to build application with", + "type": "choice" + }, + { + "children": [], + "depends_on": "LIBC_PICOLIBC", + "help": "This option provides limited compatibility with libraries built using Newlib headers by:\n\nEnabling hidden system-header inclusions that exist in Newlib.\nAdding tls_stdio, tls_stdout, and tls_stderr variables to Thread Local Storage\nto allow prebuilt libraries to access them via getreent().\nProviding an implementation of getreent() that returns the value of the thread-pointer register.\n\nLimitations:\n\n1. If your application or an external prebuilt library accesses Newlib \"struct _reent\" implicitly,\nthis may cause memory corruption on the task stack. You have two options:\n\n- Use libc API calls instead of directly accessing \"struct _reent\" fields.\n- Switch ESP-IDF to use the Newlib implementation by setting CONFIG_LIBC_NEWLIB=y in sdkconfig.\n\n2. If your application uses a prebuilt library built with Newlib headers, you may encounter\nunexpected behavior when overriding stdin, stdout, and stderr. External prebuilt libraries\ncan only read these streams, so overriding them will not affect as it was for Newlib.\nYou have two options to fix this:\n\n- Rebuild the library with Picolibc headers that follow POSIX-standardized stdin, stdout,\n and stderr declarations.\n- Switch ESP-IDF to use the Newlib implementation by setting CONFIG_LIBC_NEWLIB=y in sdkconfig.", + "id": "LIBC_PICOLIBC_NEWLIB_COMPATIBILITY", + "name": "LIBC_PICOLIBC_NEWLIB_COMPATIBILITY", + "range": null, + "title": "Provides limited interoperability with libraries built using Newlib headers", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LIBC_MISC_IN_IRAM", + "name": "LIBC_MISC_IN_IRAM", + "range": null, + "title": "Place misc libc functions (abort/assert/stdatomics) in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this option to include be able to call the lock API from\ncode that runs while cache is disabled, e.g. IRAM interrupts.", + "id": "LIBC_LOCKS_PLACE_IN_IRAM", + "name": "LIBC_LOCKS_PLACE_IN_IRAM", + "range": null, + "title": "Place lock API in IRAM", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LIBC_STDOUT_LINE_ENDING_CRLF", + "name": "LIBC_STDOUT_LINE_ENDING_CRLF", + "range": null, + "title": "CRLF", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LIBC_STDOUT_LINE_ENDING_LF", + "name": "LIBC_STDOUT_LINE_ENDING_LF", + "range": null, + "title": "LF", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LIBC_STDOUT_LINE_ENDING_CR", + "name": "LIBC_STDOUT_LINE_ENDING_CR", + "range": null, + "title": "CR", + "type": "bool" + } + ], + "depends_on": "VFS_SUPPORT_IO", + "help": "This option allows configuring the desired line endings sent to console\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 occurrence of LF is replaced with CR\n\nThis option doesn't affect behavior of the UART driver (drivers/uart.h).", + "id": "component-config-libc-line-ending-for-console-output-C:-esp-v6.0-esp-idf-components-esp_libc-Kconfig-56", + "name": "LIBC_STDOUT_LINE_ENDING", + "title": "Line ending for console output", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LIBC_STDIN_LINE_ENDING_CRLF", + "name": "LIBC_STDIN_LINE_ENDING_CRLF", + "range": null, + "title": "CRLF", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LIBC_STDIN_LINE_ENDING_LF", + "name": "LIBC_STDIN_LINE_ENDING_LF", + "range": null, + "title": "LF", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LIBC_STDIN_LINE_ENDING_CR", + "name": "LIBC_STDIN_LINE_ENDING_CR", + "range": null, + "title": "CR", + "type": "bool" + } + ], + "depends_on": "VFS_SUPPORT_IO", + "help": "This option allows configuring which input sequence on console 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 occurrence of CR is replaced with LF\n\nThis option doesn't affect behavior of the UART driver (drivers/uart.h).", + "id": "component-config-libc-line-ending-for-console-input-C:-esp-v6.0-esp-idf-components-esp_libc-Kconfig-81", + "name": "LIBC_STDIN_LINE_ENDING", + "title": "Line ending for console input", + "type": "choice" + }, + { + "children": [], + "depends_on": "LIBC_NEWLIB", + "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/git/?p=newlib-cygwin.git;a=blob_plain;f=newlib/README;hb=HEAD\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.", + "id": "LIBC_NEWLIB_NANO_FORMAT", + "name": "LIBC_NEWLIB_NANO_FORMAT", + "range": null, + "title": "Enable 'nano' formatting options for printf/scanf family", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LIBC_TIME_SYSCALL_USE_RTC_HRT", + "name": "LIBC_TIME_SYSCALL_USE_RTC_HRT", + "range": null, + "title": "RTC and high-resolution timer", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LIBC_TIME_SYSCALL_USE_RTC", + "name": "LIBC_TIME_SYSCALL_USE_RTC", + "range": null, + "title": "RTC", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LIBC_TIME_SYSCALL_USE_HRT", + "name": "LIBC_TIME_SYSCALL_USE_HRT", + "range": null, + "title": "High-resolution timer", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LIBC_TIME_SYSCALL_USE_NONE", + "name": "LIBC_TIME_SYSCALL_USE_NONE", + "range": null, + "title": "None", + "type": "bool" + } + ], + "depends_on": null, + "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; they are defined as weak,\n so they could be overridden.\n If you want to customize gettimeofday() and other time functions,\n please choose this option and refer to the 'time.c' source file\n for the exact prototypes of these functions.\n\n- When RTC is used for timekeeping, two RTC_STORE registers are\n used to keep time in deep sleep mode.", + "id": "component-config-libc-timers-used-for-gettimeofday-function-C:-esp-v6.0-esp-idf-components-esp_libc-Kconfig-133", + "name": "LIBC_TIME_SYSCALL", + "title": "Timers used for gettimeofday function", + "type": "choice" + }, + { + "children": [], + "depends_on": "ESP_ROM_HAS_SUBOPTIMAL_NEWLIB_ON_MISALIGNED_MEMORY", + "help": "Enables performance-optimized implementations of memory and string functions\nwhen handling misaligned memory.\n\nRequire approximately 800\u20131000 bytes of IRAM.\n\nOptimized functions include:\n - memcpy\n - memset\n - memmove\n - str[n]cpy\n - str[n]cmp", + "id": "LIBC_OPTIMIZED_MISALIGNED_ACCESS", + "name": "LIBC_OPTIMIZED_MISALIGNED_ACCESS", + "range": null, + "title": "Use performance-optimized memXXX/strXXX functions on misaligned memory access", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Size of the buffer used to format assert failure messages.\n\nWhen assertions fail, the system formats a message containing the function name,\nfile name, line number, and the failed expression. This option controls the\nmaximum length of this message.\n\nIf you encounter truncated assert messages (especially with C++ templates or\nlong function names), increase this value. The default value of 200 bytes\nshould be sufficient for most cases, but complex template expressions may\nrequire larger buffers.", + "id": "LIBC_ASSERT_BUFFER_SIZE", + "name": "LIBC_ASSERT_BUFFER_SIZE", + "range": [ + 100, + 2048 + ], + "title": "Assert message buffer size", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-libc-C:-esp-v6.0-esp-idf-components-esp_libc-Kconfig-1", + "title": "LibC", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "STDATOMIC_S32C1I_SPIRAM_WORKAROUND", + "name": "STDATOMIC_S32C1I_SPIRAM_WORKAROUND", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_PRINT_IN_IRAM", + "name": "ESP_ROM_PRINT_IN_IRAM", + "range": null, + "title": "Place print functions in IRAM", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-rom-C:-esp-v6.0-esp-idf-components-esp_rom-Kconfig-1", + "title": "ESP-ROM", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_LOW", + "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_LOW", + "range": null, + "title": "Security level low", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_MEDIUM", + "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_MEDIUM", + "range": null, + "title": "Security level medium", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_HIGH", + "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_HIGH", + "range": null, + "title": "Security level high", + "type": "bool" + } + ], + "depends_on": "ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP && SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", + "help": "Configure the DPA protection security level", + "id": "component-config-esp-security-specific-crypto-dpa-protection-enable-crypto-dpa-protection-at-startup-dpa-protection-level-C:-esp-v6.0-esp-idf-components-esp_security-Kconfig-16", + "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL", + "title": "DPA protection level", + "type": "choice" + } + ], + "depends_on": "SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", + "help": "This config controls the DPA (Differential Power Analysis) protection\nknob for the crypto peripherals. DPA protection dynamically adjusts\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.", + "id": "ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP", + "name": "ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP", + "range": null, + "title": "Enable crypto DPA protection at startup", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", + "help": null, + "id": "ESP_CRYPTO_DPA_PROTECTION_LEVEL", + "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": "SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", + "id": "component-config-esp-security-specific-crypto-dpa-protection-C:-esp-v6.0-esp-idf-components-esp_security-Kconfig-3", + "title": "Crypto DPA Protection", + "type": "menu" + }, + { + "children": [], + "depends_on": "SOC_ECC_CONSTANT_TIME_POINT_MUL", + "help": "If enabled, the app startup code will burn the ECC_FORCE_CONST_TIME efuse bit to force the\nECC peripheral to always perform constant time point multiplication operations,\nirrespective of the ECC_MULT_SECURITY_MODE status bit that is present in the ECC_MULT_CONF_REG\nregister. By default, ESP-IDF configures the ECC peripheral to perform constant time point\nmultiplication operations, so enabling this config would provide security enhancement only in\nthe cases when trusted boot is not enabled and the attacker tries carrying out non-constant\ntime point multiplication operations by changing the default ESP-IDF configurations.\nPerforming constant time operations protect the ECC multiplication operations from timing attacks.\n\nFor targets that support Secure Boot using ECDSA-P384, the write-protection bit of the efuse\nbit could be shared by multiple other efuse bits and can be programmed by the application when\nSecure Boot is enabled.\nThus, you could select CONFIG_SECURE_BOOT_SKIP_WRITE_PROTECTION_SCA, in case you would like\nto skip the write-protection of the efuse bit.", + "id": "ESP_CRYPTO_FORCE_ECC_CONSTANT_TIME_POINT_MUL", + "name": "ESP_CRYPTO_FORCE_ECC_CONSTANT_TIME_POINT_MUL", + "range": null, + "title": "Forcefully enable ECC constant time point multiplication operations", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_ECDSA_P192_CURVE_DEFAULT_DISABLED", + "help": "By default, only the 256-bit curve operations are allowed. If this configuration is enabled,\nit will set the eFuse to allow ECDSA operations using both the 192-bit and 256-bit curves.", + "id": "ESP_ECDSA_ENABLE_P192_CURVE", + "name": "ESP_ECDSA_ENABLE_P192_CURVE", + "range": null, + "title": "Enable ECDSA 192-curve operations", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-security-specific-C:-esp-v6.0-esp-idf-components-esp_security-Kconfig-1", + "title": "ESP Security Specific", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CONSOLE_UART_DEFAULT", + "name": "ESP_CONSOLE_UART_DEFAULT", + "range": null, + "title": "Default: UART0", + "type": "bool" + }, + { + "children": [], + "depends_on": "(IDF_TARGET_ESP32S2 || IDF_TARGET_ESP32S3) && !TINY_USB && ", + "help": null, + "id": "ESP_CONSOLE_USB_CDC", + "name": "ESP_CONSOLE_USB_CDC", + "range": null, + "title": "USB CDC", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_USB_SERIAL_JTAG_SUPPORTED && ", + "help": null, + "id": "ESP_CONSOLE_USB_SERIAL_JTAG", + "name": "ESP_CONSOLE_USB_SERIAL_JTAG", + "range": null, + "title": "USB Serial/JTAG Controller", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CONSOLE_UART_CUSTOM", + "name": "ESP_CONSOLE_UART_CUSTOM", + "range": null, + "title": "Custom UART", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CONSOLE_NONE", + "name": "ESP_CONSOLE_NONE", + "range": null, + "title": "None", + "type": "bool" + } + ], + "depends_on": null, + "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.", + "id": "component-config-esp-stdio-channel-for-console-output-C:-esp-v6.0-esp-idf-components-esp_stdio-Kconfig-2", + "name": "ESP_CONSOLE_UART", + "title": "Channel for console output", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CONSOLE_SECONDARY_NONE", + "name": "ESP_CONSOLE_SECONDARY_NONE", + "range": null, + "title": "No secondary console", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP_CONSOLE_USB_SERIAL_JTAG && ", + "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.", + "id": "ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG", + "name": "ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG", + "range": null, + "title": "USB_SERIAL_JTAG PORT", + "type": "bool" + } + ], + "depends_on": "SOC_USB_SERIAL_JTAG_SUPPORTED", + "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.", + "id": "component-config-esp-stdio-channel-for-console-secondary-output-C:-esp-v6.0-esp-idf-components-esp_stdio-Kconfig-35", + "name": "ESP_CONSOLE_SECONDARY", + "title": "Channel for console secondary output", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED", + "name": "ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_CONSOLE_UART", + "name": "ESP_CONSOLE_UART", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CONSOLE_UART_CUSTOM_NUM_0", + "name": "ESP_CONSOLE_UART_CUSTOM_NUM_0", + "range": null, + "title": "UART0", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CONSOLE_UART_CUSTOM_NUM_1", + "name": "ESP_CONSOLE_UART_CUSTOM_NUM_1", + "range": null, + "title": "UART1", + "type": "bool" + } + ], + "depends_on": "ESP_CONSOLE_UART_CUSTOM", + "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.", + "id": "component-config-esp-stdio-uart-peripheral-to-use-for-console-output-0-1--C:-esp-v6.0-esp-idf-components-esp_stdio-Kconfig-68", + "name": "ESP_CONSOLE_UART_NUM", + "title": "UART peripheral to use for console output (0-1)", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_CONSOLE_UART_NUM", + "name": "ESP_CONSOLE_UART_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_CONSOLE_ROM_SERIAL_PORT_NUM", + "name": "ESP_CONSOLE_ROM_SERIAL_PORT_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_CONSOLE_UART_CUSTOM", + "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). Value -1 means to\ncontinue using the default console UART TX pin.\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.", + "id": "ESP_CONSOLE_UART_TX_GPIO", + "name": "ESP_CONSOLE_UART_TX_GPIO", + "range": null, + "title": "UART TX on GPIO", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_CONSOLE_UART_CUSTOM", + "help": "This GPIO is used for console UART RX input in the ESP-IDF Bootloader and the app (including\ndefault standard input of the app). Value -1 means to continue using the default console UART\nRX pin.\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.", + "id": "ESP_CONSOLE_UART_RX_GPIO", + "name": "ESP_CONSOLE_UART_RX_GPIO", + "range": null, + "title": "UART RX on GPIO", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_CONSOLE_UART", + "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.", + "id": "ESP_CONSOLE_UART_BAUDRATE", + "name": "ESP_CONSOLE_UART_BAUDRATE", + "range": [ + 1200, + 4000000 + ], + "title": "UART console baud rate", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_CONSOLE_USB_CDC", + "help": "Set the size of USB CDC RX buffer. Increase the buffer size if your application\nis often receiving data over USB CDC.", + "id": "ESP_CONSOLE_USB_CDC_RX_BUF_SIZE", + "name": "ESP_CONSOLE_USB_CDC_RX_BUF_SIZE", + "range": null, + "title": "Size of USB CDC RX buffer", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_CONSOLE_USB_CDC", + "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.", + "id": "ESP_CONSOLE_USB_CDC_SUPPORT_ETS_PRINTF", + "name": "ESP_CONSOLE_USB_CDC_SUPPORT_ETS_PRINTF", + "range": null, + "title": "Enable esp_rom_printf / ESP_EARLY_LOG via USB CDC", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-stdio-C:-esp-v6.0-esp-idf-components-esp_stdio-Kconfig-1", + "title": "ESP-STDIO", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "IDF_ENV_FPGA && ", + "help": null, + "id": "ESP_DEFAULT_CPU_FREQ_MHZ_40", + "name": "ESP_DEFAULT_CPU_FREQ_MHZ_40", + "range": null, + "title": "40 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_DEFAULT_CPU_FREQ_MHZ_80", + "name": "ESP_DEFAULT_CPU_FREQ_MHZ_80", + "range": null, + "title": "80 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_DEFAULT_CPU_FREQ_MHZ_160", + "name": "ESP_DEFAULT_CPU_FREQ_MHZ_160", + "range": null, + "title": "160 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_DEFAULT_CPU_FREQ_MHZ_240", + "name": "ESP_DEFAULT_CPU_FREQ_MHZ_240", + "range": null, + "title": "240 MHz", + "type": "bool" + } + ], + "depends_on": null, + "help": "CPU frequency to be set on application startup.", + "id": "component-config-esp-system-settings-cpu-frequency-C:-esp-v6.0-esp-idf-components-esp_system-.-port-soc-esp32-Kconfig.cpu-1", + "name": "ESP_DEFAULT_CPU_FREQ_MHZ", + "title": "CPU frequency", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_DEFAULT_CPU_FREQ_MHZ", + "name": "ESP_DEFAULT_CPU_FREQ_MHZ", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_SYSTEM_SINGLE_CORE_MODE", + "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.\nThis option depends on the CONFIG_ESP_SYSTEM_SINGLE_CORE_MODE option because RTC fast memory\ncan be accessed only by PRO_CPU core.", + "id": "ESP32_RTCDATA_IN_FAST_MEM", + "name": "ESP32_RTCDATA_IN_FAST_MEM", + "range": null, + "title": "Place RTC_DATA_ATTR and RTC_RODATA_ATTR variables into RTC fast memory segment", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP32_USE_FIXED_STATIC_RAM_SIZE", + "help": "RAM size dedicated for static variables (.data & .bss sections).\nPlease note that the actual length will be reduced by BTDM_RESERVE_DRAM if Bluetooth\ncontroller is enabled.", + "id": "ESP32_FIXED_STATIC_RAM_SIZE", + "name": "ESP32_FIXED_STATIC_RAM_SIZE", + "range": null, + "title": "Fixed Static RAM size", + "type": "hex" + } + ], + "depends_on": null, + "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 ESP32_FIXED_STATIC_RAM_SIZE", + "id": "ESP32_USE_FIXED_STATIC_RAM_SIZE", + "name": "ESP32_USE_FIXED_STATIC_RAM_SIZE", + "range": null, + "title": "Use fixed static RAM size", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_SYSTEM_SINGLE_CORE_MODE", + "help": "If enabled, application can use IRAM as byte accessible region for storing data\n(Note: IRAM region cannot be used as task stack)\n\nThis is possible due to handling of exceptions `LoadStoreError (3)` and `LoadStoreAlignmentError (9)`\nEach unaligned read/write access will incur a penalty of maximum of 167 CPU cycles.", + "id": "ESP32_IRAM_AS_8BIT_ACCESSIBLE_MEMORY", + "name": "ESP32_IRAM_AS_8BIT_ACCESSIBLE_MEMORY", + "range": null, + "title": "Enable IRAM as 8 bit accessible memory", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "!ESP32_TRAX", + "help": "Reserve parts of SRAM1 for app IRAM which was previously reserved for bootloader DRAM.\nIf booting an app on an older bootloader from before this option was introduced, the app will fail\nto boot due to not recognizing the new IRAM memory area.\n\nIf this is the case please test carefully before pushing out any OTA updates.", + "id": "ESP_SYSTEM_ESP32_SRAM1_REGION_AS_IRAM", + "name": "ESP_SYSTEM_ESP32_SRAM1_REGION_AS_IRAM", + "range": null, + "title": "Reserve parts of SRAM1 for app IRAM (WARNING, read help before enabling)", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-system-settings-memory-non-backward-compatible-options-C:-esp-v6.0-esp-idf-components-esp_system-.-port-soc-esp32-Kconfig.memory-44", + "title": "Non-backward compatible options", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-esp-system-settings-memory-C:-esp-v6.0-esp-idf-components-esp_system-.-port-soc-esp32-Kconfig.memory-1", + "title": "Memory", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_MEMMAP_TRACEMEM", + "name": "ESP32_MEMMAP_TRACEMEM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_MEMMAP_TRACEMEM_TWOBANKS", + "name": "ESP32_MEMMAP_TRACEMEM_TWOBANKS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP32_TRAX && !ESP_SYSTEM_SINGLE_CORE_MODE", + "help": "The ESP32 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\n# Memory to reverse for trace, used in linker script", + "id": "ESP32_TRAX_TWOBANKS", + "name": "ESP32_TRAX_TWOBANKS", + "range": null, + "title": "Reserve memory for tracing both pro as well as app cpu execution", + "type": "bool" + } + ], + "depends_on": null, + "help": "The ESP32 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.", + "id": "ESP32_TRAX", + "name": "ESP32_TRAX", + "range": null, + "title": "Use TRAX tracing feature", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_TRACEMEM_RESERVE_DRAM", + "name": "ESP32_TRACEMEM_RESERVE_DRAM", + "range": null, + "title": null, + "type": "hex" + } + ], + "depends_on": null, + "id": "component-config-esp-system-settings-trace-memory-C:-esp-v6.0-esp-idf-components-esp_system-.-port-soc-esp32-Kconfig.tracemem-1", + "title": "Trace memory", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": "The following system functions will be placed in IRAM if this option is enabled:\n- system startup\n- system time\n- system error\n- system restart\n- system crosscore\n- system debug\n- system APB backup DMA lock\n- system application tick hook\n- Unified Behavior Sanitizer (UBSAN) hook\n- Interrupt watchdog handler\n- XTAL32K watchdog timer\n- IPC and IPC ISR", + "id": "ESP_SYSTEM_IN_IRAM", + "name": "ESP_SYSTEM_IN_IRAM", + "range": null, + "title": "Place system functions in IRAM", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "!ESP_SYSTEM_GDBSTUB_RUNTIME && ", + "help": "Outputs the relevant registers over the serial port and halt the\nprocessor. Needs a manual reset to restart.", + "id": "ESP_SYSTEM_PANIC_PRINT_HALT", + "name": "ESP_SYSTEM_PANIC_PRINT_HALT", + "range": null, + "title": "Print registers and halt", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP_SYSTEM_GDBSTUB_RUNTIME && ", + "help": "Outputs the relevant registers over the serial port and immediately\nreset the processor.", + "id": "ESP_SYSTEM_PANIC_PRINT_REBOOT", + "name": "ESP_SYSTEM_PANIC_PRINT_REBOOT", + "range": null, + "title": "Print registers and reboot", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP_SYSTEM_GDBSTUB_RUNTIME && ", + "help": "Just resets the processor without outputting anything", + "id": "ESP_SYSTEM_PANIC_SILENT_REBOOT", + "name": "ESP_SYSTEM_PANIC_SILENT_REBOOT", + "range": null, + "title": "Silent reboot", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_GDBSTUB_ENABLED && ", + "help": "Invoke gdbstub on the serial port, allowing for gdb to attach to it to do a postmortem\nof the crash.", + "id": "ESP_SYSTEM_PANIC_GDBSTUB", + "name": "ESP_SYSTEM_PANIC_GDBSTUB", + "range": null, + "title": "GDBStub on panic", + "type": "bool" + } + ], + "depends_on": null, + "help": "If FreeRTOS detects unexpected behaviour or an unhandled exception, the panic handler is\ninvoked. Configure the panic handler's action here.", + "id": "component-config-esp-system-settings-panic-handler-behaviour-C:-esp-v6.0-esp-idf-components-esp_system-Kconfig-30", + "name": "ESP_SYSTEM_PANIC", + "title": "Panic handler behaviour", + "type": "choice" + }, + { + "children": [], + "depends_on": "ESP_SYSTEM_PANIC_PRINT_REBOOT", + "help": "After the panic handler executes, you can specify a number of seconds to\nwait before the device reboots.", + "id": "ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS", + "name": "ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS", + "range": [ + 0, + 99 + ], + "title": "Panic reboot delay (Seconds)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Only initialize and use the main core.", + "id": "ESP_SYSTEM_SINGLE_CORE_MODE", + "name": "ESP_SYSTEM_SINGLE_CORE_MODE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_SYSTEM_RTC_EXT_XTAL", + "name": "ESP_SYSTEM_RTC_EXT_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_SYSTEM_RTC_EXT_OSC", + "name": "ESP_SYSTEM_RTC_EXT_OSC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_SYSTEM_RTC_EXT_XTAL", + "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).", + "id": "ESP_SYSTEM_RTC_EXT_XTAL_BOOTSTRAP_CYCLES", + "name": "ESP_SYSTEM_RTC_EXT_XTAL_BOOTSTRAP_CYCLES", + "range": null, + "title": "Bootstrap cycles for external 32kHz crystal", + "type": "int" + }, + { + "children": [], + "depends_on": "SOC_RTC_FAST_MEM_SUPPORTED", + "help": null, + "id": "ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK", + "name": "ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK", + "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. Speed wise RTC fast memory operates on\nAPB clock and hence does not have much performance impact.", + "id": "ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP", + "name": "ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP", + "range": null, + "title": "Enable RTC fast memory for dynamic allocations", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "When selected, no backtracing will be performed at runtime. By using idf.py monitor, it\nis still possible to get a backtrace when a panic occurs.", + "id": "ESP_SYSTEM_NO_BACKTRACE", + "name": "ESP_SYSTEM_NO_BACKTRACE", + "range": null, + "title": "No backtracing", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "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\nunwinding and generation of both .eh_frame and .eh_frame_hdr sections, resulting in a bigger binary\nsize (20% to 100% larger). The main purpose of this option is to be able to have a backtrace parsed\nand printed by the program itself, regardless of the serial monitor used.\nThis option is not recommended to be used for production.", + "id": "ESP_SYSTEM_USE_EH_FRAME", + "name": "ESP_SYSTEM_USE_EH_FRAME", + "range": null, + "title": "Generate and use eh_frame for backtracing", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "This configuration allows the compiler to allocate CPU register s0 as the frame pointer. The main usage\nof the frame pointer is to be able to generate a backtrace from the panic handler on exception.\nEnabling this option results in bigger and slightly slower code since all functions will have\nto populate this register and won't be able to use it as a general-purpose register anymore.", + "id": "ESP_SYSTEM_USE_FRAME_POINTER", + "name": "ESP_SYSTEM_USE_FRAME_POINTER", + "range": null, + "title": "Use CPU Frame Pointer register", + "type": "bool" + } + ], + "depends_on": "IDF_TARGET_ARCH_RISCV", + "help": "Configure how backtracing will be performed at runtime when a panic occurs.", + "id": "component-config-esp-system-settings-backtracing-method-C:-esp-v6.0-esp-idf-components-esp_system-Kconfig-126", + "name": "ESP_BACKTRACING_METHOD", + "title": "Backtracing method", + "type": "choice" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "SOC_MEMPROT_SUPPORTED && ", + "help": "This option enables memory protection using the Permission Control Module (PMS).", + "id": "ESP_SYSTEM_MEMPROT_PMS", + "name": "ESP_SYSTEM_MEMPROT_PMS", + "range": null, + "title": "Enable Permission Control Module (PMS) configurations", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_CPU_IDRAM_SPLIT_USING_PMP && !SECURE_ENABLE_TEE && ", + "help": "This option enables memory protection using CPU PMP.", + "id": "ESP_SYSTEM_MEMPROT_PMP", + "name": "ESP_SYSTEM_MEMPROT_PMP", + "range": null, + "title": "Enable CPU's Physical Memory Protection (PMP) configurations", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_ENABLE_TEE && ", + "help": "This option enables the default memory protection provided by TEE.", + "id": "ESP_SYSTEM_MEMPROT_TEE", + "name": "ESP_SYSTEM_MEMPROT_TEE", + "range": null, + "title": "Enable Trusted Execution Environment (TEE) configurations", + "type": "bool" + } + ], + "depends_on": "ESP_SYSTEM_MEMPROT", + "help": null, + "id": "component-config-esp-system-settings-enable-memory-protection-memory-protection-configurations-C:-esp-v6.0-esp-idf-components-esp_system-Kconfig-173", + "name": "ESP_SYSTEM_MEMPROT_MODE", + "title": "Memory Protection configurations", + "type": "choice" + }, + { + "children": [], + "depends_on": "ESP_SYSTEM_MEMPROT && ESP_SYSTEM_MEMPROT_PMS", + "help": "Once locked, memory protection settings cannot be changed anymore.\nThe lock is reset only on the chip startup.", + "id": "ESP_SYSTEM_MEMPROT_PMS_LOCK", + "name": "ESP_SYSTEM_MEMPROT_PMS_LOCK", + "range": null, + "title": "Lock memory protection settings", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_SYSTEM_MEMPROT && IDF_TARGET_ARCH_RISCV && SOC_LP_CORE_SUPPORTED && ESP_SYSTEM_MEMPROT_PMP", + "help": "If enabled, user can run code available in LP Core image.\n\nWarning: on ESP32-P4 this will also mark the memory area used for BOOTLOADER_RESERVE_RTC_MEM\nas executable. If you consider this a security risk then do not activate this option.", + "id": "ESP_SYSTEM_MEMPROT_PMP_LP_CORE_RESERVE_MEM_EXEC", + "name": "ESP_SYSTEM_MEMPROT_PMP_LP_CORE_RESERVE_MEM_EXEC", + "range": null, + "title": "Make LP core reserved memory executable from HP core", + "type": "bool" + } + ], + "depends_on": "SOC_CPU_IDRAM_SPLIT_USING_PMP || SECURE_ENABLE_TEE || SOC_MEMPROT_SUPPORTED", + "help": "This option enables memory protection for the valid memory regions.\nThis feature also automatically splits the ROM, RAM and flash memory into data and\ninstruction segments and sets Read/Execute permissions for the instruction part\n(below given splitting address) and Read/Write permissions for the data part\n(above the splitting address). The memory protection is effective on all access\nthrough the IRAM0 and DRAM0 buses.\n\nNote: allocating memory with MALLOC_CAP_EXEC capability is not possible when this config is enabled.", + "id": "ESP_SYSTEM_MEMPROT", + "name": "ESP_SYSTEM_MEMPROT", + "range": null, + "title": "Enable memory protection", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Config system event queue size in different application.", + "id": "ESP_SYSTEM_EVENT_QUEUE_SIZE", + "name": "ESP_SYSTEM_EVENT_QUEUE_SIZE", + "range": null, + "title": "System event queue size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Config system event task stack size in different application.", + "id": "ESP_SYSTEM_EVENT_TASK_STACK_SIZE", + "name": "ESP_SYSTEM_EVENT_TASK_STACK_SIZE", + "range": null, + "title": "Event loop task stack size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "ESP_MAIN_TASK_STACK_SIZE", + "name": "ESP_MAIN_TASK_STACK_SIZE", + "range": null, + "title": "Main task stack size", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_MAIN_TASK_AFFINITY_CPU0", + "name": "ESP_MAIN_TASK_AFFINITY_CPU0", + "range": null, + "title": "CPU0", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_UNICORE && ", + "help": null, + "id": "ESP_MAIN_TASK_AFFINITY_CPU1", + "name": "ESP_MAIN_TASK_AFFINITY_CPU1", + "range": null, + "title": "CPU1", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_MAIN_TASK_AFFINITY_NO_AFFINITY", + "name": "ESP_MAIN_TASK_AFFINITY_NO_AFFINITY", + "range": null, + "title": "No affinity", + "type": "bool" + } + ], + "depends_on": null, + "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.", + "id": "component-config-esp-system-settings-main-task-core-affinity-C:-esp-v6.0-esp-idf-components-esp_system-Kconfig-240", + "name": "ESP_MAIN_TASK_AFFINITY", + "title": "Main task core affinity", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAIN_TASK_AFFINITY", + "name": "ESP_MAIN_TASK_AFFINITY", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": null, + "help": "Minimal value of size, in bytes, accepted to execute a expression\nwith shared stack.", + "id": "ESP_MINIMAL_SHARED_STACK_SIZE", + "name": "ESP_MINIMAL_SHARED_STACK_SIZE", + "range": null, + "title": "Minimal allowed size for shared stack", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_INT_WDT", + "help": "The timeout of the watchdog, in milliseconds. Make this higher than the FreeRTOS tick rate.", + "id": "ESP_INT_WDT_TIMEOUT_MS", + "name": "ESP_INT_WDT_TIMEOUT_MS", + "range": [ + 10, + 10000 + ], + "title": "Interrupt watchdog timeout (ms)", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_INT_WDT && !FREERTOS_UNICORE", + "help": "Also detect if interrupts on CPU 1 are disabled for too long.", + "id": "ESP_INT_WDT_CHECK_CPU1", + "name": "ESP_INT_WDT_CHECK_CPU1", + "range": null, + "title": "Also watch CPU1 tick interrupt", + "type": "bool" + } + ], + "depends_on": null, + "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.", + "id": "ESP_INT_WDT", + "name": "ESP_INT_WDT", + "range": null, + "title": "Interrupt watchdog", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_TASK_WDT_EN", + "help": null, + "id": "ESP_TASK_WDT_USE_ESP_TIMER", + "name": "ESP_TASK_WDT_USE_ESP_TIMER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_TASK_WDT_INIT", + "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)", + "id": "ESP_TASK_WDT_PANIC", + "name": "ESP_TASK_WDT_PANIC", + "range": null, + "title": "Invoke panic handler on Task Watchdog timeout", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_TASK_WDT_INIT", + "help": "Timeout period configuration for the Task Watchdog Timer in seconds.\nThis is also configurable at run time (see Task Watchdog Timer API Reference)", + "id": "ESP_TASK_WDT_TIMEOUT_S", + "name": "ESP_TASK_WDT_TIMEOUT_S", + "range": [ + 1, + 60 + ], + "title": "Task Watchdog timeout period (seconds)", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_TASK_WDT_INIT", + "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.", + "id": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0", + "name": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0", + "range": null, + "title": "Watch CPU0 Idle Task", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_TASK_WDT_INIT && !FREERTOS_UNICORE", + "help": "If this option is enabled, the Task Watchdog Timer will wach the CPU1\nIdle Task.", + "id": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1", + "name": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1", + "range": null, + "title": "Watch CPU1 Idle Task", + "type": "bool" + } + ], + "depends_on": "ESP_TASK_WDT_EN", + "help": "Enabling this option will cause the Task Watchdog Timer to be initialized\nautomatically at startup.", + "id": "ESP_TASK_WDT_INIT", + "name": "ESP_TASK_WDT_INIT", + "range": null, + "title": "Initialize Task Watchdog Timer on startup", + "type": "bool" + } + ], + "depends_on": null, + "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)", + "id": "ESP_TASK_WDT_EN", + "name": "ESP_TASK_WDT_EN", + "range": null, + "title": "Enable Task Watchdog Timer", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_XT_WDT", + "help": "Timeout period configuration for the XTAL32K watchdog timer based on RTC_CLK.", + "id": "ESP_XT_WDT_TIMEOUT", + "name": "ESP_XT_WDT_TIMEOUT", + "range": null, + "title": "XTAL32K watchdog timeout period", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_XT_WDT", + "help": "Enable this to automatically switch to BACKUP32K_CLK as the source of RTC_SLOW_CLK when\nthe watchdog timer expires.", + "id": "ESP_XT_WDT_BACKUP_CLK_ENABLE", + "name": "ESP_XT_WDT_BACKUP_CLK_ENABLE", + "range": null, + "title": "Automatically switch to BACKUP32K_CLK when timer expires", + "type": "bool" + } + ], + "depends_on": "SOC_XT_WDT_SUPPORTED && (ESP_SYSTEM_RTC_EXT_OSC || ESP_SYSTEM_RTC_EXT_XTAL)", + "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.", + "id": "ESP_XT_WDT", + "name": "ESP_XT_WDT", + "range": null, + "title": "Initialize XTAL32K watchdog timer on startup", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "ESP_PANIC_HANDLER_IRAM", + "name": "ESP_PANIC_HANDLER_IRAM", + "range": null, + "title": "Place panic handler code in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP32_TRAX && !ESP32S2_TRAX && !ESP32S3_TRAX", + "help": "Debug stubs are used by OpenOCD to execute pre-compiled onboard code\nwhich does some useful debugging stuff, e.g. GCOV data dump.", + "id": "ESP_DEBUG_STUBS_ENABLE", + "name": "ESP_DEBUG_STUBS_ENABLE", + "range": null, + "title": "OpenOCD debug stubs", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DEBUG_HAVE_OCD_STUB_BINS", + "help": "OpenOCD uses stub code to access flash during programming or when inserting and removing\nSW flash breakpoints.\nTo execute stub code, OpenOCD allocates memory on the target device, backs up the existing memory,\nloads the stub binary, runs the binary, and then restores the original memory.\nThis process can be time-consuming, especially when using USB serial JTAG.\nBy enabling this option, 8K of memory in RAM will be preallocated with the stub code,\neliminating the need to back up and restore the memory region.", + "id": "ESP_DEBUG_INCLUDE_OCD_STUB_BINS", + "name": "ESP_DEBUG_INCLUDE_OCD_STUB_BINS", + "range": null, + "title": "Preload OpenOCD stub binaries to speed up debugging. 8K memory will be reserved", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "The FreeRTOS panic and unhandled exception handlers can detect a JTAG OCD debugger and\ninstead of panicking, have the debugger stop on the offending instruction.", + "id": "ESP_DEBUG_OCDAWARE", + "name": "ESP_DEBUG_OCDAWARE", + "range": null, + "title": "Make exception and panic handlers JTAG/OCD aware", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "IDF_TARGET_ESP32 && ", + "help": "Using level 5 interrupt for Interrupt Watchdog, IPC_ISR and other system checks.", + "id": "ESP_SYSTEM_CHECK_INT_LEVEL_5", + "name": "ESP_SYSTEM_CHECK_INT_LEVEL_5", + "range": null, + "title": "Level 5 interrupt", + "type": "bool" + }, + { + "children": [], + "depends_on": "!BTDM_CTRL_HLI && ", + "help": "Using level 4 interrupt for Interrupt Watchdog, IPC_ISR and other system checks.", + "id": "ESP_SYSTEM_CHECK_INT_LEVEL_4", + "name": "ESP_SYSTEM_CHECK_INT_LEVEL_4", + "range": null, + "title": "Level 4 interrupt", + "type": "bool" + } + ], + "depends_on": null, + "help": "Interrupt level to use for Interrupt Watchdog, IPC_ISR and other system checks.", + "id": "component-config-esp-system-settings-interrupt-level-to-use-for-interrupt-watchdog-and-other-system-checks-C:-esp-v6.0-esp-idf-components-esp_system-Kconfig-426", + "name": "ESP_SYSTEM_CHECK_INT_LEVEL", + "title": "Interrupt level to use for Interrupt Watchdog and other system checks", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "If set, the first time the app boots it will disable the BASIC ROM Console\npermanently (by burning an eFuse).\n\nOtherwise, the BASIC ROM Console starts on reset if no valid bootloader is\nread from the flash.\n\n(Enabling secure boot also disables the BASIC ROM Console by default.)", + "id": "ESP32_DISABLE_BASIC_ROM_CONSOLE", + "name": "ESP32_DISABLE_BASIC_ROM_CONSOLE", + "range": null, + "title": "Permanently disable BASIC ROM Console", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP_SYSTEM_SINGLE_CORE_MODE && SPIRAM", + "help": null, + "id": "ESP32_ECO3_CACHE_LOCK_FIX", + "name": "ESP32_ECO3_CACHE_LOCK_FIX", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_ASSIST_DEBUG_SUPPORTED", + "help": "This config allows to trigger a panic interrupt when Stack Pointer register goes out of allocated stack\nmemory bounds.", + "id": "ESP_SYSTEM_HW_STACK_GUARD", + "name": "ESP_SYSTEM_HW_STACK_GUARD", + "range": null, + "title": "Hardware stack guard", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32C2 || IDF_TARGET_ESP32S3 || IDF_TARGET_ESP32C6 || IDF_TARGET_ESP32H2", + "help": "This configuration helps to address an BBPLL inaccurate issue when boot from certain bootloader version,\nwhich may increase about the boot-up time by about 200 us. Disable this when your bootloader is built with\nESP-IDF version v5.2 and above.", + "id": "ESP_SYSTEM_BBPLL_RECALIB", + "name": "ESP_SYSTEM_BBPLL_RECALIB", + "range": null, + "title": "Re-calibration BBPLL at startup", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_ASSIST_DEBUG_SUPPORTED", + "help": "This option will enable the PC recording function of assist_debug module. The PC value of the CPU will be\nrecorded to PC record register in assist_debug module in real time. When an exception occurs and the CPU\nis reset, this register will be kept, then we can use the recorded PC to debug the causes of the reset.", + "id": "ESP_SYSTEM_HW_PC_RECORD", + "name": "ESP_SYSTEM_HW_PC_RECORD", + "range": null, + "title": "Hardware PC recording", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-system-settings-C:-esp-v6.0-esp-idf-components-esp_system-Kconfig-2", + "title": "ESP System Settings", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_IPC_ENABLE", + "name": "ESP_IPC_ENABLE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "ESP_IPC_TASK_STACK_SIZE", + "name": "ESP_IPC_TASK_STACK_SIZE", + "range": [ + 512, + 65536 + ], + "title": "Inter-Processor Call (IPC) task stack size", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_IPC_ENABLE", + "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.", + "id": "ESP_IPC_USES_CALLERS_PRIORITY", + "name": "ESP_IPC_USES_CALLERS_PRIORITY", + "range": null, + "title": "IPC runs at caller's priority", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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 intended 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).", + "id": "ESP_IPC_ISR_ENABLE", + "name": "ESP_IPC_ISR_ENABLE", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-ipc-inter-processor-call--C:-esp-v6.0-esp-idf-components-esp_system-Kconfig-475", + "title": "IPC (Inter-Processor Call)", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "!IDF_TARGET_ESP32P4 && !IDF_TARGET_ESP32H4", + "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.", + "id": "FREERTOS_SMP", + "name": "FREERTOS_SMP", + "range": null, + "title": "Run the Amazon SMP FreeRTOS kernel instead (FEATURE UNDER DEVELOPMENT)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "FREERTOS_UNICORE", + "name": "FREERTOS_UNICORE", + "range": null, + "title": "Run FreeRTOS only on first core", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Sets the FreeRTOS tick interrupt frequency in Hz (see configTICK_RATE_HZ documentation for more\ndetails).", + "id": "FREERTOS_HZ", + "name": "FREERTOS_HZ", + "range": [ + 1, + 1000 + ], + "title": "configTICK_RATE_HZ", + "type": "int" + }, + { + "children": [], + "depends_on": "FREERTOS_UNICORE && !FREERTOS_SMP", + "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).", + "id": "FREERTOS_OPTIMIZED_SCHEDULER", + "name": "FREERTOS_OPTIMIZED_SCHEDULER", + "range": null, + "title": "configUSE_PORT_OPTIMISED_TASK_SELECTION", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Do not check for stack overflows (configCHECK_FOR_STACK_OVERFLOW = 0)", + "id": "FREERTOS_CHECK_STACKOVERFLOW_NONE", + "name": "FREERTOS_CHECK_STACKOVERFLOW_NONE", + "range": null, + "title": "No checking", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "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)", + "id": "FREERTOS_CHECK_STACKOVERFLOW_PTRVAL", + "name": "FREERTOS_CHECK_STACKOVERFLOW_PTRVAL", + "range": null, + "title": "Check by stack pointer value (Method 1)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "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)", + "id": "FREERTOS_CHECK_STACKOVERFLOW_CANARY", + "name": "FREERTOS_CHECK_STACKOVERFLOW_CANARY", + "range": null, + "title": "Check using canary bytes (Method 2)", + "type": "bool" + } + ], + "depends_on": null, + "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.", + "id": "component-config-freertos-kernel-configcheck_for_stack_overflow-C:-esp-v6.0-esp-idf-components-freertos-Kconfig-51", + "name": "FREERTOS_CHECK_STACKOVERFLOW", + "title": "configCHECK_FOR_STACK_OVERFLOW", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS", + "name": "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS", + "range": [ + 1, + 256 + ], + "title": "configNUM_THREAD_LOCAL_STORAGE_POINTERS", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "FREERTOS_IDLE_TASK_STACKSIZE", + "name": "FREERTOS_IDLE_TASK_STACKSIZE", + "range": [ + 768, + 32768 + ], + "title": "configMINIMAL_STACK_SIZE (Idle task stack size)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "FREERTOS_USE_IDLE_HOOK", + "name": "FREERTOS_USE_IDLE_HOOK", + "range": null, + "title": "configUSE_IDLE_HOOK", + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_SMP", + "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 vApplicationPassiveIdleHook( void );``\n- ``vApplicationPassiveIdleHook()`` is called from FreeRTOS minimal idle task(s)", + "id": "FREERTOS_USE_PASSIVE_IDLE_HOOK", + "name": "FREERTOS_USE_PASSIVE_IDLE_HOOK", + "range": null, + "title": "Use FreeRTOS minimal idle hook", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "FREERTOS_USE_TICK_HOOK", + "name": "FREERTOS_USE_TICK_HOOK", + "range": null, + "title": "configUSE_TICK_HOOK", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "FREERTOS_MAX_TASK_NAME_LEN", + "name": "FREERTOS_MAX_TASK_NAME_LEN", + "range": [ + 1, + 256 + ], + "title": "configMAX_TASK_NAME_LEN", + "type": "int" + }, + { + "children": [], + "depends_on": "!IDF_TARGET_LINUX", + "help": "Enable backward compatibility with APIs prior to FreeRTOS v8.0.0. (see\nconfigENABLE_BACKWARD_COMPATIBILITY documentation for more details).", + "id": "FREERTOS_ENABLE_BACKWARD_COMPATIBILITY", + "name": "FREERTOS_ENABLE_BACKWARD_COMPATIBILITY", + "range": null, + "title": "configENABLE_BACKWARD_COMPATIBILITY", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "FREERTOS_USE_TIMERS", + "help": "Sets the timer task's name (see configTIMER_SERVICE_TASK_NAME documentation for more details).", + "id": "FREERTOS_TIMER_SERVICE_TASK_NAME", + "name": "FREERTOS_TIMER_SERVICE_TASK_NAME", + "range": null, + "title": "configTIMER_SERVICE_TASK_NAME", + "type": "string" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "FREERTOS_TIMER_TASK_AFFINITY_CPU0", + "name": "FREERTOS_TIMER_TASK_AFFINITY_CPU0", + "range": null, + "title": "CPU0", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_UNICORE && ", + "help": null, + "id": "FREERTOS_TIMER_TASK_AFFINITY_CPU1", + "name": "FREERTOS_TIMER_TASK_AFFINITY_CPU1", + "range": null, + "title": "CPU1", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FREERTOS_TIMER_TASK_NO_AFFINITY", + "name": "FREERTOS_TIMER_TASK_NO_AFFINITY", + "range": null, + "title": "No affinity", + "type": "bool" + } + ], + "depends_on": "FREERTOS_USE_TIMERS", + "help": "Sets the timer task's core affinity\n(see configTIMER_SERVICE_TASK_CORE_AFFINITY documentation for more details).", + "id": "component-config-freertos-kernel-configuse_timers-configtimer_service_task_core_affinity-C:-esp-v6.0-esp-idf-components-freertos-Kconfig-187", + "name": "FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY", + "title": "configTIMER_SERVICE_TASK_CORE_AFFINITY", + "type": "choice" + }, + { + "children": [], + "depends_on": "FREERTOS_USE_TIMERS", + "help": null, + "id": "FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY", + "name": "FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": "FREERTOS_USE_TIMERS", + "help": "Sets the timer task's priority (see configTIMER_TASK_PRIORITY documentation for more details).", + "id": "FREERTOS_TIMER_TASK_PRIORITY", + "name": "FREERTOS_TIMER_TASK_PRIORITY", + "range": [ + 1, + 25 + ], + "title": "configTIMER_TASK_PRIORITY", + "type": "int" + }, + { + "children": [], + "depends_on": "FREERTOS_USE_TIMERS", + "help": "Set the timer task's stack size (see configTIMER_TASK_STACK_DEPTH documentation for more details).", + "id": "FREERTOS_TIMER_TASK_STACK_DEPTH", + "name": "FREERTOS_TIMER_TASK_STACK_DEPTH", + "range": [ + 1536, + 32768 + ], + "title": "configTIMER_TASK_STACK_DEPTH", + "type": "int" + }, + { + "children": [], + "depends_on": "FREERTOS_USE_TIMERS", + "help": "Set the timer task's command queue length (see configTIMER_QUEUE_LENGTH documentation for more\ndetails).", + "id": "FREERTOS_TIMER_QUEUE_LENGTH", + "name": "FREERTOS_TIMER_QUEUE_LENGTH", + "range": [ + 5, + 20 + ], + "title": "configTIMER_QUEUE_LENGTH", + "type": "int" + } + ], + "depends_on": null, + "help": "Enable FreeRTOS Software Timers. Normally the timer task will only get pulled into the build\nand created if any software timer related functions are used. This is achieved through IDF\ndefining a weak empty function for xTimerCreateTimerTask, which should take effect if timers.c\nis not pulled into the build.\n\nIn certain special cases (if you use configUSE_TRACE_FACILITY=y and event groups) the linker will\nstill pull in the xTimerCreateTimerTask from timers.c even if the function that utilized it gets\ndiscarded due to not being used.\n\nIn these cases you can use this option to force the timer task to be disabled.", + "id": "FREERTOS_USE_TIMERS", + "name": "FREERTOS_USE_TIMERS", + "range": null, + "title": "configUSE_TIMERS", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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", + "id": "FREERTOS_QUEUE_REGISTRY_SIZE", + "name": "FREERTOS_QUEUE_REGISTRY_SIZE", + "range": [ + 0, + 20 + ], + "title": "configQUEUE_REGISTRY_SIZE", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES", + "name": "FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES", + "range": [ + 1, + 32 + ], + "title": "configTASK_NOTIFICATION_ARRAY_ENTRIES", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "FREERTOS_USE_TRACE_FACILITY", + "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).", + "id": "FREERTOS_USE_STATS_FORMATTING_FUNCTIONS", + "name": "FREERTOS_USE_STATS_FORMATTING_FUNCTIONS", + "range": null, + "title": "configUSE_STATS_FORMATTING_FUNCTIONS", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enables additional structure members and functions to assist with execution visualization and tracing\n(see configUSE_TRACE_FACILITY documentation for more details).", + "id": "FREERTOS_USE_TRACE_FACILITY", + "name": "FREERTOS_USE_TRACE_FACILITY", + "range": null, + "title": "configUSE_TRACE_FACILITY", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable list integrity checker\n(see configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES documentation for more details).", + "id": "FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES", + "name": "FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES", + "range": null, + "title": "configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_SMP && FREERTOS_USE_STATS_FORMATTING_FUNCTIONS", + "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.", + "id": "FREERTOS_VTASKLIST_INCLUDE_COREID", + "name": "FREERTOS_VTASKLIST_INCLUDE_COREID", + "range": null, + "title": "Enable display of xCoreID in vTaskList", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "configRUN_TIME_COUNTER_TYPE is set to uint32_t", + "id": "FREERTOS_RUN_TIME_COUNTER_TYPE_U32", + "name": "FREERTOS_RUN_TIME_COUNTER_TYPE_U32", + "range": null, + "title": "uint32_t", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "configRUN_TIME_COUNTER_TYPE is set to uint64_t", + "id": "FREERTOS_RUN_TIME_COUNTER_TYPE_U64", + "name": "FREERTOS_RUN_TIME_COUNTER_TYPE_U64", + "range": null, + "title": "uint64_t", + "type": "bool" + } + ], + "depends_on": "FREERTOS_GENERATE_RUN_TIME_STATS", + "help": "Sets the data type used for the FreeRTOS run time stats. A larger data type can be used to reduce the\nfrequency of the counter overflowing.", + "id": "component-config-freertos-kernel-configgenerate_run_time_stats-configrun_time_counter_type-C:-esp-v6.0-esp-idf-components-freertos-Kconfig-300", + "name": "FREERTOS_RUN_TIME_COUNTER_TYPE", + "title": "configRUN_TIME_COUNTER_TYPE", + "type": "choice" + } + ], + "depends_on": null, + "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.", + "id": "FREERTOS_GENERATE_RUN_TIME_STATS", + "name": "FREERTOS_GENERATE_RUN_TIME_STATS", + "range": null, + "title": "configGENERATE_RUN_TIME_STATS", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "FREERTOS_USE_TICKLESS_IDLE", + "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", + "id": "FREERTOS_IDLE_TIME_BEFORE_SLEEP", + "name": "FREERTOS_IDLE_TIME_BEFORE_SLEEP", + "range": null, + "title": "configEXPECTED_IDLE_TIME_BEFORE_SLEEP", + "type": "int" + } + ], + "depends_on": "PM_ENABLE", + "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.", + "id": "FREERTOS_USE_TICKLESS_IDLE", + "name": "FREERTOS_USE_TICKLESS_IDLE", + "range": null, + "title": "configUSE_TICKLESS_IDLE", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enables task tagging functionality and its associated API (see configUSE_APPLICATION_TASK_TAG\ndocumentation for more details).", + "id": "FREERTOS_USE_APPLICATION_TASK_TAG", + "name": "FREERTOS_USE_APPLICATION_TASK_TAG", + "range": null, + "title": "configUSE_APPLICATION_TASK_TAG", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-freertos-kernel-C:-esp-v6.0-esp-idf-components-freertos-Kconfig-3", + "title": "Kernel", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "COMPILER_OPTIMIZATION_DEBUG || ESP_COREDUMP_ENABLE || ESP_SYSTEM_PANIC_GDBSTUB || ESP_SYSTEM_GDBSTUB_RUNTIME", + "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.", + "id": "FREERTOS_TASK_FUNCTION_WRAPPER", + "name": "FREERTOS_TASK_FUNCTION_WRAPPER", + "range": null, + "title": "Wrap task functions", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "FREERTOS_WATCHPOINT_END_OF_STACK", + "name": "FREERTOS_WATCHPOINT_END_OF_STACK", + "range": null, + "title": "Enable stack overflow debug watchpoint", + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS > 0", + "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.", + "id": "FREERTOS_TLSP_DELETION_CALLBACKS", + "name": "FREERTOS_TLSP_DELETION_CALLBACKS", + "range": null, + "title": "Enable thread local storage pointers deletion callbacks", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this option to make FreeRTOS call a user provided hook function right before it deletes a task\n(i.e., frees/releases a dynamically/statically allocated task's memory). This is useful if users want\nto know when a task is actually deleted (in case the task's deletion is delegated to the IDLE task).\n\nIf this config option is enabled, users must define a ``void vTaskPreDeletionHook( void * pxTCB )``\nhook function in their application.", + "id": "FREERTOS_TASK_PRE_DELETION_HOOK", + "name": "FREERTOS_TASK_PRE_DELETION_HOOK", + "range": null, + "title": "Enable task pre-deletion hook", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_SMP", + "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.", + "id": "FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER", + "name": "FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER", + "range": null, + "title": "Check that mutex semaphore is given by owner task", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "FREERTOS_ISR_STACKSIZE", + "name": "FREERTOS_ISR_STACKSIZE", + "range": [ + 1536, + 32768 + ], + "title": "ISR stack size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "FREERTOS_INTERRUPT_BACKTRACE", + "name": "FREERTOS_INTERRUPT_BACKTRACE", + "range": null, + "title": "Enable backtrace from interrupt to task context", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_CPU_HAS_FPU && (IDF_TARGET_ESP32 || IDF_TARGET_ESP32S3)", + "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.", + "id": "FREERTOS_FPU_IN_ISR", + "name": "FREERTOS_FPU_IN_ISR", + "range": null, + "title": "Use float in Level 1 ISR", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_TICK_SUPPORT_CORETIMER", + "name": "FREERTOS_TICK_SUPPORT_CORETIMER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_TICK_SUPPORT_SYSTIMER", + "name": "FREERTOS_TICK_SUPPORT_SYSTIMER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "FREERTOS_TICK_SUPPORT_CORETIMER && ", + "help": "Select this to use timer 0", + "id": "FREERTOS_CORETIMER_0", + "name": "FREERTOS_CORETIMER_0", + "range": null, + "title": "Timer 0 (int 6, level 1)", + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_TICK_SUPPORT_CORETIMER && ", + "help": "Select this to use timer 1", + "id": "FREERTOS_CORETIMER_1", + "name": "FREERTOS_CORETIMER_1", + "range": null, + "title": "Timer 1 (int 15, level 3)", + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_TICK_SUPPORT_SYSTIMER && ", + "help": "Select this to use systimer with the 1 interrupt priority.", + "id": "FREERTOS_CORETIMER_SYSTIMER_LVL1", + "name": "FREERTOS_CORETIMER_SYSTIMER_LVL1", + "range": null, + "title": "SYSTIMER 0 (level 1)", + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_TICK_SUPPORT_SYSTIMER && ", + "help": "Select this to use systimer with the 3 interrupt priority.", + "id": "FREERTOS_CORETIMER_SYSTIMER_LVL3", + "name": "FREERTOS_CORETIMER_SYSTIMER_LVL3", + "range": null, + "title": "SYSTIMER 0 (level 3)", + "type": "bool" + } + ], + "depends_on": null, + "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.", + "id": "component-config-freertos-port-tick-timer-source-xtensa-only--C:-esp-v6.0-esp-idf-components-freertos-Kconfig-471", + "name": "FREERTOS_CORETIMER", + "title": "Tick timer source (Xtensa Only)", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_SYSTICK_USES_SYSTIMER", + "name": "FREERTOS_SYSTICK_USES_SYSTIMER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_SYSTICK_USES_CCOUNT", + "name": "FREERTOS_SYSTICK_USES_CCOUNT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "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.", + "id": "FREERTOS_RUN_TIME_STATS_USING_ESP_TIMER", + "name": "FREERTOS_RUN_TIME_STATS_USING_ESP_TIMER", + "range": null, + "title": "Use ESP TIMER for run time stats", + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_SYSTICK_USES_CCOUNT && ", + "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.", + "id": "FREERTOS_RUN_TIME_STATS_USING_CPU_CLK", + "name": "FREERTOS_RUN_TIME_STATS_USING_CPU_CLK", + "range": null, + "title": "Use CPU Clock for run time stats", + "type": "bool" + } + ], + "depends_on": "FREERTOS_GENERATE_RUN_TIME_STATS", + "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.", + "id": "component-config-freertos-port-choose-the-clock-source-for-run-time-stats-C:-esp-v6.0-esp-idf-components-freertos-Kconfig-515", + "name": "FREERTOS_RUN_TIME_STATS_CLK", + "title": "Choose the clock source for run time stats", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "Place FreeRTOS functions in IRAM for better performance.\nBy default, FreeRTOS functions are placed in Flash to save IRAM.\nEnable this option if you need maximum performance for FreeRTOS operations.\n\nNote: This option increases IRAM usage.", + "id": "FREERTOS_IN_IRAM", + "name": "FREERTOS_IN_IRAM", + "range": null, + "title": "Place FreeRTOS functions in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPI_FLASH_AUTO_SUSPEND", + "help": "When enabled additional FreeRTOS functions which maybe called from an ISR context are\nalso placed in Flash, thus freeing up more IRAM.\nThis option is only applicable when the SPI_FLASH_AUTO_SUSPEND feature is supported.", + "id": "FREERTOS_PLACE_ISR_FUNCTIONS_INTO_FLASH", + "name": "FREERTOS_PLACE_ISR_FUNCTIONS_INTO_FLASH", + "range": null, + "title": "Place FreeRTOS functions called from ISR context into Flash", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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", + "id": "FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE", + "name": "FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE", + "range": null, + "title": "Tests compliance with Vanilla FreeRTOS port*_CRITICAL calls", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-freertos-port-C:-esp-v6.0-esp-idf-components-freertos-Kconfig-359", + "title": "Port", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SPIRAM && FREERTOS_SUPPORT_STATIC_ALLOCATION", + "help": "Accessing memory in PSRAM 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\nExtra notes for ESP32:\n\nBecause some bits of the ESP32 code environment cannot be recompiled with the cache workaround,\nnormally tasks cannot be safely run with their stack residing in external memory; for this reason\nxTaskCreate (and related task creation functions) always allocate stack in internal memory and\nxTaskCreateStatic will check if the memory passed to it is in internal memory.\nIf you have a task that needs a large amount of stack and does not call on ROM code in any way\n(no direct calls, but also no Bluetooth/WiFi), you can try enable this to\ncause xTaskCreateStatic to allow tasks stack in external memory.", + "id": "FREERTOS_TASK_CREATE_ALLOW_EXT_MEM", + "name": "FREERTOS_TASK_CREATE_ALLOW_EXT_MEM", + "range": null, + "title": "Allow external memory as an argument to xTaskCreateStatic (READ HELP)", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-freertos-extra-C:-esp-v6.0-esp-idf-components-freertos-Kconfig-574", + "title": "Extra", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_PORT", + "name": "FREERTOS_PORT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_NO_AFFINITY", + "name": "FREERTOS_NO_AFFINITY", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_SUPPORT_STATIC_ALLOCATION", + "name": "FREERTOS_SUPPORT_STATIC_ALLOCATION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Hidden option, gets selected by CONFIG_ESP_DEBUG_OCDAWARE", + "id": "FREERTOS_DEBUG_OCDAWARE", + "name": "FREERTOS_DEBUG_OCDAWARE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_NUMBER_OF_CORES", + "name": "FREERTOS_NUMBER_OF_CORES", + "range": [ + 1, + 2 + ], + "title": null, + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-freertos-C:-esp-v6.0-esp-idf-components-freertos-Kconfig-1", + "title": "FreeRTOS", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "HAL_ASSERTION_EQUALS_SYSTEM", + "name": "HAL_ASSERTION_EQUALS_SYSTEM", + "range": null, + "title": "Same as system assertion level", + "type": "bool" + }, + { + "children": [], + "depends_on": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL >= 0 && ", + "help": null, + "id": "HAL_ASSERTION_DISABLE", + "name": "HAL_ASSERTION_DISABLE", + "range": null, + "title": "Disabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL >= 1 && ", + "help": null, + "id": "HAL_ASSERTION_SILENT", + "name": "HAL_ASSERTION_SILENT", + "range": null, + "title": "Silent", + "type": "bool" + }, + { + "children": [], + "depends_on": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL >= 2 && ", + "help": null, + "id": "HAL_ASSERTION_ENABLE", + "name": "HAL_ASSERTION_ENABLE", + "range": null, + "title": "Enabled", + "type": "bool" + } + ], + "depends_on": null, + "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.", + "id": "component-config-hardware-abstraction-layer-hal-and-low-level-ll--default-hal-assertion-level-C:-esp-v6.0-esp-idf-components-hal-Kconfig-2", + "name": "HAL_DEFAULT_ASSERTION_LEVEL", + "title": "Default HAL assertion level", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "HAL_DEFAULT_ASSERTION_LEVEL", + "name": "HAL_DEFAULT_ASSERTION_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "HAL_LOG_LEVEL_NONE", + "name": "HAL_LOG_LEVEL_NONE", + "range": null, + "title": "No output", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "HAL_LOG_LEVEL_ERROR", + "name": "HAL_LOG_LEVEL_ERROR", + "range": null, + "title": "Error", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "HAL_LOG_LEVEL_WARN", + "name": "HAL_LOG_LEVEL_WARN", + "range": null, + "title": "Warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "HAL_LOG_LEVEL_INFO", + "name": "HAL_LOG_LEVEL_INFO", + "range": null, + "title": "Info", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "HAL_LOG_LEVEL_DEBUG", + "name": "HAL_LOG_LEVEL_DEBUG", + "range": null, + "title": "Debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "HAL_LOG_LEVEL_VERBOSE", + "name": "HAL_LOG_LEVEL_VERBOSE", + "range": null, + "title": "Verbose", + "type": "bool" + } + ], + "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", + "help": "Specify how much output to see in HAL logs.", + "id": "component-config-hardware-abstraction-layer-hal-and-low-level-ll--hal-layer-log-verbosity-C:-esp-v6.0-esp-idf-components-hal-Kconfig-34", + "name": "HAL_LOG_LEVEL", + "title": "HAL layer log verbosity", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "HAL_LOG_LEVEL", + "name": "HAL_LOG_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_ROM_HAS_HAL_SYSTIMER", + "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.", + "id": "HAL_SYSTIMER_USE_ROM_IMPL", + "name": "HAL_SYSTIMER_USE_ROM_IMPL", + "range": null, + "title": "Use ROM implementation of SysTimer HAL driver", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_ROM_HAS_HAL_WDT", + "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.", + "id": "HAL_WDT_USE_ROM_IMPL", + "name": "HAL_WDT_USE_ROM_IMPL", + "range": null, + "title": "Use ROM implementation of WDT HAL driver", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this flag to use HAL functions from ROM when applicable instead of ESP-IDF.\n\nIf keeping this as \"n\" in your project, you will have less free IRAM.\nWhen compiling an application for a CPU that cannot access to the ROM memory,\nthis option should be disabled.", + "id": "HAL_GPIO_USE_ROM_IMPL", + "name": "HAL_GPIO_USE_ROM_IMPL", + "range": null, + "title": "Use ROM implementation of GPIO HAL driver", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32H2", + "help": "Enable this option to apply the countermeasure for ECDSA signature operation\nThis countermeasure masks the real ECDSA sign operation\nunder dummy sign operations to add randomness in the generated power signature.\nThis countermeasure is only necessary for ESP32-H2 < v1.2.", + "id": "HAL_ECDSA_GEN_SIG_CM", + "name": "HAL_ECDSA_GEN_SIG_CM", + "range": null, + "title": "Enable countermeasure for ECDSA signature generation", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-hardware-abstraction-layer-hal-and-low-level-ll--C:-esp-v6.0-esp-idf-components-hal-Kconfig-1", + "title": "Hardware Abstraction Layer (HAL) and Low Level (LL)", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Select this option to use Log V1. Recommended for projects with strict stack constraints\nor that prioritize performance over flexibility.", + "id": "LOG_VERSION_1", + "name": "LOG_VERSION_1", + "range": null, + "title": "V1", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Select this option to use Log V2. Recommended for projects that require smaller binaries,\nruntime log formatting configuration, or advanced logging features.", + "id": "LOG_VERSION_2", + "name": "LOG_VERSION_2", + "range": null, + "title": "V2", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select the log version to be used by the ESP log component.\n\n- \"V1\": This version integrates log formatting into the format string provided by the user.\n Logs are processed and formatted during compile time, leading to a larger binary file.\n Example: ESP_LOGI(\"boot\", \"chip revision: v%d.%d\", major, minor);\n Output: I (56) boot: chip revision: v3.0\n Note: Log strings are stored in Flash with added formatting characters.\n Format string on flash: \"[0;32mI (%lu) %s: chip revision: v%d.%d [0m\"\n\n- \"V2\": This version centralizes log formatting within the esp_log() function.\n User-supplied format strings are stored without added formatting, reducing binary size.\n Example: ESP_LOGI(\"boot\", \"chip revision: v%d.%d\", major, minor);\n Output: I (56) boot: chip revision: v3.0\n Note: This version supports runtime configuration of formatting and is more flexible,\n logging from constrained environments (ex.: ISR, Startup, Cache disabled).\n It may consumes a bit more stack and affect performance.\n Format string on flash: \"chip revision: v%d.%d\"\n\nUse V1 for minimal stack usage and simpler implementation.\nUse V2 for smaller binary sizes, more flexible log formatting, and advanced features like disabling\ncolors or timestamps.", + "id": "component-config-log-log-version-C:-esp-v6.0-esp-idf-components-log-Kconfig-3", + "name": "LOG_VERSION", + "title": "Log version", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "This configuration sets the log version number based on the chosen log version.", + "id": "LOG_VERSION", + "name": "LOG_VERSION", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_NONE", + "name": "LOG_DEFAULT_LEVEL_NONE", + "range": null, + "title": "No output", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_ERROR", + "name": "LOG_DEFAULT_LEVEL_ERROR", + "range": null, + "title": "Error", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_WARN", + "name": "LOG_DEFAULT_LEVEL_WARN", + "range": null, + "title": "Warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_INFO", + "name": "LOG_DEFAULT_LEVEL_INFO", + "range": null, + "title": "Info", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_DEBUG", + "name": "LOG_DEFAULT_LEVEL_DEBUG", + "range": null, + "title": "Debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_VERBOSE", + "name": "LOG_DEFAULT_LEVEL_VERBOSE", + "range": null, + "title": "Verbose", + "type": "bool" + } + ], + "depends_on": null, + "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 if LOG_DYNAMIC_LEVEL_CONTROL\nis enabled.\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.", + "id": "component-config-log-log-level-default-log-verbosity-C:-esp-v6.0-esp-idf-components-log-.-Kconfig.level-3", + "name": "LOG_DEFAULT_LEVEL", + "title": "Default log verbosity", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LOG_DEFAULT_LEVEL", + "name": "LOG_DEFAULT_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_MAXIMUM_EQUALS_DEFAULT", + "name": "LOG_MAXIMUM_EQUALS_DEFAULT", + "range": null, + "title": "Same as default", + "type": "bool" + }, + { + "children": [], + "depends_on": "LOG_DEFAULT_LEVEL < 1 && ", + "help": null, + "id": "LOG_MAXIMUM_LEVEL_ERROR", + "name": "LOG_MAXIMUM_LEVEL_ERROR", + "range": null, + "title": "Error", + "type": "bool" + }, + { + "children": [], + "depends_on": "LOG_DEFAULT_LEVEL < 2 && ", + "help": null, + "id": "LOG_MAXIMUM_LEVEL_WARN", + "name": "LOG_MAXIMUM_LEVEL_WARN", + "range": null, + "title": "Warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "LOG_DEFAULT_LEVEL < 3 && ", + "help": null, + "id": "LOG_MAXIMUM_LEVEL_INFO", + "name": "LOG_MAXIMUM_LEVEL_INFO", + "range": null, + "title": "Info", + "type": "bool" + }, + { + "children": [], + "depends_on": "LOG_DEFAULT_LEVEL < 4 && ", + "help": null, + "id": "LOG_MAXIMUM_LEVEL_DEBUG", + "name": "LOG_MAXIMUM_LEVEL_DEBUG", + "range": null, + "title": "Debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "LOG_DEFAULT_LEVEL < 5 && ", + "help": null, + "id": "LOG_MAXIMUM_LEVEL_VERBOSE", + "name": "LOG_MAXIMUM_LEVEL_VERBOSE", + "range": null, + "title": "Verbose", + "type": "bool" + } + ], + "depends_on": null, + "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.", + "id": "component-config-log-log-level-maximum-log-verbosity-C:-esp-v6.0-esp-idf-components-log-.-Kconfig.level-41", + "name": "LOG_MAXIMUM_LEVEL", + "title": "Maximum log verbosity", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LOG_MAXIMUM_LEVEL", + "name": "LOG_MAXIMUM_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Enables an additional global \"master\" log level check that occurs before a log tag cache\nlookup. This is useful if you want to compile in a lot of logs that are selectable at\nruntime, but avoid the performance hit during periods where you don't want log output.\n\nExamples include remote log forwarding, or disabling logs during a time-critical or\nCPU-intensive section and re-enabling them later. Results in larger program size\ndepending on number of logs compiled in.\n\nIf enabled, defaults to LOG_DEFAULT_LEVEL and can be set using\nesp_log_set_level_master(). This check takes precedence over ESP_LOG_LEVEL_LOCAL.", + "id": "LOG_MASTER_LEVEL", + "name": "LOG_MASTER_LEVEL", + "range": null, + "title": "Enable global master log level", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enabling this option allows dynamic changes to the log level at runtime\n(using esp_log_level_set()), providing the ability to increase or decrease\nthe log level during program execution.\nIf disabled, the log level remains static once set at compile-time and calling\nesp_log_level_set() will have no effect.\nIf binary size is a critical consideration and dynamic log level changes are not needed,\nconsider disabling this option when LOG_TAG_LEVEL_IMPL_NONE=y to minimize program size.", + "id": "LOG_DYNAMIC_LEVEL_CONTROL", + "name": "LOG_DYNAMIC_LEVEL_CONTROL", + "range": null, + "title": "Enable dynamic log level changes at runtime", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "This option disables the ability to set the log level per tag.\nThe ability to change the log level at runtime depends on LOG_DYNAMIC_LEVEL_CONTROL.\nIf LOG_DYNAMIC_LEVEL_CONTROL is disabled, then changing the log level at runtime\nusing `esp_log_level_set()` is not possible.\nThis implementation is suitable for highly constrained environments.", + "id": "LOG_TAG_LEVEL_IMPL_NONE", + "name": "LOG_TAG_LEVEL_IMPL_NONE", + "range": null, + "title": "None", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Select this option to use the linked list-only implementation (no cache) for log level retrieval.\nThis approach searches the linked list of all tags for the log level, which may be slower\nfor a large number of tags but may have lower memory requirements than the CACHE approach.\nThe linked list approach compares the whole strings of log tags for finding the log level.", + "id": "LOG_TAG_LEVEL_IMPL_LINKED_LIST", + "name": "LOG_TAG_LEVEL_IMPL_LINKED_LIST", + "range": null, + "title": "Linked List", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Select this option to use a hybrid mode: cache in combination with the linked list\nfor log tag level checks. This hybrid approach offers a balance between speed and memory usage.\n\nThe cache stores recently accessed log tags and their corresponding log levels, providing\nfaster lookups for frequently used tags. The cache approach compares the tag pointers, which is\nfaster than comparing the whole strings.\n\nFor less frequently used tags, the linked list is used to search for the log level, which may be\nslower for a large number of tags but has lower memory requirements compared to a full cache.\n\nThis hybrid approach aims to improve the efficiency of log level retrieval by combining the benefits\nof both cache and linked list implementations.", + "id": "LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST", + "name": "LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST", + "range": null, + "title": "Cache + Linked List", + "type": "bool" + } + ], + "depends_on": null, + "help": "Choose the per-tag log level implementation for the log library. This functionality is used\nto enable/disable logs for a particular tag at run time. Applicable only for\napplication logs (i.e., not bootloader logs).", + "id": "component-config-log-log-level-level-settings-method-of-tag-level-checks-C:-esp-v6.0-esp-idf-components-log-.-.-Kconfig.level_settings-30", + "name": "LOG_TAG_LEVEL_IMPL", + "title": "Method of tag level checks", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "This option enables the use of a simple array-based cache implementation for storing and\nretrieving log tag levels. There is no additional code that reorders the cache for fast lookups.\nSuitable for projects where memory usage optimization is crucial and the simplicity of implementation\nis preferred.", + "id": "LOG_TAG_LEVEL_CACHE_ARRAY", + "name": "LOG_TAG_LEVEL_CACHE_ARRAY", + "range": null, + "title": "Array", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "This option enables the use of a binary min-heap-based cache implementation for efficient\nstorage and retrieval of log tag levels. It does automatically optimizing cache for fast lookups.\nSuitable for projects where speed of lookup is critical and memory usage can accommodate\nthe overhead of maintaining a binary min-heap structure.", + "id": "LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP", + "name": "LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP", + "range": null, + "title": "Binary Min-Heap", + "type": "bool" + } + ], + "depends_on": "LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST", + "help": "The cache stores recently accessed log tags (address of tag) and their corresponding log levels,\nproviding faster lookups for frequently used tags. Cache size can be configured using the\nLOG_TAG_LEVEL_IMPL_CACHE_SIZE option. The cache approach compares the tag pointers, which is\nfaster than comparing the whole strings.", + "id": "component-config-log-log-level-level-settings-cache-implementation-C:-esp-v6.0-esp-idf-components-log-.-.-Kconfig.level_settings-74", + "name": "LOG_TAG_LEVEL_CACHE_IMPL", + "title": "Cache implementation", + "type": "choice" + }, + { + "children": [], + "depends_on": "LOG_TAG_LEVEL_CACHE_ARRAY || LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP", + "help": "This option sets the size of the cache used for log tag entries. The cache stores recently accessed\nlog tags and their corresponding log levels, which helps improve the efficiency of log level retrieval.\nThe value must be a power of 2 minus 1 (e.g., 1, 3, 7, 15, 31, 63, 127, 255, ...)\nto ensure proper cache behavior. For LOG_TAG_LEVEL_CACHE_ARRAY option the value can be any,\nwithout restrictions.\n\nNote: A larger cache size can improve lookup performance for frequently used log tags but may consume\nmore memory. Conversely, a smaller cache size reduces memory usage but may lead to more frequent cache\nevictions for less frequently used log tags.", + "id": "LOG_TAG_LEVEL_IMPL_CACHE_SIZE", + "name": "LOG_TAG_LEVEL_IMPL_CACHE_SIZE", + "range": null, + "title": "Log Tag Cache Size", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-log-log-level-level-settings-C:-esp-v6.0-esp-idf-components-log-.-.-Kconfig.level_settings-1", + "title": "Level Settings", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-log-log-level-C:-esp-v6.0-esp-idf-components-log-.-Kconfig.level-1", + "title": "Log Level", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Enable ANSI terminal color codes. Logs (info, errors, warnings) will contain color codes.\nIn order to view these, your terminal program must support ANSI color codes.\n\nThis is disabled by default, as colors are added in IDF Monitor. If you want to use new lines\nin the messages or you are using a different terminal program, you may want to enable this option.", + "id": "LOG_COLORS", + "name": "LOG_COLORS", + "range": null, + "title": "Color", + "type": "bool" + }, + { + "children": [], + "depends_on": "LOG_VERSION_2", + "help": "Enables support for color codes in the esp_log() function. If CONFIG_LOG_COLORS is enabled, this option\nis always active. If CONFIG_LOG_COLORS is disabled, this option allows you to still handle color codes\nin specific files by defining ESP_LOG_COLOR_DISABLED as 0 before including esp_log.h.\n\nNote that enabling this option may slightly increase IRAM usage due to additional color handling\nfunctionality. It provides flexibility to manage color output even when CONFIG_LOG_COLORS is turned off.", + "id": "LOG_COLORS_SUPPORT", + "name": "LOG_COLORS_SUPPORT", + "range": null, + "title": "Allow enabling color output at run time", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "LOG_VERSION_2 && ", + "help": null, + "id": "LOG_TIMESTAMP_SOURCE_NONE", + "name": "LOG_TIMESTAMP_SOURCE_NONE", + "range": null, + "title": "None", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_TIMESTAMP_SOURCE_RTOS", + "name": "LOG_TIMESTAMP_SOURCE_RTOS", + "range": null, + "title": "Milliseconds Since Boot", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_TIMESTAMP_SOURCE_SYSTEM", + "name": "LOG_TIMESTAMP_SOURCE_SYSTEM", + "range": null, + "title": "System Time (HH:MM:SS.sss)", + "type": "bool" + }, + { + "children": [], + "depends_on": "LOG_VERSION_2 && ", + "help": null, + "id": "LOG_TIMESTAMP_SOURCE_SYSTEM_FULL", + "name": "LOG_TIMESTAMP_SOURCE_SYSTEM_FULL", + "range": null, + "title": "System Time (YY-MM-DD HH:MM:SS.sss)", + "type": "bool" + }, + { + "children": [], + "depends_on": "LOG_VERSION_2 && ", + "help": null, + "id": "LOG_TIMESTAMP_SOURCE_UNIX", + "name": "LOG_TIMESTAMP_SOURCE_UNIX", + "range": null, + "title": "Unix time in milliseconds", + "type": "bool" + } + ], + "depends_on": null, + "help": "Choose what sort of timestamp is displayed in the log output:\n\n- \"None\" - The log will only contain the actual log messages themselves\n without any time-related information. Avoiding timestamps can help conserve\n processing power and memory. It might useful when you\n perform log analysis or debugging, sometimes it's more straightforward\n to work with logs that lack timestamps, especially if the time of occurrence\n is not critical for understanding the issues.\n\n- \"Milliseconds since boot\" is calculated 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 (HH:MM:SS.sss)\" is taken from POSIX time functions which use the chip's\n RTC and high resolution 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- \"System time (YY-MM-DD HH:MM:SS.sss)\" it is the same as the above,\n but also prints the date as well.\n\n- \"Unix time in milliseconds\" is the same as the two above,\n but in Unix time format and in milliseconds.\n e.g. (1718795571035).\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.", + "id": "component-config-log-format-timestamp-C:-esp-v6.0-esp-idf-components-log-.-Kconfig.format-26", + "name": "LOG_TIMESTAMP_SOURCE", + "title": "Timestamp", + "type": "choice" + }, + { + "children": [], + "depends_on": "LOG_VERSION_2", + "help": "Enables support for timestamp in the esp_log() function.\nIf CONFIG_LOG_TIMESTAMP_SOURCE_NONE, this option allows you to still handle timestamp\nin specific files by defining ESP_LOG_TIMESTAMP_DISABLED as 0 before including esp_log.h.\n\nNote that enabling this option may slightly increase IRAM usage due to additional timestamp handling\nfunctionality. It provides flexibility to manage timestamp output even when\nCONFIG_LOG_TIMESTAMP_SOURCE_NONE.", + "id": "LOG_TIMESTAMP_SUPPORT", + "name": "LOG_TIMESTAMP_SUPPORT", + "range": null, + "title": "Allow enabling timestamp output at run time", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-log-format-C:-esp-v6.0-esp-idf-components-log-.-Kconfig.format-1", + "title": "Format", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "LOG_MODE_TEXT_EN", + "name": "LOG_MODE_TEXT_EN", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LOG_MODE_BINARY_EN", + "name": "LOG_MODE_BINARY_EN", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Enables text-based logging, where log messages are stored in a human-readable format.\nThis mode is useful for development and debugging, as it allows logs to be easily\nread and interpreted without additional processing.", + "id": "LOG_MODE_TEXT", + "name": "LOG_MODE_TEXT", + "range": null, + "title": "Text Log Mode", + "type": "bool" + }, + { + "children": [], + "depends_on": "LOG_VERSION_2 && ", + "help": "Enables binary logging with host-side format string expansion. In this mode, the\nformat argument of ESP_LOGx, ESP_EARLY_LOG, and ESP_DRAM_LOG macros is stored in a\nNOLOAD section, not included in the final binary file. This reduces flash usage by\napproximately 10% - 35%. The esp_log() function uses the binary log handler to output\nmessages. Instead of sending the full log string, the chip transmits only the\naddresses of these strings (if present in the ELF file). If the format string\ncannot be found in the ELF file, the chip sends the entire string. The host-side\nmonitor tool, which has access to the ELF file, reconstructs the log message using\nthe format string.\nThis reduces firmware size by eliminating format strings from\nflash memory and removing the usage of printf-like functions, potentially freeing up\na few kilobytes of space. To further reduce firmware size, wrap string data with ESP_LOG_ATTR_STR.", + "id": "LOG_MODE_BINARY", + "name": "LOG_MODE_BINARY", + "range": null, + "title": "Binary Log Mode", + "type": "bool" + } + ], + "depends_on": null, + "help": null, + "id": "component-config-log-settings-log-mode-C:-esp-v6.0-esp-idf-components-log-.-Kconfig.settings-9", + "name": "LOG_MODE", + "title": "Log Mode", + "type": "choice" + } + ], + "depends_on": null, + "id": "component-config-log-settings-C:-esp-v6.0-esp-idf-components-log-.-Kconfig.settings-1", + "title": "Settings", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LOG_IN_IRAM", + "name": "LOG_IN_IRAM", + "range": null, + "title": "Place logging functions in IRAM", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-log-C:-esp-v6.0-esp-idf-components-log-Kconfig-1", + "title": "Log", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "SOC_MMU_PAGE_SIZE_8KB_SUPPORTED", + "help": null, + "id": "MMU_PAGE_SIZE_8KB", + "name": "MMU_PAGE_SIZE_8KB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MMU_PAGE_SIZE_16KB", + "name": "MMU_PAGE_SIZE_16KB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MMU_PAGE_SIZE_32KB", + "name": "MMU_PAGE_SIZE_32KB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MMU_PAGE_SIZE_64KB", + "name": "MMU_PAGE_SIZE_64KB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MMU_PAGE_MODE", + "name": "MMU_PAGE_MODE", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MMU_PAGE_SIZE", + "name": "MMU_PAGE_SIZE", + "range": null, + "title": null, + "type": "hex" + } + ], + "depends_on": null, + "id": "component-config-soc-settings-mmu-config-C:-esp-v6.0-esp-idf-components-soc-Kconfig-5", + "title": "MMU Config", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-soc-settings-C:-esp-v6.0-esp-idf-components-soc-Kconfig-1", + "title": "SoC Settings", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "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.", + "id": "SPI_FLASH_BROWNOUT_RESET_XMC", + "name": "SPI_FLASH_BROWNOUT_RESET_XMC", + "range": null, + "title": "Enable sending reset when brownout for XMC flash chips", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "When brownout happens during flash erase/write operations,\nsend reset command to stop the flash operations to improve stability.", + "id": "SPI_FLASH_BROWNOUT_RESET", + "name": "SPI_FLASH_BROWNOUT_RESET", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "id": "component-config-main-flash-configuration-spi-flash-behavior-when-brownout-C:-esp-v6.0-esp-idf-components-spi_flash-Kconfig-4", + "title": "SPI Flash behavior when brownout", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This is a helper config for HPM. Invisible for users.", + "id": "SPI_FLASH_UNDER_HIGH_FREQ", + "name": "SPI_FLASH_UNDER_HIGH_FREQ", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_HPM_ENA", + "name": "SPI_FLASH_HPM_ENA", + "range": null, + "title": "Enable", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_HPM_AUTO", + "name": "SPI_FLASH_HPM_AUTO", + "range": null, + "title": "Auto (Not recommended)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_HPM_DIS", + "name": "SPI_FLASH_HPM_DIS", + "range": null, + "title": "Disabled", + "type": "bool" + } + ], + "depends_on": "(IDF_TARGET_ESP32S3 || IDF_TARGET_ESP32P4 || IDF_TARGET_ESP32C5) && !ESPTOOLPY_OCT_FLASH && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Whether the High Performance Mode of Flash is enabled. As an optional feature, user needs to manually\nenable this option as a confirmation. To be back-compatible with earlier IDF version, this option is\nautomatically enabled with warning when Flash running > 80Mhz.", + "id": "component-config-main-flash-configuration-optional-and-experimental-features-read-docs-first--high-performance-mode-read-docs-first-80mhz--C:-esp-v6.0-esp-idf-components-spi_flash-Kconfig-36", + "name": "SPI_FLASH_HPM", + "title": "High Performance Mode (READ DOCS FIRST, > 80MHz)", + "type": "choice" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This option is invisible, and will be selected automatically\nwhen ``ESPTOOLPY_FLASHFREQ_120M`` is selected.", + "id": "SPI_FLASH_HPM_ON", + "name": "SPI_FLASH_HPM_ON", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_HPM_DC_AUTO", + "name": "SPI_FLASH_HPM_DC_AUTO", + "range": null, + "title": "Auto (Enable when bootloader support enabled (BOOTLOADER_FLASH_DC_AWARE))", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_HPM_DC_DISABLE", + "name": "SPI_FLASH_HPM_DC_DISABLE", + "range": null, + "title": "Disable (READ DOCS FIRST)", + "type": "bool" + } + ], + "depends_on": "SPI_FLASH_HPM_ON && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This feature needs your bootloader to be compiled DC-aware (BOOTLOADER_FLASH_DC_AWARE=y). Otherwise the\nchip will not be able to boot after a reset.", + "id": "component-config-main-flash-configuration-optional-and-experimental-features-read-docs-first--support-hpm-using-dc-read-docs-first--C:-esp-v6.0-esp-idf-components-spi_flash-Kconfig-65", + "name": "SPI_FLASH_HPM_DC", + "title": "Support HPM using DC (READ DOCS FIRST)", + "type": "choice" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This is a helper config for HPM. Whether HPM-DC is enabled is also determined by bootloader.\nInvisible for users.", + "id": "SPI_FLASH_HPM_DC_ON", + "name": "SPI_FLASH_HPM_DC_ON", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND && !SPI_FLASH_ROM_IMPL && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This option is disabled by default because it is supported only\nfor specific flash chips and for specific Espressif chips.\nTo evaluate if you can use this feature refer to\n`Optional Features for Flash` > `Auto Suspend & Resume` of the `ESP-IDF Programming Guide`.\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\nIf you are using an official Espressif module, please contact Espressif Business support\nto check if the module has the flash that support this feature installed.\nAlso refer to `Concurrency Constraints for Flash on SPI1` > `Flash Auto Suspend Feature`\nbefore enabling this option.", + "id": "SPI_FLASH_AUTO_SUSPEND", + "name": "SPI_FLASH_AUTO_SUSPEND", + "range": null, + "title": "Auto suspend long erase/write operations (READ DOCS FIRST)", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This config is used for setting Tsus parameter. Tsus means CS# high to next command after\nsuspend. You can refer to the chapter of AC CHARACTERISTICS of flash datasheet.", + "id": "SPI_FLASH_SUSPEND_TSUS_VAL_US", + "name": "SPI_FLASH_SUSPEND_TSUS_VAL_US", + "range": [ + 20, + 100 + ], + "title": "SPI flash tSUS value (refer to chapter AC CHARACTERISTICS)", + "type": "int" + }, + { + "children": [], + "depends_on": "SOC_SPI_MEM_SUPPORT_TSUS_TRES_SEPERATE_CTR && !ESP32P4_SELECTS_REV_LESS_V3 && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This config is used for setting Trs parameter. Trs means CS Latency Between Resume And Next Suspend.\nYou can refer to the chapter of AC CHARACTERISTICS of flash datasheet.\nFor high-performance scenarios, some flash chips allow this set value to be smaller than the\ngiven value in the datasheet without causing errors in the flash state machine.\nWhen you have any related needs, please contact espressif business team.", + "id": "SPI_FLASH_SUSPEND_TRS_VAL_US", + "name": "SPI_FLASH_SUSPEND_TRS_VAL_US", + "range": null, + "title": "SPI flash tRS value (refer to chapter AC CHARACTERISTICS)", + "type": "int" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "XMC-C series is regarded as not qualified for the Suspend feature, since its specification\nhas a tRS >= 1ms restriction. We strongly do not suggest using it for the Suspend feature.\nHowever, if your product in field has enabled this feature, you may still enable this\nconfig option to keep the legacy behavior.\n\nFor new users, DO NOT enable this config.", + "id": "SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND", + "name": "SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND", + "range": null, + "title": "Enable XMC-C series flash chip suspend feature anyway", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Flash suspend has a defect on ESP32C6 until v0.2 and ESP32H2 until v1.2. If you already use suspend\nfeature for mass production, you can enable this for bypassing check after knowing the risk.\nBut if you are new users, or developing new applications, or producing a new batch,\nplease DO NOT enable this config option.\n\nFor more information, please refer to errata or connect to Espressif business support team.", + "id": "SPI_FLASH_FORCE_ENABLE_C6_H2_SUSPEND", + "name": "SPI_FLASH_FORCE_ENABLE_C6_H2_SUSPEND", + "range": null, + "title": "Enable chip suspend feature on c6 or h2 anyway (DO NOT ENABLE FOR NEW USERS OR APPLICATIONS)", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPI_FLASH_AUTO_SUSPEND && FREERTOS_UNICORE && IDF_EXPERIMENTAL_FEATURES && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Enable this config will disable auto-resume from hardware. Thus the software will resume the chip\nafter any higher priority task/interrupt which suspend the chip. The benefit is that the suspend-resume\nwill not disturb the higher priority task and interrupt.\n\nThis currently is only valid on single core chip.", + "id": "SPI_FLASH_SOFTWARE_RESUME", + "name": "SPI_FLASH_SOFTWARE_RESUME", + "range": null, + "title": "Resume flash program/erase form suspend state by software control", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPI_FLASH_AUTO_SUSPEND && FREERTOS_UNICORE && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Disable freertos task scheduler when CONFIG_SPI_FLASH_AUTO_SUSPEND is enabled.\nThus only interrupt can trigger a suspend. When SPI_FLASH_AUTO_SUSPEND is enabled,\ndefault behavior is not disable the task scheduler, so both interrupt and high priority\ntask can suspend the erase/program operation. When this option is enabled, task\nscheduler is disabled, only interrupt can suspend erase/program operation.", + "id": "SPI_FLASH_DISABLE_SCHEDULER_IN_SUSPEND", + "name": "SPI_FLASH_DISABLE_SCHEDULER_IN_SUSPEND", + "range": null, + "title": "Disable task scheduler when suspend is enabled when SPI1 operation is ongoing", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPI_FLASH_AUTO_SUSPEND && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Majority flash supports to use flash register to judge if flash suspend status is\ndone or not. So enable this config, the behavior would use flash register WIP bit to judge\nwhether suspend is valid instead of waiting for a specific long time, which can save a\nlot of time and benefit for performance improvement.", + "id": "SPI_FLASH_AUTO_CHECK_SUSPEND_STATUS", + "name": "SPI_FLASH_AUTO_CHECK_SUSPEND_STATUS", + "range": null, + "title": "Check flash status automatically after flash suspend", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "When disabled, certain functions in `spi_flash` component will be placed into Flash memory\ninstead of IRAM. Disabling this option will save almost 10KB of IRAM depending on which\nfunctions are used.\n\nWhen enabled, these functions will be placed in internal RAM, with better performance.\n\nFor more information please refer to programming guide.", + "id": "SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM", + "name": "SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM", + "range": null, + "title": "Place spi_flash operation functions into IRAM", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "id": "component-config-main-flash-configuration-optional-and-experimental-features-read-docs-first--C:-esp-v6.0-esp-idf-components-spi_flash-Kconfig-26", + "title": "Optional and Experimental Features (READ DOCS FIRST)", + "type": "menu" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "id": "component-config-main-flash-configuration-C:-esp-v6.0-esp-idf-components-spi_flash-Kconfig-1", + "title": "Main Flash configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "SPI_FLASH_VERIFY_WRITE && !APP_BUILD_TYPE_PURE_RAM_APP", + "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.", + "id": "SPI_FLASH_LOG_FAILED_WRITE", + "name": "SPI_FLASH_LOG_FAILED_WRITE", + "range": null, + "title": "Log errors if verification fails", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPI_FLASH_VERIFY_WRITE && !APP_BUILD_TYPE_PURE_RAM_APP", + "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.", + "id": "SPI_FLASH_WARN_SETTING_ZERO_TO_ONE", + "name": "SPI_FLASH_WARN_SETTING_ZERO_TO_ONE", + "range": null, + "title": "Log warning if writing zero bits to ones", + "type": "bool" + } + ], + "depends_on": "!SPI_FLASH_ROM_IMPL && !APP_BUILD_TYPE_PURE_RAM_APP", + "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\nThis will slightly influence the write performance.", + "id": "SPI_FLASH_VERIFY_WRITE", + "name": "SPI_FLASH_VERIFY_WRITE", + "range": null, + "title": "Verify SPI flash writes", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "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.", + "id": "SPI_FLASH_ENABLE_COUNTERS", + "name": "SPI_FLASH_ENABLE_COUNTERS", + "range": null, + "title": "Enable operation counters", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_ROM_HAS_SPI_FLASH && !ESPTOOLPY_OCT_FLASH && !APP_BUILD_TYPE_PURE_RAM_APP", + "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)", + "id": "SPI_FLASH_ROM_IMPL", + "name": "SPI_FLASH_ROM_IMPL", + "range": null, + "title": "Use esp_flash implementation in ROM", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_DANGEROUS_WRITE_ABORTS", + "name": "SPI_FLASH_DANGEROUS_WRITE_ABORTS", + "range": null, + "title": "Aborts", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_DANGEROUS_WRITE_FAILS", + "name": "SPI_FLASH_DANGEROUS_WRITE_FAILS", + "range": null, + "title": "Fails", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_DANGEROUS_WRITE_ALLOWED", + "name": "SPI_FLASH_DANGEROUS_WRITE_ALLOWED", + "range": null, + "title": "Allowed", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "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.", + "id": "component-config-spi-flash-driver-writing-to-dangerous-flash-regions-C:-esp-v6.0-esp-idf-components-spi_flash-Kconfig-264", + "name": "SPI_FLASH_DANGEROUS_WRITE", + "title": "Writing to dangerous flash regions", + "type": "choice" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32 && !APP_BUILD_TYPE_PURE_RAM_APP", + "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.", + "id": "SPI_FLASH_SHARE_SPI1_BUS", + "name": "SPI_FLASH_SHARE_SPI1_BUS", + "range": null, + "title": "Support other devices attached to SPI1 bus", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "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.", + "id": "SPI_FLASH_BYPASS_BLOCK_ERASE", + "name": "SPI_FLASH_BYPASS_BLOCK_ERASE", + "range": null, + "title": "Bypass a block erase and always do sector erase", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "SPI_FLASH_YIELD_DURING_ERASE && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "If a duration of one erase command is large\nthen it will yield CPUs after finishing a current command.", + "id": "SPI_FLASH_ERASE_YIELD_DURATION_MS", + "name": "SPI_FLASH_ERASE_YIELD_DURATION_MS", + "range": null, + "title": "Duration of erasing to yield CPUs (ms)", + "type": "int" + }, + { + "children": [], + "depends_on": "SPI_FLASH_YIELD_DURING_ERASE && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Defines how many ticks will be before returning to continue a erasing.", + "id": "SPI_FLASH_ERASE_YIELD_TICKS", + "name": "SPI_FLASH_ERASE_YIELD_TICKS", + "range": null, + "title": "CPU release time (tick) for an erase operation", + "type": "int" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "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 documentation\nunder section `OS Function`.", + "id": "SPI_FLASH_YIELD_DURING_ERASE", + "name": "SPI_FLASH_YIELD_DURING_ERASE", + "range": null, + "title": "Enables yield operation during flash erase", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "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.", + "id": "SPI_FLASH_WRITE_CHUNK_SIZE", + "name": "SPI_FLASH_WRITE_CHUNK_SIZE", + "range": [ + 256, + 8192 + ], + "title": "Flash write chunk size", + "type": "int" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "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.", + "id": "SPI_FLASH_SIZE_OVERRIDE", + "name": "SPI_FLASH_SIZE_OVERRIDE", + "range": null, + "title": "Override flash size in bootloader header by ESPTOOLPY_FLASHSIZE", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This option is helpful if you are using a flash chip whose timeout is quite large or unpredictable.", + "id": "SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED", + "name": "SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED", + "range": null, + "title": "Flash timeout checkout disabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "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.", + "id": "SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST", + "name": "SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST", + "range": null, + "title": "Override default chip driver list", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "SPI_FLASH_VENDOR_XMC_SUPPORT_ENABLED", + "name": "SPI_FLASH_VENDOR_XMC_SUPPORT_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED", + "name": "SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "SPI_FLASH_VENDOR_ISSI_SUPPORT_ENABLED", + "name": "SPI_FLASH_VENDOR_ISSI_SUPPORT_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "SPI_FLASH_VENDOR_MXIC_SUPPORT_ENABLED", + "name": "SPI_FLASH_VENDOR_MXIC_SUPPORT_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "SPI_FLASH_VENDOR_WINBOND_SUPPORT_ENABLED", + "name": "SPI_FLASH_VENDOR_WINBOND_SUPPORT_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "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.", + "id": "SPI_FLASH_SUPPORT_ISSI_CHIP", + "name": "SPI_FLASH_SUPPORT_ISSI_CHIP", + "range": null, + "title": "ISSI", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "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.", + "id": "SPI_FLASH_SUPPORT_MXIC_CHIP", + "name": "SPI_FLASH_SUPPORT_MXIC_CHIP", + "range": null, + "title": "MXIC", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "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.", + "id": "SPI_FLASH_SUPPORT_GD_CHIP", + "name": "SPI_FLASH_SUPPORT_GD_CHIP", + "range": null, + "title": "GigaDevice", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "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.", + "id": "SPI_FLASH_SUPPORT_WINBOND_CHIP", + "name": "SPI_FLASH_SUPPORT_WINBOND_CHIP", + "range": null, + "title": "Winbond", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "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.", + "id": "SPI_FLASH_SUPPORT_BOYA_CHIP", + "name": "SPI_FLASH_SUPPORT_BOYA_CHIP", + "range": null, + "title": "BOYA", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "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.", + "id": "SPI_FLASH_SUPPORT_TH_CHIP", + "name": "SPI_FLASH_SUPPORT_TH_CHIP", + "range": null, + "title": "TH", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32S3 && !APP_BUILD_TYPE_PURE_RAM_APP", + "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.", + "id": "SPI_FLASH_SUPPORT_MXIC_OPI_CHIP", + "name": "SPI_FLASH_SUPPORT_MXIC_OPI_CHIP", + "range": null, + "title": "mxic (opi)", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "id": "component-config-spi-flash-driver-auto-detect-flash-chips-C:-esp-v6.0-esp-idf-components-spi_flash-Kconfig-375", + "title": "Auto-detect flash chips", + "type": "menu" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "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.", + "id": "SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE", + "name": "SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE", + "range": null, + "title": "Enable encrypted partition read/write operations", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Enable frequency limit workaround for encrypted flash writes on ESP32-C5 at 240MHz default CPU frequency.\nThis is an internal configuration, automatically set based on target chip and CPU frequency.", + "id": "SPI_FLASH_FREQ_LIMIT_C5_240MHZ", + "name": "SPI_FLASH_FREQ_LIMIT_C5_240MHZ", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "id": "component-config-spi-flash-driver-C:-esp-v6.0-esp-idf-components-spi_flash-Kconfig-194", + "title": "SPI Flash driver", + "type": "menu" + }, + { + "children": [], + "depends_on": "\"${IDF_BUILD_V2}\"", + "id": "component-config-configuration-for-components-not-included-in-the-build-C:-esp-v6.0-esp-idf-Kconfig-744", + "title": "Configuration for components not included in the build", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-C:-esp-v6.0-esp-idf-Kconfig-734", + "title": "Component config", + "type": "menu" + }, + { + "children": [], + "depends_on": "\"${IDF_BUILD_V2}\"", + "id": "project-configuration-for-components-not-included-in-the-build-C:-esp-v6.0-esp-idf-Kconfig-751", + "title": "Project configuration for components not included in the build", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "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\nCurrent experimental feature list:\n\n- CONFIG_ESPTOOLPY_FLASHFREQ_120M && CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_DTR\n- CONFIG_SPIRAM_SPEED_120M && CONFIG_SPIRAM_MODE_OCT\n- CONFIG_BOOTLOADER_CACHE_32BIT_ADDR_QUAD_FLASH\n- CONFIG_ESP_WIFI_EAP_TLS1_3\n- CONFIG_ESP_WIFI_ENABLE_ROAMING_APP\n- CONFIG_USB_HOST_EXT_PORT_RESET_ATTEMPTS\n- CONFIG_GDMA_ENABLE_WEIGHTED_ARBITRATION\n- CONFIG_I3C_MASTER_ENABLED", + "id": "IDF_EXPERIMENTAL_FEATURES", + "name": "IDF_EXPERIMENTAL_FEATURES", + "range": null, + "title": "Make experimental features visible", + "type": "bool" + } +] \ No newline at end of file diff --git a/build/bootloader/config/sdkconfig.cmake b/build/bootloader/config/sdkconfig.cmake new file mode 100644 index 0000000..e48f0f5 --- /dev/null +++ b/build/bootloader/config/sdkconfig.cmake @@ -0,0 +1,723 @@ +# +# Automatically generated file. DO NOT EDIT. +# Espressif IoT Development Framework (ESP-IDF) Configuration cmake include file +# +set(CONFIG_SOC_CAPS_ECO_VER_MAX "301") +set(CONFIG_SOC_ADC_SUPPORTED "y") +set(CONFIG_SOC_DAC_SUPPORTED "y") +set(CONFIG_SOC_UART_SUPPORTED "y") +set(CONFIG_SOC_MCPWM_SUPPORTED "y") +set(CONFIG_SOC_GPTIMER_SUPPORTED "y") +set(CONFIG_SOC_SDMMC_HOST_SUPPORTED "y") +set(CONFIG_SOC_BT_SUPPORTED "y") +set(CONFIG_SOC_PCNT_SUPPORTED "y") +set(CONFIG_SOC_PHY_SUPPORTED "y") +set(CONFIG_SOC_WIFI_SUPPORTED "y") +set(CONFIG_SOC_SDIO_SLAVE_SUPPORTED "y") +set(CONFIG_SOC_TWAI_SUPPORTED "y") +set(CONFIG_SOC_EFUSE_SUPPORTED "y") +set(CONFIG_SOC_EMAC_SUPPORTED "y") +set(CONFIG_SOC_ULP_SUPPORTED "y") +set(CONFIG_SOC_CCOMP_TIMER_SUPPORTED "y") +set(CONFIG_SOC_RTC_FAST_MEM_SUPPORTED "y") +set(CONFIG_SOC_RTC_SLOW_MEM_SUPPORTED "y") +set(CONFIG_SOC_RTC_MEM_SUPPORTED "y") +set(CONFIG_SOC_RTC_TIMER_V1_SUPPORTED "y") +set(CONFIG_SOC_I2S_SUPPORTED "y") +set(CONFIG_SOC_I2S_I80_LCD_SUPPORTED "y") +set(CONFIG_SOC_LCD_I80_SUPPORTED "y") +set(CONFIG_SOC_RMT_SUPPORTED "y") +set(CONFIG_SOC_SDM_SUPPORTED "y") +set(CONFIG_SOC_GPSPI_SUPPORTED "y") +set(CONFIG_SOC_LEDC_SUPPORTED "y") +set(CONFIG_SOC_I2C_SUPPORTED "y") +set(CONFIG_SOC_SUPPORT_COEXISTENCE "y") +set(CONFIG_SOC_AES_SUPPORTED "y") +set(CONFIG_SOC_MPI_SUPPORTED "y") +set(CONFIG_SOC_SHA_SUPPORTED "y") +set(CONFIG_SOC_FLASH_ENC_SUPPORTED "y") +set(CONFIG_SOC_SECURE_BOOT_SUPPORTED "y") +set(CONFIG_SOC_TOUCH_SENSOR_SUPPORTED "y") +set(CONFIG_SOC_BOD_SUPPORTED "y") +set(CONFIG_SOC_ULP_FSM_SUPPORTED "y") +set(CONFIG_SOC_CLK_TREE_SUPPORTED "y") +set(CONFIG_SOC_MPU_SUPPORTED "y") +set(CONFIG_SOC_WDT_SUPPORTED "y") +set(CONFIG_SOC_SPI_FLASH_SUPPORTED "y") +set(CONFIG_SOC_RNG_SUPPORTED "y") +set(CONFIG_SOC_LIGHT_SLEEP_SUPPORTED "y") +set(CONFIG_SOC_DEEP_SLEEP_SUPPORTED "y") +set(CONFIG_SOC_LP_PERIPH_SHARE_INTERRUPT "y") +set(CONFIG_SOC_PM_SUPPORTED "y") +set(CONFIG_SOC_DPORT_WORKAROUND_DIS_INTERRUPT_LVL "5") +set(CONFIG_SOC_XTAL_SUPPORT_26M "y") +set(CONFIG_SOC_XTAL_SUPPORT_40M "y") +set(CONFIG_SOC_ADC_RTC_CTRL_SUPPORTED "y") +set(CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED "y") +set(CONFIG_SOC_ADC_DMA_SUPPORTED "y") +set(CONFIG_SOC_ADC_PERIPH_NUM "2") +set(CONFIG_SOC_ADC_MAX_CHANNEL_NUM "10") +set(CONFIG_SOC_ADC_ATTEN_NUM "4") +set(CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM "2") +set(CONFIG_SOC_ADC_PATT_LEN_MAX "16") +set(CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH "9") +set(CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH "12") +set(CONFIG_SOC_ADC_DIGI_RESULT_BYTES "2") +set(CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV "4") +set(CONFIG_SOC_ADC_DIGI_MONITOR_NUM "0") +set(CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH "2000000") +set(CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW "20000") +set(CONFIG_SOC_ADC_RTC_MIN_BITWIDTH "9") +set(CONFIG_SOC_ADC_RTC_MAX_BITWIDTH "12") +set(CONFIG_SOC_ADC_SHARED_POWER "y") +set(CONFIG_SOC_BROWNOUT_RESET_SUPPORTED "y") +set(CONFIG_SOC_SHARED_IDCACHE_SUPPORTED "y") +set(CONFIG_SOC_IDCACHE_PER_CORE "y") +set(CONFIG_SOC_CPU_CORES_NUM "2") +set(CONFIG_SOC_CPU_INTR_NUM "32") +set(CONFIG_SOC_CPU_HAS_FPU "y") +set(CONFIG_SOC_HP_CPU_HAS_MULTIPLE_CORES "y") +set(CONFIG_SOC_CPU_BREAKPOINTS_NUM "2") +set(CONFIG_SOC_CPU_WATCHPOINTS_NUM "2") +set(CONFIG_SOC_CPU_WATCHPOINT_MAX_REGION_SIZE "0x40") +set(CONFIG_SOC_DAC_CHAN_NUM "2") +set(CONFIG_SOC_DAC_RESOLUTION "8") +set(CONFIG_SOC_DAC_DMA_16BIT_ALIGN "y") +set(CONFIG_SOC_GPIO_PORT "1") +set(CONFIG_SOC_GPIO_PIN_COUNT "40") +set(CONFIG_SOC_GPIO_VALID_GPIO_MASK "0xffffffffff") +set(CONFIG_SOC_GPIO_IN_RANGE_MAX "39") +set(CONFIG_SOC_GPIO_OUT_RANGE_MAX "33") +set(CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK "0xef0fea") +set(CONFIG_SOC_GPIO_CLOCKOUT_BY_IO_MUX "y") +set(CONFIG_SOC_GPIO_CLOCKOUT_CHANNEL_NUM "3") +set(CONFIG_SOC_I2C_NUM "2") +set(CONFIG_SOC_HP_I2C_NUM "2") +set(CONFIG_SOC_I2C_SUPPORT_APB "y") +set(CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR "y") +set(CONFIG_SOC_I2C_SUPPORT_SLAVE "y") +set(CONFIG_SOC_I2C_STOP_INDEPENDENT "y") +set(CONFIG_SOC_I2S_HW_VERSION_1 "y") +set(CONFIG_SOC_I2S_SUPPORTS_APLL "y") +set(CONFIG_SOC_I2S_SUPPORTS_PDM "y") +set(CONFIG_SOC_I2S_SUPPORTS_PDM_TX "y") +set(CONFIG_SOC_I2S_SUPPORTS_PCM2PDM "y") +set(CONFIG_SOC_I2S_SUPPORTS_PDM_RX "y") +set(CONFIG_SOC_I2S_SUPPORTS_PDM2PCM "y") +set(CONFIG_SOC_I2S_PDM_MAX_TX_LINES "1") +set(CONFIG_SOC_I2S_PDM_MAX_RX_LINES "1") +set(CONFIG_SOC_LEDC_HAS_TIMER_SPECIFIC_MUX "y") +set(CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK "y") +set(CONFIG_SOC_LEDC_SUPPORT_REF_TICK "y") +set(CONFIG_SOC_LEDC_SUPPORT_HS_MODE "y") +set(CONFIG_SOC_LEDC_TIMER_NUM "4") +set(CONFIG_SOC_LEDC_CHANNEL_NUM "8") +set(CONFIG_SOC_LEDC_TIMER_BIT_WIDTH "20") +set(CONFIG_SOC_MMU_PERIPH_NUM "2") +set(CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM "3") +set(CONFIG_SOC_MPU_MIN_REGION_SIZE "0x20000000") +set(CONFIG_SOC_MPU_REGIONS_MAX_NUM "8") +set(CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL "64") +set(CONFIG_SOC_RTCIO_PIN_COUNT "18") +set(CONFIG_SOC_RTCIO_INPUT_OUTPUT_SUPPORTED "y") +set(CONFIG_SOC_RTCIO_HOLD_SUPPORTED "y") +set(CONFIG_SOC_RTCIO_WAKE_SUPPORTED "y") +set(CONFIG_SOC_SPI_HD_BOTH_INOUT_SUPPORTED "y") +set(CONFIG_SOC_SPI_AS_CS_SUPPORTED "y") +set(CONFIG_SOC_SPI_PERIPH_NUM "3") +set(CONFIG_SOC_SPI_DMA_CHAN_NUM "2") +set(CONFIG_SOC_SPI_MAX_CS_NUM "3") +set(CONFIG_SOC_SPI_SUPPORT_CLK_APB "y") +set(CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE "64") +set(CONFIG_SOC_SPI_MAX_PRE_DIVIDER "8192") +set(CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED "y") +set(CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED "y") +set(CONFIG_SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED "y") +set(CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED "y") +set(CONFIG_SOC_LP_TIMER_BIT_WIDTH_LO "32") +set(CONFIG_SOC_LP_TIMER_BIT_WIDTH_HI "16") +set(CONFIG_SOC_TOUCH_SENSOR_VERSION "1") +set(CONFIG_SOC_TOUCH_MIN_CHAN_ID "0") +set(CONFIG_SOC_TOUCH_MAX_CHAN_ID "9") +set(CONFIG_SOC_TOUCH_SUPPORT_SLEEP_WAKEUP "y") +set(CONFIG_SOC_TOUCH_SAMPLE_CFG_NUM "1") +set(CONFIG_SOC_TWAI_CONTROLLER_NUM "1") +set(CONFIG_SOC_TWAI_MASK_FILTER_NUM "1") +set(CONFIG_SOC_UART_NUM "3") +set(CONFIG_SOC_UART_HP_NUM "3") +set(CONFIG_SOC_UART_SUPPORT_APB_CLK "y") +set(CONFIG_SOC_UART_SUPPORT_REF_TICK "y") +set(CONFIG_SOC_UART_FIFO_LEN "128") +set(CONFIG_SOC_UART_BITRATE_MAX "5000000") +set(CONFIG_SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE "y") +set(CONFIG_SOC_SPIRAM_SUPPORTED "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE "y") +set(CONFIG_SOC_SHA_SUPPORT_PARALLEL_ENG "y") +set(CONFIG_SOC_SHA_ENDIANNESS_BE "y") +set(CONFIG_SOC_SHA_SUPPORT_SHA1 "y") +set(CONFIG_SOC_SHA_SUPPORT_SHA256 "y") +set(CONFIG_SOC_SHA_SUPPORT_SHA384 "y") +set(CONFIG_SOC_SHA_SUPPORT_SHA512 "y") +set(CONFIG_SOC_MPI_MEM_BLOCKS_NUM "4") +set(CONFIG_SOC_MPI_OPERATIONS_NUM "1") +set(CONFIG_SOC_RSA_MAX_BIT_LEN "4096") +set(CONFIG_SOC_AES_SUPPORT_AES_128 "y") +set(CONFIG_SOC_AES_SUPPORT_AES_192 "y") +set(CONFIG_SOC_AES_SUPPORT_AES_256 "y") +set(CONFIG_SOC_SECURE_BOOT_V1 "y") +set(CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS "1") +set(CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX "32") +set(CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE "21") +set(CONFIG_SOC_PM_SUPPORT_EXT0_WAKEUP "y") +set(CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP "y") +set(CONFIG_SOC_PM_SUPPORT_EXT_WAKEUP "y") +set(CONFIG_SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP "y") +set(CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD "y") +set(CONFIG_SOC_PM_SUPPORT_RTC_FAST_MEM_PD "y") +set(CONFIG_SOC_PM_SUPPORT_RTC_SLOW_MEM_PD "y") +set(CONFIG_SOC_PM_SUPPORT_RC_FAST_PD "y") +set(CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD "y") +set(CONFIG_SOC_PM_SUPPORT_MODEM_PD "y") +set(CONFIG_SOC_CONFIGURABLE_VDDSDIO_SUPPORTED "y") +set(CONFIG_SOC_PM_MODEM_PD_BY_SW "y") +set(CONFIG_SOC_CLK_APLL_SUPPORTED "y") +set(CONFIG_SOC_CLK_RC_FAST_D256_SUPPORTED "y") +set(CONFIG_SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256 "y") +set(CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION "y") +set(CONFIG_SOC_CLK_XTAL32K_SUPPORTED "y") +set(CONFIG_SOC_CLK_LP_FAST_SUPPORT_XTAL_D4 "y") +set(CONFIG_SOC_SDMMC_USE_IOMUX "y") +set(CONFIG_SOC_SDMMC_NUM_SLOTS "2") +set(CONFIG_SOC_SDMMC_DATA_WIDTH_MAX "8") +set(CONFIG_SOC_WIFI_WAPI_SUPPORT "y") +set(CONFIG_SOC_WIFI_CSI_SUPPORT "y") +set(CONFIG_SOC_WIFI_MESH_SUPPORT "y") +set(CONFIG_SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW "y") +set(CONFIG_SOC_WIFI_NAN_SUPPORT "y") +set(CONFIG_SOC_BLE_SUPPORTED "y") +set(CONFIG_SOC_BLE_MESH_SUPPORTED "y") +set(CONFIG_SOC_BT_CLASSIC_SUPPORTED "y") +set(CONFIG_SOC_BLUFI_SUPPORTED "y") +set(CONFIG_SOC_BT_H2C_ENC_KEY_CTRL_ENH_VSC_SUPPORTED "y") +set(CONFIG_SOC_BLE_MULTI_CONN_OPTIMIZATION "y") +set(CONFIG_SOC_ULP_HAS_ADC "y") +set(CONFIG_SOC_PHY_COMBO_MODULE "y") +set(CONFIG_SOC_EMAC_RMII_CLK_OUT_INTERNAL_LOOPBACK "y") +set(CONFIG_IDF_CMAKE "y") +set(CONFIG_IDF_TOOLCHAIN "gcc") +set(CONFIG_IDF_TOOLCHAIN_GCC "y") +set(CONFIG_IDF_TARGET_ARCH_XTENSA "y") +set(CONFIG_IDF_TARGET_ARCH "xtensa") +set(CONFIG_IDF_TARGET "esp32") +set(CONFIG_IDF_INIT_VERSION "6.0.0") +set(CONFIG_IDF_TARGET_ESP32 "y") +set(CONFIG_IDF_FIRMWARE_CHIP_ID "0x0") +set(CONFIG_APP_BUILD_TYPE_APP_2NDBOOT "y") +set(CONFIG_APP_BUILD_TYPE_RAM "") +set(CONFIG_APP_BUILD_GENERATE_BINARIES "y") +set(CONFIG_APP_BUILD_BOOTLOADER "y") +set(CONFIG_APP_BUILD_USE_FLASH_SECTIONS "y") +set(CONFIG_APP_REPRODUCIBLE_BUILD "") +set(CONFIG_APP_NO_BLOBS "") +set(CONFIG_APP_COMPATIBLE_PRE_V2_1_BOOTLOADERS "") +set(CONFIG_APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS "") +set(CONFIG_BOOTLOADER_COMPILE_TIME_DATE "y") +set(CONFIG_BOOTLOADER_PROJECT_VER "1") +set(CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE "") +set(CONFIG_BOOTLOADER_OFFSET_IN_FLASH "0x1000") +set(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE "y") +set(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG "") +set(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF "") +set(CONFIG_BOOTLOADER_LOG_VERSION_1 "y") +set(CONFIG_BOOTLOADER_LOG_VERSION "1") +set(CONFIG_BOOTLOADER_LOG_LEVEL_NONE "") +set(CONFIG_BOOTLOADER_LOG_LEVEL_ERROR "") +set(CONFIG_BOOTLOADER_LOG_LEVEL_WARN "") +set(CONFIG_BOOTLOADER_LOG_LEVEL_INFO "y") +set(CONFIG_BOOTLOADER_LOG_LEVEL_DEBUG "") +set(CONFIG_BOOTLOADER_LOG_LEVEL_VERBOSE "") +set(CONFIG_BOOTLOADER_LOG_LEVEL "3") +set(CONFIG_BOOTLOADER_LOG_COLORS "") +set(CONFIG_BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS "y") +set(CONFIG_BOOTLOADER_LOG_MODE_TEXT_EN "y") +set(CONFIG_BOOTLOADER_LOG_MODE_TEXT "y") +set(CONFIG_BOOTLOADER_CPU_CLK_FREQ_MHZ "80") +set(CONFIG_BOOTLOADER_FLASH_DC_AWARE "") +set(CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT "y") +set(CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_8V "") +set(CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V "y") +set(CONFIG_BOOTLOADER_FACTORY_RESET "") +set(CONFIG_BOOTLOADER_APP_TEST "") +set(CONFIG_BOOTLOADER_REGION_PROTECTION_ENABLE "y") +set(CONFIG_BOOTLOADER_WDT_ENABLE "y") +set(CONFIG_BOOTLOADER_WDT_DISABLE_IN_USER_CODE "") +set(CONFIG_BOOTLOADER_WDT_TIME_MS "9000") +set(CONFIG_BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP "") +set(CONFIG_BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON "") +set(CONFIG_BOOTLOADER_SKIP_VALIDATE_ALWAYS "") +set(CONFIG_BOOTLOADER_RESERVE_RTC_SIZE "0x0") +set(CONFIG_BOOTLOADER_CUSTOM_RESERVE_RTC "") +set(CONFIG_SECURE_BOOT_V1_SUPPORTED "y") +set(CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT "") +set(CONFIG_SECURE_BOOT "") +set(CONFIG_SECURE_FLASH_ENC_ENABLED "") +set(CONFIG_APP_COMPILE_TIME_DATE "y") +set(CONFIG_APP_EXCLUDE_PROJECT_VER_VAR "") +set(CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR "") +set(CONFIG_APP_PROJECT_VER_FROM_CONFIG "") +set(CONFIG_APP_RETRIEVE_LEN_ELF_SHA "9") +set(CONFIG_ESP_ROM_HAS_CRC_LE "y") +set(CONFIG_ESP_ROM_HAS_CRC_BE "y") +set(CONFIG_ESP_ROM_HAS_MZ_CRC32 "y") +set(CONFIG_ESP_ROM_HAS_JPEG_DECODE "y") +set(CONFIG_ESP_ROM_HAS_UART_BUF_SWITCH "y") +set(CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND "y") +set(CONFIG_ESP_ROM_HAS_NEWLIB "y") +set(CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT "y") +set(CONFIG_ESP_ROM_HAS_NEWLIB_32BIT_TIME "y") +set(CONFIG_ESP_ROM_HAS_SW_FLOAT "y") +set(CONFIG_ESP_ROM_USB_OTG_NUM "-1") +set(CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM "-1") +set(CONFIG_ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB "y") +set(CONFIG_ESP_ROM_HAS_OUTPUT_PUTC_FUNC "y") +set(CONFIG_ESPTOOLPY_NO_STUB "") +set(CONFIG_ESPTOOLPY_FLASHMODE_QIO "") +set(CONFIG_ESPTOOLPY_FLASHMODE_QOUT "") +set(CONFIG_ESPTOOLPY_FLASHMODE_DIO "y") +set(CONFIG_ESPTOOLPY_FLASHMODE_DOUT "") +set(CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR "y") +set(CONFIG_ESPTOOLPY_FLASHMODE "dio") +set(CONFIG_ESPTOOLPY_FLASHFREQ_80M "") +set(CONFIG_ESPTOOLPY_FLASHFREQ_40M "y") +set(CONFIG_ESPTOOLPY_FLASHFREQ_26M "") +set(CONFIG_ESPTOOLPY_FLASHFREQ_20M "") +set(CONFIG_ESPTOOLPY_FLASHFREQ "40m") +set(CONFIG_ESPTOOLPY_FLASHSIZE_1MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_2MB "y") +set(CONFIG_ESPTOOLPY_FLASHSIZE_4MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_8MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_16MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_32MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_64MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_128MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE "2MB") +set(CONFIG_ESPTOOLPY_HEADER_FLASHSIZE_UPDATE "") +set(CONFIG_ESPTOOLPY_BEFORE_RESET "y") +set(CONFIG_ESPTOOLPY_BEFORE_NORESET "") +set(CONFIG_ESPTOOLPY_BEFORE "default-reset") +set(CONFIG_ESPTOOLPY_AFTER_RESET "y") +set(CONFIG_ESPTOOLPY_AFTER_NORESET "") +set(CONFIG_ESPTOOLPY_AFTER "hard-reset") +set(CONFIG_ESPTOOLPY_MONITOR_BAUD "115200") +set(CONFIG_PARTITION_TABLE_SINGLE_APP "") +set(CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE "") +set(CONFIG_PARTITION_TABLE_TWO_OTA "") +set(CONFIG_PARTITION_TABLE_TWO_OTA_LARGE "") +set(CONFIG_PARTITION_TABLE_CUSTOM "y") +set(CONFIG_PARTITION_TABLE_CUSTOM_FILENAME "partitions.csv") +set(CONFIG_PARTITION_TABLE_FILENAME "partitions.csv") +set(CONFIG_PARTITION_TABLE_OFFSET "0x8000") +set(CONFIG_PARTITION_TABLE_MD5 "y") +set(CONFIG_COMPILER_OPTIMIZATION_DEBUG "y") +set(CONFIG_COMPILER_OPTIMIZATION_SIZE "") +set(CONFIG_COMPILER_OPTIMIZATION_PERF "") +set(CONFIG_COMPILER_OPTIMIZATION_NONE "") +set(CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE "y") +set(CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT "") +set(CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE "") +set(CONFIG_COMPILER_ASSERT_NDEBUG_EVALUATE "") +set(CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB "y") +set(CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL "2") +set(CONFIG_COMPILER_OPTIMIZATION_CHECKS_SILENT "") +set(CONFIG_COMPILER_HIDE_PATHS_MACROS "y") +set(CONFIG_COMPILER_CXX_EXCEPTIONS "") +set(CONFIG_COMPILER_CXX_RTTI "") +set(CONFIG_COMPILER_STACK_CHECK_MODE_NONE "y") +set(CONFIG_COMPILER_STACK_CHECK_MODE_NORM "") +set(CONFIG_COMPILER_STACK_CHECK_MODE_STRONG "") +set(CONFIG_COMPILER_STACK_CHECK_MODE_ALL "") +set(CONFIG_COMPILER_NO_MERGE_CONSTANTS "") +set(CONFIG_COMPILER_WARN_WRITE_STRINGS "") +set(CONFIG_COMPILER_DISABLE_DEFAULT_ERRORS "") +set(CONFIG_COMPILER_DISABLE_GCC12_WARNINGS "") +set(CONFIG_COMPILER_DISABLE_GCC13_WARNINGS "") +set(CONFIG_COMPILER_DISABLE_GCC14_WARNINGS "") +set(CONFIG_COMPILER_DISABLE_GCC15_WARNINGS "") +set(CONFIG_COMPILER_DUMP_RTL_FILES "") +set(CONFIG_COMPILER_RT_LIB_GCCLIB "y") +set(CONFIG_COMPILER_RT_LIB_NAME "gcc") +set(CONFIG_COMPILER_ORPHAN_SECTIONS_ERROR "y") +set(CONFIG_COMPILER_ORPHAN_SECTIONS_WARNING "") +set(CONFIG_COMPILER_ORPHAN_SECTIONS_PLACE "") +set(CONFIG_COMPILER_STATIC_ANALYZER "") +set(CONFIG_COMPILER_CXX_GLIBCXX_CONSTEXPR_NO_CHANGE "y") +set(CONFIG_COMPILER_CXX_GLIBCXX_CONSTEXPR_COLD_CONSTEXPR "") +set(CONFIG_COMPILER_CXX_GLIBCXX_CONSTEXPR_COLD "") +set(CONFIG_EFUSE_CUSTOM_TABLE "") +set(CONFIG_EFUSE_VIRTUAL "") +set(CONFIG_EFUSE_CODE_SCHEME_COMPAT_NONE "") +set(CONFIG_EFUSE_CODE_SCHEME_COMPAT_3_4 "y") +set(CONFIG_EFUSE_CODE_SCHEME_COMPAT_REPEAT "") +set(CONFIG_EFUSE_MAX_BLK_LEN "192") +set(CONFIG_ESP_ERR_TO_NAME_LOOKUP "y") +set(CONFIG_ESP_HW_SUPPORT_FUNC_IN_IRAM "y") +set(CONFIG_ESP32_REV_MIN_0 "y") +set(CONFIG_ESP32_REV_MIN_1 "") +set(CONFIG_ESP32_REV_MIN_1_1 "") +set(CONFIG_ESP32_REV_MIN_2 "") +set(CONFIG_ESP32_REV_MIN_3 "") +set(CONFIG_ESP32_REV_MIN_3_1 "") +set(CONFIG_ESP32_REV_MIN "0") +set(CONFIG_ESP32_REV_MIN_FULL "0") +set(CONFIG_ESP_REV_MIN_FULL "0") +set(CONFIG_ESP32_REV_MAX_FULL "399") +set(CONFIG_ESP_REV_MAX_FULL "399") +set(CONFIG_ESP_EFUSE_BLOCK_REV_MIN_FULL "0") +set(CONFIG_ESP_EFUSE_BLOCK_REV_MAX_FULL "99") +set(CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA "y") +set(CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP "y") +set(CONFIG_ESP_MAC_ADDR_UNIVERSE_BT "y") +set(CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH "y") +set(CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR "y") +set(CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES "4") +set(CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_TWO "") +set(CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR "y") +set(CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES "4") +set(CONFIG_ESP_MAC_IGNORE_MAC_CRC_ERROR "") +set(CONFIG_ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC "") +set(CONFIG_ESP_SLEEP_POWER_DOWN_FLASH "") +set(CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND "y") +set(CONFIG_ESP_SLEEP_MSPI_NEED_ALL_IO_PU "") +set(CONFIG_ESP_SLEEP_RTC_BUS_ISO_WORKAROUND "y") +set(CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND "") +set(CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY "2000") +set(CONFIG_ESP_SLEEP_CACHE_SAFE_ASSERTION "") +set(CONFIG_ESP_SLEEP_DEBUG "") +set(CONFIG_ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS "y") +set(CONFIG_RTC_CLK_SRC_INT_RC "y") +set(CONFIG_RTC_CLK_SRC_EXT_CRYS "") +set(CONFIG_RTC_CLK_SRC_EXT_OSC "") +set(CONFIG_RTC_CLK_SRC_INT_8MD256 "") +set(CONFIG_RTC_CLK_CAL_CYCLES "1024") +set(CONFIG_RTC_CLK_FUNC_IN_IRAM "y") +set(CONFIG_RTC_TIME_FUNC_IN_IRAM "y") +set(CONFIG_ESP_PERIPH_CTRL_FUNC_IN_IRAM "y") +set(CONFIG_ESP_REGI2C_CTRL_FUNC_IN_IRAM "y") +set(CONFIG_XTAL_FREQ_26 "") +set(CONFIG_XTAL_FREQ_32 "") +set(CONFIG_XTAL_FREQ_40 "y") +set(CONFIG_XTAL_FREQ_AUTO "") +set(CONFIG_XTAL_FREQ "40") +set(CONFIG_ESP_BROWNOUT_DET "y") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_0 "y") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_1 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_2 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_3 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_4 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_5 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_6 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL "0") +set(CONFIG_ESP_BROWNOUT_USE_INTR "y") +set(CONFIG_ESP_INTR_IN_IRAM "y") +set(CONFIG_LIBC_NEWLIB "") +set(CONFIG_LIBC_PICOLIBC "y") +set(CONFIG_LIBC_PICOLIBC_NEWLIB_COMPATIBILITY "y") +set(CONFIG_LIBC_MISC_IN_IRAM "y") +set(CONFIG_LIBC_LOCKS_PLACE_IN_IRAM "y") +set(CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT "y") +set(CONFIG_LIBC_TIME_SYSCALL_USE_RTC "") +set(CONFIG_LIBC_TIME_SYSCALL_USE_HRT "") +set(CONFIG_LIBC_TIME_SYSCALL_USE_NONE "") +set(CONFIG_LIBC_ASSERT_BUFFER_SIZE "200") +set(CONFIG_ESP_ROM_PRINT_IN_IRAM "y") +set(CONFIG_ESP_CONSOLE_UART_DEFAULT "y") +set(CONFIG_ESP_CONSOLE_UART_CUSTOM "") +set(CONFIG_ESP_CONSOLE_NONE "") +set(CONFIG_ESP_CONSOLE_UART "y") +set(CONFIG_ESP_CONSOLE_UART_NUM "0") +set(CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM "0") +set(CONFIG_ESP_CONSOLE_UART_BAUDRATE "115200") +set(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_80 "") +set(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160 "y") +set(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240 "") +set(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ "160") +set(CONFIG_ESP32_USE_FIXED_STATIC_RAM_SIZE "") +set(CONFIG_ESP_SYSTEM_ESP32_SRAM1_REGION_AS_IRAM "") +set(CONFIG_ESP32_TRAX "") +set(CONFIG_ESP32_TRACEMEM_RESERVE_DRAM "0x0") +set(CONFIG_ESP_SYSTEM_IN_IRAM "y") +set(CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT "") +set(CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT "y") +set(CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT "") +set(CONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS "0") +set(CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE "32") +set(CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE "2304") +set(CONFIG_ESP_MAIN_TASK_STACK_SIZE "3584") +set(CONFIG_ESP_MAIN_TASK_AFFINITY_CPU0 "y") +set(CONFIG_ESP_MAIN_TASK_AFFINITY_CPU1 "") +set(CONFIG_ESP_MAIN_TASK_AFFINITY_NO_AFFINITY "") +set(CONFIG_ESP_MAIN_TASK_AFFINITY "0x0") +set(CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE "2048") +set(CONFIG_ESP_INT_WDT "y") +set(CONFIG_ESP_INT_WDT_TIMEOUT_MS "300") +set(CONFIG_ESP_INT_WDT_CHECK_CPU1 "y") +set(CONFIG_ESP_TASK_WDT_EN "y") +set(CONFIG_ESP_TASK_WDT_INIT "y") +set(CONFIG_ESP_TASK_WDT_PANIC "") +set(CONFIG_ESP_TASK_WDT_TIMEOUT_S "5") +set(CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0 "y") +set(CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1 "y") +set(CONFIG_ESP_PANIC_HANDLER_IRAM "") +set(CONFIG_ESP_DEBUG_STUBS_ENABLE "") +set(CONFIG_ESP_DEBUG_OCDAWARE "y") +set(CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_5 "") +set(CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4 "y") +set(CONFIG_ESP32_DISABLE_BASIC_ROM_CONSOLE "") +set(CONFIG_ESP_IPC_ENABLE "y") +set(CONFIG_ESP_IPC_TASK_STACK_SIZE "1024") +set(CONFIG_ESP_IPC_USES_CALLERS_PRIORITY "y") +set(CONFIG_ESP_IPC_ISR_ENABLE "y") +set(CONFIG_FREERTOS_SMP "") +set(CONFIG_FREERTOS_UNICORE "") +set(CONFIG_FREERTOS_HZ "100") +set(CONFIG_FREERTOS_CHECK_STACKOVERFLOW_NONE "") +set(CONFIG_FREERTOS_CHECK_STACKOVERFLOW_PTRVAL "") +set(CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY "y") +set(CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS "1") +set(CONFIG_FREERTOS_IDLE_TASK_STACKSIZE "1536") +set(CONFIG_FREERTOS_USE_IDLE_HOOK "") +set(CONFIG_FREERTOS_USE_TICK_HOOK "") +set(CONFIG_FREERTOS_MAX_TASK_NAME_LEN "16") +set(CONFIG_FREERTOS_ENABLE_BACKWARD_COMPATIBILITY "") +set(CONFIG_FREERTOS_USE_TIMERS "y") +set(CONFIG_FREERTOS_TIMER_SERVICE_TASK_NAME "Tmr Svc") +set(CONFIG_FREERTOS_TIMER_TASK_AFFINITY_CPU0 "") +set(CONFIG_FREERTOS_TIMER_TASK_AFFINITY_CPU1 "") +set(CONFIG_FREERTOS_TIMER_TASK_NO_AFFINITY "y") +set(CONFIG_FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY "0x7fffffff") +set(CONFIG_FREERTOS_TIMER_TASK_PRIORITY "1") +set(CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH "2048") +set(CONFIG_FREERTOS_TIMER_QUEUE_LENGTH "10") +set(CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE "0") +set(CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES "1") +set(CONFIG_FREERTOS_USE_TRACE_FACILITY "") +set(CONFIG_FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES "") +set(CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS "") +set(CONFIG_FREERTOS_USE_APPLICATION_TASK_TAG "") +set(CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER "y") +set(CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK "") +set(CONFIG_FREERTOS_TLSP_DELETION_CALLBACKS "y") +set(CONFIG_FREERTOS_TASK_PRE_DELETION_HOOK "") +set(CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER "y") +set(CONFIG_FREERTOS_ISR_STACKSIZE "1536") +set(CONFIG_FREERTOS_INTERRUPT_BACKTRACE "y") +set(CONFIG_FREERTOS_FPU_IN_ISR "") +set(CONFIG_FREERTOS_TICK_SUPPORT_CORETIMER "y") +set(CONFIG_FREERTOS_CORETIMER_0 "y") +set(CONFIG_FREERTOS_CORETIMER_1 "") +set(CONFIG_FREERTOS_SYSTICK_USES_CCOUNT "y") +set(CONFIG_FREERTOS_IN_IRAM "") +set(CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE "") +set(CONFIG_FREERTOS_PORT "y") +set(CONFIG_FREERTOS_NO_AFFINITY "0x7fffffff") +set(CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION "y") +set(CONFIG_FREERTOS_DEBUG_OCDAWARE "y") +set(CONFIG_FREERTOS_NUMBER_OF_CORES "2") +set(CONFIG_HAL_ASSERTION_EQUALS_SYSTEM "y") +set(CONFIG_HAL_ASSERTION_DISABLE "") +set(CONFIG_HAL_ASSERTION_SILENT "") +set(CONFIG_HAL_ASSERTION_ENABLE "") +set(CONFIG_HAL_DEFAULT_ASSERTION_LEVEL "2") +set(CONFIG_HAL_GPIO_USE_ROM_IMPL "y") +set(CONFIG_LOG_VERSION_1 "y") +set(CONFIG_LOG_VERSION_2 "") +set(CONFIG_LOG_VERSION "1") +set(CONFIG_LOG_DEFAULT_LEVEL_NONE "") +set(CONFIG_LOG_DEFAULT_LEVEL_ERROR "") +set(CONFIG_LOG_DEFAULT_LEVEL_WARN "") +set(CONFIG_LOG_DEFAULT_LEVEL_INFO "y") +set(CONFIG_LOG_DEFAULT_LEVEL_DEBUG "") +set(CONFIG_LOG_DEFAULT_LEVEL_VERBOSE "") +set(CONFIG_LOG_DEFAULT_LEVEL "3") +set(CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT "y") +set(CONFIG_LOG_MAXIMUM_LEVEL_DEBUG "") +set(CONFIG_LOG_MAXIMUM_LEVEL_VERBOSE "") +set(CONFIG_LOG_MAXIMUM_LEVEL "3") +set(CONFIG_LOG_MASTER_LEVEL "") +set(CONFIG_LOG_DYNAMIC_LEVEL_CONTROL "y") +set(CONFIG_LOG_TAG_LEVEL_IMPL_NONE "") +set(CONFIG_LOG_TAG_LEVEL_IMPL_LINKED_LIST "") +set(CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST "y") +set(CONFIG_LOG_TAG_LEVEL_CACHE_ARRAY "") +set(CONFIG_LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP "y") +set(CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_SIZE "31") +set(CONFIG_LOG_COLORS "") +set(CONFIG_LOG_TIMESTAMP_SOURCE_RTOS "y") +set(CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM "") +set(CONFIG_LOG_MODE_TEXT_EN "y") +set(CONFIG_LOG_MODE_TEXT "y") +set(CONFIG_LOG_IN_IRAM "y") +set(CONFIG_MMU_PAGE_SIZE_64KB "y") +set(CONFIG_MMU_PAGE_MODE "64KB") +set(CONFIG_MMU_PAGE_SIZE "0x10000") +set(CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC "y") +set(CONFIG_SPI_FLASH_BROWNOUT_RESET "y") +set(CONFIG_SPI_FLASH_SUSPEND_TSUS_VAL_US "50") +set(CONFIG_SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND "") +set(CONFIG_SPI_FLASH_FORCE_ENABLE_C6_H2_SUSPEND "") +set(CONFIG_SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM "y") +set(CONFIG_SPI_FLASH_VERIFY_WRITE "") +set(CONFIG_SPI_FLASH_ENABLE_COUNTERS "") +set(CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS "y") +set(CONFIG_SPI_FLASH_DANGEROUS_WRITE_FAILS "") +set(CONFIG_SPI_FLASH_DANGEROUS_WRITE_ALLOWED "") +set(CONFIG_SPI_FLASH_SHARE_SPI1_BUS "") +set(CONFIG_SPI_FLASH_BYPASS_BLOCK_ERASE "") +set(CONFIG_SPI_FLASH_YIELD_DURING_ERASE "y") +set(CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS "20") +set(CONFIG_SPI_FLASH_ERASE_YIELD_TICKS "1") +set(CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE "8192") +set(CONFIG_SPI_FLASH_SIZE_OVERRIDE "") +set(CONFIG_SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED "") +set(CONFIG_SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST "") +set(CONFIG_SPI_FLASH_VENDOR_XMC_SUPPORT_ENABLED "y") +set(CONFIG_SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED "y") +set(CONFIG_SPI_FLASH_VENDOR_ISSI_SUPPORT_ENABLED "y") +set(CONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORT_ENABLED "y") +set(CONFIG_SPI_FLASH_VENDOR_WINBOND_SUPPORT_ENABLED "y") +set(CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP "y") +set(CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP "y") +set(CONFIG_SPI_FLASH_SUPPORT_GD_CHIP "y") +set(CONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP "y") +set(CONFIG_SPI_FLASH_SUPPORT_BOYA_CHIP "") +set(CONFIG_SPI_FLASH_SUPPORT_TH_CHIP "") +set(CONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE "y") +set(CONFIG_IDF_EXPERIMENTAL_FEATURES "") +set(CONFIGS_LIST CONFIG_SOC_CAPS_ECO_VER_MAX;CONFIG_SOC_ADC_SUPPORTED;CONFIG_SOC_DAC_SUPPORTED;CONFIG_SOC_UART_SUPPORTED;CONFIG_SOC_MCPWM_SUPPORTED;CONFIG_SOC_GPTIMER_SUPPORTED;CONFIG_SOC_SDMMC_HOST_SUPPORTED;CONFIG_SOC_BT_SUPPORTED;CONFIG_SOC_PCNT_SUPPORTED;CONFIG_SOC_PHY_SUPPORTED;CONFIG_SOC_WIFI_SUPPORTED;CONFIG_SOC_SDIO_SLAVE_SUPPORTED;CONFIG_SOC_TWAI_SUPPORTED;CONFIG_SOC_EFUSE_SUPPORTED;CONFIG_SOC_EMAC_SUPPORTED;CONFIG_SOC_ULP_SUPPORTED;CONFIG_SOC_CCOMP_TIMER_SUPPORTED;CONFIG_SOC_RTC_FAST_MEM_SUPPORTED;CONFIG_SOC_RTC_SLOW_MEM_SUPPORTED;CONFIG_SOC_RTC_MEM_SUPPORTED;CONFIG_SOC_RTC_TIMER_V1_SUPPORTED;CONFIG_SOC_I2S_SUPPORTED;CONFIG_SOC_I2S_I80_LCD_SUPPORTED;CONFIG_SOC_LCD_I80_SUPPORTED;CONFIG_SOC_RMT_SUPPORTED;CONFIG_SOC_SDM_SUPPORTED;CONFIG_SOC_GPSPI_SUPPORTED;CONFIG_SOC_LEDC_SUPPORTED;CONFIG_SOC_I2C_SUPPORTED;CONFIG_SOC_SUPPORT_COEXISTENCE;CONFIG_SOC_AES_SUPPORTED;CONFIG_SOC_MPI_SUPPORTED;CONFIG_SOC_SHA_SUPPORTED;CONFIG_SOC_FLASH_ENC_SUPPORTED;CONFIG_SOC_SECURE_BOOT_SUPPORTED;CONFIG_SOC_TOUCH_SENSOR_SUPPORTED;CONFIG_SOC_BOD_SUPPORTED;CONFIG_SOC_ULP_FSM_SUPPORTED;CONFIG_SOC_CLK_TREE_SUPPORTED;CONFIG_SOC_MPU_SUPPORTED;CONFIG_SOC_WDT_SUPPORTED;CONFIG_SOC_SPI_FLASH_SUPPORTED;CONFIG_SOC_RNG_SUPPORTED;CONFIG_SOC_LIGHT_SLEEP_SUPPORTED;CONFIG_SOC_DEEP_SLEEP_SUPPORTED;CONFIG_SOC_LP_PERIPH_SHARE_INTERRUPT;CONFIG_SOC_PM_SUPPORTED;CONFIG_SOC_DPORT_WORKAROUND_DIS_INTERRUPT_LVL;CONFIG_SOC_XTAL_SUPPORT_26M;CONFIG_SOC_XTAL_SUPPORT_40M;CONFIG_SOC_ADC_RTC_CTRL_SUPPORTED;CONFIG_SOC_ADC_DIG_CTRL_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_MONITOR_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_SHARED_POWER;CONFIG_SOC_BROWNOUT_RESET_SUPPORTED;CONFIG_SOC_SHARED_IDCACHE_SUPPORTED;CONFIG_SOC_IDCACHE_PER_CORE;CONFIG_SOC_CPU_CORES_NUM;CONFIG_SOC_CPU_INTR_NUM;CONFIG_SOC_CPU_HAS_FPU;CONFIG_SOC_HP_CPU_HAS_MULTIPLE_CORES;CONFIG_SOC_CPU_BREAKPOINTS_NUM;CONFIG_SOC_CPU_WATCHPOINTS_NUM;CONFIG_SOC_CPU_WATCHPOINT_MAX_REGION_SIZE;CONFIG_SOC_DAC_CHAN_NUM;CONFIG_SOC_DAC_RESOLUTION;CONFIG_SOC_DAC_DMA_16BIT_ALIGN;CONFIG_SOC_GPIO_PORT;CONFIG_SOC_GPIO_PIN_COUNT;CONFIG_SOC_GPIO_VALID_GPIO_MASK;CONFIG_SOC_GPIO_IN_RANGE_MAX;CONFIG_SOC_GPIO_OUT_RANGE_MAX;CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK;CONFIG_SOC_GPIO_CLOCKOUT_BY_IO_MUX;CONFIG_SOC_GPIO_CLOCKOUT_CHANNEL_NUM;CONFIG_SOC_I2C_NUM;CONFIG_SOC_HP_I2C_NUM;CONFIG_SOC_I2C_SUPPORT_APB;CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR;CONFIG_SOC_I2C_SUPPORT_SLAVE;CONFIG_SOC_I2C_STOP_INDEPENDENT;CONFIG_SOC_I2S_HW_VERSION_1;CONFIG_SOC_I2S_SUPPORTS_APLL;CONFIG_SOC_I2S_SUPPORTS_PDM;CONFIG_SOC_I2S_SUPPORTS_PDM_TX;CONFIG_SOC_I2S_SUPPORTS_PCM2PDM;CONFIG_SOC_I2S_SUPPORTS_PDM_RX;CONFIG_SOC_I2S_SUPPORTS_PDM2PCM;CONFIG_SOC_I2S_PDM_MAX_TX_LINES;CONFIG_SOC_I2S_PDM_MAX_RX_LINES;CONFIG_SOC_LEDC_HAS_TIMER_SPECIFIC_MUX;CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK;CONFIG_SOC_LEDC_SUPPORT_REF_TICK;CONFIG_SOC_LEDC_SUPPORT_HS_MODE;CONFIG_SOC_LEDC_TIMER_NUM;CONFIG_SOC_LEDC_CHANNEL_NUM;CONFIG_SOC_LEDC_TIMER_BIT_WIDTH;CONFIG_SOC_MMU_PERIPH_NUM;CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM;CONFIG_SOC_MPU_MIN_REGION_SIZE;CONFIG_SOC_MPU_REGIONS_MAX_NUM;CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL;CONFIG_SOC_RTCIO_PIN_COUNT;CONFIG_SOC_RTCIO_INPUT_OUTPUT_SUPPORTED;CONFIG_SOC_RTCIO_HOLD_SUPPORTED;CONFIG_SOC_RTCIO_WAKE_SUPPORTED;CONFIG_SOC_SPI_HD_BOTH_INOUT_SUPPORTED;CONFIG_SOC_SPI_AS_CS_SUPPORTED;CONFIG_SOC_SPI_PERIPH_NUM;CONFIG_SOC_SPI_DMA_CHAN_NUM;CONFIG_SOC_SPI_MAX_CS_NUM;CONFIG_SOC_SPI_SUPPORT_CLK_APB;CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE;CONFIG_SOC_SPI_MAX_PRE_DIVIDER;CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED;CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED;CONFIG_SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED;CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED;CONFIG_SOC_LP_TIMER_BIT_WIDTH_LO;CONFIG_SOC_LP_TIMER_BIT_WIDTH_HI;CONFIG_SOC_TOUCH_SENSOR_VERSION;CONFIG_SOC_TOUCH_MIN_CHAN_ID;CONFIG_SOC_TOUCH_MAX_CHAN_ID;CONFIG_SOC_TOUCH_SUPPORT_SLEEP_WAKEUP;CONFIG_SOC_TOUCH_SAMPLE_CFG_NUM;CONFIG_SOC_TWAI_CONTROLLER_NUM;CONFIG_SOC_TWAI_MASK_FILTER_NUM;CONFIG_SOC_UART_NUM;CONFIG_SOC_UART_HP_NUM;CONFIG_SOC_UART_SUPPORT_APB_CLK;CONFIG_SOC_UART_SUPPORT_REF_TICK;CONFIG_SOC_UART_FIFO_LEN;CONFIG_SOC_UART_BITRATE_MAX;CONFIG_SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE;CONFIG_SOC_SPIRAM_SUPPORTED;CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE;CONFIG_SOC_SHA_SUPPORT_PARALLEL_ENG;CONFIG_SOC_SHA_ENDIANNESS_BE;CONFIG_SOC_SHA_SUPPORT_SHA1;CONFIG_SOC_SHA_SUPPORT_SHA256;CONFIG_SOC_SHA_SUPPORT_SHA384;CONFIG_SOC_SHA_SUPPORT_SHA512;CONFIG_SOC_MPI_MEM_BLOCKS_NUM;CONFIG_SOC_MPI_OPERATIONS_NUM;CONFIG_SOC_RSA_MAX_BIT_LEN;CONFIG_SOC_AES_SUPPORT_AES_128;CONFIG_SOC_AES_SUPPORT_AES_192;CONFIG_SOC_AES_SUPPORT_AES_256;CONFIG_SOC_SECURE_BOOT_V1;CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS;CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX;CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE;CONFIG_SOC_PM_SUPPORT_EXT0_WAKEUP;CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP;CONFIG_SOC_PM_SUPPORT_EXT_WAKEUP;CONFIG_SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP;CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD;CONFIG_SOC_PM_SUPPORT_RTC_FAST_MEM_PD;CONFIG_SOC_PM_SUPPORT_RTC_SLOW_MEM_PD;CONFIG_SOC_PM_SUPPORT_RC_FAST_PD;CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD;CONFIG_SOC_PM_SUPPORT_MODEM_PD;CONFIG_SOC_CONFIGURABLE_VDDSDIO_SUPPORTED;CONFIG_SOC_PM_MODEM_PD_BY_SW;CONFIG_SOC_CLK_APLL_SUPPORTED;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_CLK_LP_FAST_SUPPORT_XTAL_D4;CONFIG_SOC_SDMMC_USE_IOMUX;CONFIG_SOC_SDMMC_NUM_SLOTS;CONFIG_SOC_SDMMC_DATA_WIDTH_MAX;CONFIG_SOC_WIFI_WAPI_SUPPORT;CONFIG_SOC_WIFI_CSI_SUPPORT;CONFIG_SOC_WIFI_MESH_SUPPORT;CONFIG_SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW;CONFIG_SOC_WIFI_NAN_SUPPORT;CONFIG_SOC_BLE_SUPPORTED;CONFIG_SOC_BLE_MESH_SUPPORTED;CONFIG_SOC_BT_CLASSIC_SUPPORTED;CONFIG_SOC_BLUFI_SUPPORTED;CONFIG_SOC_BT_H2C_ENC_KEY_CTRL_ENH_VSC_SUPPORTED;CONFIG_SOC_BLE_MULTI_CONN_OPTIMIZATION;CONFIG_SOC_ULP_HAS_ADC;CONFIG_SOC_PHY_COMBO_MODULE;CONFIG_SOC_EMAC_RMII_CLK_OUT_INTERNAL_LOOPBACK;CONFIG_IDF_CMAKE;CONFIG_IDF_TOOLCHAIN;CONFIG_IDF_TOOLCHAIN_GCC;CONFIG_IDF_TARGET_ARCH_XTENSA;CONFIG_IDF_TARGET_ARCH;CONFIG_IDF_TARGET;CONFIG_IDF_INIT_VERSION;CONFIG_IDF_TARGET_ESP32;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_ESP32_NO_BLOBS;CONFIG_APP_COMPATIBLE_PRE_V2_1_BOOTLOADERS;CONFIG_ESP32_COMPATIBLE_PRE_V2_1_BOOTLOADERS;CONFIG_APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS;CONFIG_ESP32_COMPATIBLE_PRE_V3_1_BOOTLOADERS;CONFIG_BOOTLOADER_COMPILE_TIME_DATE;CONFIG_BOOTLOADER_PROJECT_VER;CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE;CONFIG_APP_ROLLBACK_ENABLE;CONFIG_BOOTLOADER_OFFSET_IN_FLASH;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_NONE;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF;CONFIG_BOOTLOADER_LOG_VERSION_1;CONFIG_BOOTLOADER_LOG_VERSION;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_LOG_COLORS;CONFIG_BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS;CONFIG_BOOTLOADER_LOG_MODE_TEXT_EN;CONFIG_BOOTLOADER_LOG_MODE_TEXT;CONFIG_BOOTLOADER_CPU_CLK_FREQ_MHZ;CONFIG_BOOTLOADER_FLASH_DC_AWARE;CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT;CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_8V;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_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_SECURE_BOOT_V1_SUPPORTED;CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT;CONFIG_SECURE_BOOT;CONFIG_SECURE_FLASH_ENC_ENABLED;CONFIG_FLASH_ENCRYPTION_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_HAS_UART_BUF_SWITCH;CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND;CONFIG_ESP_ROM_HAS_NEWLIB;CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT;CONFIG_ESP_ROM_HAS_NEWLIB_32BIT_TIME;CONFIG_ESP_ROM_HAS_SW_FLOAT;CONFIG_ESP_ROM_USB_OTG_NUM;CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM;CONFIG_ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB;CONFIG_ESP_ROM_HAS_OUTPUT_PUTC_FUNC;CONFIG_ESPTOOLPY_NO_STUB;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_80M;CONFIG_ESPTOOLPY_FLASHFREQ_40M;CONFIG_ESPTOOLPY_FLASHFREQ_26M;CONFIG_ESPTOOLPY_FLASHFREQ_20M;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_TWO_OTA_LARGE;CONFIG_PARTITION_TABLE_CUSTOM;CONFIG_PARTITION_TABLE_CUSTOM_FILENAME;CONFIG_PARTITION_TABLE_FILENAME;CONFIG_PARTITION_TABLE_OFFSET;CONFIG_PARTITION_TABLE_MD5;CONFIG_COMPILER_OPTIMIZATION_DEBUG;CONFIG_OPTIMIZATION_LEVEL_DEBUG;CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG;CONFIG_COMPILER_OPTIMIZATION_DEFAULT;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_ASSERT_NDEBUG_EVALUATE;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_NO_MERGE_CONSTANTS;CONFIG_COMPILER_WARN_WRITE_STRINGS;CONFIG_WARN_WRITE_STRINGS;CONFIG_COMPILER_DISABLE_DEFAULT_ERRORS;CONFIG_COMPILER_DISABLE_GCC12_WARNINGS;CONFIG_COMPILER_DISABLE_GCC13_WARNINGS;CONFIG_COMPILER_DISABLE_GCC14_WARNINGS;CONFIG_COMPILER_DISABLE_GCC15_WARNINGS;CONFIG_COMPILER_DUMP_RTL_FILES;CONFIG_COMPILER_RT_LIB_GCCLIB;CONFIG_COMPILER_RT_LIB_NAME;CONFIG_COMPILER_ORPHAN_SECTIONS_ERROR;CONFIG_COMPILER_ORPHAN_SECTIONS_WARNING;CONFIG_COMPILER_ORPHAN_SECTIONS_PLACE;CONFIG_COMPILER_STATIC_ANALYZER;CONFIG_COMPILER_CXX_GLIBCXX_CONSTEXPR_NO_CHANGE;CONFIG_COMPILER_CXX_GLIBCXX_CONSTEXPR_COLD_CONSTEXPR;CONFIG_COMPILER_CXX_GLIBCXX_CONSTEXPR_COLD;CONFIG_EFUSE_CUSTOM_TABLE;CONFIG_EFUSE_VIRTUAL;CONFIG_EFUSE_CODE_SCHEME_COMPAT_NONE;CONFIG_EFUSE_CODE_SCHEME_COMPAT_3_4;CONFIG_EFUSE_CODE_SCHEME_COMPAT_REPEAT;CONFIG_EFUSE_MAX_BLK_LEN;CONFIG_ESP_ERR_TO_NAME_LOOKUP;CONFIG_ESP_HW_SUPPORT_FUNC_IN_IRAM;CONFIG_ESP32_REV_MIN_0;CONFIG_ESP32_REV_MIN_1;CONFIG_ESP32_REV_MIN_1_1;CONFIG_ESP32_REV_MIN_2;CONFIG_ESP32_REV_MIN_3;CONFIG_ESP32_REV_MIN_3_1;CONFIG_ESP32_REV_MIN;CONFIG_ESP32_REV_MIN_FULL;CONFIG_ESP_REV_MIN_FULL;CONFIG_ESP32_REV_MAX_FULL;CONFIG_ESP_REV_MAX_FULL;CONFIG_ESP_EFUSE_BLOCK_REV_MIN_FULL;CONFIG_ESP_EFUSE_BLOCK_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_ESP_MAC_UNIVERSAL_MAC_ADDRESSES;CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_TWO;CONFIG_TWO_UNIVERSAL_MAC_ADDRESS;CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR;CONFIG_FOUR_UNIVERSAL_MAC_ADDRESS;CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES;CONFIG_NUMBER_OF_UNIVERSAL_MAC_ADDRESS;CONFIG_ESP_MAC_IGNORE_MAC_CRC_ERROR;CONFIG_ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC;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_WAIT_FLASH_READY_EXTRA_DELAY;CONFIG_ESP32_DEEP_SLEEP_WAKEUP_DELAY;CONFIG_ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY;CONFIG_ESP_SLEEP_CACHE_SAFE_ASSERTION;CONFIG_ESP_SLEEP_DEBUG;CONFIG_ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS;CONFIG_RTC_CLK_SRC_INT_RC;CONFIG_ESP32_RTC_CLK_SRC_INT_RC;CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_RC;CONFIG_RTC_CLK_SRC_EXT_CRYS;CONFIG_ESP32_RTC_CLK_SRC_EXT_CRYS;CONFIG_ESP32_RTC_CLOCK_SOURCE_EXTERNAL_CRYSTAL;CONFIG_RTC_CLK_SRC_EXT_OSC;CONFIG_ESP32_RTC_CLK_SRC_EXT_OSC;CONFIG_ESP32_RTC_CLOCK_SOURCE_EXTERNAL_OSC;CONFIG_RTC_CLK_SRC_INT_8MD256;CONFIG_ESP32_RTC_CLK_SRC_INT_8MD256;CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_8MD256;CONFIG_RTC_CLK_CAL_CYCLES;CONFIG_ESP32_RTC_CLK_CAL_CYCLES;CONFIG_RTC_CLK_FUNC_IN_IRAM;CONFIG_RTC_TIME_FUNC_IN_IRAM;CONFIG_ESP_PERIPH_CTRL_FUNC_IN_IRAM;CONFIG_PERIPH_CTRL_FUNC_IN_IRAM;CONFIG_ESP_REGI2C_CTRL_FUNC_IN_IRAM;CONFIG_XTAL_FREQ_26;CONFIG_ESP32_XTAL_FREQ_26;CONFIG_XTAL_FREQ_32;CONFIG_XTAL_FREQ_40;CONFIG_ESP32_XTAL_FREQ_40;CONFIG_XTAL_FREQ_AUTO;CONFIG_ESP32_XTAL_FREQ_AUTO;CONFIG_XTAL_FREQ;CONFIG_ESP32_XTAL_FREQ;CONFIG_ESP_BROWNOUT_DET;CONFIG_BROWNOUT_DET;CONFIG_ESP32_BROWNOUT_DET;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_0;CONFIG_BROWNOUT_DET_LVL_SEL_0;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_0;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_1;CONFIG_BROWNOUT_DET_LVL_SEL_1;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_1;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_2;CONFIG_BROWNOUT_DET_LVL_SEL_2;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_2;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_3;CONFIG_BROWNOUT_DET_LVL_SEL_3;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_3;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_4;CONFIG_BROWNOUT_DET_LVL_SEL_4;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_4;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_5;CONFIG_BROWNOUT_DET_LVL_SEL_5;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_5;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_6;CONFIG_BROWNOUT_DET_LVL_SEL_6;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_6;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7;CONFIG_BROWNOUT_DET_LVL_SEL_7;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_7;CONFIG_ESP_BROWNOUT_DET_LVL;CONFIG_BROWNOUT_DET_LVL;CONFIG_ESP32_BROWNOUT_DET_LVL;CONFIG_ESP_BROWNOUT_USE_INTR;CONFIG_ESP_SYSTEM_BROWNOUT_INTR;CONFIG_ESP_INTR_IN_IRAM;CONFIG_LIBC_NEWLIB;CONFIG_LIBC_PICOLIBC;CONFIG_LIBC_PICOLIBC_NEWLIB_COMPATIBILITY;CONFIG_LIBC_MISC_IN_IRAM;CONFIG_LIBC_LOCKS_PLACE_IN_IRAM;CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT;CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT;CONFIG_ESP32_TIME_SYSCALL_USE_RTC_HRT;CONFIG_ESP32_TIME_SYSCALL_USE_RTC_FRC1;CONFIG_LIBC_TIME_SYSCALL_USE_RTC;CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC;CONFIG_ESP32_TIME_SYSCALL_USE_RTC;CONFIG_LIBC_TIME_SYSCALL_USE_HRT;CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT;CONFIG_ESP32_TIME_SYSCALL_USE_HRT;CONFIG_ESP32_TIME_SYSCALL_USE_FRC1;CONFIG_LIBC_TIME_SYSCALL_USE_NONE;CONFIG_NEWLIB_TIME_SYSCALL_USE_NONE;CONFIG_ESP32_TIME_SYSCALL_USE_NONE;CONFIG_LIBC_ASSERT_BUFFER_SIZE;CONFIG_ESP_ROM_PRINT_IN_IRAM;CONFIG_ESP_CONSOLE_UART_DEFAULT;CONFIG_CONSOLE_UART_DEFAULT;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_UART;CONFIG_CONSOLE_UART;CONFIG_ESP_CONSOLE_UART_NUM;CONFIG_CONSOLE_UART_NUM;CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM;CONFIG_ESP_CONSOLE_UART_BAUDRATE;CONFIG_CONSOLE_UART_BAUDRATE;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_80;CONFIG_ESP32_DEFAULT_CPU_FREQ_80;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160;CONFIG_ESP32_DEFAULT_CPU_FREQ_160;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240;CONFIG_ESP32_DEFAULT_CPU_FREQ_240;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ;CONFIG_ESP32_DEFAULT_CPU_FREQ_MHZ;CONFIG_ESP32_USE_FIXED_STATIC_RAM_SIZE;CONFIG_ESP_SYSTEM_ESP32_SRAM1_REGION_AS_IRAM;CONFIG_ESP32_TRAX;CONFIG_ESP32_TRACEMEM_RESERVE_DRAM;CONFIG_TRACEMEM_RESERVE_DRAM;CONFIG_ESP_SYSTEM_IN_IRAM;CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT;CONFIG_ESP32_PANIC_PRINT_HALT;CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT;CONFIG_ESP32_PANIC_PRINT_REBOOT;CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT;CONFIG_ESP32_PANIC_SILENT_REBOOT;CONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS;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_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_TASK_WDT_INIT;CONFIG_TASK_WDT;CONFIG_ESP_TASK_WDT;CONFIG_ESP_TASK_WDT_PANIC;CONFIG_TASK_WDT_PANIC;CONFIG_ESP_TASK_WDT_TIMEOUT_S;CONFIG_TASK_WDT_TIMEOUT_S;CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0;CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0;CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1;CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU1;CONFIG_ESP_PANIC_HANDLER_IRAM;CONFIG_ESP_DEBUG_STUBS_ENABLE;CONFIG_ESP32_DEBUG_STUBS_ENABLE;CONFIG_ESP_DEBUG_OCDAWARE;CONFIG_ESP32_DEBUG_OCDAWARE;CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_5;CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4;CONFIG_ESP32_DISABLE_BASIC_ROM_CONSOLE;CONFIG_DISABLE_BASIC_ROM_CONSOLE;CONFIG_ESP_IPC_ENABLE;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_USE_TIMERS;CONFIG_FREERTOS_TIMER_SERVICE_TASK_NAME;CONFIG_FREERTOS_TIMER_TASK_AFFINITY_CPU0;CONFIG_FREERTOS_TIMER_TASK_AFFINITY_CPU1;CONFIG_FREERTOS_TIMER_TASK_NO_AFFINITY;CONFIG_FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY;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_USE_LIST_DATA_INTEGRITY_CHECK_BYTES;CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS;CONFIG_FREERTOS_USE_APPLICATION_TASK_TAG;CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER;CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK;CONFIG_FREERTOS_TLSP_DELETION_CALLBACKS;CONFIG_FREERTOS_TASK_PRE_DELETION_HOOK;CONFIG_ENABLE_STATIC_TASK_CLEAN_UP_HOOK;CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER;CONFIG_FREERTOS_ISR_STACKSIZE;CONFIG_FREERTOS_INTERRUPT_BACKTRACE;CONFIG_FREERTOS_FPU_IN_ISR;CONFIG_FREERTOS_TICK_SUPPORT_CORETIMER;CONFIG_FREERTOS_CORETIMER_0;CONFIG_FREERTOS_CORETIMER_1;CONFIG_FREERTOS_SYSTICK_USES_CCOUNT;CONFIG_FREERTOS_IN_IRAM;CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE;CONFIG_FREERTOS_PORT;CONFIG_FREERTOS_NO_AFFINITY;CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION;CONFIG_FREERTOS_DEBUG_OCDAWARE;CONFIG_FREERTOS_NUMBER_OF_CORES;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_GPIO_USE_ROM_IMPL;CONFIG_LOG_VERSION_1;CONFIG_LOG_VERSION_2;CONFIG_LOG_VERSION;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_MASTER_LEVEL;CONFIG_LOG_DYNAMIC_LEVEL_CONTROL;CONFIG_LOG_TAG_LEVEL_IMPL_NONE;CONFIG_LOG_TAG_LEVEL_IMPL_LINKED_LIST;CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST;CONFIG_LOG_TAG_LEVEL_CACHE_ARRAY;CONFIG_LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP;CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_SIZE;CONFIG_LOG_COLORS;CONFIG_LOG_TIMESTAMP_SOURCE_RTOS;CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM;CONFIG_LOG_MODE_TEXT_EN;CONFIG_LOG_MODE_TEXT;CONFIG_LOG_IN_IRAM;CONFIG_MMU_PAGE_SIZE_64KB;CONFIG_MMU_PAGE_MODE;CONFIG_MMU_PAGE_SIZE;CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC;CONFIG_SPI_FLASH_BROWNOUT_RESET;CONFIG_SPI_FLASH_SUSPEND_TSUS_VAL_US;CONFIG_SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND;CONFIG_SPI_FLASH_FORCE_ENABLE_C6_H2_SUSPEND;CONFIG_SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM;CONFIG_SPI_FLASH_VERIFY_WRITE;CONFIG_SPI_FLASH_ENABLE_COUNTERS;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_SHARE_SPI1_BUS;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_VENDOR_XMC_SUPPORT_ENABLED;CONFIG_SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED;CONFIG_SPI_FLASH_VENDOR_ISSI_SUPPORT_ENABLED;CONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORT_ENABLED;CONFIG_SPI_FLASH_VENDOR_WINBOND_SUPPORT_ENABLED;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_ENABLE_ENCRYPTED_READ_WRITE;CONFIG_IDF_EXPERIMENTAL_FEATURES) +# List of deprecated options for backward compatibility +set(CONFIG_APP_BUILD_TYPE_ELF_RAM "") +set(CONFIG_NO_BLOBS "") +set(CONFIG_ESP32_NO_BLOBS "") +set(CONFIG_ESP32_COMPATIBLE_PRE_V2_1_BOOTLOADERS "") +set(CONFIG_ESP32_COMPATIBLE_PRE_V3_1_BOOTLOADERS "") +set(CONFIG_APP_ROLLBACK_ENABLE "") +set(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_NONE "") +set(CONFIG_LOG_BOOTLOADER_LEVEL_NONE "") +set(CONFIG_LOG_BOOTLOADER_LEVEL_ERROR "") +set(CONFIG_LOG_BOOTLOADER_LEVEL_WARN "") +set(CONFIG_LOG_BOOTLOADER_LEVEL_INFO "y") +set(CONFIG_LOG_BOOTLOADER_LEVEL_DEBUG "") +set(CONFIG_LOG_BOOTLOADER_LEVEL_VERBOSE "") +set(CONFIG_LOG_BOOTLOADER_LEVEL "3") +set(CONFIG_FLASH_ENCRYPTION_ENABLED "") +set(CONFIG_FLASHMODE_QIO "") +set(CONFIG_FLASHMODE_QOUT "") +set(CONFIG_FLASHMODE_DIO "y") +set(CONFIG_FLASHMODE_DOUT "") +set(CONFIG_MONITOR_BAUD "115200") +set(CONFIG_OPTIMIZATION_LEVEL_DEBUG "y") +set(CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG "y") +set(CONFIG_COMPILER_OPTIMIZATION_DEFAULT "y") +set(CONFIG_OPTIMIZATION_LEVEL_RELEASE "") +set(CONFIG_COMPILER_OPTIMIZATION_LEVEL_RELEASE "") +set(CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED "y") +set(CONFIG_OPTIMIZATION_ASSERTIONS_SILENT "") +set(CONFIG_OPTIMIZATION_ASSERTIONS_DISABLED "") +set(CONFIG_OPTIMIZATION_ASSERTION_LEVEL "2") +set(CONFIG_CXX_EXCEPTIONS "") +set(CONFIG_STACK_CHECK_NONE "y") +set(CONFIG_STACK_CHECK_NORM "") +set(CONFIG_STACK_CHECK_STRONG "") +set(CONFIG_STACK_CHECK_ALL "") +set(CONFIG_WARN_WRITE_STRINGS "") +set(CONFIG_TWO_UNIVERSAL_MAC_ADDRESS "") +set(CONFIG_FOUR_UNIVERSAL_MAC_ADDRESS "y") +set(CONFIG_NUMBER_OF_UNIVERSAL_MAC_ADDRESS "4") +set(CONFIG_ESP_SYSTEM_PD_FLASH "") +set(CONFIG_ESP32_DEEP_SLEEP_WAKEUP_DELAY "2000") +set(CONFIG_ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY "2000") +set(CONFIG_ESP32_RTC_CLK_SRC_INT_RC "y") +set(CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_RC "y") +set(CONFIG_ESP32_RTC_CLK_SRC_EXT_CRYS "") +set(CONFIG_ESP32_RTC_CLOCK_SOURCE_EXTERNAL_CRYSTAL "") +set(CONFIG_ESP32_RTC_CLK_SRC_EXT_OSC "") +set(CONFIG_ESP32_RTC_CLOCK_SOURCE_EXTERNAL_OSC "") +set(CONFIG_ESP32_RTC_CLK_SRC_INT_8MD256 "") +set(CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_8MD256 "") +set(CONFIG_ESP32_RTC_CLK_CAL_CYCLES "1024") +set(CONFIG_PERIPH_CTRL_FUNC_IN_IRAM "y") +set(CONFIG_ESP32_XTAL_FREQ_26 "") +set(CONFIG_ESP32_XTAL_FREQ_40 "y") +set(CONFIG_ESP32_XTAL_FREQ_AUTO "") +set(CONFIG_ESP32_XTAL_FREQ "40") +set(CONFIG_BROWNOUT_DET "y") +set(CONFIG_ESP32_BROWNOUT_DET "y") +set(CONFIG_BROWNOUT_DET_LVL_SEL_0 "y") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_0 "y") +set(CONFIG_BROWNOUT_DET_LVL_SEL_1 "") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_1 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_2 "") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_2 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_3 "") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_3 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_4 "") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_4 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_5 "") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_5 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_6 "") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_6 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_7 "") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_7 "") +set(CONFIG_BROWNOUT_DET_LVL "0") +set(CONFIG_ESP32_BROWNOUT_DET_LVL "0") +set(CONFIG_ESP_SYSTEM_BROWNOUT_INTR "y") +set(CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT "y") +set(CONFIG_ESP32_TIME_SYSCALL_USE_RTC_HRT "y") +set(CONFIG_ESP32_TIME_SYSCALL_USE_RTC_FRC1 "y") +set(CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC "") +set(CONFIG_ESP32_TIME_SYSCALL_USE_RTC "") +set(CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT "") +set(CONFIG_ESP32_TIME_SYSCALL_USE_HRT "") +set(CONFIG_ESP32_TIME_SYSCALL_USE_FRC1 "") +set(CONFIG_NEWLIB_TIME_SYSCALL_USE_NONE "") +set(CONFIG_ESP32_TIME_SYSCALL_USE_NONE "") +set(CONFIG_CONSOLE_UART_DEFAULT "y") +set(CONFIG_CONSOLE_UART_CUSTOM "") +set(CONFIG_CONSOLE_UART_NONE "") +set(CONFIG_ESP_CONSOLE_UART_NONE "") +set(CONFIG_CONSOLE_UART "y") +set(CONFIG_CONSOLE_UART_NUM "0") +set(CONFIG_CONSOLE_UART_BAUDRATE "115200") +set(CONFIG_ESP32_DEFAULT_CPU_FREQ_80 "") +set(CONFIG_ESP32_DEFAULT_CPU_FREQ_160 "y") +set(CONFIG_ESP32_DEFAULT_CPU_FREQ_240 "") +set(CONFIG_ESP32_DEFAULT_CPU_FREQ_MHZ "160") +set(CONFIG_TRACEMEM_RESERVE_DRAM "0x0") +set(CONFIG_ESP32_PANIC_PRINT_HALT "") +set(CONFIG_ESP32_PANIC_PRINT_REBOOT "y") +set(CONFIG_ESP32_PANIC_SILENT_REBOOT "") +set(CONFIG_SYSTEM_EVENT_QUEUE_SIZE "32") +set(CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE "2304") +set(CONFIG_MAIN_TASK_STACK_SIZE "3584") +set(CONFIG_INT_WDT "y") +set(CONFIG_INT_WDT_TIMEOUT_MS "300") +set(CONFIG_INT_WDT_CHECK_CPU1 "y") +set(CONFIG_TASK_WDT "y") +set(CONFIG_ESP_TASK_WDT "y") +set(CONFIG_TASK_WDT_PANIC "") +set(CONFIG_TASK_WDT_TIMEOUT_S "5") +set(CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0 "y") +set(CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU1 "y") +set(CONFIG_ESP32_DEBUG_STUBS_ENABLE "") +set(CONFIG_ESP32_DEBUG_OCDAWARE "y") +set(CONFIG_DISABLE_BASIC_ROM_CONSOLE "") +set(CONFIG_IPC_TASK_STACK_SIZE "1024") +set(CONFIG_TIMER_TASK_PRIORITY "1") +set(CONFIG_TIMER_TASK_STACK_DEPTH "2048") +set(CONFIG_TIMER_QUEUE_LENGTH "10") +set(CONFIG_ENABLE_STATIC_TASK_CLEAN_UP_HOOK "") +set(CONFIG_HAL_ASSERTION_SILIENT "") +set(CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS "y") +set(CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_FAILS "") +set(CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ALLOWED "") diff --git a/build/bootloader/config/sdkconfig.h b/build/bootloader/config/sdkconfig.h new file mode 100644 index 0000000..d768c47 --- /dev/null +++ b/build/bootloader/config/sdkconfig.h @@ -0,0 +1,479 @@ +/* + * Automatically generated file. DO NOT EDIT. + * Espressif IoT Development Framework (ESP-IDF) 6.0.0 Configuration Header + */ +#pragma once +#define CONFIG_SOC_CAPS_ECO_VER_MAX 301 +#define CONFIG_SOC_ADC_SUPPORTED 1 +#define CONFIG_SOC_DAC_SUPPORTED 1 +#define CONFIG_SOC_UART_SUPPORTED 1 +#define CONFIG_SOC_MCPWM_SUPPORTED 1 +#define CONFIG_SOC_GPTIMER_SUPPORTED 1 +#define CONFIG_SOC_SDMMC_HOST_SUPPORTED 1 +#define CONFIG_SOC_BT_SUPPORTED 1 +#define CONFIG_SOC_PCNT_SUPPORTED 1 +#define CONFIG_SOC_PHY_SUPPORTED 1 +#define CONFIG_SOC_WIFI_SUPPORTED 1 +#define CONFIG_SOC_SDIO_SLAVE_SUPPORTED 1 +#define CONFIG_SOC_TWAI_SUPPORTED 1 +#define CONFIG_SOC_EFUSE_SUPPORTED 1 +#define CONFIG_SOC_EMAC_SUPPORTED 1 +#define CONFIG_SOC_ULP_SUPPORTED 1 +#define CONFIG_SOC_CCOMP_TIMER_SUPPORTED 1 +#define CONFIG_SOC_RTC_FAST_MEM_SUPPORTED 1 +#define CONFIG_SOC_RTC_SLOW_MEM_SUPPORTED 1 +#define CONFIG_SOC_RTC_MEM_SUPPORTED 1 +#define CONFIG_SOC_RTC_TIMER_V1_SUPPORTED 1 +#define CONFIG_SOC_I2S_SUPPORTED 1 +#define CONFIG_SOC_I2S_I80_LCD_SUPPORTED 1 +#define CONFIG_SOC_LCD_I80_SUPPORTED 1 +#define CONFIG_SOC_RMT_SUPPORTED 1 +#define CONFIG_SOC_SDM_SUPPORTED 1 +#define CONFIG_SOC_GPSPI_SUPPORTED 1 +#define CONFIG_SOC_LEDC_SUPPORTED 1 +#define CONFIG_SOC_I2C_SUPPORTED 1 +#define CONFIG_SOC_SUPPORT_COEXISTENCE 1 +#define CONFIG_SOC_AES_SUPPORTED 1 +#define CONFIG_SOC_MPI_SUPPORTED 1 +#define CONFIG_SOC_SHA_SUPPORTED 1 +#define CONFIG_SOC_FLASH_ENC_SUPPORTED 1 +#define CONFIG_SOC_SECURE_BOOT_SUPPORTED 1 +#define CONFIG_SOC_TOUCH_SENSOR_SUPPORTED 1 +#define CONFIG_SOC_BOD_SUPPORTED 1 +#define CONFIG_SOC_ULP_FSM_SUPPORTED 1 +#define CONFIG_SOC_CLK_TREE_SUPPORTED 1 +#define CONFIG_SOC_MPU_SUPPORTED 1 +#define CONFIG_SOC_WDT_SUPPORTED 1 +#define CONFIG_SOC_SPI_FLASH_SUPPORTED 1 +#define CONFIG_SOC_RNG_SUPPORTED 1 +#define CONFIG_SOC_LIGHT_SLEEP_SUPPORTED 1 +#define CONFIG_SOC_DEEP_SLEEP_SUPPORTED 1 +#define CONFIG_SOC_LP_PERIPH_SHARE_INTERRUPT 1 +#define CONFIG_SOC_PM_SUPPORTED 1 +#define CONFIG_SOC_DPORT_WORKAROUND_DIS_INTERRUPT_LVL 5 +#define CONFIG_SOC_XTAL_SUPPORT_26M 1 +#define CONFIG_SOC_XTAL_SUPPORT_40M 1 +#define CONFIG_SOC_ADC_RTC_CTRL_SUPPORTED 1 +#define CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED 1 +#define CONFIG_SOC_ADC_DMA_SUPPORTED 1 +#define CONFIG_SOC_ADC_PERIPH_NUM 2 +#define CONFIG_SOC_ADC_MAX_CHANNEL_NUM 10 +#define CONFIG_SOC_ADC_ATTEN_NUM 4 +#define CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM 2 +#define CONFIG_SOC_ADC_PATT_LEN_MAX 16 +#define CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH 9 +#define CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH 12 +#define CONFIG_SOC_ADC_DIGI_RESULT_BYTES 2 +#define CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV 4 +#define CONFIG_SOC_ADC_DIGI_MONITOR_NUM 0 +#define CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH 2000000 +#define CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW 20000 +#define CONFIG_SOC_ADC_RTC_MIN_BITWIDTH 9 +#define CONFIG_SOC_ADC_RTC_MAX_BITWIDTH 12 +#define CONFIG_SOC_ADC_SHARED_POWER 1 +#define CONFIG_SOC_BROWNOUT_RESET_SUPPORTED 1 +#define CONFIG_SOC_SHARED_IDCACHE_SUPPORTED 1 +#define CONFIG_SOC_IDCACHE_PER_CORE 1 +#define CONFIG_SOC_CPU_CORES_NUM 2 +#define CONFIG_SOC_CPU_INTR_NUM 32 +#define CONFIG_SOC_CPU_HAS_FPU 1 +#define CONFIG_SOC_HP_CPU_HAS_MULTIPLE_CORES 1 +#define CONFIG_SOC_CPU_BREAKPOINTS_NUM 2 +#define CONFIG_SOC_CPU_WATCHPOINTS_NUM 2 +#define CONFIG_SOC_CPU_WATCHPOINT_MAX_REGION_SIZE 0x40 +#define CONFIG_SOC_DAC_CHAN_NUM 2 +#define CONFIG_SOC_DAC_RESOLUTION 8 +#define CONFIG_SOC_DAC_DMA_16BIT_ALIGN 1 +#define CONFIG_SOC_GPIO_PORT 1 +#define CONFIG_SOC_GPIO_PIN_COUNT 40 +#define CONFIG_SOC_GPIO_VALID_GPIO_MASK 0xFFFFFFFFFF +#define CONFIG_SOC_GPIO_IN_RANGE_MAX 39 +#define CONFIG_SOC_GPIO_OUT_RANGE_MAX 33 +#define CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK 0xEF0FEA +#define CONFIG_SOC_GPIO_CLOCKOUT_BY_IO_MUX 1 +#define CONFIG_SOC_GPIO_CLOCKOUT_CHANNEL_NUM 3 +#define CONFIG_SOC_I2C_NUM 2 +#define CONFIG_SOC_HP_I2C_NUM 2 +#define CONFIG_SOC_I2C_SUPPORT_APB 1 +#define CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR 1 +#define CONFIG_SOC_I2C_SUPPORT_SLAVE 1 +#define CONFIG_SOC_I2C_STOP_INDEPENDENT 1 +#define CONFIG_SOC_I2S_HW_VERSION_1 1 +#define CONFIG_SOC_I2S_SUPPORTS_APLL 1 +#define CONFIG_SOC_I2S_SUPPORTS_PDM 1 +#define CONFIG_SOC_I2S_SUPPORTS_PDM_TX 1 +#define CONFIG_SOC_I2S_SUPPORTS_PCM2PDM 1 +#define CONFIG_SOC_I2S_SUPPORTS_PDM_RX 1 +#define CONFIG_SOC_I2S_SUPPORTS_PDM2PCM 1 +#define CONFIG_SOC_I2S_PDM_MAX_TX_LINES 1 +#define CONFIG_SOC_I2S_PDM_MAX_RX_LINES 1 +#define CONFIG_SOC_LEDC_HAS_TIMER_SPECIFIC_MUX 1 +#define CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK 1 +#define CONFIG_SOC_LEDC_SUPPORT_REF_TICK 1 +#define CONFIG_SOC_LEDC_SUPPORT_HS_MODE 1 +#define CONFIG_SOC_LEDC_TIMER_NUM 4 +#define CONFIG_SOC_LEDC_CHANNEL_NUM 8 +#define CONFIG_SOC_LEDC_TIMER_BIT_WIDTH 20 +#define CONFIG_SOC_MMU_PERIPH_NUM 2 +#define CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM 3 +#define CONFIG_SOC_MPU_MIN_REGION_SIZE 0x20000000 +#define CONFIG_SOC_MPU_REGIONS_MAX_NUM 8 +#define CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL 64 +#define CONFIG_SOC_RTCIO_PIN_COUNT 18 +#define CONFIG_SOC_RTCIO_INPUT_OUTPUT_SUPPORTED 1 +#define CONFIG_SOC_RTCIO_HOLD_SUPPORTED 1 +#define CONFIG_SOC_RTCIO_WAKE_SUPPORTED 1 +#define CONFIG_SOC_SPI_HD_BOTH_INOUT_SUPPORTED 1 +#define CONFIG_SOC_SPI_AS_CS_SUPPORTED 1 +#define CONFIG_SOC_SPI_PERIPH_NUM 3 +#define CONFIG_SOC_SPI_DMA_CHAN_NUM 2 +#define CONFIG_SOC_SPI_MAX_CS_NUM 3 +#define CONFIG_SOC_SPI_SUPPORT_CLK_APB 1 +#define CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE 64 +#define CONFIG_SOC_SPI_MAX_PRE_DIVIDER 8192 +#define CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED 1 +#define CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED 1 +#define CONFIG_SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED 1 +#define CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED 1 +#define CONFIG_SOC_LP_TIMER_BIT_WIDTH_LO 32 +#define CONFIG_SOC_LP_TIMER_BIT_WIDTH_HI 16 +#define CONFIG_SOC_TOUCH_SENSOR_VERSION 1 +#define CONFIG_SOC_TOUCH_MIN_CHAN_ID 0 +#define CONFIG_SOC_TOUCH_MAX_CHAN_ID 9 +#define CONFIG_SOC_TOUCH_SUPPORT_SLEEP_WAKEUP 1 +#define CONFIG_SOC_TOUCH_SAMPLE_CFG_NUM 1 +#define CONFIG_SOC_TWAI_CONTROLLER_NUM 1 +#define CONFIG_SOC_TWAI_MASK_FILTER_NUM 1 +#define CONFIG_SOC_UART_NUM 3 +#define CONFIG_SOC_UART_HP_NUM 3 +#define CONFIG_SOC_UART_SUPPORT_APB_CLK 1 +#define CONFIG_SOC_UART_SUPPORT_REF_TICK 1 +#define CONFIG_SOC_UART_FIFO_LEN 128 +#define CONFIG_SOC_UART_BITRATE_MAX 5000000 +#define CONFIG_SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE 1 +#define CONFIG_SOC_SPIRAM_SUPPORTED 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE 1 +#define CONFIG_SOC_SHA_SUPPORT_PARALLEL_ENG 1 +#define CONFIG_SOC_SHA_ENDIANNESS_BE 1 +#define CONFIG_SOC_SHA_SUPPORT_SHA1 1 +#define CONFIG_SOC_SHA_SUPPORT_SHA256 1 +#define CONFIG_SOC_SHA_SUPPORT_SHA384 1 +#define CONFIG_SOC_SHA_SUPPORT_SHA512 1 +#define CONFIG_SOC_MPI_MEM_BLOCKS_NUM 4 +#define CONFIG_SOC_MPI_OPERATIONS_NUM 1 +#define CONFIG_SOC_RSA_MAX_BIT_LEN 4096 +#define CONFIG_SOC_AES_SUPPORT_AES_128 1 +#define CONFIG_SOC_AES_SUPPORT_AES_192 1 +#define CONFIG_SOC_AES_SUPPORT_AES_256 1 +#define CONFIG_SOC_SECURE_BOOT_V1 1 +#define CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS 1 +#define CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX 32 +#define CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE 21 +#define CONFIG_SOC_PM_SUPPORT_EXT0_WAKEUP 1 +#define CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP 1 +#define CONFIG_SOC_PM_SUPPORT_EXT_WAKEUP 1 +#define CONFIG_SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP 1 +#define CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD 1 +#define CONFIG_SOC_PM_SUPPORT_RTC_FAST_MEM_PD 1 +#define CONFIG_SOC_PM_SUPPORT_RTC_SLOW_MEM_PD 1 +#define CONFIG_SOC_PM_SUPPORT_RC_FAST_PD 1 +#define CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD 1 +#define CONFIG_SOC_PM_SUPPORT_MODEM_PD 1 +#define CONFIG_SOC_CONFIGURABLE_VDDSDIO_SUPPORTED 1 +#define CONFIG_SOC_PM_MODEM_PD_BY_SW 1 +#define CONFIG_SOC_CLK_APLL_SUPPORTED 1 +#define CONFIG_SOC_CLK_RC_FAST_D256_SUPPORTED 1 +#define CONFIG_SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256 1 +#define CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION 1 +#define CONFIG_SOC_CLK_XTAL32K_SUPPORTED 1 +#define CONFIG_SOC_CLK_LP_FAST_SUPPORT_XTAL_D4 1 +#define CONFIG_SOC_SDMMC_USE_IOMUX 1 +#define CONFIG_SOC_SDMMC_NUM_SLOTS 2 +#define CONFIG_SOC_SDMMC_DATA_WIDTH_MAX 8 +#define CONFIG_SOC_WIFI_WAPI_SUPPORT 1 +#define CONFIG_SOC_WIFI_CSI_SUPPORT 1 +#define CONFIG_SOC_WIFI_MESH_SUPPORT 1 +#define CONFIG_SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW 1 +#define CONFIG_SOC_WIFI_NAN_SUPPORT 1 +#define CONFIG_SOC_BLE_SUPPORTED 1 +#define CONFIG_SOC_BLE_MESH_SUPPORTED 1 +#define CONFIG_SOC_BT_CLASSIC_SUPPORTED 1 +#define CONFIG_SOC_BLUFI_SUPPORTED 1 +#define CONFIG_SOC_BT_H2C_ENC_KEY_CTRL_ENH_VSC_SUPPORTED 1 +#define CONFIG_SOC_BLE_MULTI_CONN_OPTIMIZATION 1 +#define CONFIG_SOC_ULP_HAS_ADC 1 +#define CONFIG_SOC_PHY_COMBO_MODULE 1 +#define CONFIG_SOC_EMAC_RMII_CLK_OUT_INTERNAL_LOOPBACK 1 +#define CONFIG_IDF_CMAKE 1 +#define CONFIG_IDF_TOOLCHAIN "gcc" +#define CONFIG_IDF_TOOLCHAIN_GCC 1 +#define CONFIG_IDF_TARGET_ARCH_XTENSA 1 +#define CONFIG_IDF_TARGET_ARCH "xtensa" +#define CONFIG_IDF_TARGET "esp32" +#define CONFIG_IDF_INIT_VERSION "6.0.0" +#define CONFIG_IDF_TARGET_ESP32 1 +#define CONFIG_IDF_FIRMWARE_CHIP_ID 0x0000 +#define CONFIG_APP_BUILD_TYPE_APP_2NDBOOT 1 +#define CONFIG_APP_BUILD_GENERATE_BINARIES 1 +#define CONFIG_APP_BUILD_BOOTLOADER 1 +#define CONFIG_APP_BUILD_USE_FLASH_SECTIONS 1 +#define CONFIG_BOOTLOADER_COMPILE_TIME_DATE 1 +#define CONFIG_BOOTLOADER_PROJECT_VER 1 +#define CONFIG_BOOTLOADER_OFFSET_IN_FLASH 0x1000 +#define CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE 1 +#define CONFIG_BOOTLOADER_LOG_VERSION_1 1 +#define CONFIG_BOOTLOADER_LOG_VERSION 1 +#define CONFIG_BOOTLOADER_LOG_LEVEL_INFO 1 +#define CONFIG_BOOTLOADER_LOG_LEVEL 3 +#define CONFIG_BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS 1 +#define CONFIG_BOOTLOADER_LOG_MODE_TEXT_EN 1 +#define CONFIG_BOOTLOADER_LOG_MODE_TEXT 1 +#define CONFIG_BOOTLOADER_CPU_CLK_FREQ_MHZ 80 +#define CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT 1 +#define CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V 1 +#define CONFIG_BOOTLOADER_REGION_PROTECTION_ENABLE 1 +#define CONFIG_BOOTLOADER_WDT_ENABLE 1 +#define CONFIG_BOOTLOADER_WDT_TIME_MS 9000 +#define CONFIG_BOOTLOADER_RESERVE_RTC_SIZE 0x0 +#define CONFIG_SECURE_BOOT_V1_SUPPORTED 1 +#define CONFIG_APP_COMPILE_TIME_DATE 1 +#define CONFIG_APP_RETRIEVE_LEN_ELF_SHA 9 +#define CONFIG_ESP_ROM_HAS_CRC_LE 1 +#define CONFIG_ESP_ROM_HAS_CRC_BE 1 +#define CONFIG_ESP_ROM_HAS_MZ_CRC32 1 +#define CONFIG_ESP_ROM_HAS_JPEG_DECODE 1 +#define CONFIG_ESP_ROM_HAS_UART_BUF_SWITCH 1 +#define CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND 1 +#define CONFIG_ESP_ROM_HAS_NEWLIB 1 +#define CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT 1 +#define CONFIG_ESP_ROM_HAS_NEWLIB_32BIT_TIME 1 +#define CONFIG_ESP_ROM_HAS_SW_FLOAT 1 +#define CONFIG_ESP_ROM_USB_OTG_NUM -1 +#define CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM -1 +#define CONFIG_ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB 1 +#define CONFIG_ESP_ROM_HAS_OUTPUT_PUTC_FUNC 1 +#define CONFIG_ESPTOOLPY_FLASHMODE_DIO 1 +#define CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR 1 +#define CONFIG_ESPTOOLPY_FLASHMODE "dio" +#define CONFIG_ESPTOOLPY_FLASHFREQ_40M 1 +#define CONFIG_ESPTOOLPY_FLASHFREQ "40m" +#define CONFIG_ESPTOOLPY_FLASHSIZE_2MB 1 +#define CONFIG_ESPTOOLPY_FLASHSIZE "2MB" +#define CONFIG_ESPTOOLPY_BEFORE_RESET 1 +#define CONFIG_ESPTOOLPY_BEFORE "default-reset" +#define CONFIG_ESPTOOLPY_AFTER_RESET 1 +#define CONFIG_ESPTOOLPY_AFTER "hard-reset" +#define CONFIG_ESPTOOLPY_MONITOR_BAUD 115200 +#define CONFIG_PARTITION_TABLE_CUSTOM 1 +#define CONFIG_PARTITION_TABLE_CUSTOM_FILENAME "partitions.csv" +#define CONFIG_PARTITION_TABLE_FILENAME "partitions.csv" +#define CONFIG_PARTITION_TABLE_OFFSET 0x8000 +#define CONFIG_PARTITION_TABLE_MD5 1 +#define CONFIG_COMPILER_OPTIMIZATION_DEBUG 1 +#define CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE 1 +#define CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB 1 +#define CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL 2 +#define CONFIG_COMPILER_HIDE_PATHS_MACROS 1 +#define CONFIG_COMPILER_STACK_CHECK_MODE_NONE 1 +#define CONFIG_COMPILER_RT_LIB_GCCLIB 1 +#define CONFIG_COMPILER_RT_LIB_NAME "gcc" +#define CONFIG_COMPILER_ORPHAN_SECTIONS_ERROR 1 +#define CONFIG_COMPILER_CXX_GLIBCXX_CONSTEXPR_NO_CHANGE 1 +#define CONFIG_EFUSE_CODE_SCHEME_COMPAT_3_4 1 +#define CONFIG_EFUSE_MAX_BLK_LEN 192 +#define CONFIG_ESP_ERR_TO_NAME_LOOKUP 1 +#define CONFIG_ESP_HW_SUPPORT_FUNC_IN_IRAM 1 +#define CONFIG_ESP32_REV_MIN_0 1 +#define CONFIG_ESP32_REV_MIN 0 +#define CONFIG_ESP32_REV_MIN_FULL 0 +#define CONFIG_ESP_REV_MIN_FULL 0 +#define CONFIG_ESP32_REV_MAX_FULL 399 +#define CONFIG_ESP_REV_MAX_FULL 399 +#define CONFIG_ESP_EFUSE_BLOCK_REV_MIN_FULL 0 +#define CONFIG_ESP_EFUSE_BLOCK_REV_MAX_FULL 99 +#define CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA 1 +#define CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP 1 +#define CONFIG_ESP_MAC_ADDR_UNIVERSE_BT 1 +#define CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH 1 +#define CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR 1 +#define CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES 4 +#define CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR 1 +#define CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES 4 +#define CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND 1 +#define CONFIG_ESP_SLEEP_RTC_BUS_ISO_WORKAROUND 1 +#define CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY 2000 +#define CONFIG_ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS 1 +#define CONFIG_RTC_CLK_SRC_INT_RC 1 +#define CONFIG_RTC_CLK_CAL_CYCLES 1024 +#define CONFIG_RTC_CLK_FUNC_IN_IRAM 1 +#define CONFIG_RTC_TIME_FUNC_IN_IRAM 1 +#define CONFIG_ESP_PERIPH_CTRL_FUNC_IN_IRAM 1 +#define CONFIG_ESP_REGI2C_CTRL_FUNC_IN_IRAM 1 +#define CONFIG_XTAL_FREQ_40 1 +#define CONFIG_XTAL_FREQ 40 +#define CONFIG_ESP_BROWNOUT_DET 1 +#define CONFIG_ESP_BROWNOUT_DET_LVL_SEL_0 1 +#define CONFIG_ESP_BROWNOUT_DET_LVL 0 +#define CONFIG_ESP_BROWNOUT_USE_INTR 1 +#define CONFIG_ESP_INTR_IN_IRAM 1 +#define CONFIG_LIBC_PICOLIBC 1 +#define CONFIG_LIBC_PICOLIBC_NEWLIB_COMPATIBILITY 1 +#define CONFIG_LIBC_MISC_IN_IRAM 1 +#define CONFIG_LIBC_LOCKS_PLACE_IN_IRAM 1 +#define CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT 1 +#define CONFIG_LIBC_ASSERT_BUFFER_SIZE 200 +#define CONFIG_ESP_ROM_PRINT_IN_IRAM 1 +#define CONFIG_ESP_CONSOLE_UART_DEFAULT 1 +#define CONFIG_ESP_CONSOLE_UART 1 +#define CONFIG_ESP_CONSOLE_UART_NUM 0 +#define CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM 0 +#define CONFIG_ESP_CONSOLE_UART_BAUDRATE 115200 +#define CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160 1 +#define CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ 160 +#define CONFIG_ESP32_TRACEMEM_RESERVE_DRAM 0x0 +#define CONFIG_ESP_SYSTEM_IN_IRAM 1 +#define CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT 1 +#define CONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS 0 +#define CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE 32 +#define CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE 2304 +#define CONFIG_ESP_MAIN_TASK_STACK_SIZE 3584 +#define CONFIG_ESP_MAIN_TASK_AFFINITY_CPU0 1 +#define CONFIG_ESP_MAIN_TASK_AFFINITY 0x0 +#define CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE 2048 +#define CONFIG_ESP_INT_WDT 1 +#define CONFIG_ESP_INT_WDT_TIMEOUT_MS 300 +#define CONFIG_ESP_INT_WDT_CHECK_CPU1 1 +#define CONFIG_ESP_TASK_WDT_EN 1 +#define CONFIG_ESP_TASK_WDT_INIT 1 +#define CONFIG_ESP_TASK_WDT_TIMEOUT_S 5 +#define CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0 1 +#define CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1 1 +#define CONFIG_ESP_DEBUG_OCDAWARE 1 +#define CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4 1 +#define CONFIG_ESP_IPC_ENABLE 1 +#define CONFIG_ESP_IPC_TASK_STACK_SIZE 1024 +#define CONFIG_ESP_IPC_USES_CALLERS_PRIORITY 1 +#define CONFIG_ESP_IPC_ISR_ENABLE 1 +#define CONFIG_FREERTOS_HZ 100 +#define CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY 1 +#define CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS 1 +#define CONFIG_FREERTOS_IDLE_TASK_STACKSIZE 1536 +#define CONFIG_FREERTOS_MAX_TASK_NAME_LEN 16 +#define CONFIG_FREERTOS_USE_TIMERS 1 +#define CONFIG_FREERTOS_TIMER_SERVICE_TASK_NAME "Tmr Svc" +#define CONFIG_FREERTOS_TIMER_TASK_NO_AFFINITY 1 +#define CONFIG_FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY 0x7FFFFFFF +#define CONFIG_FREERTOS_TIMER_TASK_PRIORITY 1 +#define CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH 2048 +#define CONFIG_FREERTOS_TIMER_QUEUE_LENGTH 10 +#define CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE 0 +#define CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES 1 +#define CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER 1 +#define CONFIG_FREERTOS_TLSP_DELETION_CALLBACKS 1 +#define CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER 1 +#define CONFIG_FREERTOS_ISR_STACKSIZE 1536 +#define CONFIG_FREERTOS_INTERRUPT_BACKTRACE 1 +#define CONFIG_FREERTOS_TICK_SUPPORT_CORETIMER 1 +#define CONFIG_FREERTOS_CORETIMER_0 1 +#define CONFIG_FREERTOS_SYSTICK_USES_CCOUNT 1 +#define CONFIG_FREERTOS_PORT 1 +#define CONFIG_FREERTOS_NO_AFFINITY 0x7FFFFFFF +#define CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION 1 +#define CONFIG_FREERTOS_DEBUG_OCDAWARE 1 +#define CONFIG_FREERTOS_NUMBER_OF_CORES 2 +#define CONFIG_HAL_ASSERTION_EQUALS_SYSTEM 1 +#define CONFIG_HAL_DEFAULT_ASSERTION_LEVEL 2 +#define CONFIG_HAL_GPIO_USE_ROM_IMPL 1 +#define CONFIG_LOG_VERSION_1 1 +#define CONFIG_LOG_VERSION 1 +#define CONFIG_LOG_DEFAULT_LEVEL_INFO 1 +#define CONFIG_LOG_DEFAULT_LEVEL 3 +#define CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT 1 +#define CONFIG_LOG_MAXIMUM_LEVEL 3 +#define CONFIG_LOG_DYNAMIC_LEVEL_CONTROL 1 +#define CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST 1 +#define CONFIG_LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP 1 +#define CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_SIZE 31 +#define CONFIG_LOG_TIMESTAMP_SOURCE_RTOS 1 +#define CONFIG_LOG_MODE_TEXT_EN 1 +#define CONFIG_LOG_MODE_TEXT 1 +#define CONFIG_LOG_IN_IRAM 1 +#define CONFIG_MMU_PAGE_SIZE_64KB 1 +#define CONFIG_MMU_PAGE_MODE "64KB" +#define CONFIG_MMU_PAGE_SIZE 0x10000 +#define CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC 1 +#define CONFIG_SPI_FLASH_BROWNOUT_RESET 1 +#define CONFIG_SPI_FLASH_SUSPEND_TSUS_VAL_US 50 +#define CONFIG_SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM 1 +#define CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS 1 +#define CONFIG_SPI_FLASH_YIELD_DURING_ERASE 1 +#define CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS 20 +#define CONFIG_SPI_FLASH_ERASE_YIELD_TICKS 1 +#define CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE 8192 +#define CONFIG_SPI_FLASH_VENDOR_XMC_SUPPORT_ENABLED 1 +#define CONFIG_SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED 1 +#define CONFIG_SPI_FLASH_VENDOR_ISSI_SUPPORT_ENABLED 1 +#define CONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORT_ENABLED 1 +#define CONFIG_SPI_FLASH_VENDOR_WINBOND_SUPPORT_ENABLED 1 +#define CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP 1 +#define CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP 1 +#define CONFIG_SPI_FLASH_SUPPORT_GD_CHIP 1 +#define CONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP 1 +#define CONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE 1 + +/* List of deprecated options */ +#define CONFIG_BROWNOUT_DET CONFIG_ESP_BROWNOUT_DET +#define CONFIG_BROWNOUT_DET_LVL CONFIG_ESP_BROWNOUT_DET_LVL +#define CONFIG_BROWNOUT_DET_LVL_SEL_0 CONFIG_ESP_BROWNOUT_DET_LVL_SEL_0 +#define CONFIG_COMPILER_OPTIMIZATION_DEFAULT CONFIG_COMPILER_OPTIMIZATION_DEBUG +#define CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG CONFIG_COMPILER_OPTIMIZATION_DEBUG +#define CONFIG_CONSOLE_UART CONFIG_ESP_CONSOLE_UART +#define CONFIG_CONSOLE_UART_BAUDRATE CONFIG_ESP_CONSOLE_UART_BAUDRATE +#define CONFIG_CONSOLE_UART_DEFAULT CONFIG_ESP_CONSOLE_UART_DEFAULT +#define CONFIG_CONSOLE_UART_NUM CONFIG_ESP_CONSOLE_UART_NUM +#define CONFIG_ESP32_BROWNOUT_DET CONFIG_ESP_BROWNOUT_DET +#define CONFIG_ESP32_BROWNOUT_DET_LVL CONFIG_ESP_BROWNOUT_DET_LVL +#define CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_0 CONFIG_ESP_BROWNOUT_DET_LVL_SEL_0 +#define CONFIG_ESP32_DEBUG_OCDAWARE CONFIG_ESP_DEBUG_OCDAWARE +#define CONFIG_ESP32_DEEP_SLEEP_WAKEUP_DELAY CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY +#define CONFIG_ESP32_DEFAULT_CPU_FREQ_160 CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160 +#define CONFIG_ESP32_DEFAULT_CPU_FREQ_MHZ CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ +#define CONFIG_ESP32_PANIC_PRINT_REBOOT CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT +#define CONFIG_ESP32_RTC_CLK_CAL_CYCLES CONFIG_RTC_CLK_CAL_CYCLES +#define CONFIG_ESP32_RTC_CLK_SRC_INT_RC CONFIG_RTC_CLK_SRC_INT_RC +#define CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_RC CONFIG_RTC_CLK_SRC_INT_RC +#define CONFIG_ESP32_TIME_SYSCALL_USE_RTC_FRC1 CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT +#define CONFIG_ESP32_TIME_SYSCALL_USE_RTC_HRT CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT +#define CONFIG_ESP32_XTAL_FREQ CONFIG_XTAL_FREQ +#define CONFIG_ESP32_XTAL_FREQ_40 CONFIG_XTAL_FREQ_40 +#define CONFIG_ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY +#define CONFIG_ESP_SYSTEM_BROWNOUT_INTR CONFIG_ESP_BROWNOUT_USE_INTR +#define CONFIG_ESP_TASK_WDT CONFIG_ESP_TASK_WDT_INIT +#define CONFIG_FLASHMODE_DIO CONFIG_ESPTOOLPY_FLASHMODE_DIO +#define CONFIG_FOUR_UNIVERSAL_MAC_ADDRESS CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR +#define CONFIG_INT_WDT CONFIG_ESP_INT_WDT +#define CONFIG_INT_WDT_CHECK_CPU1 CONFIG_ESP_INT_WDT_CHECK_CPU1 +#define CONFIG_INT_WDT_TIMEOUT_MS CONFIG_ESP_INT_WDT_TIMEOUT_MS +#define CONFIG_IPC_TASK_STACK_SIZE CONFIG_ESP_IPC_TASK_STACK_SIZE +#define CONFIG_LOG_BOOTLOADER_LEVEL CONFIG_BOOTLOADER_LOG_LEVEL +#define CONFIG_LOG_BOOTLOADER_LEVEL_INFO CONFIG_BOOTLOADER_LOG_LEVEL_INFO +#define CONFIG_MAIN_TASK_STACK_SIZE CONFIG_ESP_MAIN_TASK_STACK_SIZE +#define CONFIG_MONITOR_BAUD CONFIG_ESPTOOLPY_MONITOR_BAUD +#define CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT +#define CONFIG_NUMBER_OF_UNIVERSAL_MAC_ADDRESS CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES +#define CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE +#define CONFIG_OPTIMIZATION_ASSERTION_LEVEL CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL +#define CONFIG_OPTIMIZATION_LEVEL_DEBUG CONFIG_COMPILER_OPTIMIZATION_DEBUG +#define CONFIG_PERIPH_CTRL_FUNC_IN_IRAM CONFIG_ESP_PERIPH_CTRL_FUNC_IN_IRAM +#define CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS +#define CONFIG_STACK_CHECK_NONE CONFIG_COMPILER_STACK_CHECK_MODE_NONE +#define CONFIG_SYSTEM_EVENT_QUEUE_SIZE CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE +#define CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE +#define CONFIG_TASK_WDT CONFIG_ESP_TASK_WDT_INIT +#define CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0 CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0 +#define CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU1 CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1 +#define CONFIG_TASK_WDT_TIMEOUT_S CONFIG_ESP_TASK_WDT_TIMEOUT_S +#define CONFIG_TIMER_QUEUE_LENGTH CONFIG_FREERTOS_TIMER_QUEUE_LENGTH +#define CONFIG_TIMER_TASK_PRIORITY CONFIG_FREERTOS_TIMER_TASK_PRIORITY +#define CONFIG_TIMER_TASK_STACK_DEPTH CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH +#define CONFIG_TRACEMEM_RESERVE_DRAM CONFIG_ESP32_TRACEMEM_RESERVE_DRAM diff --git a/build/bootloader/config/sdkconfig.json b/build/bootloader/config/sdkconfig.json new file mode 100644 index 0000000..ba94c92 --- /dev/null +++ b/build/bootloader/config/sdkconfig.json @@ -0,0 +1,594 @@ +{ + "APP_BUILD_BOOTLOADER": true, + "APP_BUILD_GENERATE_BINARIES": true, + "APP_BUILD_TYPE_APP_2NDBOOT": true, + "APP_BUILD_TYPE_RAM": false, + "APP_BUILD_USE_FLASH_SECTIONS": true, + "APP_COMPATIBLE_PRE_V2_1_BOOTLOADERS": false, + "APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS": false, + "APP_COMPILE_TIME_DATE": true, + "APP_EXCLUDE_PROJECT_NAME_VAR": false, + "APP_EXCLUDE_PROJECT_VER_VAR": false, + "APP_NO_BLOBS": false, + "APP_PROJECT_VER_FROM_CONFIG": false, + "APP_REPRODUCIBLE_BUILD": false, + "APP_RETRIEVE_LEN_ELF_SHA": 9, + "BOOTLOADER_APP_ROLLBACK_ENABLE": false, + "BOOTLOADER_APP_TEST": false, + "BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG": false, + "BOOTLOADER_COMPILER_OPTIMIZATION_PERF": false, + "BOOTLOADER_COMPILER_OPTIMIZATION_SIZE": true, + "BOOTLOADER_COMPILE_TIME_DATE": true, + "BOOTLOADER_CPU_CLK_FREQ_MHZ": 80, + "BOOTLOADER_CUSTOM_RESERVE_RTC": false, + "BOOTLOADER_FACTORY_RESET": false, + "BOOTLOADER_FLASH_DC_AWARE": false, + "BOOTLOADER_FLASH_XMC_SUPPORT": true, + "BOOTLOADER_LOG_COLORS": false, + "BOOTLOADER_LOG_LEVEL": 3, + "BOOTLOADER_LOG_LEVEL_DEBUG": false, + "BOOTLOADER_LOG_LEVEL_ERROR": false, + "BOOTLOADER_LOG_LEVEL_INFO": true, + "BOOTLOADER_LOG_LEVEL_NONE": false, + "BOOTLOADER_LOG_LEVEL_VERBOSE": false, + "BOOTLOADER_LOG_LEVEL_WARN": false, + "BOOTLOADER_LOG_MODE_TEXT": true, + "BOOTLOADER_LOG_MODE_TEXT_EN": true, + "BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS": true, + "BOOTLOADER_LOG_VERSION": 1, + "BOOTLOADER_LOG_VERSION_1": true, + "BOOTLOADER_OFFSET_IN_FLASH": 4096, + "BOOTLOADER_PROJECT_VER": 1, + "BOOTLOADER_REGION_PROTECTION_ENABLE": true, + "BOOTLOADER_RESERVE_RTC_SIZE": 0, + "BOOTLOADER_SKIP_VALIDATE_ALWAYS": false, + "BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP": false, + "BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON": false, + "BOOTLOADER_VDDSDIO_BOOST_1_8V": false, + "BOOTLOADER_VDDSDIO_BOOST_1_9V": true, + "BOOTLOADER_WDT_DISABLE_IN_USER_CODE": false, + "BOOTLOADER_WDT_ENABLE": true, + "BOOTLOADER_WDT_TIME_MS": 9000, + "COMPILER_ASSERT_NDEBUG_EVALUATE": false, + "COMPILER_CXX_EXCEPTIONS": false, + "COMPILER_CXX_GLIBCXX_CONSTEXPR_COLD": false, + "COMPILER_CXX_GLIBCXX_CONSTEXPR_COLD_CONSTEXPR": false, + "COMPILER_CXX_GLIBCXX_CONSTEXPR_NO_CHANGE": true, + "COMPILER_CXX_RTTI": false, + "COMPILER_DISABLE_DEFAULT_ERRORS": false, + "COMPILER_DISABLE_GCC12_WARNINGS": false, + "COMPILER_DISABLE_GCC13_WARNINGS": false, + "COMPILER_DISABLE_GCC14_WARNINGS": false, + "COMPILER_DISABLE_GCC15_WARNINGS": false, + "COMPILER_DUMP_RTL_FILES": false, + "COMPILER_FLOAT_LIB_FROM_GCCLIB": true, + "COMPILER_HIDE_PATHS_MACROS": true, + "COMPILER_NO_MERGE_CONSTANTS": false, + "COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE": false, + "COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE": true, + "COMPILER_OPTIMIZATION_ASSERTIONS_SILENT": false, + "COMPILER_OPTIMIZATION_ASSERTION_LEVEL": 2, + "COMPILER_OPTIMIZATION_CHECKS_SILENT": false, + "COMPILER_OPTIMIZATION_DEBUG": true, + "COMPILER_OPTIMIZATION_NONE": false, + "COMPILER_OPTIMIZATION_PERF": false, + "COMPILER_OPTIMIZATION_SIZE": false, + "COMPILER_ORPHAN_SECTIONS_ERROR": true, + "COMPILER_ORPHAN_SECTIONS_PLACE": false, + "COMPILER_ORPHAN_SECTIONS_WARNING": false, + "COMPILER_RT_LIB_GCCLIB": true, + "COMPILER_RT_LIB_NAME": "gcc", + "COMPILER_STACK_CHECK_MODE_ALL": false, + "COMPILER_STACK_CHECK_MODE_NONE": true, + "COMPILER_STACK_CHECK_MODE_NORM": false, + "COMPILER_STACK_CHECK_MODE_STRONG": false, + "COMPILER_STATIC_ANALYZER": false, + "COMPILER_WARN_WRITE_STRINGS": false, + "EFUSE_CODE_SCHEME_COMPAT_3_4": true, + "EFUSE_CODE_SCHEME_COMPAT_NONE": false, + "EFUSE_CODE_SCHEME_COMPAT_REPEAT": false, + "EFUSE_CUSTOM_TABLE": false, + "EFUSE_MAX_BLK_LEN": 192, + "EFUSE_VIRTUAL": false, + "ESP32_DISABLE_BASIC_ROM_CONSOLE": false, + "ESP32_REV_MAX_FULL": 399, + "ESP32_REV_MIN": 0, + "ESP32_REV_MIN_0": true, + "ESP32_REV_MIN_1": false, + "ESP32_REV_MIN_1_1": false, + "ESP32_REV_MIN_2": false, + "ESP32_REV_MIN_3": false, + "ESP32_REV_MIN_3_1": false, + "ESP32_REV_MIN_FULL": 0, + "ESP32_TRACEMEM_RESERVE_DRAM": 0, + "ESP32_TRAX": false, + "ESP32_UNIVERSAL_MAC_ADDRESSES": 4, + "ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR": true, + "ESP32_UNIVERSAL_MAC_ADDRESSES_TWO": false, + "ESP32_USE_FIXED_STATIC_RAM_SIZE": false, + "ESPTOOLPY_AFTER": "hard-reset", + "ESPTOOLPY_AFTER_NORESET": false, + "ESPTOOLPY_AFTER_RESET": true, + "ESPTOOLPY_BEFORE": "default-reset", + "ESPTOOLPY_BEFORE_NORESET": false, + "ESPTOOLPY_BEFORE_RESET": true, + "ESPTOOLPY_FLASHFREQ": "40m", + "ESPTOOLPY_FLASHFREQ_20M": false, + "ESPTOOLPY_FLASHFREQ_26M": false, + "ESPTOOLPY_FLASHFREQ_40M": true, + "ESPTOOLPY_FLASHFREQ_80M": false, + "ESPTOOLPY_FLASHMODE": "dio", + "ESPTOOLPY_FLASHMODE_DIO": true, + "ESPTOOLPY_FLASHMODE_DOUT": false, + "ESPTOOLPY_FLASHMODE_QIO": false, + "ESPTOOLPY_FLASHMODE_QOUT": false, + "ESPTOOLPY_FLASHSIZE": "2MB", + "ESPTOOLPY_FLASHSIZE_128MB": false, + "ESPTOOLPY_FLASHSIZE_16MB": false, + "ESPTOOLPY_FLASHSIZE_1MB": false, + "ESPTOOLPY_FLASHSIZE_2MB": true, + "ESPTOOLPY_FLASHSIZE_32MB": false, + "ESPTOOLPY_FLASHSIZE_4MB": false, + "ESPTOOLPY_FLASHSIZE_64MB": false, + "ESPTOOLPY_FLASHSIZE_8MB": false, + "ESPTOOLPY_FLASH_SAMPLE_MODE_STR": true, + "ESPTOOLPY_HEADER_FLASHSIZE_UPDATE": false, + "ESPTOOLPY_MONITOR_BAUD": 115200, + "ESPTOOLPY_NO_STUB": false, + "ESP_BROWNOUT_DET": true, + "ESP_BROWNOUT_DET_LVL": 0, + "ESP_BROWNOUT_DET_LVL_SEL_0": true, + "ESP_BROWNOUT_DET_LVL_SEL_1": false, + "ESP_BROWNOUT_DET_LVL_SEL_2": false, + "ESP_BROWNOUT_DET_LVL_SEL_3": false, + "ESP_BROWNOUT_DET_LVL_SEL_4": false, + "ESP_BROWNOUT_DET_LVL_SEL_5": false, + "ESP_BROWNOUT_DET_LVL_SEL_6": false, + "ESP_BROWNOUT_DET_LVL_SEL_7": false, + "ESP_BROWNOUT_USE_INTR": true, + "ESP_CONSOLE_NONE": false, + "ESP_CONSOLE_ROM_SERIAL_PORT_NUM": 0, + "ESP_CONSOLE_UART": true, + "ESP_CONSOLE_UART_BAUDRATE": 115200, + "ESP_CONSOLE_UART_CUSTOM": false, + "ESP_CONSOLE_UART_DEFAULT": true, + "ESP_CONSOLE_UART_NUM": 0, + "ESP_DEBUG_OCDAWARE": true, + "ESP_DEBUG_STUBS_ENABLE": false, + "ESP_DEFAULT_CPU_FREQ_MHZ": 160, + "ESP_DEFAULT_CPU_FREQ_MHZ_160": true, + "ESP_DEFAULT_CPU_FREQ_MHZ_240": false, + "ESP_DEFAULT_CPU_FREQ_MHZ_80": false, + "ESP_EFUSE_BLOCK_REV_MAX_FULL": 99, + "ESP_EFUSE_BLOCK_REV_MIN_FULL": 0, + "ESP_ERR_TO_NAME_LOOKUP": true, + "ESP_HW_SUPPORT_FUNC_IN_IRAM": true, + "ESP_INTR_IN_IRAM": true, + "ESP_INT_WDT": true, + "ESP_INT_WDT_CHECK_CPU1": true, + "ESP_INT_WDT_TIMEOUT_MS": 300, + "ESP_IPC_ENABLE": true, + "ESP_IPC_ISR_ENABLE": true, + "ESP_IPC_TASK_STACK_SIZE": 1024, + "ESP_IPC_USES_CALLERS_PRIORITY": true, + "ESP_MAC_ADDR_UNIVERSE_BT": true, + "ESP_MAC_ADDR_UNIVERSE_ETH": true, + "ESP_MAC_ADDR_UNIVERSE_WIFI_AP": true, + "ESP_MAC_ADDR_UNIVERSE_WIFI_STA": true, + "ESP_MAC_IGNORE_MAC_CRC_ERROR": false, + "ESP_MAC_UNIVERSAL_MAC_ADDRESSES": 4, + "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR": true, + "ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC": false, + "ESP_MAIN_TASK_AFFINITY": 0, + "ESP_MAIN_TASK_AFFINITY_CPU0": true, + "ESP_MAIN_TASK_AFFINITY_CPU1": false, + "ESP_MAIN_TASK_AFFINITY_NO_AFFINITY": false, + "ESP_MAIN_TASK_STACK_SIZE": 3584, + "ESP_MINIMAL_SHARED_STACK_SIZE": 2048, + "ESP_PANIC_HANDLER_IRAM": false, + "ESP_PERIPH_CTRL_FUNC_IN_IRAM": true, + "ESP_REGI2C_CTRL_FUNC_IN_IRAM": true, + "ESP_REV_MAX_FULL": 399, + "ESP_REV_MIN_FULL": 0, + "ESP_ROM_HAS_CRC_BE": true, + "ESP_ROM_HAS_CRC_LE": true, + "ESP_ROM_HAS_JPEG_DECODE": true, + "ESP_ROM_HAS_MZ_CRC32": true, + "ESP_ROM_HAS_NEWLIB": true, + "ESP_ROM_HAS_NEWLIB_32BIT_TIME": true, + "ESP_ROM_HAS_NEWLIB_NANO_FORMAT": true, + "ESP_ROM_HAS_OUTPUT_PUTC_FUNC": true, + "ESP_ROM_HAS_SW_FLOAT": true, + "ESP_ROM_HAS_UART_BUF_SWITCH": true, + "ESP_ROM_NEEDS_SWSETUP_WORKAROUND": true, + "ESP_ROM_PRINT_IN_IRAM": true, + "ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB": true, + "ESP_ROM_USB_OTG_NUM": -1, + "ESP_ROM_USB_SERIAL_DEVICE_NUM": -1, + "ESP_SLEEP_CACHE_SAFE_ASSERTION": false, + "ESP_SLEEP_DEBUG": false, + "ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND": true, + "ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS": true, + "ESP_SLEEP_GPIO_RESET_WORKAROUND": false, + "ESP_SLEEP_MSPI_NEED_ALL_IO_PU": false, + "ESP_SLEEP_POWER_DOWN_FLASH": false, + "ESP_SLEEP_RTC_BUS_ISO_WORKAROUND": true, + "ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY": 2000, + "ESP_SYSTEM_CHECK_INT_LEVEL_4": true, + "ESP_SYSTEM_CHECK_INT_LEVEL_5": false, + "ESP_SYSTEM_ESP32_SRAM1_REGION_AS_IRAM": false, + "ESP_SYSTEM_EVENT_QUEUE_SIZE": 32, + "ESP_SYSTEM_EVENT_TASK_STACK_SIZE": 2304, + "ESP_SYSTEM_IN_IRAM": true, + "ESP_SYSTEM_PANIC_PRINT_HALT": false, + "ESP_SYSTEM_PANIC_PRINT_REBOOT": true, + "ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS": 0, + "ESP_SYSTEM_PANIC_SILENT_REBOOT": false, + "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0": true, + "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1": true, + "ESP_TASK_WDT_EN": true, + "ESP_TASK_WDT_INIT": true, + "ESP_TASK_WDT_PANIC": false, + "ESP_TASK_WDT_TIMEOUT_S": 5, + "FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER": true, + "FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE": false, + "FREERTOS_CHECK_STACKOVERFLOW_CANARY": true, + "FREERTOS_CHECK_STACKOVERFLOW_NONE": false, + "FREERTOS_CHECK_STACKOVERFLOW_PTRVAL": false, + "FREERTOS_CORETIMER_0": true, + "FREERTOS_CORETIMER_1": false, + "FREERTOS_DEBUG_OCDAWARE": true, + "FREERTOS_ENABLE_BACKWARD_COMPATIBILITY": false, + "FREERTOS_FPU_IN_ISR": false, + "FREERTOS_GENERATE_RUN_TIME_STATS": false, + "FREERTOS_HZ": 100, + "FREERTOS_IDLE_TASK_STACKSIZE": 1536, + "FREERTOS_INTERRUPT_BACKTRACE": true, + "FREERTOS_IN_IRAM": false, + "FREERTOS_ISR_STACKSIZE": 1536, + "FREERTOS_MAX_TASK_NAME_LEN": 16, + "FREERTOS_NO_AFFINITY": 2147483647, + "FREERTOS_NUMBER_OF_CORES": 2, + "FREERTOS_PORT": true, + "FREERTOS_QUEUE_REGISTRY_SIZE": 0, + "FREERTOS_SMP": false, + "FREERTOS_SUPPORT_STATIC_ALLOCATION": true, + "FREERTOS_SYSTICK_USES_CCOUNT": true, + "FREERTOS_TASK_FUNCTION_WRAPPER": true, + "FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES": 1, + "FREERTOS_TASK_PRE_DELETION_HOOK": false, + "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS": 1, + "FREERTOS_TICK_SUPPORT_CORETIMER": true, + "FREERTOS_TIMER_QUEUE_LENGTH": 10, + "FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY": 2147483647, + "FREERTOS_TIMER_SERVICE_TASK_NAME": "Tmr Svc", + "FREERTOS_TIMER_TASK_AFFINITY_CPU0": false, + "FREERTOS_TIMER_TASK_AFFINITY_CPU1": false, + "FREERTOS_TIMER_TASK_NO_AFFINITY": true, + "FREERTOS_TIMER_TASK_PRIORITY": 1, + "FREERTOS_TIMER_TASK_STACK_DEPTH": 2048, + "FREERTOS_TLSP_DELETION_CALLBACKS": true, + "FREERTOS_UNICORE": false, + "FREERTOS_USE_APPLICATION_TASK_TAG": false, + "FREERTOS_USE_IDLE_HOOK": false, + "FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES": false, + "FREERTOS_USE_TICK_HOOK": false, + "FREERTOS_USE_TIMERS": true, + "FREERTOS_USE_TRACE_FACILITY": false, + "FREERTOS_WATCHPOINT_END_OF_STACK": false, + "HAL_ASSERTION_DISABLE": false, + "HAL_ASSERTION_ENABLE": false, + "HAL_ASSERTION_EQUALS_SYSTEM": true, + "HAL_ASSERTION_SILENT": false, + "HAL_DEFAULT_ASSERTION_LEVEL": 2, + "HAL_GPIO_USE_ROM_IMPL": true, + "IDF_CMAKE": true, + "IDF_EXPERIMENTAL_FEATURES": false, + "IDF_FIRMWARE_CHIP_ID": 0, + "IDF_INIT_VERSION": "6.0.0", + "IDF_TARGET": "esp32", + "IDF_TARGET_ARCH": "xtensa", + "IDF_TARGET_ARCH_XTENSA": true, + "IDF_TARGET_ESP32": true, + "IDF_TOOLCHAIN": "gcc", + "IDF_TOOLCHAIN_GCC": true, + "LIBC_ASSERT_BUFFER_SIZE": 200, + "LIBC_LOCKS_PLACE_IN_IRAM": true, + "LIBC_MISC_IN_IRAM": true, + "LIBC_NEWLIB": false, + "LIBC_PICOLIBC": true, + "LIBC_PICOLIBC_NEWLIB_COMPATIBILITY": true, + "LIBC_TIME_SYSCALL_USE_HRT": false, + "LIBC_TIME_SYSCALL_USE_NONE": false, + "LIBC_TIME_SYSCALL_USE_RTC": false, + "LIBC_TIME_SYSCALL_USE_RTC_HRT": true, + "LOG_COLORS": false, + "LOG_DEFAULT_LEVEL": 3, + "LOG_DEFAULT_LEVEL_DEBUG": false, + "LOG_DEFAULT_LEVEL_ERROR": false, + "LOG_DEFAULT_LEVEL_INFO": true, + "LOG_DEFAULT_LEVEL_NONE": false, + "LOG_DEFAULT_LEVEL_VERBOSE": false, + "LOG_DEFAULT_LEVEL_WARN": false, + "LOG_DYNAMIC_LEVEL_CONTROL": true, + "LOG_IN_IRAM": true, + "LOG_MASTER_LEVEL": false, + "LOG_MAXIMUM_EQUALS_DEFAULT": true, + "LOG_MAXIMUM_LEVEL": 3, + "LOG_MAXIMUM_LEVEL_DEBUG": false, + "LOG_MAXIMUM_LEVEL_VERBOSE": false, + "LOG_MODE_TEXT": true, + "LOG_MODE_TEXT_EN": true, + "LOG_TAG_LEVEL_CACHE_ARRAY": false, + "LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP": true, + "LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST": true, + "LOG_TAG_LEVEL_IMPL_CACHE_SIZE": 31, + "LOG_TAG_LEVEL_IMPL_LINKED_LIST": false, + "LOG_TAG_LEVEL_IMPL_NONE": false, + "LOG_TIMESTAMP_SOURCE_RTOS": true, + "LOG_TIMESTAMP_SOURCE_SYSTEM": false, + "LOG_VERSION": 1, + "LOG_VERSION_1": true, + "LOG_VERSION_2": false, + "MMU_PAGE_MODE": "64KB", + "MMU_PAGE_SIZE": 65536, + "MMU_PAGE_SIZE_64KB": true, + "PARTITION_TABLE_CUSTOM": true, + "PARTITION_TABLE_CUSTOM_FILENAME": "partitions.csv", + "PARTITION_TABLE_FILENAME": "partitions.csv", + "PARTITION_TABLE_MD5": true, + "PARTITION_TABLE_OFFSET": 32768, + "PARTITION_TABLE_SINGLE_APP": false, + "PARTITION_TABLE_SINGLE_APP_LARGE": false, + "PARTITION_TABLE_TWO_OTA": false, + "PARTITION_TABLE_TWO_OTA_LARGE": false, + "RTC_CLK_CAL_CYCLES": 1024, + "RTC_CLK_FUNC_IN_IRAM": true, + "RTC_CLK_SRC_EXT_CRYS": false, + "RTC_CLK_SRC_EXT_OSC": false, + "RTC_CLK_SRC_INT_8MD256": false, + "RTC_CLK_SRC_INT_RC": true, + "RTC_TIME_FUNC_IN_IRAM": true, + "SECURE_BOOT": false, + "SECURE_BOOT_V1_SUPPORTED": true, + "SECURE_FLASH_ENC_ENABLED": false, + "SECURE_SIGNED_APPS_NO_SECURE_BOOT": false, + "SOC_ADC_ATTEN_NUM": 4, + "SOC_ADC_DIGI_CONTROLLER_NUM": 2, + "SOC_ADC_DIGI_DATA_BYTES_PER_CONV": 4, + "SOC_ADC_DIGI_MAX_BITWIDTH": 12, + "SOC_ADC_DIGI_MIN_BITWIDTH": 9, + "SOC_ADC_DIGI_MONITOR_NUM": 0, + "SOC_ADC_DIGI_RESULT_BYTES": 2, + "SOC_ADC_DIG_CTRL_SUPPORTED": true, + "SOC_ADC_DMA_SUPPORTED": true, + "SOC_ADC_MAX_CHANNEL_NUM": 10, + "SOC_ADC_PATT_LEN_MAX": 16, + "SOC_ADC_PERIPH_NUM": 2, + "SOC_ADC_RTC_CTRL_SUPPORTED": true, + "SOC_ADC_RTC_MAX_BITWIDTH": 12, + "SOC_ADC_RTC_MIN_BITWIDTH": 9, + "SOC_ADC_SAMPLE_FREQ_THRES_HIGH": 2000000, + "SOC_ADC_SAMPLE_FREQ_THRES_LOW": 20000, + "SOC_ADC_SHARED_POWER": true, + "SOC_ADC_SUPPORTED": true, + "SOC_AES_SUPPORTED": true, + "SOC_AES_SUPPORT_AES_128": true, + "SOC_AES_SUPPORT_AES_192": true, + "SOC_AES_SUPPORT_AES_256": true, + "SOC_BLE_MESH_SUPPORTED": true, + "SOC_BLE_MULTI_CONN_OPTIMIZATION": true, + "SOC_BLE_SUPPORTED": true, + "SOC_BLUFI_SUPPORTED": true, + "SOC_BOD_SUPPORTED": true, + "SOC_BROWNOUT_RESET_SUPPORTED": true, + "SOC_BT_CLASSIC_SUPPORTED": true, + "SOC_BT_H2C_ENC_KEY_CTRL_ENH_VSC_SUPPORTED": true, + "SOC_BT_SUPPORTED": true, + "SOC_CAPS_ECO_VER_MAX": 301, + "SOC_CCOMP_TIMER_SUPPORTED": true, + "SOC_CLK_APLL_SUPPORTED": true, + "SOC_CLK_LP_FAST_SUPPORT_XTAL_D4": true, + "SOC_CLK_RC_FAST_D256_SUPPORTED": true, + "SOC_CLK_RC_FAST_SUPPORT_CALIBRATION": true, + "SOC_CLK_TREE_SUPPORTED": true, + "SOC_CLK_XTAL32K_SUPPORTED": true, + "SOC_CONFIGURABLE_VDDSDIO_SUPPORTED": true, + "SOC_CPU_BREAKPOINTS_NUM": 2, + "SOC_CPU_CORES_NUM": 2, + "SOC_CPU_HAS_FPU": true, + "SOC_CPU_INTR_NUM": 32, + "SOC_CPU_WATCHPOINTS_NUM": 2, + "SOC_CPU_WATCHPOINT_MAX_REGION_SIZE": 64, + "SOC_DAC_CHAN_NUM": 2, + "SOC_DAC_DMA_16BIT_ALIGN": true, + "SOC_DAC_RESOLUTION": 8, + "SOC_DAC_SUPPORTED": true, + "SOC_DEEP_SLEEP_SUPPORTED": true, + "SOC_DPORT_WORKAROUND_DIS_INTERRUPT_LVL": 5, + "SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS": 1, + "SOC_EFUSE_SUPPORTED": true, + "SOC_EMAC_RMII_CLK_OUT_INTERNAL_LOOPBACK": true, + "SOC_EMAC_SUPPORTED": true, + "SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX": 32, + "SOC_FLASH_ENC_SUPPORTED": true, + "SOC_GPIO_CLOCKOUT_BY_IO_MUX": true, + "SOC_GPIO_CLOCKOUT_CHANNEL_NUM": 3, + "SOC_GPIO_IN_RANGE_MAX": 39, + "SOC_GPIO_OUT_RANGE_MAX": 33, + "SOC_GPIO_PIN_COUNT": 40, + "SOC_GPIO_PORT": 1, + "SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK": 15667178, + "SOC_GPIO_VALID_GPIO_MASK": 1099511627775, + "SOC_GPSPI_SUPPORTED": true, + "SOC_GPTIMER_SUPPORTED": true, + "SOC_HP_CPU_HAS_MULTIPLE_CORES": true, + "SOC_HP_I2C_NUM": 2, + "SOC_I2C_NUM": 2, + "SOC_I2C_STOP_INDEPENDENT": true, + "SOC_I2C_SUPPORTED": true, + "SOC_I2C_SUPPORT_10BIT_ADDR": true, + "SOC_I2C_SUPPORT_APB": true, + "SOC_I2C_SUPPORT_SLAVE": true, + "SOC_I2S_HW_VERSION_1": true, + "SOC_I2S_I80_LCD_SUPPORTED": true, + "SOC_I2S_PDM_MAX_RX_LINES": 1, + "SOC_I2S_PDM_MAX_TX_LINES": 1, + "SOC_I2S_SUPPORTED": true, + "SOC_I2S_SUPPORTS_APLL": true, + "SOC_I2S_SUPPORTS_PCM2PDM": true, + "SOC_I2S_SUPPORTS_PDM": true, + "SOC_I2S_SUPPORTS_PDM2PCM": true, + "SOC_I2S_SUPPORTS_PDM_RX": true, + "SOC_I2S_SUPPORTS_PDM_TX": true, + "SOC_IDCACHE_PER_CORE": true, + "SOC_LCD_I80_SUPPORTED": true, + "SOC_LEDC_CHANNEL_NUM": 8, + "SOC_LEDC_HAS_TIMER_SPECIFIC_MUX": true, + "SOC_LEDC_SUPPORTED": true, + "SOC_LEDC_SUPPORT_APB_CLOCK": true, + "SOC_LEDC_SUPPORT_HS_MODE": true, + "SOC_LEDC_SUPPORT_REF_TICK": true, + "SOC_LEDC_TIMER_BIT_WIDTH": 20, + "SOC_LEDC_TIMER_NUM": 4, + "SOC_LIGHT_SLEEP_SUPPORTED": true, + "SOC_LP_PERIPH_SHARE_INTERRUPT": true, + "SOC_LP_TIMER_BIT_WIDTH_HI": 16, + "SOC_LP_TIMER_BIT_WIDTH_LO": 32, + "SOC_MCPWM_SUPPORTED": true, + "SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED": true, + "SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED": true, + "SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED": true, + "SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED": true, + "SOC_MMU_LINEAR_ADDRESS_REGION_NUM": 3, + "SOC_MMU_PERIPH_NUM": 2, + "SOC_MPI_MEM_BLOCKS_NUM": 4, + "SOC_MPI_OPERATIONS_NUM": 1, + "SOC_MPI_SUPPORTED": true, + "SOC_MPU_MIN_REGION_SIZE": 536870912, + "SOC_MPU_REGIONS_MAX_NUM": 8, + "SOC_MPU_SUPPORTED": true, + "SOC_PCNT_SUPPORTED": true, + "SOC_PHY_COMBO_MODULE": true, + "SOC_PHY_DIG_REGS_MEM_SIZE": 21, + "SOC_PHY_SUPPORTED": true, + "SOC_PM_MODEM_PD_BY_SW": true, + "SOC_PM_SUPPORTED": true, + "SOC_PM_SUPPORT_EXT0_WAKEUP": true, + "SOC_PM_SUPPORT_EXT1_WAKEUP": true, + "SOC_PM_SUPPORT_EXT_WAKEUP": true, + "SOC_PM_SUPPORT_MODEM_PD": true, + "SOC_PM_SUPPORT_RC_FAST_PD": true, + "SOC_PM_SUPPORT_RTC_FAST_MEM_PD": true, + "SOC_PM_SUPPORT_RTC_PERIPH_PD": true, + "SOC_PM_SUPPORT_RTC_SLOW_MEM_PD": true, + "SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP": true, + "SOC_PM_SUPPORT_VDDSDIO_PD": true, + "SOC_RMT_MEM_WORDS_PER_CHANNEL": 64, + "SOC_RMT_SUPPORTED": true, + "SOC_RNG_SUPPORTED": true, + "SOC_RSA_MAX_BIT_LEN": 4096, + "SOC_RTCIO_HOLD_SUPPORTED": true, + "SOC_RTCIO_INPUT_OUTPUT_SUPPORTED": true, + "SOC_RTCIO_PIN_COUNT": 18, + "SOC_RTCIO_WAKE_SUPPORTED": true, + "SOC_RTC_FAST_MEM_SUPPORTED": true, + "SOC_RTC_MEM_SUPPORTED": true, + "SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256": true, + "SOC_RTC_SLOW_MEM_SUPPORTED": true, + "SOC_RTC_TIMER_V1_SUPPORTED": true, + "SOC_SDIO_SLAVE_SUPPORTED": true, + "SOC_SDMMC_DATA_WIDTH_MAX": 8, + "SOC_SDMMC_HOST_SUPPORTED": true, + "SOC_SDMMC_NUM_SLOTS": 2, + "SOC_SDMMC_USE_IOMUX": true, + "SOC_SDM_SUPPORTED": true, + "SOC_SECURE_BOOT_SUPPORTED": true, + "SOC_SECURE_BOOT_V1": true, + "SOC_SHARED_IDCACHE_SUPPORTED": true, + "SOC_SHA_ENDIANNESS_BE": true, + "SOC_SHA_SUPPORTED": true, + "SOC_SHA_SUPPORT_PARALLEL_ENG": true, + "SOC_SHA_SUPPORT_SHA1": true, + "SOC_SHA_SUPPORT_SHA256": true, + "SOC_SHA_SUPPORT_SHA384": true, + "SOC_SHA_SUPPORT_SHA512": true, + "SOC_SPIRAM_SUPPORTED": true, + "SOC_SPI_AS_CS_SUPPORTED": true, + "SOC_SPI_DMA_CHAN_NUM": 2, + "SOC_SPI_FLASH_SUPPORTED": true, + "SOC_SPI_HD_BOTH_INOUT_SUPPORTED": true, + "SOC_SPI_MAXIMUM_BUFFER_SIZE": 64, + "SOC_SPI_MAX_CS_NUM": 3, + "SOC_SPI_MAX_PRE_DIVIDER": 8192, + "SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE": true, + "SOC_SPI_PERIPH_NUM": 3, + "SOC_SPI_SUPPORT_CLK_APB": true, + "SOC_SUPPORT_COEXISTENCE": true, + "SOC_TOUCH_MAX_CHAN_ID": 9, + "SOC_TOUCH_MIN_CHAN_ID": 0, + "SOC_TOUCH_SAMPLE_CFG_NUM": 1, + "SOC_TOUCH_SENSOR_SUPPORTED": true, + "SOC_TOUCH_SENSOR_VERSION": 1, + "SOC_TOUCH_SUPPORT_SLEEP_WAKEUP": true, + "SOC_TWAI_CONTROLLER_NUM": 1, + "SOC_TWAI_MASK_FILTER_NUM": 1, + "SOC_TWAI_SUPPORTED": true, + "SOC_UART_BITRATE_MAX": 5000000, + "SOC_UART_FIFO_LEN": 128, + "SOC_UART_HP_NUM": 3, + "SOC_UART_NUM": 3, + "SOC_UART_SUPPORTED": true, + "SOC_UART_SUPPORT_APB_CLK": true, + "SOC_UART_SUPPORT_REF_TICK": true, + "SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE": true, + "SOC_ULP_FSM_SUPPORTED": true, + "SOC_ULP_HAS_ADC": true, + "SOC_ULP_SUPPORTED": true, + "SOC_WDT_SUPPORTED": true, + "SOC_WIFI_CSI_SUPPORT": true, + "SOC_WIFI_MESH_SUPPORT": true, + "SOC_WIFI_NAN_SUPPORT": true, + "SOC_WIFI_SUPPORTED": true, + "SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW": true, + "SOC_WIFI_WAPI_SUPPORT": true, + "SOC_XTAL_SUPPORT_26M": true, + "SOC_XTAL_SUPPORT_40M": true, + "SPI_FLASH_BROWNOUT_RESET": true, + "SPI_FLASH_BROWNOUT_RESET_XMC": true, + "SPI_FLASH_BYPASS_BLOCK_ERASE": false, + "SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED": false, + "SPI_FLASH_DANGEROUS_WRITE_ABORTS": true, + "SPI_FLASH_DANGEROUS_WRITE_ALLOWED": false, + "SPI_FLASH_DANGEROUS_WRITE_FAILS": false, + "SPI_FLASH_ENABLE_COUNTERS": false, + "SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE": true, + "SPI_FLASH_ERASE_YIELD_DURATION_MS": 20, + "SPI_FLASH_ERASE_YIELD_TICKS": 1, + "SPI_FLASH_FORCE_ENABLE_C6_H2_SUSPEND": false, + "SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND": false, + "SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST": false, + "SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM": true, + "SPI_FLASH_SHARE_SPI1_BUS": false, + "SPI_FLASH_SIZE_OVERRIDE": false, + "SPI_FLASH_SUPPORT_BOYA_CHIP": false, + "SPI_FLASH_SUPPORT_GD_CHIP": true, + "SPI_FLASH_SUPPORT_ISSI_CHIP": true, + "SPI_FLASH_SUPPORT_MXIC_CHIP": true, + "SPI_FLASH_SUPPORT_TH_CHIP": false, + "SPI_FLASH_SUPPORT_WINBOND_CHIP": true, + "SPI_FLASH_SUSPEND_TSUS_VAL_US": 50, + "SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED": true, + "SPI_FLASH_VENDOR_ISSI_SUPPORT_ENABLED": true, + "SPI_FLASH_VENDOR_MXIC_SUPPORT_ENABLED": true, + "SPI_FLASH_VENDOR_WINBOND_SUPPORT_ENABLED": true, + "SPI_FLASH_VENDOR_XMC_SUPPORT_ENABLED": true, + "SPI_FLASH_VERIFY_WRITE": false, + "SPI_FLASH_WRITE_CHUNK_SIZE": 8192, + "SPI_FLASH_YIELD_DURING_ERASE": true, + "XTAL_FREQ": 40, + "XTAL_FREQ_26": false, + "XTAL_FREQ_32": false, + "XTAL_FREQ_40": true, + "XTAL_FREQ_AUTO": false +} \ No newline at end of file diff --git a/build/bootloader/esp-idf/bootloader/cmake_install.cmake b/build/bootloader/esp-idf/bootloader/cmake_install.cmake new file mode 100644 index 0000000..683ab62 --- /dev/null +++ b/build/bootloader/esp-idf/bootloader/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/bootloader + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/bootloader/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj new file mode 100644 index 0000000..47fd544 Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj differ diff --git a/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32.c.obj b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32.c.obj new file mode 100644 index 0000000..0f4b1cf Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32.c.obj differ diff --git a/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj new file mode 100644 index 0000000..2c19c73 Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj differ diff --git a/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj new file mode 100644 index 0000000..1132674 Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj differ diff --git a/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj new file mode 100644 index 0000000..5842465 Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj differ diff --git a/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj new file mode 100644 index 0000000..d499854 Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj differ diff --git a/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj new file mode 100644 index 0000000..1b30fc2 Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj differ diff --git a/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj new file mode 100644 index 0000000..9f4b7c6 Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj differ diff --git a/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj new file mode 100644 index 0000000..d622124 Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj differ diff --git a/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj new file mode 100644 index 0000000..19731cc Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj differ diff --git a/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj new file mode 100644 index 0000000..f0ba322 Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj differ diff --git a/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj new file mode 100644 index 0000000..dad50ac Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj differ diff --git a/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj new file mode 100644 index 0000000..615e6f3 Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj differ diff --git a/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj new file mode 100644 index 0000000..0041b6f Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj differ diff --git a/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32.c.obj b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32.c.obj new file mode 100644 index 0000000..3dbbc1c Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32.c.obj differ diff --git a/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_sha.c.obj b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_sha.c.obj new file mode 100644 index 0000000..2097abb Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_sha.c.obj differ diff --git a/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj new file mode 100644 index 0000000..7b4aa85 Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj differ diff --git a/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_esp32.c.obj b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_esp32.c.obj new file mode 100644 index 0000000..47d02c8 Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_esp32.c.obj differ diff --git a/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_soc.c.obj b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_soc.c.obj new file mode 100644 index 0000000..a6bafe3 Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_soc.c.obj differ diff --git a/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj new file mode 100644 index 0000000..dfdf11f Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj differ diff --git a/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj new file mode 100644 index 0000000..72e27db Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj differ diff --git a/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj new file mode 100644 index 0000000..22ec561 Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj differ diff --git a/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj new file mode 100644 index 0000000..37f5471 Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj differ diff --git a/build/bootloader/esp-idf/bootloader_support/cmake_install.cmake b/build/bootloader/esp-idf/bootloader_support/cmake_install.cmake new file mode 100644 index 0000000..169ede5 --- /dev/null +++ b/build/bootloader/esp-idf/bootloader_support/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/bootloader_support + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/bootloader_support/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/bootloader/esp-idf/bootloader_support/libbootloader_support.a b/build/bootloader/esp-idf/bootloader_support/libbootloader_support.a new file mode 100644 index 0000000..28c6580 Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/libbootloader_support.a differ diff --git a/build/bootloader/esp-idf/cmake_install.cmake b/build/bootloader/esp-idf/cmake_install.cmake new file mode 100644 index 0000000..066e4f5 --- /dev/null +++ b/build/bootloader/esp-idf/cmake_install.cmake @@ -0,0 +1,230 @@ +# Install script for directory: C:/esp/v6.0/esp-idf + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/xtensa/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_libc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/soc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/hal/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_gpio/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_usb/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_pmu/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/micro-ecc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_dma/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_gpspi/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_clock/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_mspi/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_blockdev/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/spi_flash/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_bootloader_format/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_app_format/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/partition_table/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esptool_py/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_timg/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_wdt/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_uart/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_i2s/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_ana_conv/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_rtc_timer/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_security/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_security/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/bootloader_support/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/efuse/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_system/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hw_support/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_common/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_rom/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/log/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/bootloader/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_stdio/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/freertos/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/main/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_fields.c.obj b/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_fields.c.obj new file mode 100644 index 0000000..64c24da Binary files /dev/null and b/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_fields.c.obj differ diff --git a/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj b/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj new file mode 100644 index 0000000..c75e7ea Binary files /dev/null and b/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj differ diff --git a/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_utility.c.obj b/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_utility.c.obj new file mode 100644 index 0000000..7e0ece8 Binary files /dev/null and b/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_utility.c.obj differ diff --git a/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/without_key_purposes/three_key_blocks/esp_efuse_api_key.c.obj b/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/without_key_purposes/three_key_blocks/esp_efuse_api_key.c.obj new file mode 100644 index 0000000..283dad5 Binary files /dev/null and b/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/without_key_purposes/three_key_blocks/esp_efuse_api_key.c.obj differ diff --git a/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj b/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj new file mode 100644 index 0000000..71c3d6f Binary files /dev/null and b/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj differ diff --git a/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj b/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj new file mode 100644 index 0000000..b1eb840 Binary files /dev/null and b/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj differ diff --git a/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj b/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj new file mode 100644 index 0000000..2fc17de Binary files /dev/null and b/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj differ diff --git a/build/bootloader/esp-idf/efuse/cmake_install.cmake b/build/bootloader/esp-idf/efuse/cmake_install.cmake new file mode 100644 index 0000000..0aeb783 --- /dev/null +++ b/build/bootloader/esp-idf/efuse/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/efuse + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/efuse/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/bootloader/esp-idf/efuse/libefuse.a b/build/bootloader/esp-idf/efuse/libefuse.a new file mode 100644 index 0000000..b99b08f Binary files /dev/null and b/build/bootloader/esp-idf/efuse/libefuse.a differ diff --git a/build/bootloader/esp-idf/esp_app_format/cmake_install.cmake b/build/bootloader/esp-idf/esp_app_format/cmake_install.cmake new file mode 100644 index 0000000..36d3e02 --- /dev/null +++ b/build/bootloader/esp-idf/esp_app_format/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_app_format + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_app_format/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/bootloader/esp-idf/esp_blockdev/cmake_install.cmake b/build/bootloader/esp-idf/esp_blockdev/cmake_install.cmake new file mode 100644 index 0000000..4e979b1 --- /dev/null +++ b/build/bootloader/esp-idf/esp_blockdev/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_blockdev + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_blockdev/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj b/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj new file mode 100644 index 0000000..9aad0db Binary files /dev/null and b/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj differ diff --git a/build/bootloader/esp-idf/esp_bootloader_format/cmake_install.cmake b/build/bootloader/esp-idf/esp_bootloader_format/cmake_install.cmake new file mode 100644 index 0000000..3a54de1 --- /dev/null +++ b/build/bootloader/esp-idf/esp_bootloader_format/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_bootloader_format + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_bootloader_format/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/bootloader/esp-idf/esp_bootloader_format/libesp_bootloader_format.a b/build/bootloader/esp-idf/esp_bootloader_format/libesp_bootloader_format.a new file mode 100644 index 0000000..9cee966 Binary files /dev/null and b/build/bootloader/esp-idf/esp_bootloader_format/libesp_bootloader_format.a differ diff --git a/build/bootloader/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj b/build/bootloader/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj new file mode 100644 index 0000000..18b1168 Binary files /dev/null and b/build/bootloader/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj differ diff --git a/build/bootloader/esp-idf/esp_common/cmake_install.cmake b/build/bootloader/esp-idf/esp_common/cmake_install.cmake new file mode 100644 index 0000000..974580a --- /dev/null +++ b/build/bootloader/esp-idf/esp_common/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_common + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_common/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/bootloader/esp-idf/esp_common/libesp_common.a b/build/bootloader/esp-idf/esp_common/libesp_common.a new file mode 100644 index 0000000..0ad4898 Binary files /dev/null and b/build/bootloader/esp-idf/esp_common/libesp_common.a differ diff --git a/build/bootloader/esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_hal.c.obj b/build/bootloader/esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_hal.c.obj new file mode 100644 index 0000000..aeecffd Binary files /dev/null and b/build/bootloader/esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_hal.c.obj differ diff --git a/build/bootloader/esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_hal_common.c.obj b/build/bootloader/esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_hal_common.c.obj new file mode 100644 index 0000000..bf54319 Binary files /dev/null and b/build/bootloader/esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_hal_common.c.obj differ diff --git a/build/bootloader/esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_oneshot_hal.c.obj b/build/bootloader/esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_oneshot_hal.c.obj new file mode 100644 index 0000000..b27e71a Binary files /dev/null and b/build/bootloader/esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_oneshot_hal.c.obj differ diff --git a/build/bootloader/esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/esp32/adc_periph.c.obj b/build/bootloader/esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/esp32/adc_periph.c.obj new file mode 100644 index 0000000..5621fe9 Binary files /dev/null and b/build/bootloader/esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/esp32/adc_periph.c.obj differ diff --git a/build/bootloader/esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/esp32/dac_periph.c.obj b/build/bootloader/esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/esp32/dac_periph.c.obj new file mode 100644 index 0000000..c19dc70 Binary files /dev/null and b/build/bootloader/esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/esp32/dac_periph.c.obj differ diff --git a/build/bootloader/esp-idf/esp_hal_ana_conv/cmake_install.cmake b/build/bootloader/esp-idf/esp_hal_ana_conv/cmake_install.cmake new file mode 100644 index 0000000..4f45427 --- /dev/null +++ b/build/bootloader/esp-idf/esp_hal_ana_conv/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hal_ana_conv + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_ana_conv/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/bootloader/esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a b/build/bootloader/esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a new file mode 100644 index 0000000..6305416 Binary files /dev/null and b/build/bootloader/esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a differ diff --git a/build/bootloader/esp-idf/esp_hal_clock/CMakeFiles/__idf_esp_hal_clock.dir/esp32/clk_tree_hal.c.obj b/build/bootloader/esp-idf/esp_hal_clock/CMakeFiles/__idf_esp_hal_clock.dir/esp32/clk_tree_hal.c.obj new file mode 100644 index 0000000..b6b43be Binary files /dev/null and b/build/bootloader/esp-idf/esp_hal_clock/CMakeFiles/__idf_esp_hal_clock.dir/esp32/clk_tree_hal.c.obj differ diff --git a/build/bootloader/esp-idf/esp_hal_clock/cmake_install.cmake b/build/bootloader/esp-idf/esp_hal_clock/cmake_install.cmake new file mode 100644 index 0000000..62b6e64 --- /dev/null +++ b/build/bootloader/esp-idf/esp_hal_clock/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hal_clock + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_clock/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/bootloader/esp-idf/esp_hal_clock/libesp_hal_clock.a b/build/bootloader/esp-idf/esp_hal_clock/libesp_hal_clock.a new file mode 100644 index 0000000..04259eb Binary files /dev/null and b/build/bootloader/esp-idf/esp_hal_clock/libesp_hal_clock.a differ diff --git a/build/bootloader/esp-idf/esp_hal_dma/cmake_install.cmake b/build/bootloader/esp-idf/esp_hal_dma/cmake_install.cmake new file mode 100644 index 0000000..0733e28 --- /dev/null +++ b/build/bootloader/esp-idf/esp_hal_dma/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hal_dma + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_dma/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/bootloader/esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/esp32/rtc_io_periph.c.obj b/build/bootloader/esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/esp32/rtc_io_periph.c.obj new file mode 100644 index 0000000..90710be Binary files /dev/null and b/build/bootloader/esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/esp32/rtc_io_periph.c.obj differ diff --git a/build/bootloader/esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/esp32/sdm_periph.c.obj b/build/bootloader/esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/esp32/sdm_periph.c.obj new file mode 100644 index 0000000..147b8c5 Binary files /dev/null and b/build/bootloader/esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/esp32/sdm_periph.c.obj differ diff --git a/build/bootloader/esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/gpio_hal.c.obj b/build/bootloader/esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/gpio_hal.c.obj new file mode 100644 index 0000000..02a1d0b Binary files /dev/null and b/build/bootloader/esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/gpio_hal.c.obj differ diff --git a/build/bootloader/esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/rtc_io_hal.c.obj b/build/bootloader/esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/rtc_io_hal.c.obj new file mode 100644 index 0000000..a8e57b2 Binary files /dev/null and b/build/bootloader/esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/rtc_io_hal.c.obj differ diff --git a/build/bootloader/esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/sdm_hal.c.obj b/build/bootloader/esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/sdm_hal.c.obj new file mode 100644 index 0000000..e3b08b4 Binary files /dev/null and b/build/bootloader/esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/sdm_hal.c.obj differ diff --git a/build/bootloader/esp-idf/esp_hal_gpio/cmake_install.cmake b/build/bootloader/esp-idf/esp_hal_gpio/cmake_install.cmake new file mode 100644 index 0000000..2846e6d --- /dev/null +++ b/build/bootloader/esp-idf/esp_hal_gpio/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hal_gpio + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_gpio/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/bootloader/esp-idf/esp_hal_gpio/libesp_hal_gpio.a b/build/bootloader/esp-idf/esp_hal_gpio/libesp_hal_gpio.a new file mode 100644 index 0000000..a081131 Binary files /dev/null and b/build/bootloader/esp-idf/esp_hal_gpio/libesp_hal_gpio.a differ diff --git a/build/bootloader/esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/esp32/spi_periph.c.obj b/build/bootloader/esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/esp32/spi_periph.c.obj new file mode 100644 index 0000000..6adc1cc Binary files /dev/null and b/build/bootloader/esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/esp32/spi_periph.c.obj differ diff --git a/build/bootloader/esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_hal.c.obj b/build/bootloader/esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_hal.c.obj new file mode 100644 index 0000000..8d64030 Binary files /dev/null and b/build/bootloader/esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_hal.c.obj differ diff --git a/build/bootloader/esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_hal_iram.c.obj b/build/bootloader/esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_hal_iram.c.obj new file mode 100644 index 0000000..8a29624 Binary files /dev/null and b/build/bootloader/esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_hal_iram.c.obj differ diff --git a/build/bootloader/esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_slave_hal.c.obj b/build/bootloader/esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_slave_hal.c.obj new file mode 100644 index 0000000..e77a6ab Binary files /dev/null and b/build/bootloader/esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_slave_hal.c.obj differ diff --git a/build/bootloader/esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_slave_hal_iram.c.obj b/build/bootloader/esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_slave_hal_iram.c.obj new file mode 100644 index 0000000..b73f5bb Binary files /dev/null and b/build/bootloader/esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_slave_hal_iram.c.obj differ diff --git a/build/bootloader/esp-idf/esp_hal_gpspi/cmake_install.cmake b/build/bootloader/esp-idf/esp_hal_gpspi/cmake_install.cmake new file mode 100644 index 0000000..2b9bbf0 --- /dev/null +++ b/build/bootloader/esp-idf/esp_hal_gpspi/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hal_gpspi + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_gpspi/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/bootloader/esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a b/build/bootloader/esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a new file mode 100644 index 0000000..45bfdc0 Binary files /dev/null and b/build/bootloader/esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a differ diff --git a/build/bootloader/esp-idf/esp_hal_i2s/CMakeFiles/__idf_esp_hal_i2s.dir/esp32/i2s_periph.c.obj b/build/bootloader/esp-idf/esp_hal_i2s/CMakeFiles/__idf_esp_hal_i2s.dir/esp32/i2s_periph.c.obj new file mode 100644 index 0000000..7b83f7a Binary files /dev/null and b/build/bootloader/esp-idf/esp_hal_i2s/CMakeFiles/__idf_esp_hal_i2s.dir/esp32/i2s_periph.c.obj differ diff --git a/build/bootloader/esp-idf/esp_hal_i2s/CMakeFiles/__idf_esp_hal_i2s.dir/i2s_hal.c.obj b/build/bootloader/esp-idf/esp_hal_i2s/CMakeFiles/__idf_esp_hal_i2s.dir/i2s_hal.c.obj new file mode 100644 index 0000000..aa3b0ad Binary files /dev/null and b/build/bootloader/esp-idf/esp_hal_i2s/CMakeFiles/__idf_esp_hal_i2s.dir/i2s_hal.c.obj differ diff --git a/build/bootloader/esp-idf/esp_hal_i2s/cmake_install.cmake b/build/bootloader/esp-idf/esp_hal_i2s/cmake_install.cmake new file mode 100644 index 0000000..8b77500 --- /dev/null +++ b/build/bootloader/esp-idf/esp_hal_i2s/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hal_i2s + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_i2s/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/bootloader/esp-idf/esp_hal_i2s/libesp_hal_i2s.a b/build/bootloader/esp-idf/esp_hal_i2s/libesp_hal_i2s.a new file mode 100644 index 0000000..9097e14 Binary files /dev/null and b/build/bootloader/esp-idf/esp_hal_i2s/libesp_hal_i2s.a differ diff --git a/build/bootloader/esp-idf/esp_hal_mspi/cmake_install.cmake b/build/bootloader/esp-idf/esp_hal_mspi/cmake_install.cmake new file mode 100644 index 0000000..bd9976a --- /dev/null +++ b/build/bootloader/esp-idf/esp_hal_mspi/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hal_mspi + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_mspi/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/bootloader/esp-idf/esp_hal_pmu/cmake_install.cmake b/build/bootloader/esp-idf/esp_hal_pmu/cmake_install.cmake new file mode 100644 index 0000000..54f945a --- /dev/null +++ b/build/bootloader/esp-idf/esp_hal_pmu/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hal_pmu + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_pmu/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/bootloader/esp-idf/esp_hal_rtc_timer/cmake_install.cmake b/build/bootloader/esp-idf/esp_hal_rtc_timer/cmake_install.cmake new file mode 100644 index 0000000..b72259a --- /dev/null +++ b/build/bootloader/esp-idf/esp_hal_rtc_timer/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_rtc_timer/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/bootloader/esp-idf/esp_hal_security/CMakeFiles/__idf_esp_hal_security.dir/mpu_hal.c.obj b/build/bootloader/esp-idf/esp_hal_security/CMakeFiles/__idf_esp_hal_security.dir/mpu_hal.c.obj new file mode 100644 index 0000000..a36384b Binary files /dev/null and b/build/bootloader/esp-idf/esp_hal_security/CMakeFiles/__idf_esp_hal_security.dir/mpu_hal.c.obj differ diff --git a/build/bootloader/esp-idf/esp_hal_security/cmake_install.cmake b/build/bootloader/esp-idf/esp_hal_security/cmake_install.cmake new file mode 100644 index 0000000..fb0ad4a --- /dev/null +++ b/build/bootloader/esp-idf/esp_hal_security/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hal_security + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_security/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/bootloader/esp-idf/esp_hal_security/libesp_hal_security.a b/build/bootloader/esp-idf/esp_hal_security/libesp_hal_security.a new file mode 100644 index 0000000..cd09e95 Binary files /dev/null and b/build/bootloader/esp-idf/esp_hal_security/libesp_hal_security.a differ diff --git a/build/bootloader/esp-idf/esp_hal_timg/CMakeFiles/__idf_esp_hal_timg.dir/esp32/timer_periph.c.obj b/build/bootloader/esp-idf/esp_hal_timg/CMakeFiles/__idf_esp_hal_timg.dir/esp32/timer_periph.c.obj new file mode 100644 index 0000000..6fea238 Binary files /dev/null and b/build/bootloader/esp-idf/esp_hal_timg/CMakeFiles/__idf_esp_hal_timg.dir/esp32/timer_periph.c.obj differ diff --git a/build/bootloader/esp-idf/esp_hal_timg/CMakeFiles/__idf_esp_hal_timg.dir/timer_hal.c.obj b/build/bootloader/esp-idf/esp_hal_timg/CMakeFiles/__idf_esp_hal_timg.dir/timer_hal.c.obj new file mode 100644 index 0000000..cb65c14 Binary files /dev/null and b/build/bootloader/esp-idf/esp_hal_timg/CMakeFiles/__idf_esp_hal_timg.dir/timer_hal.c.obj differ diff --git a/build/bootloader/esp-idf/esp_hal_timg/cmake_install.cmake b/build/bootloader/esp-idf/esp_hal_timg/cmake_install.cmake new file mode 100644 index 0000000..7b7ced1 --- /dev/null +++ b/build/bootloader/esp-idf/esp_hal_timg/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hal_timg + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_timg/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/bootloader/esp-idf/esp_hal_timg/libesp_hal_timg.a b/build/bootloader/esp-idf/esp_hal_timg/libesp_hal_timg.a new file mode 100644 index 0000000..d28ed20 Binary files /dev/null and b/build/bootloader/esp-idf/esp_hal_timg/libesp_hal_timg.a differ diff --git a/build/bootloader/esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/esp32/uart_periph.c.obj b/build/bootloader/esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/esp32/uart_periph.c.obj new file mode 100644 index 0000000..a733769 Binary files /dev/null and b/build/bootloader/esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/esp32/uart_periph.c.obj differ diff --git a/build/bootloader/esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/uart_hal.c.obj b/build/bootloader/esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/uart_hal.c.obj new file mode 100644 index 0000000..cfba0ff Binary files /dev/null and b/build/bootloader/esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/uart_hal.c.obj differ diff --git a/build/bootloader/esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/uart_hal_iram.c.obj b/build/bootloader/esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/uart_hal_iram.c.obj new file mode 100644 index 0000000..aa1baf7 Binary files /dev/null and b/build/bootloader/esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/uart_hal_iram.c.obj differ diff --git a/build/bootloader/esp-idf/esp_hal_uart/cmake_install.cmake b/build/bootloader/esp-idf/esp_hal_uart/cmake_install.cmake new file mode 100644 index 0000000..cd30916 --- /dev/null +++ b/build/bootloader/esp-idf/esp_hal_uart/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hal_uart + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_uart/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/bootloader/esp-idf/esp_hal_uart/libesp_hal_uart.a b/build/bootloader/esp-idf/esp_hal_uart/libesp_hal_uart.a new file mode 100644 index 0000000..6b1a839 Binary files /dev/null and b/build/bootloader/esp-idf/esp_hal_uart/libesp_hal_uart.a differ diff --git a/build/bootloader/esp-idf/esp_hal_usb/cmake_install.cmake b/build/bootloader/esp-idf/esp_hal_usb/cmake_install.cmake new file mode 100644 index 0000000..38930df --- /dev/null +++ b/build/bootloader/esp-idf/esp_hal_usb/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hal_usb + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_usb/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/bootloader/esp-idf/esp_hal_wdt/CMakeFiles/__idf_esp_hal_wdt.dir/esp32/mwdt_periph.c.obj b/build/bootloader/esp-idf/esp_hal_wdt/CMakeFiles/__idf_esp_hal_wdt.dir/esp32/mwdt_periph.c.obj new file mode 100644 index 0000000..0accf41 Binary files /dev/null and b/build/bootloader/esp-idf/esp_hal_wdt/CMakeFiles/__idf_esp_hal_wdt.dir/esp32/mwdt_periph.c.obj differ diff --git a/build/bootloader/esp-idf/esp_hal_wdt/CMakeFiles/__idf_esp_hal_wdt.dir/wdt_hal_iram.c.obj b/build/bootloader/esp-idf/esp_hal_wdt/CMakeFiles/__idf_esp_hal_wdt.dir/wdt_hal_iram.c.obj new file mode 100644 index 0000000..1f19881 Binary files /dev/null and b/build/bootloader/esp-idf/esp_hal_wdt/CMakeFiles/__idf_esp_hal_wdt.dir/wdt_hal_iram.c.obj differ diff --git a/build/bootloader/esp-idf/esp_hal_wdt/cmake_install.cmake b/build/bootloader/esp-idf/esp_hal_wdt/cmake_install.cmake new file mode 100644 index 0000000..39842b2 --- /dev/null +++ b/build/bootloader/esp-idf/esp_hal_wdt/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hal_wdt + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_wdt/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/bootloader/esp-idf/esp_hal_wdt/libesp_hal_wdt.a b/build/bootloader/esp-idf/esp_hal_wdt/libesp_hal_wdt.a new file mode 100644 index 0000000..5c41076 Binary files /dev/null and b/build/bootloader/esp-idf/esp_hal_wdt/libesp_hal_wdt.a differ diff --git a/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj b/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj new file mode 100644 index 0000000..f1ff3be Binary files /dev/null and b/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj differ diff --git a/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj b/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj new file mode 100644 index 0000000..37f400f Binary files /dev/null and b/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj differ diff --git a/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/chip_info.c.obj b/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/chip_info.c.obj new file mode 100644 index 0000000..a5ebebb Binary files /dev/null and b/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/chip_info.c.obj differ diff --git a/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cpu_region_protect.c.obj b/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cpu_region_protect.c.obj new file mode 100644 index 0000000..eac5a10 Binary files /dev/null and b/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cpu_region_protect.c.obj differ diff --git a/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/esp_cpu_intr.c.obj b/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/esp_cpu_intr.c.obj new file mode 100644 index 0000000..d34af8c Binary files /dev/null and b/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/esp_cpu_intr.c.obj differ diff --git a/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk.c.obj b/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk.c.obj new file mode 100644 index 0000000..a8eda2b Binary files /dev/null and b/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk.c.obj differ diff --git a/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk_init.c.obj b/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk_init.c.obj new file mode 100644 index 0000000..149a1a9 Binary files /dev/null and b/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk_init.c.obj differ diff --git a/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_init.c.obj b/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_init.c.obj new file mode 100644 index 0000000..b88abb0 Binary files /dev/null and b/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_init.c.obj differ diff --git a/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_sleep.c.obj b/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_sleep.c.obj new file mode 100644 index 0000000..b2a9b8a Binary files /dev/null and b/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_sleep.c.obj differ diff --git a/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_time.c.obj b/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_time.c.obj new file mode 100644 index 0000000..f68fcb0 Binary files /dev/null and b/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_time.c.obj differ diff --git a/build/bootloader/esp-idf/esp_hw_support/cmake_install.cmake b/build/bootloader/esp-idf/esp_hw_support/cmake_install.cmake new file mode 100644 index 0000000..3efabcf --- /dev/null +++ b/build/bootloader/esp-idf/esp_hw_support/cmake_install.cmake @@ -0,0 +1,55 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hw_support + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hw_support/port/esp32/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hw_support/lowpower/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hw_support/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/bootloader/esp-idf/esp_hw_support/libesp_hw_support.a b/build/bootloader/esp-idf/esp_hw_support/libesp_hw_support.a new file mode 100644 index 0000000..b73f8af Binary files /dev/null and b/build/bootloader/esp-idf/esp_hw_support/libesp_hw_support.a differ diff --git a/build/bootloader/esp-idf/esp_hw_support/lowpower/cmake_install.cmake b/build/bootloader/esp-idf/esp_hw_support/lowpower/cmake_install.cmake new file mode 100644 index 0000000..c3b1831 --- /dev/null +++ b/build/bootloader/esp-idf/esp_hw_support/lowpower/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hw_support/lowpower + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hw_support/lowpower/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/bootloader/esp-idf/esp_hw_support/port/esp32/cmake_install.cmake b/build/bootloader/esp-idf/esp_hw_support/port/esp32/cmake_install.cmake new file mode 100644 index 0000000..1e65876 --- /dev/null +++ b/build/bootloader/esp-idf/esp_hw_support/port/esp32/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hw_support/port/esp32/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/bootloader/esp-idf/esp_libc/cmake_install.cmake b/build/bootloader/esp-idf/esp_libc/cmake_install.cmake new file mode 100644 index 0000000..bac1690 --- /dev/null +++ b/build/bootloader/esp-idf/esp_libc/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_libc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_libc/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj b/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj new file mode 100644 index 0000000..b52529f Binary files /dev/null and b/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj differ diff --git a/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj b/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj new file mode 100644 index 0000000..85e8561 Binary files /dev/null and b/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj differ diff --git a/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj b/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj new file mode 100644 index 0000000..4afad13 Binary files /dev/null and b/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj differ diff --git a/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj b/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj new file mode 100644 index 0000000..b2cf3a4 Binary files /dev/null and b/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj differ diff --git a/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj b/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj new file mode 100644 index 0000000..86248bc Binary files /dev/null and b/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj differ diff --git a/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_serial_output.c.obj b/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_serial_output.c.obj new file mode 100644 index 0000000..628ea4c Binary files /dev/null and b/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_serial_output.c.obj differ diff --git a/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj b/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj new file mode 100644 index 0000000..6c7117a Binary files /dev/null and b/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj differ diff --git a/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj b/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj new file mode 100644 index 0000000..55473bc Binary files /dev/null and b/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj differ diff --git a/build/bootloader/esp-idf/esp_rom/cmake_install.cmake b/build/bootloader/esp-idf/esp_rom/cmake_install.cmake new file mode 100644 index 0000000..8f615bf --- /dev/null +++ b/build/bootloader/esp-idf/esp_rom/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_rom + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_rom/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/bootloader/esp-idf/esp_rom/libesp_rom.a b/build/bootloader/esp-idf/esp_rom/libesp_rom.a new file mode 100644 index 0000000..7cc921e Binary files /dev/null and b/build/bootloader/esp-idf/esp_rom/libesp_rom.a differ diff --git a/build/bootloader/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_lock.c.obj b/build/bootloader/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_lock.c.obj new file mode 100644 index 0000000..1f281e0 Binary files /dev/null and b/build/bootloader/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_lock.c.obj differ diff --git a/build/bootloader/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_periph_clk.c.obj b/build/bootloader/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_periph_clk.c.obj new file mode 100644 index 0000000..81f6e30 Binary files /dev/null and b/build/bootloader/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_periph_clk.c.obj differ diff --git a/build/bootloader/esp-idf/esp_security/cmake_install.cmake b/build/bootloader/esp-idf/esp_security/cmake_install.cmake new file mode 100644 index 0000000..9b48ddf --- /dev/null +++ b/build/bootloader/esp-idf/esp_security/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_security + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_security/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/bootloader/esp-idf/esp_security/libesp_security.a b/build/bootloader/esp-idf/esp_security/libesp_security.a new file mode 100644 index 0000000..5fa1373 Binary files /dev/null and b/build/bootloader/esp-idf/esp_security/libesp_security.a differ diff --git a/build/bootloader/esp-idf/esp_stdio/cmake_install.cmake b/build/bootloader/esp-idf/esp_stdio/cmake_install.cmake new file mode 100644 index 0000000..440c57e --- /dev/null +++ b/build/bootloader/esp-idf/esp_stdio/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_stdio + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_stdio/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/bootloader/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj b/build/bootloader/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj new file mode 100644 index 0000000..d936aec Binary files /dev/null and b/build/bootloader/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj differ diff --git a/build/bootloader/esp-idf/esp_system/cmake_install.cmake b/build/bootloader/esp-idf/esp_system/cmake_install.cmake new file mode 100644 index 0000000..64f287f --- /dev/null +++ b/build/bootloader/esp-idf/esp_system/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_system + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_system/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/bootloader/esp-idf/esp_system/libesp_system.a b/build/bootloader/esp-idf/esp_system/libesp_system.a new file mode 100644 index 0000000..54615d8 Binary files /dev/null and b/build/bootloader/esp-idf/esp_system/libesp_system.a differ diff --git a/build/bootloader/esp-idf/esptool_py/cmake_install.cmake b/build/bootloader/esp-idf/esptool_py/cmake_install.cmake new file mode 100644 index 0000000..0e1fc27 --- /dev/null +++ b/build/bootloader/esp-idf/esptool_py/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esptool_py + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esptool_py/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/bootloader/esp-idf/freertos/cmake_install.cmake b/build/bootloader/esp-idf/freertos/cmake_install.cmake new file mode 100644 index 0000000..88c4e63 --- /dev/null +++ b/build/bootloader/esp-idf/freertos/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/freertos + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/freertos/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj b/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj new file mode 100644 index 0000000..295491b Binary files /dev/null and b/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj differ diff --git a/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/cache_hal_esp32.c.obj b/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/cache_hal_esp32.c.obj new file mode 100644 index 0000000..dcd4f4a Binary files /dev/null and b/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/cache_hal_esp32.c.obj differ diff --git a/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/efuse_hal.c.obj b/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/efuse_hal.c.obj new file mode 100644 index 0000000..eb69467 Binary files /dev/null and b/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/efuse_hal.c.obj differ diff --git a/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj b/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj new file mode 100644 index 0000000..0574863 Binary files /dev/null and b/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj differ diff --git a/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj b/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj new file mode 100644 index 0000000..968a829 Binary files /dev/null and b/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj differ diff --git a/build/bootloader/esp-idf/hal/cmake_install.cmake b/build/bootloader/esp-idf/hal/cmake_install.cmake new file mode 100644 index 0000000..41f54dc --- /dev/null +++ b/build/bootloader/esp-idf/hal/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/hal + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/hal/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/bootloader/esp-idf/hal/libhal.a b/build/bootloader/esp-idf/hal/libhal.a new file mode 100644 index 0000000..f711952 Binary files /dev/null and b/build/bootloader/esp-idf/hal/libhal.a differ diff --git a/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj b/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj new file mode 100644 index 0000000..2432198 Binary files /dev/null and b/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj differ diff --git a/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/log.c.obj b/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/log.c.obj new file mode 100644 index 0000000..90e26c6 Binary files /dev/null and b/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/log.c.obj differ diff --git a/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_format_text.c.obj b/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_format_text.c.obj new file mode 100644 index 0000000..77fd954 Binary files /dev/null and b/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_format_text.c.obj differ diff --git a/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_print.c.obj b/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_print.c.obj new file mode 100644 index 0000000..b705006 Binary files /dev/null and b/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_print.c.obj differ diff --git a/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj b/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj new file mode 100644 index 0000000..c3ae6fa Binary files /dev/null and b/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj differ diff --git a/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_lock.c.obj b/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_lock.c.obj new file mode 100644 index 0000000..ea0832b Binary files /dev/null and b/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_lock.c.obj differ diff --git a/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_timestamp.c.obj b/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_timestamp.c.obj new file mode 100644 index 0000000..500d448 Binary files /dev/null and b/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_timestamp.c.obj differ diff --git a/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/util.c.obj b/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/util.c.obj new file mode 100644 index 0000000..699c959 Binary files /dev/null and b/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/util.c.obj differ diff --git a/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj b/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj new file mode 100644 index 0000000..08aa9ce Binary files /dev/null and b/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj differ diff --git a/build/bootloader/esp-idf/log/cmake_install.cmake b/build/bootloader/esp-idf/log/cmake_install.cmake new file mode 100644 index 0000000..53f1a90 --- /dev/null +++ b/build/bootloader/esp-idf/log/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/log + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/log/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/bootloader/esp-idf/log/liblog.a b/build/bootloader/esp-idf/log/liblog.a new file mode 100644 index 0000000..6b747f3 Binary files /dev/null and b/build/bootloader/esp-idf/log/liblog.a differ diff --git a/build/bootloader/esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj b/build/bootloader/esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj new file mode 100644 index 0000000..211405e Binary files /dev/null and b/build/bootloader/esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj differ diff --git a/build/bootloader/esp-idf/main/cmake_install.cmake b/build/bootloader/esp-idf/main/cmake_install.cmake new file mode 100644 index 0000000..1443ba2 --- /dev/null +++ b/build/bootloader/esp-idf/main/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/bootloader/subproject/main + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/main/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/bootloader/esp-idf/main/libmain.a b/build/bootloader/esp-idf/main/libmain.a new file mode 100644 index 0000000..3731784 Binary files /dev/null and b/build/bootloader/esp-idf/main/libmain.a differ diff --git a/build/bootloader/esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj b/build/bootloader/esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj new file mode 100644 index 0000000..7a84eb6 Binary files /dev/null and b/build/bootloader/esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj differ diff --git a/build/bootloader/esp-idf/micro-ecc/cmake_install.cmake b/build/bootloader/esp-idf/micro-ecc/cmake_install.cmake new file mode 100644 index 0000000..f0a2304 --- /dev/null +++ b/build/bootloader/esp-idf/micro-ecc/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/micro-ecc/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/bootloader/esp-idf/micro-ecc/libmicro-ecc.a b/build/bootloader/esp-idf/micro-ecc/libmicro-ecc.a new file mode 100644 index 0000000..2845339 Binary files /dev/null and b/build/bootloader/esp-idf/micro-ecc/libmicro-ecc.a differ diff --git a/build/bootloader/esp-idf/partition_table/cmake_install.cmake b/build/bootloader/esp-idf/partition_table/cmake_install.cmake new file mode 100644 index 0000000..717dc16 --- /dev/null +++ b/build/bootloader/esp-idf/partition_table/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/partition_table + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/partition_table/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj new file mode 100644 index 0000000..e90a49f Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dport_access.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dport_access.c.obj new file mode 100644 index 0000000..280f7fb Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dport_access.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/emac_periph.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/emac_periph.c.obj new file mode 100644 index 0000000..07f1834 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/emac_periph.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/gpio_periph.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/gpio_periph.c.obj new file mode 100644 index 0000000..22db814 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/gpio_periph.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/interrupts.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/interrupts.c.obj new file mode 100644 index 0000000..3602667 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/interrupts.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mpi_periph.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mpi_periph.c.obj new file mode 100644 index 0000000..41c3359 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mpi_periph.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/power_supply_periph.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/power_supply_periph.c.obj new file mode 100644 index 0000000..482fa0e Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/power_supply_periph.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdio_slave_periph.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdio_slave_periph.c.obj new file mode 100644 index 0000000..91704a8 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdio_slave_periph.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdmmc_periph.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdmmc_periph.c.obj new file mode 100644 index 0000000..533d915 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdmmc_periph.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj new file mode 100644 index 0000000..0c91c66 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj differ diff --git a/build/bootloader/esp-idf/soc/cmake_install.cmake b/build/bootloader/esp-idf/soc/cmake_install.cmake new file mode 100644 index 0000000..54d4efd --- /dev/null +++ b/build/bootloader/esp-idf/soc/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/soc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/soc/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/bootloader/esp-idf/soc/libsoc.a b/build/bootloader/esp-idf/soc/libsoc.a new file mode 100644 index 0000000..7712227 Binary files /dev/null and b/build/bootloader/esp-idf/soc/libsoc.a differ diff --git a/build/bootloader/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj b/build/bootloader/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj new file mode 100644 index 0000000..d4b41c6 Binary files /dev/null and b/build/bootloader/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj differ diff --git a/build/bootloader/esp-idf/spi_flash/cmake_install.cmake b/build/bootloader/esp-idf/spi_flash/cmake_install.cmake new file mode 100644 index 0000000..030770c --- /dev/null +++ b/build/bootloader/esp-idf/spi_flash/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/spi_flash + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/spi_flash/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/bootloader/esp-idf/spi_flash/libspi_flash.a b/build/bootloader/esp-idf/spi_flash/libspi_flash.a new file mode 100644 index 0000000..c3f917b Binary files /dev/null and b/build/bootloader/esp-idf/spi_flash/libspi_flash.a differ diff --git a/build/bootloader/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj b/build/bootloader/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj new file mode 100644 index 0000000..3c692f2 Binary files /dev/null and b/build/bootloader/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj differ diff --git a/build/bootloader/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj b/build/bootloader/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj new file mode 100644 index 0000000..5201ff7 Binary files /dev/null and b/build/bootloader/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj differ diff --git a/build/bootloader/esp-idf/xtensa/cmake_install.cmake b/build/bootloader/esp-idf/xtensa/cmake_install.cmake new file mode 100644 index 0000000..3a15d94 --- /dev/null +++ b/build/bootloader/esp-idf/xtensa/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/xtensa + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/xtensa/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/bootloader/esp-idf/xtensa/libxtensa.a b/build/bootloader/esp-idf/xtensa/libxtensa.a new file mode 100644 index 0000000..9dadca8 Binary files /dev/null and b/build/bootloader/esp-idf/xtensa/libxtensa.a differ diff --git a/build/bootloader/gdbinit/connect b/build/bootloader/gdbinit/connect new file mode 100644 index 0000000..faa3857 --- /dev/null +++ b/build/bootloader/gdbinit/connect @@ -0,0 +1,7 @@ +# Connect to the default openocd-esp port and stop on app_main() +set remotetimeout 10 +target remote :3333 +monitor reset halt +maintenance flush register-cache +thbreak app_main +continue diff --git a/build/bootloader/gdbinit/gdbinit b/build/bootloader/gdbinit/gdbinit new file mode 100644 index 0000000..85e2b3d --- /dev/null +++ b/build/bootloader/gdbinit/gdbinit @@ -0,0 +1,2 @@ +source C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/gdbinit/symbols +source C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/gdbinit/connect diff --git a/build/bootloader/gdbinit/prefix_map b/build/bootloader/gdbinit/prefix_map new file mode 100644 index 0000000..c7842ec --- /dev/null +++ b/build/bootloader/gdbinit/prefix_map @@ -0,0 +1 @@ +# There is no prefix map defined for the project. diff --git a/build/bootloader/gdbinit/py_extensions b/build/bootloader/gdbinit/py_extensions new file mode 100644 index 0000000..336f995 --- /dev/null +++ b/build/bootloader/gdbinit/py_extensions @@ -0,0 +1,7 @@ +# Add Python GDB extensions +python +try: + import freertos_gdb +except ModuleNotFoundError: + print('warning: python extension "freertos_gdb" not found.') +end diff --git a/build/bootloader/gdbinit/symbols b/build/bootloader/gdbinit/symbols new file mode 100644 index 0000000..56f7c3d --- /dev/null +++ b/build/bootloader/gdbinit/symbols @@ -0,0 +1,25 @@ +# Load esp32 ROM ELF symbols +define target hookpost-remote +set confirm off + # if $_streq((char *) 0x3ff9ea80, "Jun 8 2016") + if (*(int*) 0x3ff9ea80) == 0x206e754a && (*(int*) 0x3ff9ea84) == 0x32203820 && (*(int*) 0x3ff9ea88) == 0x363130 + add-symbol-file C:/Espressif/tools/esp-rom-elfs/20241011esp32_rev0_rom.elf + else + # if $_streq((char *) 0x3ff9e986, "Jul 29 2019") + if (*(int*) 0x3ff9e986) == 0x206c754a && (*(int*) 0x3ff9e98a) == 0x32203932 && (*(int*) 0x3ff9e98e) == 0x393130 + add-symbol-file C:/Espressif/tools/esp-rom-elfs/20241011esp32_rev300_rom.elf + else + echo Warning: Unknown esp32 ROM revision.\n + end + end +set confirm on +end + + +# Load bootloader symbols +set confirm off + # Bootloader elf was not found +set confirm on + +# Load application symbols +file C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/bootloader.elf diff --git a/build/bootloader/kconfigs.in b/build/bootloader/kconfigs.in new file mode 100644 index 0000000..d2a117d --- /dev/null +++ b/build/bootloader/kconfigs.in @@ -0,0 +1,13 @@ +source "C:/esp/v6.0/esp-idf/components/efuse/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_common/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_hw_support/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_libc/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_rom/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_security/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_stdio/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_system/Kconfig" +source "C:/esp/v6.0/esp-idf/components/freertos/Kconfig" +source "C:/esp/v6.0/esp-idf/components/hal/Kconfig" +source "C:/esp/v6.0/esp-idf/components/log/Kconfig" +source "C:/esp/v6.0/esp-idf/components/soc/Kconfig" +source "C:/esp/v6.0/esp-idf/components/spi_flash/Kconfig" \ No newline at end of file diff --git a/build/bootloader/kconfigs_projbuild.in b/build/bootloader/kconfigs_projbuild.in new file mode 100644 index 0000000..1b56a15 --- /dev/null +++ b/build/bootloader/kconfigs_projbuild.in @@ -0,0 +1,5 @@ +source "C:/esp/v6.0/esp-idf/components/bootloader/Kconfig.projbuild" +source "C:/esp/v6.0/esp-idf/components/esp_app_format/Kconfig.projbuild" +source "C:/esp/v6.0/esp-idf/components/esp_rom/Kconfig.projbuild" +source "C:/esp/v6.0/esp-idf/components/esptool_py/Kconfig.projbuild" +source "C:/esp/v6.0/esp-idf/components/partition_table/Kconfig.projbuild" \ No newline at end of file diff --git a/build/bootloader/ld/bootloader.ld b/build/bootloader/ld/bootloader.ld new file mode 100644 index 0000000..17fd503 --- /dev/null +++ b/build/bootloader/ld/bootloader.ld @@ -0,0 +1,265 @@ +/* + * SPDX-FileCopyrightText: 2021-2025 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ +/* + + * Automatically generated file. DO NOT EDIT. + + * Espressif IoT Development Framework (ESP-IDF) 6.0.0 Configuration Header + + */ + +/* List of deprecated options */ +/* +Linker file used to link the bootloader. +*/ +/* Simplified memory map for the bootloader + + The main purpose is to make sure the bootloader can load into main memory + without overwriting itself. +*/ +MEMORY +{ + /* IRAM POOL1, used for APP CPU cache. Bootloader runs from here during the final stage of loading the app because APP CPU is still held in reset, the main app enables APP CPU cache */ + iram_loader_seg (RWX) : org = 0x40078000, len = 0x8000 /* 32KB, APP CPU cache */ + /* 63kB, IRAM. We skip the first 1k to prevent the entry point being + placed into the same range as exception vectors in the app. + This leads to idf_monitor decoding ROM bootloader "entry 0x40080xxx" + message as one of the exception vectors, which looks scary to users. + */ + iram_seg (RWX) : org = 0x40080400, len = 0xfc00 + /* 64k at the end of DRAM, after ROM bootloader stack */ + dram_seg (RW) : org = 0x3FFF0000, len = 0x6000 +} +/* Default entry point: */ +ENTRY(call_start_cpu0); +SECTIONS +{ + .iram_loader.text : + { + . = ALIGN (16); + _loader_text_start = ABSOLUTE(.); + *(.stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*) + *(.iram1 .iram1.*) /* catch stray IRAM_ATTR */ + *liblog.a:(.literal .text .literal.* .text.*) + /* we use either libgcc or compiler-rt, so put similar entries for them here */ + *libgcc.a:(.literal .text .literal.* .text.*) + *libclang_rt.builtins.a:(.literal .text .literal.* .text.*) + *libbootloader_support.a:bootloader_clock_loader.*(.literal .text .literal.* .text.*) + *libbootloader_support.a:bootloader_common_loader.*(.literal .text .literal.* .text.*) + *libbootloader_support.a:bootloader_flash.*(.literal .text .literal.* .text.*) + *libbootloader_support.a:bootloader_random.*(.literal .text .literal.* .text.*) + *libbootloader_support.a:bootloader_random*.*(.literal.bootloader_random_disable .text.bootloader_random_disable) + *libesp_common.a:fpga_overrides.*(.literal.bootloader_fill_random .text.bootloader_fill_random) + *libbootloader_support.a:bootloader_efuse.*(.literal .text .literal.* .text.*) + *libbootloader_support.a:bootloader_utility.*(.literal .text .literal.* .text.*) + *libbootloader_support.a:bootloader_sha.*(.literal .text .literal.* .text.*) + *libbootloader_support.a:bootloader_console_loader.*(.literal .text .literal.* .text.*) + *libbootloader_support.a:bootloader_panic.*(.literal .text .literal.* .text.*) + *libbootloader_support.a:bootloader_soc.*(.literal .text .literal.* .text.*) + *libbootloader_support.a:esp_image_format.*(.literal .text .literal.* .text.*) + *libbootloader_support.a:flash_encrypt.*(.literal .text .literal.* .text.*) + *libbootloader_support.a:flash_encryption_secure_features.*(.literal .text .literal.* .text.*) + *libbootloader_support.a:flash_partitions.*(.literal .text .literal.* .text.*) + *libbootloader_support.a:secure_boot.*(.literal .text .literal.* .text.*) + *libbootloader_support.a:secure_boot_secure_features.*(.literal .text .literal.* .text.*) + *libbootloader_support.a:secure_boot_signatures_bootloader.*(.literal .text .literal.* .text.*) + *libmicro-ecc.a:*.*(.literal .text .literal.* .text.*) + *libspi_flash.a:*.*(.literal .text .literal.* .text.*) + *libhal.a:mmu_hal.*(.literal .text .literal.* .text.*) + *libhal.a:efuse_hal.*(.literal .text .literal.* .text.*) + *libesp_hal_wdt.a:wdt_hal_iram.*(.literal .text .literal.* .text.*) + *libesp_hw_support.a:rtc_clk.*(.literal .text .literal.* .text.*) + *libesp_hw_support.a:rtc_time.*(.literal .text .literal.* .text.*) + *libefuse.a:*.*(.literal .text .literal.* .text.*) + *libesp_rom.a:*.*(.literal .text .literal.* .text.*) + *(.fini.literal) + *(.fini) + *(.gnu.version) + _loader_text_end = ABSOLUTE(.); + } > iram_loader_seg + .iram.text : + { + . = ALIGN (16); + *(.entry.text) + *(.init.literal) + *(.init) + } > iram_seg + /* Shared RAM */ + .dram0.bss (NOLOAD) : + { + . = ALIGN (8); + _dram_start = ABSOLUTE(.); + _bss_start = ABSOLUTE(.); + *(.dynsbss) + *(.sbss) + *(.sbss.*) + *(.gnu.linkonce.sb.*) + *(.scommon) + *(.sbss2) + *(.sbss2.*) + *(.gnu.linkonce.sb2.*) + *(.dynbss) + *(.bss) + *(.bss.*) + *(.gnu.linkonce.b.*) + *(COMMON) + . = ALIGN (8); + _bss_end = ABSOLUTE(.); + } >dram_seg + .dram0.bootdesc : ALIGN(0x10) + { + _data_start = ABSOLUTE(.); + *(.data_bootloader_desc .data_bootloader_desc.*) /* Should be the first. Bootloader version info. DO NOT PUT ANYTHING BEFORE IT! */ + } > dram_seg + .dram0.data : ALIGN(0x10) + { + *(.dram1 .dram1.*) /* catch stray DRAM_ATTR */ + *(.data) + *(.data.*) + *(.gnu.linkonce.d.*) + *(.data1) + *(.sdata) + *(.sdata.*) + *(.gnu.linkonce.s.*) + *(.gnu.linkonce.s2.*) + *(.jcr) + _data_end = ABSOLUTE(.); + } >dram_seg + .dram0.rodata : + { + _rodata_start = ABSOLUTE(.); + *(.rodata) + *(.rodata.*) + *(.gnu.linkonce.r.*) + *(.rodata1) + *(.sdata2 .sdata2.*) + __XT_EXCEPTION_TABLE_ = ABSOLUTE(.); + *(.xt_except_table) + *(.gcc_except_table) + *(.gnu.linkonce.e.*) + *(.gnu.version_r) + *(.eh_frame_hdr) + *(.eh_frame) + . = (. + 3) & ~ 3; + /* C++ constructor and destructor tables, properly ordered: */ + __init_array_start = ABSOLUTE(.); + KEEP (*crtbegin.*(.ctors)) + KEEP (*(EXCLUDE_FILE (*crtend.*) .ctors)) + KEEP (*(SORT(.ctors.*))) + KEEP (*(.ctors)) + __init_array_end = ABSOLUTE(.); + KEEP (*crtbegin.*(.dtors)) + KEEP (*(EXCLUDE_FILE (*crtend.*) .dtors)) + KEEP (*(SORT(.dtors.*))) + KEEP (*(.dtors)) + /* C++ exception handlers table: */ + __XT_EXCEPTION_DESCS_ = ABSOLUTE(.); + *(.xt_except_desc) + *(.gnu.linkonce.h.*) + __XT_EXCEPTION_DESCS_END__ = ABSOLUTE(.); + *(.xt_except_desc_end) + *(.dynamic) + *(.gnu.version_d) + _rodata_end = ABSOLUTE(.); + /* Literals are also RO data. */ + _lit4_start = ABSOLUTE(.); + *(*.lit4) + *(.lit4.*) + *(.gnu.linkonce.lit4.*) + _lit4_end = ABSOLUTE(.); + . = ALIGN(4); + _dram_end = ABSOLUTE(.); + } >dram_seg + .iram.text : + { + _stext = .; + _text_start = ABSOLUTE(.); + *(.literal .text .literal.* .text.* .stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*) + *(.iram .iram.*) /* catch stray IRAM_ATTR */ + *(.fini.literal) + *(.fini) + *(.gnu.version) + /** CPU will try to prefetch up to 16 bytes of + * of instructions. This means that any configuration (e.g. MMU, PMS) must allow + * safe access to up to 16 bytes after the last real instruction, add + * dummy bytes to ensure this + */ + . += 16; + _text_end = ABSOLUTE(.); + _etext = .; + } > iram_seg + /** This section will be used by the debugger and disassembler to get more information + * about raw data present in the code. + * Indeed, it may be required to add some padding at some points in the code + * in order to align a branch/jump destination on a particular bound. + * Padding these instructions will generate null bytes that shall be + * interpreted as data, and not code by the debugger or disassembler. + * This section will only be present in the ELF file, not in the final binary + * For more details, check GCC-212 + */ + .xt.prop 0 : + { + KEEP (*(.xt.prop .xt.prop.* .gnu.linkonce.prop.*)) + } + .xt.lit 0 : + { + KEEP (*(.xt.lit .xt.lit.* .gnu.linkonce.p.*)) + } + .xtensa.info 0: { *(.xtensa.info) } + /* DWARF 1 */ + .debug 0 : { *(.debug) } + .line 0 : { *(.line) } + /* GNU DWARF 1 extensions */ + .debug_srcinfo 0 : { *(.debug_srcinfo) } + .debug_sfnames 0 : { *(.debug_sfnames) } + /* DWARF 1.1 and DWARF 2 */ + .debug_aranges 0 : { *(.debug_aranges) } + .debug_pubnames 0 : { *(.debug_pubnames) } + /* DWARF 2 */ + .debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) } + .debug_abbrev 0 : { *(.debug_abbrev) } + .debug_line 0 : { *(.debug_line) } + .debug_frame 0 : { *(.debug_frame) } + .debug_str 0 : { *(.debug_str) } + .debug_loc 0 : { *(.debug_loc) } + .debug_macinfo 0 : { *(.debug_macinfo) } + .debug_pubtypes 0 : { *(.debug_pubtypes) } + /* DWARF 3 */ + .debug_ranges 0 : { *(.debug_ranges) } + /* SGI/MIPS DWARF 2 extensions */ + .debug_weaknames 0 : { *(.debug_weaknames) } + .debug_funcnames 0 : { *(.debug_funcnames) } + .debug_typenames 0 : { *(.debug_typenames) } + .debug_varnames 0 : { *(.debug_varnames) } + /* GNU DWARF 2 extensions */ + .debug_gnu_pubnames 0 : { *(.debug_gnu_pubnames) } + .debug_gnu_pubtypes 0 : { *(.debug_gnu_pubtypes) } + /* DWARF 4 */ + .debug_types 0 : { *(.debug_types) } + /* DWARF 5 */ + .debug_addr 0 : { *(.debug_addr) } + .debug_line_str 0 : { *(.debug_line_str) } + .debug_loclists 0 : { *(.debug_loclists) } + .debug_macro 0 : { *(.debug_macro) } + .debug_names 0 : { *(.debug_names) } + .debug_rnglists 0 : { *(.debug_rnglists) } + .debug_str_offsets 0 : { *(.debug_str_offsets) } + .comment 0 : { *(.comment) } + .note.GNU-stack 0: { *(.note.GNU-stack) } + /** + * This section is not included in the binary image; it is only present in the ELF file. + * It is used to keep certain symbols in the ELF file. + */ + .noload 0 (INFO) : + { + /* Reserve first 4 bytes as zero for vars pointed to NULL */ + . = 0; + LONG(0); + _noload_keep_in_elf_start = ABSOLUTE(.); + KEEP(*(.noload_keep_in_elf .noload_keep_in_elf.*)) + _noload_keep_in_elf_end = ABSOLUTE(.); + } +} diff --git a/build/bootloader/project_description.json b/build/bootloader/project_description.json new file mode 100644 index 0000000..84f47e9 --- /dev/null +++ b/build/bootloader/project_description.json @@ -0,0 +1,2403 @@ +{ + "version": "1.3", + "project_name": "bootloader", + "project_version": "v6.0", + "project_path": "C:/esp/v6.0/esp-idf/components/bootloader/subproject", + "idf_path": "C:/esp/v6.0/esp-idf", + "build_dir": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", + "config_file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/sdkconfig", + "config_defaults": "", + "bootloader_elf": "", + "app_elf": "bootloader.elf", + "app_bin": "bootloader.bin", + "build_type": "flash_app", + "git_revision": "v6.0", + "target": "esp32", + "rev": "0", + "min_rev": "0", + "max_rev": "399", + "phy_data_partition": "", + "monitor_baud" : "115200", + "monitor_toolprefix": "xtensa-esp32-elf-", + "c_compiler": "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc.exe", + "config_environment" : { + "COMPONENT_KCONFIGS" : "C:/esp/v6.0/esp-idf/components/efuse/Kconfig;C:/esp/v6.0/esp-idf/components/esp_common/Kconfig;C:/esp/v6.0/esp-idf/components/esp_hw_support/Kconfig;C:/esp/v6.0/esp-idf/components/esp_libc/Kconfig;C:/esp/v6.0/esp-idf/components/esp_rom/Kconfig;C:/esp/v6.0/esp-idf/components/esp_security/Kconfig;C:/esp/v6.0/esp-idf/components/esp_stdio/Kconfig;C:/esp/v6.0/esp-idf/components/esp_system/Kconfig;C:/esp/v6.0/esp-idf/components/freertos/Kconfig;C:/esp/v6.0/esp-idf/components/hal/Kconfig;C:/esp/v6.0/esp-idf/components/log/Kconfig;C:/esp/v6.0/esp-idf/components/soc/Kconfig;C:/esp/v6.0/esp-idf/components/spi_flash/Kconfig", + "COMPONENT_KCONFIGS_PROJBUILD" : "C:/esp/v6.0/esp-idf/components/bootloader/Kconfig.projbuild;C:/esp/v6.0/esp-idf/components/esp_app_format/Kconfig.projbuild;C:/esp/v6.0/esp-idf/components/esp_rom/Kconfig.projbuild;C:/esp/v6.0/esp-idf/components/esptool_py/Kconfig.projbuild;C:/esp/v6.0/esp-idf/components/partition_table/Kconfig.projbuild" + }, + "common_component_reqs": [ "log", "esp_rom", "esp_common", "esp_hw_support", "esp_libc", "xtensa" ], + "build_components" : [ "bootloader", "bootloader_support", "efuse", "esp_app_format", "esp_blockdev", "esp_bootloader_format", "esp_common", "esp_hal_ana_conv", "esp_hal_clock", "esp_hal_dma", "esp_hal_gpio", "esp_hal_gpspi", "esp_hal_i2s", "esp_hal_mspi", "esp_hal_pmu", "esp_hal_rtc_timer", "esp_hal_security", "esp_hal_timg", "esp_hal_uart", "esp_hal_usb", "esp_hal_wdt", "esp_hw_support", "esp_libc", "esp_rom", "esp_security", "esp_stdio", "esp_system", "esptool_py", "freertos", "hal", "log", "main", "micro-ecc", "partition_table", "soc", "spi_flash", "xtensa", "" ], + "build_component_paths" : [ "C:/esp/v6.0/esp-idf/components/bootloader", "C:/esp/v6.0/esp-idf/components/bootloader_support", "C:/esp/v6.0/esp-idf/components/efuse", "C:/esp/v6.0/esp-idf/components/esp_app_format", "C:/esp/v6.0/esp-idf/components/esp_blockdev", "C:/esp/v6.0/esp-idf/components/esp_bootloader_format", "C:/esp/v6.0/esp-idf/components/esp_common", "C:/esp/v6.0/esp-idf/components/esp_hal_ana_conv", "C:/esp/v6.0/esp-idf/components/esp_hal_clock", "C:/esp/v6.0/esp-idf/components/esp_hal_dma", "C:/esp/v6.0/esp-idf/components/esp_hal_gpio", "C:/esp/v6.0/esp-idf/components/esp_hal_gpspi", "C:/esp/v6.0/esp-idf/components/esp_hal_i2s", "C:/esp/v6.0/esp-idf/components/esp_hal_mspi", "C:/esp/v6.0/esp-idf/components/esp_hal_pmu", "C:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer", "C:/esp/v6.0/esp-idf/components/esp_hal_security", "C:/esp/v6.0/esp-idf/components/esp_hal_timg", "C:/esp/v6.0/esp-idf/components/esp_hal_uart", "C:/esp/v6.0/esp-idf/components/esp_hal_usb", "C:/esp/v6.0/esp-idf/components/esp_hal_wdt", "C:/esp/v6.0/esp-idf/components/esp_hw_support", "C:/esp/v6.0/esp-idf/components/esp_libc", "C:/esp/v6.0/esp-idf/components/esp_rom", "C:/esp/v6.0/esp-idf/components/esp_security", "C:/esp/v6.0/esp-idf/components/esp_stdio", "C:/esp/v6.0/esp-idf/components/esp_system", "C:/esp/v6.0/esp-idf/components/esptool_py", "C:/esp/v6.0/esp-idf/components/freertos", "C:/esp/v6.0/esp-idf/components/hal", "C:/esp/v6.0/esp-idf/components/log", "C:/esp/v6.0/esp-idf/components/bootloader/subproject/main", "C:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc", "C:/esp/v6.0/esp-idf/components/partition_table", "C:/esp/v6.0/esp-idf/components/soc", "C:/esp/v6.0/esp-idf/components/spi_flash", "C:/esp/v6.0/esp-idf/components/xtensa", "" ], + "build_component_info" : { + "bootloader": { + "alias": "idf::bootloader", + "target": "___idf_bootloader", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/bootloader", + "type": "CONFIG_ONLY", + "lib": "__idf_bootloader", + "reqs": [], + "priv_reqs": [ "partition_table", "esptool_py" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [] + }, + "bootloader_support": { + "alias": "idf::bootloader_support", + "target": "___idf_bootloader_support", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/bootloader_support", + "type": "LIBRARY", + "lib": "__idf_bootloader_support", + "reqs": [ "soc" ], + "priv_reqs": [ "micro-ecc", "spi_flash", "efuse", "esp_bootloader_format", "esp_app_format", "esptool_py", "esp_hal_wdt", "esp_hal_gpio", "esp_hal_uart", "esp_hal_ana_conv", "esp_hal_rtc_timer", "esp_hal_security", "esp_hal_clock", "esp_security" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/bootloader_support/libbootloader_support.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/bootloader_support/src/bootloader_common.c", "C:/esp/v6.0/esp-idf/components/bootloader_support/src/bootloader_common_loader.c", "C:/esp/v6.0/esp-idf/components/bootloader_support/src/bootloader_clock_init.c", "C:/esp/v6.0/esp-idf/components/bootloader_support/src/bootloader_mem.c", "C:/esp/v6.0/esp-idf/components/bootloader_support/src/bootloader_random.c", "C:/esp/v6.0/esp-idf/components/bootloader_support/src/bootloader_efuse.c", "C:/esp/v6.0/esp-idf/components/bootloader_support/src/flash_encrypt.c", "C:/esp/v6.0/esp-idf/components/bootloader_support/src/secure_boot.c", "C:/esp/v6.0/esp-idf/components/bootloader_support/src/bootloader_random_esp32.c", "C:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash.c", "C:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c", "C:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32.c", "C:/esp/v6.0/esp-idf/components/bootloader_support/src/bootloader_utility.c", "C:/esp/v6.0/esp-idf/components/bootloader_support/src/flash_partitions.c", "C:/esp/v6.0/esp-idf/components/bootloader_support/src/esp_image_format.c", "C:/esp/v6.0/esp-idf/components/bootloader_support/src/bootloader_sha.c", "C:/esp/v6.0/esp-idf/components/bootloader_support/src/bootloader_init.c", "C:/esp/v6.0/esp-idf/components/bootloader_support/src/bootloader_clock_loader.c", "C:/esp/v6.0/esp-idf/components/bootloader_support/src/bootloader_console.c", "C:/esp/v6.0/esp-idf/components/bootloader_support/src/bootloader_console_loader.c", "C:/esp/v6.0/esp-idf/components/bootloader_support/src/esp32/bootloader_soc.c", "C:/esp/v6.0/esp-idf/components/bootloader_support/src/esp32/bootloader_esp32.c", "C:/esp/v6.0/esp-idf/components/bootloader_support/src/bootloader_panic.c" ], + "include_dirs": [ "include", "bootloader_flash/include", "private_include" ] + }, + "efuse": { + "alias": "idf::efuse", + "target": "___idf_efuse", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/efuse", + "type": "LIBRARY", + "lib": "__idf_efuse", + "reqs": [], + "priv_reqs": [ "bootloader_support", "soc", "spi_flash", "esp_hal_security" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/efuse/libefuse.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/efuse/esp32/esp_efuse_table.c", "C:/esp/v6.0/esp-idf/components/efuse/esp32/esp_efuse_fields.c", "C:/esp/v6.0/esp-idf/components/efuse/esp32/esp_efuse_utility.c", "C:/esp/v6.0/esp-idf/components/efuse/src/esp_efuse_api.c", "C:/esp/v6.0/esp-idf/components/efuse/src/esp_efuse_fields.c", "C:/esp/v6.0/esp-idf/components/efuse/src/esp_efuse_utility.c", "C:/esp/v6.0/esp-idf/components/efuse/src/efuse_controller/keys/without_key_purposes/three_key_blocks/esp_efuse_api_key.c" ], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_app_format": { + "alias": "idf::esp_app_format", + "target": "___idf_esp_app_format", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_app_format", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_app_format", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include" ] + }, + "esp_blockdev": { + "alias": "idf::esp_blockdev", + "target": "___idf_esp_blockdev", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_blockdev", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_blockdev", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include" ] + }, + "esp_bootloader_format": { + "alias": "idf::esp_bootloader_format", + "target": "___idf_esp_bootloader_format", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_bootloader_format", + "type": "LIBRARY", + "lib": "__idf_esp_bootloader_format", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_bootloader_format/libesp_bootloader_format.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_bootloader_format/esp_bootloader_desc.c" ], + "include_dirs": [ "include" ] + }, + "esp_common": { + "alias": "idf::esp_common", + "target": "___idf_esp_common", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_common", + "type": "LIBRARY", + "lib": "__idf_esp_common", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_common/libesp_common.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_common/src/esp_err_to_name.c" ], + "include_dirs": [ "include" ] + }, + "esp_hal_ana_conv": { + "alias": "idf::esp_hal_ana_conv", + "target": "___idf_esp_hal_ana_conv", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_ana_conv", + "type": "LIBRARY", + "lib": "__idf_esp_hal_ana_conv", + "reqs": [ "soc", "hal", "esp_hal_dma", "esp_hal_i2s" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/adc_periph.c", "C:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/adc_hal_common.c", "C:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/adc_oneshot_hal.c", "C:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/adc_hal.c", "C:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/dac_periph.c" ], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_clock": { + "alias": "idf::esp_hal_clock", + "target": "___idf_esp_hal_clock", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_clock", + "type": "LIBRARY", + "lib": "__idf_esp_hal_clock", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_clock/libesp_hal_clock.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/clk_tree_hal.c" ], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_dma": { + "alias": "idf::esp_hal_dma", + "target": "___idf_esp_hal_dma", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_dma", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_hal_dma", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include" ] + }, + "esp_hal_gpio": { + "alias": "idf::esp_hal_gpio", + "target": "___idf_esp_hal_gpio", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_gpio", + "type": "LIBRARY", + "lib": "__idf_esp_hal_gpio", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_gpio/libesp_hal_gpio.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_hal_gpio/gpio_hal.c", "C:/esp/v6.0/esp-idf/components/esp_hal_gpio/rtc_io_hal.c", "C:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/rtc_io_periph.c", "C:/esp/v6.0/esp-idf/components/esp_hal_gpio/sdm_hal.c", "C:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/sdm_periph.c" ], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_gpspi": { + "alias": "idf::esp_hal_gpspi", + "target": "___idf_esp_hal_gpspi", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_gpspi", + "type": "LIBRARY", + "lib": "__idf_esp_hal_gpspi", + "reqs": [ "soc", "hal", "esp_hal_dma" ], + "priv_reqs": [ "esp_hal_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/spi_periph.c", "C:/esp/v6.0/esp-idf/components/esp_hal_gpspi/spi_hal.c", "C:/esp/v6.0/esp-idf/components/esp_hal_gpspi/spi_hal_iram.c", "C:/esp/v6.0/esp-idf/components/esp_hal_gpspi/spi_slave_hal.c", "C:/esp/v6.0/esp-idf/components/esp_hal_gpspi/spi_slave_hal_iram.c" ], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_i2s": { + "alias": "idf::esp_hal_i2s", + "target": "___idf_esp_hal_i2s", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_i2s", + "type": "LIBRARY", + "lib": "__idf_esp_hal_i2s", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_i2s/libesp_hal_i2s.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_hal_i2s/i2s_hal.c", "C:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/i2s_periph.c" ], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_mspi": { + "alias": "idf::esp_hal_mspi", + "target": "___idf_esp_hal_mspi", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_mspi", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_hal_mspi", + "reqs": [ "soc", "hal", "esp_hal_gpspi", "esp_hal_clock" ], + "priv_reqs": [ "esp_hal_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_pmu": { + "alias": "idf::esp_hal_pmu", + "target": "___idf_esp_hal_pmu", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_pmu", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_hal_pmu", + "reqs": [ "soc", "hal", "esp_rom" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_rtc_timer": { + "alias": "idf::esp_hal_rtc_timer", + "target": "___idf_esp_hal_rtc_timer", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_hal_rtc_timer", + "reqs": [ "soc", "hal", "esp_rom" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_security": { + "alias": "idf::esp_hal_security", + "target": "___idf_esp_hal_security", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_security", + "type": "LIBRARY", + "lib": "__idf_esp_hal_security", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_security/libesp_hal_security.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_hal_security/mpu_hal.c" ], + "include_dirs": [ "esp32/include", "include" ] + }, + "esp_hal_timg": { + "alias": "idf::esp_hal_timg", + "target": "___idf_esp_hal_timg", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_timg", + "type": "LIBRARY", + "lib": "__idf_esp_hal_timg", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_timg/libesp_hal_timg.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_hal_timg/timer_hal.c", "C:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/timer_periph.c" ], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_uart": { + "alias": "idf::esp_hal_uart", + "target": "___idf_esp_hal_uart", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_uart", + "type": "LIBRARY", + "lib": "__idf_esp_hal_uart", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_uart/libesp_hal_uart.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_hal_uart/uart_hal.c", "C:/esp/v6.0/esp-idf/components/esp_hal_uart/uart_hal_iram.c", "C:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/uart_periph.c" ], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_usb": { + "alias": "idf::esp_hal_usb", + "target": "___idf_esp_hal_usb", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_usb", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_hal_usb", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include" ] + }, + "esp_hal_wdt": { + "alias": "idf::esp_hal_wdt", + "target": "___idf_esp_hal_wdt", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_wdt", + "type": "LIBRARY", + "lib": "__idf_esp_hal_wdt", + "reqs": [ "soc", "hal", "esp_rom", "esp_hal_timg" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hal_wdt/libesp_hal_wdt.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/mwdt_periph.c", "C:/esp/v6.0/esp-idf/components/esp_hal_wdt/wdt_hal_iram.c" ], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hw_support": { + "alias": "idf::esp_hw_support", + "target": "___idf_esp_hw_support", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hw_support", + "type": "LIBRARY", + "lib": "__idf_esp_hw_support", + "reqs": [ "esp_hal_gpio", "esp_hal_usb", "esp_hal_pmu" ], + "priv_reqs": [ "efuse", "spi_flash", "bootloader_support", "esp_hal_wdt", "esp_hal_security", "esp_hal_rtc_timer", "esp_hal_clock", "esp_system" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_hw_support/libesp_hw_support.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_hw_support/cpu.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/esp_cpu_intr.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/esp_memory_utils.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/cpu_region_protect.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/rtc_clk.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/rtc_clk_init.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/rtc_init.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/rtc_sleep.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/rtc_time.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/chip_info.c" ], + "include_dirs": [ "include", "include/soc", "ldo/include", "debug_probe/include", "etm/include", "mspi_timing_tuning/include", "mspi_timing_tuning/tuning_scheme_impl/include", "power_supply/include", "modem/include" ] + }, + "esp_libc": { + "alias": "idf::esp_libc", + "target": "___idf_esp_libc", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_libc", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_libc", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "platform_include" ] + }, + "esp_rom": { + "alias": "idf::esp_rom", + "target": "___idf_esp_rom", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_rom", + "type": "LIBRARY", + "lib": "__idf_esp_rom", + "reqs": [], + "priv_reqs": [ "soc", "hal", "esp_hal_uart" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_rom/libesp_rom.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_rom/patches/esp_rom_sys.c", "C:/esp/v6.0/esp-idf/components/esp_rom/patches/esp_rom_print.c", "C:/esp/v6.0/esp-idf/components/esp_rom/patches/esp_rom_crc.c", "C:/esp/v6.0/esp-idf/components/esp_rom/patches/esp_rom_serial_output.c", "C:/esp/v6.0/esp-idf/components/esp_rom/patches/esp_rom_spiflash.c", "C:/esp/v6.0/esp-idf/components/esp_rom/patches/esp_rom_efuse.c", "C:/esp/v6.0/esp-idf/components/esp_rom/patches/esp_rom_gpio.c", "C:/esp/v6.0/esp-idf/components/esp_rom/patches/esp_rom_longjmp.S" ], + "include_dirs": [ "include", "esp32/include", "esp32/include/esp32", "esp32" ] + }, + "esp_security": { + "alias": "idf::esp_security", + "target": "___idf_esp_security", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_security", + "type": "LIBRARY", + "lib": "__idf_esp_security", + "reqs": [ "esp_hal_security" ], + "priv_reqs": [ "esp_hw_support", "hal", "efuse" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_security/libesp_security.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_security/src/esp_crypto_lock.c", "C:/esp/v6.0/esp-idf/components/esp_security/src/esp_crypto_periph_clk.c" ], + "include_dirs": [ "include" ] + }, + "esp_stdio": { + "alias": "idf::esp_stdio", + "target": "___idf_esp_stdio", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_stdio", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_stdio", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [] + }, + "esp_system": { + "alias": "idf::esp_system", + "target": "___idf_esp_system", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_system", + "type": "LIBRARY", + "lib": "__idf_esp_system", + "reqs": [ "spi_flash" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/esp_system/libesp_system.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_system/esp_err.c" ], + "include_dirs": [ "include" ] + }, + "esptool_py": { + "alias": "idf::esptool_py", + "target": "___idf_esptool_py", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esptool_py", + "type": "CONFIG_ONLY", + "lib": "__idf_esptool_py", + "reqs": [ "bootloader" ], + "priv_reqs": [ "partition_table" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [] + }, + "freertos": { + "alias": "idf::freertos", + "target": "___idf_freertos", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/freertos", + "type": "CONFIG_ONLY", + "lib": "__idf_freertos", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [] + }, + "hal": { + "alias": "idf::hal", + "target": "___idf_hal", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/hal", + "type": "LIBRARY", + "lib": "__idf_hal", + "reqs": [], + "priv_reqs": [ "esp_hal_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/hal/libhal.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/hal/hal_utils.c", "C:/esp/v6.0/esp-idf/components/hal/efuse_hal.c", "C:/esp/v6.0/esp-idf/components/hal/esp32/efuse_hal.c", "C:/esp/v6.0/esp-idf/components/hal/mmu_hal.c", "C:/esp/v6.0/esp-idf/components/hal/esp32/cache_hal_esp32.c" ], + "include_dirs": [ "platform_port/include", "esp32/include", "include" ] + }, + "log": { + "alias": "idf::log", + "target": "___idf_log", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/log", + "type": "LIBRARY", + "lib": "__idf_log", + "reqs": [], + "priv_reqs": [ "hal" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/log/liblog.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/log/src/noos/log_timestamp.c", "C:/esp/v6.0/esp-idf/components/log/src/log_timestamp_common.c", "C:/esp/v6.0/esp-idf/components/log/src/noos/log_lock.c", "C:/esp/v6.0/esp-idf/components/log/src/buffer/log_buffers.c", "C:/esp/v6.0/esp-idf/components/log/src/noos/util.c", "C:/esp/v6.0/esp-idf/components/log/src/util.c", "C:/esp/v6.0/esp-idf/components/log/src/log_format_text.c", "C:/esp/v6.0/esp-idf/components/log/src/log_print.c", "C:/esp/v6.0/esp-idf/components/log/src/log.c" ], + "include_dirs": [ "include" ] + }, + "main": { + "alias": "idf::main", + "target": "___idf_main", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/bootloader/subproject/main", + "type": "LIBRARY", + "lib": "__idf_main", + "reqs": [ "bootloader", "bootloader_support" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/main/libmain.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/bootloader/subproject/main/bootloader_start.c" ], + "include_dirs": [] + }, + "micro-ecc": { + "alias": "idf::micro-ecc", + "target": "___idf_micro-ecc", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc", + "type": "LIBRARY", + "lib": "__idf_micro-ecc", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/micro-ecc/libmicro-ecc.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/uECC_verify_antifault.c" ], + "include_dirs": [ ".", "micro-ecc" ] + }, + "partition_table": { + "alias": "idf::partition_table", + "target": "___idf_partition_table", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/partition_table", + "type": "CONFIG_ONLY", + "lib": "__idf_partition_table", + "reqs": [], + "priv_reqs": [ "esptool_py" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [] + }, + "soc": { + "alias": "idf::soc", + "target": "___idf_soc", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/soc", + "type": "LIBRARY", + "lib": "__idf_soc", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/soc/libsoc.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/soc/lldesc.c", "C:/esp/v6.0/esp-idf/components/soc/dport_access_common.c", "C:/esp/v6.0/esp-idf/components/soc/esp32/interrupts.c", "C:/esp/v6.0/esp-idf/components/soc/esp32/gpio_periph.c", "C:/esp/v6.0/esp-idf/components/soc/esp32/dport_access.c", "C:/esp/v6.0/esp-idf/components/soc/esp32/emac_periph.c", "C:/esp/v6.0/esp-idf/components/soc/esp32/mpi_periph.c", "C:/esp/v6.0/esp-idf/components/soc/esp32/sdmmc_periph.c", "C:/esp/v6.0/esp-idf/components/soc/esp32/sdio_slave_periph.c", "C:/esp/v6.0/esp-idf/components/soc/esp32/power_supply_periph.c" ], + "include_dirs": [ "include", "esp32", "esp32/include", "esp32/register" ] + }, + "spi_flash": { + "alias": "idf::spi_flash", + "target": "___idf_spi_flash", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/spi_flash", + "type": "LIBRARY", + "lib": "__idf_spi_flash", + "reqs": [ "hal", "esp_hal_mspi", "esp_blockdev" ], + "priv_reqs": [ "bootloader_support", "soc", "esp_hal_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/spi_flash/libspi_flash.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/spi_flash/spi_flash_wrap.c" ], + "include_dirs": [ "include" ] + }, + "xtensa": { + "alias": "idf::xtensa", + "target": "___idf_xtensa", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/xtensa", + "type": "LIBRARY", + "lib": "__idf_xtensa", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/esp-idf/xtensa/libxtensa.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/xtensa/eri.c", "C:/esp/v6.0/esp-idf/components/xtensa/xt_trax.c" ], + "include_dirs": [ "esp32/include", "include", "deprecated_include" ] + } + }, + "all_component_info" : { + "app_trace": { + "alias": "idf::app_trace", + "target": "___idf_app_trace", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/app_trace", + "source": "idf_components", + "lib": "__idf_app_trace", + "reqs": [ "esp_timer", "esp_driver_uart" ], + "priv_reqs": [ "esp_driver_gptimer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "app_update": { + "alias": "idf::app_update", + "target": "___idf_app_update", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/app_update", + "source": "idf_components", + "lib": "__idf_app_update", + "reqs": [ "partition_table", "bootloader_support", "esp_app_format", "esp_bootloader_format", "esp_partition" ], + "priv_reqs": [ "esptool_py", "efuse", "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "bootloader": { + "alias": "idf::bootloader", + "target": "___idf_bootloader", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/bootloader", + "source": "project_extra_components", + "lib": "__idf_bootloader", + "reqs": [], + "priv_reqs": [ "partition_table", "esptool_py" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "bootloader_support": { + "alias": "idf::bootloader_support", + "target": "___idf_bootloader_support", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/bootloader_support", + "source": "idf_components", + "lib": "__idf_bootloader_support", + "reqs": [ "soc" ], + "priv_reqs": [ "micro-ecc", "spi_flash", "efuse", "esp_bootloader_format", "esp_app_format", "esptool_py", "esp_hal_wdt", "esp_hal_gpio", "esp_hal_uart", "esp_hal_ana_conv", "esp_hal_rtc_timer", "esp_hal_security", "esp_hal_clock", "esp_security" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "bootloader_flash/include", "private_include" ] + }, + "bt": { + "alias": "idf::bt", + "target": "___idf_bt", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/bt", + "source": "idf_components", + "lib": "__idf_bt", + "reqs": [ "esp_timer", "esp_wifi" ], + "priv_reqs": [ "nvs_flash", "soc", "esp_pm", "esp_phy", "esp_coex", "mbedtls", "esp_driver_uart", "vfs", "esp_ringbuf", "esp_driver_spi", "esp_driver_gpio", "esp_gdbstub", "esp_security" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "cmock": { + "alias": "idf::cmock", + "target": "___idf_cmock", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/cmock", + "source": "idf_components", + "lib": "__idf_cmock", + "reqs": [ "unity" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "CMock/src" ] + }, + "console": { + "alias": "idf::console", + "target": "___idf_console", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/console", + "source": "idf_components", + "lib": "__idf_console", + "reqs": [ "vfs", "esp_stdio" ], + "priv_reqs": [ "esp_driver_uart", "esp_driver_usb_serial_jtag", "esp_usb_cdc_rom_console" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader" ] + }, + "cxx": { + "alias": "idf::cxx", + "target": "___idf_cxx", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/cxx", + "source": "idf_components", + "lib": "__idf_cxx", + "reqs": [], + "priv_reqs": [ "esp_system", "pthread" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "driver": { + "alias": "idf::driver", + "target": "___idf_driver", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/driver", + "source": "idf_components", + "lib": "__idf_driver", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "efuse": { + "alias": "idf::efuse", + "target": "___idf_efuse", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/efuse", + "source": "idf_components", + "lib": "__idf_efuse", + "reqs": [], + "priv_reqs": [ "bootloader_support", "soc", "spi_flash", "esp_hal_security" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp-tls": { + "alias": "idf::esp-tls", + "target": "___idf_esp-tls", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp-tls", + "source": "idf_components", + "lib": "__idf_esp-tls", + "reqs": [ "mbedtls" ], + "priv_reqs": [ "http_parser", "esp_timer", "lwip" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader", "esp-tls-crypto" ] + }, + "esp_adc": { + "alias": "idf::esp_adc", + "target": "___idf_esp_adc", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_adc", + "source": "idf_components", + "lib": "__idf_esp_adc", + "reqs": [ "esp_hal_ana_conv" ], + "priv_reqs": [ "esp_driver_gpio", "esp_driver_dma", "efuse", "esp_pm", "esp_ringbuf", "esp_mm", "esp_driver_i2s" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "interface", "esp32/include" ] + }, + "esp_app_format": { + "alias": "idf::esp_app_format", + "target": "___idf_esp_app_format", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_app_format", + "source": "idf_components", + "lib": "__idf_esp_app_format", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_blockdev": { + "alias": "idf::esp_blockdev", + "target": "___idf_esp_blockdev", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_blockdev", + "source": "idf_components", + "lib": "__idf_esp_blockdev", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_bootloader_format": { + "alias": "idf::esp_bootloader_format", + "target": "___idf_esp_bootloader_format", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_bootloader_format", + "source": "idf_components", + "lib": "__idf_esp_bootloader_format", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_coex": { + "alias": "idf::esp_coex", + "target": "___idf_esp_coex", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_coex", + "source": "idf_components", + "lib": "__idf_esp_coex", + "reqs": [], + "priv_reqs": [ "esp_timer", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_common": { + "alias": "idf::esp_common", + "target": "___idf_esp_common", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_common", + "source": "idf_components", + "lib": "__idf_esp_common", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_ana_cmpr": { + "alias": "idf::esp_driver_ana_cmpr", + "target": "___idf_esp_driver_ana_cmpr", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_ana_cmpr", + "source": "idf_components", + "lib": "__idf_esp_driver_ana_cmpr", + "reqs": [ "esp_hal_ana_cmpr" ], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_bitscrambler": { + "alias": "idf::esp_driver_bitscrambler", + "target": "___idf_esp_driver_bitscrambler", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_bitscrambler", + "source": "idf_components", + "lib": "__idf_esp_driver_bitscrambler", + "reqs": [ "esp_hal_dma" ], + "priv_reqs": [ "esp_mm", "esp_driver_dma" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_cam": { + "alias": "idf::esp_driver_cam", + "target": "___idf_esp_driver_cam", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_cam", + "source": "idf_components", + "lib": "__idf_esp_driver_cam", + "reqs": [ "esp_driver_isp", "esp_hal_cam", "esp_mm" ], + "priv_reqs": [ "esp_driver_gpio", "esp_driver_dma" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "interface" ] + }, + "esp_driver_dac": { + "alias": "idf::esp_driver_dac", + "target": "___idf_esp_driver_dac", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_dac", + "source": "idf_components", + "lib": "__idf_esp_driver_dac", + "reqs": [ "esp_hal_ana_conv" ], + "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_hal_clock", "esp_driver_i2s" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "./include" ] + }, + "esp_driver_dma": { + "alias": "idf::esp_driver_dma", + "target": "___idf_esp_driver_dma", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_dma", + "source": "idf_components", + "lib": "__idf_esp_driver_dma", + "reqs": [ "esp_hal_dma" ], + "priv_reqs": [ "esp_mm", "bootloader_support" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_gpio": { + "alias": "idf::esp_driver_gpio", + "target": "___idf_esp_driver_gpio", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_gpio", + "source": "idf_components", + "lib": "__idf_esp_driver_gpio", + "reqs": [ "esp_hal_gpio" ], + "priv_reqs": [ "esp_pm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_gptimer": { + "alias": "idf::esp_driver_gptimer", + "target": "___idf_esp_driver_gptimer", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_gptimer", + "source": "idf_components", + "lib": "__idf_esp_driver_gptimer", + "reqs": [ "esp_pm", "esp_hal_timg" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_i2c": { + "alias": "idf::esp_driver_i2c", + "target": "___idf_esp_driver_i2c", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_i2c", + "source": "idf_components", + "lib": "__idf_esp_driver_i2c", + "reqs": [ "esp_hal_i2c" ], + "priv_reqs": [ "esp_driver_gpio", "esp_pm", "esp_ringbuf" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_i2s": { + "alias": "idf::esp_driver_i2s", + "target": "___idf_esp_driver_i2s", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_i2s", + "source": "idf_components", + "lib": "__idf_esp_driver_i2s", + "reqs": [ "esp_hal_i2s" ], + "priv_reqs": [ "esp_driver_gpio", "esp_driver_dma", "esp_pm", "esp_mm", "esp_hal_clock", "esp_hal_ana_conv" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_i3c": { + "alias": "idf::esp_driver_i3c", + "target": "___idf_esp_driver_i3c", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_i3c", + "source": "idf_components", + "lib": "__idf_esp_driver_i3c", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_pm", "esp_mm", "esp_driver_dma" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_isp": { + "alias": "idf::esp_driver_isp", + "target": "___idf_esp_driver_isp", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_isp", + "source": "idf_components", + "lib": "__idf_esp_driver_isp", + "reqs": [ "esp_hal_cam", "esp_mm" ], + "priv_reqs": [ "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_jpeg": { + "alias": "idf::esp_driver_jpeg", + "target": "___idf_esp_driver_jpeg", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_jpeg", + "source": "idf_components", + "lib": "__idf_esp_driver_jpeg", + "reqs": [ "esp_hal_jpeg" ], + "priv_reqs": [ "esp_mm", "esp_pm", "esp_psram", "esp_driver_dma" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_ledc": { + "alias": "idf::esp_driver_ledc", + "target": "___idf_esp_driver_ledc", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_ledc", + "source": "idf_components", + "lib": "__idf_esp_driver_ledc", + "reqs": [ "esp_hal_ledc" ], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_mcpwm": { + "alias": "idf::esp_driver_mcpwm", + "target": "___idf_esp_driver_mcpwm", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_mcpwm", + "source": "idf_components", + "lib": "__idf_esp_driver_mcpwm", + "reqs": [ "esp_hal_mcpwm" ], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_parlio": { + "alias": "idf::esp_driver_parlio", + "target": "___idf_esp_driver_parlio", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_parlio", + "source": "idf_components", + "lib": "__idf_esp_driver_parlio", + "reqs": [ "esp_hal_parlio" ], + "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_mm", "esp_driver_bitscrambler", "esp_driver_dma" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_pcnt": { + "alias": "idf::esp_driver_pcnt", + "target": "___idf_esp_driver_pcnt", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_pcnt", + "source": "idf_components", + "lib": "__idf_esp_driver_pcnt", + "reqs": [ "esp_hal_pcnt" ], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_ppa": { + "alias": "idf::esp_driver_ppa", + "target": "___idf_esp_driver_ppa", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_ppa", + "source": "idf_components", + "lib": "__idf_esp_driver_ppa", + "reqs": [ "esp_hal_ppa" ], + "priv_reqs": [ "esp_mm", "esp_pm", "esp_driver_dma" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_rmt": { + "alias": "idf::esp_driver_rmt", + "target": "___idf_esp_driver_rmt", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_rmt", + "source": "idf_components", + "lib": "__idf_esp_driver_rmt", + "reqs": [ "esp_hal_rmt" ], + "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_driver_bitscrambler", "esp_mm", "esp_driver_dma" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_sd_intf": { + "alias": "idf::esp_driver_sd_intf", + "target": "___idf_esp_driver_sd_intf", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_sd_intf", + "source": "idf_components", + "lib": "__idf_esp_driver_sd_intf", + "reqs": [], + "priv_reqs": [ "sdmmc" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_sdio": { + "alias": "idf::esp_driver_sdio", + "target": "___idf_esp_driver_sdio", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_sdio", + "source": "idf_components", + "lib": "__idf_esp_driver_sdio", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_ringbuf" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_sdm": { + "alias": "idf::esp_driver_sdm", + "target": "___idf_esp_driver_sdm", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_sdm", + "source": "idf_components", + "lib": "__idf_esp_driver_sdm", + "reqs": [ "esp_hal_gpio" ], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_sdmmc": { + "alias": "idf::esp_driver_sdmmc", + "target": "___idf_esp_driver_sdmmc", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_sdmmc", + "source": "idf_components", + "lib": "__idf_esp_driver_sdmmc", + "reqs": [ "esp_driver_sd_intf", "sdmmc" ], + "priv_reqs": [ "esp_timer", "esp_pm", "esp_mm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "legacy/include" ] + }, + "esp_driver_sdspi": { + "alias": "idf::esp_driver_sdspi", + "target": "___idf_esp_driver_sdspi", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_sdspi", + "source": "idf_components", + "lib": "__idf_esp_driver_sdspi", + "reqs": [ "sdmmc", "esp_driver_spi", "esp_driver_gpio" ], + "priv_reqs": [ "esp_timer", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_spi": { + "alias": "idf::esp_driver_spi", + "target": "___idf_esp_driver_spi", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_spi", + "source": "idf_components", + "lib": "__idf_esp_driver_spi", + "reqs": [ "esp_pm", "esp_hal_gpspi", "esp_driver_dma" ], + "priv_reqs": [ "esp_timer", "esp_mm", "esp_driver_gpio", "spi_flash", "esp_psram" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_touch_sens": { + "alias": "idf::esp_driver_touch_sens", + "target": "___idf_esp_driver_touch_sens", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_touch_sens", + "source": "idf_components", + "lib": "__idf_esp_driver_touch_sens", + "reqs": [ "esp_hal_touch_sens" ], + "priv_reqs": [ "esp_driver_gpio", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "esp_driver_tsens": { + "alias": "idf::esp_driver_tsens", + "target": "___idf_esp_driver_tsens", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_tsens", + "source": "idf_components", + "lib": "__idf_esp_driver_tsens", + "reqs": [ "esp_hal_ana_conv" ], + "priv_reqs": [ "efuse" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_twai": { + "alias": "idf::esp_driver_twai", + "target": "___idf_esp_driver_twai", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_twai", + "source": "idf_components", + "lib": "__idf_esp_driver_twai", + "reqs": [ "esp_hal_twai" ], + "priv_reqs": [ "esp_driver_gpio", "esp_pm", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_uart": { + "alias": "idf::esp_driver_uart", + "target": "___idf_esp_driver_uart", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_uart", + "source": "idf_components", + "lib": "__idf_esp_driver_uart", + "reqs": [ "esp_hal_uart" ], + "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_driver_dma", "esp_ringbuf", "esp_mm", "esp_psram" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_usb_serial_jtag": { + "alias": "idf::esp_driver_usb_serial_jtag", + "target": "___idf_esp_driver_usb_serial_jtag", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag", + "source": "idf_components", + "lib": "__idf_esp_driver_usb_serial_jtag", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_ringbuf", "esp_pm", "esp_timer", "esp_hal_usb" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_eth": { + "alias": "idf::esp_eth", + "target": "___idf_esp_eth", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_eth", + "source": "idf_components", + "lib": "__idf_esp_eth", + "reqs": [ "esp_event" ], + "priv_reqs": [ "log", "esp_timer", "esp_driver_spi", "esp_driver_gpio", "esp_hal_clock" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "esp_event": { + "alias": "idf::esp_event", + "target": "___idf_esp_event", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_event", + "source": "idf_components", + "lib": "__idf_esp_event", + "reqs": [ "log", "esp_common", "freertos" ], + "priv_reqs": [ "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_gdbstub": { + "alias": "idf::esp_gdbstub", + "target": "___idf_esp_gdbstub", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_gdbstub", + "source": "idf_components", + "lib": "__idf_esp_gdbstub", + "reqs": [ "freertos" ], + "priv_reqs": [ "esp_hal_wdt", "esp_hal_uart" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_hal_ana_cmpr": { + "alias": "idf::esp_hal_ana_cmpr", + "target": "___idf_esp_hal_ana_cmpr", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_ana_cmpr", + "source": "idf_components", + "lib": "__idf_esp_hal_ana_cmpr", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_hal_ana_conv": { + "alias": "idf::esp_hal_ana_conv", + "target": "___idf_esp_hal_ana_conv", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_ana_conv", + "source": "idf_components", + "lib": "__idf_esp_hal_ana_conv", + "reqs": [ "soc", "hal", "esp_hal_dma", "esp_hal_i2s" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_cam": { + "alias": "idf::esp_hal_cam", + "target": "___idf_esp_hal_cam", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_cam", + "source": "idf_components", + "lib": "__idf_esp_hal_cam", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_hal_clock": { + "alias": "idf::esp_hal_clock", + "target": "___idf_esp_hal_clock", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_clock", + "source": "idf_components", + "lib": "__idf_esp_hal_clock", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_dma": { + "alias": "idf::esp_hal_dma", + "target": "___idf_esp_hal_dma", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_dma", + "source": "idf_components", + "lib": "__idf_esp_hal_dma", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_hal_gpio": { + "alias": "idf::esp_hal_gpio", + "target": "___idf_esp_hal_gpio", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_gpio", + "source": "idf_components", + "lib": "__idf_esp_hal_gpio", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_gpspi": { + "alias": "idf::esp_hal_gpspi", + "target": "___idf_esp_hal_gpspi", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_gpspi", + "source": "idf_components", + "lib": "__idf_esp_hal_gpspi", + "reqs": [ "soc", "hal", "esp_hal_dma" ], + "priv_reqs": [ "esp_hal_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_i2c": { + "alias": "idf::esp_hal_i2c", + "target": "___idf_esp_hal_i2c", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_i2c", + "source": "idf_components", + "lib": "__idf_esp_hal_i2c", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "esp32/include", "include" ] + }, + "esp_hal_i2s": { + "alias": "idf::esp_hal_i2s", + "target": "___idf_esp_hal_i2s", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_i2s", + "source": "idf_components", + "lib": "__idf_esp_hal_i2s", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_ieee802154": { + "alias": "idf::esp_hal_ieee802154", + "target": "___idf_esp_hal_ieee802154", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_ieee802154", + "source": "idf_components", + "lib": "__idf_esp_hal_ieee802154", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_hal_jpeg": { + "alias": "idf::esp_hal_jpeg", + "target": "___idf_esp_hal_jpeg", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_jpeg", + "source": "idf_components", + "lib": "__idf_esp_hal_jpeg", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_hal_lcd": { + "alias": "idf::esp_hal_lcd", + "target": "___idf_esp_hal_lcd", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_lcd", + "source": "idf_components", + "lib": "__idf_esp_hal_lcd", + "reqs": [ "soc", "hal" ], + "priv_reqs": [ "esp_hal_i2s" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_hal_ledc": { + "alias": "idf::esp_hal_ledc", + "target": "___idf_esp_hal_ledc", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_ledc", + "source": "idf_components", + "lib": "__idf_esp_hal_ledc", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_mcpwm": { + "alias": "idf::esp_hal_mcpwm", + "target": "___idf_esp_hal_mcpwm", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_mcpwm", + "source": "idf_components", + "lib": "__idf_esp_hal_mcpwm", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_mspi": { + "alias": "idf::esp_hal_mspi", + "target": "___idf_esp_hal_mspi", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_mspi", + "source": "idf_components", + "lib": "__idf_esp_hal_mspi", + "reqs": [ "soc", "hal", "esp_hal_gpspi", "esp_hal_clock" ], + "priv_reqs": [ "esp_hal_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_parlio": { + "alias": "idf::esp_hal_parlio", + "target": "___idf_esp_hal_parlio", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_parlio", + "source": "idf_components", + "lib": "__idf_esp_hal_parlio", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_hal_pcnt": { + "alias": "idf::esp_hal_pcnt", + "target": "___idf_esp_hal_pcnt", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_pcnt", + "source": "idf_components", + "lib": "__idf_esp_hal_pcnt", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_pmu": { + "alias": "idf::esp_hal_pmu", + "target": "___idf_esp_hal_pmu", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_pmu", + "source": "idf_components", + "lib": "__idf_esp_hal_pmu", + "reqs": [ "soc", "hal", "esp_rom" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_ppa": { + "alias": "idf::esp_hal_ppa", + "target": "___idf_esp_hal_ppa", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_ppa", + "source": "idf_components", + "lib": "__idf_esp_hal_ppa", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_hal_rmt": { + "alias": "idf::esp_hal_rmt", + "target": "___idf_esp_hal_rmt", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_rmt", + "source": "idf_components", + "lib": "__idf_esp_hal_rmt", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_rtc_timer": { + "alias": "idf::esp_hal_rtc_timer", + "target": "___idf_esp_hal_rtc_timer", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer", + "source": "idf_components", + "lib": "__idf_esp_hal_rtc_timer", + "reqs": [ "soc", "hal", "esp_rom" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_security": { + "alias": "idf::esp_hal_security", + "target": "___idf_esp_hal_security", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_security", + "source": "idf_components", + "lib": "__idf_esp_hal_security", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "esp32/include", "include" ] + }, + "esp_hal_timg": { + "alias": "idf::esp_hal_timg", + "target": "___idf_esp_hal_timg", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_timg", + "source": "idf_components", + "lib": "__idf_esp_hal_timg", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_touch_sens": { + "alias": "idf::esp_hal_touch_sens", + "target": "___idf_esp_hal_touch_sens", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_touch_sens", + "source": "idf_components", + "lib": "__idf_esp_hal_touch_sens", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "esp32/include", "include" ] + }, + "esp_hal_twai": { + "alias": "idf::esp_hal_twai", + "target": "___idf_esp_hal_twai", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_twai", + "source": "idf_components", + "lib": "__idf_esp_hal_twai", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_uart": { + "alias": "idf::esp_hal_uart", + "target": "___idf_esp_hal_uart", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_uart", + "source": "idf_components", + "lib": "__idf_esp_hal_uart", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_usb": { + "alias": "idf::esp_hal_usb", + "target": "___idf_esp_hal_usb", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_usb", + "source": "idf_components", + "lib": "__idf_esp_hal_usb", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_hal_wdt": { + "alias": "idf::esp_hal_wdt", + "target": "___idf_esp_hal_wdt", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_wdt", + "source": "idf_components", + "lib": "__idf_esp_hal_wdt", + "reqs": [ "soc", "hal", "esp_rom", "esp_hal_timg" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hid": { + "alias": "idf::esp_hid", + "target": "___idf_esp_hid", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hid", + "source": "idf_components", + "lib": "__idf_esp_hid", + "reqs": [ "esp_event", "bt" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_http_client": { + "alias": "idf::esp_http_client", + "target": "___idf_esp_http_client", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_http_client", + "source": "idf_components", + "lib": "__idf_esp_http_client", + "reqs": [ "lwip", "esp_event" ], + "priv_reqs": [ "tcp_transport", "http_parser" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_http_server": { + "alias": "idf::esp_http_server", + "target": "___idf_esp_http_server", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_http_server", + "source": "idf_components", + "lib": "__idf_esp_http_server", + "reqs": [ "http_parser", "esp_event" ], + "priv_reqs": [ "mbedtls", "lwip", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_https_ota": { + "alias": "idf::esp_https_ota", + "target": "___idf_esp_https_ota", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_https_ota", + "source": "idf_components", + "lib": "__idf_esp_https_ota", + "reqs": [ "esp_http_client", "bootloader_support", "esp_bootloader_format", "esp_app_format", "esp_event", "esp_partition" ], + "priv_reqs": [ "log", "app_update" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_https_server": { + "alias": "idf::esp_https_server", + "target": "___idf_esp_https_server", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_https_server", + "source": "idf_components", + "lib": "__idf_esp_https_server", + "reqs": [ "esp_http_server", "esp-tls", "esp_event" ], + "priv_reqs": [ "lwip" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_hw_support": { + "alias": "idf::esp_hw_support", + "target": "___idf_esp_hw_support", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hw_support", + "source": "idf_components", + "lib": "__idf_esp_hw_support", + "reqs": [ "esp_hal_gpio", "esp_hal_usb", "esp_hal_pmu" ], + "priv_reqs": [ "efuse", "spi_flash", "bootloader_support", "esp_hal_wdt", "esp_hal_security", "esp_hal_rtc_timer", "esp_hal_clock", "esp_system" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "include/soc", "ldo/include", "debug_probe/include", "etm/include", "mspi_timing_tuning/include", "mspi_timing_tuning/tuning_scheme_impl/include", "power_supply/include", "modem/include" ] + }, + "esp_lcd": { + "alias": "idf::esp_lcd", + "target": "___idf_esp_lcd", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_lcd", + "source": "idf_components", + "lib": "__idf_esp_lcd", + "reqs": [ "esp_driver_gpio", "esp_driver_i2c", "esp_driver_spi", "esp_driver_parlio", "esp_hal_lcd" ], + "priv_reqs": [ "esp_mm", "esp_psram", "esp_pm", "esp_driver_i2s", "esp_driver_dma" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "interface" ] + }, + "esp_libc": { + "alias": "idf::esp_libc", + "target": "___idf_esp_libc", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_libc", + "source": "idf_components", + "lib": "__idf_esp_libc", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "platform_include" ] + }, + "esp_local_ctrl": { + "alias": "idf::esp_local_ctrl", + "target": "___idf_esp_local_ctrl", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_local_ctrl", + "source": "idf_components", + "lib": "__idf_esp_local_ctrl", + "reqs": [ "protocomm", "esp_https_server" ], + "priv_reqs": [ "protobuf-c", "esp_netif" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_mm": { + "alias": "idf::esp_mm", + "target": "___idf_esp_mm", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_mm", + "source": "idf_components", + "lib": "__idf_esp_mm", + "reqs": [], + "priv_reqs": [ "heap", "spi_flash", "esp_hal_dma" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_netif": { + "alias": "idf::esp_netif", + "target": "___idf_esp_netif", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_netif", + "source": "idf_components", + "lib": "__idf_esp_netif", + "reqs": [ "esp_event" ], + "priv_reqs": [ "esp_netif_stack" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_netif_stack": { + "alias": "idf::esp_netif_stack", + "target": "___idf_esp_netif_stack", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_netif_stack", + "source": "idf_components", + "lib": "__idf_esp_netif_stack", + "reqs": [ "lwip" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "esp_partition": { + "alias": "idf::esp_partition", + "target": "___idf_esp_partition", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_partition", + "source": "idf_components", + "lib": "__idf_esp_partition", + "reqs": [ "esp_blockdev", "spi_flash" ], + "priv_reqs": [ "bootloader_support" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_phy": { + "alias": "idf::esp_phy", + "target": "___idf_esp_phy", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_phy", + "source": "idf_components", + "lib": "__idf_esp_phy", + "reqs": [], + "priv_reqs": [ "nvs_flash", "esp_driver_gpio", "esp_hal_ana_conv", "efuse", "esp_timer", "esp_wifi", "esptool_py" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_pm": { + "alias": "idf::esp_pm", + "target": "___idf_esp_pm", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_pm", + "source": "idf_components", + "lib": "__idf_esp_pm", + "reqs": [], + "priv_reqs": [ "esp_system", "esp_driver_gpio", "esp_timer", "esp_hal_uart" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_psram": { + "alias": "idf::esp_psram", + "target": "___idf_esp_psram", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_psram", + "source": "idf_components", + "lib": "__idf_esp_psram", + "reqs": [], + "priv_reqs": [ "heap", "spi_flash", "esp_mm", "esp_hal_mspi", "esp_hal_gpio", "bootloader_support", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_ringbuf": { + "alias": "idf::esp_ringbuf", + "target": "___idf_esp_ringbuf", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_ringbuf", + "source": "idf_components", + "lib": "__idf_esp_ringbuf", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_rom": { + "alias": "idf::esp_rom", + "target": "___idf_esp_rom", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_rom", + "source": "idf_components", + "lib": "__idf_esp_rom", + "reqs": [], + "priv_reqs": [ "soc", "hal", "esp_hal_uart" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32/include", "esp32/include/esp32", "esp32" ] + }, + "esp_security": { + "alias": "idf::esp_security", + "target": "___idf_esp_security", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_security", + "source": "idf_components", + "lib": "__idf_esp_security", + "reqs": [ "esp_hal_security" ], + "priv_reqs": [ "esp_hw_support", "hal", "efuse" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_stdio": { + "alias": "idf::esp_stdio", + "target": "___idf_esp_stdio", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_stdio", + "source": "idf_components", + "lib": "__idf_esp_stdio", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "esp_system": { + "alias": "idf::esp_system", + "target": "___idf_esp_system", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_system", + "source": "idf_components", + "lib": "__idf_esp_system", + "reqs": [ "spi_flash" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_tee": { + "alias": "idf::esp_tee", + "target": "___idf_esp_tee", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_tee", + "source": "idf_components", + "lib": "__idf_esp_tee", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_timer": { + "alias": "idf::esp_timer", + "target": "___idf_esp_timer", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_timer", + "source": "idf_components", + "lib": "__idf_esp_timer", + "reqs": [], + "priv_reqs": [ "esp_hal_timg" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_trace": { + "alias": "idf::esp_trace", + "target": "___idf_esp_trace", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_trace", + "source": "idf_components", + "lib": "__idf_esp_trace", + "reqs": [ "app_trace" ], + "priv_reqs": [ "esp_driver_gptimer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_usb_cdc_rom_console": { + "alias": "idf::esp_usb_cdc_rom_console", + "target": "___idf_esp_usb_cdc_rom_console", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console", + "source": "idf_components", + "lib": "__idf_esp_usb_cdc_rom_console", + "reqs": [], + "priv_reqs": [ "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_wifi": { + "alias": "idf::esp_wifi", + "target": "___idf_esp_wifi", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_wifi", + "source": "idf_components", + "lib": "__idf_esp_wifi", + "reqs": [ "esp_event", "esp_phy", "esp_netif" ], + "priv_reqs": [ "esp_pm", "esp_timer", "nvs_flash", "wpa_supplicant", "hal", "lwip", "esp_coex" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "include/local", "wifi_apps/include", "wifi_apps/nan_app/include" ] + }, + "espcoredump": { + "alias": "idf::espcoredump", + "target": "___idf_espcoredump", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/espcoredump", + "source": "idf_components", + "lib": "__idf_espcoredump", + "reqs": [], + "priv_reqs": [ "esp_partition", "spi_flash", "bootloader_support", "mbedtls", "esp_rom", "soc", "esp_system", "esp_driver_gpio", "esp_app_format", "esp_hal_security" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "esptool_py": { + "alias": "idf::esptool_py", + "target": "___idf_esptool_py", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esptool_py", + "source": "idf_components", + "lib": "__idf_esptool_py", + "reqs": [ "bootloader" ], + "priv_reqs": [ "partition_table" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "fatfs": { + "alias": "idf::fatfs", + "target": "___idf_fatfs", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/fatfs", + "source": "idf_components", + "lib": "__idf_fatfs", + "reqs": [ "wear_levelling", "sdmmc", "esp_driver_sdmmc", "esp_driver_sdspi" ], + "priv_reqs": [ "vfs", "esp_driver_gpio", "esptool_py" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "diskio", "src", "vfs" ] + }, + "freertos": { + "alias": "idf::freertos", + "target": "___idf_freertos", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/freertos", + "source": "idf_components", + "lib": "__idf_freertos", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "hal": { + "alias": "idf::hal", + "target": "___idf_hal", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/hal", + "source": "idf_components", + "lib": "__idf_hal", + "reqs": [], + "priv_reqs": [ "esp_hal_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "platform_port/include", "esp32/include", "include" ] + }, + "heap": { + "alias": "idf::heap", + "target": "___idf_heap", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/heap", + "source": "idf_components", + "lib": "__idf_heap", + "reqs": [], + "priv_reqs": [ "soc" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "tlsf" ] + }, + "http_parser": { + "alias": "idf::http_parser", + "target": "___idf_http_parser", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/http_parser", + "source": "idf_components", + "lib": "__idf_http_parser", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "." ] + }, + "idf_test": { + "alias": "idf::idf_test", + "target": "___idf_idf_test", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/idf_test", + "source": "idf_components", + "lib": "__idf_idf_test", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "include/esp32" ] + }, + "ieee802154": { + "alias": "idf::ieee802154", + "target": "___idf_ieee802154", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/ieee802154", + "source": "idf_components", + "lib": "__idf_ieee802154", + "reqs": [ "esp_coex" ], + "priv_reqs": [ "esp_phy", "esp_timer", "soc", "hal", "esp_pm", "esp_hal_ieee802154" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "linux": { + "alias": "idf::linux", + "target": "___idf_linux", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/linux", + "source": "idf_components", + "lib": "__idf_linux", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "log": { + "alias": "idf::log", + "target": "___idf_log", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/log", + "source": "idf_components", + "lib": "__idf_log", + "reqs": [], + "priv_reqs": [ "hal" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "lwip": { + "alias": "idf::lwip", + "target": "___idf_lwip", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/lwip", + "source": "idf_components", + "lib": "__idf_lwip", + "reqs": [], + "priv_reqs": [ "vfs" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "mbedtls": { + "alias": "idf::mbedtls", + "target": "___idf_mbedtls", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/mbedtls", + "source": "idf_components", + "lib": "__idf_mbedtls", + "reqs": [], + "priv_reqs": [ "esp_hal_dma" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "nvs_flash": { + "alias": "idf::nvs_flash", + "target": "___idf_nvs_flash", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/nvs_flash", + "source": "idf_components", + "lib": "__idf_nvs_flash", + "reqs": [ "esp_partition" ], + "priv_reqs": [ "mbedtls", "nvs_sec_provider" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "nvs_sec_provider": { + "alias": "idf::nvs_sec_provider", + "target": "___idf_nvs_sec_provider", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/nvs_sec_provider", + "source": "idf_components", + "lib": "__idf_nvs_sec_provider", + "reqs": [ "esp_security" ], + "priv_reqs": [ "bootloader_support", "efuse", "esp_partition", "nvs_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "openthread": { + "alias": "idf::openthread", + "target": "___idf_openthread", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/openthread", + "source": "idf_components", + "lib": "__idf_openthread", + "reqs": [ "esp_netif", "lwip", "esp_driver_uart", "esp_driver_gpio", "esp_driver_spi", "esp_driver_usb_serial_jtag" ], + "priv_reqs": [ "console", "esp_coex", "esp_event", "esp_partition", "esp_timer", "ieee802154", "mbedtls", "nvs_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "partition_table": { + "alias": "idf::partition_table", + "target": "___idf_partition_table", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/partition_table", + "source": "idf_components", + "lib": "__idf_partition_table", + "reqs": [], + "priv_reqs": [ "esptool_py" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "perfmon": { + "alias": "idf::perfmon", + "target": "___idf_perfmon", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/perfmon", + "source": "idf_components", + "lib": "__idf_perfmon", + "reqs": [ "xtensa" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "protobuf-c": { + "alias": "idf::protobuf-c", + "target": "___idf_protobuf-c", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/protobuf-c", + "source": "idf_components", + "lib": "__idf_protobuf-c", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "protobuf-c" ] + }, + "protocomm": { + "alias": "idf::protocomm", + "target": "___idf_protocomm", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/protocomm", + "source": "idf_components", + "lib": "__idf_protocomm", + "reqs": [ "bt" ], + "priv_reqs": [ "protobuf-c", "mbedtls", "console", "esp_http_server", "esp_driver_uart" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include/common", "include/security", "include/transports", "include/crypto/srp6a", "proto-c" ] + }, + "pthread": { + "alias": "idf::pthread", + "target": "___idf_pthread", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/pthread", + "source": "idf_components", + "lib": "__idf_pthread", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "riscv": { + "alias": "idf::riscv", + "target": "___idf_riscv", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/riscv", + "source": "idf_components", + "lib": "__idf_riscv", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "rt": { + "alias": "idf::rt", + "target": "___idf_rt", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/rt", + "source": "idf_components", + "lib": "__idf_rt", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "sdmmc": { + "alias": "idf::sdmmc", + "target": "___idf_sdmmc", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/sdmmc", + "source": "idf_components", + "lib": "__idf_sdmmc", + "reqs": [ "esp_blockdev" ], + "priv_reqs": [ "soc", "esp_timer", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "soc": { + "alias": "idf::soc", + "target": "___idf_soc", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/soc", + "source": "idf_components", + "lib": "__idf_soc", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32", "esp32/include", "esp32/register" ] + }, + "spi_flash": { + "alias": "idf::spi_flash", + "target": "___idf_spi_flash", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/spi_flash", + "source": "idf_components", + "lib": "__idf_spi_flash", + "reqs": [ "hal", "esp_hal_mspi", "esp_blockdev" ], + "priv_reqs": [ "bootloader_support", "soc", "esp_hal_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "spiffs": { + "alias": "idf::spiffs", + "target": "___idf_spiffs", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/spiffs", + "source": "idf_components", + "lib": "__idf_spiffs", + "reqs": [ "esp_partition" ], + "priv_reqs": [ "bootloader_support", "vfs", "esptool_py" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "tcp_transport": { + "alias": "idf::tcp_transport", + "target": "___idf_tcp_transport", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/tcp_transport", + "source": "idf_components", + "lib": "__idf_tcp_transport", + "reqs": [ "esp-tls", "lwip", "esp_timer" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "ulp": { + "alias": "idf::ulp", + "target": "___idf_ulp", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/ulp", + "source": "idf_components", + "lib": "__idf_ulp", + "reqs": [ "esp_adc", "esp_driver_gpio", "esp_driver_uart", "esp_driver_i2s", "esp_hal_i2c", "esp_hal_touch_sens", "esp_hal_gpspi", "esp_hal_pmu", "esp_hal_rtc_timer", "esp_hal_clock" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "unity": { + "alias": "idf::unity", + "target": "___idf_unity", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/unity", + "source": "idf_components", + "lib": "__idf_unity", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "unity/src" ] + }, + "vfs": { + "alias": "idf::vfs", + "target": "___idf_vfs", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/vfs", + "source": "idf_components", + "lib": "__idf_vfs", + "reqs": [], + "priv_reqs": [ "esp_driver_uart", "esp_driver_usb_serial_jtag", "esp_usb_cdc_rom_console" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "wear_levelling": { + "alias": "idf::wear_levelling", + "target": "___idf_wear_levelling", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/wear_levelling", + "source": "idf_components", + "lib": "__idf_wear_levelling", + "reqs": [ "esp_partition" ], + "priv_reqs": [ "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "wpa_supplicant": { + "alias": "idf::wpa_supplicant", + "target": "___idf_wpa_supplicant", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/wpa_supplicant", + "source": "idf_components", + "lib": "__idf_wpa_supplicant", + "reqs": [], + "priv_reqs": [ "mbedtls", "esp_timer", "esp_wifi" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "port/include", "esp_supplicant/include" ] + }, + "xtensa": { + "alias": "idf::xtensa", + "target": "___idf_xtensa", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/xtensa", + "source": "idf_components", + "lib": "__idf_xtensa", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "esp32/include", "include", "deprecated_include" ] + }, + "main": { + "alias": "idf::main", + "target": "___idf_main", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/bootloader/subproject/main", + "source": "project_components", + "lib": "__idf_main", + "reqs": [ "bootloader", "bootloader_support" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "micro-ecc": { + "alias": "idf::micro-ecc", + "target": "___idf_micro-ecc", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc", + "source": "project_components", + "lib": "__idf_micro-ecc", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ ".", "micro-ecc" ] + } + }, + "gdbinit_files": { + "01_symbols": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/gdbinit/symbols", + "02_prefix_map": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/gdbinit/prefix_map", + "03_py_extensions": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/gdbinit/py_extensions", + "04_connect": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/gdbinit/connect" + }, + "debug_arguments_openocd": "-f board/esp32-wrover-kit-3.3v.cfg" +} diff --git a/build/bootloader/project_elf_src_esp32.c b/build/bootloader/project_elf_src_esp32.c new file mode 100644 index 0000000..e69de29 diff --git a/build/bootloader/toolchain/asmflags b/build/bootloader/toolchain/asmflags new file mode 100644 index 0000000..d3a25c6 --- /dev/null +++ b/build/bootloader/toolchain/asmflags @@ -0,0 +1,6 @@ +-specs=picolibc.specs +-Wno-frame-address +-mlongcalls +-fno-builtin-memcpy +-fno-builtin-memset +-fno-builtin-bzero diff --git a/build/bootloader/toolchain/cflags b/build/bootloader/toolchain/cflags new file mode 100644 index 0000000..d3a25c6 --- /dev/null +++ b/build/bootloader/toolchain/cflags @@ -0,0 +1,6 @@ +-specs=picolibc.specs +-Wno-frame-address +-mlongcalls +-fno-builtin-memcpy +-fno-builtin-memset +-fno-builtin-bzero diff --git a/build/bootloader/toolchain/cxxflags b/build/bootloader/toolchain/cxxflags new file mode 100644 index 0000000..7adb2ea --- /dev/null +++ b/build/bootloader/toolchain/cxxflags @@ -0,0 +1,7 @@ +-specs=picolibc.specs +-Wno-frame-address +-mlongcalls +-fno-builtin-memcpy +-fno-builtin-memset +-fno-builtin-bzero +-fno-rtti diff --git a/build/bootloader/toolchain/ldflags b/build/bootloader/toolchain/ldflags new file mode 100644 index 0000000..15edb6f --- /dev/null +++ b/build/bootloader/toolchain/ldflags @@ -0,0 +1,2 @@ +-nostartfiles +-fno-rtti diff --git a/build/bootloader/toolchain/toolchain-esp32.cmake b/build/bootloader/toolchain/toolchain-esp32.cmake new file mode 100644 index 0000000..8c1e461 --- /dev/null +++ b/build/bootloader/toolchain/toolchain-esp32.cmake @@ -0,0 +1,2 @@ +set(_CMAKE_TOOLCHAIN_PREFIX xtensa-esp32-elf-) +include($ENV{IDF_PATH}/tools/cmake/toolchain.cmake) diff --git a/build/build.ninja b/build/build.ninja new file mode 100644 index 0000000..4ee82d4 --- /dev/null +++ b/build/build.ninja @@ -0,0 +1,25006 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 4.0 + +# This file contains all the build statements describing the +# compilation DAG. + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# +# Which is the root file. +# ============================================================================= + +# ============================================================================= +# Project: modbus_tcp_esp32 +# Configurations: +# ============================================================================= + +############################################# +# Minimal version of Ninja required by this file + +ninja_required_version = 1.5 + +# ============================================================================= +# Include auxiliary files. + + +############################################# +# Include rules file. + +include CMakeFiles/rules.ninja + +# ============================================================================= + +############################################# +# Logical path to working directory; prefix for absolute paths. + +cmake_ninja_workdir = C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/ + +############################################# +# Utility command for menuconfig + +build menuconfig: phony CMakeFiles/menuconfig + + +############################################# +# Utility command for config-report + +build config-report: phony CMakeFiles/config-report + + +############################################# +# Utility command for confserver + +build confserver: phony CMakeFiles/confserver + + +############################################# +# Utility command for save-defconfig + +build save-defconfig: phony CMakeFiles/save-defconfig + + +############################################# +# Utility command for flash + +build CMakeFiles/flash.util: CUSTOM_COMMAND app bootloader esp-idf/main/spiffs_spiffs_bin esp-idf/partition_table/partition_table_bin + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -D IDF_PATH=C:/esp/v6.0/esp-idf -D SERIAL_TOOL=C:/Espressif/tools/python/v6.0/venv/Scripts/python.exe;-m;esptool;--chip;esp32 -D SERIAL_TOOL_ARGS=--before=default-reset;--after=hard-reset;write-flash;@flash_args -D WORKING_DIRECTORY=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build -P C:/esp/v6.0/esp-idf/components/esptool_py/run_serial_tool.cmake" + DESC = Running utility command for flash + pool = console + restat = 1 + +build flash: phony CMakeFiles/flash.util + + +############################################# +# Utility command for bootloader + +build 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 + + +############################################# +# Utility command for _project_elf_src + +build _project_elf_src: phony CMakeFiles/_project_elf_src project_elf_src_esp32.c + +# ============================================================================= +# Object build statements for EXECUTABLE target modbus_tcp_esp32.elf + + +############################################# +# Order-only phony target for modbus_tcp_esp32.elf + +build cmake_object_order_depends_target_modbus_tcp_esp32.elf: phony || __ldgen_output_sections.ld _project_elf_src cmake_object_order_depends_target___idf_cmock cmake_object_order_depends_target___idf_console cmake_object_order_depends_target___idf_driver cmake_object_order_depends_target___idf_esp_driver_cam cmake_object_order_depends_target___idf_esp_driver_dac cmake_object_order_depends_target___idf_esp_driver_gptimer cmake_object_order_depends_target___idf_esp_driver_i2c cmake_object_order_depends_target___idf_esp_driver_ledc cmake_object_order_depends_target___idf_esp_driver_mcpwm cmake_object_order_depends_target___idf_esp_driver_pcnt cmake_object_order_depends_target___idf_esp_driver_rmt cmake_object_order_depends_target___idf_esp_driver_sd_intf cmake_object_order_depends_target___idf_esp_driver_sdio cmake_object_order_depends_target___idf_esp_driver_sdm cmake_object_order_depends_target___idf_esp_driver_sdmmc cmake_object_order_depends_target___idf_esp_driver_sdspi cmake_object_order_depends_target___idf_esp_driver_spi cmake_object_order_depends_target___idf_esp_driver_touch_sens cmake_object_order_depends_target___idf_esp_driver_twai cmake_object_order_depends_target___idf_esp_eth cmake_object_order_depends_target___idf_esp_hal_lcd cmake_object_order_depends_target___idf_esp_hal_ledc cmake_object_order_depends_target___idf_esp_hal_mcpwm cmake_object_order_depends_target___idf_esp_hal_pcnt cmake_object_order_depends_target___idf_esp_hal_rmt cmake_object_order_depends_target___idf_esp_hal_twai cmake_object_order_depends_target___idf_esp_hid cmake_object_order_depends_target___idf_esp_https_server cmake_object_order_depends_target___idf_esp_lcd cmake_object_order_depends_target___idf_esp_local_ctrl cmake_object_order_depends_target___idf_fatfs cmake_object_order_depends_target___idf_main 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_rt cmake_object_order_depends_target___idf_sdmmc cmake_object_order_depends_target___idf_spiffs cmake_object_order_depends_target___idf_unity cmake_object_order_depends_target___idf_wear_levelling cmake_object_order_depends_target___idf_xtensa project_elf_src_esp32.c + +build CMakeFiles/modbus_tcp_esp32.elf.dir/project_elf_src_esp32.c.obj: C_COMPILER__modbus_tcp_esp32.2eelf_unscanned_ C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/project_elf_src_esp32.c || cmake_object_order_depends_target_modbus_tcp_esp32.elf + DEFINES = -DESP_PSA_ITS_AVAILABLE -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUNITY_INCLUDE_CONFIG_H + DEP_FILE = CMakeFiles\modbus_tcp_esp32.elf.dir\project_elf_src_esp32.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always + INCLUDES = -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/app_update/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/pthread/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include -IC:/esp/v6.0/esp-idf/components/esp_psram/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gptimer/include -IC:/esp/v6.0/esp-idf/components/app_trace/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/esp_coex/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/unity/include -IC:/esp/v6.0/esp-idf/components/unity/unity/src -IC:/esp/v6.0/esp-idf/components/cmock/CMock/src -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/esp32/include -IC:/esp/v6.0/esp-idf/components/driver/i2c/include -IC:/esp/v6.0/esp-idf/components/driver/touch_sensor/include -IC:/esp/v6.0/esp-idf/components/driver/twai/include -IC:/esp/v6.0/esp-idf/components/driver/touch_sensor/esp32/include -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_adc/include -IC:/esp/v6.0/esp-idf/components/esp_adc/interface -IC:/esp/v6.0/esp-idf/components/esp_adc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_cmpr/include -IC:/esp/v6.0/esp-idf/components/esp_driver_ana_cmpr/include -IC:/esp/v6.0/esp-idf/components/esp_driver_bitscrambler/include -IC:/esp/v6.0/esp-idf/components/esp_hal_cam/include -IC:/esp/v6.0/esp-idf/components/esp_driver_isp/include -IC:/esp/v6.0/esp-idf/components/esp_driver_cam/include -IC:/esp/v6.0/esp-idf/components/esp_driver_cam/interface -IC:/esp/v6.0/esp-idf/components/esp_driver_dac/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i3c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_jpeg/include -IC:/esp/v6.0/esp-idf/components/esp_driver_jpeg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ledc/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ledc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_ledc/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pcnt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pcnt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_pcnt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ppa/include -IC:/esp/v6.0/esp-idf/components/esp_driver_ppa/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_rmt/include -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sd_intf/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/legacy/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdspi/include -IC:/esp/v6.0/esp-idf/components/esp_driver_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_driver_touch_sens/hw_ver1/include -IC:/esp/v6.0/esp-idf/components/esp_driver_tsens/include -IC:/esp/v6.0/esp-idf/components/esp_driver_twai/include -IC:/esp/v6.0/esp-idf/components/esp_eth/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ieee802154/include -IC:/esp/v6.0/esp-idf/components/esp_hal_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_hid/include -IC:/esp/v6.0/esp-idf/components/tcp_transport/include -IC:/esp/v6.0/esp-idf/components/esp_http_client/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/esp_https_ota/include -IC:/esp/v6.0/esp-idf/components/esp_https_server/include -IC:/esp/v6.0/esp-idf/components/esp_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_lcd/interface -IC:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c -IC:/esp/v6.0/esp-idf/components/protocomm/include/common -IC:/esp/v6.0/esp-idf/components/protocomm/include/security -IC:/esp/v6.0/esp-idf/components/protocomm/include/transports -IC:/esp/v6.0/esp-idf/components/protocomm/include/crypto/srp6a -IC:/esp/v6.0/esp-idf/components/protocomm/proto-c -IC:/esp/v6.0/esp-idf/components/esp_local_ctrl/include -IC:/esp/v6.0/esp-idf/components/esp_trace/include -IC:/esp/v6.0/esp-idf/components/wear_levelling/include -IC:/esp/v6.0/esp-idf/components/fatfs/diskio -IC:/esp/v6.0/esp-idf/components/fatfs/src -IC:/esp/v6.0/esp-idf/components/fatfs/vfs -IC:/esp/v6.0/esp-idf/components/idf_test/include -IC:/esp/v6.0/esp-idf/components/idf_test/include/esp32 -IC:/esp/v6.0/esp-idf/components/ieee802154/include -IC:/esp/v6.0/esp-idf/components/perfmon/include -IC:/esp/v6.0/esp-idf/components/rt/include -IC:/esp/v6.0/esp-idf/components/spiffs/include -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/main + OBJECT_DIR = CMakeFiles\modbus_tcp_esp32.elf.dir + OBJECT_FILE_DIR = CMakeFiles\modbus_tcp_esp32.elf.dir + TARGET_COMPILE_PDB = CMakeFiles\modbus_tcp_esp32.elf.dir\ + TARGET_PDB = modbus_tcp_esp32.elf.pdb + + +# ============================================================================= +# Link build statements for EXECUTABLE target modbus_tcp_esp32.elf + + +############################################# +# Link the executable modbus_tcp_esp32.elf + +build modbus_tcp_esp32.elf: CXX_EXECUTABLE_LINKER__modbus_tcp_esp32.2eelf_ CMakeFiles/modbus_tcp_esp32.elf.dir/project_elf_src_esp32.c.obj | esp-idf/xtensa/libxtensa.a esp-idf/esp_stdio/libesp_stdio.a esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a esp-idf/esp_hal_clock/libesp_hal_clock.a esp-idf/esp_hal_mspi/libesp_hal_mspi.a esp-idf/esp_hal_security/libesp_hal_security.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/esp_security/libesp_security.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_hal_uart/libesp_hal_uart.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_driver_dma/libesp_driver_dma.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_hal_timg/libesp_hal_timg.a esp-idf/esp_hal_wdt/libesp_hal_wdt.a esp-idf/esp_hal_i2s/libesp_hal_i2s.a esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.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_hal_gpio/libesp_hal_gpio.a esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/esp_libc/libesp_libc.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_psram/libesp_psram.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_sec_provider/libnvs_sec_provider.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/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/unity/libunity.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/esp_hal_i2c/libesp_hal_i2c.a esp-idf/esp_hal_twai/libesp_hal_twai.a esp-idf/driver/libdriver.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_driver_cam/libesp_driver_cam.a esp-idf/esp_driver_dac/libesp_driver_dac.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_hal_ledc/libesp_hal_ledc.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_hal_mcpwm/libesp_hal_mcpwm.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_hal_pcnt/libesp_hal_pcnt.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_hal_rmt/libesp_hal_rmt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sd_intf/libesp_driver_sd_intf.a esp-idf/esp_driver_sdio/libesp_driver_sdio.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_hal_lcd/libesp_hal_lcd.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_https_server/libesp_https_server.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/wear_levelling/libwear_levelling.a esp-idf/fatfs/libfatfs.a esp-idf/perfmon/libperfmon.a esp-idf/rt/librt.a esp-idf/spiffs/libspiffs.a esp-idf/main/libmain.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/cmock/libcmock.a esp-idf/unity/libunity.a esp-idf/driver/libdriver.a esp-idf/esp_driver_cam/libesp_driver_cam.a esp-idf/esp_driver_dac/libesp_driver_dac.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_hal_ledc/libesp_hal_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_hal_mcpwm/libesp_hal_mcpwm.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_hal_pcnt/libesp_hal_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_hal_rmt/libesp_hal_rmt.a esp-idf/esp_driver_sdio/libesp_driver_sdio.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_hal_twai/libesp_hal_twai.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_hal_lcd/libesp_hal_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/protocomm/libprotocomm.a esp-idf/console/libconsole.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/fatfs/libfatfs.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sd_intf/libesp_driver_sd_intf.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/sdmmc/libsdmmc.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/perfmon/libperfmon.a esp-idf/rt/librt.a esp-idf/spiffs/libspiffs.a esp-idf/xtensa/libxtensa.a esp-idf/esp_stdio/libesp_stdio.a esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a esp-idf/esp_hal_clock/libesp_hal_clock.a esp-idf/esp_hal_mspi/libesp_hal_mspi.a esp-idf/esp_hal_security/libesp_hal_security.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/esp_security/libesp_security.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_hal_uart/libesp_hal_uart.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_driver_dma/libesp_driver_dma.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_hal_timg/libesp_hal_timg.a esp-idf/esp_hal_wdt/libesp_hal_wdt.a esp-idf/esp_hal_i2s/libesp_hal_i2s.a esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.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_hal_gpio/libesp_hal_gpio.a esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/esp_libc/libesp_libc.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_psram/libesp_psram.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_sec_provider/libnvs_sec_provider.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/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hal_i2c/libesp_hal_i2c.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_adc/libesp_adc.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 C$:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/libeverest.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/libp256m.a C$:/esp/v6.0/esp-idf/components/esp_phy/lib/esp32/librtc.a C$:/esp/v6.0/esp-idf/components/esp_phy/lib/esp32/libphy.a C$:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libcore.a C$:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libespnow.a C$:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libmesh.a C$:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a C$:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libpp.a C$:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a C$:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libwapi.a esp-idf/xtensa/libxtensa.a esp-idf/esp_stdio/libesp_stdio.a esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a esp-idf/esp_hal_clock/libesp_hal_clock.a esp-idf/esp_hal_mspi/libesp_hal_mspi.a esp-idf/esp_hal_security/libesp_hal_security.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/esp_security/libesp_security.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_hal_uart/libesp_hal_uart.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_driver_dma/libesp_driver_dma.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_hal_timg/libesp_hal_timg.a esp-idf/esp_hal_wdt/libesp_hal_wdt.a esp-idf/esp_hal_i2s/libesp_hal_i2s.a esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.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_hal_gpio/libesp_hal_gpio.a esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/esp_libc/libesp_libc.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_psram/libesp_psram.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_sec_provider/libnvs_sec_provider.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/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hal_i2c/libesp_hal_i2c.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_adc/libesp_adc.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 C$:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/libeverest.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/libp256m.a C$:/esp/v6.0/esp-idf/components/esp_phy/lib/esp32/librtc.a C$:/esp/v6.0/esp-idf/components/esp_phy/lib/esp32/libphy.a C$:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libcore.a C$:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libespnow.a C$:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libmesh.a C$:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a C$:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libpp.a C$:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a C$:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libwapi.a esp-idf/xtensa/libxtensa.a esp-idf/esp_stdio/libesp_stdio.a esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a esp-idf/esp_hal_clock/libesp_hal_clock.a esp-idf/esp_hal_mspi/libesp_hal_mspi.a esp-idf/esp_hal_security/libesp_hal_security.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/esp_security/libesp_security.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_hal_uart/libesp_hal_uart.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_driver_dma/libesp_driver_dma.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_hal_timg/libesp_hal_timg.a esp-idf/esp_hal_wdt/libesp_hal_wdt.a esp-idf/esp_hal_i2s/libesp_hal_i2s.a esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.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_hal_gpio/libesp_hal_gpio.a esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/esp_libc/libesp_libc.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_psram/libesp_psram.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_sec_provider/libnvs_sec_provider.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/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hal_i2c/libesp_hal_i2c.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_adc/libesp_adc.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 C$:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/libeverest.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/libp256m.a C$:/esp/v6.0/esp-idf/components/esp_phy/lib/esp32/librtc.a C$:/esp/v6.0/esp-idf/components/esp_phy/lib/esp32/libphy.a C$:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libcore.a C$:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libespnow.a C$:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libmesh.a C$:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a C$:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libpp.a C$:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a C$:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libwapi.a esp-idf/xtensa/libxtensa.a esp-idf/esp_stdio/libesp_stdio.a esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a esp-idf/esp_hal_clock/libesp_hal_clock.a esp-idf/esp_hal_mspi/libesp_hal_mspi.a esp-idf/esp_hal_security/libesp_hal_security.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/esp_security/libesp_security.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_hal_uart/libesp_hal_uart.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_driver_dma/libesp_driver_dma.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_hal_timg/libesp_hal_timg.a esp-idf/esp_hal_wdt/libesp_hal_wdt.a esp-idf/esp_hal_i2s/libesp_hal_i2s.a esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.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_hal_gpio/libesp_hal_gpio.a esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/esp_libc/libesp_libc.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_psram/libesp_psram.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_sec_provider/libnvs_sec_provider.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/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hal_i2c/libesp_hal_i2c.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_adc/libesp_adc.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 C$:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/libeverest.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/libp256m.a C$:/esp/v6.0/esp-idf/components/esp_phy/lib/esp32/librtc.a C$:/esp/v6.0/esp-idf/components/esp_phy/lib/esp32/libphy.a C$:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libcore.a C$:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libespnow.a C$:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libmesh.a C$:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a C$:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libpp.a C$:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a C$:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libwapi.a esp-idf/xtensa/libxtensa.a esp-idf/esp_stdio/libesp_stdio.a esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a esp-idf/esp_hal_clock/libesp_hal_clock.a esp-idf/esp_hal_mspi/libesp_hal_mspi.a esp-idf/esp_hal_security/libesp_hal_security.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/esp_security/libesp_security.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_hal_uart/libesp_hal_uart.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_driver_dma/libesp_driver_dma.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_hal_timg/libesp_hal_timg.a esp-idf/esp_hal_wdt/libesp_hal_wdt.a esp-idf/esp_hal_i2s/libesp_hal_i2s.a esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.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_hal_gpio/libesp_hal_gpio.a esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/esp_libc/libesp_libc.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_psram/libesp_psram.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_sec_provider/libnvs_sec_provider.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/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hal_i2c/libesp_hal_i2c.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_adc/libesp_adc.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 C$:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/libeverest.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/libp256m.a C$:/esp/v6.0/esp-idf/components/esp_phy/lib/esp32/librtc.a C$:/esp/v6.0/esp-idf/components/esp_phy/lib/esp32/libphy.a C$:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libcore.a C$:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libespnow.a C$:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libmesh.a C$:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a C$:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libpp.a C$:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a C$:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libwapi.a esp-idf/pthread/libpthread.a esp-idf/esp_libc/libesp_libc.a esp-idf/cxx/libcxx.a esp-idf/esp_system/ld/memory.ld C$:/esp/v6.0/esp-idf/components/esp_rom/esp32/ld/esp32.rom.ld C$:/esp/v6.0/esp-idf/components/esp_rom/esp32/ld/esp32.rom.api.ld C$:/esp/v6.0/esp-idf/components/esp_rom/esp32/ld/esp32.rom.libgcc.ld C$:/esp/v6.0/esp-idf/components/esp_rom/esp32/ld/esp32.rom.libc-funcs.ld C$:/esp/v6.0/esp-idf/components/soc/esp32/ld/esp32.peripherals.ld esp-idf/esp_system/ld/sections.ld || __ldgen_output_sections.ld _project_elf_src esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/driver/libdriver.a esp-idf/esp_driver_cam/libesp_driver_cam.a esp-idf/esp_driver_dac/libesp_driver_dac.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sd_intf/libesp_driver_sd_intf.a esp-idf/esp_driver_sdio/libesp_driver_sdio.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_hal_lcd/libesp_hal_lcd.a esp-idf/esp_hal_ledc/libesp_hal_ledc.a esp-idf/esp_hal_mcpwm/libesp_hal_mcpwm.a esp-idf/esp_hal_pcnt/libesp_hal_pcnt.a esp-idf/esp_hal_rmt/libesp_hal_rmt.a esp-idf/esp_hal_twai/libesp_hal_twai.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/fatfs/libfatfs.a esp-idf/main/libmain.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/rt/librt.a esp-idf/sdmmc/libsdmmc.a esp-idf/spiffs/libspiffs.a esp-idf/unity/libunity.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/xtensa/libxtensa.a + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags" + LINK_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/ldflags" -Wl,--cref -Wl,--defsym=IDF_TARGET_ESP32=0 -Wl,--Map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/modbus_tcp_esp32.map -Wl,--no-warn-rwx-segments -Wl,--orphan-handling=error -fno-lto -Wl,--gc-sections -Wl,--warn-common -T esp32.peripherals.ld -T esp32.rom.ld -T esp32.rom.api.ld -T esp32.rom.libgcc.ld -T esp32.rom.libc-funcs.ld -T memory.ld -T sections.ld -u include_esp_phy_override + LINK_LIBRARIES = esp-idf/xtensa/libxtensa.a esp-idf/esp_stdio/libesp_stdio.a esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a esp-idf/esp_hal_clock/libesp_hal_clock.a esp-idf/esp_hal_mspi/libesp_hal_mspi.a esp-idf/esp_hal_security/libesp_hal_security.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/esp_security/libesp_security.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_hal_uart/libesp_hal_uart.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_driver_dma/libesp_driver_dma.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_hal_timg/libesp_hal_timg.a esp-idf/esp_hal_wdt/libesp_hal_wdt.a esp-idf/esp_hal_i2s/libesp_hal_i2s.a esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.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_hal_gpio/libesp_hal_gpio.a esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/esp_libc/libesp_libc.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_psram/libesp_psram.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_sec_provider/libnvs_sec_provider.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/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/unity/libunity.a esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/esp_hal_i2c/libesp_hal_i2c.a esp-idf/esp_hal_twai/libesp_hal_twai.a esp-idf/driver/libdriver.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_driver_cam/libesp_driver_cam.a esp-idf/esp_driver_dac/libesp_driver_dac.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_hal_ledc/libesp_hal_ledc.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_hal_mcpwm/libesp_hal_mcpwm.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_hal_pcnt/libesp_hal_pcnt.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_hal_rmt/libesp_hal_rmt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sd_intf/libesp_driver_sd_intf.a esp-idf/esp_driver_sdio/libesp_driver_sdio.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_hal_lcd/libesp_hal_lcd.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_https_server/libesp_https_server.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 -Wl,--whole-archive -Wl,--no-whole-archive esp-idf/wear_levelling/libwear_levelling.a esp-idf/fatfs/libfatfs.a esp-idf/perfmon/libperfmon.a esp-idf/rt/librt.a esp-idf/spiffs/libspiffs.a esp-idf/main/libmain.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/cmock/libcmock.a esp-idf/unity/libunity.a esp-idf/driver/libdriver.a esp-idf/esp_driver_cam/libesp_driver_cam.a esp-idf/esp_driver_dac/libesp_driver_dac.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_hal_ledc/libesp_hal_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_hal_mcpwm/libesp_hal_mcpwm.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_hal_pcnt/libesp_hal_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_hal_rmt/libesp_hal_rmt.a esp-idf/esp_driver_sdio/libesp_driver_sdio.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_hal_twai/libesp_hal_twai.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_hal_lcd/libesp_hal_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/protocomm/libprotocomm.a esp-idf/console/libconsole.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/fatfs/libfatfs.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sd_intf/libesp_driver_sd_intf.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/sdmmc/libsdmmc.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/perfmon/libperfmon.a esp-idf/rt/librt.a esp-idf/spiffs/libspiffs.a esp-idf/xtensa/libxtensa.a esp-idf/esp_stdio/libesp_stdio.a esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a esp-idf/esp_hal_clock/libesp_hal_clock.a esp-idf/esp_hal_mspi/libesp_hal_mspi.a esp-idf/esp_hal_security/libesp_hal_security.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/esp_security/libesp_security.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_hal_uart/libesp_hal_uart.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_driver_dma/libesp_driver_dma.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_hal_timg/libesp_hal_timg.a esp-idf/esp_hal_wdt/libesp_hal_wdt.a esp-idf/esp_hal_i2s/libesp_hal_i2s.a esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.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_hal_gpio/libesp_hal_gpio.a esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/esp_libc/libesp_libc.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_psram/libesp_psram.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_sec_provider/libnvs_sec_provider.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/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hal_i2c/libesp_hal_i2c.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_adc/libesp_adc.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 C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/libeverest.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/libp256m.a C:/esp/v6.0/esp-idf/components/esp_phy/lib/esp32/librtc.a C:/esp/v6.0/esp-idf/components/esp_phy/lib/esp32/libphy.a C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libcore.a C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libespnow.a C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libmesh.a C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libpp.a C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libwapi.a esp-idf/xtensa/libxtensa.a esp-idf/esp_stdio/libesp_stdio.a esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a esp-idf/esp_hal_clock/libesp_hal_clock.a esp-idf/esp_hal_mspi/libesp_hal_mspi.a esp-idf/esp_hal_security/libesp_hal_security.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/esp_security/libesp_security.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_hal_uart/libesp_hal_uart.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_driver_dma/libesp_driver_dma.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_hal_timg/libesp_hal_timg.a esp-idf/esp_hal_wdt/libesp_hal_wdt.a esp-idf/esp_hal_i2s/libesp_hal_i2s.a esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.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_hal_gpio/libesp_hal_gpio.a esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/esp_libc/libesp_libc.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_psram/libesp_psram.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_sec_provider/libnvs_sec_provider.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/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hal_i2c/libesp_hal_i2c.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_adc/libesp_adc.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 C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/libeverest.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/libp256m.a C:/esp/v6.0/esp-idf/components/esp_phy/lib/esp32/librtc.a C:/esp/v6.0/esp-idf/components/esp_phy/lib/esp32/libphy.a C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libcore.a C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libespnow.a C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libmesh.a C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libpp.a C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libwapi.a esp-idf/xtensa/libxtensa.a esp-idf/esp_stdio/libesp_stdio.a esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a esp-idf/esp_hal_clock/libesp_hal_clock.a esp-idf/esp_hal_mspi/libesp_hal_mspi.a esp-idf/esp_hal_security/libesp_hal_security.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/esp_security/libesp_security.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_hal_uart/libesp_hal_uart.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_driver_dma/libesp_driver_dma.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_hal_timg/libesp_hal_timg.a esp-idf/esp_hal_wdt/libesp_hal_wdt.a esp-idf/esp_hal_i2s/libesp_hal_i2s.a esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.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_hal_gpio/libesp_hal_gpio.a esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/esp_libc/libesp_libc.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_psram/libesp_psram.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_sec_provider/libnvs_sec_provider.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/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hal_i2c/libesp_hal_i2c.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_adc/libesp_adc.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 C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/libeverest.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/libp256m.a C:/esp/v6.0/esp-idf/components/esp_phy/lib/esp32/librtc.a C:/esp/v6.0/esp-idf/components/esp_phy/lib/esp32/libphy.a C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libcore.a C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libespnow.a C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libmesh.a C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libpp.a C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libwapi.a esp-idf/xtensa/libxtensa.a esp-idf/esp_stdio/libesp_stdio.a esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a esp-idf/esp_hal_clock/libesp_hal_clock.a esp-idf/esp_hal_mspi/libesp_hal_mspi.a esp-idf/esp_hal_security/libesp_hal_security.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/esp_security/libesp_security.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_hal_uart/libesp_hal_uart.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_driver_dma/libesp_driver_dma.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_hal_timg/libesp_hal_timg.a esp-idf/esp_hal_wdt/libesp_hal_wdt.a esp-idf/esp_hal_i2s/libesp_hal_i2s.a esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.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_hal_gpio/libesp_hal_gpio.a esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/esp_libc/libesp_libc.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_psram/libesp_psram.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_sec_provider/libnvs_sec_provider.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/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hal_i2c/libesp_hal_i2c.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_adc/libesp_adc.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 C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/libeverest.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/libp256m.a C:/esp/v6.0/esp-idf/components/esp_phy/lib/esp32/librtc.a C:/esp/v6.0/esp-idf/components/esp_phy/lib/esp32/libphy.a C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libcore.a C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libespnow.a C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libmesh.a C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libpp.a C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libwapi.a esp-idf/xtensa/libxtensa.a esp-idf/esp_stdio/libesp_stdio.a esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a esp-idf/esp_hal_clock/libesp_hal_clock.a esp-idf/esp_hal_mspi/libesp_hal_mspi.a esp-idf/esp_hal_security/libesp_hal_security.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/esp_security/libesp_security.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_hal_uart/libesp_hal_uart.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_driver_dma/libesp_driver_dma.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_hal_timg/libesp_hal_timg.a esp-idf/esp_hal_wdt/libesp_hal_wdt.a esp-idf/esp_hal_i2s/libesp_hal_i2s.a esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.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_hal_gpio/libesp_hal_gpio.a esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/esp_libc/libesp_libc.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_psram/libesp_psram.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_sec_provider/libnvs_sec_provider.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/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hal_i2c/libesp_hal_i2c.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_adc/libesp_adc.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 C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/libeverest.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/libp256m.a C:/esp/v6.0/esp-idf/components/esp_phy/lib/esp32/librtc.a C:/esp/v6.0/esp-idf/components/esp_phy/lib/esp32/libphy.a C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libcore.a C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libespnow.a C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libmesh.a C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libpp.a C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libwapi.a -u esp_vfs_include_console_register -u esp_app_desc -u esp_efuse_startup_include_func -u esp_security_init_include_impl -u mbedtls_psa_crypto_init_include_impl -u esp_flash_spi_init_include_func -u ld_include_highint_hdl -u start_app -u start_app_other_cores -u __ubsan_include -u esp_system_include_startup_funcs -Wl,--wrap=longjmp -u __assert_func -u esp_dport_access_reg_read -Wl,--undefined=FreeRTOS_openocd_params -u app_main -lc -lm -u esp_libc_include_heap_impl -u esp_libc_include_reent_syscalls_impl -u esp_libc_include_syscalls_impl -u esp_libc_include_pthread_impl -u esp_libc_include_assert_impl -u esp_libc_include_getentropy_impl -u esp_libc_include_init_funcs -u esp_libc_init_funcs -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 -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 -Wl,--wrap=__cxa_throw -Wl,--wrap=__cxa_allocate_exception -lstdc++ esp-idf/pthread/libpthread.a esp-idf/esp_libc/libesp_libc.a -u __cxa_guard_dummy -u __cxx_init_dummy -lgcc esp-idf/cxx/libcxx.a -u __cxx_fatal_exception -u esp_timer_init_include_func -u uart_vfs_include_dev_init -u nvs_sec_provider_include_impl -u vfs_include_syscalls_impl -u esp_vfs_include_nullfs_register + LINK_PATH = -LC:/esp/v6.0/esp-idf/components/soc/esp32/ld -LC:/esp/v6.0/esp-idf/components/esp_rom/esp32/ld -LC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/ld -LC:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32 + OBJECT_DIR = CMakeFiles\modbus_tcp_esp32.elf.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = CMakeFiles\modbus_tcp_esp32.elf.dir\ + TARGET_FILE = modbus_tcp_esp32.elf + TARGET_PDB = modbus_tcp_esp32.elf.pdb + RSP_FILE = CMakeFiles\modbus_tcp_esp32.elf.rsp + + +############################################# +# Utility command for size + +build size: phony CMakeFiles/size + + +############################################# +# Utility command for size-files + +build size-files: phony CMakeFiles/size-files + + +############################################# +# Utility command for size-components + +build size-components: phony CMakeFiles/size-components + + +############################################# +# Utility command for uf2 + +build uf2: phony CMakeFiles/uf2 + + +############################################# +# Utility command for uf2-app + +build uf2-app: phony CMakeFiles/uf2-app + + +############################################# +# Utility command for __ldgen_output_sections.ld + +build __ldgen_output_sections.ld: phony CMakeFiles/__ldgen_output_sections.ld esp-idf/esp_system/ld/sections.ld esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/driver/libdriver.a esp-idf/esp_driver_cam/libesp_driver_cam.a esp-idf/esp_driver_dac/libesp_driver_dac.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sd_intf/libesp_driver_sd_intf.a esp-idf/esp_driver_sdio/libesp_driver_sdio.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_hal_lcd/libesp_hal_lcd.a esp-idf/esp_hal_ledc/libesp_hal_ledc.a esp-idf/esp_hal_mcpwm/libesp_hal_mcpwm.a esp-idf/esp_hal_pcnt/libesp_hal_pcnt.a esp-idf/esp_hal_rmt/libesp_hal_rmt.a esp-idf/esp_hal_twai/libesp_hal_twai.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/fatfs/libfatfs.a esp-idf/main/libmain.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/rt/librt.a esp-idf/sdmmc/libsdmmc.a esp-idf/spiffs/libspiffs.a esp-idf/unity/libunity.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/xtensa/libxtensa.a + + +############################################# +# Utility command for gen_modbus_tcp_esp32_binary + +build gen_modbus_tcp_esp32_binary: phony CMakeFiles/gen_modbus_tcp_esp32_binary .bin_timestamp modbus_tcp_esp32.elf + + +############################################# +# Utility command for gen_project_binary + +build gen_project_binary: phony CMakeFiles/gen_project_binary gen_modbus_tcp_esp32_binary + + +############################################# +# Utility command for app + +build app: phony CMakeFiles/app app_check_size gen_project_binary + + +############################################# +# Utility command for app-flash + +build CMakeFiles/app-flash.util: CUSTOM_COMMAND app + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -D IDF_PATH=C:/esp/v6.0/esp-idf -D SERIAL_TOOL=C:/Espressif/tools/python/v6.0/venv/Scripts/python.exe;-m;esptool;--chip;esp32 -D SERIAL_TOOL_ARGS=--before=default-reset;--after=hard-reset;write-flash;@app-flash_args -D WORKING_DIRECTORY=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build -P C:/esp/v6.0/esp-idf/components/esptool_py/run_serial_tool.cmake" + DESC = Running utility command for app-flash + pool = console + restat = 1 + +build app-flash: phony CMakeFiles/app-flash.util + + +############################################# +# Utility command for encrypted-app-flash + +build encrypted-app-flash: phony CMakeFiles/encrypted-app-flash + + +############################################# +# Utility command for encrypted-flash + +build encrypted-flash: phony CMakeFiles/encrypted-flash + + +############################################# +# Utility command for erase-flash + +build erase-flash: phony CMakeFiles/erase-flash + + +############################################# +# Utility command for merge-bin + +build merge-bin: phony CMakeFiles/merge-bin bootloader gen_project_binary + + +############################################# +# Utility command for monitor + +build monitor: phony CMakeFiles/monitor modbus_tcp_esp32.elf + + +############################################# +# Utility command for app_check_size + +build app_check_size: phony CMakeFiles/app_check_size esp-idf/partition_table/partition_table_bin gen_project_binary + + +############################################# +# Utility command for edit_cache + +build CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build edit_cache: phony CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build rebuild_cache: phony CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build list_install_components: phony + + +############################################# +# Utility command for install + +build CMakeFiles/install.util: CUSTOM_COMMAND all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build install: phony CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build CMakeFiles/install/local.util: CUSTOM_COMMAND all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build install/local: phony CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build CMakeFiles/install/strip.util: CUSTOM_COMMAND all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build install/strip: phony CMakeFiles/install/strip.util + + +############################################# +# Custom command for CMakeFiles\menuconfig + +build CMakeFiles/menuconfig | ${cmake_ninja_workdir}CMakeFiles/menuconfig: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe C:/esp/v6.0/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config.env && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe -m kconfgen --list-separator=semicolon --kconfig C:/esp/v6.0/esp-idf/Kconfig --sdkconfig-rename C:/esp/v6.0/esp-idf/sdkconfig.rename --config C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/sdkconfig --env IDF_MINIMAL_BUILD=n --env-file C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config.env --env IDF_TARGET=esp32 --env IDF_TOOLCHAIN=gcc --env IDF_ENV_FPGA= --env IDF_INIT_VERSION=6.0.0 --env KCONFIG_REPORT_VERBOSITY=quiet --dont-write-deprecated --output config C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/sdkconfig && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe C:/esp/v6.0/esp-idf/tools/check_term.py && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E env COMPONENT_KCONFIGS_SOURCE_FILE=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/kconfigs.in COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/kconfigs_projbuild.in KCONFIG_CONFIG=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/sdkconfig IDF_TARGET=esp32 IDF_TOOLCHAIN=gcc IDF_ENV_FPGA= IDF_INIT_VERSION=6.0.0 IDF_MINIMAL_BUILD=n C:/Espressif/tools/python/v6.0/venv/Scripts/python.exe -m esp_menuconfig C:/esp/v6.0/esp-idf/Kconfig && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe -m kconfgen --list-separator=semicolon --kconfig C:/esp/v6.0/esp-idf/Kconfig --sdkconfig-rename C:/esp/v6.0/esp-idf/sdkconfig.rename --config C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/sdkconfig --env IDF_MINIMAL_BUILD=n --env-file C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config.env --env IDF_TARGET=esp32 --env IDF_TOOLCHAIN=gcc --env IDF_ENV_FPGA= --env IDF_INIT_VERSION=6.0.0 --output header C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config/sdkconfig.h --output cmake C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config/sdkconfig.cmake --output json C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config/sdkconfig.json --output json_menus C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config/kconfig_menus.json --output config C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/sdkconfig --env KCONFIG_REPORT_VERBOSITY=default" + pool = console + + +############################################# +# Custom command for CMakeFiles\config-report + +build CMakeFiles/config-report | ${cmake_ninja_workdir}CMakeFiles/config-report: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe C:/esp/v6.0/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config.env && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe -m kconfgen --list-separator=semicolon --kconfig C:/esp/v6.0/esp-idf/Kconfig --sdkconfig-rename C:/esp/v6.0/esp-idf/sdkconfig.rename --config C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/sdkconfig --env IDF_MINIMAL_BUILD=n --env-file C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config.env --env IDF_TARGET=esp32 --env IDF_TOOLCHAIN=gcc --env IDF_ENV_FPGA= --env IDF_INIT_VERSION=6.0.0 --output report C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config/kconfig_parse_report.json --env KCONFIG_REPORT_VERBOSITY=default" + pool = console + + +############################################# +# Custom command for CMakeFiles\confserver + +build CMakeFiles/confserver | ${cmake_ninja_workdir}CMakeFiles/confserver: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe C:/esp/v6.0/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config.env && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe -m kconfserver --env-file C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config.env --kconfig C:/esp/v6.0/esp-idf/Kconfig --sdkconfig-rename C:/esp/v6.0/esp-idf/sdkconfig.rename --config C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/sdkconfig --env KCONFIG_REPORT_VERBOSITY=default" + pool = console + + +############################################# +# Custom command for CMakeFiles\save-defconfig + +build CMakeFiles/save-defconfig | ${cmake_ninja_workdir}CMakeFiles/save-defconfig: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe C:/esp/v6.0/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config.env && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe -m kconfgen --list-separator=semicolon --kconfig C:/esp/v6.0/esp-idf/Kconfig --sdkconfig-rename C:/esp/v6.0/esp-idf/sdkconfig.rename --config C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/sdkconfig --env IDF_MINIMAL_BUILD=n --env-file C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config.env --dont-write-deprecated --output savedefconfig C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/sdkconfig.defaults --env KCONFIG_REPORT_VERBOSITY=default" + pool = console + + +############################################# +# Phony custom command for CMakeFiles\bootloader + +build CMakeFiles/bootloader | ${cmake_ninja_workdir}CMakeFiles/bootloader: phony CMakeFiles/bootloader-complete || esp-idf/partition_table/partition_table_bin + + +############################################# +# Custom command for CMakeFiles\bootloader-complete + +build 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 + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E make_directory C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E touch C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/CMakeFiles/bootloader-complete && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E touch C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-done" + DESC = Completed 'bootloader' + restat = 1 + + +############################################# +# Custom command for bootloader-prefix\src\bootloader-stamp\bootloader-build + +build 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 + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --build ." + DESC = Performing build step for 'bootloader' + restat = 1 + + +############################################# +# Custom command for bootloader-prefix\src\bootloader-stamp\bootloader-configure + +build 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 + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DSDKCONFIG=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/sdkconfig -DIDF_PATH=C:/esp/v6.0/esp-idf -DIDF_TARGET=esp32 -DPYTHON_DEPS_CHECKED=1 -DPYTHON=C:/Espressif/tools/python/v6.0/venv/Scripts/python.exe -DEXTRA_COMPONENT_DIRS=C:/esp/v6.0/esp-idf/components/bootloader -DPROJECT_SOURCE_DIR=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI -DIGNORE_EXTRA_COMPONENT= -GNinja -S C:/esp/v6.0/esp-idf/components/bootloader/subproject -B C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E touch C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure" + DESC = Performing configure step for 'bootloader' + restat = 1 + + +############################################# +# Custom command for bootloader-prefix\src\bootloader-stamp\bootloader-download + +build 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 + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E echo_append && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E touch C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-download" + DESC = No download step for 'bootloader' + restat = 1 + + +############################################# +# Custom command for bootloader-prefix\src\bootloader-stamp\bootloader-install + +build 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 + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E echo_append" + DESC = No install step for 'bootloader' + + +############################################# +# Custom command for bootloader-prefix\src\bootloader-stamp\bootloader-mkdir + +build 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 + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -Dcfgdir= -P C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader-prefix/tmp/bootloader-mkdirs.cmake && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E touch C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir" + DESC = Creating directories for 'bootloader' + restat = 1 + + +############################################# +# Custom command for bootloader-prefix\src\bootloader-stamp\bootloader-patch + +build 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-patch-info.txt bootloader-prefix/src/bootloader-stamp/bootloader-update || esp-idf/partition_table/partition_table_bin + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E echo_append && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E touch C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch" + DESC = No patch step for 'bootloader' + restat = 1 + + +############################################# +# Custom command for bootloader-prefix\src\bootloader-stamp\bootloader-update + +build 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-update-info.txt bootloader-prefix/src/bootloader-stamp/bootloader-download || esp-idf/partition_table/partition_table_bin + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E echo_append && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E touch C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/bootloader-update" + DESC = No update step for 'bootloader' + restat = 1 + + +############################################# +# Phony custom command for CMakeFiles\_project_elf_src + +build CMakeFiles/_project_elf_src | ${cmake_ninja_workdir}CMakeFiles/_project_elf_src: phony project_elf_src_esp32.c + + +############################################# +# Custom command for project_elf_src_esp32.c + +build project_elf_src_esp32.c | ${cmake_ninja_workdir}project_elf_src_esp32.c: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E touch C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/project_elf_src_esp32.c" + DESC = Generating project_elf_src_esp32.c + restat = 1 + + +############################################# +# Custom command for CMakeFiles\size + +build CMakeFiles/size | ${cmake_ninja_workdir}CMakeFiles/size: CUSTOM_COMMAND modbus_tcp_esp32.map + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -D IDF_SIZE_TOOL=C:/Espressif/tools/python/v6.0/venv/Scripts/python.exe;-m;esp_idf_size -D MAP_FILE=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/modbus_tcp_esp32.map -D OUTPUT_JSON= -P C:/esp/v6.0/esp-idf/tools/cmake/run_size_tool.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\size-files + +build CMakeFiles/size-files | ${cmake_ninja_workdir}CMakeFiles/size-files: CUSTOM_COMMAND modbus_tcp_esp32.map + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -D IDF_SIZE_TOOL=C:/Espressif/tools/python/v6.0/venv/Scripts/python.exe;-m;esp_idf_size -D IDF_SIZE_MODE=--files -D MAP_FILE=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/modbus_tcp_esp32.map -D OUTPUT_JSON= -P C:/esp/v6.0/esp-idf/tools/cmake/run_size_tool.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\size-components + +build CMakeFiles/size-components | ${cmake_ninja_workdir}CMakeFiles/size-components: CUSTOM_COMMAND modbus_tcp_esp32.map + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -D IDF_SIZE_TOOL=C:/Espressif/tools/python/v6.0/venv/Scripts/python.exe;-m;esp_idf_size -D IDF_SIZE_MODE=--archives -D MAP_FILE=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/modbus_tcp_esp32.map -D OUTPUT_JSON= -P C:/esp/v6.0/esp-idf/tools/cmake/run_size_tool.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\uf2 + +build CMakeFiles/uf2 | ${cmake_ninja_workdir}CMakeFiles/uf2: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -D IDF_PATH=C:/esp/v6.0/esp-idf -D UF2_CMD=C:/Espressif/tools/python/v6.0/venv/Scripts/python.exe;C:/esp/v6.0/esp-idf/tools/mkuf2.py;write;--chip;esp32 -D UF2_ARGS=--json;C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/flasher_args.json;-o;C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/uf2.bin -P C:/esp/v6.0/esp-idf/tools/cmake/run_uf2_cmds.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\uf2-app + +build CMakeFiles/uf2-app | ${cmake_ninja_workdir}CMakeFiles/uf2-app: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -D IDF_PATH=C:/esp/v6.0/esp-idf -D UF2_CMD=C:/Espressif/tools/python/v6.0/venv/Scripts/python.exe;C:/esp/v6.0/esp-idf/tools/mkuf2.py;write;--chip;esp32 -D UF2_ARGS=--json;C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/flasher_args.json;-o;C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/uf2-app.bin;--bin;app -P C:/esp/v6.0/esp-idf/tools/cmake/run_uf2_cmds.cmake" + pool = console + + +############################################# +# Phony custom command for CMakeFiles\__ldgen_output_sections.ld + +build CMakeFiles/__ldgen_output_sections.ld | ${cmake_ninja_workdir}CMakeFiles/__ldgen_output_sections.ld: phony esp-idf/esp_system/ld/sections.ld || 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_bootloader_format/libesp_bootloader_format.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_cam/libesp_driver_cam.a esp-idf/esp_driver_dac/libesp_driver_dac.a esp-idf/esp_driver_dma/libesp_driver_dma.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sd_intf/libesp_driver_sd_intf.a esp-idf/esp_driver_sdio/libesp_driver_sdio.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.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_hal_ana_conv/libesp_hal_ana_conv.a esp-idf/esp_hal_clock/libesp_hal_clock.a esp-idf/esp_hal_gpio/libesp_hal_gpio.a esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a esp-idf/esp_hal_i2c/libesp_hal_i2c.a esp-idf/esp_hal_i2s/libesp_hal_i2s.a esp-idf/esp_hal_lcd/libesp_hal_lcd.a esp-idf/esp_hal_ledc/libesp_hal_ledc.a esp-idf/esp_hal_mcpwm/libesp_hal_mcpwm.a esp-idf/esp_hal_mspi/libesp_hal_mspi.a esp-idf/esp_hal_pcnt/libesp_hal_pcnt.a esp-idf/esp_hal_rmt/libesp_hal_rmt.a esp-idf/esp_hal_security/libesp_hal_security.a esp-idf/esp_hal_timg/libesp_hal_timg.a esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a esp-idf/esp_hal_twai/libesp_hal_twai.a esp-idf/esp_hal_uart/libesp_hal_uart.a esp-idf/esp_hal_wdt/libesp_hal_wdt.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_https_server/libesp_https_server.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_libc/libesp_libc.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_psram/libesp_psram.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_stdio/libesp_stdio.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory_ld_in_preprocess esp-idf/esp_system/sections_ld_in_preprocess esp-idf/esp_timer/libesp_timer.a esp-idf/esp_wifi/libesp_wifi.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/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/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/libeverest.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/libp256m.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.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/rt/librt.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/tcp_transport/libtcp_transport.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a + + +############################################# +# Custom command for esp-idf\esp_system\ld\sections.ld + +build esp-idf/esp_system/ld/sections.ld | ${cmake_ninja_workdir}esp-idf/esp_system/ld/sections.ld: CUSTOM_COMMAND esp-idf/esp_system/ld/sections.ld.in C$:/esp/v6.0/esp-idf/components/xtensa/linker.lf C$:/esp/v6.0/esp-idf/components/esp_driver_gpio/linker.lf C$:/esp/v6.0/esp-idf/components/esp_pm/linker.lf C$:/esp/v6.0/esp-idf/components/esp_mm/linker.lf C$:/esp/v6.0/esp-idf/components/esp_driver_dma/linker.lf C$:/esp/v6.0/esp-idf/components/esp_hal_wdt/linker.lf C$:/esp/v6.0/esp-idf/components/spi_flash/linker.lf C$:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/linker.lf C$:/esp/v6.0/esp-idf/components/esp_system/linker.lf C$:/esp/v6.0/esp-idf/components/esp_system/app.lf C$:/esp/v6.0/esp-idf/components/esp_common/common.lf C$:/esp/v6.0/esp-idf/components/esp_common/soc.lf C$:/esp/v6.0/esp-idf/components/esp_rom/linker.lf C$:/esp/v6.0/esp-idf/components/hal/linker.lf C$:/esp/v6.0/esp-idf/components/log/linker.lf C$:/esp/v6.0/esp-idf/components/heap/linker.lf C$:/esp/v6.0/esp-idf/components/soc/linker.lf C$:/esp/v6.0/esp-idf/components/esp_hal_pmu/linker.lf C$:/esp/v6.0/esp-idf/components/esp_hw_support/linker.lf C$:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/linker.lf C$:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/linker.lf C$:/esp/v6.0/esp-idf/components/freertos/linker_common.lf C$:/esp/v6.0/esp-idf/components/freertos/linker.lf C$:/esp/v6.0/esp-idf/components/esp_libc/src/esp_libc.lf C$:/esp/v6.0/esp-idf/components/esp_libc/src/system_libs.lf C$:/esp/v6.0/esp-idf/components/esp_libc/src/picolibc/libc.lf C$:/esp/v6.0/esp-idf/components/esp_ringbuf/linker.lf C$:/esp/v6.0/esp-idf/components/esp_psram/linker.lf C$:/esp/v6.0/esp-idf/components/esp_driver_uart/linker.lf C$:/esp/v6.0/esp-idf/components/esp_driver_gptimer/linker.lf C$:/esp/v6.0/esp-idf/components/app_trace/linker.lf C$:/esp/v6.0/esp-idf/components/esp_event/linker.lf C$:/esp/v6.0/esp-idf/components/esp_phy/linker.lf C$:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/linker.lf C$:/esp/v6.0/esp-idf/components/vfs/linker.lf C$:/esp/v6.0/esp-idf/components/lwip/linker.lf C$:/esp/v6.0/esp-idf/components/esp_netif/linker.lf C$:/esp/v6.0/esp-idf/components/wpa_supplicant/linker.lf C$:/esp/v6.0/esp-idf/components/esp_wifi/linker.lf C$:/esp/v6.0/esp-idf/components/esp_driver_spi/linker.lf C$:/esp/v6.0/esp-idf/components/esp_gdbstub/linker.lf C$:/esp/v6.0/esp-idf/components/driver/i2c/linker.lf C$:/esp/v6.0/esp-idf/components/driver/twai/linker.lf C$:/esp/v6.0/esp-idf/components/esp_driver_i2s/linker.lf C$:/esp/v6.0/esp-idf/components/esp_adc/linker.lf C$:/esp/v6.0/esp-idf/components/esp_driver_ana_cmpr/linker.lf C$:/esp/v6.0/esp-idf/components/esp_driver_bitscrambler/linker.lf C$:/esp/v6.0/esp-idf/components/esp_driver_isp/linker.lf C$:/esp/v6.0/esp-idf/components/esp_driver_dac/linker.lf C$:/esp/v6.0/esp-idf/components/esp_driver_i2c/linker.lf C$:/esp/v6.0/esp-idf/components/esp_driver_i3c/linker.lf C$:/esp/v6.0/esp-idf/components/esp_driver_ledc/linker.lf C$:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/linker.lf C$:/esp/v6.0/esp-idf/components/esp_driver_parlio/linker.lf C$:/esp/v6.0/esp-idf/components/esp_driver_pcnt/linker.lf C$:/esp/v6.0/esp-idf/components/esp_driver_rmt/linker.lf C$:/esp/v6.0/esp-idf/components/esp_driver_sdm/linker.lf C$:/esp/v6.0/esp-idf/components/esp_driver_twai/linker.lf C$:/esp/v6.0/esp-idf/components/esp_eth/linker.lf C$:/esp/v6.0/esp-idf/components/esp_lcd/linker.lf C$:/esp/v6.0/esp-idf/components/esp_trace/linker.lf C$:/esp/v6.0/esp-idf/components/ieee802154/linker.lf C$:/esp/v6.0/esp-idf/components/openthread/linker.lf esp-idf/xtensa/libxtensa.a esp-idf/cxx/libcxx.a esp-idf/esp_libc/libesp_libc.a esp-idf/freertos/libfreertos.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/heap/libheap.a esp-idf/log/liblog.a esp-idf/soc/libsoc.a esp-idf/hal/libhal.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_common/libesp_common.a esp-idf/esp_system/libesp_system.a esp-idf/esp_stdio/libesp_stdio.a esp-idf/xtensa/libxtensa.a C$:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a esp-idf/vfs/libvfs.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_hal_uart/libesp_hal_uart.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_hal_gpio/libesp_hal_gpio.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_hal_timg/libesp_hal_timg.a esp-idf/esp_driver_dma/libesp_driver_dma.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_hal_mspi/libesp_hal_mspi.a esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a esp-idf/esp_hal_clock/libesp_hal_clock.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hal_security/libesp_hal_security.a esp-idf/efuse/libefuse.a esp-idf/esp_partition/libesp_partition.a esp-idf/app_update/libapp_update.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/lwip/liblwip.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a esp-idf/esp_security/libesp_security.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/libeverest.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/libp256m.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_hal_wdt/libesp_hal_wdt.a esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a esp-idf/esp_hal_i2s/libesp_hal_i2s.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_psram/libesp_psram.a esp-idf/vfs/libvfs.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_hal_i2c/libesp_hal_i2c.a esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_event/libesp_event.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp-tls/libesp-tls.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_netif/libesp_netif.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/esp_coex/libesp_coex.a C$:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libcore.a C$:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libespnow.a C$:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libmesh.a C$:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a C$:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libpp.a C$:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a C$:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libwapi.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/pthread/libpthread.a esp-idf/esp_stdio/libesp_stdio.a esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a esp-idf/esp_hal_clock/libesp_hal_clock.a esp-idf/esp_hal_mspi/libesp_hal_mspi.a esp-idf/esp_hal_security/libesp_hal_security.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_hal_uart/libesp_hal_uart.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_driver_dma/libesp_driver_dma.a esp-idf/esp_hal_timg/libesp_hal_timg.a esp-idf/esp_hal_wdt/libesp_hal_wdt.a esp-idf/esp_hal_i2s/libesp_hal_i2s.a esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.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_hal_gpio/libesp_hal_gpio.a esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/esp_libc/libesp_libc.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_psram/libesp_psram.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_sec_provider/libnvs_sec_provider.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_phy/libesp_phy.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/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/unity/libunity.a esp-idf/cmock/libcmock.a esp-idf/unity/libunity.a esp-idf/console/libconsole.a esp-idf/esp_hal_i2c/libesp_hal_i2c.a esp-idf/esp_hal_twai/libesp_hal_twai.a esp-idf/driver/libdriver.a esp-idf/esp_hal_twai/libesp_hal_twai.a esp-idf/http_parser/libhttp_parser.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_adc/libesp_adc.a esp-idf/esp_driver_cam/libesp_driver_cam.a esp-idf/esp_driver_dac/libesp_driver_dac.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_hal_ledc/libesp_hal_ledc.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_hal_ledc/libesp_hal_ledc.a esp-idf/esp_hal_mcpwm/libesp_hal_mcpwm.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_hal_mcpwm/libesp_hal_mcpwm.a esp-idf/esp_hal_pcnt/libesp_hal_pcnt.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_hal_pcnt/libesp_hal_pcnt.a esp-idf/esp_hal_rmt/libesp_hal_rmt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_hal_rmt/libesp_hal_rmt.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sd_intf/libesp_driver_sd_intf.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdio/libesp_driver_sdio.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sd_intf/libesp_driver_sd_intf.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_hal_lcd/libesp_hal_lcd.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_https_server/libesp_https_server.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_hal_lcd/libesp_hal_lcd.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/console/libconsole.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/protocomm/libprotocomm.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/fatfs/libfatfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/perfmon/libperfmon.a esp-idf/rt/librt.a esp-idf/spiffs/libspiffs.a esp-idf/main/libmain.a C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/sdkconfig || 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_bootloader_format/libesp_bootloader_format.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_cam/libesp_driver_cam.a esp-idf/esp_driver_dac/libesp_driver_dac.a esp-idf/esp_driver_dma/libesp_driver_dma.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sd_intf/libesp_driver_sd_intf.a esp-idf/esp_driver_sdio/libesp_driver_sdio.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.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_hal_ana_conv/libesp_hal_ana_conv.a esp-idf/esp_hal_clock/libesp_hal_clock.a esp-idf/esp_hal_gpio/libesp_hal_gpio.a esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a esp-idf/esp_hal_i2c/libesp_hal_i2c.a esp-idf/esp_hal_i2s/libesp_hal_i2s.a esp-idf/esp_hal_lcd/libesp_hal_lcd.a esp-idf/esp_hal_ledc/libesp_hal_ledc.a esp-idf/esp_hal_mcpwm/libesp_hal_mcpwm.a esp-idf/esp_hal_mspi/libesp_hal_mspi.a esp-idf/esp_hal_pcnt/libesp_hal_pcnt.a esp-idf/esp_hal_rmt/libesp_hal_rmt.a esp-idf/esp_hal_security/libesp_hal_security.a esp-idf/esp_hal_timg/libesp_hal_timg.a esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a esp-idf/esp_hal_twai/libesp_hal_twai.a esp-idf/esp_hal_uart/libesp_hal_uart.a esp-idf/esp_hal_wdt/libesp_hal_wdt.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_https_server/libesp_https_server.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_libc/libesp_libc.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_psram/libesp_psram.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_stdio/libesp_stdio.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory_ld_in_preprocess esp-idf/esp_system/sections_ld_in_preprocess esp-idf/esp_timer/libesp_timer.a esp-idf/esp_wifi/libesp_wifi.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/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/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/libeverest.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/libp256m.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.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/rt/librt.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/tcp_transport/libtcp_transport.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a + COMMAND = CMakeFiles\sections.ld-d65dc84.bat 1492a375222262fb + DESC = Generating esp-idf/esp_system/ld/sections.ld + restat = 1 + + +############################################# +# Phony custom command for CMakeFiles\gen_modbus_tcp_esp32_binary + +build CMakeFiles/gen_modbus_tcp_esp32_binary | ${cmake_ninja_workdir}CMakeFiles/gen_modbus_tcp_esp32_binary: phony .bin_timestamp || __ldgen_output_sections.ld _project_elf_src 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_bootloader_format/libesp_bootloader_format.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_cam/libesp_driver_cam.a esp-idf/esp_driver_dac/libesp_driver_dac.a esp-idf/esp_driver_dma/libesp_driver_dma.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sd_intf/libesp_driver_sd_intf.a esp-idf/esp_driver_sdio/libesp_driver_sdio.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.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_hal_ana_conv/libesp_hal_ana_conv.a esp-idf/esp_hal_clock/libesp_hal_clock.a esp-idf/esp_hal_gpio/libesp_hal_gpio.a esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a esp-idf/esp_hal_i2c/libesp_hal_i2c.a esp-idf/esp_hal_i2s/libesp_hal_i2s.a esp-idf/esp_hal_lcd/libesp_hal_lcd.a esp-idf/esp_hal_ledc/libesp_hal_ledc.a esp-idf/esp_hal_mcpwm/libesp_hal_mcpwm.a esp-idf/esp_hal_mspi/libesp_hal_mspi.a esp-idf/esp_hal_pcnt/libesp_hal_pcnt.a esp-idf/esp_hal_rmt/libesp_hal_rmt.a esp-idf/esp_hal_security/libesp_hal_security.a esp-idf/esp_hal_timg/libesp_hal_timg.a esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a esp-idf/esp_hal_twai/libesp_hal_twai.a esp-idf/esp_hal_uart/libesp_hal_uart.a esp-idf/esp_hal_wdt/libesp_hal_wdt.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_https_server/libesp_https_server.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_libc/libesp_libc.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_psram/libesp_psram.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_stdio/libesp_stdio.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory_ld_in_preprocess esp-idf/esp_system/sections_ld_in_preprocess esp-idf/esp_timer/libesp_timer.a esp-idf/esp_wifi/libesp_wifi.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/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/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/libeverest.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/libp256m.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.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/rt/librt.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/tcp_transport/libtcp_transport.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a modbus_tcp_esp32.elf + + +############################################# +# Custom command for .bin_timestamp + +build .bin_timestamp | ${cmake_ninja_workdir}.bin_timestamp: CUSTOM_COMMAND modbus_tcp_esp32.elf || __ldgen_output_sections.ld _project_elf_src 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_bootloader_format/libesp_bootloader_format.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_cam/libesp_driver_cam.a esp-idf/esp_driver_dac/libesp_driver_dac.a esp-idf/esp_driver_dma/libesp_driver_dma.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sd_intf/libesp_driver_sd_intf.a esp-idf/esp_driver_sdio/libesp_driver_sdio.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.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_hal_ana_conv/libesp_hal_ana_conv.a esp-idf/esp_hal_clock/libesp_hal_clock.a esp-idf/esp_hal_gpio/libesp_hal_gpio.a esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a esp-idf/esp_hal_i2c/libesp_hal_i2c.a esp-idf/esp_hal_i2s/libesp_hal_i2s.a esp-idf/esp_hal_lcd/libesp_hal_lcd.a esp-idf/esp_hal_ledc/libesp_hal_ledc.a esp-idf/esp_hal_mcpwm/libesp_hal_mcpwm.a esp-idf/esp_hal_mspi/libesp_hal_mspi.a esp-idf/esp_hal_pcnt/libesp_hal_pcnt.a esp-idf/esp_hal_rmt/libesp_hal_rmt.a esp-idf/esp_hal_security/libesp_hal_security.a esp-idf/esp_hal_timg/libesp_hal_timg.a esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a esp-idf/esp_hal_twai/libesp_hal_twai.a esp-idf/esp_hal_uart/libesp_hal_uart.a esp-idf/esp_hal_wdt/libesp_hal_wdt.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_https_server/libesp_https_server.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_libc/libesp_libc.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_psram/libesp_psram.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_stdio/libesp_stdio.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory_ld_in_preprocess esp-idf/esp_system/sections_ld_in_preprocess esp-idf/esp_timer/libesp_timer.a esp-idf/esp_wifi/libesp_wifi.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/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/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/libeverest.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/libp256m.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.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/rt/librt.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/tcp_transport/libtcp_transport.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a modbus_tcp_esp32.elf + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe -m esptool --chip esp32 elf2image --flash-mode dio --flash-freq 40m --flash-size 2MB --elf-sha256-offset 0xb0 --min-rev-full 0 --max-rev-full 399 -o C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/modbus_tcp_esp32.bin C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/modbus_tcp_esp32.elf && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E echo "Generated C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/modbus_tcp_esp32.bin" && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E md5sum C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/modbus_tcp_esp32.bin > C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/.bin_timestamp" + DESC = Generating binary image from built executable + restat = 1 + + +############################################# +# Phony custom command for CMakeFiles\gen_project_binary + +build CMakeFiles/gen_project_binary | ${cmake_ninja_workdir}CMakeFiles/gen_project_binary: phony || __ldgen_output_sections.ld _project_elf_src 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_bootloader_format/libesp_bootloader_format.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_cam/libesp_driver_cam.a esp-idf/esp_driver_dac/libesp_driver_dac.a esp-idf/esp_driver_dma/libesp_driver_dma.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sd_intf/libesp_driver_sd_intf.a esp-idf/esp_driver_sdio/libesp_driver_sdio.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.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_hal_ana_conv/libesp_hal_ana_conv.a esp-idf/esp_hal_clock/libesp_hal_clock.a esp-idf/esp_hal_gpio/libesp_hal_gpio.a esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a esp-idf/esp_hal_i2c/libesp_hal_i2c.a esp-idf/esp_hal_i2s/libesp_hal_i2s.a esp-idf/esp_hal_lcd/libesp_hal_lcd.a esp-idf/esp_hal_ledc/libesp_hal_ledc.a esp-idf/esp_hal_mcpwm/libesp_hal_mcpwm.a esp-idf/esp_hal_mspi/libesp_hal_mspi.a esp-idf/esp_hal_pcnt/libesp_hal_pcnt.a esp-idf/esp_hal_rmt/libesp_hal_rmt.a esp-idf/esp_hal_security/libesp_hal_security.a esp-idf/esp_hal_timg/libesp_hal_timg.a esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a esp-idf/esp_hal_twai/libesp_hal_twai.a esp-idf/esp_hal_uart/libesp_hal_uart.a esp-idf/esp_hal_wdt/libesp_hal_wdt.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_https_server/libesp_https_server.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_libc/libesp_libc.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_psram/libesp_psram.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_stdio/libesp_stdio.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory_ld_in_preprocess esp-idf/esp_system/sections_ld_in_preprocess esp-idf/esp_timer/libesp_timer.a esp-idf/esp_wifi/libesp_wifi.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/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/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/libeverest.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/libp256m.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.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/rt/librt.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/tcp_transport/libtcp_transport.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a gen_modbus_tcp_esp32_binary modbus_tcp_esp32.elf + + +############################################# +# Phony custom command for CMakeFiles\app + +build CMakeFiles/app | ${cmake_ninja_workdir}CMakeFiles/app: phony || __ldgen_output_sections.ld _project_elf_src app_check_size 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_bootloader_format/libesp_bootloader_format.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_cam/libesp_driver_cam.a esp-idf/esp_driver_dac/libesp_driver_dac.a esp-idf/esp_driver_dma/libesp_driver_dma.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sd_intf/libesp_driver_sd_intf.a esp-idf/esp_driver_sdio/libesp_driver_sdio.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.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_hal_ana_conv/libesp_hal_ana_conv.a esp-idf/esp_hal_clock/libesp_hal_clock.a esp-idf/esp_hal_gpio/libesp_hal_gpio.a esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a esp-idf/esp_hal_i2c/libesp_hal_i2c.a esp-idf/esp_hal_i2s/libesp_hal_i2s.a esp-idf/esp_hal_lcd/libesp_hal_lcd.a esp-idf/esp_hal_ledc/libesp_hal_ledc.a esp-idf/esp_hal_mcpwm/libesp_hal_mcpwm.a esp-idf/esp_hal_mspi/libesp_hal_mspi.a esp-idf/esp_hal_pcnt/libesp_hal_pcnt.a esp-idf/esp_hal_rmt/libesp_hal_rmt.a esp-idf/esp_hal_security/libesp_hal_security.a esp-idf/esp_hal_timg/libesp_hal_timg.a esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a esp-idf/esp_hal_twai/libesp_hal_twai.a esp-idf/esp_hal_uart/libesp_hal_uart.a esp-idf/esp_hal_wdt/libesp_hal_wdt.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_https_server/libesp_https_server.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_libc/libesp_libc.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_psram/libesp_psram.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_stdio/libesp_stdio.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory_ld_in_preprocess esp-idf/esp_system/sections_ld_in_preprocess esp-idf/esp_timer/libesp_timer.a esp-idf/esp_wifi/libesp_wifi.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/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/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/libeverest.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/libp256m.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.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/rt/librt.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/tcp_transport/libtcp_transport.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a gen_modbus_tcp_esp32_binary gen_project_binary modbus_tcp_esp32.elf + + +############################################# +# Custom command for CMakeFiles\encrypted-app-flash + +build CMakeFiles/encrypted-app-flash | ${cmake_ninja_workdir}CMakeFiles/encrypted-app-flash: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E echo "Error: The target encrypted-app-flash requires" && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E echo "CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT to be enabled." && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E env "FAIL_MESSAGE=Failed executing target (see errors on lines above)" C:/Espressif/tools/cmake/4.0.3/bin/cmake.exe -P C:/esp/v6.0/esp-idf/tools/cmake/scripts/fail.cmake" + + +############################################# +# Custom command for CMakeFiles\encrypted-flash + +build CMakeFiles/encrypted-flash | ${cmake_ninja_workdir}CMakeFiles/encrypted-flash: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E echo "Error: The target encrypted-flash requires" && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E echo "CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT to be enabled." && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E env "FAIL_MESSAGE=Failed executing target (see errors on lines above)" C:/Espressif/tools/cmake/4.0.3/bin/cmake.exe -P C:/esp/v6.0/esp-idf/tools/cmake/scripts/fail.cmake" + + +############################################# +# Custom command for CMakeFiles\erase-flash + +build CMakeFiles/erase-flash | ${cmake_ninja_workdir}CMakeFiles/erase-flash: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\esp\v6.0\esp-idf\components\esptool_py && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -D IDF_PATH=C:/esp/v6.0/esp-idf -D SERIAL_TOOL=C:/Espressif/tools/python/v6.0/venv/Scripts/python.exe;-m;esptool;--chip;esp32 -D SERIAL_TOOL_ARGS=erase-flash -P run_serial_tool.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\merge-bin + +build CMakeFiles/merge-bin | ${cmake_ninja_workdir}CMakeFiles/merge-bin: CUSTOM_COMMAND || __ldgen_output_sections.ld _project_elf_src bootloader 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_bootloader_format/libesp_bootloader_format.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_cam/libesp_driver_cam.a esp-idf/esp_driver_dac/libesp_driver_dac.a esp-idf/esp_driver_dma/libesp_driver_dma.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sd_intf/libesp_driver_sd_intf.a esp-idf/esp_driver_sdio/libesp_driver_sdio.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.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_hal_ana_conv/libesp_hal_ana_conv.a esp-idf/esp_hal_clock/libesp_hal_clock.a esp-idf/esp_hal_gpio/libesp_hal_gpio.a esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a esp-idf/esp_hal_i2c/libesp_hal_i2c.a esp-idf/esp_hal_i2s/libesp_hal_i2s.a esp-idf/esp_hal_lcd/libesp_hal_lcd.a esp-idf/esp_hal_ledc/libesp_hal_ledc.a esp-idf/esp_hal_mcpwm/libesp_hal_mcpwm.a esp-idf/esp_hal_mspi/libesp_hal_mspi.a esp-idf/esp_hal_pcnt/libesp_hal_pcnt.a esp-idf/esp_hal_rmt/libesp_hal_rmt.a esp-idf/esp_hal_security/libesp_hal_security.a esp-idf/esp_hal_timg/libesp_hal_timg.a esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a esp-idf/esp_hal_twai/libesp_hal_twai.a esp-idf/esp_hal_uart/libesp_hal_uart.a esp-idf/esp_hal_wdt/libesp_hal_wdt.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_https_server/libesp_https_server.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_libc/libesp_libc.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_psram/libesp_psram.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_stdio/libesp_stdio.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory_ld_in_preprocess esp-idf/esp_system/sections_ld_in_preprocess esp-idf/esp_timer/libesp_timer.a esp-idf/esp_wifi/libesp_wifi.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/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/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/libeverest.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/libp256m.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.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/rt/librt.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/tcp_transport/libtcp_transport.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a gen_modbus_tcp_esp32_binary gen_project_binary modbus_tcp_esp32.elf + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\esp\v6.0\esp-idf\components\esptool_py && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -D IDF_PATH=C:/esp/v6.0/esp-idf -D SERIAL_TOOL=C:/Espressif/tools/python/v6.0/venv/Scripts/python.exe;-m;esptool;--chip;esp32 -D SERIAL_TOOL_ARGS=merge-bin;-o;C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/merged-binary.bin;@C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/flash_args -D WORKING_DIRECTORY=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build -P run_serial_tool.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\monitor + +build CMakeFiles/monitor | ${cmake_ninja_workdir}CMakeFiles/monitor: CUSTOM_COMMAND || __ldgen_output_sections.ld _project_elf_src 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_bootloader_format/libesp_bootloader_format.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_cam/libesp_driver_cam.a esp-idf/esp_driver_dac/libesp_driver_dac.a esp-idf/esp_driver_dma/libesp_driver_dma.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sd_intf/libesp_driver_sd_intf.a esp-idf/esp_driver_sdio/libesp_driver_sdio.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.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_hal_ana_conv/libesp_hal_ana_conv.a esp-idf/esp_hal_clock/libesp_hal_clock.a esp-idf/esp_hal_gpio/libesp_hal_gpio.a esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a esp-idf/esp_hal_i2c/libesp_hal_i2c.a esp-idf/esp_hal_i2s/libesp_hal_i2s.a esp-idf/esp_hal_lcd/libesp_hal_lcd.a esp-idf/esp_hal_ledc/libesp_hal_ledc.a esp-idf/esp_hal_mcpwm/libesp_hal_mcpwm.a esp-idf/esp_hal_mspi/libesp_hal_mspi.a esp-idf/esp_hal_pcnt/libesp_hal_pcnt.a esp-idf/esp_hal_rmt/libesp_hal_rmt.a esp-idf/esp_hal_security/libesp_hal_security.a esp-idf/esp_hal_timg/libesp_hal_timg.a esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a esp-idf/esp_hal_twai/libesp_hal_twai.a esp-idf/esp_hal_uart/libesp_hal_uart.a esp-idf/esp_hal_wdt/libesp_hal_wdt.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_https_server/libesp_https_server.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_libc/libesp_libc.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_psram/libesp_psram.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_stdio/libesp_stdio.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory_ld_in_preprocess esp-idf/esp_system/sections_ld_in_preprocess esp-idf/esp_timer/libesp_timer.a esp-idf/esp_wifi/libesp_wifi.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/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/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/libeverest.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/libp256m.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.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/rt/librt.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/tcp_transport/libtcp_transport.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a modbus_tcp_esp32.elf + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\esp\v6.0\esp-idf\components\esptool_py && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -D IDF_PATH=C:/esp/v6.0/esp-idf -D "SERIAL_TOOL=C:/Espressif/tools/python/v6.0/venv/Scripts/python.exe -m esp_idf_monitor" -D SERIAL_TOOL_ARGS=--toolchain-prefix;xtensa-esp32-elf-;;--target;esp32;;--revision;0;;C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/modbus_tcp_esp32.elf -D WORKING_DIRECTORY=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build -P run_serial_tool.cmake" + pool = console + + +############################################# +# Custom command for CMakeFiles\app_check_size + +build CMakeFiles/app_check_size | ${cmake_ninja_workdir}CMakeFiles/app_check_size: CUSTOM_COMMAND || __ldgen_output_sections.ld _project_elf_src 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_bootloader_format/libesp_bootloader_format.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_cam/libesp_driver_cam.a esp-idf/esp_driver_dac/libesp_driver_dac.a esp-idf/esp_driver_dma/libesp_driver_dma.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sd_intf/libesp_driver_sd_intf.a esp-idf/esp_driver_sdio/libesp_driver_sdio.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.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_hal_ana_conv/libesp_hal_ana_conv.a esp-idf/esp_hal_clock/libesp_hal_clock.a esp-idf/esp_hal_gpio/libesp_hal_gpio.a esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a esp-idf/esp_hal_i2c/libesp_hal_i2c.a esp-idf/esp_hal_i2s/libesp_hal_i2s.a esp-idf/esp_hal_lcd/libesp_hal_lcd.a esp-idf/esp_hal_ledc/libesp_hal_ledc.a esp-idf/esp_hal_mcpwm/libesp_hal_mcpwm.a esp-idf/esp_hal_mspi/libesp_hal_mspi.a esp-idf/esp_hal_pcnt/libesp_hal_pcnt.a esp-idf/esp_hal_rmt/libesp_hal_rmt.a esp-idf/esp_hal_security/libesp_hal_security.a esp-idf/esp_hal_timg/libesp_hal_timg.a esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a esp-idf/esp_hal_twai/libesp_hal_twai.a esp-idf/esp_hal_uart/libesp_hal_uart.a esp-idf/esp_hal_wdt/libesp_hal_wdt.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_https_server/libesp_https_server.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_libc/libesp_libc.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_psram/libesp_psram.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_stdio/libesp_stdio.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory_ld_in_preprocess esp-idf/esp_system/sections_ld_in_preprocess esp-idf/esp_timer/libesp_timer.a esp-idf/esp_wifi/libesp_wifi.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/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/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/libeverest.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/libp256m.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.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/rt/librt.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/tcp_transport/libtcp_transport.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a gen_modbus_tcp_esp32_binary gen_project_binary modbus_tcp_esp32.elf + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe C:/esp/v6.0/esp-idf/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/partition_table/partition-table.bin C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/modbus_tcp_esp32.bin" + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/edit_cache: phony esp-idf/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/rebuild_cache: phony esp-idf/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/install: phony esp-idf/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/install/local: phony esp-idf/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/install/strip: phony esp-idf/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_xtensa + + +############################################# +# Order-only phony target for __idf_xtensa + +build cmake_object_order_depends_target___idf_xtensa: phony || cmake_object_order_depends_target___idf_esp_stdio + +build esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj: C_COMPILER____idf_xtensa_unscanned_ C$:/esp/v6.0/esp-idf/components/xtensa/eri.c || cmake_object_order_depends_target___idf_xtensa + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\eri.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + OBJECT_FILE_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + TARGET_COMPILE_PDB = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\__idf_xtensa.pdb + TARGET_PDB = esp-idf\xtensa\libxtensa.pdb + +build esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj: C_COMPILER____idf_xtensa_unscanned_ C$:/esp/v6.0/esp-idf/components/xtensa/xt_trax.c || cmake_object_order_depends_target___idf_xtensa + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\xt_trax.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + OBJECT_FILE_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + TARGET_COMPILE_PDB = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\__idf_xtensa.pdb + TARGET_PDB = esp-idf\xtensa\libxtensa.pdb + +build esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_context.S.obj: ASM_COMPILER____idf_xtensa_unscanned_ C$:/esp/v6.0/esp-idf/components/xtensa/xtensa_context.S || cmake_object_order_depends_target___idf_xtensa + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\xtensa_context.S.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/asmflags" -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + OBJECT_FILE_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + TARGET_COMPILE_PDB = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\__idf_xtensa.pdb + TARGET_PDB = esp-idf\xtensa\libxtensa.pdb + +build esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr_asm.S.obj: ASM_COMPILER____idf_xtensa_unscanned_ C$:/esp/v6.0/esp-idf/components/xtensa/xtensa_intr_asm.S || cmake_object_order_depends_target___idf_xtensa + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\xtensa_intr_asm.S.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/asmflags" -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + OBJECT_FILE_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + TARGET_COMPILE_PDB = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\__idf_xtensa.pdb + TARGET_PDB = esp-idf\xtensa\libxtensa.pdb + +build esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr.c.obj: C_COMPILER____idf_xtensa_unscanned_ C$:/esp/v6.0/esp-idf/components/xtensa/xtensa_intr.c || cmake_object_order_depends_target___idf_xtensa + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\xtensa_intr.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + OBJECT_FILE_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + TARGET_COMPILE_PDB = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\__idf_xtensa.pdb + TARGET_PDB = esp-idf\xtensa\libxtensa.pdb + +build esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_vectors.S.obj: ASM_COMPILER____idf_xtensa_unscanned_ C$:/esp/v6.0/esp-idf/components/xtensa/xtensa_vectors.S || cmake_object_order_depends_target___idf_xtensa + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\xtensa_vectors.S.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/asmflags" -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + OBJECT_FILE_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + TARGET_COMPILE_PDB = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\__idf_xtensa.pdb + TARGET_PDB = esp-idf\xtensa\libxtensa.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_xtensa + + +############################################# +# Link the static library esp-idf\xtensa\libxtensa.a + +build 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_context.S.obj esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr_asm.S.obj esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr.c.obj esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_vectors.S.obj || esp-idf/esp_stdio/libesp_stdio.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\xtensa\CMakeFiles\__idf_xtensa.dir\__idf_xtensa.pdb + TARGET_FILE = esp-idf\xtensa\libxtensa.a + TARGET_PDB = esp-idf\xtensa\libxtensa.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/xtensa/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\xtensa && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/xtensa/edit_cache: phony esp-idf/xtensa/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/xtensa/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\xtensa && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/xtensa/rebuild_cache: phony esp-idf/xtensa/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/xtensa/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/xtensa/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/xtensa/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\xtensa && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/xtensa/install: phony esp-idf/xtensa/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/xtensa/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/xtensa/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\xtensa && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/xtensa/install/local: phony esp-idf/xtensa/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/xtensa/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/xtensa/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\xtensa && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/xtensa/install/strip: phony esp-idf/xtensa/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_stdio + + +############################################# +# Order-only phony target for __idf_esp_stdio + +build cmake_object_order_depends_target___idf_esp_stdio: phony || cmake_object_order_depends_target___idf_esp_hal_gpspi + +build esp-idf/esp_stdio/CMakeFiles/__idf_esp_stdio.dir/stdio_vfs.c.obj: C_COMPILER____idf_esp_stdio_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_stdio/stdio_vfs.c || cmake_object_order_depends_target___idf_esp_stdio + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_stdio\CMakeFiles\__idf_esp_stdio.dir\stdio_vfs.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include + OBJECT_DIR = esp-idf\esp_stdio\CMakeFiles\__idf_esp_stdio.dir + OBJECT_FILE_DIR = esp-idf\esp_stdio\CMakeFiles\__idf_esp_stdio.dir + TARGET_COMPILE_PDB = esp-idf\esp_stdio\CMakeFiles\__idf_esp_stdio.dir\__idf_esp_stdio.pdb + TARGET_PDB = esp-idf\esp_stdio\libesp_stdio.pdb + +build esp-idf/esp_stdio/CMakeFiles/__idf_esp_stdio.dir/stdio_simple.c.obj: C_COMPILER____idf_esp_stdio_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_stdio/stdio_simple.c || cmake_object_order_depends_target___idf_esp_stdio + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_stdio\CMakeFiles\__idf_esp_stdio.dir\stdio_simple.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include + OBJECT_DIR = esp-idf\esp_stdio\CMakeFiles\__idf_esp_stdio.dir + OBJECT_FILE_DIR = esp-idf\esp_stdio\CMakeFiles\__idf_esp_stdio.dir + TARGET_COMPILE_PDB = esp-idf\esp_stdio\CMakeFiles\__idf_esp_stdio.dir\__idf_esp_stdio.pdb + TARGET_PDB = esp-idf\esp_stdio\libesp_stdio.pdb + +build esp-idf/esp_stdio/CMakeFiles/__idf_esp_stdio.dir/stdio_syscalls_simple.c.obj: C_COMPILER____idf_esp_stdio_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_stdio/stdio_syscalls_simple.c || cmake_object_order_depends_target___idf_esp_stdio + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_stdio\CMakeFiles\__idf_esp_stdio.dir\stdio_syscalls_simple.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include + OBJECT_DIR = esp-idf\esp_stdio\CMakeFiles\__idf_esp_stdio.dir + OBJECT_FILE_DIR = esp-idf\esp_stdio\CMakeFiles\__idf_esp_stdio.dir + TARGET_COMPILE_PDB = esp-idf\esp_stdio\CMakeFiles\__idf_esp_stdio.dir\__idf_esp_stdio.pdb + TARGET_PDB = esp-idf\esp_stdio\libesp_stdio.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_stdio + + +############################################# +# Link the static library esp-idf\esp_stdio\libesp_stdio.a + +build esp-idf/esp_stdio/libesp_stdio.a: C_STATIC_LIBRARY_LINKER____idf_esp_stdio_ esp-idf/esp_stdio/CMakeFiles/__idf_esp_stdio.dir/stdio_vfs.c.obj esp-idf/esp_stdio/CMakeFiles/__idf_esp_stdio.dir/stdio_simple.c.obj esp-idf/esp_stdio/CMakeFiles/__idf_esp_stdio.dir/stdio_syscalls_simple.c.obj || esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_stdio\CMakeFiles\__idf_esp_stdio.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_stdio\CMakeFiles\__idf_esp_stdio.dir\__idf_esp_stdio.pdb + TARGET_FILE = esp-idf\esp_stdio\libesp_stdio.a + TARGET_PDB = esp-idf\esp_stdio\libesp_stdio.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_stdio/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_stdio && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_stdio/edit_cache: phony esp-idf/esp_stdio/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_stdio/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_stdio && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_stdio/rebuild_cache: phony esp-idf/esp_stdio/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_stdio/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_stdio/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_stdio/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_stdio && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_stdio/install: phony esp-idf/esp_stdio/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_stdio/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_stdio/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_stdio && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_stdio/install/local: phony esp-idf/esp_stdio/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_stdio/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_stdio/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_stdio && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_stdio/install/strip: phony esp-idf/esp_stdio/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hal_dma/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_dma && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hal_dma/edit_cache: phony esp-idf/esp_hal_dma/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hal_dma/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_dma && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hal_dma/rebuild_cache: phony esp-idf/esp_hal_dma/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_hal_dma/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_hal_dma/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hal_dma/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_dma && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_hal_dma/install: phony esp-idf/esp_hal_dma/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_hal_dma/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hal_dma/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_dma && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_hal_dma/install/local: phony esp-idf/esp_hal_dma/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_hal_dma/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hal_dma/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_dma && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_hal_dma/install/strip: phony esp-idf/esp_hal_dma/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_hal_gpspi + + +############################################# +# Order-only phony target for __idf_esp_hal_gpspi + +build cmake_object_order_depends_target___idf_esp_hal_gpspi: phony || cmake_object_order_depends_target___idf_esp_hal_clock + +build esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/esp32/spi_periph.c.obj: C_COMPILER____idf_esp_hal_gpspi_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/spi_periph.c || cmake_object_order_depends_target___idf_esp_hal_gpspi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_gpspi\CMakeFiles\__idf_esp_hal_gpspi.dir\esp32\spi_periph.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_hal_gpspi\CMakeFiles\__idf_esp_hal_gpspi.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_gpspi\CMakeFiles\__idf_esp_hal_gpspi.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hal_gpspi\CMakeFiles\__idf_esp_hal_gpspi.dir\__idf_esp_hal_gpspi.pdb + TARGET_PDB = esp-idf\esp_hal_gpspi\libesp_hal_gpspi.pdb + +build esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_hal.c.obj: C_COMPILER____idf_esp_hal_gpspi_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_gpspi/spi_hal.c || cmake_object_order_depends_target___idf_esp_hal_gpspi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_gpspi\CMakeFiles\__idf_esp_hal_gpspi.dir\spi_hal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_hal_gpspi\CMakeFiles\__idf_esp_hal_gpspi.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_gpspi\CMakeFiles\__idf_esp_hal_gpspi.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_gpspi\CMakeFiles\__idf_esp_hal_gpspi.dir\__idf_esp_hal_gpspi.pdb + TARGET_PDB = esp-idf\esp_hal_gpspi\libesp_hal_gpspi.pdb + +build esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_hal_iram.c.obj: C_COMPILER____idf_esp_hal_gpspi_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_gpspi/spi_hal_iram.c || cmake_object_order_depends_target___idf_esp_hal_gpspi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_gpspi\CMakeFiles\__idf_esp_hal_gpspi.dir\spi_hal_iram.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_hal_gpspi\CMakeFiles\__idf_esp_hal_gpspi.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_gpspi\CMakeFiles\__idf_esp_hal_gpspi.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_gpspi\CMakeFiles\__idf_esp_hal_gpspi.dir\__idf_esp_hal_gpspi.pdb + TARGET_PDB = esp-idf\esp_hal_gpspi\libesp_hal_gpspi.pdb + +build esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_slave_hal.c.obj: C_COMPILER____idf_esp_hal_gpspi_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_gpspi/spi_slave_hal.c || cmake_object_order_depends_target___idf_esp_hal_gpspi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_gpspi\CMakeFiles\__idf_esp_hal_gpspi.dir\spi_slave_hal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_hal_gpspi\CMakeFiles\__idf_esp_hal_gpspi.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_gpspi\CMakeFiles\__idf_esp_hal_gpspi.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_gpspi\CMakeFiles\__idf_esp_hal_gpspi.dir\__idf_esp_hal_gpspi.pdb + TARGET_PDB = esp-idf\esp_hal_gpspi\libesp_hal_gpspi.pdb + +build esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_slave_hal_iram.c.obj: C_COMPILER____idf_esp_hal_gpspi_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_gpspi/spi_slave_hal_iram.c || cmake_object_order_depends_target___idf_esp_hal_gpspi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_gpspi\CMakeFiles\__idf_esp_hal_gpspi.dir\spi_slave_hal_iram.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_hal_gpspi\CMakeFiles\__idf_esp_hal_gpspi.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_gpspi\CMakeFiles\__idf_esp_hal_gpspi.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_gpspi\CMakeFiles\__idf_esp_hal_gpspi.dir\__idf_esp_hal_gpspi.pdb + TARGET_PDB = esp-idf\esp_hal_gpspi\libesp_hal_gpspi.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_hal_gpspi + + +############################################# +# Link the static library esp-idf\esp_hal_gpspi\libesp_hal_gpspi.a + +build esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a: C_STATIC_LIBRARY_LINKER____idf_esp_hal_gpspi_ esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/esp32/spi_periph.c.obj esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_hal.c.obj esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_hal_iram.c.obj esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_slave_hal.c.obj esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_slave_hal_iram.c.obj || esp-idf/esp_hal_clock/libesp_hal_clock.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_hal_gpspi\CMakeFiles\__idf_esp_hal_gpspi.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_hal_gpspi\CMakeFiles\__idf_esp_hal_gpspi.dir\__idf_esp_hal_gpspi.pdb + TARGET_FILE = esp-idf\esp_hal_gpspi\libesp_hal_gpspi.a + TARGET_PDB = esp-idf\esp_hal_gpspi\libesp_hal_gpspi.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hal_gpspi/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_gpspi && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hal_gpspi/edit_cache: phony esp-idf/esp_hal_gpspi/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hal_gpspi/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_gpspi && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hal_gpspi/rebuild_cache: phony esp-idf/esp_hal_gpspi/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_hal_gpspi/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_hal_gpspi/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hal_gpspi/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_gpspi && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_hal_gpspi/install: phony esp-idf/esp_hal_gpspi/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_hal_gpspi/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hal_gpspi/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_gpspi && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_hal_gpspi/install/local: phony esp-idf/esp_hal_gpspi/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_hal_gpspi/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hal_gpspi/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_gpspi && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_hal_gpspi/install/strip: phony esp-idf/esp_hal_gpspi/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_hal_clock + + +############################################# +# Order-only phony target for __idf_esp_hal_clock + +build cmake_object_order_depends_target___idf_esp_hal_clock: phony || cmake_object_order_depends_target___idf_esp_hal_mspi + +build esp-idf/esp_hal_clock/CMakeFiles/__idf_esp_hal_clock.dir/esp32/clk_tree_hal.c.obj: C_COMPILER____idf_esp_hal_clock_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/clk_tree_hal.c || cmake_object_order_depends_target___idf_esp_hal_clock + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_clock\CMakeFiles\__idf_esp_hal_clock.dir\esp32\clk_tree_hal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_hal_clock\CMakeFiles\__idf_esp_hal_clock.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_clock\CMakeFiles\__idf_esp_hal_clock.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hal_clock\CMakeFiles\__idf_esp_hal_clock.dir\__idf_esp_hal_clock.pdb + TARGET_PDB = esp-idf\esp_hal_clock\libesp_hal_clock.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_hal_clock + + +############################################# +# Link the static library esp-idf\esp_hal_clock\libesp_hal_clock.a + +build esp-idf/esp_hal_clock/libesp_hal_clock.a: C_STATIC_LIBRARY_LINKER____idf_esp_hal_clock_ esp-idf/esp_hal_clock/CMakeFiles/__idf_esp_hal_clock.dir/esp32/clk_tree_hal.c.obj || esp-idf/esp_hal_mspi/libesp_hal_mspi.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_hal_clock\CMakeFiles\__idf_esp_hal_clock.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_hal_clock\CMakeFiles\__idf_esp_hal_clock.dir\__idf_esp_hal_clock.pdb + TARGET_FILE = esp-idf\esp_hal_clock\libesp_hal_clock.a + TARGET_PDB = esp-idf\esp_hal_clock\libesp_hal_clock.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hal_clock/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_clock && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hal_clock/edit_cache: phony esp-idf/esp_hal_clock/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hal_clock/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_clock && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hal_clock/rebuild_cache: phony esp-idf/esp_hal_clock/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_hal_clock/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_hal_clock/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hal_clock/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_clock && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_hal_clock/install: phony esp-idf/esp_hal_clock/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_hal_clock/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hal_clock/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_clock && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_hal_clock/install/local: phony esp-idf/esp_hal_clock/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_hal_clock/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hal_clock/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_clock && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_hal_clock/install/strip: phony esp-idf/esp_hal_clock/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_hal_mspi + + +############################################# +# Order-only phony target for __idf_esp_hal_mspi + +build cmake_object_order_depends_target___idf_esp_hal_mspi: phony || cmake_object_order_depends_target___idf_esp_hal_security + +build esp-idf/esp_hal_mspi/CMakeFiles/__idf_esp_hal_mspi.dir/spi_flash_hal.c.obj: C_COMPILER____idf_esp_hal_mspi_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_mspi/spi_flash_hal.c || cmake_object_order_depends_target___idf_esp_hal_mspi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_mspi\CMakeFiles\__idf_esp_hal_mspi.dir\spi_flash_hal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include + OBJECT_DIR = esp-idf\esp_hal_mspi\CMakeFiles\__idf_esp_hal_mspi.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_mspi\CMakeFiles\__idf_esp_hal_mspi.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_mspi\CMakeFiles\__idf_esp_hal_mspi.dir\__idf_esp_hal_mspi.pdb + TARGET_PDB = esp-idf\esp_hal_mspi\libesp_hal_mspi.pdb + +build esp-idf/esp_hal_mspi/CMakeFiles/__idf_esp_hal_mspi.dir/spi_flash_hal_iram.c.obj: C_COMPILER____idf_esp_hal_mspi_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_mspi/spi_flash_hal_iram.c || cmake_object_order_depends_target___idf_esp_hal_mspi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_mspi\CMakeFiles\__idf_esp_hal_mspi.dir\spi_flash_hal_iram.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include + OBJECT_DIR = esp-idf\esp_hal_mspi\CMakeFiles\__idf_esp_hal_mspi.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_mspi\CMakeFiles\__idf_esp_hal_mspi.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_mspi\CMakeFiles\__idf_esp_hal_mspi.dir\__idf_esp_hal_mspi.pdb + TARGET_PDB = esp-idf\esp_hal_mspi\libesp_hal_mspi.pdb + +build esp-idf/esp_hal_mspi/CMakeFiles/__idf_esp_hal_mspi.dir/spi_flash_encrypt_hal_iram.c.obj: C_COMPILER____idf_esp_hal_mspi_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_mspi/spi_flash_encrypt_hal_iram.c || cmake_object_order_depends_target___idf_esp_hal_mspi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_mspi\CMakeFiles\__idf_esp_hal_mspi.dir\spi_flash_encrypt_hal_iram.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include + OBJECT_DIR = esp-idf\esp_hal_mspi\CMakeFiles\__idf_esp_hal_mspi.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_mspi\CMakeFiles\__idf_esp_hal_mspi.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_mspi\CMakeFiles\__idf_esp_hal_mspi.dir\__idf_esp_hal_mspi.pdb + TARGET_PDB = esp-idf\esp_hal_mspi\libesp_hal_mspi.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_hal_mspi + + +############################################# +# Link the static library esp-idf\esp_hal_mspi\libesp_hal_mspi.a + +build esp-idf/esp_hal_mspi/libesp_hal_mspi.a: C_STATIC_LIBRARY_LINKER____idf_esp_hal_mspi_ esp-idf/esp_hal_mspi/CMakeFiles/__idf_esp_hal_mspi.dir/spi_flash_hal.c.obj esp-idf/esp_hal_mspi/CMakeFiles/__idf_esp_hal_mspi.dir/spi_flash_hal_iram.c.obj esp-idf/esp_hal_mspi/CMakeFiles/__idf_esp_hal_mspi.dir/spi_flash_encrypt_hal_iram.c.obj || esp-idf/esp_hal_security/libesp_hal_security.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_hal_mspi\CMakeFiles\__idf_esp_hal_mspi.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_hal_mspi\CMakeFiles\__idf_esp_hal_mspi.dir\__idf_esp_hal_mspi.pdb + TARGET_FILE = esp-idf\esp_hal_mspi\libesp_hal_mspi.a + TARGET_PDB = esp-idf\esp_hal_mspi\libesp_hal_mspi.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hal_mspi/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_mspi && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hal_mspi/edit_cache: phony esp-idf/esp_hal_mspi/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hal_mspi/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_mspi && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hal_mspi/rebuild_cache: phony esp-idf/esp_hal_mspi/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_hal_mspi/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_hal_mspi/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hal_mspi/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_mspi && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_hal_mspi/install: phony esp-idf/esp_hal_mspi/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_hal_mspi/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hal_mspi/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_mspi && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_hal_mspi/install/local: phony esp-idf/esp_hal_mspi/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_hal_mspi/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hal_mspi/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_mspi && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_hal_mspi/install/strip: phony esp-idf/esp_hal_mspi/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_blockdev/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_blockdev && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_blockdev/edit_cache: phony esp-idf/esp_blockdev/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_blockdev/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_blockdev && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_blockdev/rebuild_cache: phony esp-idf/esp_blockdev/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_blockdev/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_blockdev/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_blockdev/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_blockdev && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_blockdev/install: phony esp-idf/esp_blockdev/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_blockdev/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_blockdev/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_blockdev && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_blockdev/install/local: phony esp-idf/esp_blockdev/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_blockdev/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_blockdev/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_blockdev && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_blockdev/install/strip: phony esp-idf/esp_blockdev/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_hal_security + + +############################################# +# Order-only phony target for __idf_esp_hal_security + +build cmake_object_order_depends_target___idf_esp_hal_security: phony || cmake_object_order_depends_target___idf_esp_app_format + +build esp-idf/esp_hal_security/CMakeFiles/__idf_esp_hal_security.dir/mpi_hal.c.obj: C_COMPILER____idf_esp_hal_security_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_security/mpi_hal.c || cmake_object_order_depends_target___idf_esp_hal_security + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_security\CMakeFiles\__idf_esp_hal_security.dir\mpi_hal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_hal_security\CMakeFiles\__idf_esp_hal_security.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_security\CMakeFiles\__idf_esp_hal_security.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_security\CMakeFiles\__idf_esp_hal_security.dir\__idf_esp_hal_security.pdb + TARGET_PDB = esp-idf\esp_hal_security\libesp_hal_security.pdb + +build esp-idf/esp_hal_security/CMakeFiles/__idf_esp_hal_security.dir/sha_hal.c.obj: C_COMPILER____idf_esp_hal_security_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_security/sha_hal.c || cmake_object_order_depends_target___idf_esp_hal_security + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_security\CMakeFiles\__idf_esp_hal_security.dir\sha_hal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_hal_security\CMakeFiles\__idf_esp_hal_security.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_security\CMakeFiles\__idf_esp_hal_security.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_security\CMakeFiles\__idf_esp_hal_security.dir\__idf_esp_hal_security.pdb + TARGET_PDB = esp-idf\esp_hal_security\libesp_hal_security.pdb + +build esp-idf/esp_hal_security/CMakeFiles/__idf_esp_hal_security.dir/aes_hal.c.obj: C_COMPILER____idf_esp_hal_security_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_security/aes_hal.c || cmake_object_order_depends_target___idf_esp_hal_security + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_security\CMakeFiles\__idf_esp_hal_security.dir\aes_hal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_hal_security\CMakeFiles\__idf_esp_hal_security.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_security\CMakeFiles\__idf_esp_hal_security.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_security\CMakeFiles\__idf_esp_hal_security.dir\__idf_esp_hal_security.pdb + TARGET_PDB = esp-idf\esp_hal_security\libesp_hal_security.pdb + +build esp-idf/esp_hal_security/CMakeFiles/__idf_esp_hal_security.dir/mpu_hal.c.obj: C_COMPILER____idf_esp_hal_security_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_security/mpu_hal.c || cmake_object_order_depends_target___idf_esp_hal_security + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_security\CMakeFiles\__idf_esp_hal_security.dir\mpu_hal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_hal_security\CMakeFiles\__idf_esp_hal_security.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_security\CMakeFiles\__idf_esp_hal_security.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_security\CMakeFiles\__idf_esp_hal_security.dir\__idf_esp_hal_security.pdb + TARGET_PDB = esp-idf\esp_hal_security\libesp_hal_security.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_hal_security + + +############################################# +# Link the static library esp-idf\esp_hal_security\libesp_hal_security.a + +build esp-idf/esp_hal_security/libesp_hal_security.a: C_STATIC_LIBRARY_LINKER____idf_esp_hal_security_ esp-idf/esp_hal_security/CMakeFiles/__idf_esp_hal_security.dir/mpi_hal.c.obj esp-idf/esp_hal_security/CMakeFiles/__idf_esp_hal_security.dir/sha_hal.c.obj esp-idf/esp_hal_security/CMakeFiles/__idf_esp_hal_security.dir/aes_hal.c.obj esp-idf/esp_hal_security/CMakeFiles/__idf_esp_hal_security.dir/mpu_hal.c.obj || esp-idf/esp_app_format/libesp_app_format.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_hal_security\CMakeFiles\__idf_esp_hal_security.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_hal_security\CMakeFiles\__idf_esp_hal_security.dir\__idf_esp_hal_security.pdb + TARGET_FILE = esp-idf\esp_hal_security\libesp_hal_security.a + TARGET_PDB = esp-idf\esp_hal_security\libesp_hal_security.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hal_security/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_security && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hal_security/edit_cache: phony esp-idf/esp_hal_security/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hal_security/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_security && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hal_security/rebuild_cache: phony esp-idf/esp_hal_security/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_hal_security/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_hal_security/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hal_security/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_security && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_hal_security/install: phony esp-idf/esp_hal_security/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_hal_security/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hal_security/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_security && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_hal_security/install/local: phony esp-idf/esp_hal_security/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_hal_security/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hal_security/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_security && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_hal_security/install/strip: phony esp-idf/esp_hal_security/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for bootloader-flash + +build esp-idf/bootloader/CMakeFiles/bootloader-flash.util: CUSTOM_COMMAND bootloader + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\esp\v6.0\esp-idf\components\bootloader && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -D IDF_PATH=C:/esp/v6.0/esp-idf -D SERIAL_TOOL=C:/Espressif/tools/python/v6.0/venv/Scripts/python.exe;-m;esptool;--chip;esp32 -D SERIAL_TOOL_ARGS=--before=default-reset;--after=hard-reset;write-flash;@bootloader-flash_args -D WORKING_DIRECTORY=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build -P C:/esp/v6.0/esp-idf/components/esptool_py/run_serial_tool.cmake" + DESC = Running utility command for bootloader-flash + pool = console + restat = 1 + +build esp-idf/bootloader/bootloader-flash: phony esp-idf/bootloader/CMakeFiles/bootloader-flash.util + + +############################################# +# Utility command for encrypted-bootloader-flash + +build esp-idf/bootloader/encrypted-bootloader-flash: phony esp-idf/bootloader/CMakeFiles/encrypted-bootloader-flash + + +############################################# +# Utility command for edit_cache + +build esp-idf/bootloader/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\bootloader && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/bootloader/edit_cache: phony esp-idf/bootloader/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/bootloader/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\bootloader && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/bootloader/rebuild_cache: phony esp-idf/bootloader/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/bootloader/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/bootloader/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/bootloader/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\bootloader && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/bootloader/install: phony esp-idf/bootloader/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/bootloader/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/bootloader/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\bootloader && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/bootloader/install/local: phony esp-idf/bootloader/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/bootloader/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/bootloader/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\bootloader && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/bootloader/install/strip: phony esp-idf/bootloader/CMakeFiles/install/strip.util + + +############################################# +# Custom command for esp-idf\bootloader\CMakeFiles\encrypted-bootloader-flash + +build esp-idf/bootloader/CMakeFiles/encrypted-bootloader-flash | ${cmake_ninja_workdir}esp-idf/bootloader/CMakeFiles/encrypted-bootloader-flash: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\bootloader && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E echo "Error: The target encrypted-bootloader-flash requires" && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E echo "CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT to be enabled." && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E env "FAIL_MESSAGE=Failed executing target (see errors on lines above)" C:/Espressif/tools/cmake/4.0.3/bin/cmake.exe -P C:/esp/v6.0/esp-idf/tools/cmake/scripts/fail.cmake" + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esptool_py/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esptool_py && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esptool_py/edit_cache: phony esp-idf/esptool_py/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esptool_py/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esptool_py && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esptool_py/rebuild_cache: phony esp-idf/esptool_py/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esptool_py/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esptool_py/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esptool_py/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esptool_py && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esptool_py/install: phony esp-idf/esptool_py/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esptool_py/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esptool_py/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esptool_py && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esptool_py/install/local: phony esp-idf/esptool_py/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esptool_py/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esptool_py/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esptool_py && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esptool_py/install/strip: phony esp-idf/esptool_py/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for partition_table_bin + +build esp-idf/partition_table/partition_table_bin: phony esp-idf/partition_table/CMakeFiles/partition_table_bin partition_table/partition-table.bin + + +############################################# +# Utility command for partition-table + +build esp-idf/partition_table/partition-table: phony esp-idf/partition_table/CMakeFiles/partition-table esp-idf/partition_table/partition_table_bin + + +############################################# +# Utility command for partition_table + +build esp-idf/partition_table/partition_table: phony esp-idf/partition_table/CMakeFiles/partition_table esp-idf/partition_table/partition-table + + +############################################# +# Utility command for partition-table-flash + +build esp-idf/partition_table/CMakeFiles/partition-table-flash.util: CUSTOM_COMMAND esp-idf/partition_table/partition-table + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\esp\v6.0\esp-idf\components\partition_table && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -D IDF_PATH=C:/esp/v6.0/esp-idf -D SERIAL_TOOL=C:/Espressif/tools/python/v6.0/venv/Scripts/python.exe;-m;esptool;--chip;esp32 -D SERIAL_TOOL_ARGS=--before=default-reset;--after=hard-reset;write-flash;@partition-table-flash_args -D WORKING_DIRECTORY=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build -P C:/esp/v6.0/esp-idf/components/esptool_py/run_serial_tool.cmake" + DESC = Running utility command for partition-table-flash + pool = console + restat = 1 + +build esp-idf/partition_table/partition-table-flash: phony esp-idf/partition_table/CMakeFiles/partition-table-flash.util + + +############################################# +# Utility command for encrypted-partition-table-flash + +build esp-idf/partition_table/encrypted-partition-table-flash: phony esp-idf/partition_table/CMakeFiles/encrypted-partition-table-flash + + +############################################# +# Utility command for partition_table-flash + +build esp-idf/partition_table/partition_table-flash: phony esp-idf/partition_table/CMakeFiles/partition_table-flash esp-idf/partition_table/partition-table-flash + + +############################################# +# Utility command for edit_cache + +build esp-idf/partition_table/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\partition_table && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/partition_table/edit_cache: phony esp-idf/partition_table/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/partition_table/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\partition_table && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/partition_table/rebuild_cache: phony esp-idf/partition_table/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/partition_table/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/partition_table/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/partition_table/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\partition_table && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/partition_table/install: phony esp-idf/partition_table/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/partition_table/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/partition_table/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\partition_table && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/partition_table/install/local: phony esp-idf/partition_table/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/partition_table/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/partition_table/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\partition_table && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/partition_table/install/strip: phony esp-idf/partition_table/CMakeFiles/install/strip.util + + +############################################# +# Phony custom command for esp-idf\partition_table\CMakeFiles\partition_table_bin + +build 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 + + +############################################# +# Custom command for partition_table\partition-table.bin + +build partition_table/partition-table.bin | ${cmake_ninja_workdir}partition_table/partition-table.bin: CUSTOM_COMMAND C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/partitions.csv C$:/esp/v6.0/esp-idf/components/partition_table/gen_esp32part.py + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\partition_table && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe C:/esp/v6.0/esp-idf/components/partition_table/gen_esp32part.py -q --offset 0x8000 --primary-bootloader-offset 0x1000 --flash-size 2MB -- C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/partitions.csv C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/partition_table/partition-table.bin && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E echo "Partition table binary generated. Contents:" && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E echo ******************************************************************************* && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe C:/esp/v6.0/esp-idf/components/partition_table/gen_esp32part.py -q --offset 0x8000 --primary-bootloader-offset 0x1000 --flash-size 2MB -- C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/partition_table/partition-table.bin && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E echo *******************************************************************************" + DESC = Generating ../../partition_table/partition-table.bin + restat = 1 + + +############################################# +# Custom command for esp-idf\partition_table\CMakeFiles\partition-table + +build 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 + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\partition_table && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E echo "Partition table binary generated. Contents:" && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E echo ******************************************************************************* && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe C:/esp/v6.0/esp-idf/components/partition_table/gen_esp32part.py -q --offset 0x8000 --primary-bootloader-offset 0x1000 --flash-size 2MB -- C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/partition_table/partition-table.bin && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E echo *******************************************************************************" + + +############################################# +# Custom command for esp-idf\partition_table\CMakeFiles\partition_table + +build 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 + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\partition_table && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E echo " + DESC = Warning: command "partition_table" is deprecated. Have you wanted to run "partition-table" instead? + + +############################################# +# Custom command for esp-idf\partition_table\CMakeFiles\encrypted-partition-table-flash + +build esp-idf/partition_table/CMakeFiles/encrypted-partition-table-flash | ${cmake_ninja_workdir}esp-idf/partition_table/CMakeFiles/encrypted-partition-table-flash: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\partition_table && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E echo "Error: The target encrypted-partition-table-flash requires" && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E echo "CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT to be enabled." && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E env "FAIL_MESSAGE=Failed executing target (see errors on lines above)" C:/Espressif/tools/cmake/4.0.3/bin/cmake.exe -P C:/esp/v6.0/esp-idf/tools/cmake/scripts/fail.cmake" + + +############################################# +# Custom command for esp-idf\partition_table\CMakeFiles\partition_table-flash + +build 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 esp-idf/partition_table/partition-table-flash esp-idf/partition_table/partition_table_bin + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\partition_table && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E echo " + DESC = Warning: command "partition_table-flash" is deprecated. Have you wanted to run "partition-table-flash" instead? + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_app_format + + +############################################# +# Order-only phony target for __idf_esp_app_format + +build cmake_object_order_depends_target___idf_esp_app_format: phony || cmake_object_order_depends_target___idf_esp_bootloader_format + +build esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj: C_COMPILER____idf_esp_app_format_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_app_format/esp_app_desc.c || cmake_object_order_depends_target___idf_esp_app_format + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D PROJECT_NAME=\"modbus_tcp_esp32\" -DPROJECT_VER=\"1\" + DEP_FILE = esp-idf\esp_app_format\CMakeFiles\__idf_esp_app_format.dir\esp_app_desc.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_app_format\CMakeFiles\__idf_esp_app_format.dir + OBJECT_FILE_DIR = esp-idf\esp_app_format\CMakeFiles\__idf_esp_app_format.dir + TARGET_COMPILE_PDB = esp-idf\esp_app_format\CMakeFiles\__idf_esp_app_format.dir\__idf_esp_app_format.pdb + TARGET_PDB = esp-idf\esp_app_format\libesp_app_format.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_app_format + + +############################################# +# Link the static library esp-idf\esp_app_format\libesp_app_format.a + +build 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/esp_bootloader_format/libesp_bootloader_format.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_app_format\CMakeFiles\__idf_esp_app_format.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_app_format\CMakeFiles\__idf_esp_app_format.dir\__idf_esp_app_format.pdb + TARGET_FILE = esp-idf\esp_app_format\libesp_app_format.a + TARGET_PDB = esp-idf\esp_app_format\libesp_app_format.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_app_format/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_app_format && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_app_format/edit_cache: phony esp-idf/esp_app_format/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_app_format/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_app_format && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_app_format/rebuild_cache: phony esp-idf/esp_app_format/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_app_format/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_app_format/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_app_format/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_app_format && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_app_format/install: phony esp-idf/esp_app_format/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_app_format/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_app_format/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_app_format && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_app_format/install/local: phony esp-idf/esp_app_format/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_app_format/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_app_format/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_app_format && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_app_format/install/strip: phony esp-idf/esp_app_format/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_bootloader_format + + +############################################# +# Order-only phony target for __idf_esp_bootloader_format + +build cmake_object_order_depends_target___idf_esp_bootloader_format: phony || cmake_object_order_depends_target___idf_app_update + +build esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj: C_COMPILER____idf_esp_bootloader_format_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_bootloader_format/esp_bootloader_desc.c || cmake_object_order_depends_target___idf_esp_bootloader_format + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_bootloader_format\CMakeFiles\__idf_esp_bootloader_format.dir\esp_bootloader_desc.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_bootloader_format\CMakeFiles\__idf_esp_bootloader_format.dir + OBJECT_FILE_DIR = esp-idf\esp_bootloader_format\CMakeFiles\__idf_esp_bootloader_format.dir + TARGET_COMPILE_PDB = esp-idf\esp_bootloader_format\CMakeFiles\__idf_esp_bootloader_format.dir\__idf_esp_bootloader_format.pdb + TARGET_PDB = esp-idf\esp_bootloader_format\libesp_bootloader_format.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_bootloader_format + + +############################################# +# Link the static library esp-idf\esp_bootloader_format\libesp_bootloader_format.a + +build esp-idf/esp_bootloader_format/libesp_bootloader_format.a: C_STATIC_LIBRARY_LINKER____idf_esp_bootloader_format_ esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj || esp-idf/app_update/libapp_update.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_bootloader_format\CMakeFiles\__idf_esp_bootloader_format.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_bootloader_format\CMakeFiles\__idf_esp_bootloader_format.dir\__idf_esp_bootloader_format.pdb + TARGET_FILE = esp-idf\esp_bootloader_format\libesp_bootloader_format.a + TARGET_PDB = esp-idf\esp_bootloader_format\libesp_bootloader_format.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_bootloader_format/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_bootloader_format && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_bootloader_format/edit_cache: phony esp-idf/esp_bootloader_format/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_bootloader_format/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_bootloader_format && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_bootloader_format/rebuild_cache: phony esp-idf/esp_bootloader_format/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_bootloader_format/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_bootloader_format/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_bootloader_format/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_bootloader_format && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_bootloader_format/install: phony esp-idf/esp_bootloader_format/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_bootloader_format/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_bootloader_format/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_bootloader_format && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_bootloader_format/install/local: phony esp-idf/esp_bootloader_format/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_bootloader_format/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_bootloader_format/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_bootloader_format && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_bootloader_format/install/strip: phony esp-idf/esp_bootloader_format/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_app_update + + +############################################# +# Order-only phony target for __idf_app_update + +build cmake_object_order_depends_target___idf_app_update: phony || cmake_object_order_depends_target___idf_esp_partition + +build esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj: C_COMPILER____idf_app_update_unscanned_ C$:/esp/v6.0/esp-idf/components/app_update/esp_ota_ops.c || cmake_object_order_depends_target___idf_app_update + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\app_update\CMakeFiles\__idf_app_update.dir\esp_ota_ops.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/app_update/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include + OBJECT_DIR = esp-idf\app_update\CMakeFiles\__idf_app_update.dir + OBJECT_FILE_DIR = esp-idf\app_update\CMakeFiles\__idf_app_update.dir + TARGET_COMPILE_PDB = esp-idf\app_update\CMakeFiles\__idf_app_update.dir\__idf_app_update.pdb + TARGET_PDB = esp-idf\app_update\libapp_update.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_app_update + + +############################################# +# Link the static library esp-idf\app_update\libapp_update.a + +build 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/esp_partition/libesp_partition.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\app_update\CMakeFiles\__idf_app_update.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\app_update\CMakeFiles\__idf_app_update.dir\__idf_app_update.pdb + TARGET_FILE = esp-idf\app_update\libapp_update.a + TARGET_PDB = esp-idf\app_update\libapp_update.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/app_update/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\app_update && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/app_update/edit_cache: phony esp-idf/app_update/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/app_update/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\app_update && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/app_update/rebuild_cache: phony esp-idf/app_update/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/app_update/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/app_update/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/app_update/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\app_update && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/app_update/install: phony esp-idf/app_update/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/app_update/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/app_update/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\app_update && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/app_update/install/local: phony esp-idf/app_update/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/app_update/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/app_update/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\app_update && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/app_update/install/strip: phony esp-idf/app_update/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_partition + + +############################################# +# Order-only phony target for __idf_esp_partition + +build cmake_object_order_depends_target___idf_esp_partition: phony || cmake_object_order_depends_target___idf_efuse + +build esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj: C_COMPILER____idf_esp_partition_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_partition/partition.c || cmake_object_order_depends_target___idf_esp_partition + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_partition\CMakeFiles\__idf_esp_partition.dir\partition.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/app_update/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include + OBJECT_DIR = esp-idf\esp_partition\CMakeFiles\__idf_esp_partition.dir + OBJECT_FILE_DIR = esp-idf\esp_partition\CMakeFiles\__idf_esp_partition.dir + TARGET_COMPILE_PDB = esp-idf\esp_partition\CMakeFiles\__idf_esp_partition.dir\__idf_esp_partition.pdb + TARGET_PDB = esp-idf\esp_partition\libesp_partition.pdb + +build esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj: C_COMPILER____idf_esp_partition_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_partition/partition_target.c || cmake_object_order_depends_target___idf_esp_partition + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_partition\CMakeFiles\__idf_esp_partition.dir\partition_target.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/app_update/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include + OBJECT_DIR = esp-idf\esp_partition\CMakeFiles\__idf_esp_partition.dir + OBJECT_FILE_DIR = esp-idf\esp_partition\CMakeFiles\__idf_esp_partition.dir + TARGET_COMPILE_PDB = esp-idf\esp_partition\CMakeFiles\__idf_esp_partition.dir\__idf_esp_partition.pdb + TARGET_PDB = esp-idf\esp_partition\libesp_partition.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_partition + + +############################################# +# Link the static library esp-idf\esp_partition\libesp_partition.a + +build 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/efuse/libefuse.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_partition\CMakeFiles\__idf_esp_partition.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_partition\CMakeFiles\__idf_esp_partition.dir\__idf_esp_partition.pdb + TARGET_FILE = esp-idf\esp_partition\libesp_partition.a + TARGET_PDB = esp-idf\esp_partition\libesp_partition.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_partition/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_partition && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_partition/edit_cache: phony esp-idf/esp_partition/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_partition/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_partition && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_partition/rebuild_cache: phony esp-idf/esp_partition/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_partition/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_partition/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_partition/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_partition && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_partition/install: phony esp-idf/esp_partition/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_partition/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_partition/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_partition && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_partition/install/local: phony esp-idf/esp_partition/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_partition/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_partition/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_partition && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_partition/install/strip: phony esp-idf/esp_partition/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_efuse + + +############################################# +# Order-only phony target for __idf_efuse + +build cmake_object_order_depends_target___idf_efuse: phony || cmake_object_order_depends_target___idf_esp_security + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/esp/v6.0/esp-idf/components/efuse/esp32/esp_efuse_table.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32\esp_efuse_table.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/private_include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_fields.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/esp/v6.0/esp-idf/components/efuse/esp32/esp_efuse_fields.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32\esp_efuse_fields.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/private_include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_utility.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/esp/v6.0/esp-idf/components/efuse/esp32/esp_efuse_utility.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32\esp_efuse_utility.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/private_include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/esp/v6.0/esp-idf/components/efuse/src/esp_efuse_api.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\esp_efuse_api.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/private_include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/esp/v6.0/esp-idf/components/efuse/src/esp_efuse_fields.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\esp_efuse_fields.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/private_include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/esp/v6.0/esp-idf/components/efuse/src/esp_efuse_utility.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\esp_efuse_utility.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/private_include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/without_key_purposes/three_key_blocks/esp_efuse_api_key.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/esp/v6.0/esp-idf/components/efuse/src/efuse_controller/keys/without_key_purposes/three_key_blocks/esp_efuse_api_key.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\efuse_controller\keys\without_key_purposes\three_key_blocks\esp_efuse_api_key.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/private_include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\efuse_controller\keys\without_key_purposes\three_key_blocks + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_startup.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/esp/v6.0/esp-idf/components/efuse/src/esp_efuse_startup.c || cmake_object_order_depends_target___idf_efuse + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\esp_efuse_startup.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/private_include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_PDB = esp-idf\efuse\libefuse.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_efuse + + +############################################# +# Link the static library esp-idf\efuse\libefuse.a + +build esp-idf/efuse/libefuse.a: C_STATIC_LIBRARY_LINKER____idf_efuse_ esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_fields.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/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/without_key_purposes/three_key_blocks/esp_efuse_api_key.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_startup.c.obj || esp-idf/esp_security/libesp_security.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb + TARGET_FILE = esp-idf\efuse\libefuse.a + TARGET_PDB = esp-idf\efuse\libefuse.pdb + + +############################################# +# Utility command for efuse-common-table + +build esp-idf/efuse/efuse-common-table: phony esp-idf/efuse/CMakeFiles/efuse-common-table + + +############################################# +# Utility command for efuse_common_table + +build esp-idf/efuse/efuse_common_table: phony esp-idf/efuse/CMakeFiles/efuse_common_table esp-idf/efuse/efuse-common-table + + +############################################# +# Utility command for efuse-custom-table + +build esp-idf/efuse/efuse-custom-table: phony + + +############################################# +# Utility command for efuse_custom_table + +build esp-idf/efuse/efuse_custom_table: phony esp-idf/efuse/CMakeFiles/efuse_custom_table esp-idf/efuse/efuse-custom-table + + +############################################# +# Utility command for show-efuse-table + +build esp-idf/efuse/show-efuse-table: phony esp-idf/efuse/CMakeFiles/show-efuse-table + + +############################################# +# Utility command for show_efuse_table + +build esp-idf/efuse/show_efuse_table: phony esp-idf/efuse/CMakeFiles/show_efuse_table esp-idf/efuse/show-efuse-table + + +############################################# +# Utility command for efuse_test_table + +build esp-idf/efuse/efuse_test_table: phony esp-idf/efuse/CMakeFiles/efuse_test_table + + +############################################# +# Utility command for edit_cache + +build esp-idf/efuse/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\efuse && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/efuse/edit_cache: phony esp-idf/efuse/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/efuse/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\efuse && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/efuse/rebuild_cache: phony esp-idf/efuse/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/efuse/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/efuse/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/efuse/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\efuse && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/efuse/install: phony esp-idf/efuse/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/efuse/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/efuse/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\efuse && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/efuse/install/local: phony esp-idf/efuse/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/efuse/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/efuse/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\efuse && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/efuse/install/strip: phony esp-idf/efuse/CMakeFiles/install/strip.util + + +############################################# +# Custom command for esp-idf\efuse\CMakeFiles\efuse-common-table + +build esp-idf/efuse/CMakeFiles/efuse-common-table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/efuse-common-table: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\efuse && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe C:/esp/v6.0/esp-idf/components/efuse/efuse_table_gen.py C:/esp/v6.0/esp-idf/components/efuse/esp32/esp_efuse_table.csv -t esp32 --max_blk_len 192" + + +############################################# +# Custom command for esp-idf\efuse\CMakeFiles\efuse_common_table + +build 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 + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\efuse && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E echo " + DESC = Warning: command "efuse_common_table" is deprecated. Have you wanted to run "efuse-common-table" instead? + + +############################################# +# Custom command for esp-idf\efuse\CMakeFiles\efuse_custom_table + +build 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 + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\efuse && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E echo " + DESC = Warning: command "efuse_custom_table" is deprecated. Have you wanted to run "efuse-custom-table" instead? + + +############################################# +# Custom command for esp-idf\efuse\CMakeFiles\show-efuse-table + +build esp-idf/efuse/CMakeFiles/show-efuse-table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/show-efuse-table: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\efuse && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe C:/esp/v6.0/esp-idf/components/efuse/efuse_table_gen.py C:/esp/v6.0/esp-idf/components/efuse/esp32/esp_efuse_table.csv -t esp32 --max_blk_len 192 --info" + + +############################################# +# Custom command for esp-idf\efuse\CMakeFiles\show_efuse_table + +build 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 + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\efuse && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E echo " + DESC = Warning: command "show_efuse_table" is deprecated. Have you wanted to run "show-efuse-table" instead? + + +############################################# +# Custom command for esp-idf\efuse\CMakeFiles\efuse_test_table + +build esp-idf/efuse/CMakeFiles/efuse_test_table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/efuse_test_table: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\efuse && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe C:/esp/v6.0/esp-idf/components/efuse/efuse_table_gen.py C:/esp/v6.0/esp-idf/components/efuse/test/esp_efuse_test_table.csv -t esp32 --max_blk_len 192" + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_security + + +############################################# +# Order-only phony target for __idf_esp_security + +build cmake_object_order_depends_target___idf_esp_security: phony || cmake_object_order_depends_target___idf_esp_driver_gpio + +build esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/init.c.obj: C_COMPILER____idf_esp_security_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_security/src/init.c || cmake_object_order_depends_target___idf_esp_security + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\src\init.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/src/esp32 -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir + OBJECT_FILE_DIR = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\__idf_esp_security.pdb + TARGET_PDB = esp-idf\esp_security\libesp_security.pdb + +build esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_lock.c.obj: C_COMPILER____idf_esp_security_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_security/src/esp_crypto_lock.c || cmake_object_order_depends_target___idf_esp_security + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\src\esp_crypto_lock.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/src/esp32 -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir + OBJECT_FILE_DIR = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\__idf_esp_security.pdb + TARGET_PDB = esp-idf\esp_security\libesp_security.pdb + +build esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_periph_clk.c.obj: C_COMPILER____idf_esp_security_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_security/src/esp_crypto_periph_clk.c || cmake_object_order_depends_target___idf_esp_security + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\src\esp_crypto_periph_clk.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/src/esp32 -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir + OBJECT_FILE_DIR = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\__idf_esp_security.pdb + TARGET_PDB = esp-idf\esp_security\libesp_security.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_security + + +############################################# +# Link the static library esp-idf\esp_security\libesp_security.a + +build esp-idf/esp_security/libesp_security.a: C_STATIC_LIBRARY_LINKER____idf_esp_security_ esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/init.c.obj esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_lock.c.obj esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_periph_clk.c.obj || esp-idf/esp_driver_gpio/libesp_driver_gpio.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\__idf_esp_security.pdb + TARGET_FILE = esp-idf\esp_security\libesp_security.a + TARGET_PDB = esp-idf\esp_security\libesp_security.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_security/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_security && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_security/edit_cache: phony esp-idf/esp_security/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_security/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_security && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_security/rebuild_cache: phony esp-idf/esp_security/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_security/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_security/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_security/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_security && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_security/install: phony esp-idf/esp_security/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_security/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_security/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_security && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_security/install/local: phony esp-idf/esp_security/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_security/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_security/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_security && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_security/install/strip: phony esp-idf/esp_security/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_gpio + + +############################################# +# Order-only phony target for __idf_esp_driver_gpio + +build cmake_object_order_depends_target___idf_esp_driver_gpio: phony || cmake_object_order_depends_target___idf_esp_hal_uart + +build esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio.c.obj: C_COMPILER____idf_esp_driver_gpio_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_gpio/src/gpio.c || cmake_object_order_depends_target___idf_esp_driver_gpio + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\src\gpio.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_pm/include + OBJECT_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\__idf_esp_driver_gpio.pdb + TARGET_PDB = esp-idf\esp_driver_gpio\libesp_driver_gpio.pdb + +build esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_glitch_filter_ops.c.obj: C_COMPILER____idf_esp_driver_gpio_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_gpio/src/gpio_glitch_filter_ops.c || cmake_object_order_depends_target___idf_esp_driver_gpio + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\src\gpio_glitch_filter_ops.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_pm/include + OBJECT_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\__idf_esp_driver_gpio.pdb + TARGET_PDB = esp-idf\esp_driver_gpio\libesp_driver_gpio.pdb + +build esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/rtc_io.c.obj: C_COMPILER____idf_esp_driver_gpio_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_gpio/src/rtc_io.c || cmake_object_order_depends_target___idf_esp_driver_gpio + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\src\rtc_io.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_pm/include + OBJECT_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\__idf_esp_driver_gpio.pdb + TARGET_PDB = esp-idf\esp_driver_gpio\libesp_driver_gpio.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_gpio + + +############################################# +# Link the static library esp-idf\esp_driver_gpio\libesp_driver_gpio.a + +build esp-idf/esp_driver_gpio/libesp_driver_gpio.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_gpio_ esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio.c.obj esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_glitch_filter_ops.c.obj esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/rtc_io.c.obj || esp-idf/esp_hal_uart/libesp_hal_uart.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\__idf_esp_driver_gpio.pdb + TARGET_FILE = esp-idf\esp_driver_gpio\libesp_driver_gpio.a + TARGET_PDB = esp-idf\esp_driver_gpio\libesp_driver_gpio.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_gpio/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_gpio && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_gpio/edit_cache: phony esp-idf/esp_driver_gpio/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_gpio/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_gpio && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_gpio/rebuild_cache: phony esp-idf/esp_driver_gpio/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_gpio/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_gpio/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_gpio/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_gpio && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_gpio/install: phony esp-idf/esp_driver_gpio/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_gpio/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_gpio/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_gpio && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_gpio/install/local: phony esp-idf/esp_driver_gpio/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_gpio/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_gpio/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_gpio && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_gpio/install/strip: phony esp-idf/esp_driver_gpio/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_hal_uart + + +############################################# +# Order-only phony target for __idf_esp_hal_uart + +build cmake_object_order_depends_target___idf_esp_hal_uart: phony || cmake_object_order_depends_target___idf_esp_pm + +build esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/uart_hal.c.obj: C_COMPILER____idf_esp_hal_uart_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_uart/uart_hal.c || cmake_object_order_depends_target___idf_esp_hal_uart + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_uart\CMakeFiles\__idf_esp_hal_uart.dir\uart_hal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_hal_uart\CMakeFiles\__idf_esp_hal_uart.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_uart\CMakeFiles\__idf_esp_hal_uart.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_uart\CMakeFiles\__idf_esp_hal_uart.dir\__idf_esp_hal_uart.pdb + TARGET_PDB = esp-idf\esp_hal_uart\libesp_hal_uart.pdb + +build esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/uart_hal_iram.c.obj: C_COMPILER____idf_esp_hal_uart_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_uart/uart_hal_iram.c || cmake_object_order_depends_target___idf_esp_hal_uart + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_uart\CMakeFiles\__idf_esp_hal_uart.dir\uart_hal_iram.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_hal_uart\CMakeFiles\__idf_esp_hal_uart.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_uart\CMakeFiles\__idf_esp_hal_uart.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_uart\CMakeFiles\__idf_esp_hal_uart.dir\__idf_esp_hal_uart.pdb + TARGET_PDB = esp-idf\esp_hal_uart\libesp_hal_uart.pdb + +build esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/esp32/uart_periph.c.obj: C_COMPILER____idf_esp_hal_uart_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/uart_periph.c || cmake_object_order_depends_target___idf_esp_hal_uart + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_uart\CMakeFiles\__idf_esp_hal_uart.dir\esp32\uart_periph.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_hal_uart\CMakeFiles\__idf_esp_hal_uart.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_uart\CMakeFiles\__idf_esp_hal_uart.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hal_uart\CMakeFiles\__idf_esp_hal_uart.dir\__idf_esp_hal_uart.pdb + TARGET_PDB = esp-idf\esp_hal_uart\libesp_hal_uart.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_hal_uart + + +############################################# +# Link the static library esp-idf\esp_hal_uart\libesp_hal_uart.a + +build esp-idf/esp_hal_uart/libesp_hal_uart.a: C_STATIC_LIBRARY_LINKER____idf_esp_hal_uart_ esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/uart_hal.c.obj esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/uart_hal_iram.c.obj esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/esp32/uart_periph.c.obj || esp-idf/esp_pm/libesp_pm.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_hal_uart\CMakeFiles\__idf_esp_hal_uart.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_hal_uart\CMakeFiles\__idf_esp_hal_uart.dir\__idf_esp_hal_uart.pdb + TARGET_FILE = esp-idf\esp_hal_uart\libesp_hal_uart.a + TARGET_PDB = esp-idf\esp_hal_uart\libesp_hal_uart.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hal_uart/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_uart && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hal_uart/edit_cache: phony esp-idf/esp_hal_uart/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hal_uart/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_uart && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hal_uart/rebuild_cache: phony esp-idf/esp_hal_uart/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_hal_uart/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_hal_uart/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hal_uart/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_uart && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_hal_uart/install: phony esp-idf/esp_hal_uart/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_hal_uart/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hal_uart/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_uart && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_hal_uart/install/local: phony esp-idf/esp_hal_uart/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_hal_uart/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hal_uart/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_uart && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_hal_uart/install/strip: phony esp-idf/esp_hal_uart/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_pm + + +############################################# +# Order-only phony target for __idf_esp_pm + +build cmake_object_order_depends_target___idf_esp_pm: phony || cmake_object_order_depends_target___idf_esp_mm + +build esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj: C_COMPILER____idf_esp_pm_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_pm/pm_locks.c || cmake_object_order_depends_target___idf_esp_pm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir\pm_locks.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir + OBJECT_FILE_DIR = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir + TARGET_COMPILE_PDB = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir\__idf_esp_pm.pdb + TARGET_PDB = esp-idf\esp_pm\libesp_pm.pdb + +build esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj: C_COMPILER____idf_esp_pm_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_pm/pm_trace.c || cmake_object_order_depends_target___idf_esp_pm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir\pm_trace.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir + OBJECT_FILE_DIR = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir + TARGET_COMPILE_PDB = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir\__idf_esp_pm.pdb + TARGET_PDB = esp-idf\esp_pm\libesp_pm.pdb + +build esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj: C_COMPILER____idf_esp_pm_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_pm/pm_impl.c || cmake_object_order_depends_target___idf_esp_pm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir\pm_impl.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir + OBJECT_FILE_DIR = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir + TARGET_COMPILE_PDB = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir\__idf_esp_pm.pdb + TARGET_PDB = esp-idf\esp_pm\libesp_pm.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_pm + + +############################################# +# Link the static library esp-idf\esp_pm\libesp_pm.a + +build 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/esp_mm/libesp_mm.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir\__idf_esp_pm.pdb + TARGET_FILE = esp-idf\esp_pm\libesp_pm.a + TARGET_PDB = esp-idf\esp_pm\libesp_pm.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_pm/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_pm && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_pm/edit_cache: phony esp-idf/esp_pm/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_pm/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_pm && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_pm/rebuild_cache: phony esp-idf/esp_pm/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_pm/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_pm/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_pm/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_pm && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_pm/install: phony esp-idf/esp_pm/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_pm/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_pm/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_pm && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_pm/install/local: phony esp-idf/esp_pm/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_pm/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_pm/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_pm && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_pm/install/strip: phony esp-idf/esp_pm/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_mm + + +############################################# +# Order-only phony target for __idf_esp_mm + +build cmake_object_order_depends_target___idf_esp_mm: phony || cmake_object_order_depends_target___idf_esp_driver_dma + +build esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_mmu_map.c.obj: C_COMPILER____idf_esp_mm_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_mm/esp_mmu_map.c || cmake_object_order_depends_target___idf_esp_mm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\esp_mmu_map.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include + OBJECT_DIR = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir + OBJECT_FILE_DIR = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir + TARGET_COMPILE_PDB = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\__idf_esp_mm.pdb + TARGET_PDB = esp-idf\esp_mm\libesp_mm.pdb + +build esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32/ext_mem_layout.c.obj: C_COMPILER____idf_esp_mm_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_mm/port/esp32/ext_mem_layout.c || cmake_object_order_depends_target___idf_esp_mm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\port\esp32\ext_mem_layout.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include + OBJECT_DIR = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir + OBJECT_FILE_DIR = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\port\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\__idf_esp_mm.pdb + TARGET_PDB = esp-idf\esp_mm\libesp_mm.pdb + +build esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache_msync.c.obj: C_COMPILER____idf_esp_mm_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_mm/esp_cache_msync.c || cmake_object_order_depends_target___idf_esp_mm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\esp_cache_msync.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include + OBJECT_DIR = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir + OBJECT_FILE_DIR = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir + TARGET_COMPILE_PDB = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\__idf_esp_mm.pdb + TARGET_PDB = esp-idf\esp_mm\libesp_mm.pdb + +build esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache_utils.c.obj: C_COMPILER____idf_esp_mm_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_mm/esp_cache_utils.c || cmake_object_order_depends_target___idf_esp_mm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\esp_cache_utils.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include + OBJECT_DIR = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir + OBJECT_FILE_DIR = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir + TARGET_COMPILE_PDB = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\__idf_esp_mm.pdb + TARGET_PDB = esp-idf\esp_mm\libesp_mm.pdb + +build esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/cache_esp32.c.obj: C_COMPILER____idf_esp_mm_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_mm/cache_esp32.c || cmake_object_order_depends_target___idf_esp_mm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\cache_esp32.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include + OBJECT_DIR = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir + OBJECT_FILE_DIR = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir + TARGET_COMPILE_PDB = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\__idf_esp_mm.pdb + TARGET_PDB = esp-idf\esp_mm\libesp_mm.pdb + +build esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/heap_align_hw.c.obj: C_COMPILER____idf_esp_mm_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_mm/heap_align_hw.c || cmake_object_order_depends_target___idf_esp_mm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\heap_align_hw.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include + OBJECT_DIR = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir + OBJECT_FILE_DIR = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir + TARGET_COMPILE_PDB = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\__idf_esp_mm.pdb + TARGET_PDB = esp-idf\esp_mm\libesp_mm.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_mm + + +############################################# +# Link the static library esp-idf\esp_mm\libesp_mm.a + +build 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/esp32/ext_mem_layout.c.obj esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache_msync.c.obj esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache_utils.c.obj esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/cache_esp32.c.obj esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/heap_align_hw.c.obj || esp-idf/esp_driver_dma/libesp_driver_dma.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\__idf_esp_mm.pdb + TARGET_FILE = esp-idf\esp_mm\libesp_mm.a + TARGET_PDB = esp-idf\esp_mm\libesp_mm.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_mm/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_mm && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_mm/edit_cache: phony esp-idf/esp_mm/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_mm/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_mm && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_mm/rebuild_cache: phony esp-idf/esp_mm/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_mm/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_mm/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_mm/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_mm && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_mm/install: phony esp-idf/esp_mm/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_mm/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_mm/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_mm && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_mm/install/local: phony esp-idf/esp_mm/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_mm/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_mm/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_mm && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_mm/install/strip: phony esp-idf/esp_mm/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_dma + + +############################################# +# Order-only phony target for __idf_esp_driver_dma + +build cmake_object_order_depends_target___idf_esp_driver_dma: phony || cmake_object_order_depends_target___idf_mbedtls + +build esp-idf/esp_driver_dma/CMakeFiles/__idf_esp_driver_dma.dir/src/esp_dma_utils.c.obj: C_COMPILER____idf_esp_driver_dma_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_dma/src/esp_dma_utils.c || cmake_object_order_depends_target___idf_esp_driver_dma + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_dma\CMakeFiles\__idf_esp_driver_dma.dir\src\esp_dma_utils.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include + OBJECT_DIR = esp-idf\esp_driver_dma\CMakeFiles\__idf_esp_driver_dma.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_dma\CMakeFiles\__idf_esp_driver_dma.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_dma\CMakeFiles\__idf_esp_driver_dma.dir\__idf_esp_driver_dma.pdb + TARGET_PDB = esp-idf\esp_driver_dma\libesp_driver_dma.pdb + +build esp-idf/esp_driver_dma/CMakeFiles/__idf_esp_driver_dma.dir/src/gdma_link.c.obj: C_COMPILER____idf_esp_driver_dma_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_dma/src/gdma_link.c || cmake_object_order_depends_target___idf_esp_driver_dma + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_dma\CMakeFiles\__idf_esp_driver_dma.dir\src\gdma_link.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include + OBJECT_DIR = esp-idf\esp_driver_dma\CMakeFiles\__idf_esp_driver_dma.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_dma\CMakeFiles\__idf_esp_driver_dma.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_dma\CMakeFiles\__idf_esp_driver_dma.dir\__idf_esp_driver_dma.pdb + TARGET_PDB = esp-idf\esp_driver_dma\libesp_driver_dma.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_dma + + +############################################# +# Link the static library esp-idf\esp_driver_dma\libesp_driver_dma.a + +build esp-idf/esp_driver_dma/libesp_driver_dma.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_dma_ esp-idf/esp_driver_dma/CMakeFiles/__idf_esp_driver_dma.dir/src/esp_dma_utils.c.obj esp-idf/esp_driver_dma/CMakeFiles/__idf_esp_driver_dma.dir/src/gdma_link.c.obj || esp-idf/mbedtls/libmbedtls.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_driver_dma\CMakeFiles\__idf_esp_driver_dma.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_dma\CMakeFiles\__idf_esp_driver_dma.dir\__idf_esp_driver_dma.pdb + TARGET_FILE = esp-idf\esp_driver_dma\libesp_driver_dma.a + TARGET_PDB = esp-idf\esp_driver_dma\libesp_driver_dma.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_dma/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_dma && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_dma/edit_cache: phony esp-idf/esp_driver_dma/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_dma/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_dma && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_dma/rebuild_cache: phony esp-idf/esp_driver_dma/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_dma/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_dma/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_dma/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_dma && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_dma/install: phony esp-idf/esp_driver_dma/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_dma/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_dma/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_dma && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_dma/install/local: phony esp-idf/esp_driver_dma/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_dma/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_dma/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_dma && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_dma/install/strip: phony esp-idf/esp_driver_dma/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_mbedtls + + +############################################# +# Order-only phony target for __idf_mbedtls + +build cmake_object_order_depends_target___idf_mbedtls: phony || cmake_object_order_depends_target_everest esp-idf/mbedtls/x509_crt_bundle x509_crt_bundle.S + +build esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj: C_COMPILER____idf_mbedtls_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/esp_crt_bundle.c || cmake_object_order_depends_target___idf_mbedtls + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\CMakeFiles\__idf_mbedtls.dir\esp_crt_bundle\esp_crt_bundle.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m + OBJECT_DIR = esp-idf\mbedtls\CMakeFiles\__idf_mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\CMakeFiles\__idf_mbedtls.dir\esp_crt_bundle + TARGET_COMPILE_PDB = esp-idf\mbedtls\CMakeFiles\__idf_mbedtls.dir\__idf_mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\libmbedtls.pdb + +build esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj: ASM_COMPILER____idf_mbedtls_unscanned_ C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/x509_crt_bundle.S || cmake_object_order_depends_target___idf_mbedtls + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\CMakeFiles\__idf_mbedtls.dir\__\__\x509_crt_bundle.S.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/asmflags" -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m + OBJECT_DIR = esp-idf\mbedtls\CMakeFiles\__idf_mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\CMakeFiles\__idf_mbedtls.dir\__\__ + TARGET_COMPILE_PDB = esp-idf\mbedtls\CMakeFiles\__idf_mbedtls.dir\__idf_mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\libmbedtls.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_mbedtls + + +############################################# +# Link the static library esp-idf\mbedtls\libmbedtls.a + +build 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/tf-psa-crypto/drivers/everest/libeverest.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\mbedtls\CMakeFiles\__idf_mbedtls.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\mbedtls\CMakeFiles\__idf_mbedtls.dir\__idf_mbedtls.pdb + TARGET_FILE = esp-idf\mbedtls\libmbedtls.a + TARGET_PDB = esp-idf\mbedtls\libmbedtls.pdb + + +############################################# +# Utility command for custom_bundle + +build esp-idf/mbedtls/custom_bundle: phony + + +############################################# +# Utility command for edit_cache + +build esp-idf/mbedtls/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/mbedtls/edit_cache: phony esp-idf/mbedtls/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/mbedtls/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/mbedtls/rebuild_cache: phony esp-idf/mbedtls/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/mbedtls/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/mbedtls/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/mbedtls/install: phony esp-idf/mbedtls/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/mbedtls/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/mbedtls/install/local: phony esp-idf/mbedtls/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/mbedtls/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/mbedtls/install/strip: phony esp-idf/mbedtls/CMakeFiles/install/strip.util + + +############################################# +# Custom command for x509_crt_bundle.S + +build x509_crt_bundle.S | ${cmake_ninja_workdir}x509_crt_bundle.S: CUSTOM_COMMAND esp-idf/mbedtls/x509_crt_bundle C$:/esp/v6.0/esp-idf/tools/cmake/scripts/data_file_embed_asm.cmake || 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_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a esp-idf/esp_hal_gpio/libesp_hal_gpio.a esp-idf/esp_hal_i2c/libesp_hal_i2c.a esp-idf/esp_hal_i2s/libesp_hal_i2s.a esp-idf/esp_hal_timg/libesp_hal_timg.a esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a esp-idf/esp_hal_wdt/libesp_hal_wdt.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_libc/libesp_libc.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_psram/libesp_psram.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_in_preprocess esp-idf/esp_system/sections_ld_in_preprocess 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/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/libeverest.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/libp256m.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.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/vfs/libvfs.a esp-idf/wpa_supplicant/libwpa_supplicant.a + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -D DATA_FILE=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/x509_crt_bundle -D SOURCE_FILE=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/x509_crt_bundle.S -D FILE_TYPE=BINARY -P C:/esp/v6.0/esp-idf/tools/cmake/scripts/data_file_embed_asm.cmake" + DESC = Generating ../../x509_crt_bundle.S + restat = 1 + + +############################################# +# Custom command for esp-idf\mbedtls\x509_crt_bundle + +build esp-idf/mbedtls/x509_crt_bundle | ${cmake_ninja_workdir}esp-idf/mbedtls/x509_crt_bundle: CUSTOM_COMMAND || 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_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a esp-idf/esp_hal_gpio/libesp_hal_gpio.a esp-idf/esp_hal_i2c/libesp_hal_i2c.a esp-idf/esp_hal_i2s/libesp_hal_i2s.a esp-idf/esp_hal_timg/libesp_hal_timg.a esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a esp-idf/esp_hal_wdt/libesp_hal_wdt.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_libc/libesp_libc.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_psram/libesp_psram.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_in_preprocess esp-idf/esp_system/sections_ld_in_preprocess 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/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/libeverest.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/libp256m.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.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/vfs/libvfs.a esp-idf/wpa_supplicant/libwpa_supplicant.a + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe C:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/gen_crt_bundle.py --input C:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/cacrt_all.pem C:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/cacrt_local.pem -q --max-certs 200" + DESC = Generating x509_crt_bundle + restat = 1 + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/components/mbedtls/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for mbedtls-apidoc + +build esp-idf/mbedtls/mbedtls/mbedtls-apidoc: phony esp-idf/mbedtls/mbedtls/CMakeFiles/mbedtls-apidoc + + +############################################# +# Utility command for edit_cache + +build esp-idf/mbedtls/mbedtls/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/edit_cache: phony esp-idf/mbedtls/mbedtls/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/mbedtls/mbedtls/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/rebuild_cache: phony esp-idf/mbedtls/mbedtls/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/mbedtls/mbedtls/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/mbedtls/mbedtls/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/install: phony esp-idf/mbedtls/mbedtls/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/mbedtls/mbedtls/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/install/local: phony esp-idf/mbedtls/mbedtls/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/mbedtls/mbedtls/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/install/strip: phony esp-idf/mbedtls/mbedtls/CMakeFiles/install/strip.util + + +############################################# +# Custom command for esp-idf\mbedtls\mbedtls\CMakeFiles\mbedtls-apidoc + +build esp-idf/mbedtls/mbedtls/CMakeFiles/mbedtls-apidoc | ${cmake_ninja_workdir}esp-idf/mbedtls/mbedtls/CMakeFiles/mbedtls-apidoc: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\esp\v6.0\esp-idf\components\mbedtls\mbedtls\doxygen && doxygen mbedtls.doxyfile" + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/mbedtls/mbedtls/include/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\include && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/include/edit_cache: phony esp-idf/mbedtls/mbedtls/include/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/mbedtls/mbedtls/include/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\include && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/include/rebuild_cache: phony esp-idf/mbedtls/mbedtls/include/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/mbedtls/mbedtls/include/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/mbedtls/mbedtls/include/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/include/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\include && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/include/install: phony esp-idf/mbedtls/mbedtls/include/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/include/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\include && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/include/install/local: phony esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/include/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\include && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/include/install/strip: phony esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for tfpsacrypto-apidoc + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/tfpsacrypto-apidoc: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/CMakeFiles/tfpsacrypto-apidoc + + +############################################# +# Utility command for edit_cache + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\tf-psa-crypto && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/edit_cache: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\tf-psa-crypto && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/rebuild_cache: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/tf-psa-crypto/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\tf-psa-crypto && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/install: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/tf-psa-crypto/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\tf-psa-crypto && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/install/local: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/tf-psa-crypto/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\tf-psa-crypto && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/install/strip: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/CMakeFiles/install/strip.util + + +############################################# +# Custom command for esp-idf\mbedtls\mbedtls\tf-psa-crypto\CMakeFiles\tfpsacrypto-apidoc + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/CMakeFiles/tfpsacrypto-apidoc | ${cmake_ninja_workdir}esp-idf/mbedtls/mbedtls/tf-psa-crypto/CMakeFiles/tfpsacrypto-apidoc: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\esp\v6.0\esp-idf\components\mbedtls\mbedtls\tf-psa-crypto\doxygen && doxygen tfpsacrypto.doxyfile" + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/include/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\tf-psa-crypto\include && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/include/edit_cache: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/include/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/include/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\tf-psa-crypto\include && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/include/rebuild_cache: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/include/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/include/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/include/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/tf-psa-crypto/include/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\tf-psa-crypto\include && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/include/install: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/include/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/include/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/tf-psa-crypto/include/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\tf-psa-crypto\include && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/include/install/local: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/include/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/include/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/tf-psa-crypto/include/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\tf-psa-crypto\include && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/include/install/strip: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/include/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target tfpsacrypto + + +############################################# +# Order-only phony target for tfpsacrypto + +build cmake_object_order_depends_target_tfpsacrypto: phony || cmake_object_order_depends_target___idf_esp_hal_timg + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/psa_crypto.c.obj: C_COMPILER__tfpsacrypto_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core/psa_crypto.c || cmake_object_order_depends_target_tfpsacrypto + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\psa_crypto.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\tfpsacrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\libtfpsacrypto.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/psa_crypto_client.c.obj: C_COMPILER__tfpsacrypto_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core/psa_crypto_client.c || cmake_object_order_depends_target_tfpsacrypto + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\psa_crypto_client.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\tfpsacrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\libtfpsacrypto.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj: C_COMPILER__tfpsacrypto_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core/psa_crypto_driver_wrappers_no_static.c || cmake_object_order_depends_target_tfpsacrypto + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\psa_crypto_driver_wrappers_no_static.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\tfpsacrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\libtfpsacrypto.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/psa_crypto_slot_management.c.obj: C_COMPILER__tfpsacrypto_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core/psa_crypto_slot_management.c || cmake_object_order_depends_target_tfpsacrypto + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\psa_crypto_slot_management.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\tfpsacrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\libtfpsacrypto.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/psa_crypto_storage.c.obj: C_COMPILER__tfpsacrypto_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core/psa_crypto_storage.c || cmake_object_order_depends_target_tfpsacrypto + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\psa_crypto_storage.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\tfpsacrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\libtfpsacrypto.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/psa_its_file.c.obj: C_COMPILER__tfpsacrypto_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core/psa_its_file.c || cmake_object_order_depends_target_tfpsacrypto + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\psa_its_file.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\tfpsacrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\libtfpsacrypto.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/tf_psa_crypto_config.c.obj: C_COMPILER__tfpsacrypto_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core/tf_psa_crypto_config.c || cmake_object_order_depends_target_tfpsacrypto + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\tf_psa_crypto_config.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\tfpsacrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\libtfpsacrypto.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/tf_psa_crypto_version.c.obj: C_COMPILER__tfpsacrypto_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core/tf_psa_crypto_version.c || cmake_object_order_depends_target_tfpsacrypto + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\tf_psa_crypto_version.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\tfpsacrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\libtfpsacrypto.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_crypto_storage/esp_psa_its.c.obj: C_COMPILER__tfpsacrypto_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/port/psa_crypto_storage/esp_psa_its.c || cmake_object_order_depends_target_tfpsacrypto + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port\psa_crypto_storage\esp_psa_its.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port\psa_crypto_storage + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\tfpsacrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\libtfpsacrypto.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/esp_hardware.c.obj: C_COMPILER__tfpsacrypto_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/port/esp_hardware.c || cmake_object_order_depends_target_tfpsacrypto + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port\esp_hardware.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\tfpsacrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\libtfpsacrypto.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/esp_mem.c.obj: C_COMPILER__tfpsacrypto_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/port/esp_mem.c || cmake_object_order_depends_target_tfpsacrypto + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port\esp_mem.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\tfpsacrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\libtfpsacrypto.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj: C_COMPILER__tfpsacrypto_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c || cmake_object_order_depends_target_tfpsacrypto + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port\aes\esp_aes_xts.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port\aes + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\tfpsacrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\libtfpsacrypto.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj: C_COMPILER__tfpsacrypto_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/port/aes/esp_aes_common.c || cmake_object_order_depends_target_tfpsacrypto + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port\aes\esp_aes_common.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port\aes + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\tfpsacrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\libtfpsacrypto.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/aes/esp_aes.c.obj: C_COMPILER__tfpsacrypto_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/port/aes/esp_aes.c || cmake_object_order_depends_target_tfpsacrypto + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port\aes\esp_aes.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port\aes + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\tfpsacrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\libtfpsacrypto.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj: C_COMPILER__tfpsacrypto_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c || cmake_object_order_depends_target_tfpsacrypto + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port\aes\esp_aes_gcm.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port\aes + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\tfpsacrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\libtfpsacrypto.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_sha/psa_crypto_driver_esp_sha.c.obj: C_COMPILER__tfpsacrypto_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_sha/psa_crypto_driver_esp_sha.c || cmake_object_order_depends_target_tfpsacrypto + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port\psa_driver\esp_sha\psa_crypto_driver_esp_sha.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port\psa_driver\esp_sha + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\tfpsacrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\libtfpsacrypto.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_sha/parallel_engine/psa_crypto_driver_esp_sha256.c.obj: C_COMPILER__tfpsacrypto_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_sha/parallel_engine/psa_crypto_driver_esp_sha256.c || cmake_object_order_depends_target_tfpsacrypto + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port\psa_driver\esp_sha\parallel_engine\psa_crypto_driver_esp_sha256.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port\psa_driver\esp_sha\parallel_engine + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\tfpsacrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\libtfpsacrypto.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_sha/parallel_engine/psa_crypto_driver_esp_sha512.c.obj: C_COMPILER__tfpsacrypto_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_sha/parallel_engine/psa_crypto_driver_esp_sha512.c || cmake_object_order_depends_target_tfpsacrypto + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port\psa_driver\esp_sha\parallel_engine\psa_crypto_driver_esp_sha512.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port\psa_driver\esp_sha\parallel_engine + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\tfpsacrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\libtfpsacrypto.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj: C_COMPILER__tfpsacrypto_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/port/sha/esp_sha.c || cmake_object_order_depends_target_tfpsacrypto + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port\sha\esp_sha.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port\sha + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\tfpsacrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\libtfpsacrypto.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_mac/psa_crypto_driver_esp_hmac_transparent.c.obj: C_COMPILER__tfpsacrypto_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_mac/psa_crypto_driver_esp_hmac_transparent.c || cmake_object_order_depends_target_tfpsacrypto + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port\psa_driver\esp_mac\psa_crypto_driver_esp_hmac_transparent.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port\psa_driver\esp_mac + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\tfpsacrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\libtfpsacrypto.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_sha/parallel_engine/psa_crypto_driver_esp_sha1.c.obj: C_COMPILER__tfpsacrypto_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_sha/parallel_engine/psa_crypto_driver_esp_sha1.c || cmake_object_order_depends_target_tfpsacrypto + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port\psa_driver\esp_sha\parallel_engine\psa_crypto_driver_esp_sha1.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port\psa_driver\esp_sha\parallel_engine + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\tfpsacrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\libtfpsacrypto.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/sha/parallel_engine/sha.c.obj: C_COMPILER__tfpsacrypto_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/port/sha/parallel_engine/sha.c || cmake_object_order_depends_target_tfpsacrypto + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port\sha\parallel_engine\sha.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port\sha\parallel_engine + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\tfpsacrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\libtfpsacrypto.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_md/psa_crypto_driver_esp_md5.c.obj: C_COMPILER__tfpsacrypto_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_md/psa_crypto_driver_esp_md5.c || cmake_object_order_depends_target_tfpsacrypto + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port\psa_driver\esp_md\psa_crypto_driver_esp_md5.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port\psa_driver\esp_md + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\tfpsacrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\libtfpsacrypto.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj: C_COMPILER__tfpsacrypto_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/port/bignum/esp_bignum.c || cmake_object_order_depends_target_tfpsacrypto + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port\bignum\esp_bignum.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port\bignum + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\tfpsacrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\libtfpsacrypto.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj: C_COMPILER__tfpsacrypto_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/port/bignum/bignum_alt.c || cmake_object_order_depends_target_tfpsacrypto + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port\bignum\bignum_alt.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port\bignum + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\tfpsacrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\libtfpsacrypto.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_aes/psa_crypto_driver_esp_aes.c.obj: C_COMPILER__tfpsacrypto_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_aes/psa_crypto_driver_esp_aes.c || cmake_object_order_depends_target_tfpsacrypto + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port\psa_driver\esp_aes\psa_crypto_driver_esp_aes.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port\psa_driver\esp_aes + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\tfpsacrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\libtfpsacrypto.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_aes/psa_crypto_driver_esp_aes_gcm.c.obj: C_COMPILER__tfpsacrypto_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_aes/psa_crypto_driver_esp_aes_gcm.c || cmake_object_order_depends_target_tfpsacrypto + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port\psa_driver\esp_aes\psa_crypto_driver_esp_aes_gcm.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port\psa_driver\esp_aes + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\tfpsacrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\libtfpsacrypto.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_mac/psa_crypto_driver_esp_cmac.c.obj: C_COMPILER__tfpsacrypto_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_mac/psa_crypto_driver_esp_cmac.c || cmake_object_order_depends_target_tfpsacrypto + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port\psa_driver\esp_mac\psa_crypto_driver_esp_cmac.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port\psa_driver\esp_mac + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\tfpsacrypto.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\libtfpsacrypto.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target tfpsacrypto + + +############################################# +# Link the static library esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\libtfpsacrypto.a + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a: CXX_STATIC_LIBRARY_LINKER__tfpsacrypto_ esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/psa_crypto.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/psa_crypto_client.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/psa_crypto_slot_management.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/psa_crypto_storage.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/psa_its_file.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/tf_psa_crypto_config.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/tf_psa_crypto_version.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_crypto_storage/esp_psa_its.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/esp_hardware.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/esp_mem.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/aes/esp_aes.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_sha/psa_crypto_driver_esp_sha.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_sha/parallel_engine/psa_crypto_driver_esp_sha256.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_sha/parallel_engine/psa_crypto_driver_esp_sha512.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_mac/psa_crypto_driver_esp_hmac_transparent.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_sha/parallel_engine/psa_crypto_driver_esp_sha1.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/sha/parallel_engine/sha.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_md/psa_crypto_driver_esp_md5.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_aes/psa_crypto_driver_esp_aes.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_aes/psa_crypto_driver_esp_aes_gcm.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_mac/psa_crypto_driver_esp_cmac.c.obj || esp-idf/esp_hal_timg/libesp_hal_timg.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags" + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\CMakeFiles\tfpsacrypto.dir\tfpsacrypto.pdb + TARGET_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\libtfpsacrypto.a + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\libtfpsacrypto.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\tf-psa-crypto\core && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/edit_cache: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\tf-psa-crypto\core && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/rebuild_cache: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\tf-psa-crypto\core && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/install: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\tf-psa-crypto\core && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/install/local: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\tf-psa-crypto\core && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/install/strip: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/edit_cache: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/rebuild_cache: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/install: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/install/local: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/install/strip: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target everest + + +############################################# +# Order-only phony target for everest + +build cmake_object_order_depends_target_everest: phony || cmake_object_order_depends_target_p256m + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/CMakeFiles/everest.dir/library/everest.c.obj: C_COMPILER__everest_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/library/everest.c || cmake_object_order_depends_target_everest + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\everest\CMakeFiles\everest.dir\library\everest.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include/tf-psa-crypto/private/everest -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include/tf-psa-crypto/private/everest/kremlib -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\everest\CMakeFiles\everest.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\everest\CMakeFiles\everest.dir\library + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\everest\CMakeFiles\everest.dir\everest.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\everest\libeverest.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/CMakeFiles/everest.dir/library/x25519.c.obj: C_COMPILER__everest_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/library/x25519.c || cmake_object_order_depends_target_everest + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\everest\CMakeFiles\everest.dir\library\x25519.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include/tf-psa-crypto/private/everest -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include/tf-psa-crypto/private/everest/kremlib -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\everest\CMakeFiles\everest.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\everest\CMakeFiles\everest.dir\library + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\everest\CMakeFiles\everest.dir\everest.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\everest\libeverest.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj: C_COMPILER__everest_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/library/Hacl_Curve25519_joined.c || cmake_object_order_depends_target_everest + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\everest\CMakeFiles\everest.dir\library\Hacl_Curve25519_joined.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include/tf-psa-crypto/private/everest -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include/tf-psa-crypto/private/everest/kremlib -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\everest\CMakeFiles\everest.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\everest\CMakeFiles\everest.dir\library + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\everest\CMakeFiles\everest.dir\everest.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\everest\libeverest.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target everest + + +############################################# +# Link the static library esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\everest\libeverest.a + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/libeverest.a: CXX_STATIC_LIBRARY_LINKER__everest_ esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/CMakeFiles/everest.dir/library/everest.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/CMakeFiles/everest.dir/library/x25519.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj || esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/libp256m.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags" + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\everest\CMakeFiles\everest.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\everest\CMakeFiles\everest.dir\everest.pdb + TARGET_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\everest\libeverest.a + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\everest\libeverest.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\everest && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/edit_cache: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\everest && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/rebuild_cache: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\everest && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/install: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\everest && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/install/local: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\everest && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/install/strip: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target p256m + + +############################################# +# Order-only phony target for p256m + +build cmake_object_order_depends_target_p256m: phony || cmake_object_order_depends_target_builtin + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj: C_COMPILER__p256m_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/p256-m_driver_entrypoints.c || cmake_object_order_depends_target_p256m + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\p256-m\CMakeFiles\p256m.dir\p256-m_driver_entrypoints.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\p256-m\CMakeFiles\p256m.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\p256-m\CMakeFiles\p256m.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\p256-m\CMakeFiles\p256m.dir\p256m.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\p256-m\libp256m.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj: C_COMPILER__p256m_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/p256-m/p256-m.c || cmake_object_order_depends_target_p256m + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\p256-m\CMakeFiles\p256m.dir\p256-m\p256-m.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\p256-m\CMakeFiles\p256m.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\p256-m\CMakeFiles\p256m.dir\p256-m + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\p256-m\CMakeFiles\p256m.dir\p256m.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\p256-m\libp256m.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target p256m + + +############################################# +# Link the static library esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\p256-m\libp256m.a + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/libp256m.a: CXX_STATIC_LIBRARY_LINKER__p256m_ esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj || esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags" + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\p256-m\CMakeFiles\p256m.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\p256-m\CMakeFiles\p256m.dir\p256m.pdb + TARGET_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\p256-m\libp256m.a + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\p256-m\libp256m.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\p256-m && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/edit_cache: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\p256-m && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/rebuild_cache: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\p256-m && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/install: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\p256-m && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/install/local: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\p256-m && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/install/strip: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target builtin + + +############################################# +# Order-only phony target for builtin + +build cmake_object_order_depends_target_builtin: phony || cmake_object_order_depends_target_mbedx509 + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/aes.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/aes.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\aes.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/aesce.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/aesce.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\aesce.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/aesni.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/aesni.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\aesni.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/aria.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/aria.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\aria.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/asn1parse.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/asn1parse.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\asn1parse.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/asn1write.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/asn1write.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\asn1write.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/base64.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/base64.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\base64.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/bignum.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/bignum.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\bignum.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/bignum_core.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/bignum_core.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\bignum_core.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/bignum_mod.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/bignum_mod.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\bignum_mod.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/bignum_mod_raw.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/bignum_mod_raw.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\bignum_mod_raw.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/block_cipher.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/block_cipher.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\block_cipher.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/camellia.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/camellia.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\camellia.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ccm.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/ccm.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\ccm.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/chacha20.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/chacha20.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\chacha20.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/chachapoly.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/chachapoly.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\chachapoly.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/cipher.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/cipher.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\cipher.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/cipher_wrap.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/cipher_wrap.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\cipher_wrap.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/cmac.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/cmac.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\cmac.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/constant_time.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/constant_time.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\constant_time.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ctr_drbg.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/ctr_drbg.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\ctr_drbg.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ecdh.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/ecdh.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\ecdh.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ecdsa.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/ecdsa.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\ecdsa.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ecjpake.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/ecjpake.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\ecjpake.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ecp.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/ecp.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\ecp.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ecp_curves.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/ecp_curves.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\ecp_curves.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ecp_curves_new.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/ecp_curves_new.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\ecp_curves_new.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/entropy.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/entropy.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\entropy.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/entropy_poll.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/entropy_poll.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\entropy_poll.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/gcm.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/gcm.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\gcm.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/hmac_drbg.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/hmac_drbg.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\hmac_drbg.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/lmots.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/lmots.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\lmots.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/lms.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/lms.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\lms.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/md.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/md.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\md.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/md5.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/md5.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\md5.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/memory_buffer_alloc.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/memory_buffer_alloc.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\memory_buffer_alloc.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/nist_kw.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/nist_kw.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\nist_kw.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/oid.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/oid.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\oid.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pem.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/pem.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\pem.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pk.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/pk.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\pk.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pk_ecc.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/pk_ecc.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\pk_ecc.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pk_rsa.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/pk_rsa.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\pk_rsa.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pk_wrap.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/pk_wrap.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\pk_wrap.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pkcs5.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/pkcs5.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\pkcs5.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pkparse.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/pkparse.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\pkparse.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pkwrite.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/pkwrite.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\pkwrite.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/platform.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/platform.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\platform.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/platform_util.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/platform_util.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\platform_util.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/poly1305.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/poly1305.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\poly1305.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_aead.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/psa_crypto_aead.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\psa_crypto_aead.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_cipher.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/psa_crypto_cipher.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\psa_crypto_cipher.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_ecp.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/psa_crypto_ecp.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\psa_crypto_ecp.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_ffdh.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/psa_crypto_ffdh.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\psa_crypto_ffdh.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_hash.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/psa_crypto_hash.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\psa_crypto_hash.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_mac.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/psa_crypto_mac.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\psa_crypto_mac.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_pake.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/psa_crypto_pake.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\psa_crypto_pake.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_rsa.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/psa_crypto_rsa.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\psa_crypto_rsa.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_util.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/psa_util.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\psa_util.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ripemd160.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/ripemd160.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\ripemd160.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/rsa.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/rsa.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\rsa.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/rsa_alt_helpers.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/rsa_alt_helpers.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\rsa_alt_helpers.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/sha1.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/sha1.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\sha1.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/sha256.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/sha256.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\sha256.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/sha3.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/sha3.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\sha3.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/sha512.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/sha512.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\sha512.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/threading.c.obj: C_COMPILER__builtin_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/threading.c || cmake_object_order_depends_target_builtin + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src\threading.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\src + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target builtin + + +############################################# +# Link the static library esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.a + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a: CXX_STATIC_LIBRARY_LINKER__builtin_ esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/aes.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/aesce.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/aesni.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/aria.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/asn1parse.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/asn1write.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/base64.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/bignum.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/bignum_core.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/bignum_mod.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/bignum_mod_raw.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/block_cipher.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/camellia.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ccm.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/chacha20.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/chachapoly.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/cipher.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/cipher_wrap.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/cmac.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/constant_time.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ctr_drbg.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ecdh.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ecdsa.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ecjpake.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ecp.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ecp_curves.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ecp_curves_new.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/entropy.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/entropy_poll.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/gcm.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/hmac_drbg.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/lmots.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/lms.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/md.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/md5.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/memory_buffer_alloc.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/nist_kw.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/oid.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pem.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pk.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pk_ecc.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pk_rsa.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pk_wrap.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pkcs5.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pkparse.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pkwrite.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/platform.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/platform_util.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/poly1305.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_aead.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_cipher.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_ecp.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_ffdh.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_hash.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_mac.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_pake.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_rsa.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_util.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ripemd160.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/rsa.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/rsa_alt_helpers.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/sha1.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/sha256.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/sha3.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/sha512.c.obj esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/threading.c.obj || esp-idf/mbedtls/mbedtls/library/libmbedx509.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags" + OBJECT_DIR = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\CMakeFiles\builtin.dir\builtin.pdb + TARGET_FILE = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.a + TARGET_PDB = esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/edit_cache: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/rebuild_cache: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/install: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/install/local: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/install/strip: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\src && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/edit_cache: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\src && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/rebuild_cache: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\src && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/install: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\src && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/install/local: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\src && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/install/strip: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/pkgconfig/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\tf-psa-crypto\pkgconfig && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/pkgconfig/edit_cache: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/pkgconfig/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/pkgconfig/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\tf-psa-crypto\pkgconfig && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/pkgconfig/rebuild_cache: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/pkgconfig/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/pkgconfig/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/pkgconfig/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/tf-psa-crypto/pkgconfig/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\tf-psa-crypto\pkgconfig && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/pkgconfig/install: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/pkgconfig/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/pkgconfig/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/tf-psa-crypto/pkgconfig/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\tf-psa-crypto\pkgconfig && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/pkgconfig/install/local: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/pkgconfig/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/pkgconfig/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/tf-psa-crypto/pkgconfig/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\tf-psa-crypto\pkgconfig && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/pkgconfig/install/strip: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/pkgconfig/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target mbedx509 + + +############################################# +# Order-only phony target for mbedx509 + +build cmake_object_order_depends_target_mbedx509: phony || cmake_object_order_depends_target_mbedtls + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/error.c.obj: C_COMPILER__mbedx509_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library/error.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\error.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\mbedx509.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedx509.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/mbedtls_config.c.obj: C_COMPILER__mbedx509_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library/mbedtls_config.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\mbedtls_config.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\mbedx509.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedx509.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj: C_COMPILER__mbedx509_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library/pkcs7.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\pkcs7.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\mbedx509.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedx509.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj: C_COMPILER__mbedx509_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library/x509.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\x509.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\mbedx509.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedx509.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj: C_COMPILER__mbedx509_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library/x509_create.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\x509_create.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\mbedx509.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedx509.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj: C_COMPILER__mbedx509_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library/x509_crl.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\x509_crl.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\mbedx509.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedx509.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj: C_COMPILER__mbedx509_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library/x509_crt.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\x509_crt.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\mbedx509.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedx509.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj: C_COMPILER__mbedx509_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library/x509_csr.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\x509_csr.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\mbedx509.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedx509.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_oid.c.obj: C_COMPILER__mbedx509_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library/x509_oid.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\x509_oid.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\mbedx509.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedx509.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj: C_COMPILER__mbedx509_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library/x509write.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\x509write.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\mbedx509.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedx509.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj: C_COMPILER__mbedx509_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library/x509write_crt.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\x509write_crt.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\mbedx509.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedx509.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj: C_COMPILER__mbedx509_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library/x509write_csr.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\x509write_csr.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\mbedx509.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedx509.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target mbedx509 + + +############################################# +# Link the static library esp-idf\mbedtls\mbedtls\library\libmbedx509.a + +build esp-idf/mbedtls/mbedtls/library/libmbedx509.a: CXX_STATIC_LIBRARY_LINKER__mbedx509_ esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/error.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/mbedtls_config.c.obj 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/x509_oid.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 + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags" + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\mbedx509.pdb + TARGET_FILE = esp-idf\mbedtls\mbedtls\library\libmbedx509.a + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedx509.pdb + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target mbedtls + + +############################################# +# Order-only phony target for mbedtls + +build cmake_object_order_depends_target_mbedtls: phony || cmake_object_order_depends_target_tfpsacrypto + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library/debug.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\debug.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library/mps_reader.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mps_reader.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library/mps_trace.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mps_trace.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library/ssl_cache.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_cache.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library/ssl_ciphersuites.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_ciphersuites.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library/ssl_client.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_client.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library/ssl_cookie.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_cookie.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library/ssl_debug_helpers_generated.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_debug_helpers_generated.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library/ssl_msg.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_msg.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library/ssl_ticket.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_ticket.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library/ssl_tls.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_tls.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library/ssl_tls12_client.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_tls12_client.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library/ssl_tls12_server.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_tls12_server.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_keys.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_tls13_keys.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_server.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_tls13_server.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_client.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_tls13_client.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_generic.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_tls13_generic.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/timing.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library/timing.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\timing.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/version.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library/version.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\version.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/version_features.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library/version_features.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\version_features.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/port/mbedtls_debug.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port\mbedtls_debug.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/esp_platform_time.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/port/esp_platform_time.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port\esp_platform_time.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/esp_timing.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/port/esp_timing.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port\esp_timing.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/esp_psa_crypto_init.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/port/esp_psa_crypto_init.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port\esp_psa_crypto_init.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/net_sockets.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/esp/v6.0/esp-idf/components/mbedtls/port/net_sockets.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port\net_sockets.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\C_\esp\v6.0\esp-idf\components\mbedtls\port + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target mbedtls + + +############################################# +# Link the static library esp-idf\mbedtls\mbedtls\library\libmbedtls.a + +build 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/timing.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/version.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/version_features.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/esp_platform_time.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/esp_timing.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/esp_psa_crypto_init.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/net_sockets.c.obj || esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags" + OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir + POST_BUILD = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\library && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E copy_if_different C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a libtfpsacrypto.a && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E copy_if_different C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a libmbedcrypto.a" + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb + TARGET_FILE = esp-idf\mbedtls\mbedtls\library\libmbedtls.a + TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb + + +############################################# +# Utility command for lib + +build esp-idf/mbedtls/mbedtls/library/lib: phony esp-idf/mbedtls/mbedtls/library/CMakeFiles/lib esp-idf/xtensa/libxtensa.a + + +############################################# +# Utility command for edit_cache + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\library && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/library/edit_cache: phony esp-idf/mbedtls/mbedtls/library/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\library && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/library/rebuild_cache: phony esp-idf/mbedtls/mbedtls/library/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/mbedtls/mbedtls/library/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/library/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\library && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/library/install: phony esp-idf/mbedtls/mbedtls/library/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/library/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\library && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/library/install/local: phony esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/library/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\library && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/library/install/strip: phony esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/strip.util + + +############################################# +# Phony custom command for esp-idf\mbedtls\mbedtls\library\CMakeFiles\lib + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/lib | ${cmake_ninja_workdir}esp-idf/mbedtls/mbedtls/library/CMakeFiles/lib: phony 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/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_bootloader_format/libesp_bootloader_format.a esp-idf/esp_coex/libesp_coex.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_dma/libesp_driver_dma.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a esp-idf/esp_hal_clock/libesp_hal_clock.a esp-idf/esp_hal_gpio/libesp_hal_gpio.a esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a esp-idf/esp_hal_i2c/libesp_hal_i2c.a esp-idf/esp_hal_i2s/libesp_hal_i2s.a esp-idf/esp_hal_mspi/libesp_hal_mspi.a esp-idf/esp_hal_security/libesp_hal_security.a esp-idf/esp_hal_timg/libesp_hal_timg.a esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a esp-idf/esp_hal_uart/libesp_hal_uart.a esp-idf/esp_hal_wdt/libesp_hal_wdt.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_libc/libesp_libc.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_psram/libesp_psram.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_stdio/libesp_stdio.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory_ld_in_preprocess esp-idf/esp_system/sections_ld_in_preprocess 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/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/libeverest.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/libp256m.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/nvs_sec_provider/libnvs_sec_provider.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/vfs/libvfs.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\pkgconfig && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/pkgconfig/edit_cache: phony esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\pkgconfig && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/pkgconfig/rebuild_cache: phony esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/mbedtls/mbedtls/pkgconfig/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/pkgconfig/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\pkgconfig && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/pkgconfig/install: phony esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/pkgconfig/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\pkgconfig && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/pkgconfig/install/local: phony esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/pkgconfig/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\mbedtls\mbedtls\pkgconfig && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/mbedtls/mbedtls/pkgconfig/install/strip: phony esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_hal_timg + + +############################################# +# Order-only phony target for __idf_esp_hal_timg + +build cmake_object_order_depends_target___idf_esp_hal_timg: phony || cmake_object_order_depends_target___idf_esp_hal_wdt + +build esp-idf/esp_hal_timg/CMakeFiles/__idf_esp_hal_timg.dir/timer_hal.c.obj: C_COMPILER____idf_esp_hal_timg_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_timg/timer_hal.c || cmake_object_order_depends_target___idf_esp_hal_timg + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_timg\CMakeFiles\__idf_esp_hal_timg.dir\timer_hal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_hal_timg\CMakeFiles\__idf_esp_hal_timg.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_timg\CMakeFiles\__idf_esp_hal_timg.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_timg\CMakeFiles\__idf_esp_hal_timg.dir\__idf_esp_hal_timg.pdb + TARGET_PDB = esp-idf\esp_hal_timg\libesp_hal_timg.pdb + +build esp-idf/esp_hal_timg/CMakeFiles/__idf_esp_hal_timg.dir/esp32/timer_periph.c.obj: C_COMPILER____idf_esp_hal_timg_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/timer_periph.c || cmake_object_order_depends_target___idf_esp_hal_timg + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_timg\CMakeFiles\__idf_esp_hal_timg.dir\esp32\timer_periph.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_hal_timg\CMakeFiles\__idf_esp_hal_timg.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_timg\CMakeFiles\__idf_esp_hal_timg.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hal_timg\CMakeFiles\__idf_esp_hal_timg.dir\__idf_esp_hal_timg.pdb + TARGET_PDB = esp-idf\esp_hal_timg\libesp_hal_timg.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_hal_timg + + +############################################# +# Link the static library esp-idf\esp_hal_timg\libesp_hal_timg.a + +build esp-idf/esp_hal_timg/libesp_hal_timg.a: C_STATIC_LIBRARY_LINKER____idf_esp_hal_timg_ esp-idf/esp_hal_timg/CMakeFiles/__idf_esp_hal_timg.dir/timer_hal.c.obj esp-idf/esp_hal_timg/CMakeFiles/__idf_esp_hal_timg.dir/esp32/timer_periph.c.obj || esp-idf/esp_hal_wdt/libesp_hal_wdt.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_hal_timg\CMakeFiles\__idf_esp_hal_timg.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_hal_timg\CMakeFiles\__idf_esp_hal_timg.dir\__idf_esp_hal_timg.pdb + TARGET_FILE = esp-idf\esp_hal_timg\libesp_hal_timg.a + TARGET_PDB = esp-idf\esp_hal_timg\libesp_hal_timg.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hal_timg/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_timg && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hal_timg/edit_cache: phony esp-idf/esp_hal_timg/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hal_timg/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_timg && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hal_timg/rebuild_cache: phony esp-idf/esp_hal_timg/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_hal_timg/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_hal_timg/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hal_timg/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_timg && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_hal_timg/install: phony esp-idf/esp_hal_timg/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_hal_timg/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hal_timg/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_timg && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_hal_timg/install/local: phony esp-idf/esp_hal_timg/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_hal_timg/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hal_timg/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_timg && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_hal_timg/install/strip: phony esp-idf/esp_hal_timg/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_hal_wdt + + +############################################# +# Order-only phony target for __idf_esp_hal_wdt + +build cmake_object_order_depends_target___idf_esp_hal_wdt: phony || cmake_object_order_depends_target___idf_esp_hal_i2s + +build esp-idf/esp_hal_wdt/CMakeFiles/__idf_esp_hal_wdt.dir/esp32/mwdt_periph.c.obj: C_COMPILER____idf_esp_hal_wdt_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/mwdt_periph.c || cmake_object_order_depends_target___idf_esp_hal_wdt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_wdt\CMakeFiles\__idf_esp_hal_wdt.dir\esp32\mwdt_periph.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include + OBJECT_DIR = esp-idf\esp_hal_wdt\CMakeFiles\__idf_esp_hal_wdt.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_wdt\CMakeFiles\__idf_esp_hal_wdt.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hal_wdt\CMakeFiles\__idf_esp_hal_wdt.dir\__idf_esp_hal_wdt.pdb + TARGET_PDB = esp-idf\esp_hal_wdt\libesp_hal_wdt.pdb + +build esp-idf/esp_hal_wdt/CMakeFiles/__idf_esp_hal_wdt.dir/wdt_hal_iram.c.obj: C_COMPILER____idf_esp_hal_wdt_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_wdt/wdt_hal_iram.c || cmake_object_order_depends_target___idf_esp_hal_wdt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_wdt\CMakeFiles\__idf_esp_hal_wdt.dir\wdt_hal_iram.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include + OBJECT_DIR = esp-idf\esp_hal_wdt\CMakeFiles\__idf_esp_hal_wdt.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_wdt\CMakeFiles\__idf_esp_hal_wdt.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_wdt\CMakeFiles\__idf_esp_hal_wdt.dir\__idf_esp_hal_wdt.pdb + TARGET_PDB = esp-idf\esp_hal_wdt\libesp_hal_wdt.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_hal_wdt + + +############################################# +# Link the static library esp-idf\esp_hal_wdt\libesp_hal_wdt.a + +build esp-idf/esp_hal_wdt/libesp_hal_wdt.a: C_STATIC_LIBRARY_LINKER____idf_esp_hal_wdt_ esp-idf/esp_hal_wdt/CMakeFiles/__idf_esp_hal_wdt.dir/esp32/mwdt_periph.c.obj esp-idf/esp_hal_wdt/CMakeFiles/__idf_esp_hal_wdt.dir/wdt_hal_iram.c.obj || esp-idf/esp_hal_i2s/libesp_hal_i2s.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_hal_wdt\CMakeFiles\__idf_esp_hal_wdt.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_hal_wdt\CMakeFiles\__idf_esp_hal_wdt.dir\__idf_esp_hal_wdt.pdb + TARGET_FILE = esp-idf\esp_hal_wdt\libesp_hal_wdt.a + TARGET_PDB = esp-idf\esp_hal_wdt\libesp_hal_wdt.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hal_wdt/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_wdt && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hal_wdt/edit_cache: phony esp-idf/esp_hal_wdt/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hal_wdt/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_wdt && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hal_wdt/rebuild_cache: phony esp-idf/esp_hal_wdt/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_hal_wdt/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_hal_wdt/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hal_wdt/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_wdt && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_hal_wdt/install: phony esp-idf/esp_hal_wdt/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_hal_wdt/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hal_wdt/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_wdt && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_hal_wdt/install/local: phony esp-idf/esp_hal_wdt/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_hal_wdt/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hal_wdt/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_wdt && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_hal_wdt/install/strip: phony esp-idf/esp_hal_wdt/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_hal_i2s + + +############################################# +# Order-only phony target for __idf_esp_hal_i2s + +build cmake_object_order_depends_target___idf_esp_hal_i2s: phony || cmake_object_order_depends_target___idf_esp_hal_ana_conv + +build esp-idf/esp_hal_i2s/CMakeFiles/__idf_esp_hal_i2s.dir/i2s_hal.c.obj: C_COMPILER____idf_esp_hal_i2s_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_i2s/i2s_hal.c || cmake_object_order_depends_target___idf_esp_hal_i2s + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_i2s\CMakeFiles\__idf_esp_hal_i2s.dir\i2s_hal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_hal_i2s\CMakeFiles\__idf_esp_hal_i2s.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_i2s\CMakeFiles\__idf_esp_hal_i2s.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_i2s\CMakeFiles\__idf_esp_hal_i2s.dir\__idf_esp_hal_i2s.pdb + TARGET_PDB = esp-idf\esp_hal_i2s\libesp_hal_i2s.pdb + +build esp-idf/esp_hal_i2s/CMakeFiles/__idf_esp_hal_i2s.dir/esp32/i2s_periph.c.obj: C_COMPILER____idf_esp_hal_i2s_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/i2s_periph.c || cmake_object_order_depends_target___idf_esp_hal_i2s + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_i2s\CMakeFiles\__idf_esp_hal_i2s.dir\esp32\i2s_periph.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_hal_i2s\CMakeFiles\__idf_esp_hal_i2s.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_i2s\CMakeFiles\__idf_esp_hal_i2s.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hal_i2s\CMakeFiles\__idf_esp_hal_i2s.dir\__idf_esp_hal_i2s.pdb + TARGET_PDB = esp-idf\esp_hal_i2s\libesp_hal_i2s.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_hal_i2s + + +############################################# +# Link the static library esp-idf\esp_hal_i2s\libesp_hal_i2s.a + +build esp-idf/esp_hal_i2s/libesp_hal_i2s.a: C_STATIC_LIBRARY_LINKER____idf_esp_hal_i2s_ esp-idf/esp_hal_i2s/CMakeFiles/__idf_esp_hal_i2s.dir/i2s_hal.c.obj esp-idf/esp_hal_i2s/CMakeFiles/__idf_esp_hal_i2s.dir/esp32/i2s_periph.c.obj || esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_hal_i2s\CMakeFiles\__idf_esp_hal_i2s.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_hal_i2s\CMakeFiles\__idf_esp_hal_i2s.dir\__idf_esp_hal_i2s.pdb + TARGET_FILE = esp-idf\esp_hal_i2s\libesp_hal_i2s.a + TARGET_PDB = esp-idf\esp_hal_i2s\libesp_hal_i2s.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hal_i2s/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_i2s && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hal_i2s/edit_cache: phony esp-idf/esp_hal_i2s/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hal_i2s/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_i2s && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hal_i2s/rebuild_cache: phony esp-idf/esp_hal_i2s/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_hal_i2s/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_hal_i2s/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hal_i2s/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_i2s && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_hal_i2s/install: phony esp-idf/esp_hal_i2s/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_hal_i2s/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hal_i2s/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_i2s && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_hal_i2s/install/local: phony esp-idf/esp_hal_i2s/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_hal_i2s/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hal_i2s/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_i2s && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_hal_i2s/install/strip: phony esp-idf/esp_hal_i2s/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_hal_ana_conv + + +############################################# +# Order-only phony target for __idf_esp_hal_ana_conv + +build cmake_object_order_depends_target___idf_esp_hal_ana_conv: phony || cmake_object_order_depends_target___idf_bootloader_support + +build esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/esp32/adc_periph.c.obj: C_COMPILER____idf_esp_hal_ana_conv_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/adc_periph.c || cmake_object_order_depends_target___idf_esp_hal_ana_conv + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_ana_conv\CMakeFiles\__idf_esp_hal_ana_conv.dir\esp32\adc_periph.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_hal_ana_conv\CMakeFiles\__idf_esp_hal_ana_conv.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_ana_conv\CMakeFiles\__idf_esp_hal_ana_conv.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hal_ana_conv\CMakeFiles\__idf_esp_hal_ana_conv.dir\__idf_esp_hal_ana_conv.pdb + TARGET_PDB = esp-idf\esp_hal_ana_conv\libesp_hal_ana_conv.pdb + +build esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_hal_common.c.obj: C_COMPILER____idf_esp_hal_ana_conv_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/adc_hal_common.c || cmake_object_order_depends_target___idf_esp_hal_ana_conv + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_ana_conv\CMakeFiles\__idf_esp_hal_ana_conv.dir\adc_hal_common.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_hal_ana_conv\CMakeFiles\__idf_esp_hal_ana_conv.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_ana_conv\CMakeFiles\__idf_esp_hal_ana_conv.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_ana_conv\CMakeFiles\__idf_esp_hal_ana_conv.dir\__idf_esp_hal_ana_conv.pdb + TARGET_PDB = esp-idf\esp_hal_ana_conv\libesp_hal_ana_conv.pdb + +build esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_oneshot_hal.c.obj: C_COMPILER____idf_esp_hal_ana_conv_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/adc_oneshot_hal.c || cmake_object_order_depends_target___idf_esp_hal_ana_conv + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_ana_conv\CMakeFiles\__idf_esp_hal_ana_conv.dir\adc_oneshot_hal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_hal_ana_conv\CMakeFiles\__idf_esp_hal_ana_conv.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_ana_conv\CMakeFiles\__idf_esp_hal_ana_conv.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_ana_conv\CMakeFiles\__idf_esp_hal_ana_conv.dir\__idf_esp_hal_ana_conv.pdb + TARGET_PDB = esp-idf\esp_hal_ana_conv\libesp_hal_ana_conv.pdb + +build esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_hal.c.obj: C_COMPILER____idf_esp_hal_ana_conv_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/adc_hal.c || cmake_object_order_depends_target___idf_esp_hal_ana_conv + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_ana_conv\CMakeFiles\__idf_esp_hal_ana_conv.dir\adc_hal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_hal_ana_conv\CMakeFiles\__idf_esp_hal_ana_conv.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_ana_conv\CMakeFiles\__idf_esp_hal_ana_conv.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_ana_conv\CMakeFiles\__idf_esp_hal_ana_conv.dir\__idf_esp_hal_ana_conv.pdb + TARGET_PDB = esp-idf\esp_hal_ana_conv\libesp_hal_ana_conv.pdb + +build esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/esp32/dac_periph.c.obj: C_COMPILER____idf_esp_hal_ana_conv_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/dac_periph.c || cmake_object_order_depends_target___idf_esp_hal_ana_conv + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_ana_conv\CMakeFiles\__idf_esp_hal_ana_conv.dir\esp32\dac_periph.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_hal_ana_conv\CMakeFiles\__idf_esp_hal_ana_conv.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_ana_conv\CMakeFiles\__idf_esp_hal_ana_conv.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hal_ana_conv\CMakeFiles\__idf_esp_hal_ana_conv.dir\__idf_esp_hal_ana_conv.pdb + TARGET_PDB = esp-idf\esp_hal_ana_conv\libesp_hal_ana_conv.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_hal_ana_conv + + +############################################# +# Link the static library esp-idf\esp_hal_ana_conv\libesp_hal_ana_conv.a + +build esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a: C_STATIC_LIBRARY_LINKER____idf_esp_hal_ana_conv_ esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/esp32/adc_periph.c.obj esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_hal_common.c.obj esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_oneshot_hal.c.obj esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_hal.c.obj esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/esp32/dac_periph.c.obj || esp-idf/bootloader_support/libbootloader_support.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_hal_ana_conv\CMakeFiles\__idf_esp_hal_ana_conv.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_hal_ana_conv\CMakeFiles\__idf_esp_hal_ana_conv.dir\__idf_esp_hal_ana_conv.pdb + TARGET_FILE = esp-idf\esp_hal_ana_conv\libesp_hal_ana_conv.a + TARGET_PDB = esp-idf\esp_hal_ana_conv\libesp_hal_ana_conv.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hal_ana_conv/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_ana_conv && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hal_ana_conv/edit_cache: phony esp-idf/esp_hal_ana_conv/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hal_ana_conv/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_ana_conv && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hal_ana_conv/rebuild_cache: phony esp-idf/esp_hal_ana_conv/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_hal_ana_conv/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_hal_ana_conv/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hal_ana_conv/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_ana_conv && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_hal_ana_conv/install: phony esp-idf/esp_hal_ana_conv/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_hal_ana_conv/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hal_ana_conv/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_ana_conv && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_hal_ana_conv/install/local: phony esp-idf/esp_hal_ana_conv/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_hal_ana_conv/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hal_ana_conv/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_ana_conv && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_hal_ana_conv/install/strip: phony esp-idf/esp_hal_ana_conv/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hal_rtc_timer/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_rtc_timer && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hal_rtc_timer/edit_cache: phony esp-idf/esp_hal_rtc_timer/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hal_rtc_timer/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_rtc_timer && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hal_rtc_timer/rebuild_cache: phony esp-idf/esp_hal_rtc_timer/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_hal_rtc_timer/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_hal_rtc_timer/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hal_rtc_timer/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_rtc_timer && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_hal_rtc_timer/install: phony esp-idf/esp_hal_rtc_timer/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_hal_rtc_timer/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hal_rtc_timer/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_rtc_timer && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_hal_rtc_timer/install/local: phony esp-idf/esp_hal_rtc_timer/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_hal_rtc_timer/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hal_rtc_timer/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_rtc_timer && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_hal_rtc_timer/install/strip: phony esp-idf/esp_hal_rtc_timer/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_bootloader_support + + +############################################# +# Order-only phony target for __idf_bootloader_support + +build cmake_object_order_depends_target___idf_bootloader_support: phony || cmake_object_order_depends_target___idf_spi_flash + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/esp/v6.0/esp-idf/components/bootloader_support/src/bootloader_common.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_common.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/esp/v6.0/esp-idf/components/bootloader_support/src/bootloader_common_loader.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_common_loader.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/esp/v6.0/esp-idf/components/bootloader_support/src/bootloader_clock_init.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_clock_init.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/esp/v6.0/esp-idf/components/bootloader_support/src/bootloader_mem.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_mem.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/esp/v6.0/esp-idf/components/bootloader_support/src/bootloader_random.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_random.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/esp/v6.0/esp-idf/components/bootloader_support/src/bootloader_efuse.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_efuse.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/esp/v6.0/esp-idf/components/bootloader_support/src/flash_encrypt.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\flash_encrypt.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/esp/v6.0/esp-idf/components/bootloader_support/src/secure_boot.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\secure_boot.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/esp/v6.0/esp-idf/components/bootloader_support/src/bootloader_random_esp32.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_random_esp32.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src\bootloader_flash.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src\flash_qio_mode.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src\bootloader_flash_config_esp32.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/esp/v6.0/esp-idf/components/bootloader_support/src/bootloader_utility.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_utility.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/esp/v6.0/esp-idf/components/bootloader_support/src/flash_partitions.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\flash_partitions.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/esp/v6.0/esp-idf/components/bootloader_support/src/esp_image_format.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\esp_image_format.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_sha.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/esp/v6.0/esp-idf/components/bootloader_support/src/bootloader_sha.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_sha.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/secure_boot_secure_features.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/esp/v6.0/esp-idf/components/bootloader_support/src/esp32/secure_boot_secure_features.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\esp32\secure_boot_secure_features.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\esp32 + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_bootloader_support + + +############################################# +# Link the static library esp-idf\bootloader_support\libbootloader_support.a + +build 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_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/src/bootloader_random_esp32.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_esp32.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_sha.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/secure_boot_secure_features.c.obj || esp-idf/spi_flash/libspi_flash.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb + TARGET_FILE = esp-idf\bootloader_support\libbootloader_support.a + TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/bootloader_support/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\bootloader_support && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/bootloader_support/edit_cache: phony esp-idf/bootloader_support/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/bootloader_support/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\bootloader_support && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/bootloader_support/rebuild_cache: phony esp-idf/bootloader_support/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/bootloader_support/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/bootloader_support/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/bootloader_support/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\bootloader_support && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/bootloader_support/install: phony esp-idf/bootloader_support/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/bootloader_support/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/bootloader_support/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\bootloader_support && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/bootloader_support/install/local: phony esp-idf/bootloader_support/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/bootloader_support/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/bootloader_support/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\bootloader_support && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/bootloader_support/install/strip: phony esp-idf/bootloader_support/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_spi_flash + + +############################################# +# Order-only phony target for __idf_spi_flash + +build cmake_object_order_depends_target___idf_spi_flash: phony || cmake_object_order_depends_target___idf_esp_system + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/esp/v6.0/esp-idf/components/spi_flash/flash_brownout_hook.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\flash_brownout_hook.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/esp/v6.0/esp-idf/components/spi_flash/spi_flash_chip_drivers.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_chip_drivers.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/esp/v6.0/esp-idf/components/spi_flash/spi_flash_chip_generic.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_chip_generic.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/esp/v6.0/esp-idf/components/spi_flash/spi_flash_chip_issi.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_chip_issi.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/esp/v6.0/esp-idf/components/spi_flash/spi_flash_chip_mxic.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_chip_mxic.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/esp/v6.0/esp-idf/components/spi_flash/spi_flash_chip_gd.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_chip_gd.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/esp/v6.0/esp-idf/components/spi_flash/spi_flash_chip_winbond.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_chip_winbond.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/esp/v6.0/esp-idf/components/spi_flash/spi_flash_chip_boya.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_chip_boya.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/esp/v6.0/esp-idf/components/spi_flash/spi_flash_chip_mxic_opi.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_chip_mxic_opi.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/esp/v6.0/esp-idf/components/spi_flash/spi_flash_chip_th.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_chip_th.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/esp/v6.0/esp-idf/components/spi_flash/memspi_host_driver.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\memspi_host_driver.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_blockdev.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/esp/v6.0/esp-idf/components/spi_flash/spi_flash_blockdev.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_blockdev.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/esp/v6.0/esp-idf/components/spi_flash/cache_utils.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\cache_utils.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/esp/v6.0/esp-idf/components/spi_flash/flash_mmap.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\flash_mmap.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/esp/v6.0/esp-idf/components/spi_flash/flash_ops.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\flash_ops.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/esp/v6.0/esp-idf/components/spi_flash/spi_flash_wrap.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_wrap.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/esp/v6.0/esp-idf/components/spi_flash/esp_flash_api.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\esp_flash_api.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/esp/v6.0/esp-idf/components/spi_flash/esp_flash_spi_init.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\esp_flash_spi_init.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/esp/v6.0/esp-idf/components/spi_flash/spi_flash_os_func_app.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_os_func_app.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/esp/v6.0/esp-idf/components/spi_flash/spi_flash_os_func_noos.c || cmake_object_order_depends_target___idf_spi_flash + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_os_func_noos.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_spi_flash + + +############################################# +# Link the static library esp-idf\spi_flash\libspi_flash.a + +build 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/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/spi_flash_blockdev.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/esp_system/libesp_system.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb + TARGET_FILE = esp-idf\spi_flash\libspi_flash.a + TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/spi_flash/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\spi_flash && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/spi_flash/edit_cache: phony esp-idf/spi_flash/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/spi_flash/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\spi_flash && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/spi_flash/rebuild_cache: phony esp-idf/spi_flash/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/spi_flash/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/spi_flash/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/spi_flash/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\spi_flash && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/spi_flash/install: phony esp-idf/spi_flash/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/spi_flash/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/spi_flash/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\spi_flash && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/spi_flash/install/local: phony esp-idf/spi_flash/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/spi_flash/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/spi_flash/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\spi_flash && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/spi_flash/install/strip: phony esp-idf/spi_flash/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_usb_cdc_rom_console/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_usb_cdc_rom_console && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_usb_cdc_rom_console/edit_cache: phony esp-idf/esp_usb_cdc_rom_console/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_usb_cdc_rom_console/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_usb_cdc_rom_console && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_usb_cdc_rom_console/rebuild_cache: phony esp-idf/esp_usb_cdc_rom_console/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_usb_cdc_rom_console/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_usb_cdc_rom_console/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_usb_cdc_rom_console/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_usb_cdc_rom_console && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_usb_cdc_rom_console/install: phony esp-idf/esp_usb_cdc_rom_console/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_usb_cdc_rom_console/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_usb_cdc_rom_console/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_usb_cdc_rom_console && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_usb_cdc_rom_console/install/local: phony esp-idf/esp_usb_cdc_rom_console/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_usb_cdc_rom_console/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_usb_cdc_rom_console/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_usb_cdc_rom_console && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_usb_cdc_rom_console/install/strip: phony esp-idf/esp_usb_cdc_rom_console/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_system + + +############################################# +# Order-only phony target for __idf_esp_system + +build cmake_object_order_depends_target___idf_esp_system: phony || cmake_object_order_depends_target___idf_esp_common + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_system/esp_err.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\esp_err.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_system/crosscore_int.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\crosscore_int.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_system/esp_ipc.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\esp_ipc.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_system/freertos_hooks.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\freertos_hooks.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_system/int_wdt.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\int_wdt.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_system/panic.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\panic.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_system/esp_system.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\esp_system.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_system/startup.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\startup.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -fno-stack-protector + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup_funcs.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_system/startup_funcs.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\startup_funcs.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_system/system_time.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\system_time.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_system/stack_check.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\stack_check.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -fno-stack-protector + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_system/ubsan.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\ubsan.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_system/xt_wdt.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\xt_wdt.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_system/task_wdt/task_wdt.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\task_wdt\task_wdt.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\task_wdt + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt_impl_timergroup.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_system/task_wdt/task_wdt_impl_timergroup.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\task_wdt\task_wdt_impl_timergroup.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\task_wdt + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_system/port/cpu_start.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\cpu_start.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -fno-stack-protector + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_system/port/panic_handler.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\panic_handler.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_system_chip.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_system/port/esp_system_chip.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\esp_system_chip.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/image_process.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_system/port/image_process.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\image_process.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_ipc_isr.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_system/port/esp_ipc_isr.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\esp_ipc_isr.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_port.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_system/port/arch/xtensa/esp_ipc_isr_port.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa\esp_ipc_isr_port.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_handler.S.obj: ASM_COMPILER____idf_esp_system_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_system/port/arch/xtensa/esp_ipc_isr_handler.S || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa\esp_ipc_isr_handler.S.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/asmflags" -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_routines.S.obj: ASM_COMPILER____idf_esp_system_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_system/port/arch/xtensa/esp_ipc_isr_routines.S || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa\esp_ipc_isr_routines.S.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/asmflags" -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_arch.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_system/port/arch/xtensa/panic_arch.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa\panic_arch.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_handler_asm.S.obj: ASM_COMPILER____idf_esp_system_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_system/port/arch/xtensa/panic_handler_asm.S || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa\panic_handler_asm.S.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/asmflags" -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_system/port/arch/xtensa/expression_with_stack.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa\expression_with_stack.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack_asm.S.obj: ASM_COMPILER____idf_esp_system_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_system/port/arch/xtensa/expression_with_stack_asm.S || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa\expression_with_stack_asm.S.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/asmflags" -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_system/port/arch/xtensa/debug_helpers.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa\debug_helpers.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers_asm.S.obj: ASM_COMPILER____idf_esp_system_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_system/port/arch/xtensa/debug_helpers_asm.S || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa\debug_helpers_asm.S.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/asmflags" -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_stubs.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_system/port/arch/xtensa/debug_stubs.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa\debug_stubs.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/trax.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_system/port/arch/xtensa/trax.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa\trax.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\xtensa + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/highint_hdl.S.obj: ASM_COMPILER____idf_esp_system_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_system/port/soc/esp32/highint_hdl.S || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\soc\esp32\highint_hdl.S.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/asmflags" -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\soc\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/clk.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_system/port/soc/esp32/clk.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\soc\esp32\clk.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\soc\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/reset_reason.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_system/port/soc/esp32/reset_reason.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\soc\esp32\reset_reason.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\soc\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/system_internal.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_system/port/soc/esp32/system_internal.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\soc\esp32\system_internal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\soc\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + +build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/cache_err_int.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_system/port/soc/esp32/cache_err_int.c || cmake_object_order_depends_target___idf_esp_system + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\soc\esp32\cache_err_int.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\soc\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_system + + +############################################# +# Link the static library esp-idf\esp_system\libesp_system.a + +build 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/startup_funcs.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/task_wdt/task_wdt.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt_impl_timergroup.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/image_process.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_ipc_isr.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_port.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_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/soc/esp32/highint_hdl.S.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/clk.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/reset_reason.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/system_internal.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/cache_err_int.c.obj || esp-idf/esp_common/libesp_common.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb + TARGET_FILE = esp-idf\esp_system\libesp_system.a + TARGET_PDB = esp-idf\esp_system\libesp_system.pdb + + +############################################# +# Utility command for memory_ld_in_preprocess + +build esp-idf/esp_system/memory_ld_in_preprocess: phony esp-idf/esp_system/CMakeFiles/memory_ld_in_preprocess esp-idf/esp_system/ld/memory.ld + + +############################################# +# Utility command for sections_ld_in_preprocess + +build esp-idf/esp_system/sections_ld_in_preprocess: phony esp-idf/esp_system/CMakeFiles/sections_ld_in_preprocess esp-idf/esp_system/ld/sections.ld.in + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_system/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_system && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_system/edit_cache: phony esp-idf/esp_system/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_system/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_system && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_system/rebuild_cache: phony esp-idf/esp_system/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_system/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_system/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_system/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_system && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_system/install: phony esp-idf/esp_system/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_system/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_system/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_system && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_system/install/local: phony esp-idf/esp_system/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_system/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_system/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_system && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_system/install/strip: phony esp-idf/esp_system/CMakeFiles/install/strip.util + + +############################################# +# Phony custom command for esp-idf\esp_system\CMakeFiles\memory_ld_in_preprocess + +build esp-idf/esp_system/CMakeFiles/memory_ld_in_preprocess | ${cmake_ninja_workdir}esp-idf/esp_system/CMakeFiles/memory_ld_in_preprocess: phony esp-idf/esp_system/ld/memory.ld + + +############################################# +# Custom command for esp-idf\esp_system\ld\memory.ld + +build esp-idf/esp_system/ld/memory.ld | ${cmake_ninja_workdir}esp-idf/esp_system/ld/memory.ld: CUSTOM_COMMAND C$:/esp/v6.0/esp-idf/components/esp_system/ld/esp32/memory.ld.in config/sdkconfig.h + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_system && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCC=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc.exe -DSOURCE=C:/esp/v6.0/esp-idf/components/esp_system/ld/esp32/memory.ld.in -DTARGET=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/ld/memory.ld "-DCFLAGS=-I\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config\" -I\"C:/esp/v6.0/esp-idf/components/esp_system/ld\"" -P C:/esp/v6.0/esp-idf/tools/cmake/linker_script_preprocessor.cmake" + DESC = Preprocessing linker script C:/esp/v6.0/esp-idf/components/esp_system/ld/esp32/memory.ld.in -> C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/ld/memory.ld + restat = 1 + + +############################################# +# Phony custom command for esp-idf\esp_system\CMakeFiles\sections_ld_in_preprocess + +build esp-idf/esp_system/CMakeFiles/sections_ld_in_preprocess | ${cmake_ninja_workdir}esp-idf/esp_system/CMakeFiles/sections_ld_in_preprocess: phony esp-idf/esp_system/ld/sections.ld.in + + +############################################# +# Custom command for esp-idf\esp_system\ld\sections.ld.in + +build esp-idf/esp_system/ld/sections.ld.in | ${cmake_ninja_workdir}esp-idf/esp_system/ld/sections.ld.in: CUSTOM_COMMAND C$:/esp/v6.0/esp-idf/components/esp_system/ld/esp32/sections.ld.in config/sdkconfig.h + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_system && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCC=C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc.exe -DSOURCE=C:/esp/v6.0/esp-idf/components/esp_system/ld/esp32/sections.ld.in -DTARGET=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/ld/sections.ld.in "-DCFLAGS=-I\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config\" -I\"C:/esp/v6.0/esp-idf/components/esp_system/ld\"" -P C:/esp/v6.0/esp-idf/tools/cmake/linker_script_preprocessor.cmake" + DESC = Preprocessing linker script C:/esp/v6.0/esp-idf/components/esp_system/ld/esp32/sections.ld.in -> C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/ld/sections.ld.in + restat = 1 + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/components/esp_system/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_system/port/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_system\port && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_system/port/edit_cache: phony esp-idf/esp_system/port/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_system/port/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_system\port && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_system/port/rebuild_cache: phony esp-idf/esp_system/port/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_system/port/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_system/port/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_system/port/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_system\port && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_system/port/install: phony esp-idf/esp_system/port/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_system/port/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_system/port/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_system\port && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_system/port/install/local: phony esp-idf/esp_system/port/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_system/port/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_system/port/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_system\port && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_system/port/install/strip: phony esp-idf/esp_system/port/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/components/esp_system/port/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_system/port/soc/esp32/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_system\port\soc\esp32 && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_system/port/soc/esp32/edit_cache: phony esp-idf/esp_system/port/soc/esp32/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_system/port/soc/esp32/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_system\port\soc\esp32 && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_system/port/soc/esp32/rebuild_cache: phony esp-idf/esp_system/port/soc/esp32/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_system/port/soc/esp32/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_system/port/soc/esp32/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_system/port/soc/esp32/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_system\port\soc\esp32 && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_system/port/soc/esp32/install: phony esp-idf/esp_system/port/soc/esp32/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_system/port/soc/esp32/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_system/port/soc/esp32/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_system\port\soc\esp32 && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_system/port/soc/esp32/install/local: phony esp-idf/esp_system/port/soc/esp32/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_system/port/soc/esp32/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_system/port/soc/esp32/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_system\port\soc\esp32 && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_system/port/soc/esp32/install/strip: phony esp-idf/esp_system/port/soc/esp32/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_common + + +############################################# +# Order-only phony target for __idf_esp_common + +build cmake_object_order_depends_target___idf_esp_common: phony || cmake_object_order_depends_target___idf_esp_rom + +build esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj: C_COMPILER____idf_esp_common_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_common/src/esp_err_to_name.c || cmake_object_order_depends_target___idf_esp_common + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir\src\esp_err_to_name.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_adc/include -IC:/esp/v6.0/esp-idf/components/esp_adc/interface -IC:/esp/v6.0/esp-idf/components/esp_adc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_http_client/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/app_update/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_https_ota/include + OBJECT_DIR = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir + OBJECT_FILE_DIR = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir\__idf_esp_common.pdb + TARGET_PDB = esp-idf\esp_common\libesp_common.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_common + + +############################################# +# Link the static library esp-idf\esp_common\libesp_common.a + +build 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 + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir\__idf_esp_common.pdb + TARGET_FILE = esp-idf\esp_common\libesp_common.a + TARGET_PDB = esp-idf\esp_common\libesp_common.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_common/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_common && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_common/edit_cache: phony esp-idf/esp_common/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_common/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_common && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_common/rebuild_cache: phony esp-idf/esp_common/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_common/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_common/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_common/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_common && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_common/install: phony esp-idf/esp_common/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_common/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_common/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_common && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_common/install/local: phony esp-idf/esp_common/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_common/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_common/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_common && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_common/install/strip: phony esp-idf/esp_common/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_rom + + +############################################# +# Order-only phony target for __idf_esp_rom + +build cmake_object_order_depends_target___idf_esp_rom: phony || cmake_object_order_depends_target___idf_hal + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_rom/patches/esp_rom_sys.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_sys.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_rom/patches/esp_rom_print.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_print.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_rom/patches/esp_rom_crc.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_crc.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_serial_output.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_rom/patches/esp_rom_serial_output.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_serial_output.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_rom/patches/esp_rom_spiflash.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_spiflash.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_rom/patches/esp_rom_efuse.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_efuse.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_rom/patches/esp_rom_gpio.c || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_gpio.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + +build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj: ASM_COMPILER____idf_esp_rom_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_rom/patches/esp_rom_longjmp.S || cmake_object_order_depends_target___idf_esp_rom + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_longjmp.S.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/asmflags" -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_rom + + +############################################# +# Link the static library esp-idf\esp_rom\libesp_rom.a + +build 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_sys.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj 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_serial_output.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_gpio.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj || esp-idf/hal/libhal.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb + TARGET_FILE = esp-idf\esp_rom\libesp_rom.a + TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_rom/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_rom && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_rom/edit_cache: phony esp-idf/esp_rom/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_rom/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_rom && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_rom/rebuild_cache: phony esp-idf/esp_rom/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_rom/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_rom/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_rom/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_rom && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_rom/install: phony esp-idf/esp_rom/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_rom/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_rom/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_rom && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_rom/install/local: phony esp-idf/esp_rom/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_rom/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_rom/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_rom && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_rom/install/strip: phony esp-idf/esp_rom/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_hal + + +############################################# +# Order-only phony target for __idf_hal + +build cmake_object_order_depends_target___idf_hal: phony || cmake_object_order_depends_target___idf_log + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/esp/v6.0/esp-idf/components/hal/hal_utils.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\hal_utils.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/esp/v6.0/esp-idf/components/hal/efuse_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\efuse_hal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/efuse_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/esp/v6.0/esp-idf/components/hal/esp32/efuse_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32\efuse_hal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/esp/v6.0/esp-idf/components/hal/mmu_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\mmu_hal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/cache_hal_esp32.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/esp/v6.0/esp-idf/components/hal/esp32/cache_hal_esp32.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32\cache_hal_esp32.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/color_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/esp/v6.0/esp-idf/components/hal/color_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\color_hal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/sdmmc_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/esp/v6.0/esp-idf/components/hal/sdmmc_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\sdmmc_hal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/emac_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/esp/v6.0/esp-idf/components/hal/emac_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\emac_hal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/esp/v6.0/esp-idf/components/hal/brownout_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\brownout_hal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + +build esp-idf/hal/CMakeFiles/__idf_hal.dir/sdio_slave_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/esp/v6.0/esp-idf/components/hal/sdio_slave_hal.c || cmake_object_order_depends_target___idf_hal + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\sdio_slave_hal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_PDB = esp-idf\hal\libhal.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_hal + + +############################################# +# Link the static library esp-idf\hal\libhal.a + +build esp-idf/hal/libhal.a: C_STATIC_LIBRARY_LINKER____idf_hal_ esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/efuse_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/cache_hal_esp32.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/color_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/sdmmc_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/emac_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/sdio_slave_hal.c.obj || esp-idf/log/liblog.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb + TARGET_FILE = esp-idf\hal\libhal.a + TARGET_PDB = esp-idf\hal\libhal.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/hal/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\hal && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/hal/edit_cache: phony esp-idf/hal/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/hal/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\hal && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/hal/rebuild_cache: phony esp-idf/hal/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/hal/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/hal/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/hal/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\hal && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/hal/install: phony esp-idf/hal/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/hal/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/hal/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\hal && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/hal/install/local: phony esp-idf/hal/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/hal/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/hal/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\hal && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/hal/install/strip: phony esp-idf/hal/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_log + + +############################################# +# Order-only phony target for __idf_log + +build cmake_object_order_depends_target___idf_log: phony || cmake_object_order_depends_target___idf_heap + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_timestamp.c.obj: C_COMPILER____idf_log_unscanned_ C$:/esp/v6.0/esp-idf/components/log/src/os/log_timestamp.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\os\log_timestamp.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/log/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src\os + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj: C_COMPILER____idf_log_unscanned_ C$:/esp/v6.0/esp-idf/components/log/src/log_timestamp_common.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_timestamp_common.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/log/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_lock.c.obj: C_COMPILER____idf_log_unscanned_ C$:/esp/v6.0/esp-idf/components/log/src/os/log_lock.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\os\log_lock.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/log/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src\os + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj: C_COMPILER____idf_log_unscanned_ C$:/esp/v6.0/esp-idf/components/log/src/buffer/log_buffers.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\buffer\log_buffers.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/log/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src\buffer + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/os/util.c.obj: C_COMPILER____idf_log_unscanned_ C$:/esp/v6.0/esp-idf/components/log/src/os/util.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\os\util.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/log/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src\os + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj: C_COMPILER____idf_log_unscanned_ C$:/esp/v6.0/esp-idf/components/log/src/util.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\util.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/log/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/log_format_text.c.obj: C_COMPILER____idf_log_unscanned_ C$:/esp/v6.0/esp-idf/components/log/src/log_format_text.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_format_text.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/log/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/log_print.c.obj: C_COMPILER____idf_log_unscanned_ C$:/esp/v6.0/esp-idf/components/log/src/log_print.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_print.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/log/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/log.c.obj: C_COMPILER____idf_log_unscanned_ C$:/esp/v6.0/esp-idf/components/log/src/log.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\log.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/log/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_write.c.obj: C_COMPILER____idf_log_unscanned_ C$:/esp/v6.0/esp-idf/components/log/src/os/log_write.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\os\log_write.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/log/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src\os + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/log_level.c.obj: C_COMPILER____idf_log_unscanned_ C$:/esp/v6.0/esp-idf/components/log/src/log_level/log_level.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_level\log_level.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/log/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_level + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/tag_log_level.c.obj: C_COMPILER____idf_log_unscanned_ C$:/esp/v6.0/esp-idf/components/log/src/log_level/tag_log_level/tag_log_level.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_level\tag_log_level\tag_log_level.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/log/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_level\tag_log_level + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/linked_list/log_linked_list.c.obj: C_COMPILER____idf_log_unscanned_ C$:/esp/v6.0/esp-idf/components/log/src/log_level/tag_log_level/linked_list/log_linked_list.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_level\tag_log_level\linked_list\log_linked_list.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/log/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_level\tag_log_level\linked_list + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + +build esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/cache/log_binary_heap.c.obj: C_COMPILER____idf_log_unscanned_ C$:/esp/v6.0/esp-idf/components/log/src/log_level/tag_log_level/cache/log_binary_heap.c || cmake_object_order_depends_target___idf_log + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_level\tag_log_level\cache\log_binary_heap.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/log/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_level\tag_log_level\cache + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_PDB = esp-idf\log\liblog.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_log + + +############################################# +# Link the static library esp-idf\log\liblog.a + +build esp-idf/log/liblog.a: C_STATIC_LIBRARY_LINKER____idf_log_ esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_timestamp.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_lock.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/os/util.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log_format_text.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log_print.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_write.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/log_level.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/tag_log_level.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/linked_list/log_linked_list.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/cache/log_binary_heap.c.obj || esp-idf/heap/libheap.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb + TARGET_FILE = esp-idf\log\liblog.a + TARGET_PDB = esp-idf\log\liblog.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/log/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\log && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/log/edit_cache: phony esp-idf/log/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/log/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\log && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/log/rebuild_cache: phony esp-idf/log/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/log/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/log/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/log/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\log && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/log/install: phony esp-idf/log/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/log/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/log/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\log && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/log/install/local: phony esp-idf/log/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/log/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/log/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\log && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/log/install/strip: phony esp-idf/log/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_heap + + +############################################# +# Order-only phony target for __idf_heap + +build cmake_object_order_depends_target___idf_heap: phony || cmake_object_order_depends_target___idf_soc + +build esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_base.c.obj: C_COMPILER____idf_heap_unscanned_ C$:/esp/v6.0/esp-idf/components/heap/heap_caps_base.c || cmake_object_order_depends_target___idf_heap + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\heap\CMakeFiles\__idf_heap.dir\heap_caps_base.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -DMULTI_HEAP_FREERTOS + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/heap/private_include -IC:/esp/v6.0/esp-idf/components/heap/tlsf/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir + OBJECT_FILE_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir + TARGET_COMPILE_PDB = esp-idf\heap\CMakeFiles\__idf_heap.dir\__idf_heap.pdb + TARGET_PDB = esp-idf\heap\libheap.pdb + +build esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj: C_COMPILER____idf_heap_unscanned_ C$:/esp/v6.0/esp-idf/components/heap/heap_caps.c || cmake_object_order_depends_target___idf_heap + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\heap\CMakeFiles\__idf_heap.dir\heap_caps.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -DMULTI_HEAP_FREERTOS + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/heap/private_include -IC:/esp/v6.0/esp-idf/components/heap/tlsf/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir + OBJECT_FILE_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir + TARGET_COMPILE_PDB = esp-idf\heap\CMakeFiles\__idf_heap.dir\__idf_heap.pdb + TARGET_PDB = esp-idf\heap\libheap.pdb + +build esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj: C_COMPILER____idf_heap_unscanned_ C$:/esp/v6.0/esp-idf/components/heap/heap_caps_init.c || cmake_object_order_depends_target___idf_heap + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\heap\CMakeFiles\__idf_heap.dir\heap_caps_init.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -DMULTI_HEAP_FREERTOS + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/heap/private_include -IC:/esp/v6.0/esp-idf/components/heap/tlsf/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir + OBJECT_FILE_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir + TARGET_COMPILE_PDB = esp-idf\heap\CMakeFiles\__idf_heap.dir\__idf_heap.pdb + TARGET_PDB = esp-idf\heap\libheap.pdb + +build esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj: C_COMPILER____idf_heap_unscanned_ C$:/esp/v6.0/esp-idf/components/heap/multi_heap.c || cmake_object_order_depends_target___idf_heap + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\heap\CMakeFiles\__idf_heap.dir\multi_heap.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -DMULTI_HEAP_FREERTOS + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/heap/private_include -IC:/esp/v6.0/esp-idf/components/heap/tlsf/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir + OBJECT_FILE_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir + TARGET_COMPILE_PDB = esp-idf\heap\CMakeFiles\__idf_heap.dir\__idf_heap.pdb + TARGET_PDB = esp-idf\heap\libheap.pdb + +build esp-idf/heap/CMakeFiles/__idf_heap.dir/tlsf/tlsf.c.obj: C_COMPILER____idf_heap_unscanned_ C$:/esp/v6.0/esp-idf/components/heap/tlsf/tlsf.c || cmake_object_order_depends_target___idf_heap + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\heap\CMakeFiles\__idf_heap.dir\tlsf\tlsf.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -DMULTI_HEAP_FREERTOS + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/heap/private_include -IC:/esp/v6.0/esp-idf/components/heap/tlsf/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir + OBJECT_FILE_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir\tlsf + TARGET_COMPILE_PDB = esp-idf\heap\CMakeFiles\__idf_heap.dir\__idf_heap.pdb + TARGET_PDB = esp-idf\heap\libheap.pdb + +build esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj: C_COMPILER____idf_heap_unscanned_ C$:/esp/v6.0/esp-idf/components/heap/port/memory_layout_utils.c || cmake_object_order_depends_target___idf_heap + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\heap\CMakeFiles\__idf_heap.dir\port\memory_layout_utils.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -DMULTI_HEAP_FREERTOS + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/heap/private_include -IC:/esp/v6.0/esp-idf/components/heap/tlsf/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir + OBJECT_FILE_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir\port + TARGET_COMPILE_PDB = esp-idf\heap\CMakeFiles\__idf_heap.dir\__idf_heap.pdb + TARGET_PDB = esp-idf\heap\libheap.pdb + +build esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32/memory_layout.c.obj: C_COMPILER____idf_heap_unscanned_ C$:/esp/v6.0/esp-idf/components/heap/port/esp32/memory_layout.c || cmake_object_order_depends_target___idf_heap + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\heap\CMakeFiles\__idf_heap.dir\port\esp32\memory_layout.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -DMULTI_HEAP_FREERTOS + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/heap/private_include -IC:/esp/v6.0/esp-idf/components/heap/tlsf/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir + OBJECT_FILE_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir\port\esp32 + TARGET_COMPILE_PDB = esp-idf\heap\CMakeFiles\__idf_heap.dir\__idf_heap.pdb + TARGET_PDB = esp-idf\heap\libheap.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_heap + + +############################################# +# Link the static library esp-idf\heap\libheap.a + +build esp-idf/heap/libheap.a: C_STATIC_LIBRARY_LINKER____idf_heap_ esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_base.c.obj 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/esp32/memory_layout.c.obj || esp-idf/soc/libsoc.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\heap\CMakeFiles\__idf_heap.dir\__idf_heap.pdb + TARGET_FILE = esp-idf\heap\libheap.a + TARGET_PDB = esp-idf\heap\libheap.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/heap/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\heap && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/heap/edit_cache: phony esp-idf/heap/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/heap/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\heap && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/heap/rebuild_cache: phony esp-idf/heap/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/heap/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/heap/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/heap/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\heap && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/heap/install: phony esp-idf/heap/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/heap/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/heap/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\heap && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/heap/install/local: phony esp-idf/heap/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/heap/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/heap/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\heap && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/heap/install/strip: phony esp-idf/heap/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_soc + + +############################################# +# Order-only phony target for __idf_soc + +build cmake_object_order_depends_target___idf_soc: phony || cmake_object_order_depends_target___idf_esp_hal_gpio + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/esp/v6.0/esp-idf/components/soc/lldesc.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\lldesc.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/esp/v6.0/esp-idf/components/soc/dport_access_common.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\dport_access_common.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/interrupts.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/esp/v6.0/esp-idf/components/soc/esp32/interrupts.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32\interrupts.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/gpio_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/esp/v6.0/esp-idf/components/soc/esp32/gpio_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32\gpio_periph.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dport_access.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/esp/v6.0/esp-idf/components/soc/esp32/dport_access.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32\dport_access.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/emac_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/esp/v6.0/esp-idf/components/soc/esp32/emac_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32\emac_periph.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mpi_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/esp/v6.0/esp-idf/components/soc/esp32/mpi_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32\mpi_periph.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdmmc_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/esp/v6.0/esp-idf/components/soc/esp32/sdmmc_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32\sdmmc_periph.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdio_slave_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/esp/v6.0/esp-idf/components/soc/esp32/sdio_slave_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32\sdio_slave_periph.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + +build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/power_supply_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/esp/v6.0/esp-idf/components/soc/esp32/power_supply_periph.c || cmake_object_order_depends_target___idf_soc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32\power_supply_periph.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_PDB = esp-idf\soc\libsoc.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_soc + + +############################################# +# Link the static library esp-idf\soc\libsoc.a + +build 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/esp32/interrupts.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/gpio_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dport_access.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/emac_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mpi_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdmmc_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdio_slave_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/power_supply_periph.c.obj || esp-idf/esp_hal_gpio/libesp_hal_gpio.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb + TARGET_FILE = esp-idf\soc\libsoc.a + TARGET_PDB = esp-idf\soc\libsoc.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/soc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\soc && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/soc/edit_cache: phony esp-idf/soc/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/soc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\soc && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/soc/rebuild_cache: phony esp-idf/soc/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/soc/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/soc/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/soc/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\soc && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/soc/install: phony esp-idf/soc/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/soc/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/soc/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\soc && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/soc/install/local: phony esp-idf/soc/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/soc/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/soc/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\soc && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/soc/install/strip: phony esp-idf/soc/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_hal_gpio + + +############################################# +# Order-only phony target for __idf_esp_hal_gpio + +build cmake_object_order_depends_target___idf_esp_hal_gpio: phony || cmake_object_order_depends_target___idf_esp_hal_touch_sens + +build esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/gpio_hal.c.obj: C_COMPILER____idf_esp_hal_gpio_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_gpio/gpio_hal.c || cmake_object_order_depends_target___idf_esp_hal_gpio + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_gpio\CMakeFiles\__idf_esp_hal_gpio.dir\gpio_hal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_hal_gpio\CMakeFiles\__idf_esp_hal_gpio.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_gpio\CMakeFiles\__idf_esp_hal_gpio.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_gpio\CMakeFiles\__idf_esp_hal_gpio.dir\__idf_esp_hal_gpio.pdb + TARGET_PDB = esp-idf\esp_hal_gpio\libesp_hal_gpio.pdb + +build esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/rtc_io_hal.c.obj: C_COMPILER____idf_esp_hal_gpio_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_gpio/rtc_io_hal.c || cmake_object_order_depends_target___idf_esp_hal_gpio + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_gpio\CMakeFiles\__idf_esp_hal_gpio.dir\rtc_io_hal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_hal_gpio\CMakeFiles\__idf_esp_hal_gpio.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_gpio\CMakeFiles\__idf_esp_hal_gpio.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_gpio\CMakeFiles\__idf_esp_hal_gpio.dir\__idf_esp_hal_gpio.pdb + TARGET_PDB = esp-idf\esp_hal_gpio\libesp_hal_gpio.pdb + +build esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/esp32/rtc_io_periph.c.obj: C_COMPILER____idf_esp_hal_gpio_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/rtc_io_periph.c || cmake_object_order_depends_target___idf_esp_hal_gpio + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_gpio\CMakeFiles\__idf_esp_hal_gpio.dir\esp32\rtc_io_periph.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_hal_gpio\CMakeFiles\__idf_esp_hal_gpio.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_gpio\CMakeFiles\__idf_esp_hal_gpio.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hal_gpio\CMakeFiles\__idf_esp_hal_gpio.dir\__idf_esp_hal_gpio.pdb + TARGET_PDB = esp-idf\esp_hal_gpio\libesp_hal_gpio.pdb + +build esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/sdm_hal.c.obj: C_COMPILER____idf_esp_hal_gpio_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_gpio/sdm_hal.c || cmake_object_order_depends_target___idf_esp_hal_gpio + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_gpio\CMakeFiles\__idf_esp_hal_gpio.dir\sdm_hal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_hal_gpio\CMakeFiles\__idf_esp_hal_gpio.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_gpio\CMakeFiles\__idf_esp_hal_gpio.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_gpio\CMakeFiles\__idf_esp_hal_gpio.dir\__idf_esp_hal_gpio.pdb + TARGET_PDB = esp-idf\esp_hal_gpio\libesp_hal_gpio.pdb + +build esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/esp32/sdm_periph.c.obj: C_COMPILER____idf_esp_hal_gpio_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/sdm_periph.c || cmake_object_order_depends_target___idf_esp_hal_gpio + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_gpio\CMakeFiles\__idf_esp_hal_gpio.dir\esp32\sdm_periph.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_hal_gpio\CMakeFiles\__idf_esp_hal_gpio.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_gpio\CMakeFiles\__idf_esp_hal_gpio.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hal_gpio\CMakeFiles\__idf_esp_hal_gpio.dir\__idf_esp_hal_gpio.pdb + TARGET_PDB = esp-idf\esp_hal_gpio\libesp_hal_gpio.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_hal_gpio + + +############################################# +# Link the static library esp-idf\esp_hal_gpio\libesp_hal_gpio.a + +build esp-idf/esp_hal_gpio/libesp_hal_gpio.a: C_STATIC_LIBRARY_LINKER____idf_esp_hal_gpio_ esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/gpio_hal.c.obj esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/rtc_io_hal.c.obj esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/esp32/rtc_io_periph.c.obj esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/sdm_hal.c.obj esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/esp32/sdm_periph.c.obj || esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_hal_gpio\CMakeFiles\__idf_esp_hal_gpio.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_hal_gpio\CMakeFiles\__idf_esp_hal_gpio.dir\__idf_esp_hal_gpio.pdb + TARGET_FILE = esp-idf\esp_hal_gpio\libesp_hal_gpio.a + TARGET_PDB = esp-idf\esp_hal_gpio\libesp_hal_gpio.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hal_gpio/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_gpio && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hal_gpio/edit_cache: phony esp-idf/esp_hal_gpio/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hal_gpio/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_gpio && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hal_gpio/rebuild_cache: phony esp-idf/esp_hal_gpio/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_hal_gpio/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_hal_gpio/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hal_gpio/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_gpio && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_hal_gpio/install: phony esp-idf/esp_hal_gpio/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_hal_gpio/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hal_gpio/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_gpio && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_hal_gpio/install/local: phony esp-idf/esp_hal_gpio/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_hal_gpio/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hal_gpio/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_gpio && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_hal_gpio/install/strip: phony esp-idf/esp_hal_gpio/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hal_usb/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_usb && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hal_usb/edit_cache: phony esp-idf/esp_hal_usb/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hal_usb/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_usb && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hal_usb/rebuild_cache: phony esp-idf/esp_hal_usb/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_hal_usb/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_hal_usb/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hal_usb/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_usb && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_hal_usb/install: phony esp-idf/esp_hal_usb/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_hal_usb/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hal_usb/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_usb && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_hal_usb/install/local: phony esp-idf/esp_hal_usb/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_hal_usb/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hal_usb/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_usb && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_hal_usb/install/strip: phony esp-idf/esp_hal_usb/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hal_pmu/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_pmu && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hal_pmu/edit_cache: phony esp-idf/esp_hal_pmu/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hal_pmu/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_pmu && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hal_pmu/rebuild_cache: phony esp-idf/esp_hal_pmu/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_hal_pmu/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_hal_pmu/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hal_pmu/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_pmu && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_hal_pmu/install: phony esp-idf/esp_hal_pmu/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_hal_pmu/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hal_pmu/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_pmu && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_hal_pmu/install/local: phony esp-idf/esp_hal_pmu/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_hal_pmu/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hal_pmu/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_pmu && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_hal_pmu/install/strip: phony esp-idf/esp_hal_pmu/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_hal_touch_sens + + +############################################# +# Order-only phony target for __idf_esp_hal_touch_sens + +build cmake_object_order_depends_target___idf_esp_hal_touch_sens: phony || cmake_object_order_depends_target___idf_esp_hw_support + +build esp-idf/esp_hal_touch_sens/CMakeFiles/__idf_esp_hal_touch_sens.dir/esp32/touch_sensor_legacy_hal.c.obj: C_COMPILER____idf_esp_hal_touch_sens_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/touch_sensor_legacy_hal.c || cmake_object_order_depends_target___idf_esp_hal_touch_sens + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_touch_sens\CMakeFiles\__idf_esp_hal_touch_sens.dir\esp32\touch_sensor_legacy_hal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_hal_touch_sens\CMakeFiles\__idf_esp_hal_touch_sens.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_touch_sens\CMakeFiles\__idf_esp_hal_touch_sens.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hal_touch_sens\CMakeFiles\__idf_esp_hal_touch_sens.dir\__idf_esp_hal_touch_sens.pdb + TARGET_PDB = esp-idf\esp_hal_touch_sens\libesp_hal_touch_sens.pdb + +build esp-idf/esp_hal_touch_sens/CMakeFiles/__idf_esp_hal_touch_sens.dir/touch_sensor_legacy_hal.c.obj: C_COMPILER____idf_esp_hal_touch_sens_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/touch_sensor_legacy_hal.c || cmake_object_order_depends_target___idf_esp_hal_touch_sens + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_touch_sens\CMakeFiles\__idf_esp_hal_touch_sens.dir\touch_sensor_legacy_hal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_hal_touch_sens\CMakeFiles\__idf_esp_hal_touch_sens.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_touch_sens\CMakeFiles\__idf_esp_hal_touch_sens.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_touch_sens\CMakeFiles\__idf_esp_hal_touch_sens.dir\__idf_esp_hal_touch_sens.pdb + TARGET_PDB = esp-idf\esp_hal_touch_sens\libesp_hal_touch_sens.pdb + +build esp-idf/esp_hal_touch_sens/CMakeFiles/__idf_esp_hal_touch_sens.dir/touch_sens_hal.c.obj: C_COMPILER____idf_esp_hal_touch_sens_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/touch_sens_hal.c || cmake_object_order_depends_target___idf_esp_hal_touch_sens + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_touch_sens\CMakeFiles\__idf_esp_hal_touch_sens.dir\touch_sens_hal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_hal_touch_sens\CMakeFiles\__idf_esp_hal_touch_sens.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_touch_sens\CMakeFiles\__idf_esp_hal_touch_sens.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_touch_sens\CMakeFiles\__idf_esp_hal_touch_sens.dir\__idf_esp_hal_touch_sens.pdb + TARGET_PDB = esp-idf\esp_hal_touch_sens\libesp_hal_touch_sens.pdb + +build esp-idf/esp_hal_touch_sens/CMakeFiles/__idf_esp_hal_touch_sens.dir/esp32/touch_sensor_periph.c.obj: C_COMPILER____idf_esp_hal_touch_sens_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/touch_sensor_periph.c || cmake_object_order_depends_target___idf_esp_hal_touch_sens + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_touch_sens\CMakeFiles\__idf_esp_hal_touch_sens.dir\esp32\touch_sensor_periph.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_hal_touch_sens\CMakeFiles\__idf_esp_hal_touch_sens.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_touch_sens\CMakeFiles\__idf_esp_hal_touch_sens.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hal_touch_sens\CMakeFiles\__idf_esp_hal_touch_sens.dir\__idf_esp_hal_touch_sens.pdb + TARGET_PDB = esp-idf\esp_hal_touch_sens\libesp_hal_touch_sens.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_hal_touch_sens + + +############################################# +# Link the static library esp-idf\esp_hal_touch_sens\libesp_hal_touch_sens.a + +build esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a: C_STATIC_LIBRARY_LINKER____idf_esp_hal_touch_sens_ esp-idf/esp_hal_touch_sens/CMakeFiles/__idf_esp_hal_touch_sens.dir/esp32/touch_sensor_legacy_hal.c.obj esp-idf/esp_hal_touch_sens/CMakeFiles/__idf_esp_hal_touch_sens.dir/touch_sensor_legacy_hal.c.obj esp-idf/esp_hal_touch_sens/CMakeFiles/__idf_esp_hal_touch_sens.dir/touch_sens_hal.c.obj esp-idf/esp_hal_touch_sens/CMakeFiles/__idf_esp_hal_touch_sens.dir/esp32/touch_sensor_periph.c.obj || esp-idf/esp_hw_support/libesp_hw_support.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_hal_touch_sens\CMakeFiles\__idf_esp_hal_touch_sens.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_hal_touch_sens\CMakeFiles\__idf_esp_hal_touch_sens.dir\__idf_esp_hal_touch_sens.pdb + TARGET_FILE = esp-idf\esp_hal_touch_sens\libesp_hal_touch_sens.a + TARGET_PDB = esp-idf\esp_hal_touch_sens\libesp_hal_touch_sens.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hal_touch_sens/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_touch_sens && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hal_touch_sens/edit_cache: phony esp-idf/esp_hal_touch_sens/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hal_touch_sens/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_touch_sens && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hal_touch_sens/rebuild_cache: phony esp-idf/esp_hal_touch_sens/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_hal_touch_sens/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_hal_touch_sens/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hal_touch_sens/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_touch_sens && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_hal_touch_sens/install: phony esp-idf/esp_hal_touch_sens/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_hal_touch_sens/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hal_touch_sens/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_touch_sens && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_hal_touch_sens/install/local: phony esp-idf/esp_hal_touch_sens/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_hal_touch_sens/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hal_touch_sens/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_touch_sens && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_hal_touch_sens/install/strip: phony esp-idf/esp_hal_touch_sens/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_hw_support + + +############################################# +# Order-only phony target for __idf_esp_hw_support + +build cmake_object_order_depends_target___idf_esp_hw_support: phony || cmake_object_order_depends_target___idf_freertos + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/cpu.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\cpu.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/esp_cpu_intr.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/esp_cpu_intr.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32\esp_cpu_intr.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/esp_memory_utils.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\esp_memory_utils.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cpu_region_protect.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/cpu_region_protect.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32\cpu_region_protect.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/esp_clk.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\esp_clk.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/clk_ctrl_os.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\clk_ctrl_os.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/hw_random.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\hw_random.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/intr_alloc.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\intr_alloc.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/mac_addr.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\mac_addr.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/periph_ctrl.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\periph_ctrl.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/revision.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\revision.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/rtc_module.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\rtc_module.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/regi2c_ctrl.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\regi2c_ctrl.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_gpio_reserve.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/esp_gpio_reserve.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\esp_gpio_reserve.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_tsens_ctrl.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/sar_tsens_ctrl.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\sar_tsens_ctrl.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/io_mux.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/io_mux.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32\io_mux.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/esp_clk_tree.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/esp_clk_tree.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32\esp_clk_tree.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_bus_lock.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/spi_bus_lock.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\spi_bus_lock.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_utils.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/clk_utils.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\clk_utils.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_clk_tree_common.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp_clk_tree_common.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp_clk_tree_common.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_share_hw_ctrl.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/spi_share_hw_ctrl.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\spi_share_hw_ctrl.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/adc_share_hw_ctrl.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\adc_share_hw_ctrl.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modem.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/sleep_modem.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\sleep_modem.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/sleep_modes.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\sleep_modes.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_uart.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/sleep_uart.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\sleep_uart.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_console.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/sleep_console.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\sleep_console.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_mspi.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/sleep_mspi.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\sleep_mspi.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_usb.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/sleep_usb.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\sleep_usb.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/sleep_gpio.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\sleep_gpio.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_event.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/sleep_event.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\sleep_event.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_wdt.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/rtc_wdt.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\rtc_wdt.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning/mspi_timing_tuning.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/mspi_timing_tuning.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\mspi_timing_tuning\mspi_timing_tuning.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\mspi_timing_tuning + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/sleep_wake_stub.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\sleep_wake_stub.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clock_output.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/esp_clock_output.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\esp_clock_output.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/power_supply/brownout.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/brownout.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\power_supply\brownout.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\power_supply + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/rtc_clk.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32\rtc_clk.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk_init.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/rtc_clk_init.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32\rtc_clk_init.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_init.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/rtc_init.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32\rtc_init.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_sleep.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/rtc_sleep.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32\rtc_sleep.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_time.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/rtc_time.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32\rtc_time.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/chip_info.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/chip_info.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32\chip_info.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cache_sram_mmu.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/cache_sram_mmu.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32\cache_sram_mmu.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + +build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/sar_periph_ctrl.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/sar_periph_ctrl.c || cmake_object_order_depends_target___idf_esp_hw_support + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32\sar_periph_ctrl.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_hw_support + + +############################################# +# Link the static library esp-idf\esp_hw_support\libesp_hw_support.a + +build 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/port/esp32/esp_cpu_intr.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/esp32/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/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_tsens_ctrl.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/io_mux.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/esp_clk_tree.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_bus_lock.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_utils.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/spi_share_hw_ctrl.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_modem.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_uart.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_console.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_mspi.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_usb.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_event.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_wdt.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning/mspi_timing_tuning.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/esp_clock_output.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/power_supply/brownout.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk_init.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_init.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_sleep.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_time.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/chip_info.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cache_sram_mmu.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/sar_periph_ctrl.c.obj || esp-idf/freertos/libfreertos.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb + TARGET_FILE = esp-idf\esp_hw_support\libesp_hw_support.a + TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hw_support/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hw_support && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/edit_cache: phony esp-idf/esp_hw_support/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hw_support && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/rebuild_cache: phony esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_hw_support/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_hw_support/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hw_support/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hw_support && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/install: phony esp-idf/esp_hw_support/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_hw_support/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hw_support/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hw_support && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/install/local: phony esp-idf/esp_hw_support/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_hw_support/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hw_support/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hw_support && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/install/strip: phony esp-idf/esp_hw_support/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/components/esp_hw_support/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hw_support/port/esp32/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hw_support\port\esp32 && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/port/esp32/edit_cache: phony esp-idf/esp_hw_support/port/esp32/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hw_support/port/esp32/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hw_support\port\esp32 && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/port/esp32/rebuild_cache: phony esp-idf/esp_hw_support/port/esp32/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_hw_support/port/esp32/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_hw_support/port/esp32/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hw_support/port/esp32/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hw_support\port\esp32 && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/port/esp32/install: phony esp-idf/esp_hw_support/port/esp32/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_hw_support/port/esp32/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hw_support/port/esp32/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hw_support\port\esp32 && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/port/esp32/install/local: phony esp-idf/esp_hw_support/port/esp32/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_hw_support/port/esp32/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hw_support/port/esp32/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hw_support\port\esp32 && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/port/esp32/install/strip: phony esp-idf/esp_hw_support/port/esp32/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/components/esp_hw_support/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hw_support/lowpower/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hw_support\lowpower && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/lowpower/edit_cache: phony esp-idf/esp_hw_support/lowpower/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hw_support/lowpower/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hw_support\lowpower && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/lowpower/rebuild_cache: phony esp-idf/esp_hw_support/lowpower/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_hw_support/lowpower/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_hw_support/lowpower/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hw_support/lowpower/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hw_support\lowpower && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/lowpower/install: phony esp-idf/esp_hw_support/lowpower/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_hw_support/lowpower/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hw_support/lowpower/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hw_support\lowpower && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/lowpower/install/local: phony esp-idf/esp_hw_support/lowpower/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_hw_support/lowpower/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hw_support/lowpower/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hw_support\lowpower && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_hw_support/lowpower/install/strip: phony esp-idf/esp_hw_support/lowpower/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_freertos + + +############################################# +# Order-only phony target for __idf_freertos + +build cmake_object_order_depends_target___idf_freertos: phony || cmake_object_order_depends_target___idf_esp_libc + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/heap_idf.c.obj: C_COMPILER____idf_freertos_unscanned_ C$:/esp/v6.0/esp-idf/components/freertos/heap_idf.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\heap_idf.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/freertos -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj: C_COMPILER____idf_freertos_unscanned_ C$:/esp/v6.0/esp-idf/components/freertos/app_startup.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\app_startup.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/freertos -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj: C_COMPILER____idf_freertos_unscanned_ C$:/esp/v6.0/esp-idf/components/freertos/port_common.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\port_common.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/freertos -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_systick.c.obj: C_COMPILER____idf_freertos_unscanned_ C$:/esp/v6.0/esp-idf/components/freertos/port_systick.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\port_systick.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/freertos -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj: C_COMPILER____idf_freertos_unscanned_ C$:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/list.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\list.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/freertos -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj: C_COMPILER____idf_freertos_unscanned_ C$:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/queue.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\queue.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/freertos -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj: C_COMPILER____idf_freertos_unscanned_ C$:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/tasks.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\tasks.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/freertos -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj: C_COMPILER____idf_freertos_unscanned_ C$:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/timers.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\timers.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/freertos -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj: C_COMPILER____idf_freertos_unscanned_ C$:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/event_groups.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\event_groups.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/freertos -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj: C_COMPILER____idf_freertos_unscanned_ C$:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/stream_buffer.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\stream_buffer.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/freertos -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/port.c.obj: C_COMPILER____idf_freertos_unscanned_ C$:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\portable\xtensa\port.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/freertos -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\portable\xtensa + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/portasm.S.obj: ASM_COMPILER____idf_freertos_unscanned_ C$:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/portasm.S || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\portable\xtensa\portasm.S.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/asmflags" -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/freertos -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\portable\xtensa + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c.obj: C_COMPILER____idf_freertos_unscanned_ C$:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\portable\xtensa\xtensa_init.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/freertos -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\portable\xtensa + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_overlay_os_hook.c.obj: C_COMPILER____idf_freertos_unscanned_ C$:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/xtensa_overlay_os_hook.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\portable\xtensa\xtensa_overlay_os_hook.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/freertos -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\portable\xtensa + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions_event_groups.c.obj: C_COMPILER____idf_freertos_unscanned_ C$:/esp/v6.0/esp-idf/components/freertos/esp_additions/idf_additions_event_groups.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\esp_additions\idf_additions_event_groups.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/freertos -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\esp_additions + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions.c.obj: C_COMPILER____idf_freertos_unscanned_ C$:/esp/v6.0/esp-idf/components/freertos/esp_additions/idf_additions.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\esp_additions\idf_additions.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/freertos -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\esp_additions + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_freertos + + +############################################# +# Link the static library esp-idf\freertos\libfreertos.a + +build 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/app_startup.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_systick.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/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/FreeRTOS-Kernel/portable/xtensa/portasm.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/esp_additions/idf_additions_event_groups.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions.c.obj || esp-idf/esp_libc/libesp_libc.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb + TARGET_FILE = esp-idf\freertos\libfreertos.a + TARGET_PDB = esp-idf\freertos\libfreertos.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/freertos/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\freertos && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/freertos/edit_cache: phony esp-idf/freertos/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/freertos/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\freertos && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/freertos/rebuild_cache: phony esp-idf/freertos/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/freertos/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/freertos/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/freertos/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\freertos && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/freertos/install: phony esp-idf/freertos/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/freertos/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/freertos/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\freertos && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/freertos/install/local: phony esp-idf/freertos/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/freertos/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/freertos/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\freertos && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/freertos/install/strip: phony esp-idf/freertos/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_libc + + +############################################# +# Order-only phony target for __idf_esp_libc + +build cmake_object_order_depends_target___idf_esp_libc: phony || cmake_object_order_depends_target___idf_pthread + +build esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/init.c.obj: C_COMPILER____idf_esp_libc_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_libc/src/init.c || cmake_object_order_depends_target___idf_esp_libc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\src\init.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_libc/priv_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include + OBJECT_DIR = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir + OBJECT_FILE_DIR = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\__idf_esp_libc.pdb + TARGET_PDB = esp-idf\esp_libc\libesp_libc.pdb + +build esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/abort.c.obj: C_COMPILER____idf_esp_libc_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_libc/src/abort.c || cmake_object_order_depends_target___idf_esp_libc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\src\abort.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_libc/priv_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include + OBJECT_DIR = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir + OBJECT_FILE_DIR = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\__idf_esp_libc.pdb + TARGET_PDB = esp-idf\esp_libc\libesp_libc.pdb + +build esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/assert.c.obj: C_COMPILER____idf_esp_libc_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_libc/src/assert.c || cmake_object_order_depends_target___idf_esp_libc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\src\assert.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_libc/priv_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include + OBJECT_DIR = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir + OBJECT_FILE_DIR = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\__idf_esp_libc.pdb + TARGET_PDB = esp-idf\esp_libc\libesp_libc.pdb + +build esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/heap.c.obj: C_COMPILER____idf_esp_libc_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_libc/src/heap.c || cmake_object_order_depends_target___idf_esp_libc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\src\heap.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_libc/priv_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include + OBJECT_DIR = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir + OBJECT_FILE_DIR = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\__idf_esp_libc.pdb + TARGET_PDB = esp-idf\esp_libc\libesp_libc.pdb + +build esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/locks.c.obj: C_COMPILER____idf_esp_libc_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_libc/src/locks.c || cmake_object_order_depends_target___idf_esp_libc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\src\locks.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_libc/priv_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include + OBJECT_DIR = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir + OBJECT_FILE_DIR = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\__idf_esp_libc.pdb + TARGET_PDB = esp-idf\esp_libc\libesp_libc.pdb + +build esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/poll.c.obj: C_COMPILER____idf_esp_libc_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_libc/src/poll.c || cmake_object_order_depends_target___idf_esp_libc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\src\poll.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_libc/priv_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include + OBJECT_DIR = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir + OBJECT_FILE_DIR = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\__idf_esp_libc.pdb + TARGET_PDB = esp-idf\esp_libc\libesp_libc.pdb + +build esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/pthread.c.obj: C_COMPILER____idf_esp_libc_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_libc/src/pthread.c || cmake_object_order_depends_target___idf_esp_libc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\src\pthread.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_libc/priv_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include + OBJECT_DIR = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir + OBJECT_FILE_DIR = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\__idf_esp_libc.pdb + TARGET_PDB = esp-idf\esp_libc\libesp_libc.pdb + +build esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/random.c.obj: C_COMPILER____idf_esp_libc_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_libc/src/random.c || cmake_object_order_depends_target___idf_esp_libc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\src\random.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_libc/priv_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include + OBJECT_DIR = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir + OBJECT_FILE_DIR = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\__idf_esp_libc.pdb + TARGET_PDB = esp-idf\esp_libc\libesp_libc.pdb + +build esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/getentropy.c.obj: C_COMPILER____idf_esp_libc_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_libc/src/getentropy.c || cmake_object_order_depends_target___idf_esp_libc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\src\getentropy.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_libc/priv_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include + OBJECT_DIR = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir + OBJECT_FILE_DIR = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\__idf_esp_libc.pdb + TARGET_PDB = esp-idf\esp_libc\libesp_libc.pdb + +build esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/termios.c.obj: C_COMPILER____idf_esp_libc_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_libc/src/termios.c || cmake_object_order_depends_target___idf_esp_libc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\src\termios.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_libc/priv_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include + OBJECT_DIR = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir + OBJECT_FILE_DIR = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\__idf_esp_libc.pdb + TARGET_PDB = esp-idf\esp_libc\libesp_libc.pdb + +build esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/stdatomic.c.obj: C_COMPILER____idf_esp_libc_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_libc/src/stdatomic.c || cmake_object_order_depends_target___idf_esp_libc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\src\stdatomic.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_libc/priv_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include + OBJECT_DIR = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir + OBJECT_FILE_DIR = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\__idf_esp_libc.pdb + TARGET_PDB = esp-idf\esp_libc\libesp_libc.pdb + +build esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/time.c.obj: C_COMPILER____idf_esp_libc_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_libc/src/time.c || cmake_object_order_depends_target___idf_esp_libc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\src\time.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_libc/priv_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include + OBJECT_DIR = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir + OBJECT_FILE_DIR = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\__idf_esp_libc.pdb + TARGET_PDB = esp-idf\esp_libc\libesp_libc.pdb + +build esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/sysconf.c.obj: C_COMPILER____idf_esp_libc_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_libc/src/sysconf.c || cmake_object_order_depends_target___idf_esp_libc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\src\sysconf.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_libc/priv_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include + OBJECT_DIR = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir + OBJECT_FILE_DIR = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\__idf_esp_libc.pdb + TARGET_PDB = esp-idf\esp_libc\libesp_libc.pdb + +build esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/realpath.c.obj: C_COMPILER____idf_esp_libc_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_libc/src/realpath.c || cmake_object_order_depends_target___idf_esp_libc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\src\realpath.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_libc/priv_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include + OBJECT_DIR = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir + OBJECT_FILE_DIR = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\__idf_esp_libc.pdb + TARGET_PDB = esp-idf\esp_libc\libesp_libc.pdb + +build esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/scandir.c.obj: C_COMPILER____idf_esp_libc_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_libc/src/scandir.c || cmake_object_order_depends_target___idf_esp_libc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\src\scandir.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_libc/priv_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include + OBJECT_DIR = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir + OBJECT_FILE_DIR = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\__idf_esp_libc.pdb + TARGET_PDB = esp-idf\esp_libc\libesp_libc.pdb + +build esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/syscalls.c.obj: C_COMPILER____idf_esp_libc_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_libc/src/syscalls.c || cmake_object_order_depends_target___idf_esp_libc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\src\syscalls.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_libc/priv_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include + OBJECT_DIR = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir + OBJECT_FILE_DIR = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\__idf_esp_libc.pdb + TARGET_PDB = esp-idf\esp_libc\libesp_libc.pdb + +build esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/reent_syscalls.c.obj: C_COMPILER____idf_esp_libc_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_libc/src/reent_syscalls.c || cmake_object_order_depends_target___idf_esp_libc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\src\reent_syscalls.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_libc/priv_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include + OBJECT_DIR = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir + OBJECT_FILE_DIR = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\__idf_esp_libc.pdb + TARGET_PDB = esp-idf\esp_libc\libesp_libc.pdb + +build esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/port/esp_time_impl.c.obj: C_COMPILER____idf_esp_libc_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_libc/src/port/esp_time_impl.c || cmake_object_order_depends_target___idf_esp_libc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\src\port\esp_time_impl.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_libc/priv_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include + OBJECT_DIR = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir + OBJECT_FILE_DIR = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\src\port + TARGET_COMPILE_PDB = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\__idf_esp_libc.pdb + TARGET_PDB = esp-idf\esp_libc\libesp_libc.pdb + +build esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/picolibc/picolibc_init.c.obj: C_COMPILER____idf_esp_libc_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_libc/src/picolibc/picolibc_init.c || cmake_object_order_depends_target___idf_esp_libc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\src\picolibc\picolibc_init.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_libc/priv_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include + OBJECT_DIR = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir + OBJECT_FILE_DIR = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\src\picolibc + TARGET_COMPILE_PDB = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\__idf_esp_libc.pdb + TARGET_PDB = esp-idf\esp_libc\libesp_libc.pdb + +build esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/picolibc/rand.c.obj: C_COMPILER____idf_esp_libc_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_libc/src/picolibc/rand.c || cmake_object_order_depends_target___idf_esp_libc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\src\picolibc\rand.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_libc/priv_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include + OBJECT_DIR = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir + OBJECT_FILE_DIR = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\src\picolibc + TARGET_COMPILE_PDB = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\__idf_esp_libc.pdb + TARGET_PDB = esp-idf\esp_libc\libesp_libc.pdb + +build esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/picolibc/open_memstream.c.obj: C_COMPILER____idf_esp_libc_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_libc/src/picolibc/open_memstream.c || cmake_object_order_depends_target___idf_esp_libc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\src\picolibc\open_memstream.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_libc/priv_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include + OBJECT_DIR = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir + OBJECT_FILE_DIR = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\src\picolibc + TARGET_COMPILE_PDB = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\__idf_esp_libc.pdb + TARGET_PDB = esp-idf\esp_libc\libesp_libc.pdb + +build esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/picolibc/errno.c.obj: C_COMPILER____idf_esp_libc_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_libc/src/picolibc/errno.c || cmake_object_order_depends_target___idf_esp_libc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\src\picolibc\errno.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_libc/priv_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include + OBJECT_DIR = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir + OBJECT_FILE_DIR = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\src\picolibc + TARGET_COMPILE_PDB = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\__idf_esp_libc.pdb + TARGET_PDB = esp-idf\esp_libc\libesp_libc.pdb + +build esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/picolibc/getreent.c.obj: C_COMPILER____idf_esp_libc_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_libc/src/picolibc/getreent.c || cmake_object_order_depends_target___idf_esp_libc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\src\picolibc\getreent.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_libc/priv_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include + OBJECT_DIR = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir + OBJECT_FILE_DIR = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\src\picolibc + TARGET_COMPILE_PDB = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\__idf_esp_libc.pdb + TARGET_PDB = esp-idf\esp_libc\libesp_libc.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_libc + + +############################################# +# Link the static library esp-idf\esp_libc\libesp_libc.a + +build esp-idf/esp_libc/libesp_libc.a: C_STATIC_LIBRARY_LINKER____idf_esp_libc_ esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/init.c.obj esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/abort.c.obj esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/assert.c.obj esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/heap.c.obj esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/locks.c.obj esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/poll.c.obj esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/pthread.c.obj esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/random.c.obj esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/getentropy.c.obj esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/termios.c.obj esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/stdatomic.c.obj esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/time.c.obj esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/sysconf.c.obj esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/realpath.c.obj esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/scandir.c.obj esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/syscalls.c.obj esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/reent_syscalls.c.obj esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/port/esp_time_impl.c.obj esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/picolibc/picolibc_init.c.obj esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/picolibc/rand.c.obj esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/picolibc/open_memstream.c.obj esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/picolibc/errno.c.obj esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/picolibc/getreent.c.obj || esp-idf/pthread/libpthread.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_libc\CMakeFiles\__idf_esp_libc.dir\__idf_esp_libc.pdb + TARGET_FILE = esp-idf\esp_libc\libesp_libc.a + TARGET_PDB = esp-idf\esp_libc\libesp_libc.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_libc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_libc && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_libc/edit_cache: phony esp-idf/esp_libc/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_libc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_libc && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_libc/rebuild_cache: phony esp-idf/esp_libc/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_libc/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_libc/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_libc/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_libc && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_libc/install: phony esp-idf/esp_libc/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_libc/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_libc/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_libc && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_libc/install/local: phony esp-idf/esp_libc/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_libc/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_libc/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_libc && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_libc/install/strip: phony esp-idf/esp_libc/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/components/esp_libc/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_libc/src/port/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_libc\src\port && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_libc/src/port/edit_cache: phony esp-idf/esp_libc/src/port/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_libc/src/port/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_libc\src\port && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_libc/src/port/rebuild_cache: phony esp-idf/esp_libc/src/port/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_libc/src/port/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_libc/src/port/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_libc/src/port/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_libc\src\port && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_libc/src/port/install: phony esp-idf/esp_libc/src/port/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_libc/src/port/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_libc/src/port/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_libc\src\port && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_libc/src/port/install/local: phony esp-idf/esp_libc/src/port/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_libc/src/port/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_libc/src/port/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_libc\src\port && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_libc/src/port/install/strip: phony esp-idf/esp_libc/src/port/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_pthread + + +############################################# +# Order-only phony target for __idf_pthread + +build cmake_object_order_depends_target___idf_pthread: phony || cmake_object_order_depends_target___idf_cxx + +build esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj: C_COMPILER____idf_pthread_unscanned_ C$:/esp/v6.0/esp-idf/components/pthread/pthread.c || cmake_object_order_depends_target___idf_pthread + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\pthread.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/pthread/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir + OBJECT_FILE_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir + TARGET_COMPILE_PDB = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\__idf_pthread.pdb + TARGET_PDB = esp-idf\pthread\libpthread.pdb + +build esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj: C_COMPILER____idf_pthread_unscanned_ C$:/esp/v6.0/esp-idf/components/pthread/pthread_cond_var.c || cmake_object_order_depends_target___idf_pthread + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\pthread_cond_var.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/pthread/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir + OBJECT_FILE_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir + TARGET_COMPILE_PDB = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\__idf_pthread.pdb + TARGET_PDB = esp-idf\pthread\libpthread.pdb + +build esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj: C_COMPILER____idf_pthread_unscanned_ C$:/esp/v6.0/esp-idf/components/pthread/pthread_local_storage.c || cmake_object_order_depends_target___idf_pthread + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\pthread_local_storage.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/pthread/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir + OBJECT_FILE_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir + TARGET_COMPILE_PDB = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\__idf_pthread.pdb + TARGET_PDB = esp-idf\pthread\libpthread.pdb + +build esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj: C_COMPILER____idf_pthread_unscanned_ C$:/esp/v6.0/esp-idf/components/pthread/pthread_rwlock.c || cmake_object_order_depends_target___idf_pthread + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\pthread_rwlock.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/pthread/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir + OBJECT_FILE_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir + TARGET_COMPILE_PDB = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\__idf_pthread.pdb + TARGET_PDB = esp-idf\pthread\libpthread.pdb + +build esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_semaphore.c.obj: C_COMPILER____idf_pthread_unscanned_ C$:/esp/v6.0/esp-idf/components/pthread/pthread_semaphore.c || cmake_object_order_depends_target___idf_pthread + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\pthread_semaphore.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/pthread/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir + OBJECT_FILE_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir + TARGET_COMPILE_PDB = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\__idf_pthread.pdb + TARGET_PDB = esp-idf\pthread\libpthread.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_pthread + + +############################################# +# Link the static library esp-idf\pthread\libpthread.a + +build 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/cxx/libcxx.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\__idf_pthread.pdb + TARGET_FILE = esp-idf\pthread\libpthread.a + TARGET_PDB = esp-idf\pthread\libpthread.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/pthread/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\pthread && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/pthread/edit_cache: phony esp-idf/pthread/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/pthread/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\pthread && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/pthread/rebuild_cache: phony esp-idf/pthread/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/pthread/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/pthread/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/pthread/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\pthread && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/pthread/install: phony esp-idf/pthread/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/pthread/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/pthread/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\pthread && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/pthread/install/local: phony esp-idf/pthread/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/pthread/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/pthread/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\pthread && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/pthread/install/strip: phony esp-idf/pthread/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_cxx + + +############################################# +# Order-only phony target for __idf_cxx + +build cmake_object_order_depends_target___idf_cxx: phony || cmake_object_order_depends_target___idf_esp_timer + +build esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj: CXX_COMPILER____idf_cxx_unscanned_ C$:/esp/v6.0/esp-idf/components/cxx/cxx_exception_stubs.cpp || cmake_object_order_depends_target___idf_cxx + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\cxx\CMakeFiles\__idf_cxx.dir\cxx_exception_stubs.cpp.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/pthread/include + OBJECT_DIR = esp-idf\cxx\CMakeFiles\__idf_cxx.dir + OBJECT_FILE_DIR = esp-idf\cxx\CMakeFiles\__idf_cxx.dir + TARGET_COMPILE_PDB = esp-idf\cxx\CMakeFiles\__idf_cxx.dir\__idf_cxx.pdb + TARGET_PDB = esp-idf\cxx\libcxx.pdb + +build esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj: CXX_COMPILER____idf_cxx_unscanned_ C$:/esp/v6.0/esp-idf/components/cxx/cxx_guards.cpp || cmake_object_order_depends_target___idf_cxx + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\cxx\CMakeFiles\__idf_cxx.dir\cxx_guards.cpp.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/pthread/include + OBJECT_DIR = esp-idf\cxx\CMakeFiles\__idf_cxx.dir + OBJECT_FILE_DIR = esp-idf\cxx\CMakeFiles\__idf_cxx.dir + TARGET_COMPILE_PDB = esp-idf\cxx\CMakeFiles\__idf_cxx.dir\__idf_cxx.pdb + TARGET_PDB = esp-idf\cxx\libcxx.pdb + +build esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_init.cpp.obj: CXX_COMPILER____idf_cxx_unscanned_ C$:/esp/v6.0/esp-idf/components/cxx/cxx_init.cpp || cmake_object_order_depends_target___idf_cxx + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\cxx\CMakeFiles\__idf_cxx.dir\cxx_init.cpp.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/pthread/include + OBJECT_DIR = esp-idf\cxx\CMakeFiles\__idf_cxx.dir + OBJECT_FILE_DIR = esp-idf\cxx\CMakeFiles\__idf_cxx.dir + TARGET_COMPILE_PDB = esp-idf\cxx\CMakeFiles\__idf_cxx.dir\__idf_cxx.pdb + TARGET_PDB = esp-idf\cxx\libcxx.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_cxx + + +############################################# +# Link the static library esp-idf\cxx\libcxx.a + +build 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/cxx/CMakeFiles/__idf_cxx.dir/cxx_init.cpp.obj || esp-idf/esp_timer/libesp_timer.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\cxx\CMakeFiles\__idf_cxx.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\cxx\CMakeFiles\__idf_cxx.dir\__idf_cxx.pdb + TARGET_FILE = esp-idf\cxx\libcxx.a + TARGET_PDB = esp-idf\cxx\libcxx.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/cxx/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\cxx && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/cxx/edit_cache: phony esp-idf/cxx/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/cxx/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\cxx && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/cxx/rebuild_cache: phony esp-idf/cxx/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/cxx/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/cxx/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/cxx/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\cxx && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/cxx/install: phony esp-idf/cxx/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/cxx/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/cxx/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\cxx && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/cxx/install/local: phony esp-idf/cxx/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/cxx/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/cxx/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\cxx && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/cxx/install/strip: phony esp-idf/cxx/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_timer + + +############################################# +# Order-only phony target for __idf_esp_timer + +build cmake_object_order_depends_target___idf_esp_timer: phony || cmake_object_order_depends_target___idf_esp_ringbuf + +build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj: C_COMPILER____idf_esp_timer_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_timer/src/esp_timer.c || cmake_object_order_depends_target___idf_esp_timer + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src\esp_timer.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_timer/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include + OBJECT_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir + OBJECT_FILE_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\__idf_esp_timer.pdb + TARGET_PDB = esp-idf\esp_timer\libesp_timer.pdb + +build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_init.c.obj: C_COMPILER____idf_esp_timer_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_timer/src/esp_timer_init.c || cmake_object_order_depends_target___idf_esp_timer + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src\esp_timer_init.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_timer/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include + OBJECT_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir + OBJECT_FILE_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\__idf_esp_timer.pdb + TARGET_PDB = esp-idf\esp_timer\libesp_timer.pdb + +build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj: C_COMPILER____idf_esp_timer_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_timer/src/ets_timer_legacy.c || cmake_object_order_depends_target___idf_esp_timer + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src\ets_timer_legacy.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_timer/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include + OBJECT_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir + OBJECT_FILE_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\__idf_esp_timer.pdb + TARGET_PDB = esp-idf\esp_timer\libesp_timer.pdb + +build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj: C_COMPILER____idf_esp_timer_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_timer/src/system_time.c || cmake_object_order_depends_target___idf_esp_timer + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src\system_time.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_timer/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include + OBJECT_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir + OBJECT_FILE_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\__idf_esp_timer.pdb + TARGET_PDB = esp-idf\esp_timer\libesp_timer.pdb + +build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj: C_COMPILER____idf_esp_timer_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_timer/src/esp_timer_impl_common.c || cmake_object_order_depends_target___idf_esp_timer + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src\esp_timer_impl_common.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_timer/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include + OBJECT_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir + OBJECT_FILE_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\__idf_esp_timer.pdb + TARGET_PDB = esp-idf\esp_timer\libesp_timer.pdb + +build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_lac.c.obj: C_COMPILER____idf_esp_timer_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_timer/src/esp_timer_impl_lac.c || cmake_object_order_depends_target___idf_esp_timer + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src\esp_timer_impl_lac.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_timer/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include + OBJECT_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir + OBJECT_FILE_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\__idf_esp_timer.pdb + TARGET_PDB = esp-idf\esp_timer\libesp_timer.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_timer + + +############################################# +# Link the static library esp-idf\esp_timer\libesp_timer.a + +build 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/esp_timer_init.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_lac.c.obj || esp-idf/esp_ringbuf/libesp_ringbuf.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\__idf_esp_timer.pdb + TARGET_FILE = esp-idf\esp_timer\libesp_timer.a + TARGET_PDB = esp-idf\esp_timer\libesp_timer.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_timer/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_timer && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_timer/edit_cache: phony esp-idf/esp_timer/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_timer/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_timer && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_timer/rebuild_cache: phony esp-idf/esp_timer/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_timer/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_timer/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_timer/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_timer && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_timer/install: phony esp-idf/esp_timer/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_timer/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_timer/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_timer && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_timer/install/local: phony esp-idf/esp_timer/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_timer/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_timer/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_timer && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_timer/install/strip: phony esp-idf/esp_timer/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_ringbuf + + +############################################# +# Order-only phony target for __idf_esp_ringbuf + +build cmake_object_order_depends_target___idf_esp_ringbuf: phony || cmake_object_order_depends_target___idf_esp_psram + +build esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj: C_COMPILER____idf_esp_ringbuf_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_ringbuf/ringbuf.c || cmake_object_order_depends_target___idf_esp_ringbuf + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_ringbuf\CMakeFiles\__idf_esp_ringbuf.dir\ringbuf.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_ringbuf\CMakeFiles\__idf_esp_ringbuf.dir + OBJECT_FILE_DIR = esp-idf\esp_ringbuf\CMakeFiles\__idf_esp_ringbuf.dir + TARGET_COMPILE_PDB = esp-idf\esp_ringbuf\CMakeFiles\__idf_esp_ringbuf.dir\__idf_esp_ringbuf.pdb + TARGET_PDB = esp-idf\esp_ringbuf\libesp_ringbuf.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_ringbuf + + +############################################# +# Link the static library esp-idf\esp_ringbuf\libesp_ringbuf.a + +build 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/esp_psram/libesp_psram.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_ringbuf\CMakeFiles\__idf_esp_ringbuf.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_ringbuf\CMakeFiles\__idf_esp_ringbuf.dir\__idf_esp_ringbuf.pdb + TARGET_FILE = esp-idf\esp_ringbuf\libesp_ringbuf.a + TARGET_PDB = esp-idf\esp_ringbuf\libesp_ringbuf.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_ringbuf/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_ringbuf && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_ringbuf/edit_cache: phony esp-idf/esp_ringbuf/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_ringbuf/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_ringbuf && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_ringbuf/rebuild_cache: phony esp-idf/esp_ringbuf/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_ringbuf/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_ringbuf/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_ringbuf/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_ringbuf && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_ringbuf/install: phony esp-idf/esp_ringbuf/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_ringbuf/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_ringbuf/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_ringbuf && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_ringbuf/install/local: phony esp-idf/esp_ringbuf/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_ringbuf/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_ringbuf/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_ringbuf && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_ringbuf/install/strip: phony esp-idf/esp_ringbuf/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_psram + + +############################################# +# Order-only phony target for __idf_esp_psram + +build cmake_object_order_depends_target___idf_esp_psram: phony || cmake_object_order_depends_target___idf_esp_driver_uart + +build esp-idf/esp_psram/CMakeFiles/__idf_esp_psram.dir/system_layer/esp_psram_mspi.c.obj: C_COMPILER____idf_esp_psram_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_psram/system_layer/esp_psram_mspi.c || cmake_object_order_depends_target___idf_esp_psram + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_psram\CMakeFiles\__idf_esp_psram.dir\system_layer\esp_psram_mspi.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_psram/include -IC:/esp/v6.0/esp-idf/components/esp_psram/device/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\esp_psram\CMakeFiles\__idf_esp_psram.dir + OBJECT_FILE_DIR = esp-idf\esp_psram\CMakeFiles\__idf_esp_psram.dir\system_layer + TARGET_COMPILE_PDB = esp-idf\esp_psram\CMakeFiles\__idf_esp_psram.dir\__idf_esp_psram.pdb + TARGET_PDB = esp-idf\esp_psram\libesp_psram.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_psram + + +############################################# +# Link the static library esp-idf\esp_psram\libesp_psram.a + +build esp-idf/esp_psram/libesp_psram.a: C_STATIC_LIBRARY_LINKER____idf_esp_psram_ esp-idf/esp_psram/CMakeFiles/__idf_esp_psram.dir/system_layer/esp_psram_mspi.c.obj || esp-idf/esp_driver_uart/libesp_driver_uart.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_psram\CMakeFiles\__idf_esp_psram.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_psram\CMakeFiles\__idf_esp_psram.dir\__idf_esp_psram.pdb + TARGET_FILE = esp-idf\esp_psram\libesp_psram.a + TARGET_PDB = esp-idf\esp_psram\libesp_psram.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_psram/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_psram && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_psram/edit_cache: phony esp-idf/esp_psram/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_psram/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_psram && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_psram/rebuild_cache: phony esp-idf/esp_psram/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_psram/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_psram/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_psram/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_psram && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_psram/install: phony esp-idf/esp_psram/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_psram/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_psram/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_psram && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_psram/install/local: phony esp-idf/esp_psram/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_psram/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_psram/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_psram && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_psram/install/strip: phony esp-idf/esp_psram/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_uart + + +############################################# +# Order-only phony target for __idf_esp_driver_uart + +build cmake_object_order_depends_target___idf_esp_driver_uart: phony || cmake_object_order_depends_target___idf_esp_event + +build esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart.c.obj: C_COMPILER____idf_esp_driver_uart_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_uart/src/uart.c || cmake_object_order_depends_target___idf_esp_driver_uart + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir\src\uart.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_psram/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir\__idf_esp_driver_uart.pdb + TARGET_PDB = esp-idf\esp_driver_uart\libesp_driver_uart.pdb + +build esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_wakeup.c.obj: C_COMPILER____idf_esp_driver_uart_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_uart/src/uart_wakeup.c || cmake_object_order_depends_target___idf_esp_driver_uart + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir\src\uart_wakeup.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_psram/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir\__idf_esp_driver_uart.pdb + TARGET_PDB = esp-idf\esp_driver_uart\libesp_driver_uart.pdb + +build esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_vfs.c.obj: C_COMPILER____idf_esp_driver_uart_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_uart/src/uart_vfs.c || cmake_object_order_depends_target___idf_esp_driver_uart + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir\src\uart_vfs.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_psram/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir\__idf_esp_driver_uart.pdb + TARGET_PDB = esp-idf\esp_driver_uart\libesp_driver_uart.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_uart + + +############################################# +# Link the static library esp-idf\esp_driver_uart\libesp_driver_uart.a + +build esp-idf/esp_driver_uart/libesp_driver_uart.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_uart_ esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart.c.obj esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_wakeup.c.obj esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_vfs.c.obj || esp-idf/esp_event/libesp_event.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir\__idf_esp_driver_uart.pdb + TARGET_FILE = esp-idf\esp_driver_uart\libesp_driver_uart.a + TARGET_PDB = esp-idf\esp_driver_uart\libesp_driver_uart.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_uart/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_uart && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_uart/edit_cache: phony esp-idf/esp_driver_uart/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_uart/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_uart && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_uart/rebuild_cache: phony esp-idf/esp_driver_uart/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_uart/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_uart/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_uart/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_uart && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_uart/install: phony esp-idf/esp_driver_uart/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_uart/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_uart/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_uart && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_uart/install/local: phony esp-idf/esp_driver_uart/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_uart/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_uart/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_uart && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_uart/install/strip: phony esp-idf/esp_driver_uart/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_gptimer + + +############################################# +# Order-only phony target for __idf_esp_driver_gptimer + +build cmake_object_order_depends_target___idf_esp_driver_gptimer: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer.c.obj: C_COMPILER____idf_esp_driver_gptimer_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_gptimer/src/gptimer.c || cmake_object_order_depends_target___idf_esp_driver_gptimer + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir\src\gptimer.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_gptimer/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include + OBJECT_DIR = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir\__idf_esp_driver_gptimer.pdb + TARGET_PDB = esp-idf\esp_driver_gptimer\libesp_driver_gptimer.pdb + +build esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_common.c.obj: C_COMPILER____idf_esp_driver_gptimer_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_gptimer/src/gptimer_common.c || cmake_object_order_depends_target___idf_esp_driver_gptimer + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir\src\gptimer_common.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_gptimer/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include + OBJECT_DIR = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir\__idf_esp_driver_gptimer.pdb + TARGET_PDB = esp-idf\esp_driver_gptimer\libesp_driver_gptimer.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_gptimer + + +############################################# +# Link the static library esp-idf\esp_driver_gptimer\libesp_driver_gptimer.a + +build esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_gptimer_ esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer.c.obj esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_common.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir\__idf_esp_driver_gptimer.pdb + TARGET_FILE = esp-idf\esp_driver_gptimer\libesp_driver_gptimer.a + TARGET_PDB = esp-idf\esp_driver_gptimer\libesp_driver_gptimer.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_gptimer/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_gptimer && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_gptimer/edit_cache: phony esp-idf/esp_driver_gptimer/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_gptimer/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_gptimer && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_gptimer/rebuild_cache: phony esp-idf/esp_driver_gptimer/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_gptimer/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_gptimer/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_gptimer/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_gptimer && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_gptimer/install: phony esp-idf/esp_driver_gptimer/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_gptimer/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_gptimer/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_gptimer && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_gptimer/install/local: phony esp-idf/esp_driver_gptimer/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_gptimer/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_gptimer/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_gptimer && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_gptimer/install/strip: phony esp-idf/esp_driver_gptimer/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/app_trace/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\app_trace && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/app_trace/edit_cache: phony esp-idf/app_trace/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/app_trace/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\app_trace && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/app_trace/rebuild_cache: phony esp-idf/app_trace/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/app_trace/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/app_trace/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/app_trace/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\app_trace && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/app_trace/install: phony esp-idf/app_trace/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/app_trace/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/app_trace/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\app_trace && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/app_trace/install/local: phony esp-idf/app_trace/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/app_trace/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/app_trace/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\app_trace && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/app_trace/install/strip: phony esp-idf/app_trace/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_event + + +############################################# +# Order-only phony target for __idf_esp_event + +build cmake_object_order_depends_target___idf_esp_event: phony || cmake_object_order_depends_target___idf_nvs_sec_provider + +build esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj: C_COMPILER____idf_esp_event_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_event/default_event_loop.c || cmake_object_order_depends_target___idf_esp_event + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir\default_event_loop.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_event/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir + OBJECT_FILE_DIR = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir + TARGET_COMPILE_PDB = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir\__idf_esp_event.pdb + TARGET_PDB = esp-idf\esp_event\libesp_event.pdb + +build esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj: C_COMPILER____idf_esp_event_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_event/esp_event.c || cmake_object_order_depends_target___idf_esp_event + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir\esp_event.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_event/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir + OBJECT_FILE_DIR = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir + TARGET_COMPILE_PDB = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir\__idf_esp_event.pdb + TARGET_PDB = esp-idf\esp_event\libesp_event.pdb + +build esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj: C_COMPILER____idf_esp_event_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_event/esp_event_private.c || cmake_object_order_depends_target___idf_esp_event + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir\esp_event_private.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_event/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir + OBJECT_FILE_DIR = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir + TARGET_COMPILE_PDB = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir\__idf_esp_event.pdb + TARGET_PDB = esp-idf\esp_event\libesp_event.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_event + + +############################################# +# Link the static library esp-idf\esp_event\libesp_event.a + +build 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_sec_provider/libnvs_sec_provider.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir\__idf_esp_event.pdb + TARGET_FILE = esp-idf\esp_event\libesp_event.a + TARGET_PDB = esp-idf\esp_event\libesp_event.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_event/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_event && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_event/edit_cache: phony esp-idf/esp_event/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_event/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_event && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_event/rebuild_cache: phony esp-idf/esp_event/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_event/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_event/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_event/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_event && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_event/install: phony esp-idf/esp_event/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_event/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_event/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_event && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_event/install/local: phony esp-idf/esp_event/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_event/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_event/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_event && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_event/install/strip: phony esp-idf/esp_event/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_nvs_sec_provider + + +############################################# +# Order-only phony target for __idf_nvs_sec_provider + +build cmake_object_order_depends_target___idf_nvs_sec_provider: phony || cmake_object_order_depends_target___idf_nvs_flash + +build esp-idf/nvs_sec_provider/CMakeFiles/__idf_nvs_sec_provider.dir/nvs_sec_provider.c.obj: C_COMPILER____idf_nvs_sec_provider_unscanned_ C$:/esp/v6.0/esp-idf/components/nvs_sec_provider/nvs_sec_provider.c || cmake_object_order_depends_target___idf_nvs_sec_provider + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\nvs_sec_provider\CMakeFiles\__idf_nvs_sec_provider.dir\nvs_sec_provider.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/include + OBJECT_DIR = esp-idf\nvs_sec_provider\CMakeFiles\__idf_nvs_sec_provider.dir + OBJECT_FILE_DIR = esp-idf\nvs_sec_provider\CMakeFiles\__idf_nvs_sec_provider.dir + TARGET_COMPILE_PDB = esp-idf\nvs_sec_provider\CMakeFiles\__idf_nvs_sec_provider.dir\__idf_nvs_sec_provider.pdb + TARGET_PDB = esp-idf\nvs_sec_provider\libnvs_sec_provider.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_nvs_sec_provider + + +############################################# +# Link the static library esp-idf\nvs_sec_provider\libnvs_sec_provider.a + +build esp-idf/nvs_sec_provider/libnvs_sec_provider.a: C_STATIC_LIBRARY_LINKER____idf_nvs_sec_provider_ esp-idf/nvs_sec_provider/CMakeFiles/__idf_nvs_sec_provider.dir/nvs_sec_provider.c.obj || esp-idf/nvs_flash/libnvs_flash.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\nvs_sec_provider\CMakeFiles\__idf_nvs_sec_provider.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\nvs_sec_provider\CMakeFiles\__idf_nvs_sec_provider.dir\__idf_nvs_sec_provider.pdb + TARGET_FILE = esp-idf\nvs_sec_provider\libnvs_sec_provider.a + TARGET_PDB = esp-idf\nvs_sec_provider\libnvs_sec_provider.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/nvs_sec_provider/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\nvs_sec_provider && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/nvs_sec_provider/edit_cache: phony esp-idf/nvs_sec_provider/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/nvs_sec_provider/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\nvs_sec_provider && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/nvs_sec_provider/rebuild_cache: phony esp-idf/nvs_sec_provider/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/nvs_sec_provider/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/nvs_sec_provider/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/nvs_sec_provider/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\nvs_sec_provider && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/nvs_sec_provider/install: phony esp-idf/nvs_sec_provider/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/nvs_sec_provider/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/nvs_sec_provider/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\nvs_sec_provider && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/nvs_sec_provider/install/local: phony esp-idf/nvs_sec_provider/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/nvs_sec_provider/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/nvs_sec_provider/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\nvs_sec_provider && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/nvs_sec_provider/install/strip: phony esp-idf/nvs_sec_provider/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_nvs_flash + + +############################################# +# Order-only phony target for __idf_nvs_flash + +build cmake_object_order_depends_target___idf_nvs_flash: phony || cmake_object_order_depends_target___idf_esp_phy + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ C$:/esp/v6.0/esp-idf/components/nvs_flash/src/nvs_api.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_api.cpp.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m + OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src + TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb + TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ C$:/esp/v6.0/esp-idf/components/nvs_flash/src/nvs_cxx_api.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_cxx_api.cpp.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m + OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src + TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb + TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ C$:/esp/v6.0/esp-idf/components/nvs_flash/src/nvs_item_hash_list.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_item_hash_list.cpp.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m + OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src + TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb + TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ C$:/esp/v6.0/esp-idf/components/nvs_flash/src/nvs_page.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_page.cpp.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m + OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src + TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb + TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ C$:/esp/v6.0/esp-idf/components/nvs_flash/src/nvs_pagemanager.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_pagemanager.cpp.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m + OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src + TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb + TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ C$:/esp/v6.0/esp-idf/components/nvs_flash/src/nvs_storage.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_storage.cpp.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m + OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src + TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb + TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ C$:/esp/v6.0/esp-idf/components/nvs_flash/src/nvs_handle_simple.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_handle_simple.cpp.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m + OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src + TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb + TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ C$:/esp/v6.0/esp-idf/components/nvs_flash/src/nvs_handle_locked.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_handle_locked.cpp.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m + OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src + TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb + TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ C$:/esp/v6.0/esp-idf/components/nvs_flash/src/nvs_partition.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_partition.cpp.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m + OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src + TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb + TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ C$:/esp/v6.0/esp-idf/components/nvs_flash/src/nvs_partition_lookup.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_partition_lookup.cpp.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m + OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src + TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb + TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ C$:/esp/v6.0/esp-idf/components/nvs_flash/src/nvs_partition_manager.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_partition_manager.cpp.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m + OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src + TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb + TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ C$:/esp/v6.0/esp-idf/components/nvs_flash/src/nvs_types.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_types.cpp.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m + OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src + TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb + TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_platform.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ C$:/esp/v6.0/esp-idf/components/nvs_flash/src/nvs_platform.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_platform.cpp.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m + OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src + TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb + TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader.c.obj: C_COMPILER____idf_nvs_flash_unscanned_ C$:/esp/v6.0/esp-idf/components/nvs_flash/src/nvs_bootloader.c || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_bootloader.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m + OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src + TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb + TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_encrypted_partition.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ C$:/esp/v6.0/esp-idf/components/nvs_flash/src/nvs_encrypted_partition.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_encrypted_partition.cpp.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m + OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src + TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb + TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader_aes.c.obj: C_COMPILER____idf_nvs_flash_unscanned_ C$:/esp/v6.0/esp-idf/components/nvs_flash/src/nvs_bootloader_aes.c || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_bootloader_aes.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m + OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src + TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb + TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb + +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader_xts_aes.c.obj: C_COMPILER____idf_nvs_flash_unscanned_ C$:/esp/v6.0/esp-idf/components/nvs_flash/src/nvs_bootloader_xts_aes.c || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_bootloader_xts_aes.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m + OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src + TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb + TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_nvs_flash + + +############################################# +# Link the static library esp-idf\nvs_flash\libnvs_flash.a + +build 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/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_platform.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader.c.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_encrypted_partition.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader_aes.c.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader_xts_aes.c.obj || esp-idf/esp_phy/libesp_phy.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb + TARGET_FILE = esp-idf\nvs_flash\libnvs_flash.a + TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/nvs_flash/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\nvs_flash && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/nvs_flash/edit_cache: phony esp-idf/nvs_flash/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/nvs_flash/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\nvs_flash && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/nvs_flash/rebuild_cache: phony esp-idf/nvs_flash/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/nvs_flash/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/nvs_flash/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/nvs_flash/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\nvs_flash && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/nvs_flash/install: phony esp-idf/nvs_flash/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/nvs_flash/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/nvs_flash/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\nvs_flash && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/nvs_flash/install/local: phony esp-idf/nvs_flash/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/nvs_flash/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/nvs_flash/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\nvs_flash && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/nvs_flash/install/strip: phony esp-idf/nvs_flash/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_phy + + +############################################# +# Order-only phony target for __idf_esp_phy + +build cmake_object_order_depends_target___idf_esp_phy: phony || cmake_object_order_depends_target___idf_vfs + +build esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_override.c.obj: C_COMPILER____idf_esp_phy_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_phy/src/phy_override.c || cmake_object_order_depends_target___idf_esp_phy + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\src\phy_override.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir + OBJECT_FILE_DIR = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\__idf_esp_phy.pdb + TARGET_PDB = esp-idf\esp_phy\libesp_phy.pdb + +build esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj: C_COMPILER____idf_esp_phy_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_phy/src/lib_printf.c || cmake_object_order_depends_target___idf_esp_phy + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\src\lib_printf.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir + OBJECT_FILE_DIR = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\__idf_esp_phy.pdb + TARGET_PDB = esp-idf\esp_phy\libesp_phy.pdb + +build esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_common.c.obj: C_COMPILER____idf_esp_phy_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_phy/src/phy_common.c || cmake_object_order_depends_target___idf_esp_phy + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\src\phy_common.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir + OBJECT_FILE_DIR = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\__idf_esp_phy.pdb + TARGET_PDB = esp-idf\esp_phy\libesp_phy.pdb + +build esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init.c.obj: C_COMPILER____idf_esp_phy_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_phy/src/phy_init.c || cmake_object_order_depends_target___idf_esp_phy + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\src\phy_init.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir + OBJECT_FILE_DIR = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\__idf_esp_phy.pdb + TARGET_PDB = esp-idf\esp_phy\libesp_phy.pdb + +build esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/esp32/phy_init_data.c.obj: C_COMPILER____idf_esp_phy_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_phy/esp32/phy_init_data.c || cmake_object_order_depends_target___idf_esp_phy + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\esp32\phy_init_data.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir + OBJECT_FILE_DIR = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\__idf_esp_phy.pdb + TARGET_PDB = esp-idf\esp_phy\libesp_phy.pdb + +build esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/btbb_init.c.obj: C_COMPILER____idf_esp_phy_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_phy/src/btbb_init.c || cmake_object_order_depends_target___idf_esp_phy + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\src\btbb_init.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir + OBJECT_FILE_DIR = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\__idf_esp_phy.pdb + TARGET_PDB = esp-idf\esp_phy\libesp_phy.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_phy + + +############################################# +# Link the static library esp-idf\esp_phy\libesp_phy.a + +build 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/esp32/phy_init_data.c.obj esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/btbb_init.c.obj || esp-idf/vfs/libvfs.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\__idf_esp_phy.pdb + TARGET_FILE = esp-idf\esp_phy\libesp_phy.a + TARGET_PDB = esp-idf\esp_phy\libesp_phy.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_phy/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_phy && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_phy/edit_cache: phony esp-idf/esp_phy/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_phy/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_phy && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_phy/rebuild_cache: phony esp-idf/esp_phy/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_phy/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_phy/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_phy/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_phy && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_phy/install: phony esp-idf/esp_phy/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_phy/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_phy/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_phy && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_phy/install/local: phony esp-idf/esp_phy/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_phy/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_phy/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_phy && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_phy/install/strip: phony esp-idf/esp_phy/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_usb_serial_jtag && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_usb_serial_jtag/edit_cache: phony esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_usb_serial_jtag && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_usb_serial_jtag/rebuild_cache: phony esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_usb_serial_jtag/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_usb_serial_jtag/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_usb_serial_jtag && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_usb_serial_jtag/install: phony esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_usb_serial_jtag/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_usb_serial_jtag && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_usb_serial_jtag/install/local: phony esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_usb_serial_jtag/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_usb_serial_jtag && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_usb_serial_jtag/install/strip: phony esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_vfs + + +############################################# +# Order-only phony target for __idf_vfs + +build cmake_object_order_depends_target___idf_vfs: phony || cmake_object_order_depends_target___idf_lwip + +build esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj: C_COMPILER____idf_vfs_unscanned_ C$:/esp/v6.0/esp-idf/components/vfs/vfs.c || cmake_object_order_depends_target___idf_vfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\vfs\CMakeFiles\__idf_vfs.dir\vfs.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/vfs/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include + OBJECT_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir + OBJECT_FILE_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir + TARGET_COMPILE_PDB = esp-idf\vfs\CMakeFiles\__idf_vfs.dir\__idf_vfs.pdb + TARGET_PDB = esp-idf\vfs\libvfs.pdb + +build esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_calls.c.obj: C_COMPILER____idf_vfs_unscanned_ C$:/esp/v6.0/esp-idf/components/vfs/vfs_calls.c || cmake_object_order_depends_target___idf_vfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\vfs\CMakeFiles\__idf_vfs.dir\vfs_calls.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/vfs/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include + OBJECT_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir + OBJECT_FILE_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir + TARGET_COMPILE_PDB = esp-idf\vfs\CMakeFiles\__idf_vfs.dir\__idf_vfs.pdb + TARGET_PDB = esp-idf\vfs\libvfs.pdb + +build esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj: C_COMPILER____idf_vfs_unscanned_ C$:/esp/v6.0/esp-idf/components/vfs/vfs_eventfd.c || cmake_object_order_depends_target___idf_vfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\vfs\CMakeFiles\__idf_vfs.dir\vfs_eventfd.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/vfs/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include + OBJECT_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir + OBJECT_FILE_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir + TARGET_COMPILE_PDB = esp-idf\vfs\CMakeFiles\__idf_vfs.dir\__idf_vfs.pdb + TARGET_PDB = esp-idf\vfs\libvfs.pdb + +build esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj: C_COMPILER____idf_vfs_unscanned_ C$:/esp/v6.0/esp-idf/components/vfs/vfs_semihost.c || cmake_object_order_depends_target___idf_vfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\vfs\CMakeFiles\__idf_vfs.dir\vfs_semihost.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/vfs/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include + OBJECT_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir + OBJECT_FILE_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir + TARGET_COMPILE_PDB = esp-idf\vfs\CMakeFiles\__idf_vfs.dir\__idf_vfs.pdb + TARGET_PDB = esp-idf\vfs\libvfs.pdb + +build esp-idf/vfs/CMakeFiles/__idf_vfs.dir/nullfs.c.obj: C_COMPILER____idf_vfs_unscanned_ C$:/esp/v6.0/esp-idf/components/vfs/nullfs.c || cmake_object_order_depends_target___idf_vfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\vfs\CMakeFiles\__idf_vfs.dir\nullfs.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/vfs/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include + OBJECT_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir + OBJECT_FILE_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir + TARGET_COMPILE_PDB = esp-idf\vfs\CMakeFiles\__idf_vfs.dir\__idf_vfs.pdb + TARGET_PDB = esp-idf\vfs\libvfs.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_vfs + + +############################################# +# Link the static library esp-idf\vfs\libvfs.a + +build 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_calls.c.obj esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj esp-idf/vfs/CMakeFiles/__idf_vfs.dir/nullfs.c.obj || esp-idf/lwip/liblwip.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\vfs\CMakeFiles\__idf_vfs.dir\__idf_vfs.pdb + TARGET_FILE = esp-idf\vfs\libvfs.a + TARGET_PDB = esp-idf\vfs\libvfs.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/vfs/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\vfs && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/vfs/edit_cache: phony esp-idf/vfs/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/vfs/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\vfs && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/vfs/rebuild_cache: phony esp-idf/vfs/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/vfs/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/vfs/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/vfs/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\vfs && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/vfs/install: phony esp-idf/vfs/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/vfs/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/vfs/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\vfs && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/vfs/install/local: phony esp-idf/vfs/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/vfs/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/vfs/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\vfs && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/vfs/install/strip: phony esp-idf/vfs/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_lwip + + +############################################# +# Order-only phony target for __idf_lwip + +build cmake_object_order_depends_target___idf_lwip: phony || cmake_object_order_depends_target___idf_esp_netif + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/apps/sntp/sntp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\apps\sntp\sntp.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\apps\sntp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/api/api_lib.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api\api_lib.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/api/api_msg.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api\api_msg.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/api/err.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api\err.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/api/if_api.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api\if_api.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/api/netbuf.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api\netbuf.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/api/netdb.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api\netdb.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/api/netifapi.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api\netifapi.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/api/sockets.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api\sockets.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/api/tcpip.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api\tcpip.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/apps/sntp/sntp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\apps\sntp\sntp.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\apps\sntp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/apps/netbiosns/netbiosns.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\apps\netbiosns\netbiosns.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\apps\netbiosns + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/def.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\def.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/dns.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\dns.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/inet_chksum.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\inet_chksum.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/init.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\init.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/ip.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ip.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/mem.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\mem.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/memp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\memp.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/netif.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\netif.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/pbuf.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\pbuf.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/raw.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\raw.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/stats.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\stats.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/sys.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\sys.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/tcp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\tcp.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -Wno-type-limits + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/tcp_in.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\tcp_in.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/tcp_out.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\tcp_out.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/timeouts.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\timeouts.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/udp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\udp.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/ipv4/autoip.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4\autoip.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4 + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/ipv4/dhcp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4\dhcp.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4 + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/ipv4/etharp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4\etharp.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4 + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/ipv4/icmp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4\icmp.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4 + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/ipv4/igmp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4\igmp.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4 + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/ipv4/ip4.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4\ip4.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4 + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/ipv4/ip4_napt.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4\ip4_napt.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4 + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/ipv4/ip4_addr.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4\ip4_addr.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4 + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/ipv4/ip4_frag.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4\ip4_frag.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4 + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/ipv6/dhcp6.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6\dhcp6.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6 + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/ipv6/ethip6.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6\ethip6.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6 + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/ipv6/icmp6.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6\icmp6.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6 + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/ipv6/inet6.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6\inet6.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6 + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/ipv6/ip6.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6\ip6.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6 + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/ipv6/ip6_addr.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6\ip6_addr.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6 + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/ipv6/ip6_frag.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6\ip6_frag.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6 + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/ipv6/mld6.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6\mld6.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6 + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/ipv6/nd6.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6\nd6.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6 + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ethernet.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ethernet.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/bridgeif.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\bridgeif.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif_fdb.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/bridgeif_fdb.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\bridgeif_fdb.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/slipif.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\slipif.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/auth.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\auth.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/ccp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\ccp.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/chap-md5.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\chap-md5.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/chap-new.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\chap-new.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/chap_ms.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\chap_ms.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -Wno-array-parameter + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/demand.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\demand.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/eap.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\eap.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/ecp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\ecp.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/eui64.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\eui64.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/fsm.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\fsm.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/ipcp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\ipcp.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/ipv6cp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\ipv6cp.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/lcp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\lcp.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/magic.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\magic.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/mppe.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\mppe.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/multilink.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\multilink.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/ppp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\ppp.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/pppapi.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\pppapi.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/pppcrypt.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\pppcrypt.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/pppoe.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\pppoe.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/pppol2tp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\pppol2tp.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/pppos.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\pppos.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -Wno-type-limits + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/upap.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\upap.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/utils.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\utils.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/vj.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\vj.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/tcp_isn_default.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/port/hooks/tcp_isn_default.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\hooks\tcp_isn_default.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\hooks + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/lwip_default_hooks.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/port/hooks/lwip_default_hooks.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\hooks\lwip_default_hooks.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\hooks + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/debug/lwip_debug.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/port/debug/lwip_debug.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\debug\lwip_debug.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\debug + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/sockets_ext.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/port/sockets_ext.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\sockets_ext.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/freertos/sys_arch.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/port/freertos/sys_arch.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\freertos\sys_arch.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\freertos + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/if_index.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/port/if_index.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\if_index.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/acd_dhcp_check.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/port/acd_dhcp_check.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\acd_dhcp_check.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32xx/vfs_lwip.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/vfs_lwip.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\esp32xx\vfs_lwip.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\esp32xx + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/apps/ping/ping_sock.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\apps\ping\ping_sock.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\apps\ping + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/arc4.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/arc4.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\polarssl\arc4.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\polarssl + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/des.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/des.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\polarssl\des.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\polarssl + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md4.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/md4.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\polarssl\md4.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\polarssl + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md5.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/md5.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\polarssl\md5.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\polarssl + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/sha1.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/sha1.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\polarssl\sha1.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\polarssl + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/esp/v6.0/esp-idf/components/lwip/apps/dhcpserver/dhcpserver.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\apps\dhcpserver\dhcpserver.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\apps\dhcpserver + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_PDB = esp-idf\lwip\liblwip.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_lwip + + +############################################# +# Link the static library esp-idf\lwip\liblwip.a + +build 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/if_index.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/acd_dhcp_check.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32xx/vfs_lwip.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/arc4.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/des.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md4.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md5.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/sha1.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj || esp-idf/esp_netif/libesp_netif.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb + TARGET_FILE = esp-idf\lwip\liblwip.a + TARGET_PDB = esp-idf\lwip\liblwip.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/lwip/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\lwip && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/lwip/edit_cache: phony esp-idf/lwip/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/lwip/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\lwip && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/lwip/rebuild_cache: phony esp-idf/lwip/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/lwip/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/lwip/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/lwip/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\lwip && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/lwip/install: phony esp-idf/lwip/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/lwip/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/lwip/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\lwip && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/lwip/install/local: phony esp-idf/lwip/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/lwip/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/lwip/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\lwip && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/lwip/install/strip: phony esp-idf/lwip/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_netif_stack/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_netif_stack && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_netif_stack/edit_cache: phony esp-idf/esp_netif_stack/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_netif_stack/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_netif_stack && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_netif_stack/rebuild_cache: phony esp-idf/esp_netif_stack/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_netif_stack/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_netif_stack/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_netif_stack/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_netif_stack && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_netif_stack/install: phony esp-idf/esp_netif_stack/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_netif_stack/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_netif_stack/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_netif_stack && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_netif_stack/install/local: phony esp-idf/esp_netif_stack/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_netif_stack/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_netif_stack/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_netif_stack && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_netif_stack/install/strip: phony esp-idf/esp_netif_stack/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_netif + + +############################################# +# Order-only phony target for __idf_esp_netif + +build cmake_object_order_depends_target___idf_esp_netif: phony || cmake_object_order_depends_target___idf_wpa_supplicant + +build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj: C_COMPILER____idf_esp_netif_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_netif/esp_netif_handlers.c || cmake_object_order_depends_target___idf_esp_netif + DEFINES = -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\esp_netif_handlers.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_netif/private_include -IC:/esp/v6.0/esp-idf/components/esp_netif/lwip -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include + OBJECT_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir + OBJECT_FILE_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir + TARGET_COMPILE_PDB = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\__idf_esp_netif.pdb + TARGET_PDB = esp-idf\esp_netif\libesp_netif.pdb + +build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj: C_COMPILER____idf_esp_netif_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_netif/esp_netif_objects.c || cmake_object_order_depends_target___idf_esp_netif + DEFINES = -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\esp_netif_objects.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_netif/private_include -IC:/esp/v6.0/esp-idf/components/esp_netif/lwip -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include + OBJECT_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir + OBJECT_FILE_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir + TARGET_COMPILE_PDB = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\__idf_esp_netif.pdb + TARGET_PDB = esp-idf\esp_netif\libesp_netif.pdb + +build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj: C_COMPILER____idf_esp_netif_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_netif/esp_netif_defaults.c || cmake_object_order_depends_target___idf_esp_netif + DEFINES = -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\esp_netif_defaults.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_netif/private_include -IC:/esp/v6.0/esp-idf/components/esp_netif/lwip -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include + OBJECT_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir + OBJECT_FILE_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir + TARGET_COMPILE_PDB = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\__idf_esp_netif.pdb + TARGET_PDB = esp-idf\esp_netif\libesp_netif.pdb + +build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj: C_COMPILER____idf_esp_netif_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_netif/lwip/esp_netif_lwip.c || cmake_object_order_depends_target___idf_esp_netif + DEFINES = -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\lwip\esp_netif_lwip.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_netif/private_include -IC:/esp/v6.0/esp-idf/components/esp_netif/lwip -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include + OBJECT_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir + OBJECT_FILE_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\lwip + TARGET_COMPILE_PDB = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\__idf_esp_netif.pdb + TARGET_PDB = esp-idf\esp_netif\libesp_netif.pdb + +build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sntp.c.obj: C_COMPILER____idf_esp_netif_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_netif/lwip/esp_netif_sntp.c || cmake_object_order_depends_target___idf_esp_netif + DEFINES = -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\lwip\esp_netif_sntp.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_netif/private_include -IC:/esp/v6.0/esp-idf/components/esp_netif/lwip -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include + OBJECT_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir + OBJECT_FILE_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\lwip + TARGET_COMPILE_PDB = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\__idf_esp_netif.pdb + TARGET_PDB = esp-idf\esp_netif\libesp_netif.pdb + +build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj: C_COMPILER____idf_esp_netif_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_netif/lwip/esp_netif_lwip_defaults.c || cmake_object_order_depends_target___idf_esp_netif + DEFINES = -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\lwip\esp_netif_lwip_defaults.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_netif/private_include -IC:/esp/v6.0/esp-idf/components/esp_netif/lwip -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include + OBJECT_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir + OBJECT_FILE_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\lwip + TARGET_COMPILE_PDB = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\__idf_esp_netif.pdb + TARGET_PDB = esp-idf\esp_netif\libesp_netif.pdb + +build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/wlanif.c.obj: C_COMPILER____idf_esp_netif_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_netif/lwip/netif/wlanif.c || cmake_object_order_depends_target___idf_esp_netif + DEFINES = -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\lwip\netif\wlanif.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_netif/private_include -IC:/esp/v6.0/esp-idf/components/esp_netif/lwip -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include + OBJECT_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir + OBJECT_FILE_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\lwip\netif + TARGET_COMPILE_PDB = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\__idf_esp_netif.pdb + TARGET_PDB = esp-idf\esp_netif\libesp_netif.pdb + +build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/ethernetif.c.obj: C_COMPILER____idf_esp_netif_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_netif/lwip/netif/ethernetif.c || cmake_object_order_depends_target___idf_esp_netif + DEFINES = -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\lwip\netif\ethernetif.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_netif/private_include -IC:/esp/v6.0/esp-idf/components/esp_netif/lwip -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include + OBJECT_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir + OBJECT_FILE_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\lwip\netif + TARGET_COMPILE_PDB = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\__idf_esp_netif.pdb + TARGET_PDB = esp-idf\esp_netif\libesp_netif.pdb + +build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/esp_pbuf_ref.c.obj: C_COMPILER____idf_esp_netif_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_netif/lwip/netif/esp_pbuf_ref.c || cmake_object_order_depends_target___idf_esp_netif + DEFINES = -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\lwip\netif\esp_pbuf_ref.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_netif/private_include -IC:/esp/v6.0/esp-idf/components/esp_netif/lwip -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include + OBJECT_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir + OBJECT_FILE_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\lwip\netif + TARGET_COMPILE_PDB = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\__idf_esp_netif.pdb + TARGET_PDB = esp-idf\esp_netif\libesp_netif.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_netif + + +############################################# +# Link the static library esp-idf\esp_netif\libesp_netif.a + +build 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 + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\__idf_esp_netif.pdb + TARGET_FILE = esp-idf\esp_netif\libesp_netif.a + TARGET_PDB = esp-idf\esp_netif\libesp_netif.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_netif/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_netif && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_netif/edit_cache: phony esp-idf/esp_netif/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_netif/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_netif && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_netif/rebuild_cache: phony esp-idf/esp_netif/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_netif/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_netif/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_netif/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_netif && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_netif/install: phony esp-idf/esp_netif/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_netif/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_netif/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_netif && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_netif/install/local: phony esp-idf/esp_netif/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_netif/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_netif/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_netif && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_netif/install/strip: phony esp-idf/esp_netif/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_wpa_supplicant + + +############################################# +# Order-only phony target for __idf_wpa_supplicant + +build cmake_object_order_depends_target___idf_wpa_supplicant: phony || cmake_object_order_depends_target___idf_esp_coex + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/port/os_xtensa.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\port\os_xtensa.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\port + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/eloop.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/port/eloop.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\port\eloop.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\port + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/ap/ap_config.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\ap\ap_config.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\ap + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/ap/ieee802_1x.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\ap\ieee802_1x.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\ap + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/ap/wpa_auth.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\ap\wpa_auth.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\ap + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/ap/wpa_auth_ie.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\ap\wpa_auth_ie.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\ap + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/pmksa_cache_auth.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/ap/pmksa_cache_auth.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\ap\pmksa_cache_auth.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\ap + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/sta_info.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/ap/sta_info.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\ap\sta_info.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\ap + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_11.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/ap/ieee802_11.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\ap\ieee802_11.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\ap + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/comeback_token.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/ap/comeback_token.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\ap\comeback_token.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\ap + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/common/sae.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\common\sae.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\common + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/dragonfly.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/common/dragonfly.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\common\dragonfly.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\common + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/common/wpa_common.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\common\wpa_common.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\common + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/bitfield.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils/bitfield.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\utils\bitfield.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\utils + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-siv.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto/aes-siv.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\aes-siv.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-kdf.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto/sha256-kdf.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\sha256-kdf.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto/ccmp.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\ccmp.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-gcm.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto/aes-gcm.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\aes-gcm.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto/crypto_ops.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\crypto_ops.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto/dh_group5.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\dh_group5.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto/dh_groups.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\dh_groups.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto/ms_funcs.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\ms_funcs.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tlsprf.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto/sha1-tlsprf.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\sha1-tlsprf.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-tlsprf.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto/sha256-tlsprf.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\sha256-tlsprf.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-tlsprf.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto/sha384-tlsprf.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\sha384-tlsprf.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-prf.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto/sha256-prf.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\sha256-prf.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-prf.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto/sha1-prf.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\sha1-prf.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-prf.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto/sha384-prf.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\sha384-prf.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto/md4-internal.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\md4-internal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tprf.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto/sha1-tprf.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\sha1-tprf.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_common/eap_wsc_common.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/eap_common/eap_wsc_common.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_common\eap_wsc_common.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_common + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/ieee802_11_common.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/common/ieee802_11_common.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\common\ieee802_11_common.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\common + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/eap_peer/chap.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer\chap.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/eap_peer/eap.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer\eap.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/eap_peer/eap_common.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer\eap_common.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/eap_peer/eap_mschapv2.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer\eap_mschapv2.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/eap_peer/eap_peap.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer\eap_peap.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/eap_peer/eap_peap_common.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer\eap_peap_common.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/eap_peer/eap_tls.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer\eap_tls.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/eap_peer/eap_tls_common.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer\eap_tls_common.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/eap_peer/eap_ttls.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer\eap_ttls.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/eap_peer/mschapv2.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer\mschapv2.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/eap_peer/eap_fast.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer\eap_fast.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_common.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/eap_peer/eap_fast_common.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer\eap_fast_common.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_pac.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/eap_peer/eap_fast_pac.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer\eap_fast_pac.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\eap_peer + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/rsn_supp/pmksa_cache.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\rsn_supp\pmksa_cache.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\rsn_supp + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/rsn_supp/wpa.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\rsn_supp\wpa.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\rsn_supp + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/rsn_supp/wpa_ie.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\rsn_supp\wpa_ie.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\rsn_supp + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils/base64.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\utils\base64.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\utils + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils/common.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\utils\common.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\utils + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils/ext_password.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\utils\ext_password.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\utils + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils/uuid.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\utils\uuid.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\utils + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils/wpabuf.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\utils\wpabuf.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\utils + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils/wpa_debug.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\utils\wpa_debug.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\utils + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/json.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils/json.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\utils\json.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\utils + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/wps/wps.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\wps\wps.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\wps + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/wps/wps_attr_build.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\wps\wps_attr_build.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\wps + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/wps/wps_attr_parse.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\wps\wps_attr_parse.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\wps + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/wps/wps_attr_process.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\wps\wps_attr_process.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\wps + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/wps/wps_common.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\wps\wps_common.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\wps + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/wps/wps_dev_attr.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\wps\wps_dev_attr.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\wps + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/wps/wps_enrollee.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\wps\wps_enrollee.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\wps + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae_pk.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/common/sae_pk.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\common\sae_pk.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\common + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_eap_client.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_eap_client.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\esp_eap_client.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa2_api_port.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wpa2_api_port.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\esp_wpa2_api_port.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa_main.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wpa_main.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\esp_wpa_main.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpas_glue.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wpas_glue.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\esp_wpas_glue.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_common.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_common.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\esp_common.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wps.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wps.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\esp_wps.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa3.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wpa3.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\esp_wpa3.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_owe.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_owe.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\esp_owe.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_hostap.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_hostap.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\esp_hostap.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/tls_mbedtls.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/tls_mbedtls.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\crypto\tls_mbedtls.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\crypto + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\crypto\crypto_mbedtls.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\crypto + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\crypto\crypto_mbedtls-bignum.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\crypto + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\crypto\crypto_mbedtls-rsa.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\crypto + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-ec.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-ec.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\crypto\crypto_mbedtls-ec.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\crypto + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto/rc4.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\rc4.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto/des-internal.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\des-internal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/fastpbkdf2.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/fastpbkdf2.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\crypto\fastpbkdf2.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\esp_supplicant\src\crypto + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto/aes-wrap.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\aes-wrap.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto/aes-unwrap.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\aes-unwrap.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj: C_COMPILER____idf_wpa_supplicant_unscanned_ C$:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto/aes-ccm.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\"v6.0\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ + DEP_FILE = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto\aes-ccm.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\src\crypto + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_wpa_supplicant + + +############################################# +# Link the static library esp-idf\wpa_supplicant\libwpa_supplicant.a + +build 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/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/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/esp_supplicant/src/crypto/fastpbkdf2.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 + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\wpa_supplicant\CMakeFiles\__idf_wpa_supplicant.dir\__idf_wpa_supplicant.pdb + TARGET_FILE = esp-idf\wpa_supplicant\libwpa_supplicant.a + TARGET_PDB = esp-idf\wpa_supplicant\libwpa_supplicant.pdb + RSP_FILE = CMakeFiles\__idf_wpa_supplicant.rsp + + +############################################# +# Utility command for edit_cache + +build esp-idf/wpa_supplicant/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\wpa_supplicant && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/wpa_supplicant/edit_cache: phony esp-idf/wpa_supplicant/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/wpa_supplicant/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\wpa_supplicant && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/wpa_supplicant/rebuild_cache: phony esp-idf/wpa_supplicant/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/wpa_supplicant/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/wpa_supplicant/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/wpa_supplicant/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\wpa_supplicant && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/wpa_supplicant/install: phony esp-idf/wpa_supplicant/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/wpa_supplicant/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/wpa_supplicant/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\wpa_supplicant && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/wpa_supplicant/install/local: phony esp-idf/wpa_supplicant/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/wpa_supplicant/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/wpa_supplicant/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\wpa_supplicant && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/wpa_supplicant/install/strip: phony esp-idf/wpa_supplicant/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_coex + + +############################################# +# Order-only phony target for __idf_esp_coex + +build cmake_object_order_depends_target___idf_esp_coex: phony || cmake_object_order_depends_target___idf_esp_wifi + +build esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/esp32/esp_coex_adapter.c.obj: C_COMPILER____idf_esp_coex_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_coex/esp32/esp_coex_adapter.c || cmake_object_order_depends_target___idf_esp_coex + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_coex\CMakeFiles\__idf_esp_coex.dir\esp32\esp_coex_adapter.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_coex/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\esp_coex\CMakeFiles\__idf_esp_coex.dir + OBJECT_FILE_DIR = esp-idf\esp_coex\CMakeFiles\__idf_esp_coex.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_coex\CMakeFiles\__idf_esp_coex.dir\__idf_esp_coex.pdb + TARGET_PDB = esp-idf\esp_coex\libesp_coex.pdb + +build esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug_diagram.c.obj: C_COMPILER____idf_esp_coex_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_coex/src/coexist_debug_diagram.c || cmake_object_order_depends_target___idf_esp_coex + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_coex\CMakeFiles\__idf_esp_coex.dir\src\coexist_debug_diagram.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_coex/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\esp_coex\CMakeFiles\__idf_esp_coex.dir + OBJECT_FILE_DIR = esp-idf\esp_coex\CMakeFiles\__idf_esp_coex.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_coex\CMakeFiles\__idf_esp_coex.dir\__idf_esp_coex.pdb + TARGET_PDB = esp-idf\esp_coex\libesp_coex.pdb + +build esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug.c.obj: C_COMPILER____idf_esp_coex_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_coex/src/coexist_debug.c || cmake_object_order_depends_target___idf_esp_coex + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_coex\CMakeFiles\__idf_esp_coex.dir\src\coexist_debug.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_coex/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\esp_coex\CMakeFiles\__idf_esp_coex.dir + OBJECT_FILE_DIR = esp-idf\esp_coex\CMakeFiles\__idf_esp_coex.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_coex\CMakeFiles\__idf_esp_coex.dir\__idf_esp_coex.pdb + TARGET_PDB = esp-idf\esp_coex\libesp_coex.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_coex + + +############################################# +# Link the static library esp-idf\esp_coex\libesp_coex.a + +build esp-idf/esp_coex/libesp_coex.a: C_STATIC_LIBRARY_LINKER____idf_esp_coex_ esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/esp32/esp_coex_adapter.c.obj esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug_diagram.c.obj esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug.c.obj || esp-idf/esp_wifi/libesp_wifi.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_coex\CMakeFiles\__idf_esp_coex.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_coex\CMakeFiles\__idf_esp_coex.dir\__idf_esp_coex.pdb + TARGET_FILE = esp-idf\esp_coex\libesp_coex.a + TARGET_PDB = esp-idf\esp_coex\libesp_coex.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_coex/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_coex && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_coex/edit_cache: phony esp-idf/esp_coex/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_coex/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_coex && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_coex/rebuild_cache: phony esp-idf/esp_coex/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_coex/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_coex/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_coex/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_coex && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_coex/install: phony esp-idf/esp_coex/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_coex/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_coex/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_coex && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_coex/install/local: phony esp-idf/esp_coex/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_coex/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_coex/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_coex && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_coex/install/strip: phony esp-idf/esp_coex/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_wifi + + +############################################# +# Order-only phony target for __idf_esp_wifi + +build cmake_object_order_depends_target___idf_esp_wifi: phony || cmake_object_order_depends_target___idf_esp_gdbstub + +build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/lib_printf.c.obj: C_COMPILER____idf_esp_wifi_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_wifi/src/lib_printf.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\src\lib_printf.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir + OBJECT_FILE_DIR = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\__idf_esp_wifi.pdb + TARGET_PDB = esp-idf\esp_wifi\libesp_wifi.pdb + +build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj: C_COMPILER____idf_esp_wifi_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_wifi/src/mesh_event.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\src\mesh_event.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir + OBJECT_FILE_DIR = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\__idf_esp_wifi.pdb + TARGET_PDB = esp-idf\esp_wifi\libesp_wifi.pdb + +build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj: C_COMPILER____idf_esp_wifi_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_wifi/src/smartconfig.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\src\smartconfig.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir + OBJECT_FILE_DIR = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\__idf_esp_wifi.pdb + TARGET_PDB = esp-idf\esp_wifi\libesp_wifi.pdb + +build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj: C_COMPILER____idf_esp_wifi_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_wifi/src/wifi_init.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\src\wifi_init.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir + OBJECT_FILE_DIR = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\__idf_esp_wifi.pdb + TARGET_PDB = esp-idf\esp_wifi\libesp_wifi.pdb + +build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj: C_COMPILER____idf_esp_wifi_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_wifi/src/wifi_default.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\src\wifi_default.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir + OBJECT_FILE_DIR = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\__idf_esp_wifi.pdb + TARGET_PDB = esp-idf\esp_wifi\libesp_wifi.pdb + +build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj: C_COMPILER____idf_esp_wifi_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_wifi/src/wifi_netif.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\src\wifi_netif.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir + OBJECT_FILE_DIR = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\__idf_esp_wifi.pdb + TARGET_PDB = esp-idf\esp_wifi\libesp_wifi.pdb + +build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default_ap.c.obj: C_COMPILER____idf_esp_wifi_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_wifi/src/wifi_default_ap.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\src\wifi_default_ap.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir + OBJECT_FILE_DIR = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\__idf_esp_wifi.pdb + TARGET_PDB = esp-idf\esp_wifi\libesp_wifi.pdb + +build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32/esp_adapter.c.obj: C_COMPILER____idf_esp_wifi_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_wifi/esp32/esp_adapter.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\esp32\esp_adapter.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir + OBJECT_FILE_DIR = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\__idf_esp_wifi.pdb + TARGET_PDB = esp-idf\esp_wifi\libesp_wifi.pdb + +build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/regulatory/esp_wifi_regulatory.c.obj: C_COMPILER____idf_esp_wifi_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_wifi/regulatory/esp_wifi_regulatory.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\regulatory\esp_wifi_regulatory.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-unterminated-string-initialization + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir + OBJECT_FILE_DIR = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\regulatory + TARGET_COMPILE_PDB = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\__idf_esp_wifi.pdb + TARGET_PDB = esp-idf\esp_wifi\libesp_wifi.pdb + +build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj: C_COMPILER____idf_esp_wifi_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_wifi/src/smartconfig_ack.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\src\smartconfig_ack.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/esp_coex/include + OBJECT_DIR = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir + OBJECT_FILE_DIR = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\__idf_esp_wifi.pdb + TARGET_PDB = esp-idf\esp_wifi\libesp_wifi.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_wifi + + +############################################# +# Link the static library esp-idf\esp_wifi\libesp_wifi.a + +build esp-idf/esp_wifi/libesp_wifi.a: C_STATIC_LIBRARY_LINKER____idf_esp_wifi_ esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/lib_printf.c.obj 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/esp32/esp_adapter.c.obj esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/regulatory/esp_wifi_regulatory.c.obj esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj || esp-idf/esp_gdbstub/libesp_gdbstub.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\__idf_esp_wifi.pdb + TARGET_FILE = esp-idf\esp_wifi\libesp_wifi.a + TARGET_PDB = esp-idf\esp_wifi\libesp_wifi.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_wifi/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_wifi && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_wifi/edit_cache: phony esp-idf/esp_wifi/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_wifi/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_wifi && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_wifi/rebuild_cache: phony esp-idf/esp_wifi/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_wifi/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_wifi/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_wifi/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_wifi && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_wifi/install: phony esp-idf/esp_wifi/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_wifi/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_wifi/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_wifi && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_wifi/install/local: phony esp-idf/esp_wifi/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_wifi/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_wifi/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_wifi && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_wifi/install/strip: phony esp-idf/esp_wifi/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_spi + + +############################################# +# Order-only phony target for __idf_esp_driver_spi + +build cmake_object_order_depends_target___idf_esp_driver_spi: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_common.c.obj: C_COMPILER____idf_esp_driver_spi_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_spi/src/gpspi/spi_common.c || cmake_object_order_depends_target___idf_esp_driver_spi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\src\gpspi\spi_common.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_psram/include + OBJECT_DIR = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\src\gpspi + TARGET_COMPILE_PDB = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\__idf_esp_driver_spi.pdb + TARGET_PDB = esp-idf\esp_driver_spi\libesp_driver_spi.pdb + +build esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_master.c.obj: C_COMPILER____idf_esp_driver_spi_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_spi/src/gpspi/spi_master.c || cmake_object_order_depends_target___idf_esp_driver_spi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\src\gpspi\spi_master.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_psram/include + OBJECT_DIR = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\src\gpspi + TARGET_COMPILE_PDB = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\__idf_esp_driver_spi.pdb + TARGET_PDB = esp-idf\esp_driver_spi\libesp_driver_spi.pdb + +build esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave.c.obj: C_COMPILER____idf_esp_driver_spi_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_spi/src/gpspi/spi_slave.c || cmake_object_order_depends_target___idf_esp_driver_spi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\src\gpspi\spi_slave.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_psram/include + OBJECT_DIR = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\src\gpspi + TARGET_COMPILE_PDB = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\__idf_esp_driver_spi.pdb + TARGET_PDB = esp-idf\esp_driver_spi\libesp_driver_spi.pdb + +build esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_dma.c.obj: C_COMPILER____idf_esp_driver_spi_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_spi/src/gpspi/spi_dma.c || cmake_object_order_depends_target___idf_esp_driver_spi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\src\gpspi\spi_dma.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_psram/include + OBJECT_DIR = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\src\gpspi + TARGET_COMPILE_PDB = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\__idf_esp_driver_spi.pdb + TARGET_PDB = esp-idf\esp_driver_spi\libesp_driver_spi.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_spi + + +############################################# +# Link the static library esp-idf\esp_driver_spi\libesp_driver_spi.a + +build esp-idf/esp_driver_spi/libesp_driver_spi.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_spi_ esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_common.c.obj esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_master.c.obj esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave.c.obj esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_dma.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\__idf_esp_driver_spi.pdb + TARGET_FILE = esp-idf\esp_driver_spi\libesp_driver_spi.a + TARGET_PDB = esp-idf\esp_driver_spi\libesp_driver_spi.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_spi/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_spi && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_spi/edit_cache: phony esp-idf/esp_driver_spi/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_spi/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_spi && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_spi/rebuild_cache: phony esp-idf/esp_driver_spi/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_spi/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_spi/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_spi/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_spi && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_spi/install: phony esp-idf/esp_driver_spi/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_spi/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_spi/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_spi && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_spi/install/local: phony esp-idf/esp_driver_spi/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_spi/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_spi/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_spi && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_spi/install/strip: phony esp-idf/esp_driver_spi/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_gdbstub + + +############################################# +# Order-only phony target for __idf_esp_gdbstub + +build cmake_object_order_depends_target___idf_esp_gdbstub: phony || cmake_object_order_depends_target___idf_esp_hal_i2c + +build esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj: C_COMPILER____idf_esp_gdbstub_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_gdbstub/src/gdbstub.c || cmake_object_order_depends_target___idf_esp_gdbstub + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\src\gdbstub.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/private_include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/src/port/xtensa/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir + OBJECT_FILE_DIR = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\__idf_esp_gdbstub.pdb + TARGET_PDB = esp-idf\esp_gdbstub\libesp_gdbstub.pdb + +build esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub_transport.c.obj: C_COMPILER____idf_esp_gdbstub_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_gdbstub/src/gdbstub_transport.c || cmake_object_order_depends_target___idf_esp_gdbstub + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\src\gdbstub_transport.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/private_include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/src/port/xtensa/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir + OBJECT_FILE_DIR = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\__idf_esp_gdbstub.pdb + TARGET_PDB = esp-idf\esp_gdbstub\libesp_gdbstub.pdb + +build esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj: C_COMPILER____idf_esp_gdbstub_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_gdbstub/src/packet.c || cmake_object_order_depends_target___idf_esp_gdbstub + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\src\packet.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/private_include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/src/port/xtensa/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir + OBJECT_FILE_DIR = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\__idf_esp_gdbstub.pdb + TARGET_PDB = esp-idf\esp_gdbstub\libesp_gdbstub.pdb + +build esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/gdbstub_xtensa.c.obj: C_COMPILER____idf_esp_gdbstub_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_gdbstub/src/port/xtensa/gdbstub_xtensa.c || cmake_object_order_depends_target___idf_esp_gdbstub + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\src\port\xtensa\gdbstub_xtensa.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/private_include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/src/port/xtensa/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir + OBJECT_FILE_DIR = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\src\port\xtensa + TARGET_COMPILE_PDB = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\__idf_esp_gdbstub.pdb + TARGET_PDB = esp-idf\esp_gdbstub\libesp_gdbstub.pdb + +build esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/gdbstub-entry.S.obj: ASM_COMPILER____idf_esp_gdbstub_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_gdbstub/src/port/xtensa/gdbstub-entry.S || cmake_object_order_depends_target___idf_esp_gdbstub + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\src\port\xtensa\gdbstub-entry.S.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/asmflags" -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/private_include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/src/port/xtensa/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir + OBJECT_FILE_DIR = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\src\port\xtensa + TARGET_COMPILE_PDB = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\__idf_esp_gdbstub.pdb + TARGET_PDB = esp-idf\esp_gdbstub\libesp_gdbstub.pdb + +build esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/xt_debugexception.S.obj: ASM_COMPILER____idf_esp_gdbstub_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_gdbstub/src/port/xtensa/xt_debugexception.S || cmake_object_order_depends_target___idf_esp_gdbstub + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\src\port\xtensa\xt_debugexception.S.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/asmflags" -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/private_include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/src/port/xtensa/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir + OBJECT_FILE_DIR = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\src\port\xtensa + TARGET_COMPILE_PDB = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\__idf_esp_gdbstub.pdb + TARGET_PDB = esp-idf\esp_gdbstub\libesp_gdbstub.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_gdbstub + + +############################################# +# Link the static library esp-idf\esp_gdbstub\libesp_gdbstub.a + +build 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/esp_hal_i2c/libesp_hal_i2c.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_gdbstub\CMakeFiles\__idf_esp_gdbstub.dir\__idf_esp_gdbstub.pdb + TARGET_FILE = esp-idf\esp_gdbstub\libesp_gdbstub.a + TARGET_PDB = esp-idf\esp_gdbstub\libesp_gdbstub.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_gdbstub/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_gdbstub && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_gdbstub/edit_cache: phony esp-idf/esp_gdbstub/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_gdbstub/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_gdbstub && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_gdbstub/rebuild_cache: phony esp-idf/esp_gdbstub/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_gdbstub/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_gdbstub/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_gdbstub/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_gdbstub && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_gdbstub/install: phony esp-idf/esp_gdbstub/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_gdbstub/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_gdbstub/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_gdbstub && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_gdbstub/install/local: phony esp-idf/esp_gdbstub/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_gdbstub/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_gdbstub/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_gdbstub && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_gdbstub/install/strip: phony esp-idf/esp_gdbstub/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/bt/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\bt && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/bt/edit_cache: phony esp-idf/bt/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/bt/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\bt && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/bt/rebuild_cache: phony esp-idf/bt/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/bt/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/bt/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/bt/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\bt && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/bt/install: phony esp-idf/bt/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/bt/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/bt/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\bt && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/bt/install/local: phony esp-idf/bt/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/bt/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/bt/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\bt && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/bt/install/strip: phony esp-idf/bt/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_unity + + +############################################# +# Order-only phony target for __idf_unity + +build cmake_object_order_depends_target___idf_unity: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj: C_COMPILER____idf_unity_unscanned_ C$:/esp/v6.0/esp-idf/components/unity/unity/src/unity.c || cmake_object_order_depends_target___idf_unity + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\unity\CMakeFiles\__idf_unity.dir\unity\src\unity.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-unused-const-variable + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/unity/include -IC:/esp/v6.0/esp-idf/components/unity/unity/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include + OBJECT_DIR = esp-idf\unity\CMakeFiles\__idf_unity.dir + OBJECT_FILE_DIR = esp-idf\unity\CMakeFiles\__idf_unity.dir\unity\src + TARGET_COMPILE_PDB = esp-idf\unity\CMakeFiles\__idf_unity.dir\__idf_unity.pdb + TARGET_PDB = esp-idf\unity\libunity.pdb + +build esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_compat.c.obj: C_COMPILER____idf_unity_unscanned_ C$:/esp/v6.0/esp-idf/components/unity/unity_compat.c || cmake_object_order_depends_target___idf_unity + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\unity\CMakeFiles\__idf_unity.dir\unity_compat.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-unused-const-variable + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/unity/include -IC:/esp/v6.0/esp-idf/components/unity/unity/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include + OBJECT_DIR = esp-idf\unity\CMakeFiles\__idf_unity.dir + OBJECT_FILE_DIR = esp-idf\unity\CMakeFiles\__idf_unity.dir + TARGET_COMPILE_PDB = esp-idf\unity\CMakeFiles\__idf_unity.dir\__idf_unity.pdb + TARGET_PDB = esp-idf\unity\libunity.pdb + +build esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj: C_COMPILER____idf_unity_unscanned_ C$:/esp/v6.0/esp-idf/components/unity/unity_runner.c || cmake_object_order_depends_target___idf_unity + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\unity\CMakeFiles\__idf_unity.dir\unity_runner.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-unused-const-variable + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/unity/include -IC:/esp/v6.0/esp-idf/components/unity/unity/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include + OBJECT_DIR = esp-idf\unity\CMakeFiles\__idf_unity.dir + OBJECT_FILE_DIR = esp-idf\unity\CMakeFiles\__idf_unity.dir + TARGET_COMPILE_PDB = esp-idf\unity\CMakeFiles\__idf_unity.dir\__idf_unity.pdb + TARGET_PDB = esp-idf\unity\libunity.pdb + +build esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_freertos.c.obj: C_COMPILER____idf_unity_unscanned_ C$:/esp/v6.0/esp-idf/components/unity/unity_utils_freertos.c || cmake_object_order_depends_target___idf_unity + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\unity\CMakeFiles\__idf_unity.dir\unity_utils_freertos.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-unused-const-variable + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/unity/include -IC:/esp/v6.0/esp-idf/components/unity/unity/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include + OBJECT_DIR = esp-idf\unity\CMakeFiles\__idf_unity.dir + OBJECT_FILE_DIR = esp-idf\unity\CMakeFiles\__idf_unity.dir + TARGET_COMPILE_PDB = esp-idf\unity\CMakeFiles\__idf_unity.dir\__idf_unity.pdb + TARGET_PDB = esp-idf\unity\libunity.pdb + +build esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_cache.c.obj: C_COMPILER____idf_unity_unscanned_ C$:/esp/v6.0/esp-idf/components/unity/unity_utils_cache.c || cmake_object_order_depends_target___idf_unity + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\unity\CMakeFiles\__idf_unity.dir\unity_utils_cache.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-unused-const-variable + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/unity/include -IC:/esp/v6.0/esp-idf/components/unity/unity/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include + OBJECT_DIR = esp-idf\unity\CMakeFiles\__idf_unity.dir + OBJECT_FILE_DIR = esp-idf\unity\CMakeFiles\__idf_unity.dir + TARGET_COMPILE_PDB = esp-idf\unity\CMakeFiles\__idf_unity.dir\__idf_unity.pdb + TARGET_PDB = esp-idf\unity\libunity.pdb + +build esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_memory.c.obj: C_COMPILER____idf_unity_unscanned_ C$:/esp/v6.0/esp-idf/components/unity/unity_utils_memory.c || cmake_object_order_depends_target___idf_unity + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\unity\CMakeFiles\__idf_unity.dir\unity_utils_memory.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-unused-const-variable + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/unity/include -IC:/esp/v6.0/esp-idf/components/unity/unity/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include + OBJECT_DIR = esp-idf\unity\CMakeFiles\__idf_unity.dir + OBJECT_FILE_DIR = esp-idf\unity\CMakeFiles\__idf_unity.dir + TARGET_COMPILE_PDB = esp-idf\unity\CMakeFiles\__idf_unity.dir\__idf_unity.pdb + TARGET_PDB = esp-idf\unity\libunity.pdb + +build esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj: C_COMPILER____idf_unity_unscanned_ C$:/esp/v6.0/esp-idf/components/unity/unity_port_esp32.c || cmake_object_order_depends_target___idf_unity + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\unity\CMakeFiles\__idf_unity.dir\unity_port_esp32.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-unused-const-variable + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/unity/include -IC:/esp/v6.0/esp-idf/components/unity/unity/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include + OBJECT_DIR = esp-idf\unity\CMakeFiles\__idf_unity.dir + OBJECT_FILE_DIR = esp-idf\unity\CMakeFiles\__idf_unity.dir + TARGET_COMPILE_PDB = esp-idf\unity\CMakeFiles\__idf_unity.dir\__idf_unity.pdb + TARGET_PDB = esp-idf\unity\libunity.pdb + +build esp-idf/unity/CMakeFiles/__idf_unity.dir/port/esp/unity_utils_memory_esp.c.obj: C_COMPILER____idf_unity_unscanned_ C$:/esp/v6.0/esp-idf/components/unity/port/esp/unity_utils_memory_esp.c || cmake_object_order_depends_target___idf_unity + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\unity\CMakeFiles\__idf_unity.dir\port\esp\unity_utils_memory_esp.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-unused-const-variable + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/unity/include -IC:/esp/v6.0/esp-idf/components/unity/unity/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include + OBJECT_DIR = esp-idf\unity\CMakeFiles\__idf_unity.dir + OBJECT_FILE_DIR = esp-idf\unity\CMakeFiles\__idf_unity.dir\port\esp + TARGET_COMPILE_PDB = esp-idf\unity\CMakeFiles\__idf_unity.dir\__idf_unity.pdb + TARGET_PDB = esp-idf\unity\libunity.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_unity + + +############################################# +# Link the static library esp-idf\unity\libunity.a + +build 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_compat.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 + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\unity\CMakeFiles\__idf_unity.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\unity\CMakeFiles\__idf_unity.dir\__idf_unity.pdb + TARGET_FILE = esp-idf\unity\libunity.a + TARGET_PDB = esp-idf\unity\libunity.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/unity/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\unity && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/unity/edit_cache: phony esp-idf/unity/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/unity/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\unity && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/unity/rebuild_cache: phony esp-idf/unity/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/unity/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/unity/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/unity/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\unity && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/unity/install: phony esp-idf/unity/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/unity/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/unity/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\unity && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/unity/install/local: phony esp-idf/unity/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/unity/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/unity/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\unity && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/unity/install/strip: phony esp-idf/unity/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_cmock + + +############################################# +# Order-only phony target for __idf_cmock + +build cmake_object_order_depends_target___idf_cmock: phony || cmake_object_order_depends_target___idf_unity cmake_object_order_depends_target___idf_xtensa + +build esp-idf/cmock/CMakeFiles/__idf_cmock.dir/CMock/src/cmock.c.obj: C_COMPILER____idf_cmock_unscanned_ C$:/esp/v6.0/esp-idf/components/cmock/CMock/src/cmock.c || cmake_object_order_depends_target___idf_cmock + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\cmock\CMakeFiles\__idf_cmock.dir\CMock\src\cmock.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/cmock/CMock/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/unity/include -IC:/esp/v6.0/esp-idf/components/unity/unity/src + OBJECT_DIR = esp-idf\cmock\CMakeFiles\__idf_cmock.dir + OBJECT_FILE_DIR = esp-idf\cmock\CMakeFiles\__idf_cmock.dir\CMock\src + TARGET_COMPILE_PDB = esp-idf\cmock\CMakeFiles\__idf_cmock.dir\__idf_cmock.pdb + TARGET_PDB = esp-idf\cmock\libcmock.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_cmock + + +############################################# +# Link the static library esp-idf\cmock\libcmock.a + +build 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 + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\cmock\CMakeFiles\__idf_cmock.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\cmock\CMakeFiles\__idf_cmock.dir\__idf_cmock.pdb + TARGET_FILE = esp-idf\cmock\libcmock.a + TARGET_PDB = esp-idf\cmock\libcmock.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/cmock/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\cmock && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/cmock/edit_cache: phony esp-idf/cmock/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/cmock/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\cmock && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/cmock/rebuild_cache: phony esp-idf/cmock/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/cmock/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/cmock/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/cmock/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\cmock && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/cmock/install: phony esp-idf/cmock/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/cmock/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/cmock/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\cmock && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/cmock/install/local: phony esp-idf/cmock/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/cmock/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/cmock/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\cmock && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/cmock/install/strip: phony esp-idf/cmock/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_console + + +############################################# +# Order-only phony target for __idf_console + +build cmake_object_order_depends_target___idf_console: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj: C_COMPILER____idf_console_unscanned_ C$:/esp/v6.0/esp-idf/components/console/commands.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\commands.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce --include=console_stdio_private.h + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/console/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb + TARGET_PDB = esp-idf\console\libconsole.pdb + +build esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_common.c.obj: C_COMPILER____idf_console_unscanned_ C$:/esp/v6.0/esp-idf/components/console/esp_console_common.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\esp_console_common.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce --include=console_stdio_private.h + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/console/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb + TARGET_PDB = esp-idf\console\libconsole.pdb + +build esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl_internal.c.obj: C_COMPILER____idf_console_unscanned_ C$:/esp/v6.0/esp-idf/components/console/esp_console_repl_internal.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\esp_console_repl_internal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce --include=console_stdio_private.h + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/console/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb + TARGET_PDB = esp-idf\console\libconsole.pdb + +build esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj: C_COMPILER____idf_console_unscanned_ C$:/esp/v6.0/esp-idf/components/console/split_argv.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\split_argv.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce --include=console_stdio_private.h + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/console/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb + TARGET_PDB = esp-idf\console\libconsole.pdb + +build esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj: C_COMPILER____idf_console_unscanned_ C$:/esp/v6.0/esp-idf/components/console/linenoise/linenoise.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\linenoise\linenoise.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce --include=console_stdio_private.h + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/console/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\linenoise + TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb + TARGET_PDB = esp-idf\console\libconsole.pdb + +build esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl_chip.c.obj: C_COMPILER____idf_console_unscanned_ C$:/esp/v6.0/esp-idf/components/console/esp_console_repl_chip.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\esp_console_repl_chip.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/console/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb + TARGET_PDB = esp-idf\console\libconsole.pdb + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj: C_COMPILER____idf_console_unscanned_ C$:/esp/v6.0/esp-idf/components/console/argtable3/arg_cmd.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_cmd.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce --include=console_stdio_private.h + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/console/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb + TARGET_PDB = esp-idf\console\libconsole.pdb + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj: C_COMPILER____idf_console_unscanned_ C$:/esp/v6.0/esp-idf/components/console/argtable3/arg_date.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_date.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce --include=console_stdio_private.h + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/console/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb + TARGET_PDB = esp-idf\console\libconsole.pdb + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj: C_COMPILER____idf_console_unscanned_ C$:/esp/v6.0/esp-idf/components/console/argtable3/arg_dbl.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_dbl.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce --include=console_stdio_private.h + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/console/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb + TARGET_PDB = esp-idf\console\libconsole.pdb + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj: C_COMPILER____idf_console_unscanned_ C$:/esp/v6.0/esp-idf/components/console/argtable3/arg_dstr.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_dstr.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce --include=console_stdio_private.h + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/console/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb + TARGET_PDB = esp-idf\console\libconsole.pdb + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj: C_COMPILER____idf_console_unscanned_ C$:/esp/v6.0/esp-idf/components/console/argtable3/arg_end.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_end.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce --include=console_stdio_private.h + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/console/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb + TARGET_PDB = esp-idf\console\libconsole.pdb + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj: C_COMPILER____idf_console_unscanned_ C$:/esp/v6.0/esp-idf/components/console/argtable3/arg_file.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_file.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce --include=console_stdio_private.h + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/console/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb + TARGET_PDB = esp-idf\console\libconsole.pdb + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj: C_COMPILER____idf_console_unscanned_ C$:/esp/v6.0/esp-idf/components/console/argtable3/arg_hashtable.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_hashtable.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce --include=console_stdio_private.h + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/console/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb + TARGET_PDB = esp-idf\console\libconsole.pdb + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj: C_COMPILER____idf_console_unscanned_ C$:/esp/v6.0/esp-idf/components/console/argtable3/arg_int.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_int.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce --include=console_stdio_private.h + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/console/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb + TARGET_PDB = esp-idf\console\libconsole.pdb + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj: C_COMPILER____idf_console_unscanned_ C$:/esp/v6.0/esp-idf/components/console/argtable3/arg_lit.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_lit.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce --include=console_stdio_private.h + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/console/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb + TARGET_PDB = esp-idf\console\libconsole.pdb + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj: C_COMPILER____idf_console_unscanned_ C$:/esp/v6.0/esp-idf/components/console/argtable3/arg_rem.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_rem.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce --include=console_stdio_private.h + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/console/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb + TARGET_PDB = esp-idf\console\libconsole.pdb + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj: C_COMPILER____idf_console_unscanned_ C$:/esp/v6.0/esp-idf/components/console/argtable3/arg_rex.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_rex.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce --include=console_stdio_private.h + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/console/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb + TARGET_PDB = esp-idf\console\libconsole.pdb + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj: C_COMPILER____idf_console_unscanned_ C$:/esp/v6.0/esp-idf/components/console/argtable3/arg_str.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_str.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce --include=console_stdio_private.h + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/console/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb + TARGET_PDB = esp-idf\console\libconsole.pdb + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj: C_COMPILER____idf_console_unscanned_ C$:/esp/v6.0/esp-idf/components/console/argtable3/arg_utils.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_utils.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce --include=console_stdio_private.h + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/console/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb + TARGET_PDB = esp-idf\console\libconsole.pdb + +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj: C_COMPILER____idf_console_unscanned_ C$:/esp/v6.0/esp-idf/components/console/argtable3/argtable3.c || cmake_object_order_depends_target___idf_console + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\argtable3.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce --include=console_stdio_private.h + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/console/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 + TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb + TARGET_PDB = esp-idf\console\libconsole.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_console + + +############################################# +# Link the static library esp-idf\console\libconsole.a + +build 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_common.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl_internal.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/esp_console_repl_chip.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 + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb + TARGET_FILE = esp-idf\console\libconsole.a + TARGET_PDB = esp-idf\console\libconsole.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/console/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\console && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/console/edit_cache: phony esp-idf/console/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/console/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\console && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/console/rebuild_cache: phony esp-idf/console/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/console/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/console/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/console/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\console && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/console/install: phony esp-idf/console/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/console/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/console/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\console && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/console/install/local: phony esp-idf/console/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/console/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/console/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\console && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/console/install/strip: phony esp-idf/console/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_hal_i2c + + +############################################# +# Order-only phony target for __idf_esp_hal_i2c + +build cmake_object_order_depends_target___idf_esp_hal_i2c: phony || cmake_object_order_depends_target___idf_http_parser + +build esp-idf/esp_hal_i2c/CMakeFiles/__idf_esp_hal_i2c.dir/i2c_hal.c.obj: C_COMPILER____idf_esp_hal_i2c_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_i2c/i2c_hal.c || cmake_object_order_depends_target___idf_esp_hal_i2c + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_i2c\CMakeFiles\__idf_esp_hal_i2c.dir\i2c_hal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_hal_i2c\CMakeFiles\__idf_esp_hal_i2c.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_i2c\CMakeFiles\__idf_esp_hal_i2c.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_i2c\CMakeFiles\__idf_esp_hal_i2c.dir\__idf_esp_hal_i2c.pdb + TARGET_PDB = esp-idf\esp_hal_i2c\libesp_hal_i2c.pdb + +build esp-idf/esp_hal_i2c/CMakeFiles/__idf_esp_hal_i2c.dir/i2c_hal_iram.c.obj: C_COMPILER____idf_esp_hal_i2c_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_i2c/i2c_hal_iram.c || cmake_object_order_depends_target___idf_esp_hal_i2c + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_i2c\CMakeFiles\__idf_esp_hal_i2c.dir\i2c_hal_iram.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_hal_i2c\CMakeFiles\__idf_esp_hal_i2c.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_i2c\CMakeFiles\__idf_esp_hal_i2c.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_i2c\CMakeFiles\__idf_esp_hal_i2c.dir\__idf_esp_hal_i2c.pdb + TARGET_PDB = esp-idf\esp_hal_i2c\libesp_hal_i2c.pdb + +build esp-idf/esp_hal_i2c/CMakeFiles/__idf_esp_hal_i2c.dir/esp32/i2c_periph.c.obj: C_COMPILER____idf_esp_hal_i2c_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/i2c_periph.c || cmake_object_order_depends_target___idf_esp_hal_i2c + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_i2c\CMakeFiles\__idf_esp_hal_i2c.dir\esp32\i2c_periph.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_hal_i2c\CMakeFiles\__idf_esp_hal_i2c.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_i2c\CMakeFiles\__idf_esp_hal_i2c.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hal_i2c\CMakeFiles\__idf_esp_hal_i2c.dir\__idf_esp_hal_i2c.pdb + TARGET_PDB = esp-idf\esp_hal_i2c\libesp_hal_i2c.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_hal_i2c + + +############################################# +# Link the static library esp-idf\esp_hal_i2c\libesp_hal_i2c.a + +build esp-idf/esp_hal_i2c/libesp_hal_i2c.a: C_STATIC_LIBRARY_LINKER____idf_esp_hal_i2c_ esp-idf/esp_hal_i2c/CMakeFiles/__idf_esp_hal_i2c.dir/i2c_hal.c.obj esp-idf/esp_hal_i2c/CMakeFiles/__idf_esp_hal_i2c.dir/i2c_hal_iram.c.obj esp-idf/esp_hal_i2c/CMakeFiles/__idf_esp_hal_i2c.dir/esp32/i2c_periph.c.obj || esp-idf/http_parser/libhttp_parser.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_hal_i2c\CMakeFiles\__idf_esp_hal_i2c.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_hal_i2c\CMakeFiles\__idf_esp_hal_i2c.dir\__idf_esp_hal_i2c.pdb + TARGET_FILE = esp-idf\esp_hal_i2c\libesp_hal_i2c.a + TARGET_PDB = esp-idf\esp_hal_i2c\libesp_hal_i2c.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hal_i2c/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_i2c && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hal_i2c/edit_cache: phony esp-idf/esp_hal_i2c/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hal_i2c/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_i2c && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hal_i2c/rebuild_cache: phony esp-idf/esp_hal_i2c/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_hal_i2c/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_hal_i2c/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hal_i2c/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_i2c && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_hal_i2c/install: phony esp-idf/esp_hal_i2c/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_hal_i2c/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hal_i2c/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_i2c && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_hal_i2c/install/local: phony esp-idf/esp_hal_i2c/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_hal_i2c/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hal_i2c/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_i2c && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_hal_i2c/install/strip: phony esp-idf/esp_hal_i2c/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_hal_twai + + +############################################# +# Order-only phony target for __idf_esp_hal_twai + +build cmake_object_order_depends_target___idf_esp_hal_twai: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/esp_hal_twai/CMakeFiles/__idf_esp_hal_twai.dir/esp32/twai_periph.c.obj: C_COMPILER____idf_esp_hal_twai_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_twai/esp32/twai_periph.c || cmake_object_order_depends_target___idf_esp_hal_twai + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_twai\CMakeFiles\__idf_esp_hal_twai.dir\esp32\twai_periph.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_hal_twai\CMakeFiles\__idf_esp_hal_twai.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_twai\CMakeFiles\__idf_esp_hal_twai.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hal_twai\CMakeFiles\__idf_esp_hal_twai.dir\__idf_esp_hal_twai.pdb + TARGET_PDB = esp-idf\esp_hal_twai\libesp_hal_twai.pdb + +build esp-idf/esp_hal_twai/CMakeFiles/__idf_esp_hal_twai.dir/twai_hal_v1.c.obj: C_COMPILER____idf_esp_hal_twai_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_twai/twai_hal_v1.c || cmake_object_order_depends_target___idf_esp_hal_twai + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_twai\CMakeFiles\__idf_esp_hal_twai.dir\twai_hal_v1.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_hal_twai\CMakeFiles\__idf_esp_hal_twai.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_twai\CMakeFiles\__idf_esp_hal_twai.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_twai\CMakeFiles\__idf_esp_hal_twai.dir\__idf_esp_hal_twai.pdb + TARGET_PDB = esp-idf\esp_hal_twai\libesp_hal_twai.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_hal_twai + + +############################################# +# Link the static library esp-idf\esp_hal_twai\libesp_hal_twai.a + +build esp-idf/esp_hal_twai/libesp_hal_twai.a: C_STATIC_LIBRARY_LINKER____idf_esp_hal_twai_ esp-idf/esp_hal_twai/CMakeFiles/__idf_esp_hal_twai.dir/esp32/twai_periph.c.obj esp-idf/esp_hal_twai/CMakeFiles/__idf_esp_hal_twai.dir/twai_hal_v1.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_hal_twai\CMakeFiles\__idf_esp_hal_twai.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_hal_twai\CMakeFiles\__idf_esp_hal_twai.dir\__idf_esp_hal_twai.pdb + TARGET_FILE = esp-idf\esp_hal_twai\libesp_hal_twai.a + TARGET_PDB = esp-idf\esp_hal_twai\libesp_hal_twai.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hal_twai/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_twai && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hal_twai/edit_cache: phony esp-idf/esp_hal_twai/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hal_twai/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_twai && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hal_twai/rebuild_cache: phony esp-idf/esp_hal_twai/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_hal_twai/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_hal_twai/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hal_twai/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_twai && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_hal_twai/install: phony esp-idf/esp_hal_twai/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_hal_twai/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hal_twai/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_twai && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_hal_twai/install/local: phony esp-idf/esp_hal_twai/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_hal_twai/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hal_twai/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_twai && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_hal_twai/install/strip: phony esp-idf/esp_hal_twai/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_driver + + +############################################# +# Order-only phony target for __idf_driver + +build cmake_object_order_depends_target___idf_driver: phony || cmake_object_order_depends_target___idf_esp_hal_twai cmake_object_order_depends_target___idf_xtensa + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.c.obj: C_COMPILER____idf_driver_unscanned_ C$:/esp/v6.0/esp-idf/components/driver/i2c/i2c.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\i2c\i2c.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/driver/i2c/include -IC:/esp/v6.0/esp-idf/components/driver/touch_sensor/include -IC:/esp/v6.0/esp-idf/components/driver/twai/include -IC:/esp/v6.0/esp-idf/components/driver/touch_sensor/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\i2c + TARGET_COMPILE_PDB = esp-idf\driver\CMakeFiles\__idf_driver.dir\__idf_driver.pdb + TARGET_PDB = esp-idf\driver\libdriver.pdb + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/touch_sensor_common.c.obj: C_COMPILER____idf_driver_unscanned_ C$:/esp/v6.0/esp-idf/components/driver/touch_sensor/touch_sensor_common.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\touch_sensor\touch_sensor_common.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/driver/i2c/include -IC:/esp/v6.0/esp-idf/components/driver/touch_sensor/include -IC:/esp/v6.0/esp-idf/components/driver/twai/include -IC:/esp/v6.0/esp-idf/components/driver/touch_sensor/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\touch_sensor + TARGET_COMPILE_PDB = esp-idf\driver\CMakeFiles\__idf_driver.dir\__idf_driver.pdb + TARGET_PDB = esp-idf\driver\libdriver.pdb + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/esp32/touch_sensor.c.obj: C_COMPILER____idf_driver_unscanned_ C$:/esp/v6.0/esp-idf/components/driver/touch_sensor/esp32/touch_sensor.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\touch_sensor\esp32\touch_sensor.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/driver/i2c/include -IC:/esp/v6.0/esp-idf/components/driver/touch_sensor/include -IC:/esp/v6.0/esp-idf/components/driver/twai/include -IC:/esp/v6.0/esp-idf/components/driver/touch_sensor/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\touch_sensor\esp32 + TARGET_COMPILE_PDB = esp-idf\driver\CMakeFiles\__idf_driver.dir\__idf_driver.pdb + TARGET_PDB = esp-idf\driver\libdriver.pdb + +build esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj: C_COMPILER____idf_driver_unscanned_ C$:/esp/v6.0/esp-idf/components/driver/twai/twai.c || cmake_object_order_depends_target___idf_driver + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\twai\twai.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/driver/i2c/include -IC:/esp/v6.0/esp-idf/components/driver/touch_sensor/include -IC:/esp/v6.0/esp-idf/components/driver/twai/include -IC:/esp/v6.0/esp-idf/components/driver/touch_sensor/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\twai + TARGET_COMPILE_PDB = esp-idf\driver\CMakeFiles\__idf_driver.dir\__idf_driver.pdb + TARGET_PDB = esp-idf\driver\libdriver.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_driver + + +############################################# +# Link the static library esp-idf\driver\libdriver.a + +build esp-idf/driver/libdriver.a: C_STATIC_LIBRARY_LINKER____idf_driver_ esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.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/esp32/touch_sensor.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj || esp-idf/esp_hal_twai/libesp_hal_twai.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\driver\CMakeFiles\__idf_driver.dir\__idf_driver.pdb + TARGET_FILE = esp-idf\driver\libdriver.a + TARGET_PDB = esp-idf\driver\libdriver.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/driver/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\driver && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/driver/edit_cache: phony esp-idf/driver/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/driver/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\driver && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/driver/rebuild_cache: phony esp-idf/driver/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/driver/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/driver/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/driver/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\driver && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/driver/install: phony esp-idf/driver/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/driver/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/driver/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\driver && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/driver/install/local: phony esp-idf/driver/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/driver/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/driver/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\driver && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/driver/install/strip: phony esp-idf/driver/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_http_parser + + +############################################# +# Order-only phony target for __idf_http_parser + +build cmake_object_order_depends_target___idf_http_parser: phony || cmake_object_order_depends_target___idf_esp-tls + +build esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir/http_parser.c.obj: C_COMPILER____idf_http_parser_unscanned_ C$:/esp/v6.0/esp-idf/components/http_parser/http_parser.c || cmake_object_order_depends_target___idf_http_parser + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\http_parser\CMakeFiles\__idf_http_parser.dir\http_parser.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\http_parser\CMakeFiles\__idf_http_parser.dir + OBJECT_FILE_DIR = esp-idf\http_parser\CMakeFiles\__idf_http_parser.dir + TARGET_COMPILE_PDB = esp-idf\http_parser\CMakeFiles\__idf_http_parser.dir\__idf_http_parser.pdb + TARGET_PDB = esp-idf\http_parser\libhttp_parser.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_http_parser + + +############################################# +# Link the static library esp-idf\http_parser\libhttp_parser.a + +build 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 + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\http_parser\CMakeFiles\__idf_http_parser.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\http_parser\CMakeFiles\__idf_http_parser.dir\__idf_http_parser.pdb + TARGET_FILE = esp-idf\http_parser\libhttp_parser.a + TARGET_PDB = esp-idf\http_parser\libhttp_parser.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/http_parser/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\http_parser && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/http_parser/edit_cache: phony esp-idf/http_parser/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/http_parser/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\http_parser && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/http_parser/rebuild_cache: phony esp-idf/http_parser/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/http_parser/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/http_parser/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/http_parser/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\http_parser && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/http_parser/install: phony esp-idf/http_parser/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/http_parser/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/http_parser/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\http_parser && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/http_parser/install/local: phony esp-idf/http_parser/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/http_parser/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/http_parser/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\http_parser && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/http_parser/install/strip: phony esp-idf/http_parser/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp-tls + + +############################################# +# Order-only phony target for __idf_esp-tls + +build cmake_object_order_depends_target___idf_esp-tls: phony || cmake_object_order_depends_target___idf_esp_driver_i2s + +build esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj: C_COMPILER____idf_esp-tls_unscanned_ C$:/esp/v6.0/esp-idf/components/esp-tls/esp_tls.c || cmake_object_order_depends_target___idf_esp-tls + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir\esp_tls.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/esp-tls/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir + OBJECT_FILE_DIR = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir + TARGET_COMPILE_PDB = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir\__idf_esp-tls.pdb + TARGET_PDB = esp-idf\esp-tls\libesp-tls.pdb + +build esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto/esp_tls_crypto.c.obj: C_COMPILER____idf_esp-tls_unscanned_ C$:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto/esp_tls_crypto.c || cmake_object_order_depends_target___idf_esp-tls + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir\esp-tls-crypto\esp_tls_crypto.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/esp-tls/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir + OBJECT_FILE_DIR = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir\esp-tls-crypto + TARGET_COMPILE_PDB = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir\__idf_esp-tls.pdb + TARGET_PDB = esp-idf\esp-tls\libesp-tls.pdb + +build esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_error_capture.c.obj: C_COMPILER____idf_esp-tls_unscanned_ C$:/esp/v6.0/esp-idf/components/esp-tls/esp_tls_error_capture.c || cmake_object_order_depends_target___idf_esp-tls + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir\esp_tls_error_capture.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/esp-tls/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir + OBJECT_FILE_DIR = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir + TARGET_COMPILE_PDB = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir\__idf_esp-tls.pdb + TARGET_PDB = esp-idf\esp-tls\libesp-tls.pdb + +build esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_platform_port.c.obj: C_COMPILER____idf_esp-tls_unscanned_ C$:/esp/v6.0/esp-idf/components/esp-tls/esp_tls_platform_port.c || cmake_object_order_depends_target___idf_esp-tls + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir\esp_tls_platform_port.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/esp-tls/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir + OBJECT_FILE_DIR = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir + TARGET_COMPILE_PDB = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir\__idf_esp-tls.pdb + TARGET_PDB = esp-idf\esp-tls\libesp-tls.pdb + +build esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj: C_COMPILER____idf_esp-tls_unscanned_ C$:/esp/v6.0/esp-idf/components/esp-tls/esp_tls_mbedtls.c || cmake_object_order_depends_target___idf_esp-tls + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir\esp_tls_mbedtls.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/esp-tls/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir + OBJECT_FILE_DIR = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir + TARGET_COMPILE_PDB = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir\__idf_esp-tls.pdb + TARGET_PDB = esp-idf\esp-tls\libesp-tls.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp-tls + + +############################################# +# Link the static library esp-idf\esp-tls\libesp-tls.a + +build 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_platform_port.c.obj esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj || esp-idf/esp_driver_i2s/libesp_driver_i2s.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp-tls\CMakeFiles\__idf_esp-tls.dir\__idf_esp-tls.pdb + TARGET_FILE = esp-idf\esp-tls\libesp-tls.a + TARGET_PDB = esp-idf\esp-tls\libesp-tls.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp-tls/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp-tls && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp-tls/edit_cache: phony esp-idf/esp-tls/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp-tls/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp-tls && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp-tls/rebuild_cache: phony esp-idf/esp-tls/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp-tls/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp-tls/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp-tls/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp-tls && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp-tls/install: phony esp-idf/esp-tls/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp-tls/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp-tls/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp-tls && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp-tls/install/local: phony esp-idf/esp-tls/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp-tls/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp-tls/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp-tls && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp-tls/install/strip: phony esp-idf/esp-tls/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_i2s + + +############################################# +# Order-only phony target for __idf_esp_driver_i2s + +build cmake_object_order_depends_target___idf_esp_driver_i2s: phony || cmake_object_order_depends_target___idf_esp_adc + +build esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_common.c.obj: C_COMPILER____idf_esp_driver_i2s_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_i2s/i2s_common.c || cmake_object_order_depends_target___idf_esp_driver_i2s + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\i2s_common.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include + OBJECT_DIR = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir + TARGET_COMPILE_PDB = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\__idf_esp_driver_i2s.pdb + TARGET_PDB = esp-idf\esp_driver_i2s\libesp_driver_i2s.pdb + +build esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_std.c.obj: C_COMPILER____idf_esp_driver_i2s_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_i2s/i2s_std.c || cmake_object_order_depends_target___idf_esp_driver_i2s + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\i2s_std.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include + OBJECT_DIR = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir + TARGET_COMPILE_PDB = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\__idf_esp_driver_i2s.pdb + TARGET_PDB = esp-idf\esp_driver_i2s\libesp_driver_i2s.pdb + +build esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_pdm.c.obj: C_COMPILER____idf_esp_driver_i2s_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_i2s/i2s_pdm.c || cmake_object_order_depends_target___idf_esp_driver_i2s + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\i2s_pdm.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include + OBJECT_DIR = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir + TARGET_COMPILE_PDB = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\__idf_esp_driver_i2s.pdb + TARGET_PDB = esp-idf\esp_driver_i2s\libesp_driver_i2s.pdb + +build esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_platform.c.obj: C_COMPILER____idf_esp_driver_i2s_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_i2s/i2s_platform.c || cmake_object_order_depends_target___idf_esp_driver_i2s + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\i2s_platform.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include + OBJECT_DIR = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir + TARGET_COMPILE_PDB = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\__idf_esp_driver_i2s.pdb + TARGET_PDB = esp-idf\esp_driver_i2s\libesp_driver_i2s.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_i2s + + +############################################# +# Link the static library esp-idf\esp_driver_i2s\libesp_driver_i2s.a + +build esp-idf/esp_driver_i2s/libesp_driver_i2s.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_i2s_ esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_common.c.obj esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_std.c.obj esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_pdm.c.obj esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_platform.c.obj || esp-idf/esp_adc/libesp_adc.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\__idf_esp_driver_i2s.pdb + TARGET_FILE = esp-idf\esp_driver_i2s\libesp_driver_i2s.a + TARGET_PDB = esp-idf\esp_driver_i2s\libesp_driver_i2s.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_i2s/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_i2s && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_i2s/edit_cache: phony esp-idf/esp_driver_i2s/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_i2s/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_i2s && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_i2s/rebuild_cache: phony esp-idf/esp_driver_i2s/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_i2s/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_i2s/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_i2s/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_i2s && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_i2s/install: phony esp-idf/esp_driver_i2s/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_i2s/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_i2s/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_i2s && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_i2s/install/local: phony esp-idf/esp_driver_i2s/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_i2s/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_i2s/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_i2s && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_i2s/install/strip: phony esp-idf/esp_driver_i2s/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_adc + + +############################################# +# Order-only phony target for __idf_esp_adc + +build cmake_object_order_depends_target___idf_esp_adc: phony || cmake_object_order_depends_target___idf_tcp_transport + +build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_oneshot.c.obj: C_COMPILER____idf_esp_adc_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_adc/adc_oneshot.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\adc_oneshot.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_adc/include -IC:/esp/v6.0/esp-idf/components/esp_adc/interface -IC:/esp/v6.0/esp-idf/components/esp_adc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include + OBJECT_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + OBJECT_FILE_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + TARGET_COMPILE_PDB = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\__idf_esp_adc.pdb + TARGET_PDB = esp-idf\esp_adc\libesp_adc.pdb + +build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_common.c.obj: C_COMPILER____idf_esp_adc_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_adc/adc_common.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\adc_common.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_adc/include -IC:/esp/v6.0/esp-idf/components/esp_adc/interface -IC:/esp/v6.0/esp-idf/components/esp_adc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include + OBJECT_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + OBJECT_FILE_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + TARGET_COMPILE_PDB = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\__idf_esp_adc.pdb + TARGET_PDB = esp-idf\esp_adc\libesp_adc.pdb + +build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali.c.obj: C_COMPILER____idf_esp_adc_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_adc/adc_cali.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\adc_cali.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_adc/include -IC:/esp/v6.0/esp-idf/components/esp_adc/interface -IC:/esp/v6.0/esp-idf/components/esp_adc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include + OBJECT_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + OBJECT_FILE_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + TARGET_COMPILE_PDB = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\__idf_esp_adc.pdb + TARGET_PDB = esp-idf\esp_adc\libesp_adc.pdb + +build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali_curve_fitting.c.obj: C_COMPILER____idf_esp_adc_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_adc/adc_cali_curve_fitting.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\adc_cali_curve_fitting.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_adc/include -IC:/esp/v6.0/esp-idf/components/esp_adc/interface -IC:/esp/v6.0/esp-idf/components/esp_adc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include + OBJECT_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + OBJECT_FILE_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + TARGET_COMPILE_PDB = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\__idf_esp_adc.pdb + TARGET_PDB = esp-idf\esp_adc\libesp_adc.pdb + +build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_continuous.c.obj: C_COMPILER____idf_esp_adc_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_adc/adc_continuous.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\adc_continuous.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_adc/include -IC:/esp/v6.0/esp-idf/components/esp_adc/interface -IC:/esp/v6.0/esp-idf/components/esp_adc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include + OBJECT_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + OBJECT_FILE_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + TARGET_COMPILE_PDB = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\__idf_esp_adc.pdb + TARGET_PDB = esp-idf\esp_adc\libesp_adc.pdb + +build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32/adc_dma.c.obj: C_COMPILER____idf_esp_adc_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_adc/esp32/adc_dma.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\esp32\adc_dma.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_adc/include -IC:/esp/v6.0/esp-idf/components/esp_adc/interface -IC:/esp/v6.0/esp-idf/components/esp_adc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include + OBJECT_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + OBJECT_FILE_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\__idf_esp_adc.pdb + TARGET_PDB = esp-idf\esp_adc\libesp_adc.pdb + +build esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32/adc_cali_line_fitting.c.obj: C_COMPILER____idf_esp_adc_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_adc/esp32/adc_cali_line_fitting.c || cmake_object_order_depends_target___idf_esp_adc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\esp32\adc_cali_line_fitting.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_adc/include -IC:/esp/v6.0/esp-idf/components/esp_adc/interface -IC:/esp/v6.0/esp-idf/components/esp_adc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include + OBJECT_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + OBJECT_FILE_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\__idf_esp_adc.pdb + TARGET_PDB = esp-idf\esp_adc\libesp_adc.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_adc + + +############################################# +# Link the static library esp-idf\esp_adc\libesp_adc.a + +build esp-idf/esp_adc/libesp_adc.a: C_STATIC_LIBRARY_LINKER____idf_esp_adc_ 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/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_continuous.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32/adc_dma.c.obj esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32/adc_cali_line_fitting.c.obj || esp-idf/tcp_transport/libtcp_transport.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_adc\CMakeFiles\__idf_esp_adc.dir\__idf_esp_adc.pdb + TARGET_FILE = esp-idf\esp_adc\libesp_adc.a + TARGET_PDB = esp-idf\esp_adc\libesp_adc.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_adc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_adc && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_adc/edit_cache: phony esp-idf/esp_adc/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_adc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_adc && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_adc/rebuild_cache: phony esp-idf/esp_adc/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_adc/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_adc/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_adc/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_adc && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_adc/install: phony esp-idf/esp_adc/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_adc/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_adc/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_adc && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_adc/install/local: phony esp-idf/esp_adc/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_adc/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_adc/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_adc && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_adc/install/strip: phony esp-idf/esp_adc/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hal_ana_cmpr/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_ana_cmpr && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hal_ana_cmpr/edit_cache: phony esp-idf/esp_hal_ana_cmpr/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hal_ana_cmpr/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_ana_cmpr && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hal_ana_cmpr/rebuild_cache: phony esp-idf/esp_hal_ana_cmpr/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_hal_ana_cmpr/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_hal_ana_cmpr/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hal_ana_cmpr/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_ana_cmpr && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_hal_ana_cmpr/install: phony esp-idf/esp_hal_ana_cmpr/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_hal_ana_cmpr/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hal_ana_cmpr/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_ana_cmpr && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_hal_ana_cmpr/install/local: phony esp-idf/esp_hal_ana_cmpr/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_hal_ana_cmpr/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hal_ana_cmpr/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_ana_cmpr && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_hal_ana_cmpr/install/strip: phony esp-idf/esp_hal_ana_cmpr/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_ana_cmpr/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_ana_cmpr && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_ana_cmpr/edit_cache: phony esp-idf/esp_driver_ana_cmpr/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_ana_cmpr/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_ana_cmpr && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_ana_cmpr/rebuild_cache: phony esp-idf/esp_driver_ana_cmpr/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_ana_cmpr/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_ana_cmpr/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_ana_cmpr/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_ana_cmpr && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_ana_cmpr/install: phony esp-idf/esp_driver_ana_cmpr/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_ana_cmpr/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_ana_cmpr/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_ana_cmpr && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_ana_cmpr/install/local: phony esp-idf/esp_driver_ana_cmpr/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_ana_cmpr/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_ana_cmpr/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_ana_cmpr && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_ana_cmpr/install/strip: phony esp-idf/esp_driver_ana_cmpr/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_bitscrambler/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_bitscrambler && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_bitscrambler/edit_cache: phony esp-idf/esp_driver_bitscrambler/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_bitscrambler/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_bitscrambler && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_bitscrambler/rebuild_cache: phony esp-idf/esp_driver_bitscrambler/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_bitscrambler/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_bitscrambler/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_bitscrambler/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_bitscrambler && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_bitscrambler/install: phony esp-idf/esp_driver_bitscrambler/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_bitscrambler/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_bitscrambler/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_bitscrambler && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_bitscrambler/install/local: phony esp-idf/esp_driver_bitscrambler/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_bitscrambler/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_bitscrambler/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_bitscrambler && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_bitscrambler/install/strip: phony esp-idf/esp_driver_bitscrambler/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hal_cam/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_cam && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hal_cam/edit_cache: phony esp-idf/esp_hal_cam/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hal_cam/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_cam && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hal_cam/rebuild_cache: phony esp-idf/esp_hal_cam/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_hal_cam/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_hal_cam/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hal_cam/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_cam && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_hal_cam/install: phony esp-idf/esp_hal_cam/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_hal_cam/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hal_cam/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_cam && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_hal_cam/install/local: phony esp-idf/esp_hal_cam/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_hal_cam/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hal_cam/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_cam && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_hal_cam/install/strip: phony esp-idf/esp_hal_cam/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_isp/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_isp && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_isp/edit_cache: phony esp-idf/esp_driver_isp/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_isp/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_isp && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_isp/rebuild_cache: phony esp-idf/esp_driver_isp/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_isp/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_isp/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_isp/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_isp && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_isp/install: phony esp-idf/esp_driver_isp/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_isp/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_isp/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_isp && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_isp/install/local: phony esp-idf/esp_driver_isp/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_isp/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_isp/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_isp && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_isp/install/strip: phony esp-idf/esp_driver_isp/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_cam + + +############################################# +# Order-only phony target for __idf_esp_driver_cam + +build cmake_object_order_depends_target___idf_esp_driver_cam: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/esp_cam_ctlr.c.obj: C_COMPILER____idf_esp_driver_cam_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_cam/esp_cam_ctlr.c || cmake_object_order_depends_target___idf_esp_driver_cam + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_cam\CMakeFiles\__idf_esp_driver_cam.dir\esp_cam_ctlr.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_cam/include -IC:/esp/v6.0/esp-idf/components/esp_driver_cam/interface -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_isp/include -IC:/esp/v6.0/esp-idf/components/esp_hal_cam/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include + OBJECT_DIR = esp-idf\esp_driver_cam\CMakeFiles\__idf_esp_driver_cam.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_cam\CMakeFiles\__idf_esp_driver_cam.dir + TARGET_COMPILE_PDB = esp-idf\esp_driver_cam\CMakeFiles\__idf_esp_driver_cam.dir\__idf_esp_driver_cam.pdb + TARGET_PDB = esp-idf\esp_driver_cam\libesp_driver_cam.pdb + +build esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/dvp_share_ctrl.c.obj: C_COMPILER____idf_esp_driver_cam_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_cam/dvp_share_ctrl.c || cmake_object_order_depends_target___idf_esp_driver_cam + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_cam\CMakeFiles\__idf_esp_driver_cam.dir\dvp_share_ctrl.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_cam/include -IC:/esp/v6.0/esp-idf/components/esp_driver_cam/interface -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_isp/include -IC:/esp/v6.0/esp-idf/components/esp_hal_cam/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include + OBJECT_DIR = esp-idf\esp_driver_cam\CMakeFiles\__idf_esp_driver_cam.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_cam\CMakeFiles\__idf_esp_driver_cam.dir + TARGET_COMPILE_PDB = esp-idf\esp_driver_cam\CMakeFiles\__idf_esp_driver_cam.dir\__idf_esp_driver_cam.pdb + TARGET_PDB = esp-idf\esp_driver_cam\libesp_driver_cam.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_cam + + +############################################# +# Link the static library esp-idf\esp_driver_cam\libesp_driver_cam.a + +build esp-idf/esp_driver_cam/libesp_driver_cam.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_cam_ esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/esp_cam_ctlr.c.obj esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/dvp_share_ctrl.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_driver_cam\CMakeFiles\__idf_esp_driver_cam.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_cam\CMakeFiles\__idf_esp_driver_cam.dir\__idf_esp_driver_cam.pdb + TARGET_FILE = esp-idf\esp_driver_cam\libesp_driver_cam.a + TARGET_PDB = esp-idf\esp_driver_cam\libesp_driver_cam.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_cam/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_cam && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_cam/edit_cache: phony esp-idf/esp_driver_cam/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_cam/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_cam && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_cam/rebuild_cache: phony esp-idf/esp_driver_cam/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_cam/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_cam/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_cam/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_cam && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_cam/install: phony esp-idf/esp_driver_cam/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_cam/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_cam/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_cam && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_cam/install/local: phony esp-idf/esp_driver_cam/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_cam/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_cam/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_cam && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_cam/install/strip: phony esp-idf/esp_driver_cam/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_dac + + +############################################# +# Order-only phony target for __idf_esp_driver_dac + +build cmake_object_order_depends_target___idf_esp_driver_dac: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/esp_driver_dac/CMakeFiles/__idf_esp_driver_dac.dir/dac_oneshot.c.obj: C_COMPILER____idf_esp_driver_dac_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_dac/dac_oneshot.c || cmake_object_order_depends_target___idf_esp_driver_dac + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_dac\CMakeFiles\__idf_esp_driver_dac.dir\dac_oneshot.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_dac/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include + OBJECT_DIR = esp-idf\esp_driver_dac\CMakeFiles\__idf_esp_driver_dac.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_dac\CMakeFiles\__idf_esp_driver_dac.dir + TARGET_COMPILE_PDB = esp-idf\esp_driver_dac\CMakeFiles\__idf_esp_driver_dac.dir\__idf_esp_driver_dac.pdb + TARGET_PDB = esp-idf\esp_driver_dac\libesp_driver_dac.pdb + +build esp-idf/esp_driver_dac/CMakeFiles/__idf_esp_driver_dac.dir/dac_cosine.c.obj: C_COMPILER____idf_esp_driver_dac_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_dac/dac_cosine.c || cmake_object_order_depends_target___idf_esp_driver_dac + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_dac\CMakeFiles\__idf_esp_driver_dac.dir\dac_cosine.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_dac/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include + OBJECT_DIR = esp-idf\esp_driver_dac\CMakeFiles\__idf_esp_driver_dac.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_dac\CMakeFiles\__idf_esp_driver_dac.dir + TARGET_COMPILE_PDB = esp-idf\esp_driver_dac\CMakeFiles\__idf_esp_driver_dac.dir\__idf_esp_driver_dac.pdb + TARGET_PDB = esp-idf\esp_driver_dac\libesp_driver_dac.pdb + +build esp-idf/esp_driver_dac/CMakeFiles/__idf_esp_driver_dac.dir/dac_continuous.c.obj: C_COMPILER____idf_esp_driver_dac_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_dac/dac_continuous.c || cmake_object_order_depends_target___idf_esp_driver_dac + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_dac\CMakeFiles\__idf_esp_driver_dac.dir\dac_continuous.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_dac/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include + OBJECT_DIR = esp-idf\esp_driver_dac\CMakeFiles\__idf_esp_driver_dac.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_dac\CMakeFiles\__idf_esp_driver_dac.dir + TARGET_COMPILE_PDB = esp-idf\esp_driver_dac\CMakeFiles\__idf_esp_driver_dac.dir\__idf_esp_driver_dac.pdb + TARGET_PDB = esp-idf\esp_driver_dac\libesp_driver_dac.pdb + +build esp-idf/esp_driver_dac/CMakeFiles/__idf_esp_driver_dac.dir/dac_common.c.obj: C_COMPILER____idf_esp_driver_dac_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_dac/dac_common.c || cmake_object_order_depends_target___idf_esp_driver_dac + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_dac\CMakeFiles\__idf_esp_driver_dac.dir\dac_common.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_dac/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include + OBJECT_DIR = esp-idf\esp_driver_dac\CMakeFiles\__idf_esp_driver_dac.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_dac\CMakeFiles\__idf_esp_driver_dac.dir + TARGET_COMPILE_PDB = esp-idf\esp_driver_dac\CMakeFiles\__idf_esp_driver_dac.dir\__idf_esp_driver_dac.pdb + TARGET_PDB = esp-idf\esp_driver_dac\libesp_driver_dac.pdb + +build esp-idf/esp_driver_dac/CMakeFiles/__idf_esp_driver_dac.dir/esp32/dac_dma.c.obj: C_COMPILER____idf_esp_driver_dac_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_dac/esp32/dac_dma.c || cmake_object_order_depends_target___idf_esp_driver_dac + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_dac\CMakeFiles\__idf_esp_driver_dac.dir\esp32\dac_dma.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_dac/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include + OBJECT_DIR = esp-idf\esp_driver_dac\CMakeFiles\__idf_esp_driver_dac.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_dac\CMakeFiles\__idf_esp_driver_dac.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_driver_dac\CMakeFiles\__idf_esp_driver_dac.dir\__idf_esp_driver_dac.pdb + TARGET_PDB = esp-idf\esp_driver_dac\libesp_driver_dac.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_dac + + +############################################# +# Link the static library esp-idf\esp_driver_dac\libesp_driver_dac.a + +build esp-idf/esp_driver_dac/libesp_driver_dac.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_dac_ esp-idf/esp_driver_dac/CMakeFiles/__idf_esp_driver_dac.dir/dac_oneshot.c.obj esp-idf/esp_driver_dac/CMakeFiles/__idf_esp_driver_dac.dir/dac_cosine.c.obj esp-idf/esp_driver_dac/CMakeFiles/__idf_esp_driver_dac.dir/dac_continuous.c.obj esp-idf/esp_driver_dac/CMakeFiles/__idf_esp_driver_dac.dir/dac_common.c.obj esp-idf/esp_driver_dac/CMakeFiles/__idf_esp_driver_dac.dir/esp32/dac_dma.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_driver_dac\CMakeFiles\__idf_esp_driver_dac.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_dac\CMakeFiles\__idf_esp_driver_dac.dir\__idf_esp_driver_dac.pdb + TARGET_FILE = esp-idf\esp_driver_dac\libesp_driver_dac.a + TARGET_PDB = esp-idf\esp_driver_dac\libesp_driver_dac.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_dac/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_dac && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_dac/edit_cache: phony esp-idf/esp_driver_dac/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_dac/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_dac && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_dac/rebuild_cache: phony esp-idf/esp_driver_dac/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_dac/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_dac/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_dac/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_dac && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_dac/install: phony esp-idf/esp_driver_dac/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_dac/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_dac/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_dac && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_dac/install/local: phony esp-idf/esp_driver_dac/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_dac/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_dac/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_dac && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_dac/install/strip: phony esp-idf/esp_driver_dac/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_i2c + + +############################################# +# Order-only phony target for __idf_esp_driver_i2c + +build cmake_object_order_depends_target___idf_esp_driver_i2c: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_master.c.obj: C_COMPILER____idf_esp_driver_i2c_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_i2c/i2c_master.c || cmake_object_order_depends_target___idf_esp_driver_i2c + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir\i2c_master.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir + TARGET_COMPILE_PDB = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir\__idf_esp_driver_i2c.pdb + TARGET_PDB = esp-idf\esp_driver_i2c\libesp_driver_i2c.pdb + +build esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_common.c.obj: C_COMPILER____idf_esp_driver_i2c_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_i2c/i2c_common.c || cmake_object_order_depends_target___idf_esp_driver_i2c + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir\i2c_common.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir + TARGET_COMPILE_PDB = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir\__idf_esp_driver_i2c.pdb + TARGET_PDB = esp-idf\esp_driver_i2c\libesp_driver_i2c.pdb + +build esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_slave.c.obj: C_COMPILER____idf_esp_driver_i2c_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_i2c/i2c_slave.c || cmake_object_order_depends_target___idf_esp_driver_i2c + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir\i2c_slave.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir + TARGET_COMPILE_PDB = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir\__idf_esp_driver_i2c.pdb + TARGET_PDB = esp-idf\esp_driver_i2c\libesp_driver_i2c.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_i2c + + +############################################# +# Link the static library esp-idf\esp_driver_i2c\libesp_driver_i2c.a + +build esp-idf/esp_driver_i2c/libesp_driver_i2c.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_i2c_ esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_master.c.obj esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_common.c.obj esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_slave.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir\__idf_esp_driver_i2c.pdb + TARGET_FILE = esp-idf\esp_driver_i2c\libesp_driver_i2c.a + TARGET_PDB = esp-idf\esp_driver_i2c\libesp_driver_i2c.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_i2c/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_i2c && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_i2c/edit_cache: phony esp-idf/esp_driver_i2c/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_i2c/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_i2c && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_i2c/rebuild_cache: phony esp-idf/esp_driver_i2c/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_i2c/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_i2c/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_i2c/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_i2c && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_i2c/install: phony esp-idf/esp_driver_i2c/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_i2c/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_i2c/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_i2c && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_i2c/install/local: phony esp-idf/esp_driver_i2c/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_i2c/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_i2c/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_i2c && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_i2c/install/strip: phony esp-idf/esp_driver_i2c/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_i3c/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_i3c && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_i3c/edit_cache: phony esp-idf/esp_driver_i3c/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_i3c/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_i3c && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_i3c/rebuild_cache: phony esp-idf/esp_driver_i3c/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_i3c/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_i3c/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_i3c/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_i3c && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_i3c/install: phony esp-idf/esp_driver_i3c/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_i3c/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_i3c/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_i3c && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_i3c/install/local: phony esp-idf/esp_driver_i3c/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_i3c/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_i3c/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_i3c && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_i3c/install/strip: phony esp-idf/esp_driver_i3c/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hal_jpeg/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_jpeg && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hal_jpeg/edit_cache: phony esp-idf/esp_hal_jpeg/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hal_jpeg/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_jpeg && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hal_jpeg/rebuild_cache: phony esp-idf/esp_hal_jpeg/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_hal_jpeg/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_hal_jpeg/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hal_jpeg/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_jpeg && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_hal_jpeg/install: phony esp-idf/esp_hal_jpeg/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_hal_jpeg/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hal_jpeg/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_jpeg && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_hal_jpeg/install/local: phony esp-idf/esp_hal_jpeg/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_hal_jpeg/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hal_jpeg/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_jpeg && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_hal_jpeg/install/strip: phony esp-idf/esp_hal_jpeg/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_jpeg/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_jpeg && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_jpeg/edit_cache: phony esp-idf/esp_driver_jpeg/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_jpeg/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_jpeg && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_jpeg/rebuild_cache: phony esp-idf/esp_driver_jpeg/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_jpeg/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_jpeg/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_jpeg/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_jpeg && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_jpeg/install: phony esp-idf/esp_driver_jpeg/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_jpeg/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_jpeg/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_jpeg && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_jpeg/install/local: phony esp-idf/esp_driver_jpeg/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_jpeg/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_jpeg/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_jpeg && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_jpeg/install/strip: phony esp-idf/esp_driver_jpeg/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_hal_ledc + + +############################################# +# Order-only phony target for __idf_esp_hal_ledc + +build cmake_object_order_depends_target___idf_esp_hal_ledc: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/esp_hal_ledc/CMakeFiles/__idf_esp_hal_ledc.dir/ledc_hal.c.obj: C_COMPILER____idf_esp_hal_ledc_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_ledc/ledc_hal.c || cmake_object_order_depends_target___idf_esp_hal_ledc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_ledc\CMakeFiles\__idf_esp_hal_ledc.dir\ledc_hal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_ledc/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ledc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_hal_ledc\CMakeFiles\__idf_esp_hal_ledc.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_ledc\CMakeFiles\__idf_esp_hal_ledc.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_ledc\CMakeFiles\__idf_esp_hal_ledc.dir\__idf_esp_hal_ledc.pdb + TARGET_PDB = esp-idf\esp_hal_ledc\libesp_hal_ledc.pdb + +build esp-idf/esp_hal_ledc/CMakeFiles/__idf_esp_hal_ledc.dir/ledc_hal_iram.c.obj: C_COMPILER____idf_esp_hal_ledc_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_ledc/ledc_hal_iram.c || cmake_object_order_depends_target___idf_esp_hal_ledc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_ledc\CMakeFiles\__idf_esp_hal_ledc.dir\ledc_hal_iram.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_ledc/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ledc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_hal_ledc\CMakeFiles\__idf_esp_hal_ledc.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_ledc\CMakeFiles\__idf_esp_hal_ledc.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_ledc\CMakeFiles\__idf_esp_hal_ledc.dir\__idf_esp_hal_ledc.pdb + TARGET_PDB = esp-idf\esp_hal_ledc\libesp_hal_ledc.pdb + +build esp-idf/esp_hal_ledc/CMakeFiles/__idf_esp_hal_ledc.dir/esp32/ledc_periph.c.obj: C_COMPILER____idf_esp_hal_ledc_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_ledc/esp32/ledc_periph.c || cmake_object_order_depends_target___idf_esp_hal_ledc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_ledc\CMakeFiles\__idf_esp_hal_ledc.dir\esp32\ledc_periph.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_ledc/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ledc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_hal_ledc\CMakeFiles\__idf_esp_hal_ledc.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_ledc\CMakeFiles\__idf_esp_hal_ledc.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hal_ledc\CMakeFiles\__idf_esp_hal_ledc.dir\__idf_esp_hal_ledc.pdb + TARGET_PDB = esp-idf\esp_hal_ledc\libesp_hal_ledc.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_hal_ledc + + +############################################# +# Link the static library esp-idf\esp_hal_ledc\libesp_hal_ledc.a + +build esp-idf/esp_hal_ledc/libesp_hal_ledc.a: C_STATIC_LIBRARY_LINKER____idf_esp_hal_ledc_ esp-idf/esp_hal_ledc/CMakeFiles/__idf_esp_hal_ledc.dir/ledc_hal.c.obj esp-idf/esp_hal_ledc/CMakeFiles/__idf_esp_hal_ledc.dir/ledc_hal_iram.c.obj esp-idf/esp_hal_ledc/CMakeFiles/__idf_esp_hal_ledc.dir/esp32/ledc_periph.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_hal_ledc\CMakeFiles\__idf_esp_hal_ledc.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_hal_ledc\CMakeFiles\__idf_esp_hal_ledc.dir\__idf_esp_hal_ledc.pdb + TARGET_FILE = esp-idf\esp_hal_ledc\libesp_hal_ledc.a + TARGET_PDB = esp-idf\esp_hal_ledc\libesp_hal_ledc.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hal_ledc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_ledc && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hal_ledc/edit_cache: phony esp-idf/esp_hal_ledc/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hal_ledc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_ledc && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hal_ledc/rebuild_cache: phony esp-idf/esp_hal_ledc/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_hal_ledc/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_hal_ledc/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hal_ledc/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_ledc && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_hal_ledc/install: phony esp-idf/esp_hal_ledc/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_hal_ledc/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hal_ledc/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_ledc && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_hal_ledc/install/local: phony esp-idf/esp_hal_ledc/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_hal_ledc/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hal_ledc/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_ledc && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_hal_ledc/install/strip: phony esp-idf/esp_hal_ledc/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_ledc + + +############################################# +# Order-only phony target for __idf_esp_driver_ledc + +build cmake_object_order_depends_target___idf_esp_driver_ledc: phony || cmake_object_order_depends_target___idf_esp_hal_ledc cmake_object_order_depends_target___idf_xtensa + +build esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir/src/ledc.c.obj: C_COMPILER____idf_esp_driver_ledc_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_ledc/src/ledc.c || cmake_object_order_depends_target___idf_esp_driver_ledc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_ledc\CMakeFiles\__idf_esp_driver_ledc.dir\src\ledc.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_ledc/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_ledc/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ledc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\esp_driver_ledc\CMakeFiles\__idf_esp_driver_ledc.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_ledc\CMakeFiles\__idf_esp_driver_ledc.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_ledc\CMakeFiles\__idf_esp_driver_ledc.dir\__idf_esp_driver_ledc.pdb + TARGET_PDB = esp-idf\esp_driver_ledc\libesp_driver_ledc.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_ledc + + +############################################# +# Link the static library esp-idf\esp_driver_ledc\libesp_driver_ledc.a + +build esp-idf/esp_driver_ledc/libesp_driver_ledc.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_ledc_ esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir/src/ledc.c.obj || esp-idf/esp_hal_ledc/libesp_hal_ledc.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_driver_ledc\CMakeFiles\__idf_esp_driver_ledc.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_ledc\CMakeFiles\__idf_esp_driver_ledc.dir\__idf_esp_driver_ledc.pdb + TARGET_FILE = esp-idf\esp_driver_ledc\libesp_driver_ledc.a + TARGET_PDB = esp-idf\esp_driver_ledc\libesp_driver_ledc.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_ledc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_ledc && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_ledc/edit_cache: phony esp-idf/esp_driver_ledc/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_ledc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_ledc && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_ledc/rebuild_cache: phony esp-idf/esp_driver_ledc/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_ledc/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_ledc/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_ledc/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_ledc && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_ledc/install: phony esp-idf/esp_driver_ledc/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_ledc/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_ledc/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_ledc && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_ledc/install/local: phony esp-idf/esp_driver_ledc/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_ledc/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_ledc/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_ledc && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_ledc/install/strip: phony esp-idf/esp_driver_ledc/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_hal_mcpwm + + +############################################# +# Order-only phony target for __idf_esp_hal_mcpwm + +build cmake_object_order_depends_target___idf_esp_hal_mcpwm: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/esp_hal_mcpwm/CMakeFiles/__idf_esp_hal_mcpwm.dir/mcpwm_hal.c.obj: C_COMPILER____idf_esp_hal_mcpwm_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/mcpwm_hal.c || cmake_object_order_depends_target___idf_esp_hal_mcpwm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_mcpwm\CMakeFiles\__idf_esp_hal_mcpwm.dir\mcpwm_hal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_hal_mcpwm\CMakeFiles\__idf_esp_hal_mcpwm.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_mcpwm\CMakeFiles\__idf_esp_hal_mcpwm.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_mcpwm\CMakeFiles\__idf_esp_hal_mcpwm.dir\__idf_esp_hal_mcpwm.pdb + TARGET_PDB = esp-idf\esp_hal_mcpwm\libesp_hal_mcpwm.pdb + +build esp-idf/esp_hal_mcpwm/CMakeFiles/__idf_esp_hal_mcpwm.dir/esp32/mcpwm_periph.c.obj: C_COMPILER____idf_esp_hal_mcpwm_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/esp32/mcpwm_periph.c || cmake_object_order_depends_target___idf_esp_hal_mcpwm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_mcpwm\CMakeFiles\__idf_esp_hal_mcpwm.dir\esp32\mcpwm_periph.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_hal_mcpwm\CMakeFiles\__idf_esp_hal_mcpwm.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_mcpwm\CMakeFiles\__idf_esp_hal_mcpwm.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hal_mcpwm\CMakeFiles\__idf_esp_hal_mcpwm.dir\__idf_esp_hal_mcpwm.pdb + TARGET_PDB = esp-idf\esp_hal_mcpwm\libesp_hal_mcpwm.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_hal_mcpwm + + +############################################# +# Link the static library esp-idf\esp_hal_mcpwm\libesp_hal_mcpwm.a + +build esp-idf/esp_hal_mcpwm/libesp_hal_mcpwm.a: C_STATIC_LIBRARY_LINKER____idf_esp_hal_mcpwm_ esp-idf/esp_hal_mcpwm/CMakeFiles/__idf_esp_hal_mcpwm.dir/mcpwm_hal.c.obj esp-idf/esp_hal_mcpwm/CMakeFiles/__idf_esp_hal_mcpwm.dir/esp32/mcpwm_periph.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_hal_mcpwm\CMakeFiles\__idf_esp_hal_mcpwm.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_hal_mcpwm\CMakeFiles\__idf_esp_hal_mcpwm.dir\__idf_esp_hal_mcpwm.pdb + TARGET_FILE = esp-idf\esp_hal_mcpwm\libesp_hal_mcpwm.a + TARGET_PDB = esp-idf\esp_hal_mcpwm\libesp_hal_mcpwm.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hal_mcpwm/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_mcpwm && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hal_mcpwm/edit_cache: phony esp-idf/esp_hal_mcpwm/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hal_mcpwm/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_mcpwm && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hal_mcpwm/rebuild_cache: phony esp-idf/esp_hal_mcpwm/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_hal_mcpwm/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_hal_mcpwm/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hal_mcpwm/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_mcpwm && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_hal_mcpwm/install: phony esp-idf/esp_hal_mcpwm/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_hal_mcpwm/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hal_mcpwm/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_mcpwm && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_hal_mcpwm/install/local: phony esp-idf/esp_hal_mcpwm/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_hal_mcpwm/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hal_mcpwm/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_mcpwm && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_hal_mcpwm/install/strip: phony esp-idf/esp_hal_mcpwm/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_mcpwm + + +############################################# +# Order-only phony target for __idf_esp_driver_mcpwm + +build cmake_object_order_depends_target___idf_esp_driver_mcpwm: phony || cmake_object_order_depends_target___idf_esp_hal_mcpwm cmake_object_order_depends_target___idf_xtensa + +build esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cap.c.obj: C_COMPILER____idf_esp_driver_mcpwm_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/src/mcpwm_cap.c || cmake_object_order_depends_target___idf_esp_driver_mcpwm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src\mcpwm_cap.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\__idf_esp_driver_mcpwm.pdb + TARGET_PDB = esp-idf\esp_driver_mcpwm\libesp_driver_mcpwm.pdb + +build esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cmpr.c.obj: C_COMPILER____idf_esp_driver_mcpwm_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/src/mcpwm_cmpr.c || cmake_object_order_depends_target___idf_esp_driver_mcpwm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src\mcpwm_cmpr.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\__idf_esp_driver_mcpwm.pdb + TARGET_PDB = esp-idf\esp_driver_mcpwm\libesp_driver_mcpwm.pdb + +build esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_com.c.obj: C_COMPILER____idf_esp_driver_mcpwm_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/src/mcpwm_com.c || cmake_object_order_depends_target___idf_esp_driver_mcpwm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src\mcpwm_com.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\__idf_esp_driver_mcpwm.pdb + TARGET_PDB = esp-idf\esp_driver_mcpwm\libesp_driver_mcpwm.pdb + +build esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_fault.c.obj: C_COMPILER____idf_esp_driver_mcpwm_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/src/mcpwm_fault.c || cmake_object_order_depends_target___idf_esp_driver_mcpwm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src\mcpwm_fault.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\__idf_esp_driver_mcpwm.pdb + TARGET_PDB = esp-idf\esp_driver_mcpwm\libesp_driver_mcpwm.pdb + +build esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_gen.c.obj: C_COMPILER____idf_esp_driver_mcpwm_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/src/mcpwm_gen.c || cmake_object_order_depends_target___idf_esp_driver_mcpwm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src\mcpwm_gen.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\__idf_esp_driver_mcpwm.pdb + TARGET_PDB = esp-idf\esp_driver_mcpwm\libesp_driver_mcpwm.pdb + +build esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_oper.c.obj: C_COMPILER____idf_esp_driver_mcpwm_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/src/mcpwm_oper.c || cmake_object_order_depends_target___idf_esp_driver_mcpwm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src\mcpwm_oper.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\__idf_esp_driver_mcpwm.pdb + TARGET_PDB = esp-idf\esp_driver_mcpwm\libesp_driver_mcpwm.pdb + +build esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_sync.c.obj: C_COMPILER____idf_esp_driver_mcpwm_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/src/mcpwm_sync.c || cmake_object_order_depends_target___idf_esp_driver_mcpwm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src\mcpwm_sync.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\__idf_esp_driver_mcpwm.pdb + TARGET_PDB = esp-idf\esp_driver_mcpwm\libesp_driver_mcpwm.pdb + +build esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_timer.c.obj: C_COMPILER____idf_esp_driver_mcpwm_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/src/mcpwm_timer.c || cmake_object_order_depends_target___idf_esp_driver_mcpwm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src\mcpwm_timer.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\__idf_esp_driver_mcpwm.pdb + TARGET_PDB = esp-idf\esp_driver_mcpwm\libesp_driver_mcpwm.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_mcpwm + + +############################################# +# Link the static library esp-idf\esp_driver_mcpwm\libesp_driver_mcpwm.a + +build esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_mcpwm_ esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cap.c.obj esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cmpr.c.obj esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_com.c.obj esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_fault.c.obj esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_gen.c.obj esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_oper.c.obj esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_sync.c.obj esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_timer.c.obj || esp-idf/esp_hal_mcpwm/libesp_hal_mcpwm.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\__idf_esp_driver_mcpwm.pdb + TARGET_FILE = esp-idf\esp_driver_mcpwm\libesp_driver_mcpwm.a + TARGET_PDB = esp-idf\esp_driver_mcpwm\libesp_driver_mcpwm.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_mcpwm/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_mcpwm && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_mcpwm/edit_cache: phony esp-idf/esp_driver_mcpwm/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_mcpwm/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_mcpwm && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_mcpwm/rebuild_cache: phony esp-idf/esp_driver_mcpwm/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_mcpwm/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_mcpwm/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_mcpwm/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_mcpwm && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_mcpwm/install: phony esp-idf/esp_driver_mcpwm/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_mcpwm/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_mcpwm/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_mcpwm && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_mcpwm/install/local: phony esp-idf/esp_driver_mcpwm/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_mcpwm/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_mcpwm/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_mcpwm && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_mcpwm/install/strip: phony esp-idf/esp_driver_mcpwm/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hal_parlio/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_parlio && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hal_parlio/edit_cache: phony esp-idf/esp_hal_parlio/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hal_parlio/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_parlio && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hal_parlio/rebuild_cache: phony esp-idf/esp_hal_parlio/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_hal_parlio/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_hal_parlio/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hal_parlio/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_parlio && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_hal_parlio/install: phony esp-idf/esp_hal_parlio/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_hal_parlio/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hal_parlio/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_parlio && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_hal_parlio/install/local: phony esp-idf/esp_hal_parlio/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_hal_parlio/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hal_parlio/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_parlio && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_hal_parlio/install/strip: phony esp-idf/esp_hal_parlio/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_parlio/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_parlio && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_parlio/edit_cache: phony esp-idf/esp_driver_parlio/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_parlio/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_parlio && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_parlio/rebuild_cache: phony esp-idf/esp_driver_parlio/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_parlio/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_parlio/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_parlio/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_parlio && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_parlio/install: phony esp-idf/esp_driver_parlio/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_parlio/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_parlio/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_parlio && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_parlio/install/local: phony esp-idf/esp_driver_parlio/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_parlio/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_parlio/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_parlio && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_parlio/install/strip: phony esp-idf/esp_driver_parlio/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_hal_pcnt + + +############################################# +# Order-only phony target for __idf_esp_hal_pcnt + +build cmake_object_order_depends_target___idf_esp_hal_pcnt: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/esp_hal_pcnt/CMakeFiles/__idf_esp_hal_pcnt.dir/pcnt_hal.c.obj: C_COMPILER____idf_esp_hal_pcnt_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_pcnt/pcnt_hal.c || cmake_object_order_depends_target___idf_esp_hal_pcnt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_pcnt\CMakeFiles\__idf_esp_hal_pcnt.dir\pcnt_hal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_pcnt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pcnt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_hal_pcnt\CMakeFiles\__idf_esp_hal_pcnt.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_pcnt\CMakeFiles\__idf_esp_hal_pcnt.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_pcnt\CMakeFiles\__idf_esp_hal_pcnt.dir\__idf_esp_hal_pcnt.pdb + TARGET_PDB = esp-idf\esp_hal_pcnt\libesp_hal_pcnt.pdb + +build esp-idf/esp_hal_pcnt/CMakeFiles/__idf_esp_hal_pcnt.dir/esp32/pcnt_periph.c.obj: C_COMPILER____idf_esp_hal_pcnt_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_pcnt/esp32/pcnt_periph.c || cmake_object_order_depends_target___idf_esp_hal_pcnt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_pcnt\CMakeFiles\__idf_esp_hal_pcnt.dir\esp32\pcnt_periph.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_pcnt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pcnt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_hal_pcnt\CMakeFiles\__idf_esp_hal_pcnt.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_pcnt\CMakeFiles\__idf_esp_hal_pcnt.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hal_pcnt\CMakeFiles\__idf_esp_hal_pcnt.dir\__idf_esp_hal_pcnt.pdb + TARGET_PDB = esp-idf\esp_hal_pcnt\libesp_hal_pcnt.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_hal_pcnt + + +############################################# +# Link the static library esp-idf\esp_hal_pcnt\libesp_hal_pcnt.a + +build esp-idf/esp_hal_pcnt/libesp_hal_pcnt.a: C_STATIC_LIBRARY_LINKER____idf_esp_hal_pcnt_ esp-idf/esp_hal_pcnt/CMakeFiles/__idf_esp_hal_pcnt.dir/pcnt_hal.c.obj esp-idf/esp_hal_pcnt/CMakeFiles/__idf_esp_hal_pcnt.dir/esp32/pcnt_periph.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_hal_pcnt\CMakeFiles\__idf_esp_hal_pcnt.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_hal_pcnt\CMakeFiles\__idf_esp_hal_pcnt.dir\__idf_esp_hal_pcnt.pdb + TARGET_FILE = esp-idf\esp_hal_pcnt\libesp_hal_pcnt.a + TARGET_PDB = esp-idf\esp_hal_pcnt\libesp_hal_pcnt.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hal_pcnt/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_pcnt && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hal_pcnt/edit_cache: phony esp-idf/esp_hal_pcnt/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hal_pcnt/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_pcnt && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hal_pcnt/rebuild_cache: phony esp-idf/esp_hal_pcnt/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_hal_pcnt/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_hal_pcnt/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hal_pcnt/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_pcnt && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_hal_pcnt/install: phony esp-idf/esp_hal_pcnt/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_hal_pcnt/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hal_pcnt/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_pcnt && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_hal_pcnt/install/local: phony esp-idf/esp_hal_pcnt/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_hal_pcnt/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hal_pcnt/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_pcnt && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_hal_pcnt/install/strip: phony esp-idf/esp_hal_pcnt/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_pcnt + + +############################################# +# Order-only phony target for __idf_esp_driver_pcnt + +build cmake_object_order_depends_target___idf_esp_driver_pcnt: phony || cmake_object_order_depends_target___idf_esp_hal_pcnt cmake_object_order_depends_target___idf_xtensa + +build esp-idf/esp_driver_pcnt/CMakeFiles/__idf_esp_driver_pcnt.dir/src/pulse_cnt.c.obj: C_COMPILER____idf_esp_driver_pcnt_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_pcnt/src/pulse_cnt.c || cmake_object_order_depends_target___idf_esp_driver_pcnt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_pcnt\CMakeFiles\__idf_esp_driver_pcnt.dir\src\pulse_cnt.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_pcnt/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_pcnt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pcnt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\esp_driver_pcnt\CMakeFiles\__idf_esp_driver_pcnt.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_pcnt\CMakeFiles\__idf_esp_driver_pcnt.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_pcnt\CMakeFiles\__idf_esp_driver_pcnt.dir\__idf_esp_driver_pcnt.pdb + TARGET_PDB = esp-idf\esp_driver_pcnt\libesp_driver_pcnt.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_pcnt + + +############################################# +# Link the static library esp-idf\esp_driver_pcnt\libesp_driver_pcnt.a + +build esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_pcnt_ esp-idf/esp_driver_pcnt/CMakeFiles/__idf_esp_driver_pcnt.dir/src/pulse_cnt.c.obj || esp-idf/esp_hal_pcnt/libesp_hal_pcnt.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_driver_pcnt\CMakeFiles\__idf_esp_driver_pcnt.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_pcnt\CMakeFiles\__idf_esp_driver_pcnt.dir\__idf_esp_driver_pcnt.pdb + TARGET_FILE = esp-idf\esp_driver_pcnt\libesp_driver_pcnt.a + TARGET_PDB = esp-idf\esp_driver_pcnt\libesp_driver_pcnt.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_pcnt/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_pcnt && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_pcnt/edit_cache: phony esp-idf/esp_driver_pcnt/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_pcnt/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_pcnt && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_pcnt/rebuild_cache: phony esp-idf/esp_driver_pcnt/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_pcnt/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_pcnt/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_pcnt/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_pcnt && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_pcnt/install: phony esp-idf/esp_driver_pcnt/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_pcnt/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_pcnt/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_pcnt && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_pcnt/install/local: phony esp-idf/esp_driver_pcnt/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_pcnt/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_pcnt/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_pcnt && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_pcnt/install/strip: phony esp-idf/esp_driver_pcnt/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hal_ppa/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_ppa && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hal_ppa/edit_cache: phony esp-idf/esp_hal_ppa/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hal_ppa/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_ppa && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hal_ppa/rebuild_cache: phony esp-idf/esp_hal_ppa/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_hal_ppa/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_hal_ppa/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hal_ppa/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_ppa && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_hal_ppa/install: phony esp-idf/esp_hal_ppa/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_hal_ppa/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hal_ppa/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_ppa && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_hal_ppa/install/local: phony esp-idf/esp_hal_ppa/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_hal_ppa/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hal_ppa/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_ppa && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_hal_ppa/install/strip: phony esp-idf/esp_hal_ppa/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_ppa/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_ppa && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_ppa/edit_cache: phony esp-idf/esp_driver_ppa/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_ppa/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_ppa && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_ppa/rebuild_cache: phony esp-idf/esp_driver_ppa/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_ppa/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_ppa/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_ppa/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_ppa && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_ppa/install: phony esp-idf/esp_driver_ppa/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_ppa/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_ppa/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_ppa && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_ppa/install/local: phony esp-idf/esp_driver_ppa/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_ppa/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_ppa/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_ppa && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_ppa/install/strip: phony esp-idf/esp_driver_ppa/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_hal_rmt + + +############################################# +# Order-only phony target for __idf_esp_hal_rmt + +build cmake_object_order_depends_target___idf_esp_hal_rmt: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/esp_hal_rmt/CMakeFiles/__idf_esp_hal_rmt.dir/rmt_hal.c.obj: C_COMPILER____idf_esp_hal_rmt_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_rmt/rmt_hal.c || cmake_object_order_depends_target___idf_esp_hal_rmt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_rmt\CMakeFiles\__idf_esp_hal_rmt.dir\rmt_hal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_hal_rmt\CMakeFiles\__idf_esp_hal_rmt.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_rmt\CMakeFiles\__idf_esp_hal_rmt.dir + TARGET_COMPILE_PDB = esp-idf\esp_hal_rmt\CMakeFiles\__idf_esp_hal_rmt.dir\__idf_esp_hal_rmt.pdb + TARGET_PDB = esp-idf\esp_hal_rmt\libesp_hal_rmt.pdb + +build esp-idf/esp_hal_rmt/CMakeFiles/__idf_esp_hal_rmt.dir/esp32/rmt_periph.c.obj: C_COMPILER____idf_esp_hal_rmt_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_rmt/esp32/rmt_periph.c || cmake_object_order_depends_target___idf_esp_hal_rmt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_rmt\CMakeFiles\__idf_esp_hal_rmt.dir\esp32\rmt_periph.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_hal_rmt\CMakeFiles\__idf_esp_hal_rmt.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_rmt\CMakeFiles\__idf_esp_hal_rmt.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hal_rmt\CMakeFiles\__idf_esp_hal_rmt.dir\__idf_esp_hal_rmt.pdb + TARGET_PDB = esp-idf\esp_hal_rmt\libesp_hal_rmt.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_hal_rmt + + +############################################# +# Link the static library esp-idf\esp_hal_rmt\libesp_hal_rmt.a + +build esp-idf/esp_hal_rmt/libesp_hal_rmt.a: C_STATIC_LIBRARY_LINKER____idf_esp_hal_rmt_ esp-idf/esp_hal_rmt/CMakeFiles/__idf_esp_hal_rmt.dir/rmt_hal.c.obj esp-idf/esp_hal_rmt/CMakeFiles/__idf_esp_hal_rmt.dir/esp32/rmt_periph.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_hal_rmt\CMakeFiles\__idf_esp_hal_rmt.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_hal_rmt\CMakeFiles\__idf_esp_hal_rmt.dir\__idf_esp_hal_rmt.pdb + TARGET_FILE = esp-idf\esp_hal_rmt\libesp_hal_rmt.a + TARGET_PDB = esp-idf\esp_hal_rmt\libesp_hal_rmt.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hal_rmt/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_rmt && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hal_rmt/edit_cache: phony esp-idf/esp_hal_rmt/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hal_rmt/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_rmt && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hal_rmt/rebuild_cache: phony esp-idf/esp_hal_rmt/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_hal_rmt/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_hal_rmt/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hal_rmt/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_rmt && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_hal_rmt/install: phony esp-idf/esp_hal_rmt/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_hal_rmt/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hal_rmt/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_rmt && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_hal_rmt/install/local: phony esp-idf/esp_hal_rmt/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_hal_rmt/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hal_rmt/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_rmt && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_hal_rmt/install/strip: phony esp-idf/esp_hal_rmt/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_rmt + + +############################################# +# Order-only phony target for __idf_esp_driver_rmt + +build cmake_object_order_depends_target___idf_esp_driver_rmt: phony || cmake_object_order_depends_target___idf_esp_hal_rmt cmake_object_order_depends_target___idf_xtensa + +build esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_common.c.obj: C_COMPILER____idf_esp_driver_rmt_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_rmt/src/rmt_common.c || cmake_object_order_depends_target___idf_esp_driver_rmt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src\rmt_common.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_rmt/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_bitscrambler/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include + OBJECT_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\__idf_esp_driver_rmt.pdb + TARGET_PDB = esp-idf\esp_driver_rmt\libesp_driver_rmt.pdb + +build esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder.c.obj: C_COMPILER____idf_esp_driver_rmt_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_rmt/src/rmt_encoder.c || cmake_object_order_depends_target___idf_esp_driver_rmt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src\rmt_encoder.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_rmt/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_bitscrambler/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include + OBJECT_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\__idf_esp_driver_rmt.pdb + TARGET_PDB = esp-idf\esp_driver_rmt\libesp_driver_rmt.pdb + +build esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_bytes.c.obj: C_COMPILER____idf_esp_driver_rmt_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_rmt/src/rmt_encoder_bytes.c || cmake_object_order_depends_target___idf_esp_driver_rmt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src\rmt_encoder_bytes.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_rmt/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_bitscrambler/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include + OBJECT_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\__idf_esp_driver_rmt.pdb + TARGET_PDB = esp-idf\esp_driver_rmt\libesp_driver_rmt.pdb + +build esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_copy.c.obj: C_COMPILER____idf_esp_driver_rmt_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_rmt/src/rmt_encoder_copy.c || cmake_object_order_depends_target___idf_esp_driver_rmt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src\rmt_encoder_copy.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_rmt/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_bitscrambler/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include + OBJECT_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\__idf_esp_driver_rmt.pdb + TARGET_PDB = esp-idf\esp_driver_rmt\libesp_driver_rmt.pdb + +build esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_simple.c.obj: C_COMPILER____idf_esp_driver_rmt_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_rmt/src/rmt_encoder_simple.c || cmake_object_order_depends_target___idf_esp_driver_rmt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src\rmt_encoder_simple.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_rmt/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_bitscrambler/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include + OBJECT_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\__idf_esp_driver_rmt.pdb + TARGET_PDB = esp-idf\esp_driver_rmt\libesp_driver_rmt.pdb + +build esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_rx.c.obj: C_COMPILER____idf_esp_driver_rmt_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_rmt/src/rmt_rx.c || cmake_object_order_depends_target___idf_esp_driver_rmt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src\rmt_rx.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_rmt/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_bitscrambler/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include + OBJECT_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\__idf_esp_driver_rmt.pdb + TARGET_PDB = esp-idf\esp_driver_rmt\libesp_driver_rmt.pdb + +build esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_tx.c.obj: C_COMPILER____idf_esp_driver_rmt_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_rmt/src/rmt_tx.c || cmake_object_order_depends_target___idf_esp_driver_rmt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src\rmt_tx.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_rmt/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_bitscrambler/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include + OBJECT_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\__idf_esp_driver_rmt.pdb + TARGET_PDB = esp-idf\esp_driver_rmt\libesp_driver_rmt.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_rmt + + +############################################# +# Link the static library esp-idf\esp_driver_rmt\libesp_driver_rmt.a + +build esp-idf/esp_driver_rmt/libesp_driver_rmt.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_rmt_ esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_common.c.obj esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder.c.obj esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_bytes.c.obj esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_copy.c.obj esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_simple.c.obj esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_rx.c.obj esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_tx.c.obj || esp-idf/esp_hal_rmt/libesp_hal_rmt.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\__idf_esp_driver_rmt.pdb + TARGET_FILE = esp-idf\esp_driver_rmt\libesp_driver_rmt.a + TARGET_PDB = esp-idf\esp_driver_rmt\libesp_driver_rmt.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_rmt/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_rmt && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_rmt/edit_cache: phony esp-idf/esp_driver_rmt/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_rmt/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_rmt && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_rmt/rebuild_cache: phony esp-idf/esp_driver_rmt/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_rmt/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_rmt/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_rmt/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_rmt && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_rmt/install: phony esp-idf/esp_driver_rmt/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_rmt/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_rmt/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_rmt && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_rmt/install/local: phony esp-idf/esp_driver_rmt/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_rmt/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_rmt/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_rmt && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_rmt/install/strip: phony esp-idf/esp_driver_rmt/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_sdmmc + + +############################################# +# Order-only phony target for __idf_sdmmc + +build cmake_object_order_depends_target___idf_sdmmc: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj: C_COMPILER____idf_sdmmc_unscanned_ C$:/esp/v6.0/esp-idf/components/sdmmc/sdmmc_cmd.c || cmake_object_order_depends_target___idf_sdmmc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\sdmmc_cmd.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + OBJECT_FILE_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + TARGET_COMPILE_PDB = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\__idf_sdmmc.pdb + TARGET_PDB = esp-idf\sdmmc\libsdmmc.pdb + +build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj: C_COMPILER____idf_sdmmc_unscanned_ C$:/esp/v6.0/esp-idf/components/sdmmc/sdmmc_common.c || cmake_object_order_depends_target___idf_sdmmc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\sdmmc_common.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + OBJECT_FILE_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + TARGET_COMPILE_PDB = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\__idf_sdmmc.pdb + TARGET_PDB = esp-idf\sdmmc\libsdmmc.pdb + +build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj: C_COMPILER____idf_sdmmc_unscanned_ C$:/esp/v6.0/esp-idf/components/sdmmc/sdmmc_init.c || cmake_object_order_depends_target___idf_sdmmc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\sdmmc_init.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + OBJECT_FILE_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + TARGET_COMPILE_PDB = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\__idf_sdmmc.pdb + TARGET_PDB = esp-idf\sdmmc\libsdmmc.pdb + +build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj: C_COMPILER____idf_sdmmc_unscanned_ C$:/esp/v6.0/esp-idf/components/sdmmc/sdmmc_mmc.c || cmake_object_order_depends_target___idf_sdmmc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\sdmmc_mmc.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + OBJECT_FILE_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + TARGET_COMPILE_PDB = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\__idf_sdmmc.pdb + TARGET_PDB = esp-idf\sdmmc\libsdmmc.pdb + +build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj: C_COMPILER____idf_sdmmc_unscanned_ C$:/esp/v6.0/esp-idf/components/sdmmc/sdmmc_sd.c || cmake_object_order_depends_target___idf_sdmmc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\sdmmc_sd.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + OBJECT_FILE_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + TARGET_COMPILE_PDB = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\__idf_sdmmc.pdb + TARGET_PDB = esp-idf\sdmmc\libsdmmc.pdb + +build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_blockdev.c.obj: C_COMPILER____idf_sdmmc_unscanned_ C$:/esp/v6.0/esp-idf/components/sdmmc/sdmmc_blockdev.c || cmake_object_order_depends_target___idf_sdmmc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\sdmmc_blockdev.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + OBJECT_FILE_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + TARGET_COMPILE_PDB = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\__idf_sdmmc.pdb + TARGET_PDB = esp-idf\sdmmc\libsdmmc.pdb + +build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sd_pwr_ctrl/sd_pwr_ctrl.c.obj: C_COMPILER____idf_sdmmc_unscanned_ C$:/esp/v6.0/esp-idf/components/sdmmc/sd_pwr_ctrl/sd_pwr_ctrl.c || cmake_object_order_depends_target___idf_sdmmc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\sd_pwr_ctrl\sd_pwr_ctrl.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + OBJECT_FILE_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\sd_pwr_ctrl + TARGET_COMPILE_PDB = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\__idf_sdmmc.pdb + TARGET_PDB = esp-idf\sdmmc\libsdmmc.pdb + +build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj: C_COMPILER____idf_sdmmc_unscanned_ C$:/esp/v6.0/esp-idf/components/sdmmc/sdmmc_io.c || cmake_object_order_depends_target___idf_sdmmc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\sdmmc_io.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + OBJECT_FILE_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + TARGET_COMPILE_PDB = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\__idf_sdmmc.pdb + TARGET_PDB = esp-idf\sdmmc\libsdmmc.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_sdmmc + + +############################################# +# Link the static library esp-idf\sdmmc\libsdmmc.a + +build 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_mmc.c.obj esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_blockdev.c.obj esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sd_pwr_ctrl/sd_pwr_ctrl.c.obj esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\__idf_sdmmc.pdb + TARGET_FILE = esp-idf\sdmmc\libsdmmc.a + TARGET_PDB = esp-idf\sdmmc\libsdmmc.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/sdmmc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\sdmmc && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/sdmmc/edit_cache: phony esp-idf/sdmmc/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/sdmmc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\sdmmc && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/sdmmc/rebuild_cache: phony esp-idf/sdmmc/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/sdmmc/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/sdmmc/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/sdmmc/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\sdmmc && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/sdmmc/install: phony esp-idf/sdmmc/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/sdmmc/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/sdmmc/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\sdmmc && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/sdmmc/install/local: phony esp-idf/sdmmc/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/sdmmc/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/sdmmc/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\sdmmc && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/sdmmc/install/strip: phony esp-idf/sdmmc/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_sd_intf + + +############################################# +# Order-only phony target for __idf_esp_driver_sd_intf + +build cmake_object_order_depends_target___idf_esp_driver_sd_intf: phony || cmake_object_order_depends_target___idf_sdmmc cmake_object_order_depends_target___idf_xtensa + +build esp-idf/esp_driver_sd_intf/CMakeFiles/__idf_esp_driver_sd_intf.dir/sd_host.c.obj: C_COMPILER____idf_esp_driver_sd_intf_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_sd_intf/sd_host.c || cmake_object_order_depends_target___idf_esp_driver_sd_intf + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_sd_intf\CMakeFiles\__idf_esp_driver_sd_intf.dir\sd_host.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_sd_intf/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include + OBJECT_DIR = esp-idf\esp_driver_sd_intf\CMakeFiles\__idf_esp_driver_sd_intf.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_sd_intf\CMakeFiles\__idf_esp_driver_sd_intf.dir + TARGET_COMPILE_PDB = esp-idf\esp_driver_sd_intf\CMakeFiles\__idf_esp_driver_sd_intf.dir\__idf_esp_driver_sd_intf.pdb + TARGET_PDB = esp-idf\esp_driver_sd_intf\libesp_driver_sd_intf.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_sd_intf + + +############################################# +# Link the static library esp-idf\esp_driver_sd_intf\libesp_driver_sd_intf.a + +build esp-idf/esp_driver_sd_intf/libesp_driver_sd_intf.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_sd_intf_ esp-idf/esp_driver_sd_intf/CMakeFiles/__idf_esp_driver_sd_intf.dir/sd_host.c.obj || esp-idf/sdmmc/libsdmmc.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_driver_sd_intf\CMakeFiles\__idf_esp_driver_sd_intf.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_sd_intf\CMakeFiles\__idf_esp_driver_sd_intf.dir\__idf_esp_driver_sd_intf.pdb + TARGET_FILE = esp-idf\esp_driver_sd_intf\libesp_driver_sd_intf.a + TARGET_PDB = esp-idf\esp_driver_sd_intf\libesp_driver_sd_intf.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_sd_intf/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_sd_intf && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_sd_intf/edit_cache: phony esp-idf/esp_driver_sd_intf/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_sd_intf/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_sd_intf && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_sd_intf/rebuild_cache: phony esp-idf/esp_driver_sd_intf/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_sd_intf/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_sd_intf/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_sd_intf/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_sd_intf && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_sd_intf/install: phony esp-idf/esp_driver_sd_intf/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_sd_intf/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_sd_intf/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_sd_intf && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_sd_intf/install/local: phony esp-idf/esp_driver_sd_intf/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_sd_intf/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_sd_intf/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_sd_intf && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_sd_intf/install/strip: phony esp-idf/esp_driver_sd_intf/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_sdio + + +############################################# +# Order-only phony target for __idf_esp_driver_sdio + +build cmake_object_order_depends_target___idf_esp_driver_sdio: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/esp_driver_sdio/CMakeFiles/__idf_esp_driver_sdio.dir/src/sdio_slave.c.obj: C_COMPILER____idf_esp_driver_sdio_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_sdio/src/sdio_slave.c || cmake_object_order_depends_target___idf_esp_driver_sdio + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_sdio\CMakeFiles\__idf_esp_driver_sdio.dir\src\sdio_slave.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_sdio/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include + OBJECT_DIR = esp-idf\esp_driver_sdio\CMakeFiles\__idf_esp_driver_sdio.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_sdio\CMakeFiles\__idf_esp_driver_sdio.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_sdio\CMakeFiles\__idf_esp_driver_sdio.dir\__idf_esp_driver_sdio.pdb + TARGET_PDB = esp-idf\esp_driver_sdio\libesp_driver_sdio.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_sdio + + +############################################# +# Link the static library esp-idf\esp_driver_sdio\libesp_driver_sdio.a + +build esp-idf/esp_driver_sdio/libesp_driver_sdio.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_sdio_ esp-idf/esp_driver_sdio/CMakeFiles/__idf_esp_driver_sdio.dir/src/sdio_slave.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_driver_sdio\CMakeFiles\__idf_esp_driver_sdio.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_sdio\CMakeFiles\__idf_esp_driver_sdio.dir\__idf_esp_driver_sdio.pdb + TARGET_FILE = esp-idf\esp_driver_sdio\libesp_driver_sdio.a + TARGET_PDB = esp-idf\esp_driver_sdio\libesp_driver_sdio.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_sdio/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_sdio && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdio/edit_cache: phony esp-idf/esp_driver_sdio/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_sdio/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_sdio && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdio/rebuild_cache: phony esp-idf/esp_driver_sdio/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_sdio/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_sdio/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_sdio/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_sdio && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdio/install: phony esp-idf/esp_driver_sdio/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_sdio/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_sdio/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_sdio && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdio/install/local: phony esp-idf/esp_driver_sdio/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_sdio/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_sdio/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_sdio && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdio/install/strip: phony esp-idf/esp_driver_sdio/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_sdm + + +############################################# +# Order-only phony target for __idf_esp_driver_sdm + +build cmake_object_order_depends_target___idf_esp_driver_sdm: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir/src/sdm.c.obj: C_COMPILER____idf_esp_driver_sdm_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_sdm/src/sdm.c || cmake_object_order_depends_target___idf_esp_driver_sdm + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_sdm\CMakeFiles\__idf_esp_driver_sdm.dir\src\sdm.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_sdm/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\esp_driver_sdm\CMakeFiles\__idf_esp_driver_sdm.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_sdm\CMakeFiles\__idf_esp_driver_sdm.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_sdm\CMakeFiles\__idf_esp_driver_sdm.dir\__idf_esp_driver_sdm.pdb + TARGET_PDB = esp-idf\esp_driver_sdm\libesp_driver_sdm.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_sdm + + +############################################# +# Link the static library esp-idf\esp_driver_sdm\libesp_driver_sdm.a + +build esp-idf/esp_driver_sdm/libesp_driver_sdm.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_sdm_ esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir/src/sdm.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_driver_sdm\CMakeFiles\__idf_esp_driver_sdm.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_sdm\CMakeFiles\__idf_esp_driver_sdm.dir\__idf_esp_driver_sdm.pdb + TARGET_FILE = esp-idf\esp_driver_sdm\libesp_driver_sdm.a + TARGET_PDB = esp-idf\esp_driver_sdm\libesp_driver_sdm.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_sdm/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_sdm && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdm/edit_cache: phony esp-idf/esp_driver_sdm/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_sdm/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_sdm && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdm/rebuild_cache: phony esp-idf/esp_driver_sdm/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_sdm/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_sdm/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_sdm/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_sdm && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdm/install: phony esp-idf/esp_driver_sdm/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_sdm/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_sdm/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_sdm && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdm/install/local: phony esp-idf/esp_driver_sdm/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_sdm/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_sdm/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_sdm && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdm/install/strip: phony esp-idf/esp_driver_sdm/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_sdmmc + + +############################################# +# Order-only phony target for __idf_esp_driver_sdmmc + +build cmake_object_order_depends_target___idf_esp_driver_sdmmc: phony || cmake_object_order_depends_target___idf_esp_driver_sd_intf cmake_object_order_depends_target___idf_sdmmc cmake_object_order_depends_target___idf_xtensa + +build esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/legacy/src/sdmmc_transaction.c.obj: C_COMPILER____idf_esp_driver_sdmmc_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/legacy/src/sdmmc_transaction.c || cmake_object_order_depends_target___idf_esp_driver_sdmmc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_sdmmc\CMakeFiles\__idf_esp_driver_sdmmc.dir\legacy\src\sdmmc_transaction.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/legacy/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_sd_intf/include -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\esp_driver_sdmmc\CMakeFiles\__idf_esp_driver_sdmmc.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_sdmmc\CMakeFiles\__idf_esp_driver_sdmmc.dir\legacy\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_sdmmc\CMakeFiles\__idf_esp_driver_sdmmc.dir\__idf_esp_driver_sdmmc.pdb + TARGET_PDB = esp-idf\esp_driver_sdmmc\libesp_driver_sdmmc.pdb + +build esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/legacy/src/sdmmc_host.c.obj: C_COMPILER____idf_esp_driver_sdmmc_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/legacy/src/sdmmc_host.c || cmake_object_order_depends_target___idf_esp_driver_sdmmc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_sdmmc\CMakeFiles\__idf_esp_driver_sdmmc.dir\legacy\src\sdmmc_host.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/legacy/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_sd_intf/include -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\esp_driver_sdmmc\CMakeFiles\__idf_esp_driver_sdmmc.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_sdmmc\CMakeFiles\__idf_esp_driver_sdmmc.dir\legacy\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_sdmmc\CMakeFiles\__idf_esp_driver_sdmmc.dir\__idf_esp_driver_sdmmc.pdb + TARGET_PDB = esp-idf\esp_driver_sdmmc\libesp_driver_sdmmc.pdb + +build esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/src/sd_host_sdmmc.c.obj: C_COMPILER____idf_esp_driver_sdmmc_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/src/sd_host_sdmmc.c || cmake_object_order_depends_target___idf_esp_driver_sdmmc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_sdmmc\CMakeFiles\__idf_esp_driver_sdmmc.dir\src\sd_host_sdmmc.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/legacy/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_sd_intf/include -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\esp_driver_sdmmc\CMakeFiles\__idf_esp_driver_sdmmc.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_sdmmc\CMakeFiles\__idf_esp_driver_sdmmc.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_sdmmc\CMakeFiles\__idf_esp_driver_sdmmc.dir\__idf_esp_driver_sdmmc.pdb + TARGET_PDB = esp-idf\esp_driver_sdmmc\libesp_driver_sdmmc.pdb + +build esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/src/sd_trans_sdmmc.c.obj: C_COMPILER____idf_esp_driver_sdmmc_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/src/sd_trans_sdmmc.c || cmake_object_order_depends_target___idf_esp_driver_sdmmc + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_sdmmc\CMakeFiles\__idf_esp_driver_sdmmc.dir\src\sd_trans_sdmmc.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/legacy/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_sd_intf/include -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include + OBJECT_DIR = esp-idf\esp_driver_sdmmc\CMakeFiles\__idf_esp_driver_sdmmc.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_sdmmc\CMakeFiles\__idf_esp_driver_sdmmc.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_sdmmc\CMakeFiles\__idf_esp_driver_sdmmc.dir\__idf_esp_driver_sdmmc.pdb + TARGET_PDB = esp-idf\esp_driver_sdmmc\libesp_driver_sdmmc.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_sdmmc + + +############################################# +# Link the static library esp-idf\esp_driver_sdmmc\libesp_driver_sdmmc.a + +build esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_sdmmc_ esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/legacy/src/sdmmc_transaction.c.obj esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/legacy/src/sdmmc_host.c.obj esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/src/sd_host_sdmmc.c.obj esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/src/sd_trans_sdmmc.c.obj || esp-idf/esp_driver_sd_intf/libesp_driver_sd_intf.a esp-idf/sdmmc/libsdmmc.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_driver_sdmmc\CMakeFiles\__idf_esp_driver_sdmmc.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_sdmmc\CMakeFiles\__idf_esp_driver_sdmmc.dir\__idf_esp_driver_sdmmc.pdb + TARGET_FILE = esp-idf\esp_driver_sdmmc\libesp_driver_sdmmc.a + TARGET_PDB = esp-idf\esp_driver_sdmmc\libesp_driver_sdmmc.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_sdmmc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_sdmmc && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdmmc/edit_cache: phony esp-idf/esp_driver_sdmmc/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_sdmmc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_sdmmc && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdmmc/rebuild_cache: phony esp-idf/esp_driver_sdmmc/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_sdmmc/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_sdmmc/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_sdmmc/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_sdmmc && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdmmc/install: phony esp-idf/esp_driver_sdmmc/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_sdmmc/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_sdmmc/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_sdmmc && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdmmc/install/local: phony esp-idf/esp_driver_sdmmc/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_sdmmc/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_sdmmc/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_sdmmc && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdmmc/install/strip: phony esp-idf/esp_driver_sdmmc/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_sdspi + + +############################################# +# Order-only phony target for __idf_esp_driver_sdspi + +build cmake_object_order_depends_target___idf_esp_driver_sdspi: phony || cmake_object_order_depends_target___idf_esp_driver_spi cmake_object_order_depends_target___idf_sdmmc cmake_object_order_depends_target___idf_xtensa + +build esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_crc.c.obj: C_COMPILER____idf_esp_driver_sdspi_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_sdspi/src/sdspi_crc.c || cmake_object_order_depends_target___idf_esp_driver_sdspi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir\src\sdspi_crc.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_sdspi/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir\__idf_esp_driver_sdspi.pdb + TARGET_PDB = esp-idf\esp_driver_sdspi\libesp_driver_sdspi.pdb + +build esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_host.c.obj: C_COMPILER____idf_esp_driver_sdspi_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_sdspi/src/sdspi_host.c || cmake_object_order_depends_target___idf_esp_driver_sdspi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir\src\sdspi_host.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_sdspi/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir\__idf_esp_driver_sdspi.pdb + TARGET_PDB = esp-idf\esp_driver_sdspi\libesp_driver_sdspi.pdb + +build esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_transaction.c.obj: C_COMPILER____idf_esp_driver_sdspi_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_sdspi/src/sdspi_transaction.c || cmake_object_order_depends_target___idf_esp_driver_sdspi + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir\src\sdspi_transaction.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_sdspi/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir\__idf_esp_driver_sdspi.pdb + TARGET_PDB = esp-idf\esp_driver_sdspi\libesp_driver_sdspi.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_sdspi + + +############################################# +# Link the static library esp-idf\esp_driver_sdspi\libesp_driver_sdspi.a + +build esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_sdspi_ esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_crc.c.obj esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_host.c.obj esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_transaction.c.obj || esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/sdmmc/libsdmmc.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir\__idf_esp_driver_sdspi.pdb + TARGET_FILE = esp-idf\esp_driver_sdspi\libesp_driver_sdspi.a + TARGET_PDB = esp-idf\esp_driver_sdspi\libesp_driver_sdspi.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_sdspi/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_sdspi && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdspi/edit_cache: phony esp-idf/esp_driver_sdspi/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_sdspi/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_sdspi && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdspi/rebuild_cache: phony esp-idf/esp_driver_sdspi/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_sdspi/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_sdspi/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_sdspi/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_sdspi && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdspi/install: phony esp-idf/esp_driver_sdspi/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_sdspi/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_sdspi/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_sdspi && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdspi/install/local: phony esp-idf/esp_driver_sdspi/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_sdspi/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_sdspi/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_sdspi && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_sdspi/install/strip: phony esp-idf/esp_driver_sdspi/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_touch_sens + + +############################################# +# Order-only phony target for __idf_esp_driver_touch_sens + +build cmake_object_order_depends_target___idf_esp_driver_touch_sens: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/esp_driver_touch_sens/CMakeFiles/__idf_esp_driver_touch_sens.dir/common/touch_sens_common.c.obj: C_COMPILER____idf_esp_driver_touch_sens_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_touch_sens/common/touch_sens_common.c || cmake_object_order_depends_target___idf_esp_driver_touch_sens + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_touch_sens\CMakeFiles\__idf_esp_driver_touch_sens.dir\common\touch_sens_common.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_driver_touch_sens/hw_ver1/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp_driver_touch_sens\CMakeFiles\__idf_esp_driver_touch_sens.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_touch_sens\CMakeFiles\__idf_esp_driver_touch_sens.dir\common + TARGET_COMPILE_PDB = esp-idf\esp_driver_touch_sens\CMakeFiles\__idf_esp_driver_touch_sens.dir\__idf_esp_driver_touch_sens.pdb + TARGET_PDB = esp-idf\esp_driver_touch_sens\libesp_driver_touch_sens.pdb + +build esp-idf/esp_driver_touch_sens/CMakeFiles/__idf_esp_driver_touch_sens.dir/hw_ver1/touch_version_specific.c.obj: C_COMPILER____idf_esp_driver_touch_sens_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_touch_sens/hw_ver1/touch_version_specific.c || cmake_object_order_depends_target___idf_esp_driver_touch_sens + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_touch_sens\CMakeFiles\__idf_esp_driver_touch_sens.dir\hw_ver1\touch_version_specific.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_driver_touch_sens/hw_ver1/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp_driver_touch_sens\CMakeFiles\__idf_esp_driver_touch_sens.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_touch_sens\CMakeFiles\__idf_esp_driver_touch_sens.dir\hw_ver1 + TARGET_COMPILE_PDB = esp-idf\esp_driver_touch_sens\CMakeFiles\__idf_esp_driver_touch_sens.dir\__idf_esp_driver_touch_sens.pdb + TARGET_PDB = esp-idf\esp_driver_touch_sens\libesp_driver_touch_sens.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_touch_sens + + +############################################# +# Link the static library esp-idf\esp_driver_touch_sens\libesp_driver_touch_sens.a + +build esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_touch_sens_ esp-idf/esp_driver_touch_sens/CMakeFiles/__idf_esp_driver_touch_sens.dir/common/touch_sens_common.c.obj esp-idf/esp_driver_touch_sens/CMakeFiles/__idf_esp_driver_touch_sens.dir/hw_ver1/touch_version_specific.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_driver_touch_sens\CMakeFiles\__idf_esp_driver_touch_sens.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_touch_sens\CMakeFiles\__idf_esp_driver_touch_sens.dir\__idf_esp_driver_touch_sens.pdb + TARGET_FILE = esp-idf\esp_driver_touch_sens\libesp_driver_touch_sens.a + TARGET_PDB = esp-idf\esp_driver_touch_sens\libesp_driver_touch_sens.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_touch_sens/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_touch_sens && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_touch_sens/edit_cache: phony esp-idf/esp_driver_touch_sens/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_touch_sens/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_touch_sens && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_touch_sens/rebuild_cache: phony esp-idf/esp_driver_touch_sens/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_touch_sens/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_touch_sens/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_touch_sens/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_touch_sens && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_touch_sens/install: phony esp-idf/esp_driver_touch_sens/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_touch_sens/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_touch_sens/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_touch_sens && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_touch_sens/install/local: phony esp-idf/esp_driver_touch_sens/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_touch_sens/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_touch_sens/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_touch_sens && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_touch_sens/install/strip: phony esp-idf/esp_driver_touch_sens/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_tsens/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_tsens && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_tsens/edit_cache: phony esp-idf/esp_driver_tsens/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_tsens/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_tsens && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_tsens/rebuild_cache: phony esp-idf/esp_driver_tsens/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_tsens/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_tsens/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_tsens/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_tsens && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_tsens/install: phony esp-idf/esp_driver_tsens/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_tsens/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_tsens/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_tsens && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_tsens/install/local: phony esp-idf/esp_driver_tsens/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_tsens/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_tsens/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_tsens && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_tsens/install/strip: phony esp-idf/esp_driver_tsens/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_driver_twai + + +############################################# +# Order-only phony target for __idf_esp_driver_twai + +build cmake_object_order_depends_target___idf_esp_driver_twai: phony || cmake_object_order_depends_target___idf_esp_hal_twai cmake_object_order_depends_target___idf_xtensa + +build esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir/esp_twai.c.obj: C_COMPILER____idf_esp_driver_twai_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_twai/esp_twai.c || cmake_object_order_depends_target___idf_esp_driver_twai + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_twai\CMakeFiles\__idf_esp_driver_twai.dir\esp_twai.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_twai/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp_driver_twai\CMakeFiles\__idf_esp_driver_twai.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_twai\CMakeFiles\__idf_esp_driver_twai.dir + TARGET_COMPILE_PDB = esp-idf\esp_driver_twai\CMakeFiles\__idf_esp_driver_twai.dir\__idf_esp_driver_twai.pdb + TARGET_PDB = esp-idf\esp_driver_twai\libesp_driver_twai.pdb + +build esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir/esp_twai_onchip.c.obj: C_COMPILER____idf_esp_driver_twai_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_driver_twai/esp_twai_onchip.c || cmake_object_order_depends_target___idf_esp_driver_twai + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_driver_twai\CMakeFiles\__idf_esp_driver_twai.dir\esp_twai_onchip.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_twai/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp_driver_twai\CMakeFiles\__idf_esp_driver_twai.dir + OBJECT_FILE_DIR = esp-idf\esp_driver_twai\CMakeFiles\__idf_esp_driver_twai.dir + TARGET_COMPILE_PDB = esp-idf\esp_driver_twai\CMakeFiles\__idf_esp_driver_twai.dir\__idf_esp_driver_twai.pdb + TARGET_PDB = esp-idf\esp_driver_twai\libesp_driver_twai.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_driver_twai + + +############################################# +# Link the static library esp-idf\esp_driver_twai\libesp_driver_twai.a + +build esp-idf/esp_driver_twai/libesp_driver_twai.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_twai_ esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir/esp_twai.c.obj esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir/esp_twai_onchip.c.obj || esp-idf/esp_hal_twai/libesp_hal_twai.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_driver_twai\CMakeFiles\__idf_esp_driver_twai.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_driver_twai\CMakeFiles\__idf_esp_driver_twai.dir\__idf_esp_driver_twai.pdb + TARGET_FILE = esp-idf\esp_driver_twai\libesp_driver_twai.a + TARGET_PDB = esp-idf\esp_driver_twai\libesp_driver_twai.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_driver_twai/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_twai && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_driver_twai/edit_cache: phony esp-idf/esp_driver_twai/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_driver_twai/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_twai && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_driver_twai/rebuild_cache: phony esp-idf/esp_driver_twai/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_driver_twai/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_driver_twai/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_twai/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_twai && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_driver_twai/install: phony esp-idf/esp_driver_twai/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_driver_twai/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_twai/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_twai && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_driver_twai/install/local: phony esp-idf/esp_driver_twai/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_driver_twai/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_twai/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_driver_twai && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_driver_twai/install/strip: phony esp-idf/esp_driver_twai/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_eth + + +############################################# +# Order-only phony target for __idf_esp_eth + +build cmake_object_order_depends_target___idf_esp_eth: phony || cmake_object_order_depends_target___idf_esp_driver_spi cmake_object_order_depends_target___idf_xtensa + +build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj: C_COMPILER____idf_esp_eth_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_eth/src/esp_eth.c || cmake_object_order_depends_target___idf_esp_eth + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir\src\esp_eth.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_eth/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir + OBJECT_FILE_DIR = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir\__idf_esp_eth.pdb + TARGET_PDB = esp-idf\esp_eth\libesp_eth.pdb + +build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/phy/esp_eth_phy_802_3.c.obj: C_COMPILER____idf_esp_eth_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_eth/src/phy/esp_eth_phy_802_3.c || cmake_object_order_depends_target___idf_esp_eth + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir\src\phy\esp_eth_phy_802_3.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_eth/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir + OBJECT_FILE_DIR = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir\src\phy + TARGET_COMPILE_PDB = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir\__idf_esp_eth.pdb + TARGET_PDB = esp-idf\esp_eth\libesp_eth.pdb + +build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj: C_COMPILER____idf_esp_eth_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_eth/src/esp_eth_netif_glue.c || cmake_object_order_depends_target___idf_esp_eth + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir\src\esp_eth_netif_glue.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_eth/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir + OBJECT_FILE_DIR = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir\__idf_esp_eth.pdb + TARGET_PDB = esp-idf\esp_eth\libesp_eth.pdb + +build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/mac/esp_eth_mac_esp.c.obj: C_COMPILER____idf_esp_eth_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_eth/src/mac/esp_eth_mac_esp.c || cmake_object_order_depends_target___idf_esp_eth + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir\src\mac\esp_eth_mac_esp.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_eth/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir + OBJECT_FILE_DIR = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir\src\mac + TARGET_COMPILE_PDB = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir\__idf_esp_eth.pdb + TARGET_PDB = esp-idf\esp_eth\libesp_eth.pdb + +build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/mac/esp_eth_mac_esp_dma.c.obj: C_COMPILER____idf_esp_eth_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_eth/src/mac/esp_eth_mac_esp_dma.c || cmake_object_order_depends_target___idf_esp_eth + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir\src\mac\esp_eth_mac_esp_dma.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_eth/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir + OBJECT_FILE_DIR = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir\src\mac + TARGET_COMPILE_PDB = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir\__idf_esp_eth.pdb + TARGET_PDB = esp-idf\esp_eth\libesp_eth.pdb + +build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/mac/esp_eth_mac_esp_gpio.c.obj: C_COMPILER____idf_esp_eth_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_eth/src/mac/esp_eth_mac_esp_gpio.c || cmake_object_order_depends_target___idf_esp_eth + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir\src\mac\esp_eth_mac_esp_gpio.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_eth/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir + OBJECT_FILE_DIR = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir\src\mac + TARGET_COMPILE_PDB = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir\__idf_esp_eth.pdb + TARGET_PDB = esp-idf\esp_eth\libesp_eth.pdb + +build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/phy/esp_eth_phy_generic.c.obj: C_COMPILER____idf_esp_eth_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_eth/src/phy/esp_eth_phy_generic.c || cmake_object_order_depends_target___idf_esp_eth + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir\src\phy\esp_eth_phy_generic.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_eth/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include + OBJECT_DIR = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir + OBJECT_FILE_DIR = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir\src\phy + TARGET_COMPILE_PDB = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir\__idf_esp_eth.pdb + TARGET_PDB = esp-idf\esp_eth\libesp_eth.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_eth + + +############################################# +# Link the static library esp-idf\esp_eth\libesp_eth.a + +build 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/phy/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_eth/CMakeFiles/__idf_esp_eth.dir/src/mac/esp_eth_mac_esp.c.obj esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/mac/esp_eth_mac_esp_dma.c.obj esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/mac/esp_eth_mac_esp_gpio.c.obj esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/phy/esp_eth_phy_generic.c.obj || esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_eth\CMakeFiles\__idf_esp_eth.dir\__idf_esp_eth.pdb + TARGET_FILE = esp-idf\esp_eth\libesp_eth.a + TARGET_PDB = esp-idf\esp_eth\libesp_eth.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_eth/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_eth && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_eth/edit_cache: phony esp-idf/esp_eth/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_eth/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_eth && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_eth/rebuild_cache: phony esp-idf/esp_eth/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_eth/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_eth/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_eth/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_eth && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_eth/install: phony esp-idf/esp_eth/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_eth/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_eth/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_eth && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_eth/install/local: phony esp-idf/esp_eth/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_eth/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_eth/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_eth && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_eth/install/strip: phony esp-idf/esp_eth/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hal_ieee802154/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_ieee802154 && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hal_ieee802154/edit_cache: phony esp-idf/esp_hal_ieee802154/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hal_ieee802154/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_ieee802154 && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hal_ieee802154/rebuild_cache: phony esp-idf/esp_hal_ieee802154/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_hal_ieee802154/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_hal_ieee802154/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hal_ieee802154/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_ieee802154 && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_hal_ieee802154/install: phony esp-idf/esp_hal_ieee802154/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_hal_ieee802154/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hal_ieee802154/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_ieee802154 && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_hal_ieee802154/install/local: phony esp-idf/esp_hal_ieee802154/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_hal_ieee802154/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hal_ieee802154/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_ieee802154 && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_hal_ieee802154/install/strip: phony esp-idf/esp_hal_ieee802154/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_hal_lcd + + +############################################# +# Order-only phony target for __idf_esp_hal_lcd + +build cmake_object_order_depends_target___idf_esp_hal_lcd: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/esp_hal_lcd/CMakeFiles/__idf_esp_hal_lcd.dir/esp32/lcd_periph.c.obj: C_COMPILER____idf_esp_hal_lcd_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hal_lcd/esp32/lcd_periph.c || cmake_object_order_depends_target___idf_esp_hal_lcd + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hal_lcd\CMakeFiles\__idf_esp_hal_lcd.dir\esp32\lcd_periph.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\esp_hal_lcd\CMakeFiles\__idf_esp_hal_lcd.dir + OBJECT_FILE_DIR = esp-idf\esp_hal_lcd\CMakeFiles\__idf_esp_hal_lcd.dir\esp32 + TARGET_COMPILE_PDB = esp-idf\esp_hal_lcd\CMakeFiles\__idf_esp_hal_lcd.dir\__idf_esp_hal_lcd.pdb + TARGET_PDB = esp-idf\esp_hal_lcd\libesp_hal_lcd.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_hal_lcd + + +############################################# +# Link the static library esp-idf\esp_hal_lcd\libesp_hal_lcd.a + +build esp-idf/esp_hal_lcd/libesp_hal_lcd.a: C_STATIC_LIBRARY_LINKER____idf_esp_hal_lcd_ esp-idf/esp_hal_lcd/CMakeFiles/__idf_esp_hal_lcd.dir/esp32/lcd_periph.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_hal_lcd\CMakeFiles\__idf_esp_hal_lcd.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_hal_lcd\CMakeFiles\__idf_esp_hal_lcd.dir\__idf_esp_hal_lcd.pdb + TARGET_FILE = esp-idf\esp_hal_lcd\libesp_hal_lcd.a + TARGET_PDB = esp-idf\esp_hal_lcd\libesp_hal_lcd.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hal_lcd/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_lcd && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hal_lcd/edit_cache: phony esp-idf/esp_hal_lcd/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hal_lcd/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_lcd && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hal_lcd/rebuild_cache: phony esp-idf/esp_hal_lcd/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_hal_lcd/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_hal_lcd/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hal_lcd/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_lcd && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_hal_lcd/install: phony esp-idf/esp_hal_lcd/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_hal_lcd/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hal_lcd/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_lcd && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_hal_lcd/install/local: phony esp-idf/esp_hal_lcd/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_hal_lcd/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hal_lcd/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hal_lcd && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_hal_lcd/install/strip: phony esp-idf/esp_hal_lcd/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_hid + + +############################################# +# Order-only phony target for __idf_esp_hid + +build cmake_object_order_depends_target___idf_esp_hid: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidd.c.obj: C_COMPILER____idf_esp_hid_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hid/src/esp_hidd.c || cmake_object_order_depends_target___idf_esp_hid + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hid\CMakeFiles\__idf_esp_hid.dir\src\esp_hidd.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hid/include -IC:/esp/v6.0/esp-idf/components/esp_hid/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\esp_hid\CMakeFiles\__idf_esp_hid.dir + OBJECT_FILE_DIR = esp-idf\esp_hid\CMakeFiles\__idf_esp_hid.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_hid\CMakeFiles\__idf_esp_hid.dir\__idf_esp_hid.pdb + TARGET_PDB = esp-idf\esp_hid\libesp_hid.pdb + +build esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidh.c.obj: C_COMPILER____idf_esp_hid_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hid/src/esp_hidh.c || cmake_object_order_depends_target___idf_esp_hid + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hid\CMakeFiles\__idf_esp_hid.dir\src\esp_hidh.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hid/include -IC:/esp/v6.0/esp-idf/components/esp_hid/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\esp_hid\CMakeFiles\__idf_esp_hid.dir + OBJECT_FILE_DIR = esp-idf\esp_hid\CMakeFiles\__idf_esp_hid.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_hid\CMakeFiles\__idf_esp_hid.dir\__idf_esp_hid.pdb + TARGET_PDB = esp-idf\esp_hid\libesp_hid.pdb + +build esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hid_common.c.obj: C_COMPILER____idf_esp_hid_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_hid/src/esp_hid_common.c || cmake_object_order_depends_target___idf_esp_hid + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_hid\CMakeFiles\__idf_esp_hid.dir\src\esp_hid_common.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hid/include -IC:/esp/v6.0/esp-idf/components/esp_hid/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include + OBJECT_DIR = esp-idf\esp_hid\CMakeFiles\__idf_esp_hid.dir + OBJECT_FILE_DIR = esp-idf\esp_hid\CMakeFiles\__idf_esp_hid.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_hid\CMakeFiles\__idf_esp_hid.dir\__idf_esp_hid.pdb + TARGET_PDB = esp-idf\esp_hid\libesp_hid.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_hid + + +############################################# +# Link the static library esp-idf\esp_hid\libesp_hid.a + +build 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 + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_hid\CMakeFiles\__idf_esp_hid.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_hid\CMakeFiles\__idf_esp_hid.dir\__idf_esp_hid.pdb + TARGET_FILE = esp-idf\esp_hid\libesp_hid.a + TARGET_PDB = esp-idf\esp_hid\libesp_hid.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_hid/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hid && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_hid/edit_cache: phony esp-idf/esp_hid/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_hid/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hid && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_hid/rebuild_cache: phony esp-idf/esp_hid/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_hid/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_hid/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hid/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hid && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_hid/install: phony esp-idf/esp_hid/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_hid/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hid/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hid && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_hid/install/local: phony esp-idf/esp_hid/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_hid/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hid/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_hid && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_hid/install/strip: phony esp-idf/esp_hid/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_tcp_transport + + +############################################# +# Order-only phony target for __idf_tcp_transport + +build cmake_object_order_depends_target___idf_tcp_transport: phony || cmake_object_order_depends_target___idf_esp_http_client + +build esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj: C_COMPILER____idf_tcp_transport_unscanned_ C$:/esp/v6.0/esp-idf/components/tcp_transport/transport.c || cmake_object_order_depends_target___idf_tcp_transport + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir\transport.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/tcp_transport/include -IC:/esp/v6.0/esp-idf/components/tcp_transport/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir + OBJECT_FILE_DIR = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir + TARGET_COMPILE_PDB = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir\__idf_tcp_transport.pdb + TARGET_PDB = esp-idf\tcp_transport\libtcp_transport.pdb + +build esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj: C_COMPILER____idf_tcp_transport_unscanned_ C$:/esp/v6.0/esp-idf/components/tcp_transport/transport_ssl.c || cmake_object_order_depends_target___idf_tcp_transport + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir\transport_ssl.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/tcp_transport/include -IC:/esp/v6.0/esp-idf/components/tcp_transport/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir + OBJECT_FILE_DIR = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir + TARGET_COMPILE_PDB = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir\__idf_tcp_transport.pdb + TARGET_PDB = esp-idf\tcp_transport\libtcp_transport.pdb + +build esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_internal.c.obj: C_COMPILER____idf_tcp_transport_unscanned_ C$:/esp/v6.0/esp-idf/components/tcp_transport/transport_internal.c || cmake_object_order_depends_target___idf_tcp_transport + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir\transport_internal.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/tcp_transport/include -IC:/esp/v6.0/esp-idf/components/tcp_transport/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir + OBJECT_FILE_DIR = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir + TARGET_COMPILE_PDB = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir\__idf_tcp_transport.pdb + TARGET_PDB = esp-idf\tcp_transport\libtcp_transport.pdb + +build esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_socks_proxy.c.obj: C_COMPILER____idf_tcp_transport_unscanned_ C$:/esp/v6.0/esp-idf/components/tcp_transport/transport_socks_proxy.c || cmake_object_order_depends_target___idf_tcp_transport + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir\transport_socks_proxy.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/tcp_transport/include -IC:/esp/v6.0/esp-idf/components/tcp_transport/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir + OBJECT_FILE_DIR = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir + TARGET_COMPILE_PDB = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir\__idf_tcp_transport.pdb + TARGET_PDB = esp-idf\tcp_transport\libtcp_transport.pdb + +build esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj: C_COMPILER____idf_tcp_transport_unscanned_ C$:/esp/v6.0/esp-idf/components/tcp_transport/transport_ws.c || cmake_object_order_depends_target___idf_tcp_transport + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir\transport_ws.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/tcp_transport/include -IC:/esp/v6.0/esp-idf/components/tcp_transport/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir + OBJECT_FILE_DIR = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir + TARGET_COMPILE_PDB = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir\__idf_tcp_transport.pdb + TARGET_PDB = esp-idf\tcp_transport\libtcp_transport.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_tcp_transport + + +############################################# +# Link the static library esp-idf\tcp_transport\libtcp_transport.a + +build 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 + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\tcp_transport\CMakeFiles\__idf_tcp_transport.dir\__idf_tcp_transport.pdb + TARGET_FILE = esp-idf\tcp_transport\libtcp_transport.a + TARGET_PDB = esp-idf\tcp_transport\libtcp_transport.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/tcp_transport/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\tcp_transport && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/tcp_transport/edit_cache: phony esp-idf/tcp_transport/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/tcp_transport/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\tcp_transport && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/tcp_transport/rebuild_cache: phony esp-idf/tcp_transport/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/tcp_transport/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/tcp_transport/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/tcp_transport/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\tcp_transport && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/tcp_transport/install: phony esp-idf/tcp_transport/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/tcp_transport/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/tcp_transport/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\tcp_transport && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/tcp_transport/install/local: phony esp-idf/tcp_transport/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/tcp_transport/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/tcp_transport/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\tcp_transport && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/tcp_transport/install/strip: phony esp-idf/tcp_transport/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_http_client + + +############################################# +# Order-only phony target for __idf_esp_http_client + +build cmake_object_order_depends_target___idf_esp_http_client: phony || cmake_object_order_depends_target___idf_esp_http_server + +build esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj: C_COMPILER____idf_esp_http_client_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_http_client/esp_http_client.c || cmake_object_order_depends_target___idf_esp_http_client + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_http_client\CMakeFiles\__idf_esp_http_client.dir\esp_http_client.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_http_client/include -IC:/esp/v6.0/esp-idf/components/esp_http_client/lib/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/tcp_transport/include -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/http_parser + OBJECT_DIR = esp-idf\esp_http_client\CMakeFiles\__idf_esp_http_client.dir + OBJECT_FILE_DIR = esp-idf\esp_http_client\CMakeFiles\__idf_esp_http_client.dir + TARGET_COMPILE_PDB = esp-idf\esp_http_client\CMakeFiles\__idf_esp_http_client.dir\__idf_esp_http_client.pdb + TARGET_PDB = esp-idf\esp_http_client\libesp_http_client.pdb + +build esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj: C_COMPILER____idf_esp_http_client_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_http_client/lib/http_auth.c || cmake_object_order_depends_target___idf_esp_http_client + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_http_client\CMakeFiles\__idf_esp_http_client.dir\lib\http_auth.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_http_client/include -IC:/esp/v6.0/esp-idf/components/esp_http_client/lib/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/tcp_transport/include -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/http_parser + OBJECT_DIR = esp-idf\esp_http_client\CMakeFiles\__idf_esp_http_client.dir + OBJECT_FILE_DIR = esp-idf\esp_http_client\CMakeFiles\__idf_esp_http_client.dir\lib + TARGET_COMPILE_PDB = esp-idf\esp_http_client\CMakeFiles\__idf_esp_http_client.dir\__idf_esp_http_client.pdb + TARGET_PDB = esp-idf\esp_http_client\libesp_http_client.pdb + +build esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj: C_COMPILER____idf_esp_http_client_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_http_client/lib/http_header.c || cmake_object_order_depends_target___idf_esp_http_client + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_http_client\CMakeFiles\__idf_esp_http_client.dir\lib\http_header.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_http_client/include -IC:/esp/v6.0/esp-idf/components/esp_http_client/lib/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/tcp_transport/include -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/http_parser + OBJECT_DIR = esp-idf\esp_http_client\CMakeFiles\__idf_esp_http_client.dir + OBJECT_FILE_DIR = esp-idf\esp_http_client\CMakeFiles\__idf_esp_http_client.dir\lib + TARGET_COMPILE_PDB = esp-idf\esp_http_client\CMakeFiles\__idf_esp_http_client.dir\__idf_esp_http_client.pdb + TARGET_PDB = esp-idf\esp_http_client\libesp_http_client.pdb + +build esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj: C_COMPILER____idf_esp_http_client_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_http_client/lib/http_utils.c || cmake_object_order_depends_target___idf_esp_http_client + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_http_client\CMakeFiles\__idf_esp_http_client.dir\lib\http_utils.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_http_client/include -IC:/esp/v6.0/esp-idf/components/esp_http_client/lib/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/tcp_transport/include -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/http_parser + OBJECT_DIR = esp-idf\esp_http_client\CMakeFiles\__idf_esp_http_client.dir + OBJECT_FILE_DIR = esp-idf\esp_http_client\CMakeFiles\__idf_esp_http_client.dir\lib + TARGET_COMPILE_PDB = esp-idf\esp_http_client\CMakeFiles\__idf_esp_http_client.dir\__idf_esp_http_client.pdb + TARGET_PDB = esp-idf\esp_http_client\libesp_http_client.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_http_client + + +############################################# +# Link the static library esp-idf\esp_http_client\libesp_http_client.a + +build 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 + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_http_client\CMakeFiles\__idf_esp_http_client.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_http_client\CMakeFiles\__idf_esp_http_client.dir\__idf_esp_http_client.pdb + TARGET_FILE = esp-idf\esp_http_client\libesp_http_client.a + TARGET_PDB = esp-idf\esp_http_client\libesp_http_client.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_http_client/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_http_client && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_http_client/edit_cache: phony esp-idf/esp_http_client/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_http_client/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_http_client && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_http_client/rebuild_cache: phony esp-idf/esp_http_client/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_http_client/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_http_client/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_http_client/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_http_client && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_http_client/install: phony esp-idf/esp_http_client/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_http_client/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_http_client/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_http_client && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_http_client/install/local: phony esp-idf/esp_http_client/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_http_client/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_http_client/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_http_client && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_http_client/install/strip: phony esp-idf/esp_http_client/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_http_server + + +############################################# +# Order-only phony target for __idf_esp_http_server + +build cmake_object_order_depends_target___idf_esp_http_server: phony || cmake_object_order_depends_target___idf_esp_https_ota + +build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj: C_COMPILER____idf_esp_http_server_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_http_server/src/httpd_main.c || cmake_object_order_depends_target___idf_esp_http_server + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir\src\httpd_main.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/src/util -IC:/esp/v6.0/esp-idf/components/esp_http_server/src/port/esp32 -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir + OBJECT_FILE_DIR = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir\__idf_esp_http_server.pdb + TARGET_PDB = esp-idf\esp_http_server\libesp_http_server.pdb + +build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj: C_COMPILER____idf_esp_http_server_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_http_server/src/httpd_parse.c || cmake_object_order_depends_target___idf_esp_http_server + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir\src\httpd_parse.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/src/util -IC:/esp/v6.0/esp-idf/components/esp_http_server/src/port/esp32 -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir + OBJECT_FILE_DIR = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir\__idf_esp_http_server.pdb + TARGET_PDB = esp-idf\esp_http_server\libesp_http_server.pdb + +build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj: C_COMPILER____idf_esp_http_server_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_http_server/src/httpd_sess.c || cmake_object_order_depends_target___idf_esp_http_server + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir\src\httpd_sess.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/src/util -IC:/esp/v6.0/esp-idf/components/esp_http_server/src/port/esp32 -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir + OBJECT_FILE_DIR = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir\__idf_esp_http_server.pdb + TARGET_PDB = esp-idf\esp_http_server\libesp_http_server.pdb + +build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj: C_COMPILER____idf_esp_http_server_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_http_server/src/httpd_txrx.c || cmake_object_order_depends_target___idf_esp_http_server + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir\src\httpd_txrx.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/src/util -IC:/esp/v6.0/esp-idf/components/esp_http_server/src/port/esp32 -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir + OBJECT_FILE_DIR = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir\__idf_esp_http_server.pdb + TARGET_PDB = esp-idf\esp_http_server\libesp_http_server.pdb + +build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj: C_COMPILER____idf_esp_http_server_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_http_server/src/httpd_uri.c || cmake_object_order_depends_target___idf_esp_http_server + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir\src\httpd_uri.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/src/util -IC:/esp/v6.0/esp-idf/components/esp_http_server/src/port/esp32 -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir + OBJECT_FILE_DIR = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir\__idf_esp_http_server.pdb + TARGET_PDB = esp-idf\esp_http_server\libesp_http_server.pdb + +build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws.c.obj: C_COMPILER____idf_esp_http_server_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_http_server/src/httpd_ws.c || cmake_object_order_depends_target___idf_esp_http_server + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir\src\httpd_ws.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/src/util -IC:/esp/v6.0/esp-idf/components/esp_http_server/src/port/esp32 -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir + OBJECT_FILE_DIR = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir\__idf_esp_http_server.pdb + TARGET_PDB = esp-idf\esp_http_server\libesp_http_server.pdb + +build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj: C_COMPILER____idf_esp_http_server_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_http_server/src/util/ctrl_sock.c || cmake_object_order_depends_target___idf_esp_http_server + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir\src\util\ctrl_sock.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/src/util -IC:/esp/v6.0/esp-idf/components/esp_http_server/src/port/esp32 -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include + OBJECT_DIR = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir + OBJECT_FILE_DIR = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir\src\util + TARGET_COMPILE_PDB = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir\__idf_esp_http_server.pdb + TARGET_PDB = esp-idf\esp_http_server\libesp_http_server.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_http_server + + +############################################# +# Link the static library esp-idf\esp_http_server\libesp_http_server.a + +build 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 + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_http_server\CMakeFiles\__idf_esp_http_server.dir\__idf_esp_http_server.pdb + TARGET_FILE = esp-idf\esp_http_server\libesp_http_server.a + TARGET_PDB = esp-idf\esp_http_server\libesp_http_server.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_http_server/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_http_server && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_http_server/edit_cache: phony esp-idf/esp_http_server/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_http_server/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_http_server && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_http_server/rebuild_cache: phony esp-idf/esp_http_server/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_http_server/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_http_server/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_http_server/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_http_server && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_http_server/install: phony esp-idf/esp_http_server/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_http_server/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_http_server/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_http_server && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_http_server/install/local: phony esp-idf/esp_http_server/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_http_server/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_http_server/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_http_server && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_http_server/install/strip: phony esp-idf/esp_http_server/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_https_ota + + +############################################# +# Order-only phony target for __idf_esp_https_ota + +build cmake_object_order_depends_target___idf_esp_https_ota: phony || esp-idf/esp_system/memory_ld_in_preprocess esp-idf/esp_system/sections_ld_in_preprocess esp-idf/mbedtls/custom_bundle + +build esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj: C_COMPILER____idf_esp_https_ota_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_https_ota/src/esp_https_ota.c || cmake_object_order_depends_target___idf_esp_https_ota + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_https_ota\CMakeFiles\__idf_esp_https_ota.dir\src\esp_https_ota.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_https_ota/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_http_client/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/app_update/include + OBJECT_DIR = esp-idf\esp_https_ota\CMakeFiles\__idf_esp_https_ota.dir + OBJECT_FILE_DIR = esp-idf\esp_https_ota\CMakeFiles\__idf_esp_https_ota.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_https_ota\CMakeFiles\__idf_esp_https_ota.dir\__idf_esp_https_ota.pdb + TARGET_PDB = esp-idf\esp_https_ota\libesp_https_ota.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_https_ota + + +############################################# +# Link the static library esp-idf\esp_https_ota\libesp_https_ota.a + +build 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/esp_system/memory_ld_in_preprocess esp-idf/esp_system/sections_ld_in_preprocess esp-idf/mbedtls/custom_bundle + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_https_ota\CMakeFiles\__idf_esp_https_ota.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_https_ota\CMakeFiles\__idf_esp_https_ota.dir\__idf_esp_https_ota.pdb + TARGET_FILE = esp-idf\esp_https_ota\libesp_https_ota.a + TARGET_PDB = esp-idf\esp_https_ota\libesp_https_ota.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_https_ota/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_https_ota && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_https_ota/edit_cache: phony esp-idf/esp_https_ota/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_https_ota/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_https_ota && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_https_ota/rebuild_cache: phony esp-idf/esp_https_ota/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_https_ota/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_https_ota/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_https_ota/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_https_ota && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_https_ota/install: phony esp-idf/esp_https_ota/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_https_ota/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_https_ota/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_https_ota && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_https_ota/install/local: phony esp-idf/esp_https_ota/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_https_ota/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_https_ota/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_https_ota && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_https_ota/install/strip: phony esp-idf/esp_https_ota/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_https_server + + +############################################# +# Order-only phony target for __idf_esp_https_server + +build cmake_object_order_depends_target___idf_esp_https_server: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir/src/https_server.c.obj: C_COMPILER____idf_esp_https_server_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_https_server/src/https_server.c || cmake_object_order_depends_target___idf_esp_https_server + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_https_server\CMakeFiles\__idf_esp_https_server.dir\src\https_server.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_https_server/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m + OBJECT_DIR = esp-idf\esp_https_server\CMakeFiles\__idf_esp_https_server.dir + OBJECT_FILE_DIR = esp-idf\esp_https_server\CMakeFiles\__idf_esp_https_server.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_https_server\CMakeFiles\__idf_esp_https_server.dir\__idf_esp_https_server.pdb + TARGET_PDB = esp-idf\esp_https_server\libesp_https_server.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_https_server + + +############################################# +# Link the static library esp-idf\esp_https_server\libesp_https_server.a + +build esp-idf/esp_https_server/libesp_https_server.a: C_STATIC_LIBRARY_LINKER____idf_esp_https_server_ esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir/src/https_server.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_https_server\CMakeFiles\__idf_esp_https_server.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_https_server\CMakeFiles\__idf_esp_https_server.dir\__idf_esp_https_server.pdb + TARGET_FILE = esp-idf\esp_https_server\libesp_https_server.a + TARGET_PDB = esp-idf\esp_https_server\libesp_https_server.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_https_server/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_https_server && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_https_server/edit_cache: phony esp-idf/esp_https_server/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_https_server/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_https_server && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_https_server/rebuild_cache: phony esp-idf/esp_https_server/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_https_server/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_https_server/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_https_server/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_https_server && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_https_server/install: phony esp-idf/esp_https_server/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_https_server/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_https_server/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_https_server && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_https_server/install/local: phony esp-idf/esp_https_server/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_https_server/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_https_server/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_https_server && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_https_server/install/strip: phony esp-idf/esp_https_server/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_lcd + + +############################################# +# Order-only phony target for __idf_esp_lcd + +build cmake_object_order_depends_target___idf_esp_lcd: phony || cmake_object_order_depends_target___idf_esp_driver_i2c cmake_object_order_depends_target___idf_esp_driver_spi cmake_object_order_depends_target___idf_esp_hal_lcd cmake_object_order_depends_target___idf_xtensa + +build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_common.c.obj: C_COMPILER____idf_esp_lcd_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_lcd/src/esp_lcd_common.c || cmake_object_order_depends_target___idf_esp_lcd + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\src\esp_lcd_common.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_lcd/interface -IC:/esp/v6.0/esp-idf/components/esp_lcd/priv_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_psram/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include + OBJECT_DIR = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir + OBJECT_FILE_DIR = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\__idf_esp_lcd.pdb + TARGET_PDB = esp-idf\esp_lcd\libesp_lcd.pdb + +build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io.c.obj: C_COMPILER____idf_esp_lcd_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_lcd/src/esp_lcd_panel_io.c || cmake_object_order_depends_target___idf_esp_lcd + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\src\esp_lcd_panel_io.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_lcd/interface -IC:/esp/v6.0/esp-idf/components/esp_lcd/priv_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_psram/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include + OBJECT_DIR = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir + OBJECT_FILE_DIR = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\__idf_esp_lcd.pdb + TARGET_PDB = esp-idf\esp_lcd\libesp_lcd.pdb + +build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ssd1306.c.obj: C_COMPILER____idf_esp_lcd_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_lcd/src/esp_lcd_panel_ssd1306.c || cmake_object_order_depends_target___idf_esp_lcd + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\src\esp_lcd_panel_ssd1306.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_lcd/interface -IC:/esp/v6.0/esp-idf/components/esp_lcd/priv_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_psram/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include + OBJECT_DIR = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir + OBJECT_FILE_DIR = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\__idf_esp_lcd.pdb + TARGET_PDB = esp-idf\esp_lcd\libesp_lcd.pdb + +build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_st7789.c.obj: C_COMPILER____idf_esp_lcd_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_lcd/src/esp_lcd_panel_st7789.c || cmake_object_order_depends_target___idf_esp_lcd + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\src\esp_lcd_panel_st7789.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_lcd/interface -IC:/esp/v6.0/esp-idf/components/esp_lcd/priv_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_psram/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include + OBJECT_DIR = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir + OBJECT_FILE_DIR = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\__idf_esp_lcd.pdb + TARGET_PDB = esp-idf\esp_lcd\libesp_lcd.pdb + +build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ops.c.obj: C_COMPILER____idf_esp_lcd_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_lcd/src/esp_lcd_panel_ops.c || cmake_object_order_depends_target___idf_esp_lcd + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\src\esp_lcd_panel_ops.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_lcd/interface -IC:/esp/v6.0/esp-idf/components/esp_lcd/priv_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_psram/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include + OBJECT_DIR = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir + OBJECT_FILE_DIR = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\__idf_esp_lcd.pdb + TARGET_PDB = esp-idf\esp_lcd\libesp_lcd.pdb + +build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c/esp_lcd_panel_io_i2c.c.obj: C_COMPILER____idf_esp_lcd_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_lcd/i2c/esp_lcd_panel_io_i2c.c || cmake_object_order_depends_target___idf_esp_lcd + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\i2c\esp_lcd_panel_io_i2c.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_lcd/interface -IC:/esp/v6.0/esp-idf/components/esp_lcd/priv_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_psram/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include + OBJECT_DIR = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir + OBJECT_FILE_DIR = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\i2c + TARGET_COMPILE_PDB = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\__idf_esp_lcd.pdb + TARGET_PDB = esp-idf\esp_lcd\libesp_lcd.pdb + +build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/spi/esp_lcd_panel_io_spi.c.obj: C_COMPILER____idf_esp_lcd_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_lcd/spi/esp_lcd_panel_io_spi.c || cmake_object_order_depends_target___idf_esp_lcd + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\spi\esp_lcd_panel_io_spi.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_lcd/interface -IC:/esp/v6.0/esp-idf/components/esp_lcd/priv_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_psram/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include + OBJECT_DIR = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir + OBJECT_FILE_DIR = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\spi + TARGET_COMPILE_PDB = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\__idf_esp_lcd.pdb + TARGET_PDB = esp-idf\esp_lcd\libesp_lcd.pdb + +build esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i80/esp_lcd_panel_io_i2s.c.obj: C_COMPILER____idf_esp_lcd_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_lcd/i80/esp_lcd_panel_io_i2s.c || cmake_object_order_depends_target___idf_esp_lcd + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\i80\esp_lcd_panel_io_i2s.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_lcd/interface -IC:/esp/v6.0/esp-idf/components/esp_lcd/priv_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_psram/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include + OBJECT_DIR = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir + OBJECT_FILE_DIR = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\i80 + TARGET_COMPILE_PDB = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\__idf_esp_lcd.pdb + TARGET_PDB = esp-idf\esp_lcd\libesp_lcd.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_lcd + + +############################################# +# Link the static library esp-idf\esp_lcd\libesp_lcd.a + +build 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_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/i2c/esp_lcd_panel_io_i2c.c.obj esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/spi/esp_lcd_panel_io_spi.c.obj esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i80/esp_lcd_panel_io_i2s.c.obj || esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_hal_lcd/libesp_hal_lcd.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_lcd\CMakeFiles\__idf_esp_lcd.dir\__idf_esp_lcd.pdb + TARGET_FILE = esp-idf\esp_lcd\libesp_lcd.a + TARGET_PDB = esp-idf\esp_lcd\libesp_lcd.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_lcd/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_lcd && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_lcd/edit_cache: phony esp-idf/esp_lcd/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_lcd/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_lcd && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_lcd/rebuild_cache: phony esp-idf/esp_lcd/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_lcd/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_lcd/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_lcd/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_lcd && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_lcd/install: phony esp-idf/esp_lcd/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_lcd/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_lcd/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_lcd && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_lcd/install/local: phony esp-idf/esp_lcd/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_lcd/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_lcd/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_lcd && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_lcd/install/strip: phony esp-idf/esp_lcd/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_protobuf-c + + +############################################# +# Order-only phony target for __idf_protobuf-c + +build cmake_object_order_depends_target___idf_protobuf-c: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj: C_COMPILER____idf_protobuf-c_unscanned_ C$:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c/protobuf-c/protobuf-c.c || cmake_object_order_depends_target___idf_protobuf-c + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\protobuf-c\CMakeFiles\__idf_protobuf-c.dir\protobuf-c\protobuf-c\protobuf-c.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\protobuf-c\CMakeFiles\__idf_protobuf-c.dir + OBJECT_FILE_DIR = esp-idf\protobuf-c\CMakeFiles\__idf_protobuf-c.dir\protobuf-c\protobuf-c + TARGET_COMPILE_PDB = esp-idf\protobuf-c\CMakeFiles\__idf_protobuf-c.dir\__idf_protobuf-c.pdb + TARGET_PDB = esp-idf\protobuf-c\libprotobuf-c.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_protobuf-c + + +############################################# +# Link the static library esp-idf\protobuf-c\libprotobuf-c.a + +build 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 + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\protobuf-c\CMakeFiles\__idf_protobuf-c.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\protobuf-c\CMakeFiles\__idf_protobuf-c.dir\__idf_protobuf-c.pdb + TARGET_FILE = esp-idf\protobuf-c\libprotobuf-c.a + TARGET_PDB = esp-idf\protobuf-c\libprotobuf-c.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/protobuf-c/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\protobuf-c && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/protobuf-c/edit_cache: phony esp-idf/protobuf-c/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/protobuf-c/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\protobuf-c && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/protobuf-c/rebuild_cache: phony esp-idf/protobuf-c/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/protobuf-c/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/protobuf-c/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/protobuf-c/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\protobuf-c && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/protobuf-c/install: phony esp-idf/protobuf-c/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/protobuf-c/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/protobuf-c/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\protobuf-c && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/protobuf-c/install/local: phony esp-idf/protobuf-c/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/protobuf-c/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/protobuf-c/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\protobuf-c && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/protobuf-c/install/strip: phony esp-idf/protobuf-c/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_protocomm + + +############################################# +# Order-only phony target for __idf_protocomm + +build 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 + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj: C_COMPILER____idf_protocomm_unscanned_ C$:/esp/v6.0/esp-idf/components/protocomm/src/common/protocomm.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\common\protocomm.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/protocomm/include/common -IC:/esp/v6.0/esp-idf/components/protocomm/include/security -IC:/esp/v6.0/esp-idf/components/protocomm/include/transports -IC:/esp/v6.0/esp-idf/components/protocomm/include/crypto/srp6a -IC:/esp/v6.0/esp-idf/components/protocomm/proto-c -IC:/esp/v6.0/esp-idf/components/protocomm/src/common -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\common + TARGET_COMPILE_PDB = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\__idf_protocomm.pdb + TARGET_PDB = esp-idf\protocomm\libprotocomm.pdb + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj: C_COMPILER____idf_protocomm_unscanned_ C$:/esp/v6.0/esp-idf/components/protocomm/proto-c/constants.pb-c.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\proto-c\constants.pb-c.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/protocomm/include/common -IC:/esp/v6.0/esp-idf/components/protocomm/include/security -IC:/esp/v6.0/esp-idf/components/protocomm/include/transports -IC:/esp/v6.0/esp-idf/components/protocomm/include/crypto/srp6a -IC:/esp/v6.0/esp-idf/components/protocomm/proto-c -IC:/esp/v6.0/esp-idf/components/protocomm/src/common -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\proto-c + TARGET_COMPILE_PDB = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\__idf_protocomm.pdb + TARGET_PDB = esp-idf\protocomm\libprotocomm.pdb + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj: C_COMPILER____idf_protocomm_unscanned_ C$:/esp/v6.0/esp-idf/components/protocomm/proto-c/sec0.pb-c.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\proto-c\sec0.pb-c.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/protocomm/include/common -IC:/esp/v6.0/esp-idf/components/protocomm/include/security -IC:/esp/v6.0/esp-idf/components/protocomm/include/transports -IC:/esp/v6.0/esp-idf/components/protocomm/include/crypto/srp6a -IC:/esp/v6.0/esp-idf/components/protocomm/proto-c -IC:/esp/v6.0/esp-idf/components/protocomm/src/common -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\proto-c + TARGET_COMPILE_PDB = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\__idf_protocomm.pdb + TARGET_PDB = esp-idf\protocomm\libprotocomm.pdb + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj: C_COMPILER____idf_protocomm_unscanned_ C$:/esp/v6.0/esp-idf/components/protocomm/proto-c/sec1.pb-c.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\proto-c\sec1.pb-c.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/protocomm/include/common -IC:/esp/v6.0/esp-idf/components/protocomm/include/security -IC:/esp/v6.0/esp-idf/components/protocomm/include/transports -IC:/esp/v6.0/esp-idf/components/protocomm/include/crypto/srp6a -IC:/esp/v6.0/esp-idf/components/protocomm/proto-c -IC:/esp/v6.0/esp-idf/components/protocomm/src/common -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\proto-c + TARGET_COMPILE_PDB = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\__idf_protocomm.pdb + TARGET_PDB = esp-idf\protocomm\libprotocomm.pdb + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec2.pb-c.c.obj: C_COMPILER____idf_protocomm_unscanned_ C$:/esp/v6.0/esp-idf/components/protocomm/proto-c/sec2.pb-c.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\proto-c\sec2.pb-c.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/protocomm/include/common -IC:/esp/v6.0/esp-idf/components/protocomm/include/security -IC:/esp/v6.0/esp-idf/components/protocomm/include/transports -IC:/esp/v6.0/esp-idf/components/protocomm/include/crypto/srp6a -IC:/esp/v6.0/esp-idf/components/protocomm/proto-c -IC:/esp/v6.0/esp-idf/components/protocomm/src/common -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\proto-c + TARGET_COMPILE_PDB = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\__idf_protocomm.pdb + TARGET_PDB = esp-idf\protocomm\libprotocomm.pdb + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj: C_COMPILER____idf_protocomm_unscanned_ C$:/esp/v6.0/esp-idf/components/protocomm/proto-c/session.pb-c.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\proto-c\session.pb-c.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/protocomm/include/common -IC:/esp/v6.0/esp-idf/components/protocomm/include/security -IC:/esp/v6.0/esp-idf/components/protocomm/include/transports -IC:/esp/v6.0/esp-idf/components/protocomm/include/crypto/srp6a -IC:/esp/v6.0/esp-idf/components/protocomm/proto-c -IC:/esp/v6.0/esp-idf/components/protocomm/src/common -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\proto-c + TARGET_COMPILE_PDB = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\__idf_protocomm.pdb + TARGET_PDB = esp-idf\protocomm\libprotocomm.pdb + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj: C_COMPILER____idf_protocomm_unscanned_ C$:/esp/v6.0/esp-idf/components/protocomm/src/transports/protocomm_console.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\transports\protocomm_console.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/protocomm/include/common -IC:/esp/v6.0/esp-idf/components/protocomm/include/security -IC:/esp/v6.0/esp-idf/components/protocomm/include/transports -IC:/esp/v6.0/esp-idf/components/protocomm/include/crypto/srp6a -IC:/esp/v6.0/esp-idf/components/protocomm/proto-c -IC:/esp/v6.0/esp-idf/components/protocomm/src/common -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\transports + TARGET_COMPILE_PDB = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\__idf_protocomm.pdb + TARGET_PDB = esp-idf\protocomm\libprotocomm.pdb + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj: C_COMPILER____idf_protocomm_unscanned_ C$:/esp/v6.0/esp-idf/components/protocomm/src/transports/protocomm_httpd.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\transports\protocomm_httpd.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/protocomm/include/common -IC:/esp/v6.0/esp-idf/components/protocomm/include/security -IC:/esp/v6.0/esp-idf/components/protocomm/include/transports -IC:/esp/v6.0/esp-idf/components/protocomm/include/crypto/srp6a -IC:/esp/v6.0/esp-idf/components/protocomm/proto-c -IC:/esp/v6.0/esp-idf/components/protocomm/src/common -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\transports + TARGET_COMPILE_PDB = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\__idf_protocomm.pdb + TARGET_PDB = esp-idf\protocomm\libprotocomm.pdb + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security2.c.obj: C_COMPILER____idf_protocomm_unscanned_ C$:/esp/v6.0/esp-idf/components/protocomm/src/security/security2.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\security\security2.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/protocomm/include/common -IC:/esp/v6.0/esp-idf/components/protocomm/include/security -IC:/esp/v6.0/esp-idf/components/protocomm/include/transports -IC:/esp/v6.0/esp-idf/components/protocomm/include/crypto/srp6a -IC:/esp/v6.0/esp-idf/components/protocomm/proto-c -IC:/esp/v6.0/esp-idf/components/protocomm/src/common -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\security + TARGET_COMPILE_PDB = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\__idf_protocomm.pdb + TARGET_PDB = esp-idf\protocomm\libprotocomm.pdb + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp.c.obj: C_COMPILER____idf_protocomm_unscanned_ C$:/esp/v6.0/esp-idf/components/protocomm/src/crypto/srp6a/esp_srp.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\crypto\srp6a\esp_srp.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/protocomm/include/common -IC:/esp/v6.0/esp-idf/components/protocomm/include/security -IC:/esp/v6.0/esp-idf/components/protocomm/include/transports -IC:/esp/v6.0/esp-idf/components/protocomm/include/crypto/srp6a -IC:/esp/v6.0/esp-idf/components/protocomm/proto-c -IC:/esp/v6.0/esp-idf/components/protocomm/src/common -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\crypto\srp6a + TARGET_COMPILE_PDB = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\__idf_protocomm.pdb + TARGET_PDB = esp-idf\protocomm\libprotocomm.pdb + +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp_mpi.c.obj: C_COMPILER____idf_protocomm_unscanned_ C$:/esp/v6.0/esp-idf/components/protocomm/src/crypto/srp6a/esp_srp_mpi.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\crypto\srp6a\esp_srp_mpi.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/protocomm/include/common -IC:/esp/v6.0/esp-idf/components/protocomm/include/security -IC:/esp/v6.0/esp-idf/components/protocomm/include/transports -IC:/esp/v6.0/esp-idf/components/protocomm/include/crypto/srp6a -IC:/esp/v6.0/esp-idf/components/protocomm/proto-c -IC:/esp/v6.0/esp-idf/components/protocomm/src/common -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\src\crypto\srp6a + TARGET_COMPILE_PDB = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\__idf_protocomm.pdb + TARGET_PDB = esp-idf\protocomm\libprotocomm.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_protocomm + + +############################################# +# Link the static library esp-idf\protocomm\libprotocomm.a + +build 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/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 + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\protocomm\CMakeFiles\__idf_protocomm.dir\__idf_protocomm.pdb + TARGET_FILE = esp-idf\protocomm\libprotocomm.a + TARGET_PDB = esp-idf\protocomm\libprotocomm.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/protocomm/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\protocomm && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/protocomm/edit_cache: phony esp-idf/protocomm/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/protocomm/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\protocomm && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/protocomm/rebuild_cache: phony esp-idf/protocomm/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/protocomm/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/protocomm/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/protocomm/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\protocomm && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/protocomm/install: phony esp-idf/protocomm/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/protocomm/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/protocomm/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\protocomm && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/protocomm/install/local: phony esp-idf/protocomm/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/protocomm/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/protocomm/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\protocomm && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/protocomm/install/strip: phony esp-idf/protocomm/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_local_ctrl + + +############################################# +# Order-only phony target for __idf_esp_local_ctrl + +build cmake_object_order_depends_target___idf_esp_local_ctrl: phony || cmake_object_order_depends_target___idf_console cmake_object_order_depends_target___idf_esp_https_server cmake_object_order_depends_target___idf_protobuf-c cmake_object_order_depends_target___idf_protocomm cmake_object_order_depends_target___idf_xtensa + +build esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj: C_COMPILER____idf_esp_local_ctrl_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_local_ctrl/src/esp_local_ctrl.c || cmake_object_order_depends_target___idf_esp_local_ctrl + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_local_ctrl\CMakeFiles\__idf_esp_local_ctrl.dir\src\esp_local_ctrl.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_local_ctrl/include -IC:/esp/v6.0/esp-idf/components/esp_local_ctrl/proto-c -IC:/esp/v6.0/esp-idf/components/esp_local_ctrl/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/protocomm/include/common -IC:/esp/v6.0/esp-idf/components/protocomm/include/security -IC:/esp/v6.0/esp-idf/components/protocomm/include/transports -IC:/esp/v6.0/esp-idf/components/protocomm/include/crypto/srp6a -IC:/esp/v6.0/esp-idf/components/protocomm/proto-c -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_https_server/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c + OBJECT_DIR = esp-idf\esp_local_ctrl\CMakeFiles\__idf_esp_local_ctrl.dir + OBJECT_FILE_DIR = esp-idf\esp_local_ctrl\CMakeFiles\__idf_esp_local_ctrl.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_local_ctrl\CMakeFiles\__idf_esp_local_ctrl.dir\__idf_esp_local_ctrl.pdb + TARGET_PDB = esp-idf\esp_local_ctrl\libesp_local_ctrl.pdb + +build esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj: C_COMPILER____idf_esp_local_ctrl_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_local_ctrl/src/esp_local_ctrl_handler.c || cmake_object_order_depends_target___idf_esp_local_ctrl + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_local_ctrl\CMakeFiles\__idf_esp_local_ctrl.dir\src\esp_local_ctrl_handler.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_local_ctrl/include -IC:/esp/v6.0/esp-idf/components/esp_local_ctrl/proto-c -IC:/esp/v6.0/esp-idf/components/esp_local_ctrl/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/protocomm/include/common -IC:/esp/v6.0/esp-idf/components/protocomm/include/security -IC:/esp/v6.0/esp-idf/components/protocomm/include/transports -IC:/esp/v6.0/esp-idf/components/protocomm/include/crypto/srp6a -IC:/esp/v6.0/esp-idf/components/protocomm/proto-c -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_https_server/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c + OBJECT_DIR = esp-idf\esp_local_ctrl\CMakeFiles\__idf_esp_local_ctrl.dir + OBJECT_FILE_DIR = esp-idf\esp_local_ctrl\CMakeFiles\__idf_esp_local_ctrl.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_local_ctrl\CMakeFiles\__idf_esp_local_ctrl.dir\__idf_esp_local_ctrl.pdb + TARGET_PDB = esp-idf\esp_local_ctrl\libesp_local_ctrl.pdb + +build 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_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_local_ctrl/proto-c/esp_local_ctrl.pb-c.c || cmake_object_order_depends_target___idf_esp_local_ctrl + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_local_ctrl\CMakeFiles\__idf_esp_local_ctrl.dir\proto-c\esp_local_ctrl.pb-c.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_local_ctrl/include -IC:/esp/v6.0/esp-idf/components/esp_local_ctrl/proto-c -IC:/esp/v6.0/esp-idf/components/esp_local_ctrl/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/protocomm/include/common -IC:/esp/v6.0/esp-idf/components/protocomm/include/security -IC:/esp/v6.0/esp-idf/components/protocomm/include/transports -IC:/esp/v6.0/esp-idf/components/protocomm/include/crypto/srp6a -IC:/esp/v6.0/esp-idf/components/protocomm/proto-c -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_https_server/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c + OBJECT_DIR = esp-idf\esp_local_ctrl\CMakeFiles\__idf_esp_local_ctrl.dir + OBJECT_FILE_DIR = esp-idf\esp_local_ctrl\CMakeFiles\__idf_esp_local_ctrl.dir\proto-c + TARGET_COMPILE_PDB = esp-idf\esp_local_ctrl\CMakeFiles\__idf_esp_local_ctrl.dir\__idf_esp_local_ctrl.pdb + TARGET_PDB = esp-idf\esp_local_ctrl\libesp_local_ctrl.pdb + +build 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_unscanned_ C$:/esp/v6.0/esp-idf/components/esp_local_ctrl/src/esp_local_ctrl_transport_httpd.c || cmake_object_order_depends_target___idf_esp_local_ctrl + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\esp_local_ctrl\CMakeFiles\__idf_esp_local_ctrl.dir\src\esp_local_ctrl_transport_httpd.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_local_ctrl/include -IC:/esp/v6.0/esp-idf/components/esp_local_ctrl/proto-c -IC:/esp/v6.0/esp-idf/components/esp_local_ctrl/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/protocomm/include/common -IC:/esp/v6.0/esp-idf/components/protocomm/include/security -IC:/esp/v6.0/esp-idf/components/protocomm/include/transports -IC:/esp/v6.0/esp-idf/components/protocomm/include/crypto/srp6a -IC:/esp/v6.0/esp-idf/components/protocomm/proto-c -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_https_server/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c + OBJECT_DIR = esp-idf\esp_local_ctrl\CMakeFiles\__idf_esp_local_ctrl.dir + OBJECT_FILE_DIR = esp-idf\esp_local_ctrl\CMakeFiles\__idf_esp_local_ctrl.dir\src + TARGET_COMPILE_PDB = esp-idf\esp_local_ctrl\CMakeFiles\__idf_esp_local_ctrl.dir\__idf_esp_local_ctrl.pdb + TARGET_PDB = esp-idf\esp_local_ctrl\libesp_local_ctrl.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_local_ctrl + + +############################################# +# Link the static library esp-idf\esp_local_ctrl\libesp_local_ctrl.a + +build 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/esp_https_server/libesp_https_server.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\esp_local_ctrl\CMakeFiles\__idf_esp_local_ctrl.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\esp_local_ctrl\CMakeFiles\__idf_esp_local_ctrl.dir\__idf_esp_local_ctrl.pdb + TARGET_FILE = esp-idf\esp_local_ctrl\libesp_local_ctrl.a + TARGET_PDB = esp-idf\esp_local_ctrl\libesp_local_ctrl.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_local_ctrl/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_local_ctrl && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_local_ctrl/edit_cache: phony esp-idf/esp_local_ctrl/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_local_ctrl/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_local_ctrl && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_local_ctrl/rebuild_cache: phony esp-idf/esp_local_ctrl/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_local_ctrl/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_local_ctrl/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_local_ctrl/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_local_ctrl && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_local_ctrl/install: phony esp-idf/esp_local_ctrl/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_local_ctrl/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_local_ctrl/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_local_ctrl && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_local_ctrl/install/local: phony esp-idf/esp_local_ctrl/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_local_ctrl/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_local_ctrl/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_local_ctrl && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_local_ctrl/install/strip: phony esp-idf/esp_local_ctrl/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_trace/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_trace && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/esp_trace/edit_cache: phony esp-idf/esp_trace/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_trace/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_trace && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/esp_trace/rebuild_cache: phony esp-idf/esp_trace/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_trace/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/esp_trace/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_trace/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_trace && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/esp_trace/install: phony esp-idf/esp_trace/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/esp_trace/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_trace/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_trace && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/esp_trace/install/local: phony esp-idf/esp_trace/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_trace/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_trace/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_trace && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/esp_trace/install/strip: phony esp-idf/esp_trace/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/espcoredump/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\espcoredump && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/espcoredump/edit_cache: phony esp-idf/espcoredump/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/espcoredump/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\espcoredump && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/espcoredump/rebuild_cache: phony esp-idf/espcoredump/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/espcoredump/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/espcoredump/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/espcoredump/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\espcoredump && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/espcoredump/install: phony esp-idf/espcoredump/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/espcoredump/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/espcoredump/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\espcoredump && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/espcoredump/install/local: phony esp-idf/espcoredump/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/espcoredump/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/espcoredump/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\espcoredump && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/espcoredump/install/strip: phony esp-idf/espcoredump/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_wear_levelling + + +############################################# +# Order-only phony target for __idf_wear_levelling + +build cmake_object_order_depends_target___idf_wear_levelling: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj: CXX_COMPILER____idf_wear_levelling_unscanned_ C$:/esp/v6.0/esp-idf/components/wear_levelling/Partition.cpp || cmake_object_order_depends_target___idf_wear_levelling + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir\Partition.cpp.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wear_levelling/include -IC:/esp/v6.0/esp-idf/components/wear_levelling/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include + OBJECT_DIR = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir + OBJECT_FILE_DIR = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir + TARGET_COMPILE_PDB = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir\__idf_wear_levelling.pdb + TARGET_PDB = esp-idf\wear_levelling\libwear_levelling.pdb + +build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj: CXX_COMPILER____idf_wear_levelling_unscanned_ C$:/esp/v6.0/esp-idf/components/wear_levelling/SPI_Flash.cpp || cmake_object_order_depends_target___idf_wear_levelling + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir\SPI_Flash.cpp.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wear_levelling/include -IC:/esp/v6.0/esp-idf/components/wear_levelling/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include + OBJECT_DIR = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir + OBJECT_FILE_DIR = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir + TARGET_COMPILE_PDB = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir\__idf_wear_levelling.pdb + TARGET_PDB = esp-idf\wear_levelling\libwear_levelling.pdb + +build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj: CXX_COMPILER____idf_wear_levelling_unscanned_ C$:/esp/v6.0/esp-idf/components/wear_levelling/WL_Ext_Perf.cpp || cmake_object_order_depends_target___idf_wear_levelling + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir\WL_Ext_Perf.cpp.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wear_levelling/include -IC:/esp/v6.0/esp-idf/components/wear_levelling/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include + OBJECT_DIR = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir + OBJECT_FILE_DIR = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir + TARGET_COMPILE_PDB = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir\__idf_wear_levelling.pdb + TARGET_PDB = esp-idf\wear_levelling\libwear_levelling.pdb + +build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj: CXX_COMPILER____idf_wear_levelling_unscanned_ C$:/esp/v6.0/esp-idf/components/wear_levelling/WL_Ext_Safe.cpp || cmake_object_order_depends_target___idf_wear_levelling + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir\WL_Ext_Safe.cpp.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wear_levelling/include -IC:/esp/v6.0/esp-idf/components/wear_levelling/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include + OBJECT_DIR = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir + OBJECT_FILE_DIR = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir + TARGET_COMPILE_PDB = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir\__idf_wear_levelling.pdb + TARGET_PDB = esp-idf\wear_levelling\libwear_levelling.pdb + +build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj: CXX_COMPILER____idf_wear_levelling_unscanned_ C$:/esp/v6.0/esp-idf/components/wear_levelling/WL_Flash.cpp || cmake_object_order_depends_target___idf_wear_levelling + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir\WL_Flash.cpp.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wear_levelling/include -IC:/esp/v6.0/esp-idf/components/wear_levelling/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include + OBJECT_DIR = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir + OBJECT_FILE_DIR = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir + TARGET_COMPILE_PDB = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir\__idf_wear_levelling.pdb + TARGET_PDB = esp-idf\wear_levelling\libwear_levelling.pdb + +build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj: CXX_COMPILER____idf_wear_levelling_unscanned_ C$:/esp/v6.0/esp-idf/components/wear_levelling/crc32.cpp || cmake_object_order_depends_target___idf_wear_levelling + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir\crc32.cpp.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wear_levelling/include -IC:/esp/v6.0/esp-idf/components/wear_levelling/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include + OBJECT_DIR = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir + OBJECT_FILE_DIR = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir + TARGET_COMPILE_PDB = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir\__idf_wear_levelling.pdb + TARGET_PDB = esp-idf\wear_levelling\libwear_levelling.pdb + +build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj: CXX_COMPILER____idf_wear_levelling_unscanned_ C$:/esp/v6.0/esp-idf/components/wear_levelling/wear_levelling.cpp || cmake_object_order_depends_target___idf_wear_levelling + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir\wear_levelling.cpp.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wear_levelling/include -IC:/esp/v6.0/esp-idf/components/wear_levelling/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include + OBJECT_DIR = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir + OBJECT_FILE_DIR = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir + TARGET_COMPILE_PDB = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir\__idf_wear_levelling.pdb + TARGET_PDB = esp-idf\wear_levelling\libwear_levelling.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_wear_levelling + + +############################################# +# Link the static library esp-idf\wear_levelling\libwear_levelling.a + +build 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 + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\wear_levelling\CMakeFiles\__idf_wear_levelling.dir\__idf_wear_levelling.pdb + TARGET_FILE = esp-idf\wear_levelling\libwear_levelling.a + TARGET_PDB = esp-idf\wear_levelling\libwear_levelling.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/wear_levelling/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\wear_levelling && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/wear_levelling/edit_cache: phony esp-idf/wear_levelling/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/wear_levelling/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\wear_levelling && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/wear_levelling/rebuild_cache: phony esp-idf/wear_levelling/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/wear_levelling/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/wear_levelling/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/wear_levelling/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\wear_levelling && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/wear_levelling/install: phony esp-idf/wear_levelling/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/wear_levelling/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/wear_levelling/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\wear_levelling && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/wear_levelling/install/local: phony esp-idf/wear_levelling/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/wear_levelling/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/wear_levelling/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\wear_levelling && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/wear_levelling/install/strip: phony esp-idf/wear_levelling/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_fatfs + + +############################################# +# Order-only phony target for __idf_fatfs + +build cmake_object_order_depends_target___idf_fatfs: phony || cmake_object_order_depends_target___idf_esp_driver_sd_intf cmake_object_order_depends_target___idf_esp_driver_sdmmc cmake_object_order_depends_target___idf_esp_driver_sdspi cmake_object_order_depends_target___idf_esp_driver_spi cmake_object_order_depends_target___idf_sdmmc cmake_object_order_depends_target___idf_wear_levelling cmake_object_order_depends_target___idf_xtensa + +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj: C_COMPILER____idf_fatfs_unscanned_ C$:/esp/v6.0/esp-idf/components/fatfs/diskio/diskio.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\diskio\diskio.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/fatfs/diskio -IC:/esp/v6.0/esp-idf/components/fatfs/src -IC:/esp/v6.0/esp-idf/components/fatfs/vfs -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/wear_levelling/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/legacy/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sd_intf/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdspi/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir + OBJECT_FILE_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\diskio + TARGET_COMPILE_PDB = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\__idf_fatfs.pdb + TARGET_PDB = esp-idf\fatfs\libfatfs.pdb + +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj: C_COMPILER____idf_fatfs_unscanned_ C$:/esp/v6.0/esp-idf/components/fatfs/diskio/diskio_rawflash.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\diskio\diskio_rawflash.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/fatfs/diskio -IC:/esp/v6.0/esp-idf/components/fatfs/src -IC:/esp/v6.0/esp-idf/components/fatfs/vfs -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/wear_levelling/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/legacy/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sd_intf/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdspi/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir + OBJECT_FILE_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\diskio + TARGET_COMPILE_PDB = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\__idf_fatfs.pdb + TARGET_PDB = esp-idf\fatfs\libfatfs.pdb + +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj: C_COMPILER____idf_fatfs_unscanned_ C$:/esp/v6.0/esp-idf/components/fatfs/diskio/diskio_wl.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\diskio\diskio_wl.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/fatfs/diskio -IC:/esp/v6.0/esp-idf/components/fatfs/src -IC:/esp/v6.0/esp-idf/components/fatfs/vfs -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/wear_levelling/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/legacy/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sd_intf/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdspi/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir + OBJECT_FILE_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\diskio + TARGET_COMPILE_PDB = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\__idf_fatfs.pdb + TARGET_PDB = esp-idf\fatfs\libfatfs.pdb + +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj: C_COMPILER____idf_fatfs_unscanned_ C$:/esp/v6.0/esp-idf/components/fatfs/src/ff.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\src\ff.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/fatfs/diskio -IC:/esp/v6.0/esp-idf/components/fatfs/src -IC:/esp/v6.0/esp-idf/components/fatfs/vfs -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/wear_levelling/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/legacy/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sd_intf/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdspi/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir + OBJECT_FILE_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\src + TARGET_COMPILE_PDB = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\__idf_fatfs.pdb + TARGET_PDB = esp-idf\fatfs\libfatfs.pdb + +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj: C_COMPILER____idf_fatfs_unscanned_ C$:/esp/v6.0/esp-idf/components/fatfs/src/ffunicode.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\src\ffunicode.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/fatfs/diskio -IC:/esp/v6.0/esp-idf/components/fatfs/src -IC:/esp/v6.0/esp-idf/components/fatfs/vfs -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/wear_levelling/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/legacy/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sd_intf/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdspi/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir + OBJECT_FILE_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\src + TARGET_COMPILE_PDB = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\__idf_fatfs.pdb + TARGET_PDB = esp-idf\fatfs\libfatfs.pdb + +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj: C_COMPILER____idf_fatfs_unscanned_ C$:/esp/v6.0/esp-idf/components/fatfs/port/freertos/ffsystem.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\port\freertos\ffsystem.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/fatfs/diskio -IC:/esp/v6.0/esp-idf/components/fatfs/src -IC:/esp/v6.0/esp-idf/components/fatfs/vfs -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/wear_levelling/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/legacy/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sd_intf/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdspi/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir + OBJECT_FILE_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\port\freertos + TARGET_COMPILE_PDB = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\__idf_fatfs.pdb + TARGET_PDB = esp-idf\fatfs\libfatfs.pdb + +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj: C_COMPILER____idf_fatfs_unscanned_ C$:/esp/v6.0/esp-idf/components/fatfs/diskio/diskio_sdmmc.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\diskio\diskio_sdmmc.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/fatfs/diskio -IC:/esp/v6.0/esp-idf/components/fatfs/src -IC:/esp/v6.0/esp-idf/components/fatfs/vfs -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/wear_levelling/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/legacy/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sd_intf/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdspi/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir + OBJECT_FILE_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\diskio + TARGET_COMPILE_PDB = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\__idf_fatfs.pdb + TARGET_PDB = esp-idf\fatfs\libfatfs.pdb + +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj: C_COMPILER____idf_fatfs_unscanned_ C$:/esp/v6.0/esp-idf/components/fatfs/vfs/vfs_fat.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\vfs\vfs_fat.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/fatfs/diskio -IC:/esp/v6.0/esp-idf/components/fatfs/src -IC:/esp/v6.0/esp-idf/components/fatfs/vfs -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/wear_levelling/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/legacy/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sd_intf/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdspi/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir + OBJECT_FILE_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\vfs + TARGET_COMPILE_PDB = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\__idf_fatfs.pdb + TARGET_PDB = esp-idf\fatfs\libfatfs.pdb + +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj: C_COMPILER____idf_fatfs_unscanned_ C$:/esp/v6.0/esp-idf/components/fatfs/vfs/vfs_fat_sdmmc.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\vfs\vfs_fat_sdmmc.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/fatfs/diskio -IC:/esp/v6.0/esp-idf/components/fatfs/src -IC:/esp/v6.0/esp-idf/components/fatfs/vfs -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/wear_levelling/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/legacy/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sd_intf/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdspi/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir + OBJECT_FILE_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\vfs + TARGET_COMPILE_PDB = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\__idf_fatfs.pdb + TARGET_PDB = esp-idf\fatfs\libfatfs.pdb + +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj: C_COMPILER____idf_fatfs_unscanned_ C$:/esp/v6.0/esp-idf/components/fatfs/vfs/vfs_fat_spiflash.c || cmake_object_order_depends_target___idf_fatfs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\vfs\vfs_fat_spiflash.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/fatfs/diskio -IC:/esp/v6.0/esp-idf/components/fatfs/src -IC:/esp/v6.0/esp-idf/components/fatfs/vfs -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/wear_levelling/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/legacy/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sd_intf/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdspi/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir + OBJECT_FILE_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\vfs + TARGET_COMPILE_PDB = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\__idf_fatfs.pdb + TARGET_PDB = esp-idf\fatfs\libfatfs.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_fatfs + + +############################################# +# Link the static library esp-idf\fatfs\libfatfs.a + +build 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_wl.c.obj esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.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/esp_driver_sd_intf/libesp_driver_sd_intf.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/sdmmc/libsdmmc.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\fatfs\CMakeFiles\__idf_fatfs.dir\__idf_fatfs.pdb + TARGET_FILE = esp-idf\fatfs\libfatfs.a + TARGET_PDB = esp-idf\fatfs\libfatfs.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/fatfs/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\fatfs && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/fatfs/edit_cache: phony esp-idf/fatfs/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/fatfs/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\fatfs && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/fatfs/rebuild_cache: phony esp-idf/fatfs/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/fatfs/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/fatfs/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/fatfs/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\fatfs && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/fatfs/install: phony esp-idf/fatfs/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/fatfs/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/fatfs/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\fatfs && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/fatfs/install/local: phony esp-idf/fatfs/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/fatfs/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/fatfs/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\fatfs && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/fatfs/install/strip: phony esp-idf/fatfs/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/idf_test/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\idf_test && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/idf_test/edit_cache: phony esp-idf/idf_test/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/idf_test/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\idf_test && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/idf_test/rebuild_cache: phony esp-idf/idf_test/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/idf_test/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/idf_test/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/idf_test/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\idf_test && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/idf_test/install: phony esp-idf/idf_test/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/idf_test/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/idf_test/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\idf_test && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/idf_test/install/local: phony esp-idf/idf_test/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/idf_test/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/idf_test/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\idf_test && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/idf_test/install/strip: phony esp-idf/idf_test/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/ieee802154/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\ieee802154 && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/ieee802154/edit_cache: phony esp-idf/ieee802154/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/ieee802154/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\ieee802154 && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/ieee802154/rebuild_cache: phony esp-idf/ieee802154/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/ieee802154/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/ieee802154/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/ieee802154/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\ieee802154 && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/ieee802154/install: phony esp-idf/ieee802154/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/ieee802154/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/ieee802154/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\ieee802154 && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/ieee802154/install/local: phony esp-idf/ieee802154/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/ieee802154/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/ieee802154/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\ieee802154 && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/ieee802154/install/strip: phony esp-idf/ieee802154/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/openthread/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\openthread && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/openthread/edit_cache: phony esp-idf/openthread/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/openthread/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\openthread && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/openthread/rebuild_cache: phony esp-idf/openthread/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/openthread/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/openthread/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/openthread/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\openthread && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/openthread/install: phony esp-idf/openthread/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/openthread/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/openthread/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\openthread && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/openthread/install/local: phony esp-idf/openthread/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/openthread/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/openthread/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\openthread && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/openthread/install/strip: phony esp-idf/openthread/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_perfmon + + +############################################# +# Order-only phony target for __idf_perfmon + +build cmake_object_order_depends_target___idf_perfmon: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_access.c.obj: C_COMPILER____idf_perfmon_unscanned_ C$:/esp/v6.0/esp-idf/components/perfmon/xtensa_perfmon_access.c || cmake_object_order_depends_target___idf_perfmon + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\perfmon\CMakeFiles\__idf_perfmon.dir\xtensa_perfmon_access.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/perfmon/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\perfmon\CMakeFiles\__idf_perfmon.dir + OBJECT_FILE_DIR = esp-idf\perfmon\CMakeFiles\__idf_perfmon.dir + TARGET_COMPILE_PDB = esp-idf\perfmon\CMakeFiles\__idf_perfmon.dir\__idf_perfmon.pdb + TARGET_PDB = esp-idf\perfmon\libperfmon.pdb + +build esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_apis.c.obj: C_COMPILER____idf_perfmon_unscanned_ C$:/esp/v6.0/esp-idf/components/perfmon/xtensa_perfmon_apis.c || cmake_object_order_depends_target___idf_perfmon + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\perfmon\CMakeFiles\__idf_perfmon.dir\xtensa_perfmon_apis.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/perfmon/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\perfmon\CMakeFiles\__idf_perfmon.dir + OBJECT_FILE_DIR = esp-idf\perfmon\CMakeFiles\__idf_perfmon.dir + TARGET_COMPILE_PDB = esp-idf\perfmon\CMakeFiles\__idf_perfmon.dir\__idf_perfmon.pdb + TARGET_PDB = esp-idf\perfmon\libperfmon.pdb + +build esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_masks.c.obj: C_COMPILER____idf_perfmon_unscanned_ C$:/esp/v6.0/esp-idf/components/perfmon/xtensa_perfmon_masks.c || cmake_object_order_depends_target___idf_perfmon + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\perfmon\CMakeFiles\__idf_perfmon.dir\xtensa_perfmon_masks.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/perfmon/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\perfmon\CMakeFiles\__idf_perfmon.dir + OBJECT_FILE_DIR = esp-idf\perfmon\CMakeFiles\__idf_perfmon.dir + TARGET_COMPILE_PDB = esp-idf\perfmon\CMakeFiles\__idf_perfmon.dir\__idf_perfmon.pdb + TARGET_PDB = esp-idf\perfmon\libperfmon.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_perfmon + + +############################################# +# Link the static library esp-idf\perfmon\libperfmon.a + +build 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 + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\perfmon\CMakeFiles\__idf_perfmon.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\perfmon\CMakeFiles\__idf_perfmon.dir\__idf_perfmon.pdb + TARGET_FILE = esp-idf\perfmon\libperfmon.a + TARGET_PDB = esp-idf\perfmon\libperfmon.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/perfmon/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\perfmon && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/perfmon/edit_cache: phony esp-idf/perfmon/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/perfmon/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\perfmon && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/perfmon/rebuild_cache: phony esp-idf/perfmon/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/perfmon/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/perfmon/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/perfmon/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\perfmon && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/perfmon/install: phony esp-idf/perfmon/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/perfmon/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/perfmon/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\perfmon && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/perfmon/install/local: phony esp-idf/perfmon/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/perfmon/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/perfmon/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\perfmon && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/perfmon/install/strip: phony esp-idf/perfmon/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_rt + + +############################################# +# Order-only phony target for __idf_rt + +build cmake_object_order_depends_target___idf_rt: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/rt/CMakeFiles/__idf_rt.dir/FreeRTOS_POSIX_mqueue.c.obj: C_COMPILER____idf_rt_unscanned_ C$:/esp/v6.0/esp-idf/components/rt/FreeRTOS_POSIX_mqueue.c || cmake_object_order_depends_target___idf_rt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\rt\CMakeFiles\__idf_rt.dir\FreeRTOS_POSIX_mqueue.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/rt/include -IC:/esp/v6.0/esp-idf/components/rt/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\rt\CMakeFiles\__idf_rt.dir + OBJECT_FILE_DIR = esp-idf\rt\CMakeFiles\__idf_rt.dir + TARGET_COMPILE_PDB = esp-idf\rt\CMakeFiles\__idf_rt.dir\__idf_rt.pdb + TARGET_PDB = esp-idf\rt\librt.pdb + +build esp-idf/rt/CMakeFiles/__idf_rt.dir/FreeRTOS_POSIX_utils.c.obj: C_COMPILER____idf_rt_unscanned_ C$:/esp/v6.0/esp-idf/components/rt/FreeRTOS_POSIX_utils.c || cmake_object_order_depends_target___idf_rt + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\rt\CMakeFiles\__idf_rt.dir\FreeRTOS_POSIX_utils.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/rt/include -IC:/esp/v6.0/esp-idf/components/rt/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys + OBJECT_DIR = esp-idf\rt\CMakeFiles\__idf_rt.dir + OBJECT_FILE_DIR = esp-idf\rt\CMakeFiles\__idf_rt.dir + TARGET_COMPILE_PDB = esp-idf\rt\CMakeFiles\__idf_rt.dir\__idf_rt.pdb + TARGET_PDB = esp-idf\rt\librt.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_rt + + +############################################# +# Link the static library esp-idf\rt\librt.a + +build esp-idf/rt/librt.a: C_STATIC_LIBRARY_LINKER____idf_rt_ esp-idf/rt/CMakeFiles/__idf_rt.dir/FreeRTOS_POSIX_mqueue.c.obj esp-idf/rt/CMakeFiles/__idf_rt.dir/FreeRTOS_POSIX_utils.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\rt\CMakeFiles\__idf_rt.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\rt\CMakeFiles\__idf_rt.dir\__idf_rt.pdb + TARGET_FILE = esp-idf\rt\librt.a + TARGET_PDB = esp-idf\rt\librt.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/rt/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\rt && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/rt/edit_cache: phony esp-idf/rt/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/rt/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\rt && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/rt/rebuild_cache: phony esp-idf/rt/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/rt/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/rt/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/rt/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\rt && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/rt/install: phony esp-idf/rt/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/rt/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/rt/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\rt && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/rt/install/local: phony esp-idf/rt/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/rt/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/rt/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\rt && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/rt/install/strip: phony esp-idf/rt/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_spiffs + + +############################################# +# Order-only phony target for __idf_spiffs + +build cmake_object_order_depends_target___idf_spiffs: phony || cmake_object_order_depends_target___idf_xtensa + +build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj: C_COMPILER____idf_spiffs_unscanned_ C$:/esp/v6.0/esp-idf/components/spiffs/spiffs_api.c || cmake_object_order_depends_target___idf_spiffs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\spiffs_api.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spiffs/include -IC:/esp/v6.0/esp-idf/components/spiffs -IC:/esp/v6.0/esp-idf/components/spiffs/spiffs/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir + OBJECT_FILE_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir + TARGET_COMPILE_PDB = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\__idf_spiffs.pdb + TARGET_PDB = esp-idf\spiffs\libspiffs.pdb + +build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj: C_COMPILER____idf_spiffs_unscanned_ C$:/esp/v6.0/esp-idf/components/spiffs/spiffs/src/spiffs_cache.c || cmake_object_order_depends_target___idf_spiffs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\spiffs\src\spiffs_cache.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spiffs/include -IC:/esp/v6.0/esp-idf/components/spiffs -IC:/esp/v6.0/esp-idf/components/spiffs/spiffs/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir + OBJECT_FILE_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\spiffs\src + TARGET_COMPILE_PDB = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\__idf_spiffs.pdb + TARGET_PDB = esp-idf\spiffs\libspiffs.pdb + +build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj: C_COMPILER____idf_spiffs_unscanned_ C$:/esp/v6.0/esp-idf/components/spiffs/spiffs/src/spiffs_check.c || cmake_object_order_depends_target___idf_spiffs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\spiffs\src\spiffs_check.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spiffs/include -IC:/esp/v6.0/esp-idf/components/spiffs -IC:/esp/v6.0/esp-idf/components/spiffs/spiffs/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir + OBJECT_FILE_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\spiffs\src + TARGET_COMPILE_PDB = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\__idf_spiffs.pdb + TARGET_PDB = esp-idf\spiffs\libspiffs.pdb + +build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj: C_COMPILER____idf_spiffs_unscanned_ C$:/esp/v6.0/esp-idf/components/spiffs/spiffs/src/spiffs_gc.c || cmake_object_order_depends_target___idf_spiffs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\spiffs\src\spiffs_gc.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spiffs/include -IC:/esp/v6.0/esp-idf/components/spiffs -IC:/esp/v6.0/esp-idf/components/spiffs/spiffs/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir + OBJECT_FILE_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\spiffs\src + TARGET_COMPILE_PDB = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\__idf_spiffs.pdb + TARGET_PDB = esp-idf\spiffs\libspiffs.pdb + +build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj: C_COMPILER____idf_spiffs_unscanned_ C$:/esp/v6.0/esp-idf/components/spiffs/spiffs/src/spiffs_hydrogen.c || cmake_object_order_depends_target___idf_spiffs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\spiffs\src\spiffs_hydrogen.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spiffs/include -IC:/esp/v6.0/esp-idf/components/spiffs -IC:/esp/v6.0/esp-idf/components/spiffs/spiffs/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir + OBJECT_FILE_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\spiffs\src + TARGET_COMPILE_PDB = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\__idf_spiffs.pdb + TARGET_PDB = esp-idf\spiffs\libspiffs.pdb + +build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj: C_COMPILER____idf_spiffs_unscanned_ C$:/esp/v6.0/esp-idf/components/spiffs/spiffs/src/spiffs_nucleus.c || cmake_object_order_depends_target___idf_spiffs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\spiffs\src\spiffs_nucleus.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-format + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spiffs/include -IC:/esp/v6.0/esp-idf/components/spiffs -IC:/esp/v6.0/esp-idf/components/spiffs/spiffs/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir + OBJECT_FILE_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\spiffs\src + TARGET_COMPILE_PDB = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\__idf_spiffs.pdb + TARGET_PDB = esp-idf\spiffs\libspiffs.pdb + +build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj: C_COMPILER____idf_spiffs_unscanned_ C$:/esp/v6.0/esp-idf/components/spiffs/esp_spiffs.c || cmake_object_order_depends_target___idf_spiffs + DEFINES = -DESP_PLATFORM -DIDF_VER=\"v6.0\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\esp_spiffs.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spiffs/include -IC:/esp/v6.0/esp-idf/components/spiffs -IC:/esp/v6.0/esp-idf/components/spiffs/spiffs/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/vfs/include + OBJECT_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir + OBJECT_FILE_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir + TARGET_COMPILE_PDB = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\__idf_spiffs.pdb + TARGET_PDB = esp-idf\spiffs\libspiffs.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_spiffs + + +############################################# +# Link the static library esp-idf\spiffs\libspiffs.a + +build 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 + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\spiffs\CMakeFiles\__idf_spiffs.dir\__idf_spiffs.pdb + TARGET_FILE = esp-idf\spiffs\libspiffs.a + TARGET_PDB = esp-idf\spiffs\libspiffs.pdb + + +############################################# +# Utility command for edit_cache + +build esp-idf/spiffs/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\spiffs && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/spiffs/edit_cache: phony esp-idf/spiffs/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/spiffs/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\spiffs && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/spiffs/rebuild_cache: phony esp-idf/spiffs/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/spiffs/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/spiffs/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/spiffs/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\spiffs && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/spiffs/install: phony esp-idf/spiffs/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/spiffs/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/spiffs/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\spiffs && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/spiffs/install/local: phony esp-idf/spiffs/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/spiffs/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/spiffs/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\spiffs && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/spiffs/install/strip: phony esp-idf/spiffs/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/ulp/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\ulp && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/ulp/edit_cache: phony esp-idf/ulp/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/ulp/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\ulp && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/ulp/rebuild_cache: phony esp-idf/ulp/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/ulp/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/ulp/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/ulp/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\ulp && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/ulp/install: phony esp-idf/ulp/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/ulp/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/ulp/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\ulp && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/ulp/install/local: phony esp-idf/ulp/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/ulp/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/ulp/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\ulp && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/ulp/install/strip: phony esp-idf/ulp/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/esp/v6.0/esp-idf/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_main + + +############################################# +# Order-only phony target for __idf_main + +build cmake_object_order_depends_target___idf_main: phony || cmake_object_order_depends_target___idf_cmock cmake_object_order_depends_target___idf_console cmake_object_order_depends_target___idf_driver cmake_object_order_depends_target___idf_esp_driver_cam cmake_object_order_depends_target___idf_esp_driver_dac cmake_object_order_depends_target___idf_esp_driver_gptimer cmake_object_order_depends_target___idf_esp_driver_i2c cmake_object_order_depends_target___idf_esp_driver_ledc cmake_object_order_depends_target___idf_esp_driver_mcpwm cmake_object_order_depends_target___idf_esp_driver_pcnt cmake_object_order_depends_target___idf_esp_driver_rmt cmake_object_order_depends_target___idf_esp_driver_sd_intf cmake_object_order_depends_target___idf_esp_driver_sdio cmake_object_order_depends_target___idf_esp_driver_sdm cmake_object_order_depends_target___idf_esp_driver_sdmmc cmake_object_order_depends_target___idf_esp_driver_sdspi cmake_object_order_depends_target___idf_esp_driver_spi cmake_object_order_depends_target___idf_esp_driver_touch_sens cmake_object_order_depends_target___idf_esp_driver_twai cmake_object_order_depends_target___idf_esp_eth cmake_object_order_depends_target___idf_esp_hal_lcd cmake_object_order_depends_target___idf_esp_hal_ledc cmake_object_order_depends_target___idf_esp_hal_mcpwm cmake_object_order_depends_target___idf_esp_hal_pcnt cmake_object_order_depends_target___idf_esp_hal_rmt cmake_object_order_depends_target___idf_esp_hal_twai cmake_object_order_depends_target___idf_esp_hid cmake_object_order_depends_target___idf_esp_https_server cmake_object_order_depends_target___idf_esp_lcd cmake_object_order_depends_target___idf_esp_local_ctrl cmake_object_order_depends_target___idf_fatfs 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_rt cmake_object_order_depends_target___idf_sdmmc cmake_object_order_depends_target___idf_spiffs cmake_object_order_depends_target___idf_unity cmake_object_order_depends_target___idf_wear_levelling cmake_object_order_depends_target___idf_xtensa + +build esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj: C_COMPILER____idf_main_unscanned_ C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/main/main.c || cmake_object_order_depends_target___idf_main + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\main\CMakeFiles\__idf_main.dir\main.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/main -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/app_update/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/pthread/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include -IC:/esp/v6.0/esp-idf/components/esp_psram/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gptimer/include -IC:/esp/v6.0/esp-idf/components/app_trace/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/esp_coex/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/unity/include -IC:/esp/v6.0/esp-idf/components/unity/unity/src -IC:/esp/v6.0/esp-idf/components/cmock/CMock/src -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/esp32/include -IC:/esp/v6.0/esp-idf/components/driver/i2c/include -IC:/esp/v6.0/esp-idf/components/driver/touch_sensor/include -IC:/esp/v6.0/esp-idf/components/driver/twai/include -IC:/esp/v6.0/esp-idf/components/driver/touch_sensor/esp32/include -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_adc/include -IC:/esp/v6.0/esp-idf/components/esp_adc/interface -IC:/esp/v6.0/esp-idf/components/esp_adc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_cmpr/include -IC:/esp/v6.0/esp-idf/components/esp_driver_ana_cmpr/include -IC:/esp/v6.0/esp-idf/components/esp_driver_bitscrambler/include -IC:/esp/v6.0/esp-idf/components/esp_hal_cam/include -IC:/esp/v6.0/esp-idf/components/esp_driver_isp/include -IC:/esp/v6.0/esp-idf/components/esp_driver_cam/include -IC:/esp/v6.0/esp-idf/components/esp_driver_cam/interface -IC:/esp/v6.0/esp-idf/components/esp_driver_dac/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i3c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_jpeg/include -IC:/esp/v6.0/esp-idf/components/esp_driver_jpeg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ledc/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ledc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_ledc/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pcnt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pcnt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_pcnt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ppa/include -IC:/esp/v6.0/esp-idf/components/esp_driver_ppa/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_rmt/include -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sd_intf/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/legacy/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdspi/include -IC:/esp/v6.0/esp-idf/components/esp_driver_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_driver_touch_sens/hw_ver1/include -IC:/esp/v6.0/esp-idf/components/esp_driver_tsens/include -IC:/esp/v6.0/esp-idf/components/esp_driver_twai/include -IC:/esp/v6.0/esp-idf/components/esp_eth/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ieee802154/include -IC:/esp/v6.0/esp-idf/components/esp_hal_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_hid/include -IC:/esp/v6.0/esp-idf/components/tcp_transport/include -IC:/esp/v6.0/esp-idf/components/esp_http_client/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/esp_https_ota/include -IC:/esp/v6.0/esp-idf/components/esp_https_server/include -IC:/esp/v6.0/esp-idf/components/esp_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_lcd/interface -IC:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c -IC:/esp/v6.0/esp-idf/components/protocomm/include/common -IC:/esp/v6.0/esp-idf/components/protocomm/include/security -IC:/esp/v6.0/esp-idf/components/protocomm/include/transports -IC:/esp/v6.0/esp-idf/components/protocomm/include/crypto/srp6a -IC:/esp/v6.0/esp-idf/components/protocomm/proto-c -IC:/esp/v6.0/esp-idf/components/esp_local_ctrl/include -IC:/esp/v6.0/esp-idf/components/esp_trace/include -IC:/esp/v6.0/esp-idf/components/wear_levelling/include -IC:/esp/v6.0/esp-idf/components/fatfs/diskio -IC:/esp/v6.0/esp-idf/components/fatfs/src -IC:/esp/v6.0/esp-idf/components/fatfs/vfs -IC:/esp/v6.0/esp-idf/components/idf_test/include -IC:/esp/v6.0/esp-idf/components/idf_test/include/esp32 -IC:/esp/v6.0/esp-idf/components/ieee802154/include -IC:/esp/v6.0/esp-idf/components/perfmon/include -IC:/esp/v6.0/esp-idf/components/rt/include -IC:/esp/v6.0/esp-idf/components/spiffs/include + OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + OBJECT_FILE_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + TARGET_COMPILE_PDB = esp-idf\main\CMakeFiles\__idf_main.dir\__idf_main.pdb + TARGET_PDB = esp-idf\main\libmain.pdb + +build esp-idf/main/CMakeFiles/__idf_main.dir/modbus_memory.c.obj: C_COMPILER____idf_main_unscanned_ C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/main/modbus_memory.c || cmake_object_order_depends_target___idf_main + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\main\CMakeFiles\__idf_main.dir\modbus_memory.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/main -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/app_update/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/pthread/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include -IC:/esp/v6.0/esp-idf/components/esp_psram/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gptimer/include -IC:/esp/v6.0/esp-idf/components/app_trace/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/esp_coex/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/unity/include -IC:/esp/v6.0/esp-idf/components/unity/unity/src -IC:/esp/v6.0/esp-idf/components/cmock/CMock/src -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/esp32/include -IC:/esp/v6.0/esp-idf/components/driver/i2c/include -IC:/esp/v6.0/esp-idf/components/driver/touch_sensor/include -IC:/esp/v6.0/esp-idf/components/driver/twai/include -IC:/esp/v6.0/esp-idf/components/driver/touch_sensor/esp32/include -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_adc/include -IC:/esp/v6.0/esp-idf/components/esp_adc/interface -IC:/esp/v6.0/esp-idf/components/esp_adc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_cmpr/include -IC:/esp/v6.0/esp-idf/components/esp_driver_ana_cmpr/include -IC:/esp/v6.0/esp-idf/components/esp_driver_bitscrambler/include -IC:/esp/v6.0/esp-idf/components/esp_hal_cam/include -IC:/esp/v6.0/esp-idf/components/esp_driver_isp/include -IC:/esp/v6.0/esp-idf/components/esp_driver_cam/include -IC:/esp/v6.0/esp-idf/components/esp_driver_cam/interface -IC:/esp/v6.0/esp-idf/components/esp_driver_dac/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i3c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_jpeg/include -IC:/esp/v6.0/esp-idf/components/esp_driver_jpeg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ledc/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ledc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_ledc/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pcnt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pcnt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_pcnt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ppa/include -IC:/esp/v6.0/esp-idf/components/esp_driver_ppa/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_rmt/include -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sd_intf/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/legacy/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdspi/include -IC:/esp/v6.0/esp-idf/components/esp_driver_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_driver_touch_sens/hw_ver1/include -IC:/esp/v6.0/esp-idf/components/esp_driver_tsens/include -IC:/esp/v6.0/esp-idf/components/esp_driver_twai/include -IC:/esp/v6.0/esp-idf/components/esp_eth/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ieee802154/include -IC:/esp/v6.0/esp-idf/components/esp_hal_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_hid/include -IC:/esp/v6.0/esp-idf/components/tcp_transport/include -IC:/esp/v6.0/esp-idf/components/esp_http_client/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/esp_https_ota/include -IC:/esp/v6.0/esp-idf/components/esp_https_server/include -IC:/esp/v6.0/esp-idf/components/esp_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_lcd/interface -IC:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c -IC:/esp/v6.0/esp-idf/components/protocomm/include/common -IC:/esp/v6.0/esp-idf/components/protocomm/include/security -IC:/esp/v6.0/esp-idf/components/protocomm/include/transports -IC:/esp/v6.0/esp-idf/components/protocomm/include/crypto/srp6a -IC:/esp/v6.0/esp-idf/components/protocomm/proto-c -IC:/esp/v6.0/esp-idf/components/esp_local_ctrl/include -IC:/esp/v6.0/esp-idf/components/esp_trace/include -IC:/esp/v6.0/esp-idf/components/wear_levelling/include -IC:/esp/v6.0/esp-idf/components/fatfs/diskio -IC:/esp/v6.0/esp-idf/components/fatfs/src -IC:/esp/v6.0/esp-idf/components/fatfs/vfs -IC:/esp/v6.0/esp-idf/components/idf_test/include -IC:/esp/v6.0/esp-idf/components/idf_test/include/esp32 -IC:/esp/v6.0/esp-idf/components/ieee802154/include -IC:/esp/v6.0/esp-idf/components/perfmon/include -IC:/esp/v6.0/esp-idf/components/rt/include -IC:/esp/v6.0/esp-idf/components/spiffs/include + OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + OBJECT_FILE_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + TARGET_COMPILE_PDB = esp-idf\main\CMakeFiles\__idf_main.dir\__idf_main.pdb + TARGET_PDB = esp-idf\main\libmain.pdb + +build esp-idf/main/CMakeFiles/__idf_main.dir/modbus_points.c.obj: C_COMPILER____idf_main_unscanned_ C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/main/modbus_points.c || cmake_object_order_depends_target___idf_main + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\main\CMakeFiles\__idf_main.dir\modbus_points.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/main -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/app_update/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/pthread/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include -IC:/esp/v6.0/esp-idf/components/esp_psram/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gptimer/include -IC:/esp/v6.0/esp-idf/components/app_trace/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/esp_coex/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/unity/include -IC:/esp/v6.0/esp-idf/components/unity/unity/src -IC:/esp/v6.0/esp-idf/components/cmock/CMock/src -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/esp32/include -IC:/esp/v6.0/esp-idf/components/driver/i2c/include -IC:/esp/v6.0/esp-idf/components/driver/touch_sensor/include -IC:/esp/v6.0/esp-idf/components/driver/twai/include -IC:/esp/v6.0/esp-idf/components/driver/touch_sensor/esp32/include -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_adc/include -IC:/esp/v6.0/esp-idf/components/esp_adc/interface -IC:/esp/v6.0/esp-idf/components/esp_adc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_cmpr/include -IC:/esp/v6.0/esp-idf/components/esp_driver_ana_cmpr/include -IC:/esp/v6.0/esp-idf/components/esp_driver_bitscrambler/include -IC:/esp/v6.0/esp-idf/components/esp_hal_cam/include -IC:/esp/v6.0/esp-idf/components/esp_driver_isp/include -IC:/esp/v6.0/esp-idf/components/esp_driver_cam/include -IC:/esp/v6.0/esp-idf/components/esp_driver_cam/interface -IC:/esp/v6.0/esp-idf/components/esp_driver_dac/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i3c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_jpeg/include -IC:/esp/v6.0/esp-idf/components/esp_driver_jpeg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ledc/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ledc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_ledc/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pcnt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pcnt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_pcnt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ppa/include -IC:/esp/v6.0/esp-idf/components/esp_driver_ppa/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_rmt/include -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sd_intf/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/legacy/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdspi/include -IC:/esp/v6.0/esp-idf/components/esp_driver_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_driver_touch_sens/hw_ver1/include -IC:/esp/v6.0/esp-idf/components/esp_driver_tsens/include -IC:/esp/v6.0/esp-idf/components/esp_driver_twai/include -IC:/esp/v6.0/esp-idf/components/esp_eth/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ieee802154/include -IC:/esp/v6.0/esp-idf/components/esp_hal_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_hid/include -IC:/esp/v6.0/esp-idf/components/tcp_transport/include -IC:/esp/v6.0/esp-idf/components/esp_http_client/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/esp_https_ota/include -IC:/esp/v6.0/esp-idf/components/esp_https_server/include -IC:/esp/v6.0/esp-idf/components/esp_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_lcd/interface -IC:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c -IC:/esp/v6.0/esp-idf/components/protocomm/include/common -IC:/esp/v6.0/esp-idf/components/protocomm/include/security -IC:/esp/v6.0/esp-idf/components/protocomm/include/transports -IC:/esp/v6.0/esp-idf/components/protocomm/include/crypto/srp6a -IC:/esp/v6.0/esp-idf/components/protocomm/proto-c -IC:/esp/v6.0/esp-idf/components/esp_local_ctrl/include -IC:/esp/v6.0/esp-idf/components/esp_trace/include -IC:/esp/v6.0/esp-idf/components/wear_levelling/include -IC:/esp/v6.0/esp-idf/components/fatfs/diskio -IC:/esp/v6.0/esp-idf/components/fatfs/src -IC:/esp/v6.0/esp-idf/components/fatfs/vfs -IC:/esp/v6.0/esp-idf/components/idf_test/include -IC:/esp/v6.0/esp-idf/components/idf_test/include/esp32 -IC:/esp/v6.0/esp-idf/components/ieee802154/include -IC:/esp/v6.0/esp-idf/components/perfmon/include -IC:/esp/v6.0/esp-idf/components/rt/include -IC:/esp/v6.0/esp-idf/components/spiffs/include + OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + OBJECT_FILE_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + TARGET_COMPILE_PDB = esp-idf\main\CMakeFiles\__idf_main.dir\__idf_main.pdb + TARGET_PDB = esp-idf\main\libmain.pdb + +build esp-idf/main/CMakeFiles/__idf_main.dir/modbus_rtu.c.obj: C_COMPILER____idf_main_unscanned_ C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/main/modbus_rtu.c || cmake_object_order_depends_target___idf_main + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\main\CMakeFiles\__idf_main.dir\modbus_rtu.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/main -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/app_update/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/pthread/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include -IC:/esp/v6.0/esp-idf/components/esp_psram/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gptimer/include -IC:/esp/v6.0/esp-idf/components/app_trace/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/esp_coex/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/unity/include -IC:/esp/v6.0/esp-idf/components/unity/unity/src -IC:/esp/v6.0/esp-idf/components/cmock/CMock/src -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/esp32/include -IC:/esp/v6.0/esp-idf/components/driver/i2c/include -IC:/esp/v6.0/esp-idf/components/driver/touch_sensor/include -IC:/esp/v6.0/esp-idf/components/driver/twai/include -IC:/esp/v6.0/esp-idf/components/driver/touch_sensor/esp32/include -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_adc/include -IC:/esp/v6.0/esp-idf/components/esp_adc/interface -IC:/esp/v6.0/esp-idf/components/esp_adc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_cmpr/include -IC:/esp/v6.0/esp-idf/components/esp_driver_ana_cmpr/include -IC:/esp/v6.0/esp-idf/components/esp_driver_bitscrambler/include -IC:/esp/v6.0/esp-idf/components/esp_hal_cam/include -IC:/esp/v6.0/esp-idf/components/esp_driver_isp/include -IC:/esp/v6.0/esp-idf/components/esp_driver_cam/include -IC:/esp/v6.0/esp-idf/components/esp_driver_cam/interface -IC:/esp/v6.0/esp-idf/components/esp_driver_dac/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i3c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_jpeg/include -IC:/esp/v6.0/esp-idf/components/esp_driver_jpeg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ledc/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ledc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_ledc/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pcnt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pcnt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_pcnt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ppa/include -IC:/esp/v6.0/esp-idf/components/esp_driver_ppa/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_rmt/include -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sd_intf/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/legacy/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdspi/include -IC:/esp/v6.0/esp-idf/components/esp_driver_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_driver_touch_sens/hw_ver1/include -IC:/esp/v6.0/esp-idf/components/esp_driver_tsens/include -IC:/esp/v6.0/esp-idf/components/esp_driver_twai/include -IC:/esp/v6.0/esp-idf/components/esp_eth/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ieee802154/include -IC:/esp/v6.0/esp-idf/components/esp_hal_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_hid/include -IC:/esp/v6.0/esp-idf/components/tcp_transport/include -IC:/esp/v6.0/esp-idf/components/esp_http_client/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/esp_https_ota/include -IC:/esp/v6.0/esp-idf/components/esp_https_server/include -IC:/esp/v6.0/esp-idf/components/esp_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_lcd/interface -IC:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c -IC:/esp/v6.0/esp-idf/components/protocomm/include/common -IC:/esp/v6.0/esp-idf/components/protocomm/include/security -IC:/esp/v6.0/esp-idf/components/protocomm/include/transports -IC:/esp/v6.0/esp-idf/components/protocomm/include/crypto/srp6a -IC:/esp/v6.0/esp-idf/components/protocomm/proto-c -IC:/esp/v6.0/esp-idf/components/esp_local_ctrl/include -IC:/esp/v6.0/esp-idf/components/esp_trace/include -IC:/esp/v6.0/esp-idf/components/wear_levelling/include -IC:/esp/v6.0/esp-idf/components/fatfs/diskio -IC:/esp/v6.0/esp-idf/components/fatfs/src -IC:/esp/v6.0/esp-idf/components/fatfs/vfs -IC:/esp/v6.0/esp-idf/components/idf_test/include -IC:/esp/v6.0/esp-idf/components/idf_test/include/esp32 -IC:/esp/v6.0/esp-idf/components/ieee802154/include -IC:/esp/v6.0/esp-idf/components/perfmon/include -IC:/esp/v6.0/esp-idf/components/rt/include -IC:/esp/v6.0/esp-idf/components/spiffs/include + OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + OBJECT_FILE_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + TARGET_COMPILE_PDB = esp-idf\main\CMakeFiles\__idf_main.dir\__idf_main.pdb + TARGET_PDB = esp-idf\main\libmain.pdb + +build esp-idf/main/CMakeFiles/__idf_main.dir/config_store.c.obj: C_COMPILER____idf_main_unscanned_ C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/main/config_store.c || cmake_object_order_depends_target___idf_main + DEFINES = -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\"v6.0\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS + DEP_FILE = esp-idf\main\CMakeFiles\__idf_main.dir\config_store.c.obj.d + FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce + INCLUDES = -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/main -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/app_update/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/pthread/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include -IC:/esp/v6.0/esp-idf/components/esp_psram/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gptimer/include -IC:/esp/v6.0/esp-idf/components/app_trace/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/esp_coex/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/unity/include -IC:/esp/v6.0/esp-idf/components/unity/unity/src -IC:/esp/v6.0/esp-idf/components/cmock/CMock/src -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/esp32/include -IC:/esp/v6.0/esp-idf/components/driver/i2c/include -IC:/esp/v6.0/esp-idf/components/driver/touch_sensor/include -IC:/esp/v6.0/esp-idf/components/driver/twai/include -IC:/esp/v6.0/esp-idf/components/driver/touch_sensor/esp32/include -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_adc/include -IC:/esp/v6.0/esp-idf/components/esp_adc/interface -IC:/esp/v6.0/esp-idf/components/esp_adc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_cmpr/include -IC:/esp/v6.0/esp-idf/components/esp_driver_ana_cmpr/include -IC:/esp/v6.0/esp-idf/components/esp_driver_bitscrambler/include -IC:/esp/v6.0/esp-idf/components/esp_hal_cam/include -IC:/esp/v6.0/esp-idf/components/esp_driver_isp/include -IC:/esp/v6.0/esp-idf/components/esp_driver_cam/include -IC:/esp/v6.0/esp-idf/components/esp_driver_cam/interface -IC:/esp/v6.0/esp-idf/components/esp_driver_dac/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i3c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_jpeg/include -IC:/esp/v6.0/esp-idf/components/esp_driver_jpeg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ledc/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ledc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_ledc/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pcnt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pcnt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_pcnt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ppa/include -IC:/esp/v6.0/esp-idf/components/esp_driver_ppa/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_rmt/include -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sd_intf/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/legacy/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdspi/include -IC:/esp/v6.0/esp-idf/components/esp_driver_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_driver_touch_sens/hw_ver1/include -IC:/esp/v6.0/esp-idf/components/esp_driver_tsens/include -IC:/esp/v6.0/esp-idf/components/esp_driver_twai/include -IC:/esp/v6.0/esp-idf/components/esp_eth/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ieee802154/include -IC:/esp/v6.0/esp-idf/components/esp_hal_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_hid/include -IC:/esp/v6.0/esp-idf/components/tcp_transport/include -IC:/esp/v6.0/esp-idf/components/esp_http_client/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/esp_https_ota/include -IC:/esp/v6.0/esp-idf/components/esp_https_server/include -IC:/esp/v6.0/esp-idf/components/esp_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_lcd/interface -IC:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c -IC:/esp/v6.0/esp-idf/components/protocomm/include/common -IC:/esp/v6.0/esp-idf/components/protocomm/include/security -IC:/esp/v6.0/esp-idf/components/protocomm/include/transports -IC:/esp/v6.0/esp-idf/components/protocomm/include/crypto/srp6a -IC:/esp/v6.0/esp-idf/components/protocomm/proto-c -IC:/esp/v6.0/esp-idf/components/esp_local_ctrl/include -IC:/esp/v6.0/esp-idf/components/esp_trace/include -IC:/esp/v6.0/esp-idf/components/wear_levelling/include -IC:/esp/v6.0/esp-idf/components/fatfs/diskio -IC:/esp/v6.0/esp-idf/components/fatfs/src -IC:/esp/v6.0/esp-idf/components/fatfs/vfs -IC:/esp/v6.0/esp-idf/components/idf_test/include -IC:/esp/v6.0/esp-idf/components/idf_test/include/esp32 -IC:/esp/v6.0/esp-idf/components/ieee802154/include -IC:/esp/v6.0/esp-idf/components/perfmon/include -IC:/esp/v6.0/esp-idf/components/rt/include -IC:/esp/v6.0/esp-idf/components/spiffs/include + OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + OBJECT_FILE_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + TARGET_COMPILE_PDB = esp-idf\main\CMakeFiles\__idf_main.dir\__idf_main.pdb + TARGET_PDB = esp-idf\main\libmain.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_main + + +############################################# +# Link the static library esp-idf\main\libmain.a + +build 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/modbus_memory.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/modbus_points.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/modbus_rtu.c.obj esp-idf/main/CMakeFiles/__idf_main.dir/config_store.c.obj || esp-idf/cmock/libcmock.a esp-idf/console/libconsole.a esp-idf/driver/libdriver.a esp-idf/esp_driver_cam/libesp_driver_cam.a esp-idf/esp_driver_dac/libesp_driver_dac.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sd_intf/libesp_driver_sd_intf.a esp-idf/esp_driver_sdio/libesp_driver_sdio.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_hal_lcd/libesp_hal_lcd.a esp-idf/esp_hal_ledc/libesp_hal_ledc.a esp-idf/esp_hal_mcpwm/libesp_hal_mcpwm.a esp-idf/esp_hal_pcnt/libesp_hal_pcnt.a esp-idf/esp_hal_rmt/libesp_hal_rmt.a esp-idf/esp_hal_twai/libesp_hal_twai.a esp-idf/esp_hid/libesp_hid.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_lcd/libesp_lcd.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/fatfs/libfatfs.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/rt/librt.a esp-idf/sdmmc/libsdmmc.a esp-idf/spiffs/libspiffs.a esp-idf/unity/libunity.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = @"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags" + OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = esp-idf\main\CMakeFiles\__idf_main.dir\__idf_main.pdb + TARGET_FILE = esp-idf\main\libmain.a + TARGET_PDB = esp-idf\main\libmain.pdb + + +############################################# +# Utility command for spiffs_spiffs_bin + +build esp-idf/main/spiffs_spiffs_bin: phony esp-idf/main/CMakeFiles/spiffs_spiffs_bin + + +############################################# +# Utility command for spiffs-flash + +build esp-idf/main/CMakeFiles/spiffs-flash.util: CUSTOM_COMMAND esp-idf/main/spiffs_spiffs_bin + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\main && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -D IDF_PATH=C:/esp/v6.0/esp-idf -D SERIAL_TOOL=C:/Espressif/tools/python/v6.0/venv/Scripts/python.exe;-m;esptool;--chip;esp32 -D SERIAL_TOOL_ARGS=--before=default-reset;--after=hard-reset;write-flash;@spiffs-flash_args -D WORKING_DIRECTORY=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build -P C:/esp/v6.0/esp-idf/components/esptool_py/run_serial_tool.cmake" + DESC = Running utility command for spiffs-flash + pool = console + restat = 1 + +build esp-idf/main/spiffs-flash: phony esp-idf/main/CMakeFiles/spiffs-flash.util + + +############################################# +# Utility command for encrypted-spiffs-flash + +build esp-idf/main/encrypted-spiffs-flash: phony esp-idf/main/CMakeFiles/encrypted-spiffs-flash + + +############################################# +# Utility command for edit_cache + +build esp-idf/main/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\main && C:\Espressif\tools\cmake\4.0.3\bin\cmake-gui.exe -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build esp-idf/main/edit_cache: phony esp-idf/main/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/main/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\main && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe --regenerate-during-build -SC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI -BC:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build esp-idf/main/rebuild_cache: phony esp-idf/main/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build esp-idf/main/list_install_components: phony + + +############################################# +# Utility command for install + +build esp-idf/main/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/main/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\main && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build esp-idf/main/install: phony esp-idf/main/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build esp-idf/main/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/main/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\main && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build esp-idf/main/install/local: phony esp-idf/main/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build esp-idf/main/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/main/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\main && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build esp-idf/main/install/strip: phony esp-idf/main/CMakeFiles/install/strip.util + + +############################################# +# Custom command for esp-idf\main\CMakeFiles\spiffs_spiffs_bin + +build esp-idf/main/CMakeFiles/spiffs_spiffs_bin | ${cmake_ninja_workdir}esp-idf/main/CMakeFiles/spiffs_spiffs_bin: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\main && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe C:/esp/v6.0/esp-idf/components/spiffs/spiffsgen.py 0xf0000 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/spiffs C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/spiffs.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len" + + +############################################# +# Custom command for esp-idf\main\CMakeFiles\encrypted-spiffs-flash + +build esp-idf/main/CMakeFiles/encrypted-spiffs-flash | ${cmake_ninja_workdir}esp-idf/main/CMakeFiles/encrypted-spiffs-flash: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\main && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E echo "Error: The target encrypted-spiffs-flash requires" && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E echo "CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT to be enabled." && C:\Espressif\tools\cmake\4.0.3\bin\cmake.exe -E env "FAIL_MESSAGE=Failed executing target (see errors on lines above)" C:/Espressif/tools/cmake/4.0.3/bin/cmake.exe -P C:/esp/v6.0/esp-idf/tools/cmake/scripts/fail.cmake" + +# ============================================================================= +# Target aliases. + +build __idf_app_update: phony esp-idf/app_update/libapp_update.a + +build __idf_bootloader_support: phony esp-idf/bootloader_support/libbootloader_support.a + +build __idf_cmock: phony esp-idf/cmock/libcmock.a + +build __idf_console: phony esp-idf/console/libconsole.a + +build __idf_cxx: phony esp-idf/cxx/libcxx.a + +build __idf_driver: phony esp-idf/driver/libdriver.a + +build __idf_efuse: phony esp-idf/efuse/libefuse.a + +build __idf_esp-tls: phony esp-idf/esp-tls/libesp-tls.a + +build __idf_esp_adc: phony esp-idf/esp_adc/libesp_adc.a + +build __idf_esp_app_format: phony esp-idf/esp_app_format/libesp_app_format.a + +build __idf_esp_bootloader_format: phony esp-idf/esp_bootloader_format/libesp_bootloader_format.a + +build __idf_esp_coex: phony esp-idf/esp_coex/libesp_coex.a + +build __idf_esp_common: phony esp-idf/esp_common/libesp_common.a + +build __idf_esp_driver_cam: phony esp-idf/esp_driver_cam/libesp_driver_cam.a + +build __idf_esp_driver_dac: phony esp-idf/esp_driver_dac/libesp_driver_dac.a + +build __idf_esp_driver_dma: phony esp-idf/esp_driver_dma/libesp_driver_dma.a + +build __idf_esp_driver_gpio: phony esp-idf/esp_driver_gpio/libesp_driver_gpio.a + +build __idf_esp_driver_gptimer: phony esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a + +build __idf_esp_driver_i2c: phony esp-idf/esp_driver_i2c/libesp_driver_i2c.a + +build __idf_esp_driver_i2s: phony esp-idf/esp_driver_i2s/libesp_driver_i2s.a + +build __idf_esp_driver_ledc: phony esp-idf/esp_driver_ledc/libesp_driver_ledc.a + +build __idf_esp_driver_mcpwm: phony esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a + +build __idf_esp_driver_pcnt: phony esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a + +build __idf_esp_driver_rmt: phony esp-idf/esp_driver_rmt/libesp_driver_rmt.a + +build __idf_esp_driver_sd_intf: phony esp-idf/esp_driver_sd_intf/libesp_driver_sd_intf.a + +build __idf_esp_driver_sdio: phony esp-idf/esp_driver_sdio/libesp_driver_sdio.a + +build __idf_esp_driver_sdm: phony esp-idf/esp_driver_sdm/libesp_driver_sdm.a + +build __idf_esp_driver_sdmmc: phony esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a + +build __idf_esp_driver_sdspi: phony esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a + +build __idf_esp_driver_spi: phony esp-idf/esp_driver_spi/libesp_driver_spi.a + +build __idf_esp_driver_touch_sens: phony esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a + +build __idf_esp_driver_twai: phony esp-idf/esp_driver_twai/libesp_driver_twai.a + +build __idf_esp_driver_uart: phony esp-idf/esp_driver_uart/libesp_driver_uart.a + +build __idf_esp_eth: phony esp-idf/esp_eth/libesp_eth.a + +build __idf_esp_event: phony esp-idf/esp_event/libesp_event.a + +build __idf_esp_gdbstub: phony esp-idf/esp_gdbstub/libesp_gdbstub.a + +build __idf_esp_hal_ana_conv: phony esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a + +build __idf_esp_hal_clock: phony esp-idf/esp_hal_clock/libesp_hal_clock.a + +build __idf_esp_hal_gpio: phony esp-idf/esp_hal_gpio/libesp_hal_gpio.a + +build __idf_esp_hal_gpspi: phony esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a + +build __idf_esp_hal_i2c: phony esp-idf/esp_hal_i2c/libesp_hal_i2c.a + +build __idf_esp_hal_i2s: phony esp-idf/esp_hal_i2s/libesp_hal_i2s.a + +build __idf_esp_hal_lcd: phony esp-idf/esp_hal_lcd/libesp_hal_lcd.a + +build __idf_esp_hal_ledc: phony esp-idf/esp_hal_ledc/libesp_hal_ledc.a + +build __idf_esp_hal_mcpwm: phony esp-idf/esp_hal_mcpwm/libesp_hal_mcpwm.a + +build __idf_esp_hal_mspi: phony esp-idf/esp_hal_mspi/libesp_hal_mspi.a + +build __idf_esp_hal_pcnt: phony esp-idf/esp_hal_pcnt/libesp_hal_pcnt.a + +build __idf_esp_hal_rmt: phony esp-idf/esp_hal_rmt/libesp_hal_rmt.a + +build __idf_esp_hal_security: phony esp-idf/esp_hal_security/libesp_hal_security.a + +build __idf_esp_hal_timg: phony esp-idf/esp_hal_timg/libesp_hal_timg.a + +build __idf_esp_hal_touch_sens: phony esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a + +build __idf_esp_hal_twai: phony esp-idf/esp_hal_twai/libesp_hal_twai.a + +build __idf_esp_hal_uart: phony esp-idf/esp_hal_uart/libesp_hal_uart.a + +build __idf_esp_hal_wdt: phony esp-idf/esp_hal_wdt/libesp_hal_wdt.a + +build __idf_esp_hid: phony esp-idf/esp_hid/libesp_hid.a + +build __idf_esp_http_client: phony esp-idf/esp_http_client/libesp_http_client.a + +build __idf_esp_http_server: phony esp-idf/esp_http_server/libesp_http_server.a + +build __idf_esp_https_ota: phony esp-idf/esp_https_ota/libesp_https_ota.a + +build __idf_esp_https_server: phony esp-idf/esp_https_server/libesp_https_server.a + +build __idf_esp_hw_support: phony esp-idf/esp_hw_support/libesp_hw_support.a + +build __idf_esp_lcd: phony esp-idf/esp_lcd/libesp_lcd.a + +build __idf_esp_libc: phony esp-idf/esp_libc/libesp_libc.a + +build __idf_esp_local_ctrl: phony esp-idf/esp_local_ctrl/libesp_local_ctrl.a + +build __idf_esp_mm: phony esp-idf/esp_mm/libesp_mm.a + +build __idf_esp_netif: phony esp-idf/esp_netif/libesp_netif.a + +build __idf_esp_partition: phony esp-idf/esp_partition/libesp_partition.a + +build __idf_esp_phy: phony esp-idf/esp_phy/libesp_phy.a + +build __idf_esp_pm: phony esp-idf/esp_pm/libesp_pm.a + +build __idf_esp_psram: phony esp-idf/esp_psram/libesp_psram.a + +build __idf_esp_ringbuf: phony esp-idf/esp_ringbuf/libesp_ringbuf.a + +build __idf_esp_rom: phony esp-idf/esp_rom/libesp_rom.a + +build __idf_esp_security: phony esp-idf/esp_security/libesp_security.a + +build __idf_esp_stdio: phony esp-idf/esp_stdio/libesp_stdio.a + +build __idf_esp_system: phony esp-idf/esp_system/libesp_system.a + +build __idf_esp_timer: phony esp-idf/esp_timer/libesp_timer.a + +build __idf_esp_wifi: phony esp-idf/esp_wifi/libesp_wifi.a + +build __idf_fatfs: phony esp-idf/fatfs/libfatfs.a + +build __idf_freertos: phony esp-idf/freertos/libfreertos.a + +build __idf_hal: phony esp-idf/hal/libhal.a + +build __idf_heap: phony esp-idf/heap/libheap.a + +build __idf_http_parser: phony esp-idf/http_parser/libhttp_parser.a + +build __idf_log: phony esp-idf/log/liblog.a + +build __idf_lwip: phony esp-idf/lwip/liblwip.a + +build __idf_main: phony esp-idf/main/libmain.a + +build __idf_mbedtls: phony esp-idf/mbedtls/libmbedtls.a + +build __idf_nvs_flash: phony esp-idf/nvs_flash/libnvs_flash.a + +build __idf_nvs_sec_provider: phony esp-idf/nvs_sec_provider/libnvs_sec_provider.a + +build __idf_perfmon: phony esp-idf/perfmon/libperfmon.a + +build __idf_protobuf-c: phony esp-idf/protobuf-c/libprotobuf-c.a + +build __idf_protocomm: phony esp-idf/protocomm/libprotocomm.a + +build __idf_pthread: phony esp-idf/pthread/libpthread.a + +build __idf_rt: phony esp-idf/rt/librt.a + +build __idf_sdmmc: phony esp-idf/sdmmc/libsdmmc.a + +build __idf_soc: phony esp-idf/soc/libsoc.a + +build __idf_spi_flash: phony esp-idf/spi_flash/libspi_flash.a + +build __idf_spiffs: phony esp-idf/spiffs/libspiffs.a + +build __idf_tcp_transport: phony esp-idf/tcp_transport/libtcp_transport.a + +build __idf_unity: phony esp-idf/unity/libunity.a + +build __idf_vfs: phony esp-idf/vfs/libvfs.a + +build __idf_wear_levelling: phony esp-idf/wear_levelling/libwear_levelling.a + +build __idf_wpa_supplicant: phony esp-idf/wpa_supplicant/libwpa_supplicant.a + +build __idf_xtensa: phony esp-idf/xtensa/libxtensa.a + +build bootloader-flash: phony esp-idf/bootloader/bootloader-flash + +build builtin: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a + +build custom_bundle: phony esp-idf/mbedtls/custom_bundle + +build efuse-common-table: phony esp-idf/efuse/efuse-common-table + +build efuse-custom-table: phony esp-idf/efuse/efuse-custom-table + +build efuse_common_table: phony esp-idf/efuse/efuse_common_table + +build efuse_custom_table: phony esp-idf/efuse/efuse_custom_table + +build efuse_test_table: phony esp-idf/efuse/efuse_test_table + +build encrypted-bootloader-flash: phony esp-idf/bootloader/encrypted-bootloader-flash + +build encrypted-partition-table-flash: phony esp-idf/partition_table/encrypted-partition-table-flash + +build encrypted-spiffs-flash: phony esp-idf/main/encrypted-spiffs-flash + +build everest: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/libeverest.a + +build lib: phony esp-idf/mbedtls/mbedtls/library/lib + +build libapp_update.a: phony esp-idf/app_update/libapp_update.a + +build libbootloader_support.a: phony esp-idf/bootloader_support/libbootloader_support.a + +build libcmock.a: phony esp-idf/cmock/libcmock.a + +build libconsole.a: phony esp-idf/console/libconsole.a + +build libcxx.a: phony esp-idf/cxx/libcxx.a + +build libdriver.a: phony esp-idf/driver/libdriver.a + +build libefuse.a: phony esp-idf/efuse/libefuse.a + +build libesp-tls.a: phony esp-idf/esp-tls/libesp-tls.a + +build libesp_adc.a: phony esp-idf/esp_adc/libesp_adc.a + +build libesp_app_format.a: phony esp-idf/esp_app_format/libesp_app_format.a + +build libesp_bootloader_format.a: phony esp-idf/esp_bootloader_format/libesp_bootloader_format.a + +build libesp_coex.a: phony esp-idf/esp_coex/libesp_coex.a + +build libesp_common.a: phony esp-idf/esp_common/libesp_common.a + +build libesp_driver_cam.a: phony esp-idf/esp_driver_cam/libesp_driver_cam.a + +build libesp_driver_dac.a: phony esp-idf/esp_driver_dac/libesp_driver_dac.a + +build libesp_driver_dma.a: phony esp-idf/esp_driver_dma/libesp_driver_dma.a + +build libesp_driver_gpio.a: phony esp-idf/esp_driver_gpio/libesp_driver_gpio.a + +build libesp_driver_gptimer.a: phony esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a + +build libesp_driver_i2c.a: phony esp-idf/esp_driver_i2c/libesp_driver_i2c.a + +build libesp_driver_i2s.a: phony esp-idf/esp_driver_i2s/libesp_driver_i2s.a + +build libesp_driver_ledc.a: phony esp-idf/esp_driver_ledc/libesp_driver_ledc.a + +build libesp_driver_mcpwm.a: phony esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a + +build libesp_driver_pcnt.a: phony esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a + +build libesp_driver_rmt.a: phony esp-idf/esp_driver_rmt/libesp_driver_rmt.a + +build libesp_driver_sd_intf.a: phony esp-idf/esp_driver_sd_intf/libesp_driver_sd_intf.a + +build libesp_driver_sdio.a: phony esp-idf/esp_driver_sdio/libesp_driver_sdio.a + +build libesp_driver_sdm.a: phony esp-idf/esp_driver_sdm/libesp_driver_sdm.a + +build libesp_driver_sdmmc.a: phony esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a + +build libesp_driver_sdspi.a: phony esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a + +build libesp_driver_spi.a: phony esp-idf/esp_driver_spi/libesp_driver_spi.a + +build libesp_driver_touch_sens.a: phony esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a + +build libesp_driver_twai.a: phony esp-idf/esp_driver_twai/libesp_driver_twai.a + +build libesp_driver_uart.a: phony esp-idf/esp_driver_uart/libesp_driver_uart.a + +build libesp_eth.a: phony esp-idf/esp_eth/libesp_eth.a + +build libesp_event.a: phony esp-idf/esp_event/libesp_event.a + +build libesp_gdbstub.a: phony esp-idf/esp_gdbstub/libesp_gdbstub.a + +build libesp_hal_ana_conv.a: phony esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a + +build libesp_hal_clock.a: phony esp-idf/esp_hal_clock/libesp_hal_clock.a + +build libesp_hal_gpio.a: phony esp-idf/esp_hal_gpio/libesp_hal_gpio.a + +build libesp_hal_gpspi.a: phony esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a + +build libesp_hal_i2c.a: phony esp-idf/esp_hal_i2c/libesp_hal_i2c.a + +build libesp_hal_i2s.a: phony esp-idf/esp_hal_i2s/libesp_hal_i2s.a + +build libesp_hal_lcd.a: phony esp-idf/esp_hal_lcd/libesp_hal_lcd.a + +build libesp_hal_ledc.a: phony esp-idf/esp_hal_ledc/libesp_hal_ledc.a + +build libesp_hal_mcpwm.a: phony esp-idf/esp_hal_mcpwm/libesp_hal_mcpwm.a + +build libesp_hal_mspi.a: phony esp-idf/esp_hal_mspi/libesp_hal_mspi.a + +build libesp_hal_pcnt.a: phony esp-idf/esp_hal_pcnt/libesp_hal_pcnt.a + +build libesp_hal_rmt.a: phony esp-idf/esp_hal_rmt/libesp_hal_rmt.a + +build libesp_hal_security.a: phony esp-idf/esp_hal_security/libesp_hal_security.a + +build libesp_hal_timg.a: phony esp-idf/esp_hal_timg/libesp_hal_timg.a + +build libesp_hal_touch_sens.a: phony esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a + +build libesp_hal_twai.a: phony esp-idf/esp_hal_twai/libesp_hal_twai.a + +build libesp_hal_uart.a: phony esp-idf/esp_hal_uart/libesp_hal_uart.a + +build libesp_hal_wdt.a: phony esp-idf/esp_hal_wdt/libesp_hal_wdt.a + +build libesp_hid.a: phony esp-idf/esp_hid/libesp_hid.a + +build libesp_http_client.a: phony esp-idf/esp_http_client/libesp_http_client.a + +build libesp_http_server.a: phony esp-idf/esp_http_server/libesp_http_server.a + +build libesp_https_ota.a: phony esp-idf/esp_https_ota/libesp_https_ota.a + +build libesp_https_server.a: phony esp-idf/esp_https_server/libesp_https_server.a + +build libesp_hw_support.a: phony esp-idf/esp_hw_support/libesp_hw_support.a + +build libesp_lcd.a: phony esp-idf/esp_lcd/libesp_lcd.a + +build libesp_libc.a: phony esp-idf/esp_libc/libesp_libc.a + +build libesp_local_ctrl.a: phony esp-idf/esp_local_ctrl/libesp_local_ctrl.a + +build libesp_mm.a: phony esp-idf/esp_mm/libesp_mm.a + +build libesp_netif.a: phony esp-idf/esp_netif/libesp_netif.a + +build libesp_partition.a: phony esp-idf/esp_partition/libesp_partition.a + +build libesp_phy.a: phony esp-idf/esp_phy/libesp_phy.a + +build libesp_pm.a: phony esp-idf/esp_pm/libesp_pm.a + +build libesp_psram.a: phony esp-idf/esp_psram/libesp_psram.a + +build libesp_ringbuf.a: phony esp-idf/esp_ringbuf/libesp_ringbuf.a + +build libesp_rom.a: phony esp-idf/esp_rom/libesp_rom.a + +build libesp_security.a: phony esp-idf/esp_security/libesp_security.a + +build libesp_stdio.a: phony esp-idf/esp_stdio/libesp_stdio.a + +build libesp_system.a: phony esp-idf/esp_system/libesp_system.a + +build libesp_timer.a: phony esp-idf/esp_timer/libesp_timer.a + +build libesp_wifi.a: phony esp-idf/esp_wifi/libesp_wifi.a + +build libeverest.a: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/libeverest.a + +build libfatfs.a: phony esp-idf/fatfs/libfatfs.a + +build libfreertos.a: phony esp-idf/freertos/libfreertos.a + +build libhal.a: phony esp-idf/hal/libhal.a + +build libheap.a: phony esp-idf/heap/libheap.a + +build libhttp_parser.a: phony esp-idf/http_parser/libhttp_parser.a + +build liblog.a: phony esp-idf/log/liblog.a + +build liblwip.a: phony esp-idf/lwip/liblwip.a + +build libmain.a: phony esp-idf/main/libmain.a + +build libmbed-builtin.a: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a + +build libmbedtls.a: phony esp-idf/mbedtls/libmbedtls.a + +build libmbedx509.a: phony esp-idf/mbedtls/mbedtls/library/libmbedx509.a + +build libnvs_flash.a: phony esp-idf/nvs_flash/libnvs_flash.a + +build libnvs_sec_provider.a: phony esp-idf/nvs_sec_provider/libnvs_sec_provider.a + +build libp256m.a: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/libp256m.a + +build libperfmon.a: phony esp-idf/perfmon/libperfmon.a + +build libprotobuf-c.a: phony esp-idf/protobuf-c/libprotobuf-c.a + +build libprotocomm.a: phony esp-idf/protocomm/libprotocomm.a + +build libpthread.a: phony esp-idf/pthread/libpthread.a + +build librt.a: phony esp-idf/rt/librt.a + +build libsdmmc.a: phony esp-idf/sdmmc/libsdmmc.a + +build libsoc.a: phony esp-idf/soc/libsoc.a + +build libspi_flash.a: phony esp-idf/spi_flash/libspi_flash.a + +build libspiffs.a: phony esp-idf/spiffs/libspiffs.a + +build libtcp_transport.a: phony esp-idf/tcp_transport/libtcp_transport.a + +build libtfpsacrypto.a: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a + +build libunity.a: phony esp-idf/unity/libunity.a + +build libvfs.a: phony esp-idf/vfs/libvfs.a + +build libwear_levelling.a: phony esp-idf/wear_levelling/libwear_levelling.a + +build libwpa_supplicant.a: phony esp-idf/wpa_supplicant/libwpa_supplicant.a + +build libxtensa.a: phony esp-idf/xtensa/libxtensa.a + +build mbedtls: phony esp-idf/mbedtls/mbedtls/library/libmbedtls.a + +build mbedtls-apidoc: phony esp-idf/mbedtls/mbedtls/mbedtls-apidoc + +build mbedx509: phony esp-idf/mbedtls/mbedtls/library/libmbedx509.a + +build memory_ld_in_preprocess: phony esp-idf/esp_system/memory_ld_in_preprocess + +build p256m: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/libp256m.a + +build partition-table: phony esp-idf/partition_table/partition-table + +build partition-table-flash: phony esp-idf/partition_table/partition-table-flash + +build partition_table: phony esp-idf/partition_table/partition_table + +build partition_table-flash: phony esp-idf/partition_table/partition_table-flash + +build partition_table_bin: phony esp-idf/partition_table/partition_table_bin + +build sections_ld_in_preprocess: phony esp-idf/esp_system/sections_ld_in_preprocess + +build show-efuse-table: phony esp-idf/efuse/show-efuse-table + +build show_efuse_table: phony esp-idf/efuse/show_efuse_table + +build spiffs-flash: phony esp-idf/main/spiffs-flash + +build spiffs_spiffs_bin: phony esp-idf/main/spiffs_spiffs_bin + +build tfpsacrypto: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a + +build tfpsacrypto-apidoc: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/tfpsacrypto-apidoc + +# ============================================================================= +# Folder targets. + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build + +build all: phony bootloader modbus_tcp_esp32.elf app esp-idf/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf + +build esp-idf/all: phony esp-idf/xtensa/all esp-idf/esp_stdio/all esp-idf/esp_hal_dma/all esp-idf/esp_hal_gpspi/all esp-idf/esp_hal_clock/all esp-idf/esp_hal_mspi/all esp-idf/esp_blockdev/all esp-idf/esp_hal_security/all esp-idf/bootloader/all esp-idf/esptool_py/all esp-idf/partition_table/all esp-idf/esp_app_format/all esp-idf/esp_bootloader_format/all esp-idf/app_update/all esp-idf/esp_partition/all esp-idf/efuse/all esp-idf/esp_security/all esp-idf/esp_driver_gpio/all esp-idf/esp_hal_uart/all esp-idf/esp_pm/all esp-idf/esp_mm/all esp-idf/esp_driver_dma/all esp-idf/mbedtls/all esp-idf/esp_hal_timg/all esp-idf/esp_hal_wdt/all esp-idf/esp_hal_i2s/all esp-idf/esp_hal_ana_conv/all esp-idf/esp_hal_rtc_timer/all esp-idf/bootloader_support/all esp-idf/spi_flash/all esp-idf/esp_usb_cdc_rom_console/all esp-idf/esp_system/all esp-idf/esp_common/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_hal_gpio/all esp-idf/esp_hal_usb/all esp-idf/esp_hal_pmu/all esp-idf/esp_hal_touch_sens/all esp-idf/esp_hw_support/all esp-idf/freertos/all esp-idf/esp_libc/all esp-idf/pthread/all esp-idf/cxx/all esp-idf/esp_timer/all esp-idf/esp_ringbuf/all esp-idf/esp_psram/all esp-idf/esp_driver_uart/all esp-idf/esp_driver_gptimer/all esp-idf/app_trace/all esp-idf/esp_event/all esp-idf/nvs_sec_provider/all esp-idf/nvs_flash/all esp-idf/esp_phy/all esp-idf/esp_driver_usb_serial_jtag/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/esp_driver_spi/all esp-idf/esp_gdbstub/all esp-idf/bt/all esp-idf/unity/all esp-idf/cmock/all esp-idf/console/all esp-idf/esp_hal_i2c/all esp-idf/esp_hal_twai/all esp-idf/driver/all esp-idf/http_parser/all esp-idf/esp-tls/all esp-idf/esp_driver_i2s/all esp-idf/esp_adc/all esp-idf/esp_hal_ana_cmpr/all esp-idf/esp_driver_ana_cmpr/all esp-idf/esp_driver_bitscrambler/all esp-idf/esp_hal_cam/all esp-idf/esp_driver_isp/all esp-idf/esp_driver_cam/all esp-idf/esp_driver_dac/all esp-idf/esp_driver_i2c/all esp-idf/esp_driver_i3c/all esp-idf/esp_hal_jpeg/all esp-idf/esp_driver_jpeg/all esp-idf/esp_hal_ledc/all esp-idf/esp_driver_ledc/all esp-idf/esp_hal_mcpwm/all esp-idf/esp_driver_mcpwm/all esp-idf/esp_hal_parlio/all esp-idf/esp_driver_parlio/all esp-idf/esp_hal_pcnt/all esp-idf/esp_driver_pcnt/all esp-idf/esp_hal_ppa/all esp-idf/esp_driver_ppa/all esp-idf/esp_hal_rmt/all esp-idf/esp_driver_rmt/all esp-idf/sdmmc/all esp-idf/esp_driver_sd_intf/all esp-idf/esp_driver_sdio/all esp-idf/esp_driver_sdm/all esp-idf/esp_driver_sdmmc/all esp-idf/esp_driver_sdspi/all esp-idf/esp_driver_touch_sens/all esp-idf/esp_driver_tsens/all esp-idf/esp_driver_twai/all esp-idf/esp_eth/all esp-idf/esp_hal_ieee802154/all esp-idf/esp_hal_lcd/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_lcd/all esp-idf/protobuf-c/all esp-idf/protocomm/all esp-idf/esp_local_ctrl/all esp-idf/esp_trace/all esp-idf/espcoredump/all esp-idf/wear_levelling/all esp-idf/fatfs/all esp-idf/idf_test/all esp-idf/ieee802154/all esp-idf/openthread/all esp-idf/perfmon/all esp-idf/rt/all esp-idf/spiffs/all esp-idf/ulp/all esp-idf/main/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/app_trace + +build esp-idf/app_trace/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/app_update + +build esp-idf/app_update/all: phony esp-idf/app_update/libapp_update.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/bootloader + +build esp-idf/bootloader/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/bootloader_support + +build esp-idf/bootloader_support/all: phony esp-idf/bootloader_support/libbootloader_support.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/bt + +build esp-idf/bt/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/cmock + +build esp-idf/cmock/all: phony esp-idf/cmock/libcmock.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/console + +build esp-idf/console/all: phony esp-idf/console/libconsole.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/cxx + +build esp-idf/cxx/all: phony esp-idf/cxx/libcxx.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/driver + +build esp-idf/driver/all: phony esp-idf/driver/libdriver.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/efuse + +build esp-idf/efuse/all: phony esp-idf/efuse/libefuse.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp-tls + +build esp-idf/esp-tls/all: phony esp-idf/esp-tls/libesp-tls.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_adc + +build esp-idf/esp_adc/all: phony esp-idf/esp_adc/libesp_adc.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_app_format + +build esp-idf/esp_app_format/all: phony esp-idf/esp_app_format/libesp_app_format.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_blockdev + +build esp-idf/esp_blockdev/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_bootloader_format + +build esp-idf/esp_bootloader_format/all: phony esp-idf/esp_bootloader_format/libesp_bootloader_format.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_coex + +build esp-idf/esp_coex/all: phony esp-idf/esp_coex/libesp_coex.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_common + +build esp-idf/esp_common/all: phony esp-idf/esp_common/libesp_common.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_ana_cmpr + +build esp-idf/esp_driver_ana_cmpr/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_bitscrambler + +build esp-idf/esp_driver_bitscrambler/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_cam + +build esp-idf/esp_driver_cam/all: phony esp-idf/esp_driver_cam/libesp_driver_cam.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_dac + +build esp-idf/esp_driver_dac/all: phony esp-idf/esp_driver_dac/libesp_driver_dac.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_dma + +build esp-idf/esp_driver_dma/all: phony esp-idf/esp_driver_dma/libesp_driver_dma.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_gpio + +build esp-idf/esp_driver_gpio/all: phony esp-idf/esp_driver_gpio/libesp_driver_gpio.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_gptimer + +build esp-idf/esp_driver_gptimer/all: phony esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_i2c + +build esp-idf/esp_driver_i2c/all: phony esp-idf/esp_driver_i2c/libesp_driver_i2c.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_i2s + +build esp-idf/esp_driver_i2s/all: phony esp-idf/esp_driver_i2s/libesp_driver_i2s.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_i3c + +build esp-idf/esp_driver_i3c/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_isp + +build esp-idf/esp_driver_isp/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_jpeg + +build esp-idf/esp_driver_jpeg/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_ledc + +build esp-idf/esp_driver_ledc/all: phony esp-idf/esp_driver_ledc/libesp_driver_ledc.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_mcpwm + +build esp-idf/esp_driver_mcpwm/all: phony esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_parlio + +build esp-idf/esp_driver_parlio/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_pcnt + +build esp-idf/esp_driver_pcnt/all: phony esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_ppa + +build esp-idf/esp_driver_ppa/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_rmt + +build esp-idf/esp_driver_rmt/all: phony esp-idf/esp_driver_rmt/libesp_driver_rmt.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sd_intf + +build esp-idf/esp_driver_sd_intf/all: phony esp-idf/esp_driver_sd_intf/libesp_driver_sd_intf.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdio + +build esp-idf/esp_driver_sdio/all: phony esp-idf/esp_driver_sdio/libesp_driver_sdio.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdm + +build esp-idf/esp_driver_sdm/all: phony esp-idf/esp_driver_sdm/libesp_driver_sdm.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdmmc + +build esp-idf/esp_driver_sdmmc/all: phony esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdspi + +build esp-idf/esp_driver_sdspi/all: phony esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_spi + +build esp-idf/esp_driver_spi/all: phony esp-idf/esp_driver_spi/libesp_driver_spi.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_touch_sens + +build esp-idf/esp_driver_touch_sens/all: phony esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_tsens + +build esp-idf/esp_driver_tsens/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_twai + +build esp-idf/esp_driver_twai/all: phony esp-idf/esp_driver_twai/libesp_driver_twai.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_uart + +build esp-idf/esp_driver_uart/all: phony esp-idf/esp_driver_uart/libesp_driver_uart.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_usb_serial_jtag + +build esp-idf/esp_driver_usb_serial_jtag/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_eth + +build esp-idf/esp_eth/all: phony esp-idf/esp_eth/libesp_eth.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_event + +build esp-idf/esp_event/all: phony esp-idf/esp_event/libesp_event.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_gdbstub + +build esp-idf/esp_gdbstub/all: phony esp-idf/esp_gdbstub/libesp_gdbstub.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ana_cmpr + +build esp-idf/esp_hal_ana_cmpr/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ana_conv + +build esp-idf/esp_hal_ana_conv/all: phony esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_cam + +build esp-idf/esp_hal_cam/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_clock + +build esp-idf/esp_hal_clock/all: phony esp-idf/esp_hal_clock/libesp_hal_clock.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_dma + +build esp-idf/esp_hal_dma/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_gpio + +build esp-idf/esp_hal_gpio/all: phony esp-idf/esp_hal_gpio/libesp_hal_gpio.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_gpspi + +build esp-idf/esp_hal_gpspi/all: phony esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_i2c + +build esp-idf/esp_hal_i2c/all: phony esp-idf/esp_hal_i2c/libesp_hal_i2c.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_i2s + +build esp-idf/esp_hal_i2s/all: phony esp-idf/esp_hal_i2s/libesp_hal_i2s.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ieee802154 + +build esp-idf/esp_hal_ieee802154/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_jpeg + +build esp-idf/esp_hal_jpeg/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_lcd + +build esp-idf/esp_hal_lcd/all: phony esp-idf/esp_hal_lcd/libesp_hal_lcd.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ledc + +build esp-idf/esp_hal_ledc/all: phony esp-idf/esp_hal_ledc/libesp_hal_ledc.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_mcpwm + +build esp-idf/esp_hal_mcpwm/all: phony esp-idf/esp_hal_mcpwm/libesp_hal_mcpwm.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_mspi + +build esp-idf/esp_hal_mspi/all: phony esp-idf/esp_hal_mspi/libesp_hal_mspi.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_parlio + +build esp-idf/esp_hal_parlio/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_pcnt + +build esp-idf/esp_hal_pcnt/all: phony esp-idf/esp_hal_pcnt/libesp_hal_pcnt.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_pmu + +build esp-idf/esp_hal_pmu/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ppa + +build esp-idf/esp_hal_ppa/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_rmt + +build esp-idf/esp_hal_rmt/all: phony esp-idf/esp_hal_rmt/libesp_hal_rmt.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_rtc_timer + +build esp-idf/esp_hal_rtc_timer/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_security + +build esp-idf/esp_hal_security/all: phony esp-idf/esp_hal_security/libesp_hal_security.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_timg + +build esp-idf/esp_hal_timg/all: phony esp-idf/esp_hal_timg/libesp_hal_timg.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_touch_sens + +build esp-idf/esp_hal_touch_sens/all: phony esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_twai + +build esp-idf/esp_hal_twai/all: phony esp-idf/esp_hal_twai/libesp_hal_twai.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_uart + +build esp-idf/esp_hal_uart/all: phony esp-idf/esp_hal_uart/libesp_hal_uart.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_usb + +build esp-idf/esp_hal_usb/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_wdt + +build esp-idf/esp_hal_wdt/all: phony esp-idf/esp_hal_wdt/libesp_hal_wdt.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hid + +build esp-idf/esp_hid/all: phony esp-idf/esp_hid/libesp_hid.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_http_client + +build esp-idf/esp_http_client/all: phony esp-idf/esp_http_client/libesp_http_client.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_http_server + +build esp-idf/esp_http_server/all: phony esp-idf/esp_http_server/libesp_http_server.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_https_ota + +build esp-idf/esp_https_ota/all: phony esp-idf/esp_https_ota/libesp_https_ota.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_https_server + +build esp-idf/esp_https_server/all: phony esp-idf/esp_https_server/libesp_https_server.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hw_support + +build esp-idf/esp_hw_support/all: phony esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_hw_support/port/esp32/all esp-idf/esp_hw_support/lowpower/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hw_support/lowpower + +build esp-idf/esp_hw_support/lowpower/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hw_support/port/esp32 + +build esp-idf/esp_hw_support/port/esp32/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_lcd + +build esp-idf/esp_lcd/all: phony esp-idf/esp_lcd/libesp_lcd.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_libc + +build esp-idf/esp_libc/all: phony esp-idf/esp_libc/libesp_libc.a esp-idf/esp_libc/src/port/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_libc/src/port + +build esp-idf/esp_libc/src/port/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_local_ctrl + +build esp-idf/esp_local_ctrl/all: phony esp-idf/esp_local_ctrl/libesp_local_ctrl.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_mm + +build esp-idf/esp_mm/all: phony esp-idf/esp_mm/libesp_mm.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_netif + +build esp-idf/esp_netif/all: phony esp-idf/esp_netif/libesp_netif.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_netif_stack + +build esp-idf/esp_netif_stack/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_partition + +build esp-idf/esp_partition/all: phony esp-idf/esp_partition/libesp_partition.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_phy + +build esp-idf/esp_phy/all: phony esp-idf/esp_phy/libesp_phy.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_pm + +build esp-idf/esp_pm/all: phony esp-idf/esp_pm/libesp_pm.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_psram + +build esp-idf/esp_psram/all: phony esp-idf/esp_psram/libesp_psram.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_ringbuf + +build esp-idf/esp_ringbuf/all: phony esp-idf/esp_ringbuf/libesp_ringbuf.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_rom + +build esp-idf/esp_rom/all: phony esp-idf/esp_rom/libesp_rom.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_security + +build esp-idf/esp_security/all: phony esp-idf/esp_security/libesp_security.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_stdio + +build esp-idf/esp_stdio/all: phony esp-idf/esp_stdio/libesp_stdio.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system + +build esp-idf/esp_system/all: phony esp-idf/esp_system/libesp_system.a esp-idf/esp_system/port/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/port + +build esp-idf/esp_system/port/all: phony esp-idf/esp_system/port/soc/esp32/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/port/soc/esp32 + +build esp-idf/esp_system/port/soc/esp32/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_timer + +build esp-idf/esp_timer/all: phony esp-idf/esp_timer/libesp_timer.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_trace + +build esp-idf/esp_trace/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_usb_cdc_rom_console + +build esp-idf/esp_usb_cdc_rom_console/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_wifi + +build esp-idf/esp_wifi/all: phony esp-idf/esp_wifi/libesp_wifi.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/espcoredump + +build esp-idf/espcoredump/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esptool_py + +build esp-idf/esptool_py/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/fatfs + +build esp-idf/fatfs/all: phony esp-idf/fatfs/libfatfs.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/freertos + +build esp-idf/freertos/all: phony esp-idf/freertos/libfreertos.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/hal + +build esp-idf/hal/all: phony esp-idf/hal/libhal.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/heap + +build esp-idf/heap/all: phony esp-idf/heap/libheap.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/http_parser + +build esp-idf/http_parser/all: phony esp-idf/http_parser/libhttp_parser.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/idf_test + +build esp-idf/idf_test/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/ieee802154 + +build esp-idf/ieee802154/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/log + +build esp-idf/log/all: phony esp-idf/log/liblog.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/lwip + +build esp-idf/lwip/all: phony esp-idf/lwip/liblwip.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/main + +build esp-idf/main/all: phony esp-idf/main/libmain.a esp-idf/main/spiffs_spiffs_bin + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls + +build esp-idf/mbedtls/all: phony esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls + +build esp-idf/mbedtls/mbedtls/all: phony esp-idf/mbedtls/mbedtls/include/all esp-idf/mbedtls/mbedtls/tf-psa-crypto/all esp-idf/mbedtls/mbedtls/library/all esp-idf/mbedtls/mbedtls/pkgconfig/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/include + +build esp-idf/mbedtls/mbedtls/include/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library + +build esp-idf/mbedtls/mbedtls/library/all: phony esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/pkgconfig + +build esp-idf/mbedtls/mbedtls/pkgconfig/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/all: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/include/all esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/all esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/all esp-idf/mbedtls/mbedtls/tf-psa-crypto/pkgconfig/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/all: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/all: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/all esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/all esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/all: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/all: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/libeverest.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/all: phony esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/libp256m.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/include + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/include/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/pkgconfig + +build esp-idf/mbedtls/mbedtls/tf-psa-crypto/pkgconfig/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/nvs_flash + +build esp-idf/nvs_flash/all: phony esp-idf/nvs_flash/libnvs_flash.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/nvs_sec_provider + +build esp-idf/nvs_sec_provider/all: phony esp-idf/nvs_sec_provider/libnvs_sec_provider.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/openthread + +build esp-idf/openthread/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/partition_table + +build esp-idf/partition_table/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/perfmon + +build esp-idf/perfmon/all: phony esp-idf/perfmon/libperfmon.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/protobuf-c + +build esp-idf/protobuf-c/all: phony esp-idf/protobuf-c/libprotobuf-c.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/protocomm + +build esp-idf/protocomm/all: phony esp-idf/protocomm/libprotocomm.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/pthread + +build esp-idf/pthread/all: phony esp-idf/pthread/libpthread.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/rt + +build esp-idf/rt/all: phony esp-idf/rt/librt.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/sdmmc + +build esp-idf/sdmmc/all: phony esp-idf/sdmmc/libsdmmc.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/soc + +build esp-idf/soc/all: phony esp-idf/soc/libsoc.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/spi_flash + +build esp-idf/spi_flash/all: phony esp-idf/spi_flash/libspi_flash.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/spiffs + +build esp-idf/spiffs/all: phony esp-idf/spiffs/libspiffs.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/tcp_transport + +build esp-idf/tcp_transport/all: phony esp-idf/tcp_transport/libtcp_transport.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/ulp + +build esp-idf/ulp/all: phony + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/unity + +build esp-idf/unity/all: phony esp-idf/unity/libunity.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/vfs + +build esp-idf/vfs/all: phony esp-idf/vfs/libvfs.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/wear_levelling + +build esp-idf/wear_levelling/all: phony esp-idf/wear_levelling/libwear_levelling.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/wpa_supplicant + +build esp-idf/wpa_supplicant/all: phony esp-idf/wpa_supplicant/libwpa_supplicant.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/xtensa + +build esp-idf/xtensa/all: phony esp-idf/xtensa/libxtensa.a + +# ============================================================================= +# Built-in targets + + +############################################# +# Re-run CMake if any of its inputs changed. + +build build.ninja C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/xtensa/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_stdio/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_dma/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_gpspi/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_clock/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_mspi/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_blockdev/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_security/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/bootloader/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esptool_py/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/partition_table/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_app_format/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_bootloader_format/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/app_update/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_partition/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/efuse/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_security/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_gpio/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_uart/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_pm/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_mm/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_dma/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/include/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/include/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/pkgconfig/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/pkgconfig/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_timg/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_wdt/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_i2s/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ana_conv/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_rtc_timer/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/bootloader_support/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/spi_flash/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_usb_cdc_rom_console/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/port/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/port/soc/esp32/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_common/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_rom/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/hal/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/log/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/heap/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/soc/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_gpio/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_usb/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_pmu/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_touch_sens/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hw_support/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hw_support/port/esp32/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hw_support/lowpower/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/freertos/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_libc/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_libc/src/port/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/pthread/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/cxx/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_timer/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_ringbuf/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_psram/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_uart/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_gptimer/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/app_trace/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_event/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/nvs_sec_provider/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/nvs_flash/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_phy/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_usb_serial_jtag/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/vfs/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/lwip/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_netif_stack/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_netif/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/wpa_supplicant/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_coex/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_wifi/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_spi/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_gdbstub/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/bt/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/unity/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/cmock/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/console/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_i2c/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_twai/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/driver/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/http_parser/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp-tls/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_i2s/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_adc/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ana_cmpr/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_ana_cmpr/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_bitscrambler/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_cam/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_isp/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_cam/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_dac/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_i2c/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_i3c/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_jpeg/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_jpeg/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ledc/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_ledc/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_mcpwm/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_mcpwm/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_parlio/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_parlio/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_pcnt/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_pcnt/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ppa/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_ppa/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_rmt/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_rmt/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/sdmmc/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sd_intf/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdio/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdm/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdmmc/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdspi/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_touch_sens/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_tsens/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_twai/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_eth/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ieee802154/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_lcd/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hid/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/tcp_transport/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_http_client/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_http_server/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_https_ota/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_https_server/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_lcd/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/protobuf-c/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/protocomm/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_local_ctrl/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_trace/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/espcoredump/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/wear_levelling/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/fatfs/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/idf_test/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/ieee802154/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/openthread/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/perfmon/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/rt/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/spiffs/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/ulp/cmake_install.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/main/cmake_install.cmake: RERUN_CMAKE | C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeASMCompiler.cmake.in C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeASMInformation.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompiler.cmake.in C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCInformation.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompiler.cmake.in C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXInformation.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCommonLanguageInclude.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCompilerIdDetection.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineASMCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCXXCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerId.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerSupport.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineSystem.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeFindBinUtils.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeGenericSystem.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeInitializeConfigs.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeLanguageInformation.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeNinjaFindMake.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakePackageConfigHelpers.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeParseImplicitIncludeInfo.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeParseImplicitLinkInfo.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeParseLibraryArchitecture.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakePrintHelpers.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeSystem.cmake.in C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeSystemSpecificInformation.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeSystemSpecificInitialize.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeTestASMCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeTestCCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeTestCXXCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeTestCompilerCommon.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CheckCCompilerFlag.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CheckCSourceCompiles.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CheckCXXCompilerFlag.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CheckCXXSourceCompiles.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CheckIncludeFile.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CheckLibraryExists.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/ADSP-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/ARMCC-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/ARMClang-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/AppleClang-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Borland-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Bruce-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Clang-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Clang-DetermineCompilerInternal.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Compaq-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Cray-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/CrayClang-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Embarcadero-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Fujitsu-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/GHS-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/GNU-ASM.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/GNU-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/GNU-C.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/GNU-CXX-CXXImportStd.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/GNU-CXX.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/GNU-FindBinUtils.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/GNU.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/HP-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/HP-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/IAR-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Intel-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/LCC-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/MSVC-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/NVHPC-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/NVIDIA-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/OrangeC-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/PGI-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/PathScale-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/SCO-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/SDCC-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/SunPro-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/TI-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/TIClang-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Tasking-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Watcom-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/XL-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/XL-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/XLClang-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/zOS-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/ExternalProject.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/ExternalProject/PatchInfo.txt.in C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/ExternalProject/RepositoryInfo.txt.in C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/ExternalProject/UpdateInfo.txt.in C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/ExternalProject/cfgcmd.txt.in C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/ExternalProject/mkdirs.cmake.in C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/ExternalProject/shared_internal_commands.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/FindGit.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/FindPackageHandleStandardArgs.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/FindPackageMessage.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/FindPython3.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/FindPython/Support.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/FindThreads.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/GNUInstallDirs.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/CMakeASMLinkerInformation.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/CMakeCLinkerInformation.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/CMakeCXXLinkerInformation.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/CMakeCommonLinkerInformation.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/CMakeDetermineLinkerId.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/CMakeInspectASMLinker.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/CMakeInspectCLinker.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/CMakeInspectCXXLinker.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/CheckCompilerFlag.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/CheckFlagCommonConfig.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/CheckSourceCompiles.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/FeatureTesting.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Platform/Generic.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/WriteBasicConfigVersionFile.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/CMakeLists.txt C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/main/CMakeLists.txt C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/partitions.csv C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/sdkconfig C$:/esp/v6.0/esp-idf/.git/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/bt/controller/lib_esp32/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/bt/controller/lib_esp32c3_family/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/bt/esp_ble_mesh/lib/lib/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/bt/host/nimble/nimble/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/cmock/CMock/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/esp_coex/lib/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/esp_phy/lib/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/esp_wifi/lib/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/heap/tlsf/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/lwip/lwip/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/mbedtls/mbedtls/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/openthread/lib/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/openthread/openthread/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/protobuf-c/protobuf-c/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/spiffs/spiffs/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/unity/unity/HEAD C$:/esp/v6.0/esp-idf/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/app_trace/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/app_update/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/bootloader/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/bootloader/project_include.cmake C$:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git C$:/esp/v6.0/esp-idf/components/bootloader_support/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/bt/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/bt/controller/lib_esp32/.git C$:/esp/v6.0/esp-idf/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/.git C$:/esp/v6.0/esp-idf/components/bt/controller/lib_esp32c3_family/.git C$:/esp/v6.0/esp-idf/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/.git C$:/esp/v6.0/esp-idf/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/.git C$:/esp/v6.0/esp-idf/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/.git C$:/esp/v6.0/esp-idf/components/bt/esp_ble_mesh/lib/lib/.git C$:/esp/v6.0/esp-idf/components/bt/host/nimble/nimble/.git C$:/esp/v6.0/esp-idf/components/cmock/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/cmock/CMock/.git C$:/esp/v6.0/esp-idf/components/console/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/cxx/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/driver/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/efuse/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/efuse/esp32/sources.cmake C$:/esp/v6.0/esp-idf/components/esp-tls/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_adc/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_app_format/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_blockdev/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_bootloader_format/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_coex/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_coex/lib/.git C$:/esp/v6.0/esp-idf/components/esp_common/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_common/project_include.cmake C$:/esp/v6.0/esp-idf/components/esp_driver_ana_cmpr/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_bitscrambler/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_bitscrambler/project_include.cmake C$:/esp/v6.0/esp-idf/components/esp_driver_cam/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_dac/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_dma/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_gpio/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_gptimer/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_i2c/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_i2s/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_i3c/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_isp/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_jpeg/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_ledc/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_parlio/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_pcnt/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_ppa/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_rmt/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_sd_intf/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_sdio/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_sdm/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_sdspi/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_spi/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_touch_sens/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_tsens/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_twai/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_uart/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_eth/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_event/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_gdbstub/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_ana_cmpr/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_cam/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_clock/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_dma/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_gpio/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_gpspi/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_i2c/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_i2s/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_ieee802154/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_jpeg/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_lcd/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_ledc/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_mspi/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_parlio/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_pcnt/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_pmu/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_ppa/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_rmt/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_security/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_timg/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_twai/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_uart/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_usb/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_wdt/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hid/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_http_client/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_http_server/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_https_ota/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_https_server/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hw_support/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hw_support/lowpower/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_lcd/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_libc/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_libc/project_include.cmake C$:/esp/v6.0/esp-idf/components/esp_libc/src/port/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_local_ctrl/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_mm/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_netif/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_netif_stack/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_partition/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_phy/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_phy/lib/.git C$:/esp/v6.0/esp-idf/components/esp_pm/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_psram/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_psram/project_include.cmake C$:/esp/v6.0/esp-idf/components/esp_ringbuf/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_rom/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_security/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_stdio/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_system/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_system/port/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_system/port/soc/esp32/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_timer/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_trace/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_wifi/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_wifi/lib/.git C$:/esp/v6.0/esp-idf/components/espcoredump/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esptool_py/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esptool_py/espefuse.cmake C$:/esp/v6.0/esp-idf/components/esptool_py/project_include.cmake C$:/esp/v6.0/esp-idf/components/fatfs/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/fatfs/project_include.cmake C$:/esp/v6.0/esp-idf/components/freertos/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/hal/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/heap/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/heap/tlsf/.git C$:/esp/v6.0/esp-idf/components/http_parser/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/idf_test/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/ieee802154/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/log/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/lwip/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/lwip/lwip/.git C$:/esp/v6.0/esp-idf/components/mbedtls/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/.git C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/pkgconfig/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/pkgconfig/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/nvs_flash/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/nvs_flash/project_include.cmake C$:/esp/v6.0/esp-idf/components/nvs_sec_provider/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/openthread/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/openthread/lib/.git C$:/esp/v6.0/esp-idf/components/openthread/openthread/.git C$:/esp/v6.0/esp-idf/components/partition_table/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/partition_table/project_include.cmake C$:/esp/v6.0/esp-idf/components/perfmon/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/protobuf-c/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c/.git C$:/esp/v6.0/esp-idf/components/protocomm/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/pthread/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/rt/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/sdmmc/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/soc/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/soc/project_include.cmake C$:/esp/v6.0/esp-idf/components/spi_flash/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/spiffs/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/spiffs/project_include.cmake C$:/esp/v6.0/esp-idf/components/spiffs/spiffs/.git C$:/esp/v6.0/esp-idf/components/tcp_transport/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/ulp/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/ulp/project_include.cmake C$:/esp/v6.0/esp-idf/components/unity/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/unity/unity/.git C$:/esp/v6.0/esp-idf/components/vfs/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/wear_levelling/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/wpa_supplicant/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/xtensa/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/xtensa/project_include.cmake C$:/esp/v6.0/esp-idf/tools/cmake/build.cmake C$:/esp/v6.0/esp-idf/tools/cmake/component.cmake C$:/esp/v6.0/esp-idf/tools/cmake/component_validation.cmake C$:/esp/v6.0/esp-idf/tools/cmake/deduplicate_flags.cmake C$:/esp/v6.0/esp-idf/tools/cmake/depgraph.cmake C$:/esp/v6.0/esp-idf/tools/cmake/dfu.cmake C$:/esp/v6.0/esp-idf/tools/cmake/flash_targets.cmake C$:/esp/v6.0/esp-idf/tools/cmake/gdbinit.cmake C$:/esp/v6.0/esp-idf/tools/cmake/git_submodules.cmake C$:/esp/v6.0/esp-idf/tools/cmake/idf.cmake C$:/esp/v6.0/esp-idf/tools/cmake/kconfig.cmake C$:/esp/v6.0/esp-idf/tools/cmake/ldgen.cmake C$:/esp/v6.0/esp-idf/tools/cmake/openocd.cmake C$:/esp/v6.0/esp-idf/tools/cmake/post_build_validation.cmake C$:/esp/v6.0/esp-idf/tools/cmake/prefix_map.cmake C$:/esp/v6.0/esp-idf/tools/cmake/project.cmake C$:/esp/v6.0/esp-idf/tools/cmake/project_description.json.in C$:/esp/v6.0/esp-idf/tools/cmake/symbols.gdbinit.in C$:/esp/v6.0/esp-idf/tools/cmake/targets.cmake C$:/esp/v6.0/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake C$:/esp/v6.0/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake.in C$:/esp/v6.0/esp-idf/tools/cmake/tool_version_check.cmake C$:/esp/v6.0/esp-idf/tools/cmake/toolchain-esp32.cmake C$:/esp/v6.0/esp-idf/tools/cmake/toolchain.cmake C$:/esp/v6.0/esp-idf/tools/cmake/toolchain_flags.cmake C$:/esp/v6.0/esp-idf/tools/cmake/utilities.cmake C$:/esp/v6.0/esp-idf/tools/cmake/version.cmake C$:/esp/v6.0/esp-idf/tools/kconfig_new/confgen.py C$:/esp/v6.0/esp-idf/tools/kconfig_new/config.env.in CMakeCache.txt CMakeFiles/4.0.3/CMakeASMCompiler.cmake CMakeFiles/4.0.3/CMakeCCompiler.cmake CMakeFiles/4.0.3/CMakeCXXCompiler.cmake CMakeFiles/4.0.3/CMakeSystem.cmake CMakeFiles/git-data/grabRef.cmake app-flash_args app-flash_args.in bootloader-flash_args bootloader-prefix/tmp/bootloader-mkdirs.cmake config/sdkconfig.cmake config/sdkconfig.h esp-idf/bootloader/bootloader-flash_args.in esp-idf/main/spiffs-flash_args.in esp-idf/partition_table/partition-table-flash_args.in flash_args flash_args.in flasher_args.json.in ldgen_libraries.in toolchain/toolchain-esp32.cmake + pool = console + + +############################################# +# A missing CMake input file is not an error. + +build C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeASMCompiler.cmake.in C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeASMInformation.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompiler.cmake.in C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCCompilerABI.c C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCInformation.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompiler.cmake.in C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCXXInformation.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCommonLanguageInclude.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeCompilerIdDetection.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineASMCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCXXCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerId.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineCompilerSupport.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeDetermineSystem.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeFindBinUtils.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeGenericSystem.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeInitializeConfigs.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeLanguageInformation.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeNinjaFindMake.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakePackageConfigHelpers.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeParseImplicitIncludeInfo.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeParseImplicitLinkInfo.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeParseLibraryArchitecture.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakePrintHelpers.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeSystem.cmake.in C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeSystemSpecificInformation.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeSystemSpecificInitialize.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeTestASMCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeTestCCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeTestCXXCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CMakeTestCompilerCommon.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CheckCCompilerFlag.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CheckCSourceCompiles.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CheckCXXCompilerFlag.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CheckCXXSourceCompiles.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CheckIncludeFile.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/CheckLibraryExists.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/ADSP-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/ARMCC-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/ARMClang-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/AppleClang-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Borland-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Bruce-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Clang-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Clang-DetermineCompilerInternal.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Compaq-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Cray-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/CrayClang-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Embarcadero-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Fujitsu-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/GHS-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/GNU-ASM.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/GNU-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/GNU-C.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/GNU-CXX-CXXImportStd.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/GNU-CXX.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/GNU-FindBinUtils.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/GNU.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/HP-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/HP-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/IAR-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Intel-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/LCC-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/MSVC-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/NVHPC-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/NVIDIA-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/OrangeC-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/PGI-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/PathScale-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/SCO-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/SDCC-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/SunPro-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/TI-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/TIClang-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Tasking-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/Watcom-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/XL-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/XL-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/XLClang-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/zOS-C-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/ExternalProject.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/ExternalProject/PatchInfo.txt.in C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/ExternalProject/RepositoryInfo.txt.in C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/ExternalProject/UpdateInfo.txt.in C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/ExternalProject/cfgcmd.txt.in C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/ExternalProject/mkdirs.cmake.in C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/ExternalProject/shared_internal_commands.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/FindGit.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/FindPackageHandleStandardArgs.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/FindPackageMessage.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/FindPython3.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/FindPython/Support.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/FindThreads.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/GNUInstallDirs.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/CMakeASMLinkerInformation.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/CMakeCLinkerInformation.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/CMakeCXXLinkerInformation.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/CMakeCommonLinkerInformation.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/CMakeDetermineLinkerId.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/CMakeInspectASMLinker.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/CMakeInspectCLinker.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/CMakeInspectCXXLinker.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/CheckCompilerFlag.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/CheckFlagCommonConfig.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/CheckSourceCompiles.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Internal/FeatureTesting.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/Platform/Generic.cmake C$:/Espressif/tools/cmake/4.0.3/share/cmake-4.0/Modules/WriteBasicConfigVersionFile.cmake C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/CMakeLists.txt C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/main/CMakeLists.txt C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/partitions.csv C$:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/sdkconfig C$:/esp/v6.0/esp-idf/.git/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/bt/controller/lib_esp32/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/bt/controller/lib_esp32c3_family/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/bt/esp_ble_mesh/lib/lib/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/bt/host/nimble/nimble/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/cmock/CMock/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/esp_coex/lib/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/esp_phy/lib/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/esp_wifi/lib/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/heap/tlsf/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/lwip/lwip/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/mbedtls/mbedtls/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/openthread/lib/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/openthread/openthread/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/protobuf-c/protobuf-c/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/spiffs/spiffs/HEAD C$:/esp/v6.0/esp-idf/.git/modules/components/unity/unity/HEAD C$:/esp/v6.0/esp-idf/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/app_trace/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/app_update/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/bootloader/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/bootloader/project_include.cmake C$:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git C$:/esp/v6.0/esp-idf/components/bootloader_support/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/bt/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/bt/controller/lib_esp32/.git C$:/esp/v6.0/esp-idf/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/.git C$:/esp/v6.0/esp-idf/components/bt/controller/lib_esp32c3_family/.git C$:/esp/v6.0/esp-idf/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/.git C$:/esp/v6.0/esp-idf/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/.git C$:/esp/v6.0/esp-idf/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/.git C$:/esp/v6.0/esp-idf/components/bt/esp_ble_mesh/lib/lib/.git C$:/esp/v6.0/esp-idf/components/bt/host/nimble/nimble/.git C$:/esp/v6.0/esp-idf/components/cmock/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/cmock/CMock/.git C$:/esp/v6.0/esp-idf/components/console/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/cxx/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/driver/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/efuse/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/efuse/esp32/sources.cmake C$:/esp/v6.0/esp-idf/components/esp-tls/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_adc/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_app_format/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_blockdev/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_bootloader_format/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_coex/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_coex/lib/.git C$:/esp/v6.0/esp-idf/components/esp_common/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_common/project_include.cmake C$:/esp/v6.0/esp-idf/components/esp_driver_ana_cmpr/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_bitscrambler/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_bitscrambler/project_include.cmake C$:/esp/v6.0/esp-idf/components/esp_driver_cam/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_dac/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_dma/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_gpio/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_gptimer/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_i2c/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_i2s/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_i3c/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_isp/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_jpeg/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_ledc/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_parlio/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_pcnt/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_ppa/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_rmt/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_sd_intf/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_sdio/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_sdm/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_sdspi/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_spi/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_touch_sens/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_tsens/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_twai/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_uart/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_eth/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_event/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_gdbstub/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_ana_cmpr/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_cam/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_clock/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_dma/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_gpio/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_gpspi/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_i2c/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_i2s/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_ieee802154/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_jpeg/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_lcd/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_ledc/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_mspi/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_parlio/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_pcnt/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_pmu/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_ppa/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_rmt/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_security/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_timg/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_twai/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_uart/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_usb/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hal_wdt/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hid/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_http_client/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_http_server/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_https_ota/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_https_server/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hw_support/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hw_support/lowpower/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_lcd/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_libc/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_libc/project_include.cmake C$:/esp/v6.0/esp-idf/components/esp_libc/src/port/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_local_ctrl/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_mm/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_netif/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_netif_stack/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_partition/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_phy/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_phy/lib/.git C$:/esp/v6.0/esp-idf/components/esp_pm/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_psram/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_psram/project_include.cmake C$:/esp/v6.0/esp-idf/components/esp_ringbuf/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_rom/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_security/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_stdio/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_system/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_system/port/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_system/port/soc/esp32/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_timer/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_trace/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_wifi/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esp_wifi/lib/.git C$:/esp/v6.0/esp-idf/components/espcoredump/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esptool_py/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/esptool_py/espefuse.cmake C$:/esp/v6.0/esp-idf/components/esptool_py/project_include.cmake C$:/esp/v6.0/esp-idf/components/fatfs/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/fatfs/project_include.cmake C$:/esp/v6.0/esp-idf/components/freertos/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/hal/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/heap/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/heap/tlsf/.git C$:/esp/v6.0/esp-idf/components/http_parser/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/idf_test/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/ieee802154/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/log/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/lwip/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/lwip/lwip/.git C$:/esp/v6.0/esp-idf/components/mbedtls/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/.git C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/pkgconfig/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/pkgconfig/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/nvs_flash/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/nvs_flash/project_include.cmake C$:/esp/v6.0/esp-idf/components/nvs_sec_provider/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/openthread/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/openthread/lib/.git C$:/esp/v6.0/esp-idf/components/openthread/openthread/.git C$:/esp/v6.0/esp-idf/components/partition_table/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/partition_table/project_include.cmake C$:/esp/v6.0/esp-idf/components/perfmon/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/protobuf-c/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c/.git C$:/esp/v6.0/esp-idf/components/protocomm/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/pthread/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/rt/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/sdmmc/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/soc/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/soc/project_include.cmake C$:/esp/v6.0/esp-idf/components/spi_flash/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/spiffs/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/spiffs/project_include.cmake C$:/esp/v6.0/esp-idf/components/spiffs/spiffs/.git C$:/esp/v6.0/esp-idf/components/tcp_transport/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/ulp/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/ulp/project_include.cmake C$:/esp/v6.0/esp-idf/components/unity/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/unity/unity/.git C$:/esp/v6.0/esp-idf/components/vfs/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/wear_levelling/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/wpa_supplicant/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/xtensa/CMakeLists.txt C$:/esp/v6.0/esp-idf/components/xtensa/project_include.cmake C$:/esp/v6.0/esp-idf/tools/cmake/build.cmake C$:/esp/v6.0/esp-idf/tools/cmake/component.cmake C$:/esp/v6.0/esp-idf/tools/cmake/component_validation.cmake C$:/esp/v6.0/esp-idf/tools/cmake/deduplicate_flags.cmake C$:/esp/v6.0/esp-idf/tools/cmake/depgraph.cmake C$:/esp/v6.0/esp-idf/tools/cmake/dfu.cmake C$:/esp/v6.0/esp-idf/tools/cmake/flash_targets.cmake C$:/esp/v6.0/esp-idf/tools/cmake/gdbinit.cmake C$:/esp/v6.0/esp-idf/tools/cmake/git_submodules.cmake C$:/esp/v6.0/esp-idf/tools/cmake/idf.cmake C$:/esp/v6.0/esp-idf/tools/cmake/kconfig.cmake C$:/esp/v6.0/esp-idf/tools/cmake/ldgen.cmake C$:/esp/v6.0/esp-idf/tools/cmake/openocd.cmake C$:/esp/v6.0/esp-idf/tools/cmake/post_build_validation.cmake C$:/esp/v6.0/esp-idf/tools/cmake/prefix_map.cmake C$:/esp/v6.0/esp-idf/tools/cmake/project.cmake C$:/esp/v6.0/esp-idf/tools/cmake/project_description.json.in C$:/esp/v6.0/esp-idf/tools/cmake/symbols.gdbinit.in C$:/esp/v6.0/esp-idf/tools/cmake/targets.cmake C$:/esp/v6.0/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake C$:/esp/v6.0/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake.in C$:/esp/v6.0/esp-idf/tools/cmake/tool_version_check.cmake C$:/esp/v6.0/esp-idf/tools/cmake/toolchain-esp32.cmake C$:/esp/v6.0/esp-idf/tools/cmake/toolchain.cmake C$:/esp/v6.0/esp-idf/tools/cmake/toolchain_flags.cmake C$:/esp/v6.0/esp-idf/tools/cmake/utilities.cmake C$:/esp/v6.0/esp-idf/tools/cmake/version.cmake C$:/esp/v6.0/esp-idf/tools/kconfig_new/confgen.py C$:/esp/v6.0/esp-idf/tools/kconfig_new/config.env.in CMakeCache.txt CMakeFiles/4.0.3/CMakeASMCompiler.cmake CMakeFiles/4.0.3/CMakeCCompiler.cmake CMakeFiles/4.0.3/CMakeCXXCompiler.cmake CMakeFiles/4.0.3/CMakeSystem.cmake CMakeFiles/git-data/grabRef.cmake app-flash_args app-flash_args.in bootloader-flash_args bootloader-prefix/tmp/bootloader-mkdirs.cmake config/sdkconfig.cmake config/sdkconfig.h esp-idf/bootloader/bootloader-flash_args.in esp-idf/main/spiffs-flash_args.in esp-idf/partition_table/partition-table-flash_args.in flash_args flash_args.in flasher_args.json.in ldgen_libraries.in toolchain/toolchain-esp32.cmake: phony + + +############################################# +# Clean additional files. + +build CMakeFiles/clean.additional: CLEAN_ADDITIONAL + + +############################################# +# Clean all the built files. + +build clean: CLEAN CMakeFiles/clean.additional + + +############################################# +# Print all primary targets available. + +build help: HELP + + +############################################# +# Make the all target the default. + +default all diff --git a/build/cmake_install.cmake b/build/cmake_install.cmake new file mode 100644 index 0000000..f77fa99 --- /dev/null +++ b/build/cmake_install.cmake @@ -0,0 +1,66 @@ +# Install script for directory: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() +if(CMAKE_INSTALL_COMPONENT) + if(CMAKE_INSTALL_COMPONENT MATCHES "^[a-zA-Z0-9_.+-]+$") + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") + else() + string(MD5 CMAKE_INST_COMP_HASH "${CMAKE_INSTALL_COMPONENT}") + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INST_COMP_HASH}.txt") + unset(CMAKE_INST_COMP_HASH) + endif() +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/compile_commands.json b/build/compile_commands.json new file mode 100644 index 0000000..8e4c4e3 --- /dev/null +++ b/build/compile_commands.json @@ -0,0 +1,5270 @@ +[ +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PSA_ITS_AVAILABLE -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUNITY_INCLUDE_CONFIG_H -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/app_update/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/pthread/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include -IC:/esp/v6.0/esp-idf/components/esp_psram/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gptimer/include -IC:/esp/v6.0/esp-idf/components/app_trace/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/esp_coex/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/unity/include -IC:/esp/v6.0/esp-idf/components/unity/unity/src -IC:/esp/v6.0/esp-idf/components/cmock/CMock/src -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/esp32/include -IC:/esp/v6.0/esp-idf/components/driver/i2c/include -IC:/esp/v6.0/esp-idf/components/driver/touch_sensor/include -IC:/esp/v6.0/esp-idf/components/driver/twai/include -IC:/esp/v6.0/esp-idf/components/driver/touch_sensor/esp32/include -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_adc/include -IC:/esp/v6.0/esp-idf/components/esp_adc/interface -IC:/esp/v6.0/esp-idf/components/esp_adc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_cmpr/include -IC:/esp/v6.0/esp-idf/components/esp_driver_ana_cmpr/include -IC:/esp/v6.0/esp-idf/components/esp_driver_bitscrambler/include -IC:/esp/v6.0/esp-idf/components/esp_hal_cam/include -IC:/esp/v6.0/esp-idf/components/esp_driver_isp/include -IC:/esp/v6.0/esp-idf/components/esp_driver_cam/include -IC:/esp/v6.0/esp-idf/components/esp_driver_cam/interface -IC:/esp/v6.0/esp-idf/components/esp_driver_dac/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i3c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_jpeg/include -IC:/esp/v6.0/esp-idf/components/esp_driver_jpeg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ledc/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ledc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_ledc/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pcnt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pcnt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_pcnt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ppa/include -IC:/esp/v6.0/esp-idf/components/esp_driver_ppa/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_rmt/include -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sd_intf/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/legacy/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdspi/include -IC:/esp/v6.0/esp-idf/components/esp_driver_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_driver_touch_sens/hw_ver1/include -IC:/esp/v6.0/esp-idf/components/esp_driver_tsens/include -IC:/esp/v6.0/esp-idf/components/esp_driver_twai/include -IC:/esp/v6.0/esp-idf/components/esp_eth/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ieee802154/include -IC:/esp/v6.0/esp-idf/components/esp_hal_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_hid/include -IC:/esp/v6.0/esp-idf/components/tcp_transport/include -IC:/esp/v6.0/esp-idf/components/esp_http_client/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/esp_https_ota/include -IC:/esp/v6.0/esp-idf/components/esp_https_server/include -IC:/esp/v6.0/esp-idf/components/esp_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_lcd/interface -IC:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c -IC:/esp/v6.0/esp-idf/components/protocomm/include/common -IC:/esp/v6.0/esp-idf/components/protocomm/include/security -IC:/esp/v6.0/esp-idf/components/protocomm/include/transports -IC:/esp/v6.0/esp-idf/components/protocomm/include/crypto/srp6a -IC:/esp/v6.0/esp-idf/components/protocomm/proto-c -IC:/esp/v6.0/esp-idf/components/esp_local_ctrl/include -IC:/esp/v6.0/esp-idf/components/esp_trace/include -IC:/esp/v6.0/esp-idf/components/wear_levelling/include -IC:/esp/v6.0/esp-idf/components/fatfs/diskio -IC:/esp/v6.0/esp-idf/components/fatfs/src -IC:/esp/v6.0/esp-idf/components/fatfs/vfs -IC:/esp/v6.0/esp-idf/components/idf_test/include -IC:/esp/v6.0/esp-idf/components/idf_test/include/esp32 -IC:/esp/v6.0/esp-idf/components/ieee802154/include -IC:/esp/v6.0/esp-idf/components/perfmon/include -IC:/esp/v6.0/esp-idf/components/rt/include -IC:/esp/v6.0/esp-idf/components/spiffs/include -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/main @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -o CMakeFiles\\modbus_tcp_esp32.elf.dir\\project_elf_src_esp32.c.obj -c C:\\Users\\e.adame\\Documents\\ESP32_Modbus_RTU_to_PICS_MULTI\\build\\project_elf_src_esp32.c", + "file": "C:\\Users\\e.adame\\Documents\\ESP32_Modbus_RTU_to_PICS_MULTI\\build\\project_elf_src_esp32.c", + "output": "CMakeFiles\\modbus_tcp_esp32.elf.dir\\project_elf_src_esp32.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\eri.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\xtensa\\eri.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\xtensa\\eri.c", + "output": "esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\eri.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\xt_trax.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\xtensa\\xt_trax.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\xtensa\\xt_trax.c", + "output": "esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\xt_trax.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/asmflags\" -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\xtensa_context.S.obj -c C:\\esp\\v6.0\\esp-idf\\components\\xtensa\\xtensa_context.S", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\xtensa\\xtensa_context.S", + "output": "esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\xtensa_context.S.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/asmflags\" -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\xtensa_intr_asm.S.obj -c C:\\esp\\v6.0\\esp-idf\\components\\xtensa\\xtensa_intr_asm.S", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\xtensa\\xtensa_intr_asm.S", + "output": "esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\xtensa_intr_asm.S.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\xtensa_intr.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\xtensa\\xtensa_intr.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\xtensa\\xtensa_intr.c", + "output": "esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\xtensa_intr.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/asmflags\" -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\xtensa_vectors.S.obj -c C:\\esp\\v6.0\\esp-idf\\components\\xtensa\\xtensa_vectors.S", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\xtensa\\xtensa_vectors.S", + "output": "esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\xtensa_vectors.S.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_stdio\\CMakeFiles\\__idf_esp_stdio.dir\\stdio_vfs.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_stdio\\stdio_vfs.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_stdio\\stdio_vfs.c", + "output": "esp-idf\\esp_stdio\\CMakeFiles\\__idf_esp_stdio.dir\\stdio_vfs.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_stdio\\CMakeFiles\\__idf_esp_stdio.dir\\stdio_simple.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_stdio\\stdio_simple.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_stdio\\stdio_simple.c", + "output": "esp-idf\\esp_stdio\\CMakeFiles\\__idf_esp_stdio.dir\\stdio_simple.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_stdio\\CMakeFiles\\__idf_esp_stdio.dir\\stdio_syscalls_simple.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_stdio\\stdio_syscalls_simple.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_stdio\\stdio_syscalls_simple.c", + "output": "esp-idf\\esp_stdio\\CMakeFiles\\__idf_esp_stdio.dir\\stdio_syscalls_simple.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_gpspi\\CMakeFiles\\__idf_esp_hal_gpspi.dir\\esp32\\spi_periph.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_gpspi\\esp32\\spi_periph.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_gpspi\\esp32\\spi_periph.c", + "output": "esp-idf\\esp_hal_gpspi\\CMakeFiles\\__idf_esp_hal_gpspi.dir\\esp32\\spi_periph.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_gpspi\\CMakeFiles\\__idf_esp_hal_gpspi.dir\\spi_hal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_gpspi\\spi_hal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_gpspi\\spi_hal.c", + "output": "esp-idf\\esp_hal_gpspi\\CMakeFiles\\__idf_esp_hal_gpspi.dir\\spi_hal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_gpspi\\CMakeFiles\\__idf_esp_hal_gpspi.dir\\spi_hal_iram.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_gpspi\\spi_hal_iram.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_gpspi\\spi_hal_iram.c", + "output": "esp-idf\\esp_hal_gpspi\\CMakeFiles\\__idf_esp_hal_gpspi.dir\\spi_hal_iram.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_gpspi\\CMakeFiles\\__idf_esp_hal_gpspi.dir\\spi_slave_hal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_gpspi\\spi_slave_hal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_gpspi\\spi_slave_hal.c", + "output": "esp-idf\\esp_hal_gpspi\\CMakeFiles\\__idf_esp_hal_gpspi.dir\\spi_slave_hal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_gpspi\\CMakeFiles\\__idf_esp_hal_gpspi.dir\\spi_slave_hal_iram.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_gpspi\\spi_slave_hal_iram.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_gpspi\\spi_slave_hal_iram.c", + "output": "esp-idf\\esp_hal_gpspi\\CMakeFiles\\__idf_esp_hal_gpspi.dir\\spi_slave_hal_iram.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_clock\\CMakeFiles\\__idf_esp_hal_clock.dir\\esp32\\clk_tree_hal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_clock\\esp32\\clk_tree_hal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_clock\\esp32\\clk_tree_hal.c", + "output": "esp-idf\\esp_hal_clock\\CMakeFiles\\__idf_esp_hal_clock.dir\\esp32\\clk_tree_hal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_mspi\\CMakeFiles\\__idf_esp_hal_mspi.dir\\spi_flash_hal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_mspi\\spi_flash_hal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_mspi\\spi_flash_hal.c", + "output": "esp-idf\\esp_hal_mspi\\CMakeFiles\\__idf_esp_hal_mspi.dir\\spi_flash_hal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_mspi\\CMakeFiles\\__idf_esp_hal_mspi.dir\\spi_flash_hal_iram.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_mspi\\spi_flash_hal_iram.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_mspi\\spi_flash_hal_iram.c", + "output": "esp-idf\\esp_hal_mspi\\CMakeFiles\\__idf_esp_hal_mspi.dir\\spi_flash_hal_iram.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_mspi\\CMakeFiles\\__idf_esp_hal_mspi.dir\\spi_flash_encrypt_hal_iram.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_mspi\\spi_flash_encrypt_hal_iram.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_mspi\\spi_flash_encrypt_hal_iram.c", + "output": "esp-idf\\esp_hal_mspi\\CMakeFiles\\__idf_esp_hal_mspi.dir\\spi_flash_encrypt_hal_iram.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_security\\CMakeFiles\\__idf_esp_hal_security.dir\\mpi_hal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_security\\mpi_hal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_security\\mpi_hal.c", + "output": "esp-idf\\esp_hal_security\\CMakeFiles\\__idf_esp_hal_security.dir\\mpi_hal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_security\\CMakeFiles\\__idf_esp_hal_security.dir\\sha_hal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_security\\sha_hal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_security\\sha_hal.c", + "output": "esp-idf\\esp_hal_security\\CMakeFiles\\__idf_esp_hal_security.dir\\sha_hal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_security\\CMakeFiles\\__idf_esp_hal_security.dir\\aes_hal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_security\\aes_hal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_security\\aes_hal.c", + "output": "esp-idf\\esp_hal_security\\CMakeFiles\\__idf_esp_hal_security.dir\\aes_hal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_security\\CMakeFiles\\__idf_esp_hal_security.dir\\mpu_hal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_security\\mpu_hal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_security\\mpu_hal.c", + "output": "esp-idf\\esp_hal_security\\CMakeFiles\\__idf_esp_hal_security.dir\\mpu_hal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D PROJECT_NAME=\\\"modbus_tcp_esp32\\\" -DPROJECT_VER=\\\"1\\\" -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_app_format\\CMakeFiles\\__idf_esp_app_format.dir\\esp_app_desc.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_app_format\\esp_app_desc.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_app_format\\esp_app_desc.c", + "output": "esp-idf\\esp_app_format\\CMakeFiles\\__idf_esp_app_format.dir\\esp_app_desc.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_bootloader_format\\CMakeFiles\\__idf_esp_bootloader_format.dir\\esp_bootloader_desc.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_bootloader_format\\esp_bootloader_desc.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_bootloader_format\\esp_bootloader_desc.c", + "output": "esp-idf\\esp_bootloader_format\\CMakeFiles\\__idf_esp_bootloader_format.dir\\esp_bootloader_desc.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/app_update/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\app_update\\CMakeFiles\\__idf_app_update.dir\\esp_ota_ops.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\app_update\\esp_ota_ops.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\app_update\\esp_ota_ops.c", + "output": "esp-idf\\app_update\\CMakeFiles\\__idf_app_update.dir\\esp_ota_ops.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/app_update/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_partition\\CMakeFiles\\__idf_esp_partition.dir\\partition.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_partition\\partition.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_partition\\partition.c", + "output": "esp-idf\\esp_partition\\CMakeFiles\\__idf_esp_partition.dir\\partition.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/app_update/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_partition\\CMakeFiles\\__idf_esp_partition.dir\\partition_target.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_partition\\partition_target.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_partition\\partition_target.c", + "output": "esp-idf\\esp_partition\\CMakeFiles\\__idf_esp_partition.dir\\partition_target.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/private_include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32\\esp_efuse_table.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\efuse\\esp32\\esp_efuse_table.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\efuse\\esp32\\esp_efuse_table.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32\\esp_efuse_table.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/private_include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32\\esp_efuse_fields.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\efuse\\esp32\\esp_efuse_fields.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\efuse\\esp32\\esp_efuse_fields.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32\\esp_efuse_fields.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/private_include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32\\esp_efuse_utility.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\efuse\\esp32\\esp_efuse_utility.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\efuse\\esp32\\esp_efuse_utility.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32\\esp_efuse_utility.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/private_include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_api.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\efuse\\src\\esp_efuse_api.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\efuse\\src\\esp_efuse_api.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_api.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/private_include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_fields.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\efuse\\src\\esp_efuse_fields.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\efuse\\src\\esp_efuse_fields.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_fields.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/private_include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_utility.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\efuse\\src\\esp_efuse_utility.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\efuse\\src\\esp_efuse_utility.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_utility.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/private_include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\efuse_controller\\keys\\without_key_purposes\\three_key_blocks\\esp_efuse_api_key.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\efuse\\src\\efuse_controller\\keys\\without_key_purposes\\three_key_blocks\\esp_efuse_api_key.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\efuse\\src\\efuse_controller\\keys\\without_key_purposes\\three_key_blocks\\esp_efuse_api_key.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\efuse_controller\\keys\\without_key_purposes\\three_key_blocks\\esp_efuse_api_key.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/private_include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_startup.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\efuse\\src\\esp_efuse_startup.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\efuse\\src\\esp_efuse_startup.c", + "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_startup.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/src/esp32 -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\init.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_security\\src\\init.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_security\\src\\init.c", + "output": "esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\init.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/src/esp32 -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\esp_crypto_lock.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_security\\src\\esp_crypto_lock.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_security\\src\\esp_crypto_lock.c", + "output": "esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\esp_crypto_lock.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_security/src/esp32 -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\esp_crypto_periph_clk.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_security\\src\\esp_crypto_periph_clk.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_security\\src\\esp_crypto_periph_clk.c", + "output": "esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\esp_crypto_periph_clk.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_pm/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\gpio.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_gpio\\src\\gpio.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_gpio\\src\\gpio.c", + "output": "esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\gpio.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_pm/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\gpio_glitch_filter_ops.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_gpio\\src\\gpio_glitch_filter_ops.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_gpio\\src\\gpio_glitch_filter_ops.c", + "output": "esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\gpio_glitch_filter_ops.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_pm/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\rtc_io.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_gpio\\src\\rtc_io.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_gpio\\src\\rtc_io.c", + "output": "esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\rtc_io.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_uart\\CMakeFiles\\__idf_esp_hal_uart.dir\\uart_hal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_uart\\uart_hal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_uart\\uart_hal.c", + "output": "esp-idf\\esp_hal_uart\\CMakeFiles\\__idf_esp_hal_uart.dir\\uart_hal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_uart\\CMakeFiles\\__idf_esp_hal_uart.dir\\uart_hal_iram.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_uart\\uart_hal_iram.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_uart\\uart_hal_iram.c", + "output": "esp-idf\\esp_hal_uart\\CMakeFiles\\__idf_esp_hal_uart.dir\\uart_hal_iram.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_uart\\CMakeFiles\\__idf_esp_hal_uart.dir\\esp32\\uart_periph.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_uart\\esp32\\uart_periph.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_uart\\esp32\\uart_periph.c", + "output": "esp-idf\\esp_hal_uart\\CMakeFiles\\__idf_esp_hal_uart.dir\\esp32\\uart_periph.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_pm\\CMakeFiles\\__idf_esp_pm.dir\\pm_locks.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_pm\\pm_locks.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_pm\\pm_locks.c", + "output": "esp-idf\\esp_pm\\CMakeFiles\\__idf_esp_pm.dir\\pm_locks.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_pm\\CMakeFiles\\__idf_esp_pm.dir\\pm_trace.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_pm\\pm_trace.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_pm\\pm_trace.c", + "output": "esp-idf\\esp_pm\\CMakeFiles\\__idf_esp_pm.dir\\pm_trace.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_pm\\CMakeFiles\\__idf_esp_pm.dir\\pm_impl.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_pm\\pm_impl.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_pm\\pm_impl.c", + "output": "esp-idf\\esp_pm\\CMakeFiles\\__idf_esp_pm.dir\\pm_impl.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\esp_mmu_map.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_mm\\esp_mmu_map.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_mm\\esp_mmu_map.c", + "output": "esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\esp_mmu_map.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\port\\esp32\\ext_mem_layout.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_mm\\port\\esp32\\ext_mem_layout.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_mm\\port\\esp32\\ext_mem_layout.c", + "output": "esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\port\\esp32\\ext_mem_layout.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\esp_cache_msync.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_mm\\esp_cache_msync.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_mm\\esp_cache_msync.c", + "output": "esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\esp_cache_msync.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\esp_cache_utils.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_mm\\esp_cache_utils.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_mm\\esp_cache_utils.c", + "output": "esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\esp_cache_utils.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\cache_esp32.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_mm\\cache_esp32.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_mm\\cache_esp32.c", + "output": "esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\cache_esp32.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\heap_align_hw.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_mm\\heap_align_hw.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_mm\\heap_align_hw.c", + "output": "esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\heap_align_hw.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_dma\\CMakeFiles\\__idf_esp_driver_dma.dir\\src\\esp_dma_utils.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_dma\\src\\esp_dma_utils.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_dma\\src\\esp_dma_utils.c", + "output": "esp-idf\\esp_driver_dma\\CMakeFiles\\__idf_esp_driver_dma.dir\\src\\esp_dma_utils.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_dma\\CMakeFiles\\__idf_esp_driver_dma.dir\\src\\gdma_link.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_dma\\src\\gdma_link.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_dma\\src\\gdma_link.c", + "output": "esp-idf\\esp_driver_dma\\CMakeFiles\\__idf_esp_driver_dma.dir\\src\\gdma_link.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Os -o esp-idf\\mbedtls\\CMakeFiles\\__idf_mbedtls.dir\\esp_crt_bundle\\esp_crt_bundle.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\esp_crt_bundle\\esp_crt_bundle.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\esp_crt_bundle\\esp_crt_bundle.c", + "output": "esp-idf\\mbedtls\\CMakeFiles\\__idf_mbedtls.dir\\esp_crt_bundle\\esp_crt_bundle.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/asmflags\" -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -Os -o esp-idf\\mbedtls\\CMakeFiles\\__idf_mbedtls.dir\\__\\__\\x509_crt_bundle.S.obj -c C:\\Users\\e.adame\\Documents\\ESP32_Modbus_RTU_to_PICS_MULTI\\build\\x509_crt_bundle.S", + "file": "C:\\Users\\e.adame\\Documents\\ESP32_Modbus_RTU_to_PICS_MULTI\\build\\x509_crt_bundle.S", + "output": "esp-idf\\mbedtls\\CMakeFiles\\__idf_mbedtls.dir\\__\\__\\x509_crt_bundle.S.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\psa_crypto.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\psa_crypto.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\psa_crypto.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\psa_crypto.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\psa_crypto_client.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\psa_crypto_client.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\psa_crypto_client.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\psa_crypto_client.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\psa_crypto_driver_wrappers_no_static.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\psa_crypto_driver_wrappers_no_static.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\psa_crypto_driver_wrappers_no_static.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\psa_crypto_driver_wrappers_no_static.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\psa_crypto_slot_management.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\psa_crypto_slot_management.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\psa_crypto_slot_management.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\psa_crypto_slot_management.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\psa_crypto_storage.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\psa_crypto_storage.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\psa_crypto_storage.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\psa_crypto_storage.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\psa_its_file.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\psa_its_file.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\psa_its_file.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\psa_its_file.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\tf_psa_crypto_config.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\tf_psa_crypto_config.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\tf_psa_crypto_config.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\tf_psa_crypto_config.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\tf_psa_crypto_version.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\tf_psa_crypto_version.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\tf_psa_crypto_version.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\tf_psa_crypto_version.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\psa_crypto_storage\\esp_psa_its.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\psa_crypto_storage\\esp_psa_its.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\psa_crypto_storage\\esp_psa_its.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\psa_crypto_storage\\esp_psa_its.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\esp_hardware.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\esp_hardware.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\esp_hardware.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\esp_hardware.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\esp_mem.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\esp_mem.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\esp_mem.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\esp_mem.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_xts.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_xts.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_xts.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_xts.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_common.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_common.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_common.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_common.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_gcm.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_gcm.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_gcm.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_gcm.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\psa_driver\\esp_sha\\psa_crypto_driver_esp_sha.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\psa_driver\\esp_sha\\psa_crypto_driver_esp_sha.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\psa_driver\\esp_sha\\psa_crypto_driver_esp_sha.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\psa_driver\\esp_sha\\psa_crypto_driver_esp_sha.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\psa_driver\\esp_sha\\parallel_engine\\psa_crypto_driver_esp_sha256.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\psa_driver\\esp_sha\\parallel_engine\\psa_crypto_driver_esp_sha256.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\psa_driver\\esp_sha\\parallel_engine\\psa_crypto_driver_esp_sha256.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\psa_driver\\esp_sha\\parallel_engine\\psa_crypto_driver_esp_sha256.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\psa_driver\\esp_sha\\parallel_engine\\psa_crypto_driver_esp_sha512.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\psa_driver\\esp_sha\\parallel_engine\\psa_crypto_driver_esp_sha512.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\psa_driver\\esp_sha\\parallel_engine\\psa_crypto_driver_esp_sha512.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\psa_driver\\esp_sha\\parallel_engine\\psa_crypto_driver_esp_sha512.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\sha\\esp_sha.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\sha\\esp_sha.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\sha\\esp_sha.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\sha\\esp_sha.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\psa_driver\\esp_mac\\psa_crypto_driver_esp_hmac_transparent.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\psa_driver\\esp_mac\\psa_crypto_driver_esp_hmac_transparent.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\psa_driver\\esp_mac\\psa_crypto_driver_esp_hmac_transparent.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\psa_driver\\esp_mac\\psa_crypto_driver_esp_hmac_transparent.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\psa_driver\\esp_sha\\parallel_engine\\psa_crypto_driver_esp_sha1.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\psa_driver\\esp_sha\\parallel_engine\\psa_crypto_driver_esp_sha1.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\psa_driver\\esp_sha\\parallel_engine\\psa_crypto_driver_esp_sha1.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\psa_driver\\esp_sha\\parallel_engine\\psa_crypto_driver_esp_sha1.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\sha\\parallel_engine\\sha.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\sha\\parallel_engine\\sha.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\sha\\parallel_engine\\sha.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\sha\\parallel_engine\\sha.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\psa_driver\\esp_md\\psa_crypto_driver_esp_md5.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\psa_driver\\esp_md\\psa_crypto_driver_esp_md5.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\psa_driver\\esp_md\\psa_crypto_driver_esp_md5.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\psa_driver\\esp_md\\psa_crypto_driver_esp_md5.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\bignum\\esp_bignum.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\bignum\\esp_bignum.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\bignum\\esp_bignum.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\bignum\\esp_bignum.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\bignum\\bignum_alt.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\bignum\\bignum_alt.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\bignum\\bignum_alt.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\bignum\\bignum_alt.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\psa_driver\\esp_aes\\psa_crypto_driver_esp_aes.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\psa_driver\\esp_aes\\psa_crypto_driver_esp_aes.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\psa_driver\\esp_aes\\psa_crypto_driver_esp_aes.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\psa_driver\\esp_aes\\psa_crypto_driver_esp_aes.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\psa_driver\\esp_aes\\psa_crypto_driver_esp_aes_gcm.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\psa_driver\\esp_aes\\psa_crypto_driver_esp_aes_gcm.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\psa_driver\\esp_aes\\psa_crypto_driver_esp_aes_gcm.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\psa_driver\\esp_aes\\psa_crypto_driver_esp_aes_gcm.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/port/aes/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include/aes -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\psa_driver\\esp_mac\\psa_crypto_driver_esp_cmac.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\psa_driver\\esp_mac\\psa_crypto_driver_esp_cmac.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\psa_driver\\esp_mac\\psa_crypto_driver_esp_cmac.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\core\\CMakeFiles\\tfpsacrypto.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\psa_driver\\esp_mac\\psa_crypto_driver_esp_cmac.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include/tf-psa-crypto/private/everest -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include/tf-psa-crypto/private/everest/kremlib -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\everest\\CMakeFiles\\everest.dir\\library\\everest.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\everest\\library\\everest.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\everest\\library\\everest.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\everest\\CMakeFiles\\everest.dir\\library\\everest.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include/tf-psa-crypto/private/everest -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include/tf-psa-crypto/private/everest/kremlib -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\everest\\CMakeFiles\\everest.dir\\library\\x25519.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\everest\\library\\x25519.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\everest\\library\\x25519.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\everest\\CMakeFiles\\everest.dir\\library\\x25519.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include/tf-psa-crypto/private/everest -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include/tf-psa-crypto/private/everest/kremlib -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\everest\\CMakeFiles\\everest.dir\\library\\Hacl_Curve25519_joined.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\everest\\library\\Hacl_Curve25519_joined.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\everest\\library\\Hacl_Curve25519_joined.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\everest\\CMakeFiles\\everest.dir\\library\\Hacl_Curve25519_joined.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\p256-m\\CMakeFiles\\p256m.dir\\p256-m_driver_entrypoints.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\p256-m\\p256-m_driver_entrypoints.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\p256-m\\p256-m_driver_entrypoints.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\p256-m\\CMakeFiles\\p256m.dir\\p256-m_driver_entrypoints.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/p256-m -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\p256-m\\CMakeFiles\\p256m.dir\\p256-m\\p256-m.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\p256-m\\p256-m\\p256-m.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\p256-m\\p256-m\\p256-m.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\p256-m\\CMakeFiles\\p256m.dir\\p256-m\\p256-m.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\aes.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\aes.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\aes.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\aes.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\aesce.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\aesce.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\aesce.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\aesce.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\aesni.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\aesni.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\aesni.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\aesni.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\aria.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\aria.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\aria.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\aria.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\asn1parse.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\asn1parse.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\asn1parse.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\asn1parse.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\asn1write.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\asn1write.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\asn1write.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\asn1write.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\base64.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\base64.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\base64.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\base64.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\bignum.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\bignum.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\bignum.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\bignum.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\bignum_core.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\bignum_core.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\bignum_core.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\bignum_core.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\bignum_mod.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\bignum_mod.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\bignum_mod.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\bignum_mod.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\bignum_mod_raw.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\bignum_mod_raw.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\bignum_mod_raw.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\bignum_mod_raw.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\block_cipher.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\block_cipher.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\block_cipher.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\block_cipher.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\camellia.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\camellia.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\camellia.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\camellia.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\ccm.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\ccm.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\ccm.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\ccm.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\chacha20.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\chacha20.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\chacha20.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\chacha20.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\chachapoly.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\chachapoly.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\chachapoly.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\chachapoly.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\cipher.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\cipher.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\cipher.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\cipher.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\cipher_wrap.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\cipher_wrap.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\cipher_wrap.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\cipher_wrap.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\cmac.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\cmac.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\cmac.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\cmac.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\constant_time.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\constant_time.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\constant_time.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\constant_time.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\ctr_drbg.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\ctr_drbg.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\ctr_drbg.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\ctr_drbg.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\ecdh.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\ecdh.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\ecdh.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\ecdh.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\ecdsa.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\ecdsa.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\ecdsa.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\ecdsa.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\ecjpake.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\ecjpake.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\ecjpake.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\ecjpake.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\ecp.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\ecp.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\ecp.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\ecp.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\ecp_curves.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\ecp_curves.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\ecp_curves.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\ecp_curves.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\ecp_curves_new.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\ecp_curves_new.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\ecp_curves_new.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\ecp_curves_new.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\entropy.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\entropy.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\entropy.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\entropy.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\entropy_poll.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\entropy_poll.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\entropy_poll.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\entropy_poll.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\gcm.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\gcm.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\gcm.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\gcm.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\hmac_drbg.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\hmac_drbg.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\hmac_drbg.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\hmac_drbg.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\lmots.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\lmots.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\lmots.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\lmots.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\lms.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\lms.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\lms.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\lms.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\md.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\md.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\md.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\md.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\md5.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\md5.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\md5.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\md5.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\memory_buffer_alloc.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\memory_buffer_alloc.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\memory_buffer_alloc.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\memory_buffer_alloc.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\nist_kw.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\nist_kw.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\nist_kw.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\nist_kw.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\oid.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\oid.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\oid.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\oid.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\pem.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\pem.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\pem.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\pem.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\pk.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\pk.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\pk.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\pk.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\pk_ecc.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\pk_ecc.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\pk_ecc.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\pk_ecc.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\pk_rsa.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\pk_rsa.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\pk_rsa.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\pk_rsa.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\pk_wrap.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\pk_wrap.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\pk_wrap.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\pk_wrap.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\pkcs5.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\pkcs5.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\pkcs5.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\pkcs5.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\pkparse.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\pkparse.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\pkparse.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\pkparse.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\pkwrite.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\pkwrite.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\pkwrite.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\pkwrite.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\platform.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\platform.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\platform.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\platform.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\platform_util.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\platform_util.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\platform_util.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\platform_util.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\poly1305.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\poly1305.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\poly1305.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\poly1305.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\psa_crypto_aead.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\psa_crypto_aead.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\psa_crypto_aead.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\psa_crypto_aead.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\psa_crypto_cipher.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\psa_crypto_cipher.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\psa_crypto_cipher.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\psa_crypto_cipher.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\psa_crypto_ecp.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\psa_crypto_ecp.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\psa_crypto_ecp.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\psa_crypto_ecp.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\psa_crypto_ffdh.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\psa_crypto_ffdh.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\psa_crypto_ffdh.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\psa_crypto_ffdh.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\psa_crypto_hash.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\psa_crypto_hash.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\psa_crypto_hash.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\psa_crypto_hash.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\psa_crypto_mac.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\psa_crypto_mac.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\psa_crypto_mac.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\psa_crypto_mac.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\psa_crypto_pake.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\psa_crypto_pake.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\psa_crypto_pake.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\psa_crypto_pake.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\psa_crypto_rsa.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\psa_crypto_rsa.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\psa_crypto_rsa.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\psa_crypto_rsa.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\psa_util.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\psa_util.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\psa_util.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\psa_util.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\ripemd160.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\ripemd160.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\ripemd160.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\ripemd160.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\rsa.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\rsa.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\rsa.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\rsa.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\rsa_alt_helpers.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\rsa_alt_helpers.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\rsa_alt_helpers.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\rsa_alt_helpers.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\sha1.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\sha1.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\sha1.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\sha1.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\sha256.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\sha256.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\sha256.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\sha256.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\sha3.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\sha3.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\sha3.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\sha3.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\sha512.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\sha512.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\sha512.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\sha512.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\threading.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\threading.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\src\\threading.c", + "output": "esp-idf\\mbedtls\\mbedtls\\tf-psa-crypto\\drivers\\builtin\\CMakeFiles\\builtin.dir\\src\\threading.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\error.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\error.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\error.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\error.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\mbedtls_config.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\mbedtls_config.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\mbedtls_config.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\mbedtls_config.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\pkcs7.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkcs7.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkcs7.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\pkcs7.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509_create.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_create.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_create.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509_create.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509_crl.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_crl.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_crl.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509_crl.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509_crt.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_crt.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_crt.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509_crt.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509_csr.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_csr.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_csr.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509_csr.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509_oid.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_oid.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_oid.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509_oid.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509write.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509write.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509write.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509write.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509write_crt.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509write_crt.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509write_crt.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509write_crt.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509write_csr.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509write_csr.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509write_csr.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509write_csr.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\debug.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\debug.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\debug.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\debug.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\mps_reader.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\mps_reader.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\mps_reader.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\mps_reader.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\mps_trace.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\mps_trace.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\mps_trace.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\mps_trace.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_cache.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_cache.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_cache.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_cache.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_ciphersuites.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_ciphersuites.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_ciphersuites.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_ciphersuites.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_client.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_client.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_client.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_client.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_cookie.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_cookie.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_cookie.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_cookie.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_debug_helpers_generated.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_debug_helpers_generated.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_debug_helpers_generated.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_debug_helpers_generated.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_msg.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_msg.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_msg.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_msg.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_ticket.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_ticket.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_ticket.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_ticket.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls12_client.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls12_client.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls12_client.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls12_client.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls12_server.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls12_server.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls12_server.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls12_server.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls13_keys.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_keys.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_keys.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls13_keys.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls13_server.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_server.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_server.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls13_server.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls13_client.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_client.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_client.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls13_client.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls13_generic.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_generic.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_generic.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls13_generic.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\timing.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\timing.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\timing.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\timing.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\version.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\version.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\version.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\version.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\version_features.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\version_features.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\mbedtls\\library\\version_features.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\version_features.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\mbedtls_debug.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\mbedtls_debug.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\mbedtls_debug.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\mbedtls_debug.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\esp_platform_time.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\esp_platform_time.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\esp_platform_time.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\esp_platform_time.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\esp_timing.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\esp_timing.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\esp_timing.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\esp_timing.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\esp_psa_crypto_init.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\esp_psa_crypto_init.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\esp_psa_crypto_init.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\esp_psa_crypto_init.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Wmissing-declarations -Os -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\net_sockets.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\net_sockets.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\net_sockets.c", + "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\C_\\esp\\v6.0\\esp-idf\\components\\mbedtls\\port\\net_sockets.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_timg\\CMakeFiles\\__idf_esp_hal_timg.dir\\timer_hal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_timg\\timer_hal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_timg\\timer_hal.c", + "output": "esp-idf\\esp_hal_timg\\CMakeFiles\\__idf_esp_hal_timg.dir\\timer_hal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_timg\\CMakeFiles\\__idf_esp_hal_timg.dir\\esp32\\timer_periph.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_timg\\esp32\\timer_periph.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_timg\\esp32\\timer_periph.c", + "output": "esp-idf\\esp_hal_timg\\CMakeFiles\\__idf_esp_hal_timg.dir\\esp32\\timer_periph.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_wdt\\CMakeFiles\\__idf_esp_hal_wdt.dir\\esp32\\mwdt_periph.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_wdt\\esp32\\mwdt_periph.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_wdt\\esp32\\mwdt_periph.c", + "output": "esp-idf\\esp_hal_wdt\\CMakeFiles\\__idf_esp_hal_wdt.dir\\esp32\\mwdt_periph.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_wdt\\CMakeFiles\\__idf_esp_hal_wdt.dir\\wdt_hal_iram.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_wdt\\wdt_hal_iram.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_wdt\\wdt_hal_iram.c", + "output": "esp-idf\\esp_hal_wdt\\CMakeFiles\\__idf_esp_hal_wdt.dir\\wdt_hal_iram.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_i2s\\CMakeFiles\\__idf_esp_hal_i2s.dir\\i2s_hal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_i2s\\i2s_hal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_i2s\\i2s_hal.c", + "output": "esp-idf\\esp_hal_i2s\\CMakeFiles\\__idf_esp_hal_i2s.dir\\i2s_hal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_i2s\\CMakeFiles\\__idf_esp_hal_i2s.dir\\esp32\\i2s_periph.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_i2s\\esp32\\i2s_periph.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_i2s\\esp32\\i2s_periph.c", + "output": "esp-idf\\esp_hal_i2s\\CMakeFiles\\__idf_esp_hal_i2s.dir\\esp32\\i2s_periph.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_ana_conv\\CMakeFiles\\__idf_esp_hal_ana_conv.dir\\esp32\\adc_periph.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_ana_conv\\esp32\\adc_periph.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_ana_conv\\esp32\\adc_periph.c", + "output": "esp-idf\\esp_hal_ana_conv\\CMakeFiles\\__idf_esp_hal_ana_conv.dir\\esp32\\adc_periph.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_ana_conv\\CMakeFiles\\__idf_esp_hal_ana_conv.dir\\adc_hal_common.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_ana_conv\\adc_hal_common.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_ana_conv\\adc_hal_common.c", + "output": "esp-idf\\esp_hal_ana_conv\\CMakeFiles\\__idf_esp_hal_ana_conv.dir\\adc_hal_common.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_ana_conv\\CMakeFiles\\__idf_esp_hal_ana_conv.dir\\adc_oneshot_hal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_ana_conv\\adc_oneshot_hal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_ana_conv\\adc_oneshot_hal.c", + "output": "esp-idf\\esp_hal_ana_conv\\CMakeFiles\\__idf_esp_hal_ana_conv.dir\\adc_oneshot_hal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_ana_conv\\CMakeFiles\\__idf_esp_hal_ana_conv.dir\\adc_hal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_ana_conv\\adc_hal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_ana_conv\\adc_hal.c", + "output": "esp-idf\\esp_hal_ana_conv\\CMakeFiles\\__idf_esp_hal_ana_conv.dir\\adc_hal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_ana_conv\\CMakeFiles\\__idf_esp_hal_ana_conv.dir\\esp32\\dac_periph.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_ana_conv\\esp32\\dac_periph.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_ana_conv\\esp32\\dac_periph.c", + "output": "esp-idf\\esp_hal_ana_conv\\CMakeFiles\\__idf_esp_hal_ana_conv.dir\\esp32\\dac_periph.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_common.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\bootloader_common.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\bootloader_common.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_common.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_common_loader.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\bootloader_common_loader.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\bootloader_common_loader.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_common_loader.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_clock_init.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\bootloader_clock_init.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\bootloader_clock_init.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_clock_init.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_mem.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\bootloader_mem.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\bootloader_mem.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_mem.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\bootloader_random.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\bootloader_random.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_efuse.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\bootloader_efuse.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\bootloader_efuse.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_efuse.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_encrypt.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\flash_encrypt.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\flash_encrypt.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_encrypt.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\secure_boot.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\secure_boot.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\secure_boot.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\secure_boot.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random_esp32.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\bootloader_random_esp32.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\bootloader_random_esp32.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random_esp32.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\flash_qio_mode.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\flash_qio_mode.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\flash_qio_mode.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\flash_qio_mode.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash_config_esp32.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash_config_esp32.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash_config_esp32.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash_config_esp32.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_utility.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\bootloader_utility.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\bootloader_utility.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_utility.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_partitions.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\flash_partitions.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\flash_partitions.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_partitions.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp_image_format.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\esp_image_format.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\esp_image_format.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp_image_format.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_sha.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\bootloader_sha.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\bootloader_sha.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_sha.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp32\\secure_boot_secure_features.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\esp32\\secure_boot_secure_features.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\bootloader_support\\src\\esp32\\secure_boot_secure_features.c", + "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp32\\secure_boot_secure_features.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\flash_brownout_hook.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\spi_flash\\flash_brownout_hook.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\spi_flash\\flash_brownout_hook.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\flash_brownout_hook.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_drivers.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\spi_flash\\spi_flash_chip_drivers.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\spi_flash\\spi_flash_chip_drivers.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_drivers.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_generic.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\spi_flash\\spi_flash_chip_generic.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\spi_flash\\spi_flash_chip_generic.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_generic.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_issi.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\spi_flash\\spi_flash_chip_issi.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\spi_flash\\spi_flash_chip_issi.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_issi.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_mxic.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\spi_flash\\spi_flash_chip_mxic.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\spi_flash\\spi_flash_chip_mxic.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_mxic.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_gd.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\spi_flash\\spi_flash_chip_gd.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\spi_flash\\spi_flash_chip_gd.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_gd.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_winbond.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\spi_flash\\spi_flash_chip_winbond.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\spi_flash\\spi_flash_chip_winbond.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_winbond.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_boya.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\spi_flash\\spi_flash_chip_boya.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\spi_flash\\spi_flash_chip_boya.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_boya.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_mxic_opi.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\spi_flash\\spi_flash_chip_mxic_opi.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\spi_flash\\spi_flash_chip_mxic_opi.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_mxic_opi.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_th.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\spi_flash\\spi_flash_chip_th.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\spi_flash\\spi_flash_chip_th.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_th.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\memspi_host_driver.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\spi_flash\\memspi_host_driver.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\spi_flash\\memspi_host_driver.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\memspi_host_driver.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_blockdev.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\spi_flash\\spi_flash_blockdev.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\spi_flash\\spi_flash_blockdev.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_blockdev.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -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:\\esp\\v6.0\\esp-idf\\components\\spi_flash\\cache_utils.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\spi_flash\\cache_utils.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\cache_utils.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -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:\\esp\\v6.0\\esp-idf\\components\\spi_flash\\flash_mmap.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\spi_flash\\flash_mmap.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\flash_mmap.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -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:\\esp\\v6.0\\esp-idf\\components\\spi_flash\\flash_ops.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\spi_flash\\flash_ops.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\flash_ops.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -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:\\esp\\v6.0\\esp-idf\\components\\spi_flash\\spi_flash_wrap.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\spi_flash\\spi_flash_wrap.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_wrap.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -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:\\esp\\v6.0\\esp-idf\\components\\spi_flash\\esp_flash_api.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\spi_flash\\esp_flash_api.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\esp_flash_api.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -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:\\esp\\v6.0\\esp-idf\\components\\spi_flash\\esp_flash_spi_init.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\spi_flash\\esp_flash_spi_init.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\esp_flash_spi_init.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -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:\\esp\\v6.0\\esp-idf\\components\\spi_flash\\spi_flash_os_func_app.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\spi_flash\\spi_flash_os_func_app.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_os_func_app.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -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:\\esp\\v6.0\\esp-idf\\components\\spi_flash\\spi_flash_os_func_noos.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\spi_flash\\spi_flash_os_func_noos.c", + "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_os_func_noos.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_err.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\esp_err.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\esp_err.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_err.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\crosscore_int.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\crosscore_int.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\crosscore_int.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\crosscore_int.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_ipc.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\esp_ipc.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\esp_ipc.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_ipc.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\freertos_hooks.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\freertos_hooks.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\freertos_hooks.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\freertos_hooks.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\int_wdt.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\int_wdt.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\int_wdt.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\int_wdt.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\panic.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\panic.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\panic.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\panic.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_system.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\esp_system.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\esp_system.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_system.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -fno-stack-protector -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\startup.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\startup.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\startup.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\startup.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\startup_funcs.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\startup_funcs.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\startup_funcs.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\startup_funcs.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\system_time.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\system_time.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\system_time.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\system_time.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -fno-stack-protector -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\stack_check.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\stack_check.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\stack_check.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\stack_check.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\ubsan.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\ubsan.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\ubsan.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\ubsan.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\xt_wdt.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\xt_wdt.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\xt_wdt.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\xt_wdt.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\task_wdt\\task_wdt.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\task_wdt\\task_wdt.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\task_wdt\\task_wdt.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\task_wdt\\task_wdt.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\task_wdt\\task_wdt_impl_timergroup.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\task_wdt\\task_wdt_impl_timergroup.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\task_wdt\\task_wdt_impl_timergroup.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\task_wdt\\task_wdt_impl_timergroup.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -fno-stack-protector -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\cpu_start.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\port\\cpu_start.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\port\\cpu_start.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\cpu_start.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\panic_handler.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\port\\panic_handler.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\port\\panic_handler.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\panic_handler.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\esp_system_chip.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\port\\esp_system_chip.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\port\\esp_system_chip.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\esp_system_chip.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\image_process.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\port\\image_process.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\port\\image_process.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\image_process.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\esp_ipc_isr.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\port\\esp_ipc_isr.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\port\\esp_ipc_isr.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\esp_ipc_isr.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\esp_ipc_isr_port.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\esp_ipc_isr_port.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\esp_ipc_isr_port.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\esp_ipc_isr_port.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/asmflags\" -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\esp_ipc_isr_handler.S.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\esp_ipc_isr_handler.S", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\esp_ipc_isr_handler.S", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\esp_ipc_isr_handler.S.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/asmflags\" -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\esp_ipc_isr_routines.S.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\esp_ipc_isr_routines.S", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\esp_ipc_isr_routines.S", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\esp_ipc_isr_routines.S.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\panic_arch.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\panic_arch.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\panic_arch.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\panic_arch.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/asmflags\" -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\panic_handler_asm.S.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\panic_handler_asm.S", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\panic_handler_asm.S", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\panic_handler_asm.S.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\expression_with_stack.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\expression_with_stack.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\expression_with_stack.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\expression_with_stack.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/asmflags\" -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\expression_with_stack_asm.S.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\expression_with_stack_asm.S", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\expression_with_stack_asm.S", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\expression_with_stack_asm.S.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\debug_helpers.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\debug_helpers.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\debug_helpers.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\debug_helpers.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/asmflags\" -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\debug_helpers_asm.S.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\debug_helpers_asm.S", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\debug_helpers_asm.S", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\debug_helpers_asm.S.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\debug_stubs.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\debug_stubs.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\debug_stubs.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\debug_stubs.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\trax.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\trax.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\port\\arch\\xtensa\\trax.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\xtensa\\trax.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/asmflags\" -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32\\highint_hdl.S.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\port\\soc\\esp32\\highint_hdl.S", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\port\\soc\\esp32\\highint_hdl.S", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32\\highint_hdl.S.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32\\clk.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\port\\soc\\esp32\\clk.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\port\\soc\\esp32\\clk.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32\\clk.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32\\reset_reason.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\port\\soc\\esp32\\reset_reason.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\port\\soc\\esp32\\reset_reason.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32\\reset_reason.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32\\system_internal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\port\\soc\\esp32\\system_internal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\port\\soc\\esp32\\system_internal.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32\\system_internal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/. -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32\\cache_err_int.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\port\\soc\\esp32\\cache_err_int.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_system\\port\\soc\\esp32\\cache_err_int.c", + "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32\\cache_err_int.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_adc/include -IC:/esp/v6.0/esp-idf/components/esp_adc/interface -IC:/esp/v6.0/esp-idf/components/esp_adc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_http_client/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/app_update/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_https_ota/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_common\\CMakeFiles\\__idf_esp_common.dir\\src\\esp_err_to_name.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_common\\src\\esp_err_to_name.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_common\\src\\esp_err_to_name.c", + "output": "esp-idf\\esp_common\\CMakeFiles\\__idf_esp_common.dir\\src\\esp_err_to_name.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_sys.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_rom\\patches\\esp_rom_sys.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_rom\\patches\\esp_rom_sys.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_sys.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_print.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_rom\\patches\\esp_rom_print.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_rom\\patches\\esp_rom_print.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_print.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_crc.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_rom\\patches\\esp_rom_crc.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_rom\\patches\\esp_rom_crc.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_crc.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_serial_output.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_rom\\patches\\esp_rom_serial_output.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_rom\\patches\\esp_rom_serial_output.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_serial_output.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_spiflash.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_rom\\patches\\esp_rom_spiflash.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_rom\\patches\\esp_rom_spiflash.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_spiflash.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_efuse.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_rom\\patches\\esp_rom_efuse.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_rom\\patches\\esp_rom_efuse.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_efuse.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_gpio.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_rom\\patches\\esp_rom_gpio.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_rom\\patches\\esp_rom_gpio.c", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_gpio.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/asmflags\" -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_longjmp.S.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_rom\\patches\\esp_rom_longjmp.S", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_rom\\patches\\esp_rom_longjmp.S", + "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_longjmp.S.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\hal_utils.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\hal\\hal_utils.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\hal\\hal_utils.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\hal_utils.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\efuse_hal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\hal\\efuse_hal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\hal\\efuse_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\efuse_hal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32\\efuse_hal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\hal\\esp32\\efuse_hal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\hal\\esp32\\efuse_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32\\efuse_hal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mmu_hal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\hal\\mmu_hal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\hal\\mmu_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mmu_hal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32\\cache_hal_esp32.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\hal\\esp32\\cache_hal_esp32.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\hal\\esp32\\cache_hal_esp32.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32\\cache_hal_esp32.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\color_hal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\hal\\color_hal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\hal\\color_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\color_hal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\sdmmc_hal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\hal\\sdmmc_hal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\hal\\sdmmc_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\sdmmc_hal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\emac_hal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\hal\\emac_hal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\hal\\emac_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\emac_hal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\brownout_hal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\hal\\brownout_hal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\hal\\brownout_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\brownout_hal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\sdio_slave_hal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\hal\\sdio_slave_hal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\hal\\sdio_slave_hal.c", + "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\sdio_slave_hal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/log/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\os\\log_timestamp.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\log\\src\\os\\log_timestamp.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\log\\src\\os\\log_timestamp.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\os\\log_timestamp.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/log/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_timestamp_common.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\log\\src\\log_timestamp_common.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\log\\src\\log_timestamp_common.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_timestamp_common.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/log/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\os\\log_lock.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\log\\src\\os\\log_lock.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\log\\src\\os\\log_lock.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\os\\log_lock.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/log/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\buffer\\log_buffers.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\log\\src\\buffer\\log_buffers.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\log\\src\\buffer\\log_buffers.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\buffer\\log_buffers.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/log/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\os\\util.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\log\\src\\os\\util.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\log\\src\\os\\util.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\os\\util.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/log/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\util.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\log\\src\\util.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\log\\src\\util.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\util.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/log/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_format_text.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\log\\src\\log_format_text.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\log\\src\\log_format_text.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_format_text.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/log/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_print.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\log\\src\\log_print.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\log\\src\\log_print.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_print.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/log/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\log\\src\\log.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\log\\src\\log.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/log/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\os\\log_write.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\log\\src\\os\\log_write.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\log\\src\\os\\log_write.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\os\\log_write.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/log/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_level\\log_level.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\log\\src\\log_level\\log_level.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\log\\src\\log_level\\log_level.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_level\\log_level.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/log/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_level\\tag_log_level\\tag_log_level.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\log\\src\\log_level\\tag_log_level\\tag_log_level.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\log\\src\\log_level\\tag_log_level\\tag_log_level.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_level\\tag_log_level\\tag_log_level.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/log/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_level\\tag_log_level\\linked_list\\log_linked_list.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\log\\src\\log_level\\tag_log_level\\linked_list\\log_linked_list.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\log\\src\\log_level\\tag_log_level\\linked_list\\log_linked_list.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_level\\tag_log_level\\linked_list\\log_linked_list.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/log/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_level\\tag_log_level\\cache\\log_binary_heap.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\log\\src\\log_level\\tag_log_level\\cache\\log_binary_heap.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\log\\src\\log_level\\tag_log_level\\cache\\log_binary_heap.c", + "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_level\\tag_log_level\\cache\\log_binary_heap.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/heap/private_include -IC:/esp/v6.0/esp-idf/components/heap/tlsf/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -DMULTI_HEAP_FREERTOS -o esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\heap_caps_base.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\heap\\heap_caps_base.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\heap\\heap_caps_base.c", + "output": "esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\heap_caps_base.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/heap/private_include -IC:/esp/v6.0/esp-idf/components/heap/tlsf/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -DMULTI_HEAP_FREERTOS -o esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\heap_caps.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\heap\\heap_caps.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\heap\\heap_caps.c", + "output": "esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\heap_caps.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/heap/private_include -IC:/esp/v6.0/esp-idf/components/heap/tlsf/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -DMULTI_HEAP_FREERTOS -o esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\heap_caps_init.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\heap\\heap_caps_init.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\heap\\heap_caps_init.c", + "output": "esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\heap_caps_init.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/heap/private_include -IC:/esp/v6.0/esp-idf/components/heap/tlsf/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -DMULTI_HEAP_FREERTOS -o esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\multi_heap.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\heap\\multi_heap.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\heap\\multi_heap.c", + "output": "esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\multi_heap.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/heap/private_include -IC:/esp/v6.0/esp-idf/components/heap/tlsf/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -DMULTI_HEAP_FREERTOS -o esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\tlsf\\tlsf.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\heap\\tlsf\\tlsf.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\heap\\tlsf\\tlsf.c", + "output": "esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\tlsf\\tlsf.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/heap/private_include -IC:/esp/v6.0/esp-idf/components/heap/tlsf/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -DMULTI_HEAP_FREERTOS -o esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\port\\memory_layout_utils.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\heap\\port\\memory_layout_utils.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\heap\\port\\memory_layout_utils.c", + "output": "esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\port\\memory_layout_utils.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/heap/private_include -IC:/esp/v6.0/esp-idf/components/heap/tlsf/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -DMULTI_HEAP_FREERTOS -o esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\port\\esp32\\memory_layout.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\heap\\port\\esp32\\memory_layout.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\heap\\port\\esp32\\memory_layout.c", + "output": "esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\port\\esp32\\memory_layout.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\lldesc.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\soc\\lldesc.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\soc\\lldesc.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\lldesc.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\dport_access_common.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\soc\\dport_access_common.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\soc\\dport_access_common.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\dport_access_common.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\interrupts.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\soc\\esp32\\interrupts.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\soc\\esp32\\interrupts.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\interrupts.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\gpio_periph.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\soc\\esp32\\gpio_periph.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\soc\\esp32\\gpio_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\gpio_periph.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\dport_access.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\soc\\esp32\\dport_access.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\soc\\esp32\\dport_access.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\dport_access.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\emac_periph.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\soc\\esp32\\emac_periph.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\soc\\esp32\\emac_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\emac_periph.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\mpi_periph.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\soc\\esp32\\mpi_periph.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\soc\\esp32\\mpi_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\mpi_periph.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\sdmmc_periph.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\soc\\esp32\\sdmmc_periph.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\soc\\esp32\\sdmmc_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\sdmmc_periph.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\sdio_slave_periph.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\soc\\esp32\\sdio_slave_periph.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\soc\\esp32\\sdio_slave_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\sdio_slave_periph.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\power_supply_periph.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\soc\\esp32\\power_supply_periph.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\soc\\esp32\\power_supply_periph.c", + "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\power_supply_periph.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_gpio\\CMakeFiles\\__idf_esp_hal_gpio.dir\\gpio_hal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_gpio\\gpio_hal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_gpio\\gpio_hal.c", + "output": "esp-idf\\esp_hal_gpio\\CMakeFiles\\__idf_esp_hal_gpio.dir\\gpio_hal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_gpio\\CMakeFiles\\__idf_esp_hal_gpio.dir\\rtc_io_hal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_gpio\\rtc_io_hal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_gpio\\rtc_io_hal.c", + "output": "esp-idf\\esp_hal_gpio\\CMakeFiles\\__idf_esp_hal_gpio.dir\\rtc_io_hal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_gpio\\CMakeFiles\\__idf_esp_hal_gpio.dir\\esp32\\rtc_io_periph.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_gpio\\esp32\\rtc_io_periph.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_gpio\\esp32\\rtc_io_periph.c", + "output": "esp-idf\\esp_hal_gpio\\CMakeFiles\\__idf_esp_hal_gpio.dir\\esp32\\rtc_io_periph.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_gpio\\CMakeFiles\\__idf_esp_hal_gpio.dir\\sdm_hal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_gpio\\sdm_hal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_gpio\\sdm_hal.c", + "output": "esp-idf\\esp_hal_gpio\\CMakeFiles\\__idf_esp_hal_gpio.dir\\sdm_hal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_gpio\\CMakeFiles\\__idf_esp_hal_gpio.dir\\esp32\\sdm_periph.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_gpio\\esp32\\sdm_periph.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_gpio\\esp32\\sdm_periph.c", + "output": "esp-idf\\esp_hal_gpio\\CMakeFiles\\__idf_esp_hal_gpio.dir\\esp32\\sdm_periph.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_touch_sens\\CMakeFiles\\__idf_esp_hal_touch_sens.dir\\esp32\\touch_sensor_legacy_hal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_touch_sens\\esp32\\touch_sensor_legacy_hal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_touch_sens\\esp32\\touch_sensor_legacy_hal.c", + "output": "esp-idf\\esp_hal_touch_sens\\CMakeFiles\\__idf_esp_hal_touch_sens.dir\\esp32\\touch_sensor_legacy_hal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_touch_sens\\CMakeFiles\\__idf_esp_hal_touch_sens.dir\\touch_sensor_legacy_hal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_touch_sens\\touch_sensor_legacy_hal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_touch_sens\\touch_sensor_legacy_hal.c", + "output": "esp-idf\\esp_hal_touch_sens\\CMakeFiles\\__idf_esp_hal_touch_sens.dir\\touch_sensor_legacy_hal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_touch_sens\\CMakeFiles\\__idf_esp_hal_touch_sens.dir\\touch_sens_hal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_touch_sens\\touch_sens_hal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_touch_sens\\touch_sens_hal.c", + "output": "esp-idf\\esp_hal_touch_sens\\CMakeFiles\\__idf_esp_hal_touch_sens.dir\\touch_sens_hal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_touch_sens\\CMakeFiles\\__idf_esp_hal_touch_sens.dir\\esp32\\touch_sensor_periph.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_touch_sens\\esp32\\touch_sensor_periph.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_touch_sens\\esp32\\touch_sensor_periph.c", + "output": "esp-idf\\esp_hal_touch_sens\\CMakeFiles\\__idf_esp_hal_touch_sens.dir\\esp32\\touch_sensor_periph.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\cpu.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\cpu.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\cpu.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\cpu.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32\\esp_cpu_intr.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\port\\esp32\\esp_cpu_intr.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\port\\esp32\\esp_cpu_intr.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32\\esp_cpu_intr.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_memory_utils.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\esp_memory_utils.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\esp_memory_utils.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_memory_utils.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32\\cpu_region_protect.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\port\\esp32\\cpu_region_protect.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\port\\esp32\\cpu_region_protect.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32\\cpu_region_protect.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_clk.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\esp_clk.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\esp_clk.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_clk.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\clk_ctrl_os.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\clk_ctrl_os.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\clk_ctrl_os.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\clk_ctrl_os.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\hw_random.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\hw_random.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\hw_random.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\hw_random.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\intr_alloc.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\intr_alloc.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\intr_alloc.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\intr_alloc.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\mac_addr.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\mac_addr.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\mac_addr.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\mac_addr.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\periph_ctrl.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\periph_ctrl.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\periph_ctrl.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\periph_ctrl.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\revision.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\revision.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\revision.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\revision.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\rtc_module.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\rtc_module.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\rtc_module.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\rtc_module.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\regi2c_ctrl.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\regi2c_ctrl.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\regi2c_ctrl.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\regi2c_ctrl.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_gpio_reserve.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\esp_gpio_reserve.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\esp_gpio_reserve.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_gpio_reserve.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sar_tsens_ctrl.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\sar_tsens_ctrl.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\sar_tsens_ctrl.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sar_tsens_ctrl.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32\\io_mux.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\port\\esp32\\io_mux.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\port\\esp32\\io_mux.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32\\io_mux.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32\\esp_clk_tree.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\port\\esp32\\esp_clk_tree.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\port\\esp32\\esp_clk_tree.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32\\esp_clk_tree.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\spi_bus_lock.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\spi_bus_lock.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\spi_bus_lock.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\spi_bus_lock.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\clk_utils.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\clk_utils.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\clk_utils.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\clk_utils.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp_clk_tree_common.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\port\\esp_clk_tree_common.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\port\\esp_clk_tree_common.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp_clk_tree_common.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\spi_share_hw_ctrl.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\spi_share_hw_ctrl.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\spi_share_hw_ctrl.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\spi_share_hw_ctrl.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\adc_share_hw_ctrl.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\adc_share_hw_ctrl.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\adc_share_hw_ctrl.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\adc_share_hw_ctrl.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_modem.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\sleep_modem.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\sleep_modem.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_modem.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_modes.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\sleep_modes.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\sleep_modes.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_modes.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_uart.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\sleep_uart.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\sleep_uart.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_uart.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_console.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\sleep_console.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\sleep_console.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_console.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_mspi.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\sleep_mspi.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\sleep_mspi.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_mspi.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_usb.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\sleep_usb.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\sleep_usb.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_usb.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_gpio.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\sleep_gpio.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\sleep_gpio.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_gpio.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_event.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\sleep_event.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\sleep_event.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_event.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\rtc_wdt.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\rtc_wdt.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\rtc_wdt.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\rtc_wdt.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\mspi_timing_tuning\\mspi_timing_tuning.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\mspi_timing_tuning\\mspi_timing_tuning.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\mspi_timing_tuning\\mspi_timing_tuning.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\mspi_timing_tuning\\mspi_timing_tuning.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_wake_stub.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\sleep_wake_stub.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\sleep_wake_stub.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_wake_stub.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_clock_output.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\esp_clock_output.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\esp_clock_output.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_clock_output.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\power_supply\\brownout.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\power_supply\\brownout.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\power_supply\\brownout.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\power_supply\\brownout.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32\\rtc_clk.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_clk.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_clk.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32\\rtc_clk.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32\\rtc_clk_init.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_clk_init.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_clk_init.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32\\rtc_clk_init.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32\\rtc_init.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_init.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_init.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32\\rtc_init.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32\\rtc_sleep.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_sleep.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_sleep.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32\\rtc_sleep.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32\\rtc_time.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_time.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_time.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32\\rtc_time.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32\\chip_info.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\port\\esp32\\chip_info.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\port\\esp32\\chip_info.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32\\chip_info.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32\\cache_sram_mmu.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\port\\esp32\\cache_sram_mmu.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\port\\esp32\\cache_sram_mmu.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32\\cache_sram_mmu.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32\\sar_periph_ctrl.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\port\\esp32\\sar_periph_ctrl.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hw_support\\port\\esp32\\sar_periph_ctrl.c", + "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32\\sar_periph_ctrl.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/freertos -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\heap_idf.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\freertos\\heap_idf.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\freertos\\heap_idf.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\heap_idf.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/freertos -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\app_startup.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\freertos\\app_startup.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\freertos\\app_startup.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\app_startup.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/freertos -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\port_common.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\freertos\\port_common.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\freertos\\port_common.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\port_common.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/freertos -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\port_systick.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\freertos\\port_systick.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\freertos\\port_systick.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\port_systick.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/freertos -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\list.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\list.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\list.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\list.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/freertos -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\queue.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\queue.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\queue.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\queue.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/freertos -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\tasks.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\tasks.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\tasks.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\tasks.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/freertos -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\timers.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\timers.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\timers.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\timers.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/freertos -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\event_groups.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\event_groups.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\event_groups.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\event_groups.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/freertos -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\stream_buffer.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\stream_buffer.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\stream_buffer.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\stream_buffer.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/freertos -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\\xtensa\\port.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\portable\\xtensa\\port.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\portable\\xtensa\\port.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\\xtensa\\port.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/freertos -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/asmflags\" -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\\xtensa\\portasm.S.obj -c C:\\esp\\v6.0\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\portable\\xtensa\\portasm.S", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\portable\\xtensa\\portasm.S", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\\xtensa\\portasm.S.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/freertos -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\\xtensa\\xtensa_init.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\portable\\xtensa\\xtensa_init.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\portable\\xtensa\\xtensa_init.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\\xtensa\\xtensa_init.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/freertos -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\\xtensa\\xtensa_overlay_os_hook.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\portable\\xtensa\\xtensa_overlay_os_hook.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\portable\\xtensa\\xtensa_overlay_os_hook.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\\xtensa\\xtensa_overlay_os_hook.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/freertos -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\esp_additions\\idf_additions_event_groups.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\freertos\\esp_additions\\idf_additions_event_groups.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\freertos\\esp_additions\\idf_additions_event_groups.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\esp_additions\\idf_additions_event_groups.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/freertos -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\esp_additions\\idf_additions.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\freertos\\esp_additions\\idf_additions.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\freertos\\esp_additions\\idf_additions.c", + "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\esp_additions\\idf_additions.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_libc/priv_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_libc\\CMakeFiles\\__idf_esp_libc.dir\\src\\init.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_libc\\src\\init.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_libc\\src\\init.c", + "output": "esp-idf\\esp_libc\\CMakeFiles\\__idf_esp_libc.dir\\src\\init.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_libc/priv_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_libc\\CMakeFiles\\__idf_esp_libc.dir\\src\\abort.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_libc\\src\\abort.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_libc\\src\\abort.c", + "output": "esp-idf\\esp_libc\\CMakeFiles\\__idf_esp_libc.dir\\src\\abort.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_libc/priv_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_libc\\CMakeFiles\\__idf_esp_libc.dir\\src\\assert.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_libc\\src\\assert.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_libc\\src\\assert.c", + "output": "esp-idf\\esp_libc\\CMakeFiles\\__idf_esp_libc.dir\\src\\assert.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_libc/priv_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_libc\\CMakeFiles\\__idf_esp_libc.dir\\src\\heap.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_libc\\src\\heap.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_libc\\src\\heap.c", + "output": "esp-idf\\esp_libc\\CMakeFiles\\__idf_esp_libc.dir\\src\\heap.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_libc/priv_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_libc\\CMakeFiles\\__idf_esp_libc.dir\\src\\locks.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_libc\\src\\locks.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_libc\\src\\locks.c", + "output": "esp-idf\\esp_libc\\CMakeFiles\\__idf_esp_libc.dir\\src\\locks.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_libc/priv_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_libc\\CMakeFiles\\__idf_esp_libc.dir\\src\\poll.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_libc\\src\\poll.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_libc\\src\\poll.c", + "output": "esp-idf\\esp_libc\\CMakeFiles\\__idf_esp_libc.dir\\src\\poll.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_libc/priv_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_libc\\CMakeFiles\\__idf_esp_libc.dir\\src\\pthread.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_libc\\src\\pthread.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_libc\\src\\pthread.c", + "output": "esp-idf\\esp_libc\\CMakeFiles\\__idf_esp_libc.dir\\src\\pthread.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_libc/priv_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_libc\\CMakeFiles\\__idf_esp_libc.dir\\src\\random.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_libc\\src\\random.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_libc\\src\\random.c", + "output": "esp-idf\\esp_libc\\CMakeFiles\\__idf_esp_libc.dir\\src\\random.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_libc/priv_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_libc\\CMakeFiles\\__idf_esp_libc.dir\\src\\getentropy.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_libc\\src\\getentropy.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_libc\\src\\getentropy.c", + "output": "esp-idf\\esp_libc\\CMakeFiles\\__idf_esp_libc.dir\\src\\getentropy.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_libc/priv_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_libc\\CMakeFiles\\__idf_esp_libc.dir\\src\\termios.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_libc\\src\\termios.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_libc\\src\\termios.c", + "output": "esp-idf\\esp_libc\\CMakeFiles\\__idf_esp_libc.dir\\src\\termios.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_libc/priv_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_libc\\CMakeFiles\\__idf_esp_libc.dir\\src\\stdatomic.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_libc\\src\\stdatomic.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_libc\\src\\stdatomic.c", + "output": "esp-idf\\esp_libc\\CMakeFiles\\__idf_esp_libc.dir\\src\\stdatomic.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_libc/priv_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_libc\\CMakeFiles\\__idf_esp_libc.dir\\src\\time.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_libc\\src\\time.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_libc\\src\\time.c", + "output": "esp-idf\\esp_libc\\CMakeFiles\\__idf_esp_libc.dir\\src\\time.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_libc/priv_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_libc\\CMakeFiles\\__idf_esp_libc.dir\\src\\sysconf.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_libc\\src\\sysconf.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_libc\\src\\sysconf.c", + "output": "esp-idf\\esp_libc\\CMakeFiles\\__idf_esp_libc.dir\\src\\sysconf.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_libc/priv_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_libc\\CMakeFiles\\__idf_esp_libc.dir\\src\\realpath.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_libc\\src\\realpath.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_libc\\src\\realpath.c", + "output": "esp-idf\\esp_libc\\CMakeFiles\\__idf_esp_libc.dir\\src\\realpath.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_libc/priv_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_libc\\CMakeFiles\\__idf_esp_libc.dir\\src\\scandir.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_libc\\src\\scandir.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_libc\\src\\scandir.c", + "output": "esp-idf\\esp_libc\\CMakeFiles\\__idf_esp_libc.dir\\src\\scandir.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_libc/priv_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_libc\\CMakeFiles\\__idf_esp_libc.dir\\src\\syscalls.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_libc\\src\\syscalls.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_libc\\src\\syscalls.c", + "output": "esp-idf\\esp_libc\\CMakeFiles\\__idf_esp_libc.dir\\src\\syscalls.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_libc/priv_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_libc\\CMakeFiles\\__idf_esp_libc.dir\\src\\reent_syscalls.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_libc\\src\\reent_syscalls.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_libc\\src\\reent_syscalls.c", + "output": "esp-idf\\esp_libc\\CMakeFiles\\__idf_esp_libc.dir\\src\\reent_syscalls.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_libc/priv_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_libc\\CMakeFiles\\__idf_esp_libc.dir\\src\\port\\esp_time_impl.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_libc\\src\\port\\esp_time_impl.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_libc\\src\\port\\esp_time_impl.c", + "output": "esp-idf\\esp_libc\\CMakeFiles\\__idf_esp_libc.dir\\src\\port\\esp_time_impl.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_libc/priv_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_libc\\CMakeFiles\\__idf_esp_libc.dir\\src\\picolibc\\picolibc_init.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_libc\\src\\picolibc\\picolibc_init.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_libc\\src\\picolibc\\picolibc_init.c", + "output": "esp-idf\\esp_libc\\CMakeFiles\\__idf_esp_libc.dir\\src\\picolibc\\picolibc_init.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_libc/priv_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_libc\\CMakeFiles\\__idf_esp_libc.dir\\src\\picolibc\\rand.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_libc\\src\\picolibc\\rand.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_libc\\src\\picolibc\\rand.c", + "output": "esp-idf\\esp_libc\\CMakeFiles\\__idf_esp_libc.dir\\src\\picolibc\\rand.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_libc/priv_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_libc\\CMakeFiles\\__idf_esp_libc.dir\\src\\picolibc\\open_memstream.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_libc\\src\\picolibc\\open_memstream.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_libc\\src\\picolibc\\open_memstream.c", + "output": "esp-idf\\esp_libc\\CMakeFiles\\__idf_esp_libc.dir\\src\\picolibc\\open_memstream.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_libc/priv_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_libc\\CMakeFiles\\__idf_esp_libc.dir\\src\\picolibc\\errno.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_libc\\src\\picolibc\\errno.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_libc\\src\\picolibc\\errno.c", + "output": "esp-idf\\esp_libc\\CMakeFiles\\__idf_esp_libc.dir\\src\\picolibc\\errno.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/esp_libc/priv_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_libc\\CMakeFiles\\__idf_esp_libc.dir\\src\\picolibc\\getreent.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_libc\\src\\picolibc\\getreent.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_libc\\src\\picolibc\\getreent.c", + "output": "esp-idf\\esp_libc\\CMakeFiles\\__idf_esp_libc.dir\\src\\picolibc\\getreent.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/pthread/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\pthread\\pthread.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\pthread\\pthread.c", + "output": "esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/pthread/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread_cond_var.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\pthread\\pthread_cond_var.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\pthread\\pthread_cond_var.c", + "output": "esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread_cond_var.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/pthread/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread_local_storage.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\pthread\\pthread_local_storage.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\pthread\\pthread_local_storage.c", + "output": "esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread_local_storage.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/pthread/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread_rwlock.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\pthread\\pthread_rwlock.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\pthread\\pthread_rwlock.c", + "output": "esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread_rwlock.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/pthread/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread_semaphore.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\pthread\\pthread_semaphore.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\pthread\\pthread_semaphore.c", + "output": "esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread_semaphore.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/pthread/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit -o esp-idf\\cxx\\CMakeFiles\\__idf_cxx.dir\\cxx_exception_stubs.cpp.obj -c C:\\esp\\v6.0\\esp-idf\\components\\cxx\\cxx_exception_stubs.cpp", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\cxx\\cxx_exception_stubs.cpp", + "output": "esp-idf\\cxx\\CMakeFiles\\__idf_cxx.dir\\cxx_exception_stubs.cpp.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/pthread/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit -o esp-idf\\cxx\\CMakeFiles\\__idf_cxx.dir\\cxx_guards.cpp.obj -c C:\\esp\\v6.0\\esp-idf\\components\\cxx\\cxx_guards.cpp", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\cxx\\cxx_guards.cpp", + "output": "esp-idf\\cxx\\CMakeFiles\\__idf_cxx.dir\\cxx_guards.cpp.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/pthread/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit -o esp-idf\\cxx\\CMakeFiles\\__idf_cxx.dir\\cxx_init.cpp.obj -c C:\\esp\\v6.0\\esp-idf\\components\\cxx\\cxx_init.cpp", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\cxx\\cxx_init.cpp", + "output": "esp-idf\\cxx\\CMakeFiles\\__idf_cxx.dir\\cxx_init.cpp.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_timer/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\esp_timer.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_timer\\src\\esp_timer.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_timer\\src\\esp_timer.c", + "output": "esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\esp_timer.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_timer/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\esp_timer_init.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_timer\\src\\esp_timer_init.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_timer\\src\\esp_timer_init.c", + "output": "esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\esp_timer_init.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_timer/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\ets_timer_legacy.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_timer\\src\\ets_timer_legacy.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_timer\\src\\ets_timer_legacy.c", + "output": "esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\ets_timer_legacy.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_timer/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\system_time.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_timer\\src\\system_time.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_timer\\src\\system_time.c", + "output": "esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\system_time.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_timer/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\esp_timer_impl_common.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_timer\\src\\esp_timer_impl_common.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_timer\\src\\esp_timer_impl_common.c", + "output": "esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\esp_timer_impl_common.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_timer/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\esp_timer_impl_lac.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_timer\\src\\esp_timer_impl_lac.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_timer\\src\\esp_timer_impl_lac.c", + "output": "esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\esp_timer_impl_lac.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_ringbuf\\CMakeFiles\\__idf_esp_ringbuf.dir\\ringbuf.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_ringbuf\\ringbuf.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_ringbuf\\ringbuf.c", + "output": "esp-idf\\esp_ringbuf\\CMakeFiles\\__idf_esp_ringbuf.dir\\ringbuf.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_psram/include -IC:/esp/v6.0/esp-idf/components/esp_psram/device/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_psram\\CMakeFiles\\__idf_esp_psram.dir\\system_layer\\esp_psram_mspi.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_psram\\system_layer\\esp_psram_mspi.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_psram\\system_layer\\esp_psram_mspi.c", + "output": "esp-idf\\esp_psram\\CMakeFiles\\__idf_esp_psram.dir\\system_layer\\esp_psram_mspi.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_psram/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_uart\\CMakeFiles\\__idf_esp_driver_uart.dir\\src\\uart.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_uart\\src\\uart.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_uart\\src\\uart.c", + "output": "esp-idf\\esp_driver_uart\\CMakeFiles\\__idf_esp_driver_uart.dir\\src\\uart.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_psram/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_uart\\CMakeFiles\\__idf_esp_driver_uart.dir\\src\\uart_wakeup.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_uart\\src\\uart_wakeup.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_uart\\src\\uart_wakeup.c", + "output": "esp-idf\\esp_driver_uart\\CMakeFiles\\__idf_esp_driver_uart.dir\\src\\uart_wakeup.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_psram/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_uart\\CMakeFiles\\__idf_esp_driver_uart.dir\\src\\uart_vfs.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_uart\\src\\uart_vfs.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_uart\\src\\uart_vfs.c", + "output": "esp-idf\\esp_driver_uart\\CMakeFiles\\__idf_esp_driver_uart.dir\\src\\uart_vfs.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_gptimer/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_gptimer\\CMakeFiles\\__idf_esp_driver_gptimer.dir\\src\\gptimer.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_gptimer\\src\\gptimer.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_gptimer\\src\\gptimer.c", + "output": "esp-idf\\esp_driver_gptimer\\CMakeFiles\\__idf_esp_driver_gptimer.dir\\src\\gptimer.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_gptimer/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_gptimer\\CMakeFiles\\__idf_esp_driver_gptimer.dir\\src\\gptimer_common.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_gptimer\\src\\gptimer_common.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_gptimer\\src\\gptimer_common.c", + "output": "esp-idf\\esp_driver_gptimer\\CMakeFiles\\__idf_esp_driver_gptimer.dir\\src\\gptimer_common.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_event/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_timer/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_event\\CMakeFiles\\__idf_esp_event.dir\\default_event_loop.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_event\\default_event_loop.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_event\\default_event_loop.c", + "output": "esp-idf\\esp_event\\CMakeFiles\\__idf_esp_event.dir\\default_event_loop.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_event/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_timer/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_event\\CMakeFiles\\__idf_esp_event.dir\\esp_event.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_event\\esp_event.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_event\\esp_event.c", + "output": "esp-idf\\esp_event\\CMakeFiles\\__idf_esp_event.dir\\esp_event.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_event/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_timer/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_event\\CMakeFiles\\__idf_esp_event.dir\\esp_event_private.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_event\\esp_event_private.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_event\\esp_event_private.c", + "output": "esp-idf\\esp_event\\CMakeFiles\\__idf_esp_event.dir\\esp_event_private.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\nvs_sec_provider\\CMakeFiles\\__idf_nvs_sec_provider.dir\\nvs_sec_provider.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\nvs_sec_provider\\nvs_sec_provider.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\nvs_sec_provider\\nvs_sec_provider.c", + "output": "esp-idf\\nvs_sec_provider\\CMakeFiles\\__idf_nvs_sec_provider.dir\\nvs_sec_provider.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_api.cpp.obj -c C:\\esp\\v6.0\\esp-idf\\components\\nvs_flash\\src\\nvs_api.cpp", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\nvs_flash\\src\\nvs_api.cpp", + "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_api.cpp.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_cxx_api.cpp.obj -c C:\\esp\\v6.0\\esp-idf\\components\\nvs_flash\\src\\nvs_cxx_api.cpp", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\nvs_flash\\src\\nvs_cxx_api.cpp", + "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_cxx_api.cpp.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_item_hash_list.cpp.obj -c C:\\esp\\v6.0\\esp-idf\\components\\nvs_flash\\src\\nvs_item_hash_list.cpp", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\nvs_flash\\src\\nvs_item_hash_list.cpp", + "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_item_hash_list.cpp.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_page.cpp.obj -c C:\\esp\\v6.0\\esp-idf\\components\\nvs_flash\\src\\nvs_page.cpp", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\nvs_flash\\src\\nvs_page.cpp", + "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_page.cpp.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_pagemanager.cpp.obj -c C:\\esp\\v6.0\\esp-idf\\components\\nvs_flash\\src\\nvs_pagemanager.cpp", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\nvs_flash\\src\\nvs_pagemanager.cpp", + "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_pagemanager.cpp.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_storage.cpp.obj -c C:\\esp\\v6.0\\esp-idf\\components\\nvs_flash\\src\\nvs_storage.cpp", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\nvs_flash\\src\\nvs_storage.cpp", + "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_storage.cpp.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_handle_simple.cpp.obj -c C:\\esp\\v6.0\\esp-idf\\components\\nvs_flash\\src\\nvs_handle_simple.cpp", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\nvs_flash\\src\\nvs_handle_simple.cpp", + "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_handle_simple.cpp.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_handle_locked.cpp.obj -c C:\\esp\\v6.0\\esp-idf\\components\\nvs_flash\\src\\nvs_handle_locked.cpp", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\nvs_flash\\src\\nvs_handle_locked.cpp", + "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_handle_locked.cpp.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_partition.cpp.obj -c C:\\esp\\v6.0\\esp-idf\\components\\nvs_flash\\src\\nvs_partition.cpp", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\nvs_flash\\src\\nvs_partition.cpp", + "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_partition.cpp.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_partition_lookup.cpp.obj -c C:\\esp\\v6.0\\esp-idf\\components\\nvs_flash\\src\\nvs_partition_lookup.cpp", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\nvs_flash\\src\\nvs_partition_lookup.cpp", + "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_partition_lookup.cpp.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_partition_manager.cpp.obj -c C:\\esp\\v6.0\\esp-idf\\components\\nvs_flash\\src\\nvs_partition_manager.cpp", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\nvs_flash\\src\\nvs_partition_manager.cpp", + "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_partition_manager.cpp.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_types.cpp.obj -c C:\\esp\\v6.0\\esp-idf\\components\\nvs_flash\\src\\nvs_types.cpp", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\nvs_flash\\src\\nvs_types.cpp", + "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_types.cpp.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_platform.cpp.obj -c C:\\esp\\v6.0\\esp-idf\\components\\nvs_flash\\src\\nvs_platform.cpp", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\nvs_flash\\src\\nvs_platform.cpp", + "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_platform.cpp.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_bootloader.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\nvs_flash\\src\\nvs_bootloader.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\nvs_flash\\src\\nvs_bootloader.c", + "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_bootloader.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_encrypted_partition.cpp.obj -c C:\\esp\\v6.0\\esp-idf\\components\\nvs_flash\\src\\nvs_encrypted_partition.cpp", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\nvs_flash\\src\\nvs_encrypted_partition.cpp", + "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_encrypted_partition.cpp.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_bootloader_aes.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\nvs_flash\\src\\nvs_bootloader_aes.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\nvs_flash\\src\\nvs_bootloader_aes.c", + "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_bootloader_aes.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_bootloader_xts_aes.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\nvs_flash\\src\\nvs_bootloader_xts_aes.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\nvs_flash\\src\\nvs_bootloader_xts_aes.c", + "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_bootloader_xts_aes.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\\phy_override.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_phy\\src\\phy_override.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_phy\\src\\phy_override.c", + "output": "esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\\phy_override.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\\lib_printf.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_phy\\src\\lib_printf.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_phy\\src\\lib_printf.c", + "output": "esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\\lib_printf.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\\phy_common.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_phy\\src\\phy_common.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_phy\\src\\phy_common.c", + "output": "esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\\phy_common.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\\phy_init.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_phy\\src\\phy_init.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_phy\\src\\phy_init.c", + "output": "esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\\phy_init.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\esp32\\phy_init_data.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_phy\\esp32\\phy_init_data.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_phy\\esp32\\phy_init_data.c", + "output": "esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\esp32\\phy_init_data.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\\btbb_init.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_phy\\src\\btbb_init.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_phy\\src\\btbb_init.c", + "output": "esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\\btbb_init.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/vfs/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\vfs.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\vfs\\vfs.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\vfs\\vfs.c", + "output": "esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\vfs.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/vfs/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\vfs_calls.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\vfs\\vfs_calls.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\vfs\\vfs_calls.c", + "output": "esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\vfs_calls.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/vfs/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\vfs_eventfd.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\vfs\\vfs_eventfd.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\vfs\\vfs_eventfd.c", + "output": "esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\vfs_eventfd.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/vfs/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\vfs_semihost.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\vfs\\vfs_semihost.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\vfs\\vfs_semihost.c", + "output": "esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\vfs_semihost.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/vfs/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\nullfs.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\vfs\\nullfs.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\vfs\\nullfs.c", + "output": "esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\nullfs.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\sntp\\sntp.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\apps\\sntp\\sntp.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\apps\\sntp\\sntp.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\sntp\\sntp.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\api_lib.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\api\\api_lib.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\api\\api_lib.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\api_lib.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\api_msg.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\api\\api_msg.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\api\\api_msg.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\api_msg.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\err.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\api\\err.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\api\\err.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\err.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\if_api.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\api\\if_api.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\api\\if_api.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\if_api.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\netbuf.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\api\\netbuf.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\api\\netbuf.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\netbuf.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\netdb.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\api\\netdb.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\api\\netdb.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\netdb.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\netifapi.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\api\\netifapi.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\api\\netifapi.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\netifapi.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\sockets.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\api\\sockets.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\api\\sockets.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\sockets.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\tcpip.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\api\\tcpip.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\api\\tcpip.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\tcpip.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\apps\\sntp\\sntp.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\apps\\sntp\\sntp.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\apps\\sntp\\sntp.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\apps\\sntp\\sntp.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\apps\\netbiosns\\netbiosns.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\apps\\netbiosns\\netbiosns.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\apps\\netbiosns\\netbiosns.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\apps\\netbiosns\\netbiosns.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\def.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\def.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\def.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\def.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\dns.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\dns.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\dns.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\dns.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\inet_chksum.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\inet_chksum.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\inet_chksum.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\inet_chksum.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\init.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\init.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\init.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\init.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ip.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\ip.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\ip.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ip.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\mem.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\mem.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\mem.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\mem.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\memp.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\memp.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\memp.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\memp.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\netif.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\netif.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\netif.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\netif.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\pbuf.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\pbuf.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\pbuf.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\pbuf.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\raw.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\raw.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\raw.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\raw.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\stats.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\stats.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\stats.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\stats.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\sys.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\sys.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\sys.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\sys.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -Wno-type-limits -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\tcp.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\tcp.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\tcp.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\tcp.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\tcp_in.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\tcp_in.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\tcp_in.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\tcp_in.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\tcp_out.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\tcp_out.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\tcp_out.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\tcp_out.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\timeouts.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\timeouts.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\timeouts.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\timeouts.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\udp.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\udp.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\udp.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\udp.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\autoip.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\autoip.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\autoip.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\autoip.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\dhcp.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\dhcp.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\dhcp.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\dhcp.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\etharp.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\etharp.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\etharp.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\etharp.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\icmp.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\icmp.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\icmp.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\icmp.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\igmp.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\igmp.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\igmp.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\igmp.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\ip4.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\ip4.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\ip4.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\ip4.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\ip4_napt.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\ip4_napt.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\ip4_napt.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\ip4_napt.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\ip4_addr.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\ip4_addr.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\ip4_addr.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\ip4_addr.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\ip4_frag.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\ip4_frag.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\ip4_frag.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\ip4_frag.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\dhcp6.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\dhcp6.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\dhcp6.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\dhcp6.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\ethip6.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\ethip6.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\ethip6.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\ethip6.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\icmp6.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\icmp6.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\icmp6.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\icmp6.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\inet6.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\inet6.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\inet6.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\inet6.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\ip6.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\ip6.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\ip6.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\ip6.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\ip6_addr.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\ip6_addr.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\ip6_addr.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\ip6_addr.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\ip6_frag.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\ip6_frag.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\ip6_frag.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\ip6_frag.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\mld6.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\mld6.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\mld6.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\mld6.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\nd6.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\nd6.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\nd6.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\nd6.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ethernet.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ethernet.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ethernet.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ethernet.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\bridgeif.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\bridgeif.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\bridgeif.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\bridgeif.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\bridgeif_fdb.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\bridgeif_fdb.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\bridgeif_fdb.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\bridgeif_fdb.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\slipif.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\slipif.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\slipif.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\slipif.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\auth.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\auth.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\auth.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\auth.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\ccp.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\ccp.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\ccp.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\ccp.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\chap-md5.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\chap-md5.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\chap-md5.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\chap-md5.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\chap-new.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\chap-new.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\chap-new.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\chap-new.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -Wno-array-parameter -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\chap_ms.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\chap_ms.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\chap_ms.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\chap_ms.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\demand.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\demand.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\demand.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\demand.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\eap.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\eap.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\eap.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\eap.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\ecp.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\ecp.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\ecp.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\ecp.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\eui64.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\eui64.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\eui64.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\eui64.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\fsm.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\fsm.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\fsm.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\fsm.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\ipcp.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\ipcp.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\ipcp.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\ipcp.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\ipv6cp.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\ipv6cp.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\ipv6cp.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\ipv6cp.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\lcp.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\lcp.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\lcp.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\lcp.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\magic.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\magic.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\magic.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\magic.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\mppe.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\mppe.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\mppe.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\mppe.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\multilink.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\multilink.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\multilink.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\multilink.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\ppp.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\ppp.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\ppp.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\ppp.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\pppapi.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\pppapi.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\pppapi.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\pppapi.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\pppcrypt.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\pppcrypt.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\pppcrypt.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\pppcrypt.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\pppoe.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\pppoe.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\pppoe.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\pppoe.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\pppol2tp.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\pppol2tp.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\pppol2tp.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\pppol2tp.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -Wno-type-limits -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\pppos.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\pppos.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\pppos.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\pppos.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\upap.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\upap.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\upap.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\upap.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\utils.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\utils.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\utils.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\utils.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\vj.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\vj.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\vj.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\vj.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\hooks\\tcp_isn_default.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\port\\hooks\\tcp_isn_default.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\port\\hooks\\tcp_isn_default.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\hooks\\tcp_isn_default.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\hooks\\lwip_default_hooks.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\port\\hooks\\lwip_default_hooks.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\port\\hooks\\lwip_default_hooks.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\hooks\\lwip_default_hooks.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\debug\\lwip_debug.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\port\\debug\\lwip_debug.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\port\\debug\\lwip_debug.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\debug\\lwip_debug.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\sockets_ext.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\port\\sockets_ext.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\port\\sockets_ext.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\sockets_ext.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\freertos\\sys_arch.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\port\\freertos\\sys_arch.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\port\\freertos\\sys_arch.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\freertos\\sys_arch.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\if_index.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\port\\if_index.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\port\\if_index.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\if_index.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\acd_dhcp_check.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\port\\acd_dhcp_check.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\port\\acd_dhcp_check.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\acd_dhcp_check.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\esp32xx\\vfs_lwip.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\port\\esp32xx\\vfs_lwip.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\port\\esp32xx\\vfs_lwip.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\esp32xx\\vfs_lwip.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\ping\\ping_sock.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\apps\\ping\\ping_sock.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\apps\\ping\\ping_sock.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\ping\\ping_sock.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\polarssl\\arc4.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\polarssl\\arc4.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\polarssl\\arc4.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\polarssl\\arc4.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\polarssl\\des.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\polarssl\\des.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\polarssl\\des.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\polarssl\\des.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\polarssl\\md4.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\polarssl\\md4.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\polarssl\\md4.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\polarssl\\md4.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\polarssl\\md5.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\polarssl\\md5.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\polarssl\\md5.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\polarssl\\md5.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\polarssl\\sha1.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\polarssl\\sha1.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\polarssl\\sha1.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\polarssl\\sha1.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\dhcpserver\\dhcpserver.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\lwip\\apps\\dhcpserver\\dhcpserver.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\lwip\\apps\\dhcpserver\\dhcpserver.c", + "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\dhcpserver\\dhcpserver.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_netif/private_include -IC:/esp/v6.0/esp-idf/components/esp_netif/lwip -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\esp_netif_handlers.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_netif\\esp_netif_handlers.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_netif\\esp_netif_handlers.c", + "output": "esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\esp_netif_handlers.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_netif/private_include -IC:/esp/v6.0/esp-idf/components/esp_netif/lwip -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\esp_netif_objects.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_netif\\esp_netif_objects.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_netif\\esp_netif_objects.c", + "output": "esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\esp_netif_objects.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_netif/private_include -IC:/esp/v6.0/esp-idf/components/esp_netif/lwip -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\esp_netif_defaults.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_netif\\esp_netif_defaults.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_netif\\esp_netif_defaults.c", + "output": "esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\esp_netif_defaults.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_netif/private_include -IC:/esp/v6.0/esp-idf/components/esp_netif/lwip -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\esp_netif_lwip.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_netif\\lwip\\esp_netif_lwip.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_netif\\lwip\\esp_netif_lwip.c", + "output": "esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\esp_netif_lwip.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_netif/private_include -IC:/esp/v6.0/esp-idf/components/esp_netif/lwip -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\esp_netif_sntp.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_netif\\lwip\\esp_netif_sntp.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_netif\\lwip\\esp_netif_sntp.c", + "output": "esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\esp_netif_sntp.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_netif/private_include -IC:/esp/v6.0/esp-idf/components/esp_netif/lwip -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\esp_netif_lwip_defaults.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_netif\\lwip\\esp_netif_lwip_defaults.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_netif\\lwip\\esp_netif_lwip_defaults.c", + "output": "esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\esp_netif_lwip_defaults.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_netif/private_include -IC:/esp/v6.0/esp-idf/components/esp_netif/lwip -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\netif\\wlanif.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_netif\\lwip\\netif\\wlanif.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_netif\\lwip\\netif\\wlanif.c", + "output": "esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\netif\\wlanif.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_netif/private_include -IC:/esp/v6.0/esp-idf/components/esp_netif/lwip -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\netif\\ethernetif.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_netif\\lwip\\netif\\ethernetif.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_netif\\lwip\\netif\\ethernetif.c", + "output": "esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\netif\\ethernetif.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_netif/private_include -IC:/esp/v6.0/esp-idf/components/esp_netif/lwip -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\netif\\esp_pbuf_ref.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_netif\\lwip\\netif\\esp_pbuf_ref.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_netif\\lwip\\netif\\esp_pbuf_ref.c", + "output": "esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\netif\\esp_pbuf_ref.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\port\\os_xtensa.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\port\\os_xtensa.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\port\\os_xtensa.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\port\\os_xtensa.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\port\\eloop.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\port\\eloop.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\port\\eloop.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\port\\eloop.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\ap_config.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\ap\\ap_config.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\ap\\ap_config.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\ap_config.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\ieee802_1x.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\ap\\ieee802_1x.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\ap\\ieee802_1x.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\ieee802_1x.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\wpa_auth.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\ap\\wpa_auth.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\ap\\wpa_auth.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\wpa_auth.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\wpa_auth_ie.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\ap\\wpa_auth_ie.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\ap\\wpa_auth_ie.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\wpa_auth_ie.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\pmksa_cache_auth.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\ap\\pmksa_cache_auth.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\ap\\pmksa_cache_auth.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\pmksa_cache_auth.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\sta_info.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\ap\\sta_info.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\ap\\sta_info.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\sta_info.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\ieee802_11.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\ap\\ieee802_11.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\ap\\ieee802_11.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\ieee802_11.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\comeback_token.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\ap\\comeback_token.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\ap\\comeback_token.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\ap\\comeback_token.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\common\\sae.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\common\\sae.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\common\\sae.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\common\\sae.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\common\\dragonfly.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\common\\dragonfly.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\common\\dragonfly.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\common\\dragonfly.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\common\\wpa_common.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\common\\wpa_common.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\common\\wpa_common.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\common\\wpa_common.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\bitfield.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\utils\\bitfield.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\utils\\bitfield.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\bitfield.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\aes-siv.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\aes-siv.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\aes-siv.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\aes-siv.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha256-kdf.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha256-kdf.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha256-kdf.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha256-kdf.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\ccmp.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\ccmp.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\ccmp.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\ccmp.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\aes-gcm.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\aes-gcm.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\aes-gcm.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\aes-gcm.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\crypto_ops.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\crypto_ops.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\crypto_ops.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\crypto_ops.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\dh_group5.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\dh_group5.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\dh_group5.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\dh_group5.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\dh_groups.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\dh_groups.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\dh_groups.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\dh_groups.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\ms_funcs.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\ms_funcs.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\ms_funcs.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\ms_funcs.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha1-tlsprf.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha1-tlsprf.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha1-tlsprf.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha1-tlsprf.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha256-tlsprf.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha256-tlsprf.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha256-tlsprf.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha256-tlsprf.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha384-tlsprf.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha384-tlsprf.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha384-tlsprf.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha384-tlsprf.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha256-prf.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha256-prf.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha256-prf.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha256-prf.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha1-prf.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha1-prf.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha1-prf.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha1-prf.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha384-prf.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha384-prf.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha384-prf.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha384-prf.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\md4-internal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\md4-internal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\md4-internal.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\md4-internal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha1-tprf.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha1-tprf.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\sha1-tprf.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\sha1-tprf.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_common\\eap_wsc_common.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\eap_common\\eap_wsc_common.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\eap_common\\eap_wsc_common.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_common\\eap_wsc_common.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\common\\ieee802_11_common.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\common\\ieee802_11_common.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\common\\ieee802_11_common.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\common\\ieee802_11_common.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\chap.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\chap.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\chap.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\chap.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_common.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_common.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_common.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_common.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_mschapv2.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_mschapv2.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_mschapv2.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_mschapv2.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_peap.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_peap.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_peap.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_peap.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_peap_common.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_peap_common.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_peap_common.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_peap_common.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_tls.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_tls.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_tls.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_tls.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_tls_common.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_tls_common.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_tls_common.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_tls_common.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_ttls.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_ttls.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_ttls.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_ttls.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\mschapv2.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\mschapv2.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\mschapv2.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\mschapv2.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_fast.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_fast.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_fast.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_fast.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_fast_common.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_fast_common.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_fast_common.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_fast_common.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_fast_pac.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_fast_pac.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\eap_peer\\eap_fast_pac.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\eap_peer\\eap_fast_pac.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\rsn_supp\\pmksa_cache.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\rsn_supp\\pmksa_cache.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\rsn_supp\\pmksa_cache.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\rsn_supp\\pmksa_cache.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\rsn_supp\\wpa.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\rsn_supp\\wpa.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\rsn_supp\\wpa.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\rsn_supp\\wpa.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\rsn_supp\\wpa_ie.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\rsn_supp\\wpa_ie.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\rsn_supp\\wpa_ie.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\rsn_supp\\wpa_ie.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\base64.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\utils\\base64.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\utils\\base64.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\base64.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\common.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\utils\\common.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\utils\\common.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\common.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\ext_password.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\utils\\ext_password.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\utils\\ext_password.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\ext_password.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\uuid.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\utils\\uuid.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\utils\\uuid.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\uuid.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\wpabuf.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\utils\\wpabuf.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\utils\\wpabuf.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\wpabuf.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\wpa_debug.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\utils\\wpa_debug.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\utils\\wpa_debug.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\wpa_debug.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\json.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\utils\\json.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\utils\\json.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\utils\\json.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\\wps.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\\wps.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\\wps_attr_build.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps_attr_build.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps_attr_build.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\\wps_attr_build.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\\wps_attr_parse.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps_attr_parse.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps_attr_parse.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\\wps_attr_parse.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\\wps_attr_process.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps_attr_process.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps_attr_process.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\\wps_attr_process.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\\wps_common.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps_common.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps_common.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\\wps_common.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\\wps_dev_attr.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps_dev_attr.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps_dev_attr.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\\wps_dev_attr.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\\wps_enrollee.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps_enrollee.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\wps\\wps_enrollee.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\wps\\wps_enrollee.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\common\\sae_pk.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\common\\sae_pk.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\common\\sae_pk.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\common\\sae_pk.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_eap_client.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_eap_client.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_eap_client.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_eap_client.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_wpa2_api_port.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_wpa2_api_port.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_wpa2_api_port.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_wpa2_api_port.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_wpa_main.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_wpa_main.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_wpa_main.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_wpa_main.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_wpas_glue.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_wpas_glue.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_wpas_glue.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_wpas_glue.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_common.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_common.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_common.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_common.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_wps.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_wps.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_wps.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_wps.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_wpa3.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_wpa3.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_wpa3.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_wpa3.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_owe.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_owe.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_owe.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_owe.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_hostap.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_hostap.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\esp_hostap.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\esp_hostap.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\crypto\\tls_mbedtls.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\tls_mbedtls.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\tls_mbedtls.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\crypto\\tls_mbedtls.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\crypto\\crypto_mbedtls.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\crypto_mbedtls.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\crypto_mbedtls.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\crypto\\crypto_mbedtls.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\crypto\\crypto_mbedtls-bignum.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\crypto_mbedtls-bignum.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\crypto_mbedtls-bignum.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\crypto\\crypto_mbedtls-bignum.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\crypto\\crypto_mbedtls-rsa.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\crypto_mbedtls-rsa.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\crypto_mbedtls-rsa.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\crypto\\crypto_mbedtls-rsa.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\crypto\\crypto_mbedtls-ec.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\crypto_mbedtls-ec.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\crypto_mbedtls-ec.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\crypto\\crypto_mbedtls-ec.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\rc4.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\rc4.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\rc4.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\rc4.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\des-internal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\des-internal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\des-internal.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\des-internal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\crypto\\fastpbkdf2.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\fastpbkdf2.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\esp_supplicant\\src\\crypto\\fastpbkdf2.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\esp_supplicant\\src\\crypto\\fastpbkdf2.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\aes-wrap.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\aes-wrap.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\aes-wrap.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\aes-wrap.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\aes-unwrap.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\aes-unwrap.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\aes-unwrap.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\aes-unwrap.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DCONFIG_CRYPTO_MBEDTLS -DCONFIG_ECC -DCONFIG_FAST_PBKDF2 -DCONFIG_GMAC -DCONFIG_IEEE80211W -DCONFIG_NO_RADIUS -DCONFIG_OWE_STA -DCONFIG_SAE -DCONFIG_SAE_H2E -DCONFIG_SAE_PK -DCONFIG_SHA256 -DCONFIG_WPA3_COMPAT -DCONFIG_WPA3_SAE -DCONFIG_WPS -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESPRESSIF_USE -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DESP_SUPPLICANT -DIDF_VER=\\\"v6.0\\\" -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D__ets__ -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include/esp_private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-strict-aliasing -Wno-write-strings -Wno-format -o esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\aes-ccm.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\aes-ccm.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wpa_supplicant\\src\\crypto\\aes-ccm.c", + "output": "esp-idf\\wpa_supplicant\\CMakeFiles\\__idf_wpa_supplicant.dir\\src\\crypto\\aes-ccm.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_coex/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_coex\\CMakeFiles\\__idf_esp_coex.dir\\esp32\\esp_coex_adapter.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_coex\\esp32\\esp_coex_adapter.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_coex\\esp32\\esp_coex_adapter.c", + "output": "esp-idf\\esp_coex\\CMakeFiles\\__idf_esp_coex.dir\\esp32\\esp_coex_adapter.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_coex/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_coex\\CMakeFiles\\__idf_esp_coex.dir\\src\\coexist_debug_diagram.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_coex\\src\\coexist_debug_diagram.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_coex\\src\\coexist_debug_diagram.c", + "output": "esp-idf\\esp_coex\\CMakeFiles\\__idf_esp_coex.dir\\src\\coexist_debug_diagram.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_coex/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_coex\\CMakeFiles\\__idf_esp_coex.dir\\src\\coexist_debug.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_coex\\src\\coexist_debug.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_coex\\src\\coexist_debug.c", + "output": "esp-idf\\esp_coex\\CMakeFiles\\__idf_esp_coex.dir\\src\\coexist_debug.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/esp_coex/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\lib_printf.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_wifi\\src\\lib_printf.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_wifi\\src\\lib_printf.c", + "output": "esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\lib_printf.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/esp_coex/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\mesh_event.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_wifi\\src\\mesh_event.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_wifi\\src\\mesh_event.c", + "output": "esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\mesh_event.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/esp_coex/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\smartconfig.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_wifi\\src\\smartconfig.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_wifi\\src\\smartconfig.c", + "output": "esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\smartconfig.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/esp_coex/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\wifi_init.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_wifi\\src\\wifi_init.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_wifi\\src\\wifi_init.c", + "output": "esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\wifi_init.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/esp_coex/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\wifi_default.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_wifi\\src\\wifi_default.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_wifi\\src\\wifi_default.c", + "output": "esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\wifi_default.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/esp_coex/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\wifi_netif.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_wifi\\src\\wifi_netif.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_wifi\\src\\wifi_netif.c", + "output": "esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\wifi_netif.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/esp_coex/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\wifi_default_ap.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_wifi\\src\\wifi_default_ap.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_wifi\\src\\wifi_default_ap.c", + "output": "esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\wifi_default_ap.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/esp_coex/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\esp32\\esp_adapter.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_wifi\\esp32\\esp_adapter.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_wifi\\esp32\\esp_adapter.c", + "output": "esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\esp32\\esp_adapter.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/esp_coex/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-unterminated-string-initialization -o esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\regulatory\\esp_wifi_regulatory.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_wifi\\regulatory\\esp_wifi_regulatory.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_wifi\\regulatory\\esp_wifi_regulatory.c", + "output": "esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\regulatory\\esp_wifi_regulatory.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/src -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/roaming_app/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/esp_coex/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\smartconfig_ack.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_wifi\\src\\smartconfig_ack.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_wifi\\src\\smartconfig_ack.c", + "output": "esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\smartconfig_ack.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_psram/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_spi\\CMakeFiles\\__idf_esp_driver_spi.dir\\src\\gpspi\\spi_common.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_spi\\src\\gpspi\\spi_common.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_spi\\src\\gpspi\\spi_common.c", + "output": "esp-idf\\esp_driver_spi\\CMakeFiles\\__idf_esp_driver_spi.dir\\src\\gpspi\\spi_common.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_psram/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_spi\\CMakeFiles\\__idf_esp_driver_spi.dir\\src\\gpspi\\spi_master.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_spi\\src\\gpspi\\spi_master.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_spi\\src\\gpspi\\spi_master.c", + "output": "esp-idf\\esp_driver_spi\\CMakeFiles\\__idf_esp_driver_spi.dir\\src\\gpspi\\spi_master.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_psram/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_spi\\CMakeFiles\\__idf_esp_driver_spi.dir\\src\\gpspi\\spi_slave.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_spi\\src\\gpspi\\spi_slave.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_spi\\src\\gpspi\\spi_slave.c", + "output": "esp-idf\\esp_driver_spi\\CMakeFiles\\__idf_esp_driver_spi.dir\\src\\gpspi\\spi_slave.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_psram/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_spi\\CMakeFiles\\__idf_esp_driver_spi.dir\\src\\gpspi\\spi_dma.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_spi\\src\\gpspi\\spi_dma.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_spi\\src\\gpspi\\spi_dma.c", + "output": "esp-idf\\esp_driver_spi\\CMakeFiles\\__idf_esp_driver_spi.dir\\src\\gpspi\\spi_dma.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/private_include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/src/port/xtensa/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\src\\gdbstub.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_gdbstub\\src\\gdbstub.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_gdbstub\\src\\gdbstub.c", + "output": "esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\src\\gdbstub.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/private_include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/src/port/xtensa/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\src\\gdbstub_transport.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_gdbstub\\src\\gdbstub_transport.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_gdbstub\\src\\gdbstub_transport.c", + "output": "esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\src\\gdbstub_transport.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/private_include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/src/port/xtensa/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\src\\packet.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_gdbstub\\src\\packet.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_gdbstub\\src\\packet.c", + "output": "esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\src\\packet.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/private_include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/src/port/xtensa/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\src\\port\\xtensa\\gdbstub_xtensa.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_gdbstub\\src\\port\\xtensa\\gdbstub_xtensa.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_gdbstub\\src\\port\\xtensa\\gdbstub_xtensa.c", + "output": "esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\src\\port\\xtensa\\gdbstub_xtensa.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/private_include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/src/port/xtensa/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/asmflags\" -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\src\\port\\xtensa\\gdbstub-entry.S.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_gdbstub\\src\\port\\xtensa\\gdbstub-entry.S", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_gdbstub\\src\\port\\xtensa\\gdbstub-entry.S", + "output": "esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\src\\port\\xtensa\\gdbstub-entry.S.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/private_include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/src/port/xtensa/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/asmflags\" -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\src\\port\\xtensa\\xt_debugexception.S.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_gdbstub\\src\\port\\xtensa\\xt_debugexception.S", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_gdbstub\\src\\port\\xtensa\\xt_debugexception.S", + "output": "esp-idf\\esp_gdbstub\\CMakeFiles\\__idf_esp_gdbstub.dir\\src\\port\\xtensa\\xt_debugexception.S.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/unity/include -IC:/esp/v6.0/esp-idf/components/unity/unity/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-unused-const-variable -o esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity\\src\\unity.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\unity\\unity\\src\\unity.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\unity\\unity\\src\\unity.c", + "output": "esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity\\src\\unity.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/unity/include -IC:/esp/v6.0/esp-idf/components/unity/unity/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-unused-const-variable -o esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity_compat.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\unity\\unity_compat.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\unity\\unity_compat.c", + "output": "esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity_compat.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/unity/include -IC:/esp/v6.0/esp-idf/components/unity/unity/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-unused-const-variable -o esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity_runner.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\unity\\unity_runner.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\unity\\unity_runner.c", + "output": "esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity_runner.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/unity/include -IC:/esp/v6.0/esp-idf/components/unity/unity/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-unused-const-variable -o esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity_utils_freertos.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\unity\\unity_utils_freertos.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\unity\\unity_utils_freertos.c", + "output": "esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity_utils_freertos.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/unity/include -IC:/esp/v6.0/esp-idf/components/unity/unity/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-unused-const-variable -o esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity_utils_cache.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\unity\\unity_utils_cache.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\unity\\unity_utils_cache.c", + "output": "esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity_utils_cache.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/unity/include -IC:/esp/v6.0/esp-idf/components/unity/unity/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-unused-const-variable -o esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity_utils_memory.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\unity\\unity_utils_memory.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\unity\\unity_utils_memory.c", + "output": "esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity_utils_memory.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/unity/include -IC:/esp/v6.0/esp-idf/components/unity/unity/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-unused-const-variable -o esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity_port_esp32.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\unity\\unity_port_esp32.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\unity\\unity_port_esp32.c", + "output": "esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\unity_port_esp32.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/unity/include -IC:/esp/v6.0/esp-idf/components/unity/unity/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-unused-const-variable -o esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\port\\esp\\unity_utils_memory_esp.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\unity\\port\\esp\\unity_utils_memory_esp.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\unity\\port\\esp\\unity_utils_memory_esp.c", + "output": "esp-idf\\unity\\CMakeFiles\\__idf_unity.dir\\port\\esp\\unity_utils_memory_esp.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/cmock/CMock/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/unity/include -IC:/esp/v6.0/esp-idf/components/unity/unity/src @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\cmock\\CMakeFiles\\__idf_cmock.dir\\CMock\\src\\cmock.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\cmock\\CMock\\src\\cmock.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\cmock\\CMock\\src\\cmock.c", + "output": "esp-idf\\cmock\\CMakeFiles\\__idf_cmock.dir\\CMock\\src\\cmock.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/console/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce --include=console_stdio_private.h -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\commands.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\console\\commands.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\console\\commands.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\commands.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/console/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce --include=console_stdio_private.h -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\esp_console_common.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\console\\esp_console_common.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\console\\esp_console_common.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\esp_console_common.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/console/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce --include=console_stdio_private.h -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\esp_console_repl_internal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\console\\esp_console_repl_internal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\console\\esp_console_repl_internal.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\esp_console_repl_internal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/console/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce --include=console_stdio_private.h -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\split_argv.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\console\\split_argv.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\console\\split_argv.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\split_argv.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/console/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce --include=console_stdio_private.h -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\linenoise\\linenoise.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\console\\linenoise\\linenoise.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\console\\linenoise\\linenoise.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\linenoise\\linenoise.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/console/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\esp_console_repl_chip.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\console\\esp_console_repl_chip.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\console\\esp_console_repl_chip.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\esp_console_repl_chip.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/console/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce --include=console_stdio_private.h -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_cmd.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\console\\argtable3\\arg_cmd.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\console\\argtable3\\arg_cmd.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_cmd.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/console/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce --include=console_stdio_private.h -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_date.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\console\\argtable3\\arg_date.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\console\\argtable3\\arg_date.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_date.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/console/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce --include=console_stdio_private.h -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_dbl.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\console\\argtable3\\arg_dbl.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\console\\argtable3\\arg_dbl.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_dbl.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/console/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce --include=console_stdio_private.h -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_dstr.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\console\\argtable3\\arg_dstr.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\console\\argtable3\\arg_dstr.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_dstr.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/console/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce --include=console_stdio_private.h -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_end.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\console\\argtable3\\arg_end.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\console\\argtable3\\arg_end.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_end.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/console/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce --include=console_stdio_private.h -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_file.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\console\\argtable3\\arg_file.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\console\\argtable3\\arg_file.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_file.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/console/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce --include=console_stdio_private.h -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_hashtable.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\console\\argtable3\\arg_hashtable.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\console\\argtable3\\arg_hashtable.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_hashtable.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/console/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce --include=console_stdio_private.h -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_int.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\console\\argtable3\\arg_int.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\console\\argtable3\\arg_int.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_int.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/console/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce --include=console_stdio_private.h -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_lit.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\console\\argtable3\\arg_lit.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\console\\argtable3\\arg_lit.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_lit.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/console/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce --include=console_stdio_private.h -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_rem.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\console\\argtable3\\arg_rem.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\console\\argtable3\\arg_rem.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_rem.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/console/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce --include=console_stdio_private.h -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_rex.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\console\\argtable3\\arg_rex.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\console\\argtable3\\arg_rex.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_rex.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/console/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce --include=console_stdio_private.h -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_str.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\console\\argtable3\\arg_str.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\console\\argtable3\\arg_str.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_str.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/console/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce --include=console_stdio_private.h -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_utils.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\console\\argtable3\\arg_utils.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\console\\argtable3\\arg_utils.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_utils.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/console/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce --include=console_stdio_private.h -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\argtable3.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\console\\argtable3\\argtable3.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\console\\argtable3\\argtable3.c", + "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\argtable3.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_i2c\\CMakeFiles\\__idf_esp_hal_i2c.dir\\i2c_hal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_i2c\\i2c_hal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_i2c\\i2c_hal.c", + "output": "esp-idf\\esp_hal_i2c\\CMakeFiles\\__idf_esp_hal_i2c.dir\\i2c_hal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_i2c\\CMakeFiles\\__idf_esp_hal_i2c.dir\\i2c_hal_iram.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_i2c\\i2c_hal_iram.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_i2c\\i2c_hal_iram.c", + "output": "esp-idf\\esp_hal_i2c\\CMakeFiles\\__idf_esp_hal_i2c.dir\\i2c_hal_iram.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_i2c\\CMakeFiles\\__idf_esp_hal_i2c.dir\\esp32\\i2c_periph.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_i2c\\esp32\\i2c_periph.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_i2c\\esp32\\i2c_periph.c", + "output": "esp-idf\\esp_hal_i2c\\CMakeFiles\\__idf_esp_hal_i2c.dir\\esp32\\i2c_periph.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_twai\\CMakeFiles\\__idf_esp_hal_twai.dir\\esp32\\twai_periph.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_twai\\esp32\\twai_periph.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_twai\\esp32\\twai_periph.c", + "output": "esp-idf\\esp_hal_twai\\CMakeFiles\\__idf_esp_hal_twai.dir\\esp32\\twai_periph.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_twai\\CMakeFiles\\__idf_esp_hal_twai.dir\\twai_hal_v1.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_twai\\twai_hal_v1.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_twai\\twai_hal_v1.c", + "output": "esp-idf\\esp_hal_twai\\CMakeFiles\\__idf_esp_hal_twai.dir\\twai_hal_v1.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/driver/i2c/include -IC:/esp/v6.0/esp-idf/components/driver/touch_sensor/include -IC:/esp/v6.0/esp-idf/components/driver/twai/include -IC:/esp/v6.0/esp-idf/components/driver/touch_sensor/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\i2c\\i2c.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\driver\\i2c\\i2c.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\driver\\i2c\\i2c.c", + "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\i2c\\i2c.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/driver/i2c/include -IC:/esp/v6.0/esp-idf/components/driver/touch_sensor/include -IC:/esp/v6.0/esp-idf/components/driver/twai/include -IC:/esp/v6.0/esp-idf/components/driver/touch_sensor/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\touch_sensor\\touch_sensor_common.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\driver\\touch_sensor\\touch_sensor_common.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\driver\\touch_sensor\\touch_sensor_common.c", + "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\touch_sensor\\touch_sensor_common.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/driver/i2c/include -IC:/esp/v6.0/esp-idf/components/driver/touch_sensor/include -IC:/esp/v6.0/esp-idf/components/driver/twai/include -IC:/esp/v6.0/esp-idf/components/driver/touch_sensor/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\touch_sensor\\esp32\\touch_sensor.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\driver\\touch_sensor\\esp32\\touch_sensor.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\driver\\touch_sensor\\esp32\\touch_sensor.c", + "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\touch_sensor\\esp32\\touch_sensor.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/driver/i2c/include -IC:/esp/v6.0/esp-idf/components/driver/touch_sensor/include -IC:/esp/v6.0/esp-idf/components/driver/twai/include -IC:/esp/v6.0/esp-idf/components/driver/touch_sensor/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\twai\\twai.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\driver\\twai\\twai.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\driver\\twai\\twai.c", + "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\twai\\twai.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\http_parser\\CMakeFiles\\__idf_http_parser.dir\\http_parser.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\http_parser\\http_parser.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\http_parser\\http_parser.c", + "output": "esp-idf\\http_parser\\CMakeFiles\\__idf_http_parser.dir\\http_parser.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/esp-tls/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_timer/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\\esp_tls.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp-tls\\esp_tls.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp-tls\\esp_tls.c", + "output": "esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\\esp_tls.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/esp-tls/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_timer/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\\esp-tls-crypto\\esp_tls_crypto.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp-tls\\esp-tls-crypto\\esp_tls_crypto.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp-tls\\esp-tls-crypto\\esp_tls_crypto.c", + "output": "esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\\esp-tls-crypto\\esp_tls_crypto.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/esp-tls/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_timer/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\\esp_tls_error_capture.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp-tls\\esp_tls_error_capture.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp-tls\\esp_tls_error_capture.c", + "output": "esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\\esp_tls_error_capture.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/esp-tls/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_timer/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\\esp_tls_platform_port.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp-tls\\esp_tls_platform_port.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp-tls\\esp_tls_platform_port.c", + "output": "esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\\esp_tls_platform_port.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/esp-tls/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_timer/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\\esp_tls_mbedtls.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp-tls\\esp_tls_mbedtls.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp-tls\\esp_tls_mbedtls.c", + "output": "esp-idf\\esp-tls\\CMakeFiles\\__idf_esp-tls.dir\\esp_tls_mbedtls.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_common.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_i2s\\i2s_common.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_i2s\\i2s_common.c", + "output": "esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_common.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_std.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_i2s\\i2s_std.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_i2s\\i2s_std.c", + "output": "esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_std.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_pdm.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_i2s\\i2s_pdm.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_i2s\\i2s_pdm.c", + "output": "esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_pdm.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_platform.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_i2s\\i2s_platform.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_i2s\\i2s_platform.c", + "output": "esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_platform.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_adc/include -IC:/esp/v6.0/esp-idf/components/esp_adc/interface -IC:/esp/v6.0/esp-idf/components/esp_adc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_oneshot.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_adc\\adc_oneshot.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_adc\\adc_oneshot.c", + "output": "esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_oneshot.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_adc/include -IC:/esp/v6.0/esp-idf/components/esp_adc/interface -IC:/esp/v6.0/esp-idf/components/esp_adc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_common.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_adc\\adc_common.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_adc\\adc_common.c", + "output": "esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_common.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_adc/include -IC:/esp/v6.0/esp-idf/components/esp_adc/interface -IC:/esp/v6.0/esp-idf/components/esp_adc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_cali.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_adc\\adc_cali.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_adc\\adc_cali.c", + "output": "esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_cali.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_adc/include -IC:/esp/v6.0/esp-idf/components/esp_adc/interface -IC:/esp/v6.0/esp-idf/components/esp_adc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_cali_curve_fitting.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_adc\\adc_cali_curve_fitting.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_adc\\adc_cali_curve_fitting.c", + "output": "esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_cali_curve_fitting.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_adc/include -IC:/esp/v6.0/esp-idf/components/esp_adc/interface -IC:/esp/v6.0/esp-idf/components/esp_adc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_continuous.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_adc\\adc_continuous.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_adc\\adc_continuous.c", + "output": "esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\adc_continuous.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_adc/include -IC:/esp/v6.0/esp-idf/components/esp_adc/interface -IC:/esp/v6.0/esp-idf/components/esp_adc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\esp32\\adc_dma.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_adc\\esp32\\adc_dma.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_adc\\esp32\\adc_dma.c", + "output": "esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\esp32\\adc_dma.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_adc/include -IC:/esp/v6.0/esp-idf/components/esp_adc/interface -IC:/esp/v6.0/esp-idf/components/esp_adc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\esp32\\adc_cali_line_fitting.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_adc\\esp32\\adc_cali_line_fitting.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_adc\\esp32\\adc_cali_line_fitting.c", + "output": "esp-idf\\esp_adc\\CMakeFiles\\__idf_esp_adc.dir\\esp32\\adc_cali_line_fitting.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_cam/include -IC:/esp/v6.0/esp-idf/components/esp_driver_cam/interface -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_isp/include -IC:/esp/v6.0/esp-idf/components/esp_hal_cam/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_cam\\CMakeFiles\\__idf_esp_driver_cam.dir\\esp_cam_ctlr.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_cam\\esp_cam_ctlr.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_cam\\esp_cam_ctlr.c", + "output": "esp-idf\\esp_driver_cam\\CMakeFiles\\__idf_esp_driver_cam.dir\\esp_cam_ctlr.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_cam/include -IC:/esp/v6.0/esp-idf/components/esp_driver_cam/interface -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_isp/include -IC:/esp/v6.0/esp-idf/components/esp_hal_cam/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_cam\\CMakeFiles\\__idf_esp_driver_cam.dir\\dvp_share_ctrl.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_cam\\dvp_share_ctrl.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_cam\\dvp_share_ctrl.c", + "output": "esp-idf\\esp_driver_cam\\CMakeFiles\\__idf_esp_driver_cam.dir\\dvp_share_ctrl.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_dac/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_dac\\CMakeFiles\\__idf_esp_driver_dac.dir\\dac_oneshot.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_dac\\dac_oneshot.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_dac\\dac_oneshot.c", + "output": "esp-idf\\esp_driver_dac\\CMakeFiles\\__idf_esp_driver_dac.dir\\dac_oneshot.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_dac/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_dac\\CMakeFiles\\__idf_esp_driver_dac.dir\\dac_cosine.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_dac\\dac_cosine.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_dac\\dac_cosine.c", + "output": "esp-idf\\esp_driver_dac\\CMakeFiles\\__idf_esp_driver_dac.dir\\dac_cosine.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_dac/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_dac\\CMakeFiles\\__idf_esp_driver_dac.dir\\dac_continuous.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_dac\\dac_continuous.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_dac\\dac_continuous.c", + "output": "esp-idf\\esp_driver_dac\\CMakeFiles\\__idf_esp_driver_dac.dir\\dac_continuous.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_dac/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_dac\\CMakeFiles\\__idf_esp_driver_dac.dir\\dac_common.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_dac\\dac_common.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_dac\\dac_common.c", + "output": "esp-idf\\esp_driver_dac\\CMakeFiles\\__idf_esp_driver_dac.dir\\dac_common.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_dac/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_dac\\CMakeFiles\\__idf_esp_driver_dac.dir\\esp32\\dac_dma.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_dac\\esp32\\dac_dma.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_dac\\esp32\\dac_dma.c", + "output": "esp-idf\\esp_driver_dac\\CMakeFiles\\__idf_esp_driver_dac.dir\\esp32\\dac_dma.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_i2c\\CMakeFiles\\__idf_esp_driver_i2c.dir\\i2c_master.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_i2c\\i2c_master.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_i2c\\i2c_master.c", + "output": "esp-idf\\esp_driver_i2c\\CMakeFiles\\__idf_esp_driver_i2c.dir\\i2c_master.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_i2c\\CMakeFiles\\__idf_esp_driver_i2c.dir\\i2c_common.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_i2c\\i2c_common.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_i2c\\i2c_common.c", + "output": "esp-idf\\esp_driver_i2c\\CMakeFiles\\__idf_esp_driver_i2c.dir\\i2c_common.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_i2c\\CMakeFiles\\__idf_esp_driver_i2c.dir\\i2c_slave.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_i2c\\i2c_slave.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_i2c\\i2c_slave.c", + "output": "esp-idf\\esp_driver_i2c\\CMakeFiles\\__idf_esp_driver_i2c.dir\\i2c_slave.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_ledc/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ledc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_ledc\\CMakeFiles\\__idf_esp_hal_ledc.dir\\ledc_hal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_ledc\\ledc_hal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_ledc\\ledc_hal.c", + "output": "esp-idf\\esp_hal_ledc\\CMakeFiles\\__idf_esp_hal_ledc.dir\\ledc_hal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_ledc/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ledc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_ledc\\CMakeFiles\\__idf_esp_hal_ledc.dir\\ledc_hal_iram.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_ledc\\ledc_hal_iram.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_ledc\\ledc_hal_iram.c", + "output": "esp-idf\\esp_hal_ledc\\CMakeFiles\\__idf_esp_hal_ledc.dir\\ledc_hal_iram.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_ledc/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ledc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_ledc\\CMakeFiles\\__idf_esp_hal_ledc.dir\\esp32\\ledc_periph.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_ledc\\esp32\\ledc_periph.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_ledc\\esp32\\ledc_periph.c", + "output": "esp-idf\\esp_hal_ledc\\CMakeFiles\\__idf_esp_hal_ledc.dir\\esp32\\ledc_periph.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_ledc/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_ledc/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ledc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_ledc\\CMakeFiles\\__idf_esp_driver_ledc.dir\\src\\ledc.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_ledc\\src\\ledc.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_ledc\\src\\ledc.c", + "output": "esp-idf\\esp_driver_ledc\\CMakeFiles\\__idf_esp_driver_ledc.dir\\src\\ledc.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_mcpwm\\CMakeFiles\\__idf_esp_hal_mcpwm.dir\\mcpwm_hal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_mcpwm\\mcpwm_hal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_mcpwm\\mcpwm_hal.c", + "output": "esp-idf\\esp_hal_mcpwm\\CMakeFiles\\__idf_esp_hal_mcpwm.dir\\mcpwm_hal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_mcpwm\\CMakeFiles\\__idf_esp_hal_mcpwm.dir\\esp32\\mcpwm_periph.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_mcpwm\\esp32\\mcpwm_periph.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_mcpwm\\esp32\\mcpwm_periph.c", + "output": "esp-idf\\esp_hal_mcpwm\\CMakeFiles\\__idf_esp_hal_mcpwm.dir\\esp32\\mcpwm_periph.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_cap.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_cap.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_cap.c", + "output": "esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_cap.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_cmpr.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_cmpr.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_cmpr.c", + "output": "esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_cmpr.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_com.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_com.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_com.c", + "output": "esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_com.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_fault.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_fault.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_fault.c", + "output": "esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_fault.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_gen.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_gen.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_gen.c", + "output": "esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_gen.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_oper.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_oper.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_oper.c", + "output": "esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_oper.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_sync.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_sync.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_sync.c", + "output": "esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_sync.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_timer.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_timer.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_timer.c", + "output": "esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_timer.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_pcnt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pcnt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_pcnt\\CMakeFiles\\__idf_esp_hal_pcnt.dir\\pcnt_hal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_pcnt\\pcnt_hal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_pcnt\\pcnt_hal.c", + "output": "esp-idf\\esp_hal_pcnt\\CMakeFiles\\__idf_esp_hal_pcnt.dir\\pcnt_hal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_pcnt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pcnt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_pcnt\\CMakeFiles\\__idf_esp_hal_pcnt.dir\\esp32\\pcnt_periph.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_pcnt\\esp32\\pcnt_periph.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_pcnt\\esp32\\pcnt_periph.c", + "output": "esp-idf\\esp_hal_pcnt\\CMakeFiles\\__idf_esp_hal_pcnt.dir\\esp32\\pcnt_periph.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_pcnt/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_pcnt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pcnt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_pcnt\\CMakeFiles\\__idf_esp_driver_pcnt.dir\\src\\pulse_cnt.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_pcnt\\src\\pulse_cnt.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_pcnt\\src\\pulse_cnt.c", + "output": "esp-idf\\esp_driver_pcnt\\CMakeFiles\\__idf_esp_driver_pcnt.dir\\src\\pulse_cnt.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_rmt\\CMakeFiles\\__idf_esp_hal_rmt.dir\\rmt_hal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_rmt\\rmt_hal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_rmt\\rmt_hal.c", + "output": "esp-idf\\esp_hal_rmt\\CMakeFiles\\__idf_esp_hal_rmt.dir\\rmt_hal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_rmt\\CMakeFiles\\__idf_esp_hal_rmt.dir\\esp32\\rmt_periph.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_rmt\\esp32\\rmt_periph.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_rmt\\esp32\\rmt_periph.c", + "output": "esp-idf\\esp_hal_rmt\\CMakeFiles\\__idf_esp_hal_rmt.dir\\esp32\\rmt_periph.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_rmt/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_bitscrambler/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_common.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_common.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_common.c", + "output": "esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_common.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_rmt/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_bitscrambler/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_encoder.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_encoder.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_encoder.c", + "output": "esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_encoder.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_rmt/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_bitscrambler/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_encoder_bytes.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_encoder_bytes.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_encoder_bytes.c", + "output": "esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_encoder_bytes.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_rmt/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_bitscrambler/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_encoder_copy.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_encoder_copy.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_encoder_copy.c", + "output": "esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_encoder_copy.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_rmt/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_bitscrambler/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_encoder_simple.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_encoder_simple.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_encoder_simple.c", + "output": "esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_encoder_simple.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_rmt/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_bitscrambler/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_rx.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_rx.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_rx.c", + "output": "esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_rx.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_rmt/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_bitscrambler/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_tx.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_tx.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_tx.c", + "output": "esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_tx.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_cmd.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\sdmmc\\sdmmc_cmd.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\sdmmc\\sdmmc_cmd.c", + "output": "esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_cmd.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_common.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\sdmmc\\sdmmc_common.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\sdmmc\\sdmmc_common.c", + "output": "esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_common.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_init.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\sdmmc\\sdmmc_init.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\sdmmc\\sdmmc_init.c", + "output": "esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_init.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_mmc.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\sdmmc\\sdmmc_mmc.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\sdmmc\\sdmmc_mmc.c", + "output": "esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_mmc.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_sd.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\sdmmc\\sdmmc_sd.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\sdmmc\\sdmmc_sd.c", + "output": "esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_sd.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_blockdev.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\sdmmc\\sdmmc_blockdev.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\sdmmc\\sdmmc_blockdev.c", + "output": "esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_blockdev.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sd_pwr_ctrl\\sd_pwr_ctrl.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\sdmmc\\sd_pwr_ctrl\\sd_pwr_ctrl.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\sdmmc\\sd_pwr_ctrl\\sd_pwr_ctrl.c", + "output": "esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sd_pwr_ctrl\\sd_pwr_ctrl.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_io.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\sdmmc\\sdmmc_io.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\sdmmc\\sdmmc_io.c", + "output": "esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_io.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_sd_intf/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_sd_intf\\CMakeFiles\\__idf_esp_driver_sd_intf.dir\\sd_host.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_sd_intf\\sd_host.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_sd_intf\\sd_host.c", + "output": "esp-idf\\esp_driver_sd_intf\\CMakeFiles\\__idf_esp_driver_sd_intf.dir\\sd_host.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_sdio/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_sdio\\CMakeFiles\\__idf_esp_driver_sdio.dir\\src\\sdio_slave.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_sdio\\src\\sdio_slave.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_sdio\\src\\sdio_slave.c", + "output": "esp-idf\\esp_driver_sdio\\CMakeFiles\\__idf_esp_driver_sdio.dir\\src\\sdio_slave.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_sdm/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_sdm\\CMakeFiles\\__idf_esp_driver_sdm.dir\\src\\sdm.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_sdm\\src\\sdm.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_sdm\\src\\sdm.c", + "output": "esp-idf\\esp_driver_sdm\\CMakeFiles\\__idf_esp_driver_sdm.dir\\src\\sdm.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/legacy/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_sd_intf/include -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_sdmmc\\CMakeFiles\\__idf_esp_driver_sdmmc.dir\\legacy\\src\\sdmmc_transaction.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_sdmmc\\legacy\\src\\sdmmc_transaction.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_sdmmc\\legacy\\src\\sdmmc_transaction.c", + "output": "esp-idf\\esp_driver_sdmmc\\CMakeFiles\\__idf_esp_driver_sdmmc.dir\\legacy\\src\\sdmmc_transaction.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/legacy/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_sd_intf/include -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_sdmmc\\CMakeFiles\\__idf_esp_driver_sdmmc.dir\\legacy\\src\\sdmmc_host.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_sdmmc\\legacy\\src\\sdmmc_host.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_sdmmc\\legacy\\src\\sdmmc_host.c", + "output": "esp-idf\\esp_driver_sdmmc\\CMakeFiles\\__idf_esp_driver_sdmmc.dir\\legacy\\src\\sdmmc_host.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/legacy/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_sd_intf/include -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_sdmmc\\CMakeFiles\\__idf_esp_driver_sdmmc.dir\\src\\sd_host_sdmmc.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_sdmmc\\src\\sd_host_sdmmc.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_sdmmc\\src\\sd_host_sdmmc.c", + "output": "esp-idf\\esp_driver_sdmmc\\CMakeFiles\\__idf_esp_driver_sdmmc.dir\\src\\sd_host_sdmmc.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/legacy/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_sd_intf/include -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_sdmmc\\CMakeFiles\\__idf_esp_driver_sdmmc.dir\\src\\sd_trans_sdmmc.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_sdmmc\\src\\sd_trans_sdmmc.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_sdmmc\\src\\sd_trans_sdmmc.c", + "output": "esp-idf\\esp_driver_sdmmc\\CMakeFiles\\__idf_esp_driver_sdmmc.dir\\src\\sd_trans_sdmmc.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_sdspi/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_sdspi\\CMakeFiles\\__idf_esp_driver_sdspi.dir\\src\\sdspi_crc.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_sdspi\\src\\sdspi_crc.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_sdspi\\src\\sdspi_crc.c", + "output": "esp-idf\\esp_driver_sdspi\\CMakeFiles\\__idf_esp_driver_sdspi.dir\\src\\sdspi_crc.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_sdspi/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_sdspi\\CMakeFiles\\__idf_esp_driver_sdspi.dir\\src\\sdspi_host.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_sdspi\\src\\sdspi_host.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_sdspi\\src\\sdspi_host.c", + "output": "esp-idf\\esp_driver_sdspi\\CMakeFiles\\__idf_esp_driver_sdspi.dir\\src\\sdspi_host.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_sdspi/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_sdspi\\CMakeFiles\\__idf_esp_driver_sdspi.dir\\src\\sdspi_transaction.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_sdspi\\src\\sdspi_transaction.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_sdspi\\src\\sdspi_transaction.c", + "output": "esp-idf\\esp_driver_sdspi\\CMakeFiles\\__idf_esp_driver_sdspi.dir\\src\\sdspi_transaction.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_driver_touch_sens/hw_ver1/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_touch_sens\\CMakeFiles\\__idf_esp_driver_touch_sens.dir\\common\\touch_sens_common.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_touch_sens\\common\\touch_sens_common.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_touch_sens\\common\\touch_sens_common.c", + "output": "esp-idf\\esp_driver_touch_sens\\CMakeFiles\\__idf_esp_driver_touch_sens.dir\\common\\touch_sens_common.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_driver_touch_sens/hw_ver1/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_touch_sens\\CMakeFiles\\__idf_esp_driver_touch_sens.dir\\hw_ver1\\touch_version_specific.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_touch_sens\\hw_ver1\\touch_version_specific.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_touch_sens\\hw_ver1\\touch_version_specific.c", + "output": "esp-idf\\esp_driver_touch_sens\\CMakeFiles\\__idf_esp_driver_touch_sens.dir\\hw_ver1\\touch_version_specific.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_twai/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_twai\\CMakeFiles\\__idf_esp_driver_twai.dir\\esp_twai.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_twai\\esp_twai.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_twai\\esp_twai.c", + "output": "esp-idf\\esp_driver_twai\\CMakeFiles\\__idf_esp_driver_twai.dir\\esp_twai.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_driver_twai/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_driver_twai\\CMakeFiles\\__idf_esp_driver_twai.dir\\esp_twai_onchip.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_twai\\esp_twai_onchip.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_driver_twai\\esp_twai_onchip.c", + "output": "esp-idf\\esp_driver_twai\\CMakeFiles\\__idf_esp_driver_twai.dir\\esp_twai_onchip.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_eth/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\\src\\esp_eth.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_eth\\src\\esp_eth.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_eth\\src\\esp_eth.c", + "output": "esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\\src\\esp_eth.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_eth/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\\src\\phy\\esp_eth_phy_802_3.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_eth\\src\\phy\\esp_eth_phy_802_3.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_eth\\src\\phy\\esp_eth_phy_802_3.c", + "output": "esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\\src\\phy\\esp_eth_phy_802_3.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_eth/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\\src\\esp_eth_netif_glue.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_eth\\src\\esp_eth_netif_glue.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_eth\\src\\esp_eth_netif_glue.c", + "output": "esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\\src\\esp_eth_netif_glue.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_eth/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\\src\\mac\\esp_eth_mac_esp.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_eth\\src\\mac\\esp_eth_mac_esp.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_eth\\src\\mac\\esp_eth_mac_esp.c", + "output": "esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\\src\\mac\\esp_eth_mac_esp.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_eth/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\\src\\mac\\esp_eth_mac_esp_dma.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_eth\\src\\mac\\esp_eth_mac_esp_dma.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_eth\\src\\mac\\esp_eth_mac_esp_dma.c", + "output": "esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\\src\\mac\\esp_eth_mac_esp_dma.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_eth/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\\src\\mac\\esp_eth_mac_esp_gpio.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_eth\\src\\mac\\esp_eth_mac_esp_gpio.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_eth\\src\\mac\\esp_eth_mac_esp_gpio.c", + "output": "esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\\src\\mac\\esp_eth_mac_esp_gpio.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_eth/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\\src\\phy\\esp_eth_phy_generic.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_eth\\src\\phy\\esp_eth_phy_generic.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_eth\\src\\phy\\esp_eth_phy_generic.c", + "output": "esp-idf\\esp_eth\\CMakeFiles\\__idf_esp_eth.dir\\src\\phy\\esp_eth_phy_generic.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hal_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_hal_lcd\\CMakeFiles\\__idf_esp_hal_lcd.dir\\esp32\\lcd_periph.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_lcd\\esp32\\lcd_periph.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hal_lcd\\esp32\\lcd_periph.c", + "output": "esp-idf\\esp_hal_lcd\\CMakeFiles\\__idf_esp_hal_lcd.dir\\esp32\\lcd_periph.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hid/include -IC:/esp/v6.0/esp-idf/components/esp_hid/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-format -o esp-idf\\esp_hid\\CMakeFiles\\__idf_esp_hid.dir\\src\\esp_hidd.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hid\\src\\esp_hidd.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hid\\src\\esp_hidd.c", + "output": "esp-idf\\esp_hid\\CMakeFiles\\__idf_esp_hid.dir\\src\\esp_hidd.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hid/include -IC:/esp/v6.0/esp-idf/components/esp_hid/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-format -o esp-idf\\esp_hid\\CMakeFiles\\__idf_esp_hid.dir\\src\\esp_hidh.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hid\\src\\esp_hidh.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hid\\src\\esp_hidh.c", + "output": "esp-idf\\esp_hid\\CMakeFiles\\__idf_esp_hid.dir\\src\\esp_hidh.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_hid/include -IC:/esp/v6.0/esp-idf/components/esp_hid/private -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-format -o esp-idf\\esp_hid\\CMakeFiles\\__idf_esp_hid.dir\\src\\esp_hid_common.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_hid\\src\\esp_hid_common.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_hid\\src\\esp_hid_common.c", + "output": "esp-idf\\esp_hid\\CMakeFiles\\__idf_esp_hid.dir\\src\\esp_hid_common.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/tcp_transport/include -IC:/esp/v6.0/esp-idf/components/tcp_transport/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\\transport.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\tcp_transport\\transport.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\tcp_transport\\transport.c", + "output": "esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\\transport.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/tcp_transport/include -IC:/esp/v6.0/esp-idf/components/tcp_transport/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\\transport_ssl.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\tcp_transport\\transport_ssl.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\tcp_transport\\transport_ssl.c", + "output": "esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\\transport_ssl.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/tcp_transport/include -IC:/esp/v6.0/esp-idf/components/tcp_transport/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\\transport_internal.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\tcp_transport\\transport_internal.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\tcp_transport\\transport_internal.c", + "output": "esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\\transport_internal.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/tcp_transport/include -IC:/esp/v6.0/esp-idf/components/tcp_transport/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\\transport_socks_proxy.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\tcp_transport\\transport_socks_proxy.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\tcp_transport\\transport_socks_proxy.c", + "output": "esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\\transport_socks_proxy.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/tcp_transport/include -IC:/esp/v6.0/esp-idf/components/tcp_transport/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\\transport_ws.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\tcp_transport\\transport_ws.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\tcp_transport\\transport_ws.c", + "output": "esp-idf\\tcp_transport\\CMakeFiles\\__idf_tcp_transport.dir\\transport_ws.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_http_client/include -IC:/esp/v6.0/esp-idf/components/esp_http_client/lib/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/tcp_transport/include -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/http_parser @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_http_client\\CMakeFiles\\__idf_esp_http_client.dir\\esp_http_client.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_http_client\\esp_http_client.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_http_client\\esp_http_client.c", + "output": "esp-idf\\esp_http_client\\CMakeFiles\\__idf_esp_http_client.dir\\esp_http_client.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_http_client/include -IC:/esp/v6.0/esp-idf/components/esp_http_client/lib/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/tcp_transport/include -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/http_parser @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_http_client\\CMakeFiles\\__idf_esp_http_client.dir\\lib\\http_auth.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_http_client\\lib\\http_auth.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_http_client\\lib\\http_auth.c", + "output": "esp-idf\\esp_http_client\\CMakeFiles\\__idf_esp_http_client.dir\\lib\\http_auth.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_http_client/include -IC:/esp/v6.0/esp-idf/components/esp_http_client/lib/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/tcp_transport/include -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/http_parser @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_http_client\\CMakeFiles\\__idf_esp_http_client.dir\\lib\\http_header.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_http_client\\lib\\http_header.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_http_client\\lib\\http_header.c", + "output": "esp-idf\\esp_http_client\\CMakeFiles\\__idf_esp_http_client.dir\\lib\\http_header.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_http_client/include -IC:/esp/v6.0/esp-idf/components/esp_http_client/lib/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/tcp_transport/include -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/http_parser @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_http_client\\CMakeFiles\\__idf_esp_http_client.dir\\lib\\http_utils.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_http_client\\lib\\http_utils.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_http_client\\lib\\http_utils.c", + "output": "esp-idf\\esp_http_client\\CMakeFiles\\__idf_esp_http_client.dir\\lib\\http_utils.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/src/util -IC:/esp/v6.0/esp-idf/components/esp_http_server/src/port/esp32 -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\httpd_main.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_http_server\\src\\httpd_main.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_http_server\\src\\httpd_main.c", + "output": "esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\httpd_main.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/src/util -IC:/esp/v6.0/esp-idf/components/esp_http_server/src/port/esp32 -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\httpd_parse.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_http_server\\src\\httpd_parse.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_http_server\\src\\httpd_parse.c", + "output": "esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\httpd_parse.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/src/util -IC:/esp/v6.0/esp-idf/components/esp_http_server/src/port/esp32 -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\httpd_sess.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_http_server\\src\\httpd_sess.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_http_server\\src\\httpd_sess.c", + "output": "esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\httpd_sess.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/src/util -IC:/esp/v6.0/esp-idf/components/esp_http_server/src/port/esp32 -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\httpd_txrx.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_http_server\\src\\httpd_txrx.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_http_server\\src\\httpd_txrx.c", + "output": "esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\httpd_txrx.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/src/util -IC:/esp/v6.0/esp-idf/components/esp_http_server/src/port/esp32 -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\httpd_uri.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_http_server\\src\\httpd_uri.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_http_server\\src\\httpd_uri.c", + "output": "esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\httpd_uri.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/src/util -IC:/esp/v6.0/esp-idf/components/esp_http_server/src/port/esp32 -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\httpd_ws.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_http_server\\src\\httpd_ws.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_http_server\\src\\httpd_ws.c", + "output": "esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\httpd_ws.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/src/util -IC:/esp/v6.0/esp-idf/components/esp_http_server/src/port/esp32 -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_timer/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\util\\ctrl_sock.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_http_server\\src\\util\\ctrl_sock.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_http_server\\src\\util\\ctrl_sock.c", + "output": "esp-idf\\esp_http_server\\CMakeFiles\\__idf_esp_http_server.dir\\src\\util\\ctrl_sock.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_https_ota/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_http_client/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/app_update/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_https_ota\\CMakeFiles\\__idf_esp_https_ota.dir\\src\\esp_https_ota.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_https_ota\\src\\esp_https_ota.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_https_ota\\src\\esp_https_ota.c", + "output": "esp-idf\\esp_https_ota\\CMakeFiles\\__idf_esp_https_ota.dir\\src\\esp_https_ota.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_https_server/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_https_server\\CMakeFiles\\__idf_esp_https_server.dir\\src\\https_server.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_https_server\\src\\https_server.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_https_server\\src\\https_server.c", + "output": "esp-idf\\esp_https_server\\CMakeFiles\\__idf_esp_https_server.dir\\src\\https_server.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_lcd/interface -IC:/esp/v6.0/esp-idf/components/esp_lcd/priv_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_psram/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_common.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_common.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_common.c", + "output": "esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_common.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_lcd/interface -IC:/esp/v6.0/esp-idf/components/esp_lcd/priv_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_psram/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_panel_io.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_panel_io.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_panel_io.c", + "output": "esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_panel_io.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_lcd/interface -IC:/esp/v6.0/esp-idf/components/esp_lcd/priv_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_psram/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_panel_ssd1306.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_panel_ssd1306.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_panel_ssd1306.c", + "output": "esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_panel_ssd1306.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_lcd/interface -IC:/esp/v6.0/esp-idf/components/esp_lcd/priv_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_psram/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_panel_st7789.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_panel_st7789.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_panel_st7789.c", + "output": "esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_panel_st7789.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_lcd/interface -IC:/esp/v6.0/esp-idf/components/esp_lcd/priv_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_psram/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_panel_ops.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_panel_ops.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_lcd\\src\\esp_lcd_panel_ops.c", + "output": "esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\src\\esp_lcd_panel_ops.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_lcd/interface -IC:/esp/v6.0/esp-idf/components/esp_lcd/priv_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_psram/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\i2c\\esp_lcd_panel_io_i2c.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_lcd\\i2c\\esp_lcd_panel_io_i2c.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_lcd\\i2c\\esp_lcd_panel_io_i2c.c", + "output": "esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\i2c\\esp_lcd_panel_io_i2c.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_lcd/interface -IC:/esp/v6.0/esp-idf/components/esp_lcd/priv_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_psram/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\spi\\esp_lcd_panel_io_spi.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_lcd\\spi\\esp_lcd_panel_io_spi.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_lcd\\spi\\esp_lcd_panel_io_spi.c", + "output": "esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\spi\\esp_lcd_panel_io_spi.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_lcd/interface -IC:/esp/v6.0/esp-idf/components/esp_lcd/priv_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_psram/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\i80\\esp_lcd_panel_io_i2s.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_lcd\\i80\\esp_lcd_panel_io_i2s.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_lcd\\i80\\esp_lcd_panel_io_i2s.c", + "output": "esp-idf\\esp_lcd\\CMakeFiles\\__idf_esp_lcd.dir\\i80\\esp_lcd_panel_io_i2s.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\protobuf-c\\CMakeFiles\\__idf_protobuf-c.dir\\protobuf-c\\protobuf-c\\protobuf-c.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\protobuf-c\\protobuf-c\\protobuf-c\\protobuf-c.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\protobuf-c\\protobuf-c\\protobuf-c\\protobuf-c.c", + "output": "esp-idf\\protobuf-c\\CMakeFiles\\__idf_protobuf-c.dir\\protobuf-c\\protobuf-c\\protobuf-c.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/protocomm/include/common -IC:/esp/v6.0/esp-idf/components/protocomm/include/security -IC:/esp/v6.0/esp-idf/components/protocomm/include/transports -IC:/esp/v6.0/esp-idf/components/protocomm/include/crypto/srp6a -IC:/esp/v6.0/esp-idf/components/protocomm/proto-c -IC:/esp/v6.0/esp-idf/components/protocomm/src/common -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\common\\protocomm.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\protocomm\\src\\common\\protocomm.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\protocomm\\src\\common\\protocomm.c", + "output": "esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\common\\protocomm.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/protocomm/include/common -IC:/esp/v6.0/esp-idf/components/protocomm/include/security -IC:/esp/v6.0/esp-idf/components/protocomm/include/transports -IC:/esp/v6.0/esp-idf/components/protocomm/include/crypto/srp6a -IC:/esp/v6.0/esp-idf/components/protocomm/proto-c -IC:/esp/v6.0/esp-idf/components/protocomm/src/common -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\proto-c\\constants.pb-c.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\protocomm\\proto-c\\constants.pb-c.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\protocomm\\proto-c\\constants.pb-c.c", + "output": "esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\proto-c\\constants.pb-c.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/protocomm/include/common -IC:/esp/v6.0/esp-idf/components/protocomm/include/security -IC:/esp/v6.0/esp-idf/components/protocomm/include/transports -IC:/esp/v6.0/esp-idf/components/protocomm/include/crypto/srp6a -IC:/esp/v6.0/esp-idf/components/protocomm/proto-c -IC:/esp/v6.0/esp-idf/components/protocomm/src/common -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\proto-c\\sec0.pb-c.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\protocomm\\proto-c\\sec0.pb-c.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\protocomm\\proto-c\\sec0.pb-c.c", + "output": "esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\proto-c\\sec0.pb-c.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/protocomm/include/common -IC:/esp/v6.0/esp-idf/components/protocomm/include/security -IC:/esp/v6.0/esp-idf/components/protocomm/include/transports -IC:/esp/v6.0/esp-idf/components/protocomm/include/crypto/srp6a -IC:/esp/v6.0/esp-idf/components/protocomm/proto-c -IC:/esp/v6.0/esp-idf/components/protocomm/src/common -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\proto-c\\sec1.pb-c.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\protocomm\\proto-c\\sec1.pb-c.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\protocomm\\proto-c\\sec1.pb-c.c", + "output": "esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\proto-c\\sec1.pb-c.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/protocomm/include/common -IC:/esp/v6.0/esp-idf/components/protocomm/include/security -IC:/esp/v6.0/esp-idf/components/protocomm/include/transports -IC:/esp/v6.0/esp-idf/components/protocomm/include/crypto/srp6a -IC:/esp/v6.0/esp-idf/components/protocomm/proto-c -IC:/esp/v6.0/esp-idf/components/protocomm/src/common -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\proto-c\\sec2.pb-c.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\protocomm\\proto-c\\sec2.pb-c.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\protocomm\\proto-c\\sec2.pb-c.c", + "output": "esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\proto-c\\sec2.pb-c.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/protocomm/include/common -IC:/esp/v6.0/esp-idf/components/protocomm/include/security -IC:/esp/v6.0/esp-idf/components/protocomm/include/transports -IC:/esp/v6.0/esp-idf/components/protocomm/include/crypto/srp6a -IC:/esp/v6.0/esp-idf/components/protocomm/proto-c -IC:/esp/v6.0/esp-idf/components/protocomm/src/common -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\proto-c\\session.pb-c.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\protocomm\\proto-c\\session.pb-c.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\protocomm\\proto-c\\session.pb-c.c", + "output": "esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\proto-c\\session.pb-c.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/protocomm/include/common -IC:/esp/v6.0/esp-idf/components/protocomm/include/security -IC:/esp/v6.0/esp-idf/components/protocomm/include/transports -IC:/esp/v6.0/esp-idf/components/protocomm/include/crypto/srp6a -IC:/esp/v6.0/esp-idf/components/protocomm/proto-c -IC:/esp/v6.0/esp-idf/components/protocomm/src/common -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\transports\\protocomm_console.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\protocomm\\src\\transports\\protocomm_console.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\protocomm\\src\\transports\\protocomm_console.c", + "output": "esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\transports\\protocomm_console.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/protocomm/include/common -IC:/esp/v6.0/esp-idf/components/protocomm/include/security -IC:/esp/v6.0/esp-idf/components/protocomm/include/transports -IC:/esp/v6.0/esp-idf/components/protocomm/include/crypto/srp6a -IC:/esp/v6.0/esp-idf/components/protocomm/proto-c -IC:/esp/v6.0/esp-idf/components/protocomm/src/common -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\transports\\protocomm_httpd.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\protocomm\\src\\transports\\protocomm_httpd.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\protocomm\\src\\transports\\protocomm_httpd.c", + "output": "esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\transports\\protocomm_httpd.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/protocomm/include/common -IC:/esp/v6.0/esp-idf/components/protocomm/include/security -IC:/esp/v6.0/esp-idf/components/protocomm/include/transports -IC:/esp/v6.0/esp-idf/components/protocomm/include/crypto/srp6a -IC:/esp/v6.0/esp-idf/components/protocomm/proto-c -IC:/esp/v6.0/esp-idf/components/protocomm/src/common -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\security\\security2.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\protocomm\\src\\security\\security2.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\protocomm\\src\\security\\security2.c", + "output": "esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\security\\security2.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/protocomm/include/common -IC:/esp/v6.0/esp-idf/components/protocomm/include/security -IC:/esp/v6.0/esp-idf/components/protocomm/include/transports -IC:/esp/v6.0/esp-idf/components/protocomm/include/crypto/srp6a -IC:/esp/v6.0/esp-idf/components/protocomm/proto-c -IC:/esp/v6.0/esp-idf/components/protocomm/src/common -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\crypto\\srp6a\\esp_srp.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\protocomm\\src\\crypto\\srp6a\\esp_srp.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\protocomm\\src\\crypto\\srp6a\\esp_srp.c", + "output": "esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\crypto\\srp6a\\esp_srp.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/protocomm/include/common -IC:/esp/v6.0/esp-idf/components/protocomm/include/security -IC:/esp/v6.0/esp-idf/components/protocomm/include/transports -IC:/esp/v6.0/esp-idf/components/protocomm/include/crypto/srp6a -IC:/esp/v6.0/esp-idf/components/protocomm/proto-c -IC:/esp/v6.0/esp-idf/components/protocomm/src/common -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\crypto\\srp6a\\esp_srp_mpi.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\protocomm\\src\\crypto\\srp6a\\esp_srp_mpi.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\protocomm\\src\\crypto\\srp6a\\esp_srp_mpi.c", + "output": "esp-idf\\protocomm\\CMakeFiles\\__idf_protocomm.dir\\src\\crypto\\srp6a\\esp_srp_mpi.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_local_ctrl/include -IC:/esp/v6.0/esp-idf/components/esp_local_ctrl/proto-c -IC:/esp/v6.0/esp-idf/components/esp_local_ctrl/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/protocomm/include/common -IC:/esp/v6.0/esp-idf/components/protocomm/include/security -IC:/esp/v6.0/esp-idf/components/protocomm/include/transports -IC:/esp/v6.0/esp-idf/components/protocomm/include/crypto/srp6a -IC:/esp/v6.0/esp-idf/components/protocomm/proto-c -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_https_server/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_local_ctrl\\CMakeFiles\\__idf_esp_local_ctrl.dir\\src\\esp_local_ctrl.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_local_ctrl\\src\\esp_local_ctrl.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_local_ctrl\\src\\esp_local_ctrl.c", + "output": "esp-idf\\esp_local_ctrl\\CMakeFiles\\__idf_esp_local_ctrl.dir\\src\\esp_local_ctrl.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_local_ctrl/include -IC:/esp/v6.0/esp-idf/components/esp_local_ctrl/proto-c -IC:/esp/v6.0/esp-idf/components/esp_local_ctrl/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/protocomm/include/common -IC:/esp/v6.0/esp-idf/components/protocomm/include/security -IC:/esp/v6.0/esp-idf/components/protocomm/include/transports -IC:/esp/v6.0/esp-idf/components/protocomm/include/crypto/srp6a -IC:/esp/v6.0/esp-idf/components/protocomm/proto-c -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_https_server/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_local_ctrl\\CMakeFiles\\__idf_esp_local_ctrl.dir\\src\\esp_local_ctrl_handler.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_local_ctrl\\src\\esp_local_ctrl_handler.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_local_ctrl\\src\\esp_local_ctrl_handler.c", + "output": "esp-idf\\esp_local_ctrl\\CMakeFiles\\__idf_esp_local_ctrl.dir\\src\\esp_local_ctrl_handler.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_local_ctrl/include -IC:/esp/v6.0/esp-idf/components/esp_local_ctrl/proto-c -IC:/esp/v6.0/esp-idf/components/esp_local_ctrl/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/protocomm/include/common -IC:/esp/v6.0/esp-idf/components/protocomm/include/security -IC:/esp/v6.0/esp-idf/components/protocomm/include/transports -IC:/esp/v6.0/esp-idf/components/protocomm/include/crypto/srp6a -IC:/esp/v6.0/esp-idf/components/protocomm/proto-c -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_https_server/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_local_ctrl\\CMakeFiles\\__idf_esp_local_ctrl.dir\\proto-c\\esp_local_ctrl.pb-c.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_local_ctrl\\proto-c\\esp_local_ctrl.pb-c.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_local_ctrl\\proto-c\\esp_local_ctrl.pb-c.c", + "output": "esp-idf\\esp_local_ctrl\\CMakeFiles\\__idf_esp_local_ctrl.dir\\proto-c\\esp_local_ctrl.pb-c.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/esp_local_ctrl/include -IC:/esp/v6.0/esp-idf/components/esp_local_ctrl/proto-c -IC:/esp/v6.0/esp-idf/components/esp_local_ctrl/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/protocomm/include/common -IC:/esp/v6.0/esp-idf/components/protocomm/include/security -IC:/esp/v6.0/esp-idf/components/protocomm/include/transports -IC:/esp/v6.0/esp-idf/components/protocomm/include/crypto/srp6a -IC:/esp/v6.0/esp-idf/components/protocomm/proto-c -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/esp_https_server/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\esp_local_ctrl\\CMakeFiles\\__idf_esp_local_ctrl.dir\\src\\esp_local_ctrl_transport_httpd.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\esp_local_ctrl\\src\\esp_local_ctrl_transport_httpd.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\esp_local_ctrl\\src\\esp_local_ctrl_transport_httpd.c", + "output": "esp-idf\\esp_local_ctrl\\CMakeFiles\\__idf_esp_local_ctrl.dir\\src\\esp_local_ctrl_transport_httpd.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wear_levelling/include -IC:/esp/v6.0/esp-idf/components/wear_levelling/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit -o esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\Partition.cpp.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wear_levelling\\Partition.cpp", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wear_levelling\\Partition.cpp", + "output": "esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\Partition.cpp.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wear_levelling/include -IC:/esp/v6.0/esp-idf/components/wear_levelling/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit -o esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\SPI_Flash.cpp.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wear_levelling\\SPI_Flash.cpp", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wear_levelling\\SPI_Flash.cpp", + "output": "esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\SPI_Flash.cpp.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wear_levelling/include -IC:/esp/v6.0/esp-idf/components/wear_levelling/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit -o esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\WL_Ext_Perf.cpp.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wear_levelling\\WL_Ext_Perf.cpp", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wear_levelling\\WL_Ext_Perf.cpp", + "output": "esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\WL_Ext_Perf.cpp.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wear_levelling/include -IC:/esp/v6.0/esp-idf/components/wear_levelling/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit -o esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\WL_Ext_Safe.cpp.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wear_levelling\\WL_Ext_Safe.cpp", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wear_levelling\\WL_Ext_Safe.cpp", + "output": "esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\WL_Ext_Safe.cpp.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wear_levelling/include -IC:/esp/v6.0/esp-idf/components/wear_levelling/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit -o esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\WL_Flash.cpp.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wear_levelling\\WL_Flash.cpp", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wear_levelling\\WL_Flash.cpp", + "output": "esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\WL_Flash.cpp.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wear_levelling/include -IC:/esp/v6.0/esp-idf/components/wear_levelling/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit -o esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\crc32.cpp.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wear_levelling\\crc32.cpp", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wear_levelling\\crc32.cpp", + "output": "esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\crc32.cpp.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/wear_levelling/include -IC:/esp/v6.0/esp-idf/components/wear_levelling/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cxxflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++26 -fno-exceptions -fuse-cxa-atexit -o esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\wear_levelling.cpp.obj -c C:\\esp\\v6.0\\esp-idf\\components\\wear_levelling\\wear_levelling.cpp", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\wear_levelling\\wear_levelling.cpp", + "output": "esp-idf\\wear_levelling\\CMakeFiles\\__idf_wear_levelling.dir\\wear_levelling.cpp.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/fatfs/diskio -IC:/esp/v6.0/esp-idf/components/fatfs/src -IC:/esp/v6.0/esp-idf/components/fatfs/vfs -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/wear_levelling/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/legacy/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sd_intf/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdspi/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\diskio\\diskio.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\fatfs\\diskio\\diskio.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\fatfs\\diskio\\diskio.c", + "output": "esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\diskio\\diskio.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/fatfs/diskio -IC:/esp/v6.0/esp-idf/components/fatfs/src -IC:/esp/v6.0/esp-idf/components/fatfs/vfs -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/wear_levelling/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/legacy/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sd_intf/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdspi/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\diskio\\diskio_rawflash.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\fatfs\\diskio\\diskio_rawflash.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\fatfs\\diskio\\diskio_rawflash.c", + "output": "esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\diskio\\diskio_rawflash.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/fatfs/diskio -IC:/esp/v6.0/esp-idf/components/fatfs/src -IC:/esp/v6.0/esp-idf/components/fatfs/vfs -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/wear_levelling/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/legacy/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sd_intf/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdspi/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\diskio\\diskio_wl.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\fatfs\\diskio\\diskio_wl.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\fatfs\\diskio\\diskio_wl.c", + "output": "esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\diskio\\diskio_wl.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/fatfs/diskio -IC:/esp/v6.0/esp-idf/components/fatfs/src -IC:/esp/v6.0/esp-idf/components/fatfs/vfs -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/wear_levelling/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/legacy/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sd_intf/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdspi/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\src\\ff.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\fatfs\\src\\ff.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\fatfs\\src\\ff.c", + "output": "esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\src\\ff.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/fatfs/diskio -IC:/esp/v6.0/esp-idf/components/fatfs/src -IC:/esp/v6.0/esp-idf/components/fatfs/vfs -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/wear_levelling/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/legacy/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sd_intf/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdspi/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\src\\ffunicode.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\fatfs\\src\\ffunicode.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\fatfs\\src\\ffunicode.c", + "output": "esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\src\\ffunicode.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/fatfs/diskio -IC:/esp/v6.0/esp-idf/components/fatfs/src -IC:/esp/v6.0/esp-idf/components/fatfs/vfs -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/wear_levelling/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/legacy/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sd_intf/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdspi/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\port\\freertos\\ffsystem.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\fatfs\\port\\freertos\\ffsystem.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\fatfs\\port\\freertos\\ffsystem.c", + "output": "esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\port\\freertos\\ffsystem.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/fatfs/diskio -IC:/esp/v6.0/esp-idf/components/fatfs/src -IC:/esp/v6.0/esp-idf/components/fatfs/vfs -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/wear_levelling/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/legacy/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sd_intf/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdspi/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\diskio\\diskio_sdmmc.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\fatfs\\diskio\\diskio_sdmmc.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\fatfs\\diskio\\diskio_sdmmc.c", + "output": "esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\diskio\\diskio_sdmmc.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/fatfs/diskio -IC:/esp/v6.0/esp-idf/components/fatfs/src -IC:/esp/v6.0/esp-idf/components/fatfs/vfs -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/wear_levelling/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/legacy/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sd_intf/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdspi/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\vfs\\vfs_fat.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\fatfs\\vfs\\vfs_fat.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\fatfs\\vfs\\vfs_fat.c", + "output": "esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\vfs\\vfs_fat.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/fatfs/diskio -IC:/esp/v6.0/esp-idf/components/fatfs/src -IC:/esp/v6.0/esp-idf/components/fatfs/vfs -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/wear_levelling/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/legacy/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sd_intf/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdspi/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\vfs\\vfs_fat_sdmmc.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\fatfs\\vfs\\vfs_fat_sdmmc.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\fatfs\\vfs\\vfs_fat_sdmmc.c", + "output": "esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\vfs\\vfs_fat_sdmmc.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/fatfs/diskio -IC:/esp/v6.0/esp-idf/components/fatfs/src -IC:/esp/v6.0/esp-idf/components/fatfs/vfs -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/wear_levelling/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/legacy/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sd_intf/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdspi/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\vfs\\vfs_fat_spiflash.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\fatfs\\vfs\\vfs_fat_spiflash.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\fatfs\\vfs\\vfs_fat_spiflash.c", + "output": "esp-idf\\fatfs\\CMakeFiles\\__idf_fatfs.dir\\vfs\\vfs_fat_spiflash.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/perfmon/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-format -o esp-idf\\perfmon\\CMakeFiles\\__idf_perfmon.dir\\xtensa_perfmon_access.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\perfmon\\xtensa_perfmon_access.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\perfmon\\xtensa_perfmon_access.c", + "output": "esp-idf\\perfmon\\CMakeFiles\\__idf_perfmon.dir\\xtensa_perfmon_access.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/perfmon/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-format -o esp-idf\\perfmon\\CMakeFiles\\__idf_perfmon.dir\\xtensa_perfmon_apis.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\perfmon\\xtensa_perfmon_apis.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\perfmon\\xtensa_perfmon_apis.c", + "output": "esp-idf\\perfmon\\CMakeFiles\\__idf_perfmon.dir\\xtensa_perfmon_apis.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/perfmon/include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-format -o esp-idf\\perfmon\\CMakeFiles\\__idf_perfmon.dir\\xtensa_perfmon_masks.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\perfmon\\xtensa_perfmon_masks.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\perfmon\\xtensa_perfmon_masks.c", + "output": "esp-idf\\perfmon\\CMakeFiles\\__idf_perfmon.dir\\xtensa_perfmon_masks.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/rt/include -IC:/esp/v6.0/esp-idf/components/rt/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\rt\\CMakeFiles\\__idf_rt.dir\\FreeRTOS_POSIX_mqueue.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\rt\\FreeRTOS_POSIX_mqueue.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\rt\\FreeRTOS_POSIX_mqueue.c", + "output": "esp-idf\\rt\\CMakeFiles\\__idf_rt.dir\\FreeRTOS_POSIX_mqueue.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/rt/include -IC:/esp/v6.0/esp-idf/components/rt/private_include -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\rt\\CMakeFiles\\__idf_rt.dir\\FreeRTOS_POSIX_utils.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\rt\\FreeRTOS_POSIX_utils.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\rt\\FreeRTOS_POSIX_utils.c", + "output": "esp-idf\\rt\\CMakeFiles\\__idf_rt.dir\\FreeRTOS_POSIX_utils.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spiffs/include -IC:/esp/v6.0/esp-idf/components/spiffs -IC:/esp/v6.0/esp-idf/components/spiffs/spiffs/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs_api.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\spiffs\\spiffs_api.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\spiffs\\spiffs_api.c", + "output": "esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs_api.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spiffs/include -IC:/esp/v6.0/esp-idf/components/spiffs -IC:/esp/v6.0/esp-idf/components/spiffs/spiffs/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-format -o esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs\\src\\spiffs_cache.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\spiffs\\spiffs\\src\\spiffs_cache.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\spiffs\\spiffs\\src\\spiffs_cache.c", + "output": "esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs\\src\\spiffs_cache.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spiffs/include -IC:/esp/v6.0/esp-idf/components/spiffs -IC:/esp/v6.0/esp-idf/components/spiffs/spiffs/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-format -o esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs\\src\\spiffs_check.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\spiffs\\spiffs\\src\\spiffs_check.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\spiffs\\spiffs\\src\\spiffs_check.c", + "output": "esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs\\src\\spiffs_check.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spiffs/include -IC:/esp/v6.0/esp-idf/components/spiffs -IC:/esp/v6.0/esp-idf/components/spiffs/spiffs/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-format -o esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs\\src\\spiffs_gc.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\spiffs\\spiffs\\src\\spiffs_gc.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\spiffs\\spiffs\\src\\spiffs_gc.c", + "output": "esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs\\src\\spiffs_gc.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spiffs/include -IC:/esp/v6.0/esp-idf/components/spiffs -IC:/esp/v6.0/esp-idf/components/spiffs/spiffs/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-format -o esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs\\src\\spiffs_hydrogen.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\spiffs\\spiffs\\src\\spiffs_hydrogen.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\spiffs\\spiffs\\src\\spiffs_hydrogen.c", + "output": "esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs\\src\\spiffs_hydrogen.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spiffs/include -IC:/esp/v6.0/esp-idf/components/spiffs -IC:/esp/v6.0/esp-idf/components/spiffs/spiffs/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -Wno-format -o esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs\\src\\spiffs_nucleus.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\spiffs\\spiffs\\src\\spiffs_nucleus.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\spiffs\\spiffs\\src\\spiffs_nucleus.c", + "output": "esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\spiffs\\src\\spiffs_nucleus.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v6.0\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/esp/v6.0/esp-idf/components/spiffs/include -IC:/esp/v6.0/esp-idf/components/spiffs -IC:/esp/v6.0/esp-idf/components/spiffs/spiffs/src -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/vfs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\esp_spiffs.c.obj -c C:\\esp\\v6.0\\esp-idf\\components\\spiffs\\esp_spiffs.c", + "file": "C:\\esp\\v6.0\\esp-idf\\components\\spiffs\\esp_spiffs.c", + "output": "esp-idf\\spiffs\\CMakeFiles\\__idf_spiffs.dir\\esp_spiffs.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/main -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/app_update/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/pthread/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include -IC:/esp/v6.0/esp-idf/components/esp_psram/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gptimer/include -IC:/esp/v6.0/esp-idf/components/app_trace/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/esp_coex/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/unity/include -IC:/esp/v6.0/esp-idf/components/unity/unity/src -IC:/esp/v6.0/esp-idf/components/cmock/CMock/src -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/esp32/include -IC:/esp/v6.0/esp-idf/components/driver/i2c/include -IC:/esp/v6.0/esp-idf/components/driver/touch_sensor/include -IC:/esp/v6.0/esp-idf/components/driver/twai/include -IC:/esp/v6.0/esp-idf/components/driver/touch_sensor/esp32/include -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_adc/include -IC:/esp/v6.0/esp-idf/components/esp_adc/interface -IC:/esp/v6.0/esp-idf/components/esp_adc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_cmpr/include -IC:/esp/v6.0/esp-idf/components/esp_driver_ana_cmpr/include -IC:/esp/v6.0/esp-idf/components/esp_driver_bitscrambler/include -IC:/esp/v6.0/esp-idf/components/esp_hal_cam/include -IC:/esp/v6.0/esp-idf/components/esp_driver_isp/include -IC:/esp/v6.0/esp-idf/components/esp_driver_cam/include -IC:/esp/v6.0/esp-idf/components/esp_driver_cam/interface -IC:/esp/v6.0/esp-idf/components/esp_driver_dac/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i3c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_jpeg/include -IC:/esp/v6.0/esp-idf/components/esp_driver_jpeg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ledc/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ledc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_ledc/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pcnt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pcnt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_pcnt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ppa/include -IC:/esp/v6.0/esp-idf/components/esp_driver_ppa/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_rmt/include -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sd_intf/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/legacy/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdspi/include -IC:/esp/v6.0/esp-idf/components/esp_driver_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_driver_touch_sens/hw_ver1/include -IC:/esp/v6.0/esp-idf/components/esp_driver_tsens/include -IC:/esp/v6.0/esp-idf/components/esp_driver_twai/include -IC:/esp/v6.0/esp-idf/components/esp_eth/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ieee802154/include -IC:/esp/v6.0/esp-idf/components/esp_hal_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_hid/include -IC:/esp/v6.0/esp-idf/components/tcp_transport/include -IC:/esp/v6.0/esp-idf/components/esp_http_client/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/esp_https_ota/include -IC:/esp/v6.0/esp-idf/components/esp_https_server/include -IC:/esp/v6.0/esp-idf/components/esp_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_lcd/interface -IC:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c -IC:/esp/v6.0/esp-idf/components/protocomm/include/common -IC:/esp/v6.0/esp-idf/components/protocomm/include/security -IC:/esp/v6.0/esp-idf/components/protocomm/include/transports -IC:/esp/v6.0/esp-idf/components/protocomm/include/crypto/srp6a -IC:/esp/v6.0/esp-idf/components/protocomm/proto-c -IC:/esp/v6.0/esp-idf/components/esp_local_ctrl/include -IC:/esp/v6.0/esp-idf/components/esp_trace/include -IC:/esp/v6.0/esp-idf/components/wear_levelling/include -IC:/esp/v6.0/esp-idf/components/fatfs/diskio -IC:/esp/v6.0/esp-idf/components/fatfs/src -IC:/esp/v6.0/esp-idf/components/fatfs/vfs -IC:/esp/v6.0/esp-idf/components/idf_test/include -IC:/esp/v6.0/esp-idf/components/idf_test/include/esp32 -IC:/esp/v6.0/esp-idf/components/ieee802154/include -IC:/esp/v6.0/esp-idf/components/perfmon/include -IC:/esp/v6.0/esp-idf/components/rt/include -IC:/esp/v6.0/esp-idf/components/spiffs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\main\\CMakeFiles\\__idf_main.dir\\main.c.obj -c C:\\Users\\e.adame\\Documents\\ESP32_Modbus_RTU_to_PICS_MULTI\\main\\main.c", + "file": "C:\\Users\\e.adame\\Documents\\ESP32_Modbus_RTU_to_PICS_MULTI\\main\\main.c", + "output": "esp-idf\\main\\CMakeFiles\\__idf_main.dir\\main.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/main -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/app_update/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/pthread/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include -IC:/esp/v6.0/esp-idf/components/esp_psram/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gptimer/include -IC:/esp/v6.0/esp-idf/components/app_trace/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/esp_coex/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/unity/include -IC:/esp/v6.0/esp-idf/components/unity/unity/src -IC:/esp/v6.0/esp-idf/components/cmock/CMock/src -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/esp32/include -IC:/esp/v6.0/esp-idf/components/driver/i2c/include -IC:/esp/v6.0/esp-idf/components/driver/touch_sensor/include -IC:/esp/v6.0/esp-idf/components/driver/twai/include -IC:/esp/v6.0/esp-idf/components/driver/touch_sensor/esp32/include -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_adc/include -IC:/esp/v6.0/esp-idf/components/esp_adc/interface -IC:/esp/v6.0/esp-idf/components/esp_adc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_cmpr/include -IC:/esp/v6.0/esp-idf/components/esp_driver_ana_cmpr/include -IC:/esp/v6.0/esp-idf/components/esp_driver_bitscrambler/include -IC:/esp/v6.0/esp-idf/components/esp_hal_cam/include -IC:/esp/v6.0/esp-idf/components/esp_driver_isp/include -IC:/esp/v6.0/esp-idf/components/esp_driver_cam/include -IC:/esp/v6.0/esp-idf/components/esp_driver_cam/interface -IC:/esp/v6.0/esp-idf/components/esp_driver_dac/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i3c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_jpeg/include -IC:/esp/v6.0/esp-idf/components/esp_driver_jpeg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ledc/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ledc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_ledc/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pcnt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pcnt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_pcnt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ppa/include -IC:/esp/v6.0/esp-idf/components/esp_driver_ppa/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_rmt/include -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sd_intf/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/legacy/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdspi/include -IC:/esp/v6.0/esp-idf/components/esp_driver_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_driver_touch_sens/hw_ver1/include -IC:/esp/v6.0/esp-idf/components/esp_driver_tsens/include -IC:/esp/v6.0/esp-idf/components/esp_driver_twai/include -IC:/esp/v6.0/esp-idf/components/esp_eth/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ieee802154/include -IC:/esp/v6.0/esp-idf/components/esp_hal_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_hid/include -IC:/esp/v6.0/esp-idf/components/tcp_transport/include -IC:/esp/v6.0/esp-idf/components/esp_http_client/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/esp_https_ota/include -IC:/esp/v6.0/esp-idf/components/esp_https_server/include -IC:/esp/v6.0/esp-idf/components/esp_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_lcd/interface -IC:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c -IC:/esp/v6.0/esp-idf/components/protocomm/include/common -IC:/esp/v6.0/esp-idf/components/protocomm/include/security -IC:/esp/v6.0/esp-idf/components/protocomm/include/transports -IC:/esp/v6.0/esp-idf/components/protocomm/include/crypto/srp6a -IC:/esp/v6.0/esp-idf/components/protocomm/proto-c -IC:/esp/v6.0/esp-idf/components/esp_local_ctrl/include -IC:/esp/v6.0/esp-idf/components/esp_trace/include -IC:/esp/v6.0/esp-idf/components/wear_levelling/include -IC:/esp/v6.0/esp-idf/components/fatfs/diskio -IC:/esp/v6.0/esp-idf/components/fatfs/src -IC:/esp/v6.0/esp-idf/components/fatfs/vfs -IC:/esp/v6.0/esp-idf/components/idf_test/include -IC:/esp/v6.0/esp-idf/components/idf_test/include/esp32 -IC:/esp/v6.0/esp-idf/components/ieee802154/include -IC:/esp/v6.0/esp-idf/components/perfmon/include -IC:/esp/v6.0/esp-idf/components/rt/include -IC:/esp/v6.0/esp-idf/components/spiffs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\main\\CMakeFiles\\__idf_main.dir\\modbus_memory.c.obj -c C:\\Users\\e.adame\\Documents\\ESP32_Modbus_RTU_to_PICS_MULTI\\main\\modbus_memory.c", + "file": "C:\\Users\\e.adame\\Documents\\ESP32_Modbus_RTU_to_PICS_MULTI\\main\\modbus_memory.c", + "output": "esp-idf\\main\\CMakeFiles\\__idf_main.dir\\modbus_memory.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/main -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/app_update/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/pthread/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include -IC:/esp/v6.0/esp-idf/components/esp_psram/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gptimer/include -IC:/esp/v6.0/esp-idf/components/app_trace/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/esp_coex/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/unity/include -IC:/esp/v6.0/esp-idf/components/unity/unity/src -IC:/esp/v6.0/esp-idf/components/cmock/CMock/src -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/esp32/include -IC:/esp/v6.0/esp-idf/components/driver/i2c/include -IC:/esp/v6.0/esp-idf/components/driver/touch_sensor/include -IC:/esp/v6.0/esp-idf/components/driver/twai/include -IC:/esp/v6.0/esp-idf/components/driver/touch_sensor/esp32/include -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_adc/include -IC:/esp/v6.0/esp-idf/components/esp_adc/interface -IC:/esp/v6.0/esp-idf/components/esp_adc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_cmpr/include -IC:/esp/v6.0/esp-idf/components/esp_driver_ana_cmpr/include -IC:/esp/v6.0/esp-idf/components/esp_driver_bitscrambler/include -IC:/esp/v6.0/esp-idf/components/esp_hal_cam/include -IC:/esp/v6.0/esp-idf/components/esp_driver_isp/include -IC:/esp/v6.0/esp-idf/components/esp_driver_cam/include -IC:/esp/v6.0/esp-idf/components/esp_driver_cam/interface -IC:/esp/v6.0/esp-idf/components/esp_driver_dac/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i3c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_jpeg/include -IC:/esp/v6.0/esp-idf/components/esp_driver_jpeg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ledc/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ledc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_ledc/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pcnt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pcnt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_pcnt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ppa/include -IC:/esp/v6.0/esp-idf/components/esp_driver_ppa/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_rmt/include -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sd_intf/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/legacy/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdspi/include -IC:/esp/v6.0/esp-idf/components/esp_driver_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_driver_touch_sens/hw_ver1/include -IC:/esp/v6.0/esp-idf/components/esp_driver_tsens/include -IC:/esp/v6.0/esp-idf/components/esp_driver_twai/include -IC:/esp/v6.0/esp-idf/components/esp_eth/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ieee802154/include -IC:/esp/v6.0/esp-idf/components/esp_hal_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_hid/include -IC:/esp/v6.0/esp-idf/components/tcp_transport/include -IC:/esp/v6.0/esp-idf/components/esp_http_client/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/esp_https_ota/include -IC:/esp/v6.0/esp-idf/components/esp_https_server/include -IC:/esp/v6.0/esp-idf/components/esp_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_lcd/interface -IC:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c -IC:/esp/v6.0/esp-idf/components/protocomm/include/common -IC:/esp/v6.0/esp-idf/components/protocomm/include/security -IC:/esp/v6.0/esp-idf/components/protocomm/include/transports -IC:/esp/v6.0/esp-idf/components/protocomm/include/crypto/srp6a -IC:/esp/v6.0/esp-idf/components/protocomm/proto-c -IC:/esp/v6.0/esp-idf/components/esp_local_ctrl/include -IC:/esp/v6.0/esp-idf/components/esp_trace/include -IC:/esp/v6.0/esp-idf/components/wear_levelling/include -IC:/esp/v6.0/esp-idf/components/fatfs/diskio -IC:/esp/v6.0/esp-idf/components/fatfs/src -IC:/esp/v6.0/esp-idf/components/fatfs/vfs -IC:/esp/v6.0/esp-idf/components/idf_test/include -IC:/esp/v6.0/esp-idf/components/idf_test/include/esp32 -IC:/esp/v6.0/esp-idf/components/ieee802154/include -IC:/esp/v6.0/esp-idf/components/perfmon/include -IC:/esp/v6.0/esp-idf/components/rt/include -IC:/esp/v6.0/esp-idf/components/spiffs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\main\\CMakeFiles\\__idf_main.dir\\modbus_points.c.obj -c C:\\Users\\e.adame\\Documents\\ESP32_Modbus_RTU_to_PICS_MULTI\\main\\modbus_points.c", + "file": "C:\\Users\\e.adame\\Documents\\ESP32_Modbus_RTU_to_PICS_MULTI\\main\\modbus_points.c", + "output": "esp-idf\\main\\CMakeFiles\\__idf_main.dir\\modbus_points.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/main -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/app_update/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/pthread/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include -IC:/esp/v6.0/esp-idf/components/esp_psram/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gptimer/include -IC:/esp/v6.0/esp-idf/components/app_trace/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/esp_coex/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/unity/include -IC:/esp/v6.0/esp-idf/components/unity/unity/src -IC:/esp/v6.0/esp-idf/components/cmock/CMock/src -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/esp32/include -IC:/esp/v6.0/esp-idf/components/driver/i2c/include -IC:/esp/v6.0/esp-idf/components/driver/touch_sensor/include -IC:/esp/v6.0/esp-idf/components/driver/twai/include -IC:/esp/v6.0/esp-idf/components/driver/touch_sensor/esp32/include -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_adc/include -IC:/esp/v6.0/esp-idf/components/esp_adc/interface -IC:/esp/v6.0/esp-idf/components/esp_adc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_cmpr/include -IC:/esp/v6.0/esp-idf/components/esp_driver_ana_cmpr/include -IC:/esp/v6.0/esp-idf/components/esp_driver_bitscrambler/include -IC:/esp/v6.0/esp-idf/components/esp_hal_cam/include -IC:/esp/v6.0/esp-idf/components/esp_driver_isp/include -IC:/esp/v6.0/esp-idf/components/esp_driver_cam/include -IC:/esp/v6.0/esp-idf/components/esp_driver_cam/interface -IC:/esp/v6.0/esp-idf/components/esp_driver_dac/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i3c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_jpeg/include -IC:/esp/v6.0/esp-idf/components/esp_driver_jpeg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ledc/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ledc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_ledc/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pcnt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pcnt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_pcnt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ppa/include -IC:/esp/v6.0/esp-idf/components/esp_driver_ppa/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_rmt/include -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sd_intf/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/legacy/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdspi/include -IC:/esp/v6.0/esp-idf/components/esp_driver_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_driver_touch_sens/hw_ver1/include -IC:/esp/v6.0/esp-idf/components/esp_driver_tsens/include -IC:/esp/v6.0/esp-idf/components/esp_driver_twai/include -IC:/esp/v6.0/esp-idf/components/esp_eth/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ieee802154/include -IC:/esp/v6.0/esp-idf/components/esp_hal_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_hid/include -IC:/esp/v6.0/esp-idf/components/tcp_transport/include -IC:/esp/v6.0/esp-idf/components/esp_http_client/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/esp_https_ota/include -IC:/esp/v6.0/esp-idf/components/esp_https_server/include -IC:/esp/v6.0/esp-idf/components/esp_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_lcd/interface -IC:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c -IC:/esp/v6.0/esp-idf/components/protocomm/include/common -IC:/esp/v6.0/esp-idf/components/protocomm/include/security -IC:/esp/v6.0/esp-idf/components/protocomm/include/transports -IC:/esp/v6.0/esp-idf/components/protocomm/include/crypto/srp6a -IC:/esp/v6.0/esp-idf/components/protocomm/proto-c -IC:/esp/v6.0/esp-idf/components/esp_local_ctrl/include -IC:/esp/v6.0/esp-idf/components/esp_trace/include -IC:/esp/v6.0/esp-idf/components/wear_levelling/include -IC:/esp/v6.0/esp-idf/components/fatfs/diskio -IC:/esp/v6.0/esp-idf/components/fatfs/src -IC:/esp/v6.0/esp-idf/components/fatfs/vfs -IC:/esp/v6.0/esp-idf/components/idf_test/include -IC:/esp/v6.0/esp-idf/components/idf_test/include/esp32 -IC:/esp/v6.0/esp-idf/components/ieee802154/include -IC:/esp/v6.0/esp-idf/components/perfmon/include -IC:/esp/v6.0/esp-idf/components/rt/include -IC:/esp/v6.0/esp-idf/components/spiffs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\main\\CMakeFiles\\__idf_main.dir\\modbus_rtu.c.obj -c C:\\Users\\e.adame\\Documents\\ESP32_Modbus_RTU_to_PICS_MULTI\\main\\modbus_rtu.c", + "file": "C:\\Users\\e.adame\\Documents\\ESP32_Modbus_RTU_to_PICS_MULTI\\main\\modbus_rtu.c", + "output": "esp-idf\\main\\CMakeFiles\\__idf_main.dir\\modbus_rtu.c.obj" +}, +{ + "directory": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "command": "C:\\Espressif\\tools\\xtensa-esp-elf\\esp-15.2.0_20251204\\xtensa-esp-elf\\bin\\xtensa-esp32-elf-gcc.exe -DESP_PLATFORM -DESP_PSA_ITS_AVAILABLE -DIDF_VER=\\\"v6.0\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DMBEDTLS_MAJOR_VERSION=4 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DTF_PSA_CRYPTO_USER_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/config -IC:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/main -IC:/esp/v6.0/esp-idf/components/esp_libc/platform_include -IC:/esp/v6.0/esp-idf/components/freertos/config/include -IC:/esp/v6.0/esp-idf/components/freertos/config/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/config/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include -IC:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/include/freertos -IC:/esp/v6.0/esp-idf/components/freertos/esp_additions/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/include/soc -IC:/esp/v6.0/esp-idf/components/esp_hw_support/ldo/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/debug_probe/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/etm/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/modem/include -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/. -IC:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/include -IC:/esp/v6.0/esp-idf/components/heap/include -IC:/esp/v6.0/esp-idf/components/heap/tlsf -IC:/esp/v6.0/esp-idf/components/log/include -IC:/esp/v6.0/esp-idf/components/soc/include -IC:/esp/v6.0/esp-idf/components/soc/esp32 -IC:/esp/v6.0/esp-idf/components/soc/esp32/include -IC:/esp/v6.0/esp-idf/components/soc/esp32/register -IC:/esp/v6.0/esp-idf/components/hal/platform_port/include -IC:/esp/v6.0/esp-idf/components/hal/esp32/include -IC:/esp/v6.0/esp-idf/components/hal/include -IC:/esp/v6.0/esp-idf/components/esp_rom/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32/include/esp32 -IC:/esp/v6.0/esp-idf/components/esp_rom/esp32 -IC:/esp/v6.0/esp-idf/components/esp_common/include -IC:/esp/v6.0/esp-idf/components/esp_system/include -IC:/esp/v6.0/esp-idf/components/esp_system/port/soc -IC:/esp/v6.0/esp-idf/components/esp_system/port/include/private -IC:/esp/v6.0/esp-idf/components/esp_stdio/include -IC:/esp/v6.0/esp-idf/components/xtensa/esp32/include -IC:/esp/v6.0/esp-idf/components/xtensa/include -IC:/esp/v6.0/esp-idf/components/xtensa/deprecated_include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_usb/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pmu/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_dma/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/include -IC:/esp/v6.0/esp-idf/components/lwip/include -IC:/esp/v6.0/esp-idf/components/lwip/include/apps -IC:/esp/v6.0/esp-idf/components/lwip/lwip/src/include -IC:/esp/v6.0/esp-idf/components/lwip/port/include -IC:/esp/v6.0/esp-idf/components/lwip/port/freertos/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/include -IC:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mspi/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_blockdev/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_security/include -IC:/esp/v6.0/esp-idf/components/esp_app_format/include -IC:/esp/v6.0/esp-idf/components/esp_bootloader_format/include -IC:/esp/v6.0/esp-idf/components/app_update/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/include -IC:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/esp/v6.0/esp-idf/components/esp_partition/include -IC:/esp/v6.0/esp-idf/components/efuse/include -IC:/esp/v6.0/esp-idf/components/efuse/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_security/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gpio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/include -IC:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_pm/include -IC:/esp/v6.0/esp-idf/components/esp_mm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_dma/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src -IC:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include -IC:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer/esp32/include -IC:/esp/v6.0/esp-idf/components/spi_flash/include -IC:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/include -IC:/esp/v6.0/esp-idf/components/pthread/include -IC:/esp/v6.0/esp-idf/components/esp_timer/include -IC:/esp/v6.0/esp-idf/components/esp_ringbuf/include -IC:/esp/v6.0/esp-idf/components/esp_psram/include -IC:/esp/v6.0/esp-idf/components/esp_driver_uart/include -IC:/esp/v6.0/esp-idf/components/vfs/include -IC:/esp/v6.0/esp-idf/components/esp_driver_gptimer/include -IC:/esp/v6.0/esp-idf/components/app_trace/include -IC:/esp/v6.0/esp-idf/components/esp_event/include -IC:/esp/v6.0/esp-idf/components/nvs_sec_provider/include -IC:/esp/v6.0/esp-idf/components/nvs_flash/include -IC:/esp/v6.0/esp-idf/components/esp_phy/include -IC:/esp/v6.0/esp-idf/components/esp_phy/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/esp/v6.0/esp-idf/components/esp_netif/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/port/include -IC:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/esp/v6.0/esp-idf/components/esp_coex/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/include/local -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/include -IC:/esp/v6.0/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/esp/v6.0/esp-idf/components/esp_driver_spi/include -IC:/esp/v6.0/esp-idf/components/esp_gdbstub/include -IC:/esp/v6.0/esp-idf/components/unity/include -IC:/esp/v6.0/esp-idf/components/unity/unity/src -IC:/esp/v6.0/esp-idf/components/cmock/CMock/src -IC:/esp/v6.0/esp-idf/components/console -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/include -IC:/esp/v6.0/esp-idf/components/esp_hal_twai/esp32/include -IC:/esp/v6.0/esp-idf/components/driver/i2c/include -IC:/esp/v6.0/esp-idf/components/driver/touch_sensor/include -IC:/esp/v6.0/esp-idf/components/driver/twai/include -IC:/esp/v6.0/esp-idf/components/driver/touch_sensor/esp32/include -IC:/esp/v6.0/esp-idf/components/http_parser -IC:/esp/v6.0/esp-idf/components/esp-tls -IC:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto -IC:/esp/v6.0/esp-idf/components/esp_driver_i2s/include -IC:/esp/v6.0/esp-idf/components/esp_adc/include -IC:/esp/v6.0/esp-idf/components/esp_adc/interface -IC:/esp/v6.0/esp-idf/components/esp_adc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ana_cmpr/include -IC:/esp/v6.0/esp-idf/components/esp_driver_ana_cmpr/include -IC:/esp/v6.0/esp-idf/components/esp_driver_bitscrambler/include -IC:/esp/v6.0/esp-idf/components/esp_hal_cam/include -IC:/esp/v6.0/esp-idf/components/esp_driver_isp/include -IC:/esp/v6.0/esp-idf/components/esp_driver_cam/include -IC:/esp/v6.0/esp-idf/components/esp_driver_cam/interface -IC:/esp/v6.0/esp-idf/components/esp_driver_dac/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i2c/include -IC:/esp/v6.0/esp-idf/components/esp_driver_i3c/include -IC:/esp/v6.0/esp-idf/components/esp_hal_jpeg/include -IC:/esp/v6.0/esp-idf/components/esp_driver_jpeg/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ledc/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ledc/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_ledc/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/include -IC:/esp/v6.0/esp-idf/components/esp_hal_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_parlio/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pcnt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_pcnt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_pcnt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ppa/include -IC:/esp/v6.0/esp-idf/components/esp_driver_ppa/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/include -IC:/esp/v6.0/esp-idf/components/esp_hal_rmt/esp32/include -IC:/esp/v6.0/esp-idf/components/esp_driver_rmt/include -IC:/esp/v6.0/esp-idf/components/sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sd_intf/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdio/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdm/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/legacy/include -IC:/esp/v6.0/esp-idf/components/esp_driver_sdspi/include -IC:/esp/v6.0/esp-idf/components/esp_driver_touch_sens/include -IC:/esp/v6.0/esp-idf/components/esp_driver_touch_sens/hw_ver1/include -IC:/esp/v6.0/esp-idf/components/esp_driver_tsens/include -IC:/esp/v6.0/esp-idf/components/esp_driver_twai/include -IC:/esp/v6.0/esp-idf/components/esp_eth/include -IC:/esp/v6.0/esp-idf/components/esp_hal_ieee802154/include -IC:/esp/v6.0/esp-idf/components/esp_hal_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_hid/include -IC:/esp/v6.0/esp-idf/components/tcp_transport/include -IC:/esp/v6.0/esp-idf/components/esp_http_client/include -IC:/esp/v6.0/esp-idf/components/esp_http_server/include -IC:/esp/v6.0/esp-idf/components/esp_https_ota/include -IC:/esp/v6.0/esp-idf/components/esp_https_server/include -IC:/esp/v6.0/esp-idf/components/esp_lcd/include -IC:/esp/v6.0/esp-idf/components/esp_lcd/interface -IC:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c -IC:/esp/v6.0/esp-idf/components/protocomm/include/common -IC:/esp/v6.0/esp-idf/components/protocomm/include/security -IC:/esp/v6.0/esp-idf/components/protocomm/include/transports -IC:/esp/v6.0/esp-idf/components/protocomm/include/crypto/srp6a -IC:/esp/v6.0/esp-idf/components/protocomm/proto-c -IC:/esp/v6.0/esp-idf/components/esp_local_ctrl/include -IC:/esp/v6.0/esp-idf/components/esp_trace/include -IC:/esp/v6.0/esp-idf/components/wear_levelling/include -IC:/esp/v6.0/esp-idf/components/fatfs/diskio -IC:/esp/v6.0/esp-idf/components/fatfs/src -IC:/esp/v6.0/esp-idf/components/fatfs/vfs -IC:/esp/v6.0/esp-idf/components/idf_test/include -IC:/esp/v6.0/esp-idf/components/idf_test/include/esp32 -IC:/esp/v6.0/esp-idf/components/ieee802154/include -IC:/esp/v6.0/esp-idf/components/perfmon/include -IC:/esp/v6.0/esp-idf/components/rt/include -IC:/esp/v6.0/esp-idf/components/spiffs/include @\"C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/toolchain/cflags\" -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Og -fno-shrink-wrap -fmacro-prefix-map=C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI=. -fmacro-prefix-map=C:/esp/v6.0/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu23 -Wno-old-style-declaration -fzero-init-padding-bits=all -fno-malloc-dce -o esp-idf\\main\\CMakeFiles\\__idf_main.dir\\config_store.c.obj -c C:\\Users\\e.adame\\Documents\\ESP32_Modbus_RTU_to_PICS_MULTI\\main\\config_store.c", + "file": "C:\\Users\\e.adame\\Documents\\ESP32_Modbus_RTU_to_PICS_MULTI\\main\\config_store.c", + "output": "esp-idf\\main\\CMakeFiles\\__idf_main.dir\\config_store.c.obj" +} +] \ No newline at end of file diff --git a/build/config.env b/build/config.env new file mode 100644 index 0000000..8ca099a --- /dev/null +++ b/build/config.env @@ -0,0 +1,12 @@ +{ + "COMPONENT_KCONFIGS": "C:/esp/v6.0/esp-idf/components/bt/Kconfig;C:/esp/v6.0/esp-idf/components/console/Kconfig;C:/esp/v6.0/esp-idf/components/driver/Kconfig;C:/esp/v6.0/esp-idf/components/efuse/Kconfig;C:/esp/v6.0/esp-idf/components/esp-tls/Kconfig;C:/esp/v6.0/esp-idf/components/esp_adc/Kconfig;C:/esp/v6.0/esp-idf/components/esp_coex/Kconfig;C:/esp/v6.0/esp-idf/components/esp_common/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_ana_cmpr/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_bitscrambler/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_cam/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_dac/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_dma/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_gpio/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_gptimer/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_i2c/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_i2s/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_i3c/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_isp/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_jpeg/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_ledc/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_parlio/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_pcnt/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_rmt/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_sdm/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_spi/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_touch_sens/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_tsens/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_twai/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_uart/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/Kconfig;C:/esp/v6.0/esp-idf/components/esp_eth/Kconfig;C:/esp/v6.0/esp-idf/components/esp_event/Kconfig;C:/esp/v6.0/esp-idf/components/esp_gdbstub/Kconfig;C:/esp/v6.0/esp-idf/components/esp_hid/Kconfig;C:/esp/v6.0/esp-idf/components/esp_http_client/Kconfig;C:/esp/v6.0/esp-idf/components/esp_http_server/Kconfig;C:/esp/v6.0/esp-idf/components/esp_https_ota/Kconfig;C:/esp/v6.0/esp-idf/components/esp_https_server/Kconfig;C:/esp/v6.0/esp-idf/components/esp_hw_support/Kconfig;C:/esp/v6.0/esp-idf/components/esp_lcd/Kconfig;C:/esp/v6.0/esp-idf/components/esp_libc/Kconfig;C:/esp/v6.0/esp-idf/components/esp_mm/Kconfig;C:/esp/v6.0/esp-idf/components/esp_netif/Kconfig;C:/esp/v6.0/esp-idf/components/esp_partition/Kconfig;C:/esp/v6.0/esp-idf/components/esp_phy/Kconfig;C:/esp/v6.0/esp-idf/components/esp_pm/Kconfig;C:/esp/v6.0/esp-idf/components/esp_psram/Kconfig;C:/esp/v6.0/esp-idf/components/esp_ringbuf/Kconfig;C:/esp/v6.0/esp-idf/components/esp_rom/Kconfig;C:/esp/v6.0/esp-idf/components/esp_security/Kconfig;C:/esp/v6.0/esp-idf/components/esp_stdio/Kconfig;C:/esp/v6.0/esp-idf/components/esp_system/Kconfig;C:/esp/v6.0/esp-idf/components/esp_timer/Kconfig;C:/esp/v6.0/esp-idf/components/esp_trace/Kconfig;C:/esp/v6.0/esp-idf/components/esp_wifi/Kconfig;C:/esp/v6.0/esp-idf/components/espcoredump/Kconfig;C:/esp/v6.0/esp-idf/components/fatfs/Kconfig;C:/esp/v6.0/esp-idf/components/freertos/Kconfig;C:/esp/v6.0/esp-idf/components/hal/Kconfig;C:/esp/v6.0/esp-idf/components/heap/Kconfig;C:/esp/v6.0/esp-idf/components/ieee802154/Kconfig;C:/esp/v6.0/esp-idf/components/log/Kconfig;C:/esp/v6.0/esp-idf/components/lwip/Kconfig;C:/esp/v6.0/esp-idf/components/mbedtls/Kconfig;C:/esp/v6.0/esp-idf/components/nvs_flash/Kconfig;C:/esp/v6.0/esp-idf/components/nvs_sec_provider/Kconfig;C:/esp/v6.0/esp-idf/components/openthread/Kconfig;C:/esp/v6.0/esp-idf/components/protocomm/Kconfig;C:/esp/v6.0/esp-idf/components/pthread/Kconfig;C:/esp/v6.0/esp-idf/components/sdmmc/Kconfig;C:/esp/v6.0/esp-idf/components/soc/Kconfig;C:/esp/v6.0/esp-idf/components/spi_flash/Kconfig;C:/esp/v6.0/esp-idf/components/spiffs/Kconfig;C:/esp/v6.0/esp-idf/components/tcp_transport/Kconfig;C:/esp/v6.0/esp-idf/components/ulp/Kconfig;C:/esp/v6.0/esp-idf/components/unity/Kconfig;C:/esp/v6.0/esp-idf/components/vfs/Kconfig;C:/esp/v6.0/esp-idf/components/wear_levelling/Kconfig", + "COMPONENT_KCONFIGS_PROJBUILD": "C:/esp/v6.0/esp-idf/components/bootloader/Kconfig.projbuild;C:/esp/v6.0/esp-idf/components/esp_app_format/Kconfig.projbuild;C:/esp/v6.0/esp-idf/components/esp_rom/Kconfig.projbuild;C:/esp/v6.0/esp-idf/components/esptool_py/Kconfig.projbuild;C:/esp/v6.0/esp-idf/components/partition_table/Kconfig.projbuild", + "COMPONENT_SDKCONFIG_RENAMES": "C:/esp/v6.0/esp-idf/components/app_trace/sdkconfig.rename;C:/esp/v6.0/esp-idf/components/bootloader/sdkconfig.rename;C:/esp/v6.0/esp-idf/components/bt/sdkconfig.rename;C:/esp/v6.0/esp-idf/components/driver/sdkconfig.rename;C:/esp/v6.0/esp-idf/components/esp_adc/sdkconfig.rename;C:/esp/v6.0/esp-idf/components/esp_coex/sdkconfig.rename;C:/esp/v6.0/esp-idf/components/esp_driver_ana_cmpr/sdkconfig.rename;C:/esp/v6.0/esp-idf/components/esp_driver_cam/sdkconfig.rename;C:/esp/v6.0/esp-idf/components/esp_driver_gptimer/sdkconfig.rename;C:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/sdkconfig.rename;C:/esp/v6.0/esp-idf/components/esp_event/sdkconfig.rename;C:/esp/v6.0/esp-idf/components/esp_gdbstub/sdkconfig.rename;C:/esp/v6.0/esp-idf/components/esp_https_ota/sdkconfig.rename;C:/esp/v6.0/esp-idf/components/esp_hw_support/sdkconfig.rename;C:/esp/v6.0/esp-idf/components/esp_hw_support/sdkconfig.rename.esp32;C:/esp/v6.0/esp-idf/components/esp_lcd/sdkconfig.rename;C:/esp/v6.0/esp-idf/components/esp_libc/sdkconfig.rename;C:/esp/v6.0/esp-idf/components/esp_libc/sdkconfig.rename.esp32;C:/esp/v6.0/esp-idf/components/esp_phy/sdkconfig.rename;C:/esp/v6.0/esp-idf/components/esp_pm/sdkconfig.rename;C:/esp/v6.0/esp-idf/components/esp_system/sdkconfig.rename;C:/esp/v6.0/esp-idf/components/esp_system/sdkconfig.rename.esp32;C:/esp/v6.0/esp-idf/components/esp_timer/sdkconfig.rename;C:/esp/v6.0/esp-idf/components/esp_wifi/sdkconfig.rename;C:/esp/v6.0/esp-idf/components/espcoredump/sdkconfig.rename;C:/esp/v6.0/esp-idf/components/esptool_py/sdkconfig.rename;C:/esp/v6.0/esp-idf/components/freertos/sdkconfig.rename;C:/esp/v6.0/esp-idf/components/hal/sdkconfig.rename;C:/esp/v6.0/esp-idf/components/lwip/sdkconfig.rename;C:/esp/v6.0/esp-idf/components/pthread/sdkconfig.rename;C:/esp/v6.0/esp-idf/components/spi_flash/sdkconfig.rename;C:/esp/v6.0/esp-idf/components/ulp/sdkconfig.rename.esp32;C:/esp/v6.0/esp-idf/components/vfs/sdkconfig.rename", + "IDF_TARGET": "esp32", + "IDF_TOOLCHAIN": "gcc", + "IDF_VERSION": "6.0.0", + "IDF_ENV_FPGA": "", + "IDF_PATH": "C:/esp/v6.0/esp-idf", + "COMPONENT_KCONFIGS_SOURCE_FILE": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/kconfigs.in", + "COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/kconfigs_projbuild.in" +} diff --git a/build/config/kconfig_menus.json b/build/config/kconfig_menus.json new file mode 100644 index 0000000..b255ad6 --- /dev/null +++ b/build/config/kconfig_menus.json @@ -0,0 +1,34346 @@ +[ + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CAPS_ECO_VER_MAX", + "name": "SOC_CAPS_ECO_VER_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_SUPPORTED", + "name": "SOC_ADC_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DAC_SUPPORTED", + "name": "SOC_DAC_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_SUPPORTED", + "name": "SOC_UART_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MCPWM_SUPPORTED", + "name": "SOC_MCPWM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPTIMER_SUPPORTED", + "name": "SOC_GPTIMER_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SDMMC_HOST_SUPPORTED", + "name": "SOC_SDMMC_HOST_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BT_SUPPORTED", + "name": "SOC_BT_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PCNT_SUPPORTED", + "name": "SOC_PCNT_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PHY_SUPPORTED", + "name": "SOC_PHY_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_SUPPORTED", + "name": "SOC_WIFI_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SDIO_SLAVE_SUPPORTED", + "name": "SOC_SDIO_SLAVE_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TWAI_SUPPORTED", + "name": "SOC_TWAI_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_SUPPORTED", + "name": "SOC_EFUSE_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EMAC_SUPPORTED", + "name": "SOC_EMAC_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ULP_SUPPORTED", + "name": "SOC_ULP_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CCOMP_TIMER_SUPPORTED", + "name": "SOC_CCOMP_TIMER_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RTC_FAST_MEM_SUPPORTED", + "name": "SOC_RTC_FAST_MEM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RTC_SLOW_MEM_SUPPORTED", + "name": "SOC_RTC_SLOW_MEM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RTC_MEM_SUPPORTED", + "name": "SOC_RTC_MEM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RTC_TIMER_V1_SUPPORTED", + "name": "SOC_RTC_TIMER_V1_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTED", + "name": "SOC_I2S_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_I80_LCD_SUPPORTED", + "name": "SOC_I2S_I80_LCD_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LCD_I80_SUPPORTED", + "name": "SOC_LCD_I80_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_SUPPORTED", + "name": "SOC_RMT_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SDM_SUPPORTED", + "name": "SOC_SDM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPSPI_SUPPORTED", + "name": "SOC_GPSPI_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_SUPPORTED", + "name": "SOC_LEDC_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SUPPORTED", + "name": "SOC_I2C_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SUPPORT_COEXISTENCE", + "name": "SOC_SUPPORT_COEXISTENCE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_AES_SUPPORTED", + "name": "SOC_AES_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MPI_SUPPORTED", + "name": "SOC_MPI_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORTED", + "name": "SOC_SHA_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_FLASH_ENC_SUPPORTED", + "name": "SOC_FLASH_ENC_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SECURE_BOOT_SUPPORTED", + "name": "SOC_SECURE_BOOT_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_SENSOR_SUPPORTED", + "name": "SOC_TOUCH_SENSOR_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BOD_SUPPORTED", + "name": "SOC_BOD_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ULP_FSM_SUPPORTED", + "name": "SOC_ULP_FSM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CLK_TREE_SUPPORTED", + "name": "SOC_CLK_TREE_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MPU_SUPPORTED", + "name": "SOC_MPU_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WDT_SUPPORTED", + "name": "SOC_WDT_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_FLASH_SUPPORTED", + "name": "SOC_SPI_FLASH_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RNG_SUPPORTED", + "name": "SOC_RNG_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LIGHT_SLEEP_SUPPORTED", + "name": "SOC_LIGHT_SLEEP_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DEEP_SLEEP_SUPPORTED", + "name": "SOC_DEEP_SLEEP_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LP_PERIPH_SHARE_INTERRUPT", + "name": "SOC_LP_PERIPH_SHARE_INTERRUPT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORTED", + "name": "SOC_PM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DPORT_WORKAROUND_DIS_INTERRUPT_LVL", + "name": "SOC_DPORT_WORKAROUND_DIS_INTERRUPT_LVL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_XTAL_SUPPORT_26M", + "name": "SOC_XTAL_SUPPORT_26M", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_XTAL_SUPPORT_40M", + "name": "SOC_XTAL_SUPPORT_40M", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_RTC_CTRL_SUPPORTED", + "name": "SOC_ADC_RTC_CTRL_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_DIG_CTRL_SUPPORTED", + "name": "SOC_ADC_DIG_CTRL_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_DMA_SUPPORTED", + "name": "SOC_ADC_DMA_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_PERIPH_NUM", + "name": "SOC_ADC_PERIPH_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_MAX_CHANNEL_NUM", + "name": "SOC_ADC_MAX_CHANNEL_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_ATTEN_NUM", + "name": "SOC_ADC_ATTEN_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_DIGI_CONTROLLER_NUM", + "name": "SOC_ADC_DIGI_CONTROLLER_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_PATT_LEN_MAX", + "name": "SOC_ADC_PATT_LEN_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_DIGI_MIN_BITWIDTH", + "name": "SOC_ADC_DIGI_MIN_BITWIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_DIGI_MAX_BITWIDTH", + "name": "SOC_ADC_DIGI_MAX_BITWIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_DIGI_RESULT_BYTES", + "name": "SOC_ADC_DIGI_RESULT_BYTES", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_DIGI_DATA_BYTES_PER_CONV", + "name": "SOC_ADC_DIGI_DATA_BYTES_PER_CONV", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_DIGI_MONITOR_NUM", + "name": "SOC_ADC_DIGI_MONITOR_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_SAMPLE_FREQ_THRES_HIGH", + "name": "SOC_ADC_SAMPLE_FREQ_THRES_HIGH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_SAMPLE_FREQ_THRES_LOW", + "name": "SOC_ADC_SAMPLE_FREQ_THRES_LOW", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_RTC_MIN_BITWIDTH", + "name": "SOC_ADC_RTC_MIN_BITWIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_RTC_MAX_BITWIDTH", + "name": "SOC_ADC_RTC_MAX_BITWIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ADC_SHARED_POWER", + "name": "SOC_ADC_SHARED_POWER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BROWNOUT_RESET_SUPPORTED", + "name": "SOC_BROWNOUT_RESET_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHARED_IDCACHE_SUPPORTED", + "name": "SOC_SHARED_IDCACHE_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_IDCACHE_PER_CORE", + "name": "SOC_IDCACHE_PER_CORE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CPU_CORES_NUM", + "name": "SOC_CPU_CORES_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CPU_INTR_NUM", + "name": "SOC_CPU_INTR_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CPU_HAS_FPU", + "name": "SOC_CPU_HAS_FPU", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_HP_CPU_HAS_MULTIPLE_CORES", + "name": "SOC_HP_CPU_HAS_MULTIPLE_CORES", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CPU_BREAKPOINTS_NUM", + "name": "SOC_CPU_BREAKPOINTS_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CPU_WATCHPOINTS_NUM", + "name": "SOC_CPU_WATCHPOINTS_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CPU_WATCHPOINT_MAX_REGION_SIZE", + "name": "SOC_CPU_WATCHPOINT_MAX_REGION_SIZE", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DAC_CHAN_NUM", + "name": "SOC_DAC_CHAN_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DAC_RESOLUTION", + "name": "SOC_DAC_RESOLUTION", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_DAC_DMA_16BIT_ALIGN", + "name": "SOC_DAC_DMA_16BIT_ALIGN", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_PORT", + "name": "SOC_GPIO_PORT", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_PIN_COUNT", + "name": "SOC_GPIO_PIN_COUNT", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_VALID_GPIO_MASK", + "name": "SOC_GPIO_VALID_GPIO_MASK", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_IN_RANGE_MAX", + "name": "SOC_GPIO_IN_RANGE_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_OUT_RANGE_MAX", + "name": "SOC_GPIO_OUT_RANGE_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK", + "name": "SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_CLOCKOUT_BY_IO_MUX", + "name": "SOC_GPIO_CLOCKOUT_BY_IO_MUX", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_GPIO_CLOCKOUT_CHANNEL_NUM", + "name": "SOC_GPIO_CLOCKOUT_CHANNEL_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_NUM", + "name": "SOC_I2C_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_HP_I2C_NUM", + "name": "SOC_HP_I2C_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SUPPORT_APB", + "name": "SOC_I2C_SUPPORT_APB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SUPPORT_10BIT_ADDR", + "name": "SOC_I2C_SUPPORT_10BIT_ADDR", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_SUPPORT_SLAVE", + "name": "SOC_I2C_SUPPORT_SLAVE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2C_STOP_INDEPENDENT", + "name": "SOC_I2C_STOP_INDEPENDENT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_HW_VERSION_1", + "name": "SOC_I2S_HW_VERSION_1", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_APLL", + "name": "SOC_I2S_SUPPORTS_APLL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_PDM", + "name": "SOC_I2S_SUPPORTS_PDM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_PDM_TX", + "name": "SOC_I2S_SUPPORTS_PDM_TX", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_PCM2PDM", + "name": "SOC_I2S_SUPPORTS_PCM2PDM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_PDM_RX", + "name": "SOC_I2S_SUPPORTS_PDM_RX", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_SUPPORTS_PDM2PCM", + "name": "SOC_I2S_SUPPORTS_PDM2PCM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_PDM_MAX_TX_LINES", + "name": "SOC_I2S_PDM_MAX_TX_LINES", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_I2S_PDM_MAX_RX_LINES", + "name": "SOC_I2S_PDM_MAX_RX_LINES", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_HAS_TIMER_SPECIFIC_MUX", + "name": "SOC_LEDC_HAS_TIMER_SPECIFIC_MUX", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_SUPPORT_APB_CLOCK", + "name": "SOC_LEDC_SUPPORT_APB_CLOCK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_SUPPORT_REF_TICK", + "name": "SOC_LEDC_SUPPORT_REF_TICK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_SUPPORT_HS_MODE", + "name": "SOC_LEDC_SUPPORT_HS_MODE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_TIMER_NUM", + "name": "SOC_LEDC_TIMER_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_CHANNEL_NUM", + "name": "SOC_LEDC_CHANNEL_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LEDC_TIMER_BIT_WIDTH", + "name": "SOC_LEDC_TIMER_BIT_WIDTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MMU_PERIPH_NUM", + "name": "SOC_MMU_PERIPH_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MMU_LINEAR_ADDRESS_REGION_NUM", + "name": "SOC_MMU_LINEAR_ADDRESS_REGION_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MPU_CONFIGURABLE_REGIONS_SUPPORTED", + "name": "SOC_MPU_CONFIGURABLE_REGIONS_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MPU_MIN_REGION_SIZE", + "name": "SOC_MPU_MIN_REGION_SIZE", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MPU_REGIONS_MAX_NUM", + "name": "SOC_MPU_REGIONS_MAX_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MPU_REGION_RO_SUPPORTED", + "name": "SOC_MPU_REGION_RO_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MPU_REGION_WO_SUPPORTED", + "name": "SOC_MPU_REGION_WO_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RMT_MEM_WORDS_PER_CHANNEL", + "name": "SOC_RMT_MEM_WORDS_PER_CHANNEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RTCIO_PIN_COUNT", + "name": "SOC_RTCIO_PIN_COUNT", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RTCIO_INPUT_OUTPUT_SUPPORTED", + "name": "SOC_RTCIO_INPUT_OUTPUT_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RTCIO_HOLD_SUPPORTED", + "name": "SOC_RTCIO_HOLD_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RTCIO_WAKE_SUPPORTED", + "name": "SOC_RTCIO_WAKE_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_HD_BOTH_INOUT_SUPPORTED", + "name": "SOC_SPI_HD_BOTH_INOUT_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_AS_CS_SUPPORTED", + "name": "SOC_SPI_AS_CS_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_PERIPH_NUM", + "name": "SOC_SPI_PERIPH_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_DMA_CHAN_NUM", + "name": "SOC_SPI_DMA_CHAN_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MAX_CS_NUM", + "name": "SOC_SPI_MAX_CS_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_SUPPORT_CLK_APB", + "name": "SOC_SPI_SUPPORT_CLK_APB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MAXIMUM_BUFFER_SIZE", + "name": "SOC_SPI_MAXIMUM_BUFFER_SIZE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MAX_PRE_DIVIDER", + "name": "SOC_SPI_MAX_PRE_DIVIDER", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED", + "name": "SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED", + "name": "SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED", + "name": "SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED", + "name": "SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LP_TIMER_BIT_WIDTH_LO", + "name": "SOC_LP_TIMER_BIT_WIDTH_LO", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_LP_TIMER_BIT_WIDTH_HI", + "name": "SOC_LP_TIMER_BIT_WIDTH_HI", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_SENSOR_VERSION", + "name": "SOC_TOUCH_SENSOR_VERSION", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_MIN_CHAN_ID", + "name": "SOC_TOUCH_MIN_CHAN_ID", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_MAX_CHAN_ID", + "name": "SOC_TOUCH_MAX_CHAN_ID", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_SUPPORT_SLEEP_WAKEUP", + "name": "SOC_TOUCH_SUPPORT_SLEEP_WAKEUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TOUCH_SAMPLE_CFG_NUM", + "name": "SOC_TOUCH_SAMPLE_CFG_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TWAI_CONTROLLER_NUM", + "name": "SOC_TWAI_CONTROLLER_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_TWAI_MASK_FILTER_NUM", + "name": "SOC_TWAI_MASK_FILTER_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_NUM", + "name": "SOC_UART_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_HP_NUM", + "name": "SOC_UART_HP_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_SUPPORT_APB_CLK", + "name": "SOC_UART_SUPPORT_APB_CLK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_SUPPORT_REF_TICK", + "name": "SOC_UART_SUPPORT_REF_TICK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_FIFO_LEN", + "name": "SOC_UART_FIFO_LEN", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_BITRATE_MAX", + "name": "SOC_UART_BITRATE_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE", + "name": "SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPIRAM_SUPPORTED", + "name": "SOC_SPIRAM_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE", + "name": "SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_PARALLEL_ENG", + "name": "SOC_SHA_SUPPORT_PARALLEL_ENG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_ENDIANNESS_BE", + "name": "SOC_SHA_ENDIANNESS_BE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_SHA1", + "name": "SOC_SHA_SUPPORT_SHA1", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_SHA256", + "name": "SOC_SHA_SUPPORT_SHA256", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_SHA384", + "name": "SOC_SHA_SUPPORT_SHA384", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SHA_SUPPORT_SHA512", + "name": "SOC_SHA_SUPPORT_SHA512", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MPI_MEM_BLOCKS_NUM", + "name": "SOC_MPI_MEM_BLOCKS_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_MPI_OPERATIONS_NUM", + "name": "SOC_MPI_OPERATIONS_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RSA_MAX_BIT_LEN", + "name": "SOC_RSA_MAX_BIT_LEN", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_AES_SUPPORT_AES_128", + "name": "SOC_AES_SUPPORT_AES_128", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_AES_SUPPORT_AES_192", + "name": "SOC_AES_SUPPORT_AES_192", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_AES_SUPPORT_AES_256", + "name": "SOC_AES_SUPPORT_AES_256", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SECURE_BOOT_V1", + "name": "SOC_SECURE_BOOT_V1", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS", + "name": "SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX", + "name": "SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PHY_DIG_REGS_MEM_SIZE", + "name": "SOC_PHY_DIG_REGS_MEM_SIZE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_EXT0_WAKEUP", + "name": "SOC_PM_SUPPORT_EXT0_WAKEUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_EXT1_WAKEUP", + "name": "SOC_PM_SUPPORT_EXT1_WAKEUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_EXT_WAKEUP", + "name": "SOC_PM_SUPPORT_EXT_WAKEUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP", + "name": "SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_RTC_PERIPH_PD", + "name": "SOC_PM_SUPPORT_RTC_PERIPH_PD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_RTC_FAST_MEM_PD", + "name": "SOC_PM_SUPPORT_RTC_FAST_MEM_PD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_RTC_SLOW_MEM_PD", + "name": "SOC_PM_SUPPORT_RTC_SLOW_MEM_PD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_RC_FAST_PD", + "name": "SOC_PM_SUPPORT_RC_FAST_PD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_VDDSDIO_PD", + "name": "SOC_PM_SUPPORT_VDDSDIO_PD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_SUPPORT_MODEM_PD", + "name": "SOC_PM_SUPPORT_MODEM_PD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CONFIGURABLE_VDDSDIO_SUPPORTED", + "name": "SOC_CONFIGURABLE_VDDSDIO_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PM_MODEM_PD_BY_SW", + "name": "SOC_PM_MODEM_PD_BY_SW", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CLK_APLL_SUPPORTED", + "name": "SOC_CLK_APLL_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CLK_RC_FAST_D256_SUPPORTED", + "name": "SOC_CLK_RC_FAST_D256_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256", + "name": "SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CLK_RC_FAST_SUPPORT_CALIBRATION", + "name": "SOC_CLK_RC_FAST_SUPPORT_CALIBRATION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CLK_XTAL32K_SUPPORTED", + "name": "SOC_CLK_XTAL32K_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_CLK_LP_FAST_SUPPORT_XTAL_D4", + "name": "SOC_CLK_LP_FAST_SUPPORT_XTAL_D4", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SDMMC_USE_IOMUX", + "name": "SOC_SDMMC_USE_IOMUX", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SDMMC_NUM_SLOTS", + "name": "SOC_SDMMC_NUM_SLOTS", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_SDMMC_DATA_WIDTH_MAX", + "name": "SOC_SDMMC_DATA_WIDTH_MAX", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_WAPI_SUPPORT", + "name": "SOC_WIFI_WAPI_SUPPORT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_CSI_SUPPORT", + "name": "SOC_WIFI_CSI_SUPPORT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_MESH_SUPPORT", + "name": "SOC_WIFI_MESH_SUPPORT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW", + "name": "SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_WIFI_NAN_SUPPORT", + "name": "SOC_WIFI_NAN_SUPPORT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BLE_SUPPORTED", + "name": "SOC_BLE_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BLE_MESH_SUPPORTED", + "name": "SOC_BLE_MESH_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BT_CLASSIC_SUPPORTED", + "name": "SOC_BT_CLASSIC_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BLE_DEVICE_PRIVACY_SUPPORTED", + "name": "SOC_BLE_DEVICE_PRIVACY_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BLUFI_SUPPORTED", + "name": "SOC_BLUFI_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BT_H2C_ENC_KEY_CTRL_ENH_VSC_SUPPORTED", + "name": "SOC_BT_H2C_ENC_KEY_CTRL_ENH_VSC_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_BLE_MULTI_CONN_OPTIMIZATION", + "name": "SOC_BLE_MULTI_CONN_OPTIMIZATION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_ULP_HAS_ADC", + "name": "SOC_ULP_HAS_ADC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_PHY_COMBO_MODULE", + "name": "SOC_PHY_COMBO_MODULE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SOC_EMAC_RMII_CLK_OUT_INTERNAL_LOOPBACK", + "name": "SOC_EMAC_RMII_CLK_OUT_INTERNAL_LOOPBACK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_CMAKE", + "name": "IDF_CMAKE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "- This option is for internal use only.\n- Enabling this option will help enable all FPGA support so as to\n run ESP-IDF on an FPGA. This can help reproduce some issues that\n only happens on FPGA condition, or when you have to burn some\n efuses multiple times.", + "id": "IDF_ENV_FPGA", + "name": "IDF_ENV_FPGA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "- This option is ONLY used when doing new chip bringup.\n- This option will only enable necessary hw / sw settings for running\n a hello_world application.", + "id": "IDF_ENV_BRINGUP", + "name": "IDF_ENV_BRINGUP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_CI_BUILD", + "name": "IDF_CI_BUILD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_DOC_BUILD", + "name": "IDF_DOC_BUILD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TOOLCHAIN", + "name": "IDF_TOOLCHAIN", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TOOLCHAIN_CLANG", + "name": "IDF_TOOLCHAIN_CLANG", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TOOLCHAIN_GCC", + "name": "IDF_TOOLCHAIN_GCC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ARCH_RISCV", + "name": "IDF_TARGET_ARCH_RISCV", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ARCH_XTENSA", + "name": "IDF_TARGET_ARCH_XTENSA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ARCH", + "name": "IDF_TARGET_ARCH", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET", + "name": "IDF_TARGET", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_INIT_VERSION", + "name": "IDF_INIT_VERSION", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32", + "name": "IDF_TARGET_ESP32", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32S2", + "name": "IDF_TARGET_ESP32S2", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32S3", + "name": "IDF_TARGET_ESP32S3", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32C3", + "name": "IDF_TARGET_ESP32C3", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32C2", + "name": "IDF_TARGET_ESP32C2", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32C6", + "name": "IDF_TARGET_ESP32C6", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32C5", + "name": "IDF_TARGET_ESP32C5", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32P4", + "name": "IDF_TARGET_ESP32P4", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32H2", + "name": "IDF_TARGET_ESP32H2", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32C61", + "name": "IDF_TARGET_ESP32C61", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32H21", + "name": "IDF_TARGET_ESP32H21", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32H4", + "name": "IDF_TARGET_ESP32H4", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_LINUX", + "name": "IDF_TARGET_LINUX", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_FIRMWARE_CHIP_ID", + "name": "IDF_FIRMWARE_CHIP_ID", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "!IDF_TARGET_LINUX && ", + "help": null, + "id": "APP_BUILD_TYPE_APP_2NDBOOT", + "name": "APP_BUILD_TYPE_APP_2NDBOOT", + "range": null, + "title": "Default (binary application + 2nd stage bootloader)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "APP_BUILD_TYPE_RAM", + "name": "APP_BUILD_TYPE_RAM", + "range": null, + "title": "Build app runs entirely in RAM (EXPERIMENTAL)", + "type": "bool" + } + ], + "depends_on": null, + "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 to load the generated .bin file into ram and execute.\n\nExample:\n esptool --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_LIBC_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=", + "id": "build-type-application-build-type-C:-esp-v6.0-esp-idf-Kconfig-177", + "name": "APP_BUILD_TYPE", + "title": "Application build type", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "APP_BUILD_GENERATE_BINARIES", + "name": "APP_BUILD_GENERATE_BINARIES", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "APP_BUILD_BOOTLOADER", + "name": "APP_BUILD_BOOTLOADER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "APP_BUILD_TYPE_RAM", + "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.", + "id": "APP_BUILD_TYPE_PURE_RAM_APP", + "name": "APP_BUILD_TYPE_PURE_RAM_APP", + "range": null, + "title": "Build app without SPI_FLASH/PSRAM support (saves ram)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "APP_BUILD_USE_FLASH_SECTIONS", + "name": "APP_BUILD_USE_FLASH_SECTIONS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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)", + "id": "APP_REPRODUCIBLE_BUILD", + "name": "APP_REPRODUCIBLE_BUILD", + "range": null, + "title": "Enable reproducible build", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "APP_NO_BLOBS", + "name": "APP_NO_BLOBS", + "range": null, + "title": "No Binary Blobs", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32", + "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.", + "id": "APP_COMPATIBLE_PRE_V2_1_BOOTLOADERS", + "name": "APP_COMPATIBLE_PRE_V2_1_BOOTLOADERS", + "range": null, + "title": "App compatible with bootloaders before ESP-IDF v2.1", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32", + "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).", + "id": "APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS", + "name": "APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS", + "range": null, + "title": "App compatible with bootloader and partition table before ESP-IDF v3.1", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32", + "help": null, + "id": "APP_INIT_CLK", + "name": "APP_INIT_CLK", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "build-type-C:-esp-v6.0-esp-idf-Kconfig-175", + "title": "Build type", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "!APP_REPRODUCIBLE_BUILD", + "help": "If set, then the bootloader will be built with the current time/date stamp.\nIt is stored in the bootloader description\nstructure. If not set, time/date stamp will be excluded from bootloader image.\nThis can be useful for getting the\nsame binary image files made from the same source, but at different times.", + "id": "BOOTLOADER_COMPILE_TIME_DATE", + "name": "BOOTLOADER_COMPILE_TIME_DATE", + "range": null, + "title": "Use time/date stamp for bootloader", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Project version. It is placed in \"version\" field of the esp_bootloader_desc structure.\nThe type of this field is \"uint32_t\".", + "id": "BOOTLOADER_PROJECT_VER", + "name": "BOOTLOADER_PROJECT_VER", + "range": [ + 0, + 4294967295 + ], + "title": "Project version", + "type": "int" + } + ], + "depends_on": null, + "id": "bootloader-config-bootloader-manager-C:-esp-v6.0-esp-idf-components-bootloader-..-esp_bootloader_format-Kconfig.bootloader-1", + "title": "Bootloader manager", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_APP_ANTI_ROLLBACK", + "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).", + "id": "BOOTLOADER_APP_SECURE_VERSION", + "name": "BOOTLOADER_APP_SECURE_VERSION", + "range": null, + "title": "eFuse secure version of app", + "type": "int" + }, + { + "children": [], + "depends_on": "BOOTLOADER_APP_ANTI_ROLLBACK", + "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.", + "id": "BOOTLOADER_APP_SEC_VER_SIZE_EFUSE_FIELD", + "name": "BOOTLOADER_APP_SEC_VER_SIZE_EFUSE_FIELD", + "range": null, + "title": "Size of the efuse secure version field", + "type": "int" + }, + { + "children": [], + "depends_on": "BOOTLOADER_APP_ANTI_ROLLBACK", + "help": "This option allows to emulate read/write operations with all eFuses and efuse secure version.\nIt allows to test anti-rollback implementation 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.", + "id": "BOOTLOADER_EFUSE_SECURE_VERSION_EMULATE", + "name": "BOOTLOADER_EFUSE_SECURE_VERSION_EMULATE", + "range": null, + "title": "Emulate operations with efuse secure version(only test)", + "type": "bool" + } + ], + "depends_on": "BOOTLOADER_APP_ROLLBACK_ENABLE", + "help": "This option prevents rollback to previous firmware/application image with lower security version.", + "id": "BOOTLOADER_APP_ANTI_ROLLBACK", + "name": "BOOTLOADER_APP_ANTI_ROLLBACK", + "range": null, + "title": "Enable app anti-rollback support", + "type": "bool" + } + ], + "depends_on": null, + "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.", + "id": "BOOTLOADER_APP_ROLLBACK_ENABLE", + "name": "BOOTLOADER_APP_ROLLBACK_ENABLE", + "range": null, + "title": "Enable app rollback support", + "type": "bool" + } + ], + "depends_on": null, + "id": "bootloader-config-application-rollback-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.app_rollback-1", + "title": "Application Rollback", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_RECOVERY_ENABLE", + "help": "Flash address where the recovery bootloader is stored.\nThis value must be written to the eFuse field (ESP_EFUSE_RECOVERY_BOOTLOADER_FLASH_SECTOR)\nto activate the recovery bootloader in the ROM bootloader. The eFuse can be programmed\nusing espefuse or in the user application with the API esp_efuse_set_recovery_bootloader_offset().\nSetting this value in the config allows parttool.py to verify that it does not overlap with existing\npartitions in the partition table.\n\nThe address must be a multiple of the flash sector size (0x1000 bytes).\nThe eFuse field stores the offset in sectors.\nIf the feature is no longer needed or unused, you can burn the 0xFFF value to disable this feature in\nthe ROM bootloader.", + "id": "BOOTLOADER_RECOVERY_OFFSET", + "name": "BOOTLOADER_RECOVERY_OFFSET", + "range": null, + "title": "Recovery Bootloader Flash Offset", + "type": "hex" + }, + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_ANTI_ROLLBACK_ENABLE", + "help": "The secure version is the sequence number stored in the header of each bootloader.\n\nThe ROM Bootloader which runs the 2nd stage bootloader (PRIMARY or RECOVERY) checks that\nthe security version is greater or equal that recorded in the eFuse field.\nBootloaders that have a secure version in the image < secure version in efuse will not boot.\n\nThe security version is worth increasing if in previous versions there is\na significant vulnerability and their use is not acceptable.", + "id": "BOOTLOADER_SECURE_VERSION", + "name": "BOOTLOADER_SECURE_VERSION", + "range": null, + "title": "Secure version of bootloader", + "type": "int" + } + ], + "depends_on": "BOOTLOADER_RECOVERY_ENABLE", + "help": "This option prevents rollback to previous bootloader image with lower security version.", + "id": "BOOTLOADER_ANTI_ROLLBACK_ENABLE", + "name": "BOOTLOADER_ANTI_ROLLBACK_ENABLE", + "range": null, + "title": "Enable bootloader rollback support", + "type": "bool" + } + ], + "depends_on": "SOC_RECOVERY_BOOTLOADER_SUPPORTED", + "help": "The recovery bootloader feature is implemented in the ROM bootloader. It is required for safe OTA\nupdates of the bootloader. The feature is activated when the eFuse field\n(ESP_EFUSE_RECOVERY_BOOTLOADER_FLASH_SECTOR) is set, which defines the flash address of the\nrecovery bootloader. If activated and the primary bootloader fails to load, the ROM bootloader\nwill attempt to load the recovery bootloader from the address specified in eFuse.", + "id": "BOOTLOADER_RECOVERY_ENABLE", + "name": "BOOTLOADER_RECOVERY_ENABLE", + "range": null, + "title": "Enable Recovery Bootloader", + "type": "bool" + } + ], + "depends_on": null, + "id": "bootloader-config-recovery-bootloader-and-rollback-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.bootloader_rollback-1", + "title": "Recovery Bootloader and Rollback", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "BOOTLOADER_OFFSET_IN_FLASH", + "name": "BOOTLOADER_OFFSET_IN_FLASH", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_COMPILER_OPTIMIZATION_SIZE", + "name": "BOOTLOADER_COMPILER_OPTIMIZATION_SIZE", + "range": null, + "title": "Size (-Os with GCC, -Oz with Clang)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG", + "name": "BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG", + "range": null, + "title": "Debug (-Og)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_COMPILER_OPTIMIZATION_PERF", + "name": "BOOTLOADER_COMPILER_OPTIMIZATION_PERF", + "range": null, + "title": "Optimize for performance (-O2)", + "type": "bool" + } + ], + "depends_on": null, + "help": "This option sets compiler optimization level (gcc -O argument)\nfor the bootloader.\n\n- The default \"Size\" setting will add the -Os (-Oz with clang) 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\nNote that custom optimization levels may be unsupported.", + "id": "bootloader-config-bootloader-optimization-level-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.projbuild-18", + "name": "BOOTLOADER_COMPILER_OPTIMIZATION", + "title": "Bootloader optimization Level", + "type": "choice" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_VERSION_1", + "name": "BOOTLOADER_LOG_VERSION_1", + "range": null, + "title": "V1", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_VERSION_2", + "name": "BOOTLOADER_LOG_VERSION_2", + "range": null, + "title": "V2", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select the log version to be used by the ESP log component.\nThe app log version (CONFIG_LOG_VERSION) controls the version used in the bootloader,\npreventing the selection of different versions.\nFor description of V1 and V2 see CONFIG_LOG_VERSION.", + "id": "bootloader-config-log-log-version-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.log-3", + "name": "BOOTLOADER_LOG_VERSION", + "title": "Log version", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "This configuration sets the log version number based on the chosen log version.", + "id": "BOOTLOADER_LOG_VERSION", + "name": "BOOTLOADER_LOG_VERSION", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_NONE", + "name": "BOOTLOADER_LOG_LEVEL_NONE", + "range": null, + "title": "No output", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_ERROR", + "name": "BOOTLOADER_LOG_LEVEL_ERROR", + "range": null, + "title": "Error", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_WARN", + "name": "BOOTLOADER_LOG_LEVEL_WARN", + "range": null, + "title": "Warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_INFO", + "name": "BOOTLOADER_LOG_LEVEL_INFO", + "range": null, + "title": "Info", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_DEBUG", + "name": "BOOTLOADER_LOG_LEVEL_DEBUG", + "range": null, + "title": "Debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_VERBOSE", + "name": "BOOTLOADER_LOG_LEVEL_VERBOSE", + "range": null, + "title": "Verbose", + "type": "bool" + } + ], + "depends_on": null, + "help": "Specify how much output to see in bootloader logs.", + "id": "bootloader-config-log-bootloader-log-verbosity-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.log-24", + "name": "BOOTLOADER_LOG_LEVEL", + "title": "Bootloader log verbosity", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "BOOTLOADER_LOG_LEVEL", + "name": "BOOTLOADER_LOG_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Enable ANSI terminal color codes. Logs (info, errors, warnings) will contain color codes.\nIn order to view these, your terminal program must support ANSI color codes.", + "id": "BOOTLOADER_LOG_COLORS", + "name": "BOOTLOADER_LOG_COLORS", + "range": null, + "title": "Color", + "type": "bool" + }, + { + "children": [], + "depends_on": "BOOTLOADER_LOG_VERSION_2", + "help": "Enables support for color codes in the esp_log() function. If CONFIG_LOG_COLORS is enabled, this option\nis always active. If CONFIG_LOG_COLORS is disabled, this option allows you to still handle color codes\nin specific files by defining ESP_LOG_COLOR_DISABLED as 0 before including esp_log.h.\n\nNote that enabling this option may slightly increase RAM/FLASH usage due to additional color handling\nfunctionality. It provides flexibility to manage color output even when CONFIG_LOG_COLORS is turned off.", + "id": "BOOTLOADER_LOG_COLORS_SUPPORT", + "name": "BOOTLOADER_LOG_COLORS_SUPPORT", + "range": null, + "title": "Allow enabling color output at run time", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_LOG_VERSION_2 && ", + "help": null, + "id": "BOOTLOADER_LOG_TIMESTAMP_SOURCE_NONE", + "name": "BOOTLOADER_LOG_TIMESTAMP_SOURCE_NONE", + "range": null, + "title": "None", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS", + "name": "BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS", + "range": null, + "title": "Milliseconds Since Boot", + "type": "bool" + } + ], + "depends_on": null, + "help": "Choose what sort of timestamp is displayed in the log output:\n\n- \"None\" - The log will only contain the actual log messages themselves\n without any time-related information. Avoiding timestamps can help conserve\n processing power and memory. It might useful when you\n perform log analysis or debugging, sometimes it's more straightforward\n to work with logs that lack timestamps, especially if the time of occurrence\n is not critical for understanding the issues.\n \"I log_test: info message\"\n\n- \"Milliseconds since boot\" is calculated from the RTOS tick count multiplied\n by the tick period. This time will reset after a software reboot.\n \"I (112500) log_test: info message\"", + "id": "bootloader-config-log-format-timestamp-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.log.format-23", + "name": "BOOTLOADER_LOG_TIMESTAMP_SOURCE", + "title": "Timestamp", + "type": "choice" + }, + { + "children": [], + "depends_on": "BOOTLOADER_LOG_VERSION_2", + "help": "Enables support for timestamp in the esp_log() function.\nIf CONFIG_LOG_TIMESTAMP_SOURCE_NONE, this option allows you to still handle timestamp\nin specific files by defining ESP_LOG_TIMESTAMP_DISABLED as 0 before including esp_log.h.\n\nNote that enabling this option may slightly increase RAM/FLASH usage due to additional timestamp handling\nfunctionality. It provides flexibility to manage timestamp output even when\nCONFIG_LOG_TIMESTAMP_SOURCE_NONE.", + "id": "BOOTLOADER_LOG_TIMESTAMP_SUPPORT", + "name": "BOOTLOADER_LOG_TIMESTAMP_SUPPORT", + "range": null, + "title": "Allow enabling timestamp output at run time", + "type": "bool" + } + ], + "depends_on": null, + "id": "bootloader-config-log-format-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.log.format-1", + "title": "Format", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "BOOTLOADER_LOG_MODE_TEXT_EN", + "name": "BOOTLOADER_LOG_MODE_TEXT_EN", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "BOOTLOADER_LOG_MODE_BINARY_EN", + "name": "BOOTLOADER_LOG_MODE_BINARY_EN", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Enables text-based logging, where log messages are stored in a human-readable format.\nThis mode is useful for development and debugging, as it allows logs to be easily\nread and interpreted without additional processing.", + "id": "BOOTLOADER_LOG_MODE_TEXT", + "name": "BOOTLOADER_LOG_MODE_TEXT", + "range": null, + "title": "Text Log Mode", + "type": "bool" + }, + { + "children": [], + "depends_on": "BOOTLOADER_LOG_VERSION_2 && ", + "help": "Enables binary logging with host-side format string expansion. In this mode, the\nformat argument of ESP_LOGx, ESP_EARLY_LOG, and ESP_DRAM_LOG macros is stored in a\nNOLOAD section, not included in the final binary file. This reduces flash usage by\napproximately 10% - 35%. The esp_log() function uses the binary log handler to output\nmessages. Instead of sending the full log string, the chip transmits only the\naddresses of these strings (if present in the ELF file). If the format string\ncannot be found in the ELF file, the chip sends the entire string. The host-side\nmonitor tool, which has access to the ELF file, reconstructs the log message using\nthe format string.\nThis reduces firmware size by eliminating format strings from\nflash memory and removing the usage of printf-like functions, potentially freeing up\na few kilobytes of space. To further reduce firmware size, wrap string data with ESP_LOG_ATTR_STR.", + "id": "BOOTLOADER_LOG_MODE_BINARY", + "name": "BOOTLOADER_LOG_MODE_BINARY", + "range": null, + "title": "Binary Log Mode", + "type": "bool" + } + ], + "depends_on": null, + "help": null, + "id": "bootloader-config-log-settings-log-mode-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.log.settings-9", + "name": "BOOTLOADER_LOG_MODE", + "title": "Log Mode", + "type": "choice" + } + ], + "depends_on": null, + "id": "bootloader-config-log-settings-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.log.settings-1", + "title": "Settings", + "type": "menu" + } + ], + "depends_on": null, + "id": "bootloader-config-log-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.log-1", + "title": "Log", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": "The CPU clock frequency to be at least raised to in 2nd bootloader. Invisible for users.", + "id": "BOOTLOADER_CPU_CLK_FREQ_MHZ", + "name": "BOOTLOADER_CPU_CLK_FREQ_MHZ", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "IDF_TARGET_ESP32 && (ESPTOOLPY_FLASHMODE_QIO || ESPTOOLPY_FLASHMODE_QOUT)", + "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.", + "id": "BOOTLOADER_SPI_CUSTOM_WP_PIN", + "name": "BOOTLOADER_SPI_CUSTOM_WP_PIN", + "range": null, + "title": "Use custom SPI Flash WP Pin when flash pins set in eFuse (read help)", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32 && (ESPTOOLPY_FLASHMODE_QIO || ESPTOOLPY_FLASHMODE_QOUT)", + "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.", + "id": "BOOTLOADER_SPI_WP_PIN", + "name": "BOOTLOADER_SPI_WP_PIN", + "range": null, + "title": "Custom SPI Flash WP Pin", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "This will force 2nd bootloader to be loaded by DOUT mode, and will restore Dummy Cycle setting by\nresetting the Flash", + "id": "BOOTLOADER_FLASH_DC_AWARE", + "name": "BOOTLOADER_FLASH_DC_AWARE", + "range": null, + "title": "Allow app adjust Dummy Cycle bits in SPI Flash for higher frequency (READ HELP FIRST)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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\ncomment \"Features below require specific hardware (READ DOCS FIRST!)\"", + "id": "BOOTLOADER_FLASH_XMC_SUPPORT", + "name": "BOOTLOADER_FLASH_XMC_SUPPORT", + "range": null, + "title": "Enable the support for flash chips of XMC (READ DOCS FIRST)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This is a helper config for 32bits address flash. Invisible for users.", + "id": "BOOTLOADER_FLASH_32BIT_ADDR", + "name": "BOOTLOADER_FLASH_32BIT_ADDR", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This is a helper config for 32bits address flash. Invisible for users.", + "id": "BOOTLOADER_FLASH_NEEDS_32BIT_FEAT", + "name": "BOOTLOADER_FLASH_NEEDS_32BIT_FEAT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This is a helper config for 32bits address quad flash. Invisible for users.", + "id": "BOOTLOADER_FLASH_NEEDS_32BIT_ADDR_QUAD_FLASH", + "name": "BOOTLOADER_FLASH_NEEDS_32BIT_ADDR_QUAD_FLASH", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "BOOTLOADER_FLASH_NEEDS_32BIT_ADDR_QUAD_FLASH && IDF_EXPERIMENTAL_FEATURES", + "help": "Enabling this option allows the CPU to access 32-bit-address flash beyond 16M range.\n1. This option only valid for 4-line flash. Octal flash doesn't need this.\n2. This option is experimental, which means it can\u2019t use on all flash chips stable, for more\ninformation, please contact Espressif Business support.", + "id": "BOOTLOADER_CACHE_32BIT_ADDR_QUAD_FLASH", + "name": "BOOTLOADER_CACHE_32BIT_ADDR_QUAD_FLASH", + "range": null, + "title": "Enable cache access to 32-bit-address (over 16MB) range of SPI Flash (READ DOCS FIRST)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "BOOTLOADER_CACHE_32BIT_ADDR_OCTAL_FLASH", + "name": "BOOTLOADER_CACHE_32BIT_ADDR_OCTAL_FLASH", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "bootloader-config-serial-flash-configurations-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.projbuild-52", + "title": "Serial Flash Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "!ESPTOOLPY_FLASHFREQ_80M && ", + "help": null, + "id": "BOOTLOADER_VDDSDIO_BOOST_1_8V", + "name": "BOOTLOADER_VDDSDIO_BOOST_1_8V", + "range": null, + "title": "1.8V", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_VDDSDIO_BOOST_1_9V", + "name": "BOOTLOADER_VDDSDIO_BOOST_1_9V", + "range": null, + "title": "1.9V", + "type": "bool" + } + ], + "depends_on": "SOC_CONFIGURABLE_VDDSDIO_SUPPORTED", + "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.", + "id": "bootloader-config-vddsdio-ldo-voltage-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.projbuild-135", + "name": "BOOTLOADER_VDDSDIO_BOOST", + "title": "VDDSDIO LDO voltage", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_FACTORY_RESET", + "help": "The selected GPIO will be configured as an input with internal pull-up enabled. To trigger a factory\nreset, this GPIO must be held high or low (as configured) on startup.\n\nNote that on some SoCs not all pins have an internal pull-up and certain pins are already\nused by ROM bootloader as bootstrapping. Refer to the technical reference manual for further\ndetails on the selected SoC.", + "id": "BOOTLOADER_NUM_PIN_FACTORY_RESET", + "name": "BOOTLOADER_NUM_PIN_FACTORY_RESET", + "range": null, + "title": "Number of the GPIO input for factory reset", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_FACTORY_RESET_PIN_LOW", + "name": "BOOTLOADER_FACTORY_RESET_PIN_LOW", + "range": null, + "title": "Reset on GPIO low", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_FACTORY_RESET_PIN_HIGH", + "name": "BOOTLOADER_FACTORY_RESET_PIN_HIGH", + "range": null, + "title": "Reset on GPIO high", + "type": "bool" + } + ], + "depends_on": "BOOTLOADER_FACTORY_RESET", + "help": "Pin level for factory reset, can be triggered on low or high.", + "id": "bootloader-config-gpio-triggers-factory-reset-factory-reset-gpio-level-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.projbuild-187", + "name": "BOOTLOADER_FACTORY_RESET_PIN_LEVEL", + "title": "Factory reset GPIO level", + "type": "choice" + }, + { + "children": [], + "depends_on": "BOOTLOADER_FACTORY_RESET", + "help": "The device will boot from \"factory\" partition (or OTA slot 0 if no factory partition is present) after a\nfactory reset.", + "id": "BOOTLOADER_OTA_DATA_ERASE", + "name": "BOOTLOADER_OTA_DATA_ERASE", + "range": null, + "title": "Clear OTA data on factory reset (select factory partition)", + "type": "bool" + }, + { + "children": [], + "depends_on": "BOOTLOADER_FACTORY_RESET", + "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.", + "id": "BOOTLOADER_DATA_FACTORY_RESET", + "name": "BOOTLOADER_DATA_FACTORY_RESET", + "range": null, + "title": "Comma-separated names of partitions to clear on factory reset", + "type": "string" + } + ], + "depends_on": null, + "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.", + "id": "BOOTLOADER_FACTORY_RESET", + "name": "BOOTLOADER_FACTORY_RESET", + "range": null, + "title": "GPIO triggers factory reset", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_APP_TEST", + "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]).\n\nNote that on some SoCs not all pins have an internal pull-up and certain pins are already\nused by ROM bootloader as bootstrapping. Refer to the technical reference manual for further\ndetails on the selected SoC.", + "id": "BOOTLOADER_NUM_PIN_APP_TEST", + "name": "BOOTLOADER_NUM_PIN_APP_TEST", + "range": null, + "title": "Number of the GPIO input to boot TEST partition", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_APP_TEST_PIN_LOW", + "name": "BOOTLOADER_APP_TEST_PIN_LOW", + "range": null, + "title": "Enter test app on GPIO low", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_APP_TEST_PIN_HIGH", + "name": "BOOTLOADER_APP_TEST_PIN_HIGH", + "range": null, + "title": "Enter test app on GPIO high", + "type": "bool" + } + ], + "depends_on": "BOOTLOADER_APP_TEST", + "help": "Pin level for app test, can be triggered on low or high.", + "id": "bootloader-config-gpio-triggers-boot-from-test-app-partition-app-test-gpio-level-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.projbuild-252", + "name": "BOOTLOADER_APP_TEST_PIN_LEVEL", + "title": "App test GPIO level", + "type": "choice" + } + ], + "depends_on": "!BOOTLOADER_APP_ANTI_ROLLBACK", + "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.", + "id": "BOOTLOADER_APP_TEST", + "name": "BOOTLOADER_APP_TEST", + "range": null, + "title": "GPIO triggers boot from test app partition", + "type": "bool" + }, + { + "children": [], + "depends_on": "BOOTLOADER_FACTORY_RESET || BOOTLOADER_APP_TEST", + "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.", + "id": "BOOTLOADER_HOLD_TIME_GPIO", + "name": "BOOTLOADER_HOLD_TIME_GPIO", + "range": null, + "title": "Hold time of GPIO for reset/test mode (seconds)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "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.\nNOTE: Disabling this config on some targets (ESP32-C6, ESP32-H2, ESP32-C5) would not generate\nan exception when reading from or writing to 0x0.", + "id": "BOOTLOADER_REGION_PROTECTION_ENABLE", + "name": "BOOTLOADER_REGION_PROTECTION_ENABLE", + "range": null, + "title": "Enable protection for unmapped memory regions", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_WDT_ENABLE", + "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 wdt_hal_feed() for resetting counter of RTC_WDT.\nFor esp32/s2 you can also use rtc_wdt_feed().\n\nUse function wdt_hal_disable() for disabling RTC_WDT.\nFor esp32/s2 you can also use rtc_wdt_disable().", + "id": "BOOTLOADER_WDT_DISABLE_IN_USER_CODE", + "name": "BOOTLOADER_WDT_DISABLE_IN_USER_CODE", + "range": null, + "title": "Allows RTC watchdog disable in user code", + "type": "bool" + }, + { + "children": [], + "depends_on": "BOOTLOADER_WDT_ENABLE", + "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.", + "id": "BOOTLOADER_WDT_TIME_MS", + "name": "BOOTLOADER_WDT_TIME_MS", + "range": [ + 0, + 120000 + ], + "title": "Timeout for RTC watchdog (ms)", + "type": "int" + } + ], + "depends_on": null, + "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).", + "id": "BOOTLOADER_WDT_ENABLE", + "name": "BOOTLOADER_WDT_ENABLE", + "range": null, + "title": "Use RTC watchdog in start code", + "type": "bool" + }, + { + "children": [], + "depends_on": "(SECURE_BOOT && SECURE_BOOT_INSECURE) || !SECURE_BOOT", + "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.", + "id": "BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP", + "name": "BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP", + "range": null, + "title": "Skip image validation when exiting deep sleep", + "type": "bool" + }, + { + "children": [], + "depends_on": "!SECURE_SIGNED_ON_BOOT", + "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.", + "id": "BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON", + "name": "BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON", + "range": null, + "title": "Skip image validation from power on reset (READ HELP FIRST)", + "type": "bool" + }, + { + "children": [], + "depends_on": "!SECURE_SIGNED_ON_BOOT", + "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.", + "id": "BOOTLOADER_SKIP_VALIDATE_ALWAYS", + "name": "BOOTLOADER_SKIP_VALIDATE_ALWAYS", + "range": null, + "title": "Skip image validation always (READ HELP FIRST)", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_RTC_FAST_MEM_SUPPORTED", + "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.", + "id": "BOOTLOADER_RESERVE_RTC_SIZE", + "name": "BOOTLOADER_RESERVE_RTC_SIZE", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_CUSTOM_RESERVE_RTC", + "help": "This option allows the customer to use the legacy bootloader behavior when the\nRTC FAST memory CRC calculation takes place. When this option is enabled, the\nallocated user custom data will be taken into account in the CRC calculation.\nThis means that any change to the custom data would need a CRC update to prevent\nthe bootloader from marking this data as corrupted.\nIf this option is disabled, the custom data will not be taken into account when\ncalculating the RTC FAST memory CRC. The user custom data can be changed freely,\nwithout the need to update the CRC.\nTHIS OPTION MUST BE THE SAME FOR BOTH THE BOOTLOADER AND THE APPLICATION BUILDS.", + "id": "BOOTLOADER_CUSTOM_RESERVE_RTC_IN_CRC", + "name": "BOOTLOADER_CUSTOM_RESERVE_RTC_IN_CRC", + "range": null, + "title": "Include custom memory in the CRC calculation", + "type": "bool" + }, + { + "children": [], + "depends_on": "BOOTLOADER_CUSTOM_RESERVE_RTC", + "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.", + "id": "BOOTLOADER_CUSTOM_RESERVE_RTC_SIZE", + "name": "BOOTLOADER_CUSTOM_RESERVE_RTC_SIZE", + "range": null, + "title": "Size in bytes for custom purposes", + "type": "hex" + } + ], + "depends_on": "SOC_RTC_FAST_MEM_SUPPORTED", + "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 bootloader must be compiled with the same option).\nThe RTC FAST memory has access only through PRO_CPU.", + "id": "BOOTLOADER_CUSTOM_RESERVE_RTC", + "name": "BOOTLOADER_CUSTOM_RESERVE_RTC", + "range": null, + "title": "Reserve RTC FAST memory for custom purposes", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_RTC_FAST_MEM_SUPPORTED", + "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\"", + "id": "BOOTLOADER_RESERVE_RTC_MEM", + "name": "BOOTLOADER_RESERVE_RTC_MEM", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "bootloader-config-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.projbuild-1", + "title": "Bootloader config", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SECURE_BOOT || SECURE_SIGNED_ON_BOOT_NO_SECURE_BOOT", + "help": null, + "id": "SECURE_SIGNED_ON_BOOT", + "name": "SECURE_SIGNED_ON_BOOT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT || SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT", + "help": null, + "id": "SECURE_SIGNED_ON_UPDATE", + "name": "SECURE_SIGNED_ON_UPDATE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_SIGNED_ON_BOOT || SECURE_SIGNED_ON_UPDATE", + "help": null, + "id": "SECURE_SIGNED_APPS", + "name": "SECURE_SIGNED_APPS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "(IDF_TARGET_ESP32 && ESP32_REV_MIN_FULL >= 300) || SOC_SECURE_BOOT_V2_RSA", + "help": null, + "id": "SECURE_BOOT_V2_RSA_SUPPORTED", + "name": "SECURE_BOOT_V2_RSA_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_SECURE_BOOT_V2_ECC", + "help": null, + "id": "SECURE_BOOT_V2_ECC_SUPPORTED", + "name": "SECURE_BOOT_V2_ECC_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_SECURE_BOOT_V1", + "help": null, + "id": "SECURE_BOOT_V1_SUPPORTED", + "name": "SECURE_BOOT_V1_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP32_REV_MIN_FULL >= 300", + "help": null, + "id": "SECURE_BOOT_V2_PREFERRED", + "name": "SECURE_BOOT_V2_PREFERRED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SECURE_BOOT_V2_ECDSA_ENABLED", + "name": "SECURE_BOOT_V2_ECDSA_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SECURE_BOOT_V2_RSA_ENABLED", + "name": "SECURE_BOOT_V2_RSA_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SECURE_BOOT_FLASH_ENC_KEYS_BURN_TOGETHER", + "name": "SECURE_BOOT_FLASH_ENC_KEYS_BURN_TOGETHER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!SECURE_BOOT", + "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.", + "id": "SECURE_SIGNED_APPS_NO_SECURE_BOOT", + "name": "SECURE_SIGNED_APPS_NO_SECURE_BOOT", + "range": null, + "title": "Require signed app images", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "SECURE_BOOT_V1_SUPPORTED && (SECURE_SIGNED_APPS_NO_SECURE_BOOT || SECURE_BOOT_V1_ENABLED) && ", + "help": "Embeds the ECDSA public key in the bootloader and signs the application with an ECDSA key.\nRefer to the documentation before enabling.", + "id": "SECURE_SIGNED_APPS_ECDSA_SCHEME", + "name": "SECURE_SIGNED_APPS_ECDSA_SCHEME", + "range": null, + "title": "ECDSA", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT_V2_RSA_SUPPORTED && (SECURE_SIGNED_APPS_NO_SECURE_BOOT || SECURE_BOOT_V2_ENABLED) && !(IDF_TARGET_ESP32C5 && ESP32C5_REV_MIN_FULL < 1) && ", + "help": "Appends the RSA-3072 based Signature block to the application.\nRefer to before enabling.", + "id": "SECURE_SIGNED_APPS_RSA_SCHEME", + "name": "SECURE_SIGNED_APPS_RSA_SCHEME", + "range": null, + "title": "RSA", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT_V2_ECC_SUPPORTED && (SECURE_SIGNED_APPS_NO_SECURE_BOOT || SECURE_BOOT_V2_ENABLED) && ", + "help": "For Secure boot V2 (e.g., ESP32-C2 SoC), appends ECDSA based signature block to the application.\nRefer to documentation before enabling.", + "id": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME", + "name": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME", + "range": null, + "title": "ECDSA (V2)", + "type": "bool" + } + ], + "depends_on": "SECURE_BOOT || SECURE_SIGNED_APPS_NO_SECURE_BOOT", + "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.", + "id": "security-features-app-signing-scheme-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.projbuild-515", + "name": "SECURE_SIGNED_APPS_SCHEME", + "title": "App Signing Scheme", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME && ", + "help": null, + "id": "SECURE_BOOT_ECDSA_KEY_LEN_192_BITS", + "name": "SECURE_BOOT_ECDSA_KEY_LEN_192_BITS", + "range": null, + "title": "Using ECC curve NISTP192", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME && ", + "help": null, + "id": "SECURE_BOOT_ECDSA_KEY_LEN_256_BITS", + "name": "SECURE_BOOT_ECDSA_KEY_LEN_256_BITS", + "range": null, + "title": "Using ECC curve NISTP256 (Recommended)", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME && SOC_ECDSA_SUPPORT_CURVE_P384 && ", + "help": null, + "id": "SECURE_BOOT_ECDSA_KEY_LEN_384_BITS", + "name": "SECURE_BOOT_ECDSA_KEY_LEN_384_BITS", + "range": null, + "title": "Using ECC curve NISTP384 (Recommended)", + "type": "bool" + } + ], + "depends_on": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME", + "help": "Select the ECDSA key size. Three key sizes are supported depending upon on the target:\n\n- 192 bit key using NISTP192 curve\n- 256 bit key using NISTP256 curve (Recommended)\n- 384 bit key using NISTP384 curve (Recommended)\n\nThe advantage of using 384 and 256 bit keys 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.", + "id": "security-features-ecdsa-key-size-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.projbuild-558", + "name": "SECURE_BOOT_ECDSA_KEY_LEN_SIZE", + "title": "ECDSA key size", + "type": "choice" + }, + { + "children": [], + "depends_on": "SECURE_SIGNED_APPS_NO_SECURE_BOOT && SECURE_SIGNED_APPS_ECDSA_SCHEME", + "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.", + "id": "SECURE_SIGNED_ON_BOOT_NO_SECURE_BOOT", + "name": "SECURE_SIGNED_ON_BOOT_NO_SECURE_BOOT", + "range": null, + "title": "Bootloader verifies app signatures", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_SIGNED_APPS_NO_SECURE_BOOT", + "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.", + "id": "SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT", + "name": "SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT", + "range": null, + "title": "Verify app signature on update", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "SECURE_BOOT_V1_SUPPORTED && ", + "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.", + "id": "SECURE_BOOT_V1_ENABLED", + "name": "SECURE_BOOT_V1_ENABLED", + "range": null, + "title": "Enable Secure Boot version 1", + "type": "bool" + }, + { + "children": [], + "depends_on": "(SECURE_BOOT_V2_RSA_SUPPORTED || SECURE_BOOT_V2_ECC_SUPPORTED) && ", + "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.", + "id": "SECURE_BOOT_V2_ENABLED", + "name": "SECURE_BOOT_V2_ENABLED", + "range": null, + "title": "Enable Secure Boot version 2", + "type": "bool" + } + ], + "depends_on": "SECURE_BOOT", + "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.", + "id": "security-features-enable-hardware-secure-boot-in-bootloader-read-docs-first--select-secure-boot-version-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.projbuild-628", + "name": "SECURE_BOOT_VERSION", + "title": "Select secure boot version", + "type": "choice" + } + ], + "depends_on": "SOC_SECURE_BOOT_SUPPORTED && !(IDF_TARGET_ESP32C3 && ESP32C3_REV_MIN_FULL < 3)", + "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.", + "id": "SECURE_BOOT", + "name": "SECURE_BOOT", + "range": null, + "title": "Enable hardware Secure Boot in bootloader (READ DOCS FIRST)", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "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.", + "id": "SECURE_BOOTLOADER_ONE_TIME_FLASH", + "name": "SECURE_BOOTLOADER_ONE_TIME_FLASH", + "range": null, + "title": "One-time flash", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "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.", + "id": "SECURE_BOOTLOADER_REFLASHABLE", + "name": "SECURE_BOOTLOADER_REFLASHABLE", + "range": null, + "title": "Reflashable", + "type": "bool" + } + ], + "depends_on": "SECURE_BOOT_V1_ENABLED", + "help": null, + "id": "security-features-secure-bootloader-mode-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.projbuild-661", + "name": "SECURE_BOOTLOADER_MODE", + "title": "Secure bootloader mode", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "SECURE_BOOT_BUILD_SIGNED_BINARIES", + "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 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.", + "id": "SECURE_BOOT_SIGNING_KEY", + "name": "SECURE_BOOT_SIGNING_KEY", + "range": null, + "title": "Secure boot private signing key", + "type": "string" + } + ], + "depends_on": "SECURE_SIGNED_APPS", + "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.\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.)", + "id": "SECURE_BOOT_BUILD_SIGNED_BINARIES", + "name": "SECURE_BOOT_BUILD_SIGNED_BINARIES", + "range": null, + "title": "Sign binaries during build", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_SIGNED_APPS && SECURE_SIGNED_APPS_ECDSA_SCHEME && !SECURE_BOOT_BUILD_SIGNED_BINARIES", + "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\nextract-public-key command.\n\nRefer to the Secure Boot section of the ESP-IDF Programmer's Guide for this version before enabling.", + "id": "SECURE_BOOT_VERIFICATION_KEY", + "name": "SECURE_BOOT_VERIFICATION_KEY", + "range": null, + "title": "Secure boot public signature verification key", + "type": "string" + }, + { + "children": [], + "depends_on": "SECURE_BOOT && SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY", + "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.", + "id": "SECURE_BOOT_ENABLE_AGGRESSIVE_KEY_REVOKE", + "name": "SECURE_BOOT_ENABLE_AGGRESSIVE_KEY_REVOKE", + "range": null, + "title": "Enable Aggressive key revoke strategy", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT_V2_ENABLED", + "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 secure boot public key digest,\ncausing an immediate denial of service and possibly allowing an additional fault injection attack to\nbypass the signature protection.\n\nThe option must be set when you need to program any read-protected key type into the efuses,\ne.g., HMAC, ECDSA etc. after secure boot has already been enabled on the device.\nPlease refer to secure boot V2 documentation guide for more details.\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 utility.\nHowever, efuse can be read/written from the application\n\nPlease refer to the Secure Boot V2 documentation guide for more information.", + "id": "SECURE_BOOT_V2_ALLOW_EFUSE_RD_DIS", + "name": "SECURE_BOOT_V2_ALLOW_EFUSE_RD_DIS", + "range": null, + "title": "Do not disable the ability to further read protect eFuses", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT_V2_ENABLED", + "help": "When Secure Boot V2 is enabled, by default the bootloader is not flashed along with other artifacts\nlike the application and the partition table images, i.e. bootloader has to be separately flashed\nusing the command `idf.py bootloader flash`, whereas, the application and partition table can be flashed\nusing the command `idf.py flash` itself.\nEnabling this option allows flashing the bootloader along with the other artifacts\nby invocation of the command `idf.py flash`.\n\nIf this option is enabled make sure that even the bootloader is signed using the correct secure boot key,\notherwise the bootloader signature verification would fail, as hash of the public key which is present in\nthe bootloader signature would not match with the digest stored into the efuses\nand thus the device will not be able to boot up.", + "id": "SECURE_BOOT_FLASH_BOOTLOADER_DEFAULT", + "name": "SECURE_BOOT_FLASH_BOOTLOADER_DEFAULT", + "range": null, + "title": "Flash bootloader along with other artifacts when using the default flash command", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SECURE_BOOTLOADER_KEY_ENCODING_256BIT", + "name": "SECURE_BOOTLOADER_KEY_ENCODING_256BIT", + "range": null, + "title": "No encoding (256 bit key)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SECURE_BOOTLOADER_KEY_ENCODING_192BIT", + "name": "SECURE_BOOTLOADER_KEY_ENCODING_192BIT", + "range": null, + "title": "3/4 encoding (192 bit key)", + "type": "bool" + } + ], + "depends_on": "SECURE_BOOTLOADER_REFLASHABLE", + "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.\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.", + "id": "security-features-hardware-key-encoding-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.projbuild-794", + "name": "SECURE_BOOTLOADER_KEY_ENCODING", + "title": "Hardware Key Encoding", + "type": "choice" + }, + { + "children": [], + "depends_on": "SECURE_BOOT", + "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.", + "id": "SECURE_BOOT_INSECURE", + "name": "SECURE_BOOT_INSECURE", + "range": null, + "title": "Allow potentially insecure options", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Use a key that is stored in the eFuses key blocks.", + "id": "SECURE_FLASH_ENCRYPTION_KEY_SOURCE_EFUSES", + "name": "SECURE_FLASH_ENCRYPTION_KEY_SOURCE_EFUSES", + "range": null, + "title": "eFuse Key Block", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_KEY_MANAGER_SUPPORTED && SOC_KEY_MANAGER_FE_KEY_DEPLOY && !(IDF_TARGET_ESP32P4 && ESP32P4_SELECTS_REV_LESS_V3) && ", + "help": "Use a key that is deployed using the Key Manager", + "id": "SECURE_FLASH_ENCRYPTION_KEY_SOURCE_KEY_MGR", + "name": "SECURE_FLASH_ENCRYPTION_KEY_SOURCE_KEY_MGR", + "range": null, + "title": "Key Manager", + "type": "bool" + } + ], + "depends_on": "SECURE_FLASH_ENC_ENABLED", + "help": "Specify the key source for the Flash Encryption Key", + "id": "security-features-enable-flash-encryption-on-boot-read-docs-first--flash-encryption-key-source-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.projbuild-842", + "name": "SECURE_FLASH_ENCRYPTION_KEY_SOURCE", + "title": "Flash Encryption Key Source", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_FLASH_ENCRYPTION_XTS_AES_128_DERIVED && ", + "help": null, + "id": "SECURE_FLASH_ENCRYPTION_AES128_DERIVED", + "name": "SECURE_FLASH_ENCRYPTION_AES128_DERIVED", + "range": null, + "title": "AES-128 key derived from 128 bits (SHA256(128 bits))", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_FLASH_ENCRYPTION_XTS_AES_128 && ((SECURE_FLASH_ENCRYPTION_KEY_SOURCE_EFUSES && SOC_EFUSE_XTS_AES_KEY_128) || (SECURE_FLASH_ENCRYPTION_KEY_SOURCE_KEY_MGR && SOC_KEY_MANAGER_FE_KEY_DEPLOY_XTS_AES_128)) && !(IDF_TARGET_ESP32C2 && SECURE_BOOT) && ", + "help": null, + "id": "SECURE_FLASH_ENCRYPTION_AES128", + "name": "SECURE_FLASH_ENCRYPTION_AES128", + "range": null, + "title": "AES-128 (256-bit key)", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_FLASH_ENCRYPTION_XTS_AES_256 && ((SECURE_FLASH_ENCRYPTION_KEY_SOURCE_EFUSES && SOC_EFUSE_XTS_AES_KEY_256) || (SECURE_FLASH_ENCRYPTION_KEY_SOURCE_KEY_MGR && SOC_KEY_MANAGER_FE_KEY_DEPLOY_XTS_AES_256)) && ", + "help": null, + "id": "SECURE_FLASH_ENCRYPTION_AES256", + "name": "SECURE_FLASH_ENCRYPTION_AES256", + "range": null, + "title": "AES-256 (512-bit key)", + "type": "bool" + } + ], + "depends_on": "SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS && SECURE_FLASH_ENC_ENABLED", + "help": "Size of generated XTS-AES 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.", + "id": "security-features-enable-flash-encryption-on-boot-read-docs-first--size-of-generated-xts-aes-key-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.projbuild-862", + "name": "SECURE_FLASH_ENCRYPTION_KEYSIZE", + "title": "Size of generated XTS-AES key", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", + "name": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", + "range": null, + "title": "Development (NOT SECURE)", + "type": "bool" + }, + { + "children": [], + "depends_on": "(!EFUSE_VIRTUAL || IDF_CI_BUILD) && ", + "help": null, + "id": "SECURE_FLASH_ENCRYPTION_MODE_RELEASE", + "name": "SECURE_FLASH_ENCRYPTION_MODE_RELEASE", + "range": null, + "title": "Release", + "type": "bool" + } + ], + "depends_on": "SECURE_FLASH_ENC_ENABLED", + "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.", + "id": "security-features-enable-flash-encryption-on-boot-read-docs-first--enable-usage-mode-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.projbuild-895", + "name": "SECURE_FLASH_ENCRYPTION_MODE", + "title": "Enable usage mode", + "type": "choice" + } + ], + "depends_on": null, + "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.", + "id": "SECURE_FLASH_ENC_ENABLED", + "name": "SECURE_FLASH_ENC_ENABLED", + "range": null, + "title": "Enable flash encryption on boot (READ DOCS FIRST)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SECURE_FLASH_HAS_WRITE_PROTECTION_CACHE", + "name": "SECURE_FLASH_HAS_WRITE_PROTECTION_CACHE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "(SECURE_BOOT_INSECURE || SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT) && IDF_TARGET_ESP32", + "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.", + "id": "SECURE_BOOT_ALLOW_ROM_BASIC", + "name": "SECURE_BOOT_ALLOW_ROM_BASIC", + "range": null, + "title": "Leave ROM BASIC Interpreter available on reset", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT_INSECURE || SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", + "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.", + "id": "SECURE_BOOT_ALLOW_JTAG", + "name": "SECURE_BOOT_ALLOW_JTAG", + "range": null, + "title": "Allow JTAG Debugging", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT_INSECURE || SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT", + "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.", + "id": "SECURE_BOOT_ALLOW_SHORT_APP_PARTITION", + "name": "SECURE_BOOT_ALLOW_SHORT_APP_PARTITION", + "range": null, + "title": "Allow app partition length not 64KB aligned", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT_INSECURE && SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS", + "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\nNote that if you plan to enable secure boot during the first boot up, the bootloader will intentionally\nrevoke the unused digest slots while enabling secure boot, even if the above config is enabled because\nkeeping the unused key slots un-revoked would a security hazard.\nIn case for any development workflow if you need to avoid this revocation, you should enable\nsecure boot externally (host based mechanism) rather than enabling it during the boot up,\nso that the bootloader would not need to enable secure boot and thus you could avoid its revocation\nstrategy.", + "id": "SECURE_BOOT_ALLOW_UNUSED_DIGEST_SLOTS", + "name": "SECURE_BOOT_ALLOW_UNUSED_DIGEST_SLOTS", + "range": null, + "title": "Leave unused digest slots available (not revoke)", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_ECDSA_SUPPORT_CURVE_P384 && SOC_FLASH_ENCRYPTION_XTS_AES_SUPPORT_PSEUDO_ROUND", + "help": "If not set (default, recommended), on the first boot when Secure Boot is enabled for\ntargets that support Secure Boot using ECDSA-P384, the bootloader will burn the write-protection bit of\nof SECURE_BOOT_SHA384_EN that could be shared by multiple other efuse bits like\nSECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH / XTS_DPA_PSEUDO_LEVEL.\n\nOnce this efuse bit is write-protected you cannot update the values of the shared efuses, for example,\nthe security strength value of XTS_DPA_PSEUDO_LEVEL or setting ECC_FORCE_CONST_TIME.\n\nList of eFuses with the same write protection bit:\n\nESP32-C5: XTS_DPA_PSEUDO_LEVEL and ECC_FORCE_CONST_TIME", + "id": "SECURE_BOOT_SKIP_WRITE_PROTECTION_SCA", + "name": "SECURE_BOOT_SKIP_WRITE_PROTECTION_SCA", + "range": null, + "title": "Skip write-protection of SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", + "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.", + "id": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_ENC", + "name": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_ENC", + "range": null, + "title": "Leave UART bootloader encryption enabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT && IDF_TARGET_ESP32", + "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.", + "id": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_DEC", + "name": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_DEC", + "range": null, + "title": "Leave UART bootloader decryption enabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT && (IDF_TARGET_ESP32 || SOC_EFUSE_DIS_DOWNLOAD_ICACHE || SOC_EFUSE_DIS_DOWNLOAD_DCACHE)", + "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.", + "id": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_CACHE", + "name": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_CACHE", + "range": null, + "title": "Leave UART bootloader flash cache enabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", + "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.", + "id": "SECURE_FLASH_REQUIRE_ALREADY_ENABLED", + "name": "SECURE_FLASH_REQUIRE_ALREADY_ENABLED", + "range": null, + "title": "Require flash encryption to be already enabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_HAS_WRITE_PROTECTION_CACHE", + "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 & ESP32H21: DIS_ICACHE, DIS_ICACHE, DIS_USB_JTAG, POWERGLITCH_EN, DIS_FORCE_DOWNLOAD,\nSPI_DOWNLOAD_MSPI_DIS, DIS_TWAI, JTAG_SEL_ENABLE, DIS_PAD_JTAG, DIS_DOWNLOAD_MANUAL_ENCRYPT,\nDIS_USB_SERIAL_JTAG\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.", + "id": "SECURE_FLASH_SKIP_WRITE_PROTECTION_CACHE", + "name": "SECURE_FLASH_SKIP_WRITE_PROTECTION_CACHE", + "range": null, + "title": "Skip write-protection of DIS_CACHE (DIS_ICACHE, DIS_DCACHE)", + "type": "bool" + } + ], + "depends_on": null, + "id": "security-features-potentially-insecure-options-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.projbuild-929", + "title": "Potentially insecure options", + "type": "menu" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_ENC_ENABLED && !SECURE_FLASH_REQUIRE_ALREADY_ENABLED", + "help": "If set (default), optimise encryption time for the partition of type APP,\nby only encrypting the app image that is present in the partition,\ninstead of the whole partition.\nThe image length used for encryption is derived from the image metadata, which\nincludes the size of the app image, checksum, hash and also the signature sector\nwhen secure boot is enabled.\n\nIf not set, the whole partition of type APP would be encrypted,\nwhich increases the encryption time but might be useful if there\nis any custom data appended to the firmware image.", + "id": "SECURE_FLASH_ENCRYPT_ONLY_IMAGE_LEN_IN_APP_PART", + "name": "SECURE_FLASH_ENCRYPT_ONLY_IMAGE_LEN_IN_APP_PART", + "range": null, + "title": "Encrypt contents upto app image length in app partition", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_ENC_ENABLED", + "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.", + "id": "SECURE_FLASH_CHECK_ENC_EN_IN_APP", + "name": "SECURE_FLASH_CHECK_ENC_EN_IN_APP", + "range": null, + "title": "Check Flash Encryption enabled on app startup", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_LOW", + "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_LOW", + "range": null, + "title": "Low", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_MEDIUM", + "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_MEDIUM", + "range": null, + "title": "Medium", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_HIGH", + "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_HIGH", + "range": null, + "title": "High", + "type": "bool" + } + ], + "depends_on": "SECURE_FLASH_PSEUDO_ROUND_FUNC", + "help": "The strength of the pseudo rounds functions can be configured to low, medium and high,\neach denoting the values that would be stored in the efuses field.\nBy default the value to set to low.\n\nIt is recommended that the required strength of the pseudo rounds function should be set during the\nfirst boot itself. If your workflow needs to update the function's strength after the first boot,\nyou should enable CONFIG_SECURE_BOOT_SKIP_WRITE_PROTECTION_SCA to avoid write protecting this\nbit during the boot up for targets that support Secure Boot using ECDSA-P384.\n\nYou can configure the strength of the pseudo rounds functions according to your use cases,\nfor example, increasing the strength would provide higher security but would slow down the\nflash encryption/decryption operations.\nFor more info regarding the performance impact, please checkout the pseudo round function section of the\nsecurity guide documentation.", + "id": "security-features-permanently-enable-xts-aes-s-pseudo-rounds-function-strength-of-the-pseudo-rounds-function-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.projbuild-1141", + "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH", + "title": "Strength of the pseudo rounds function", + "type": "choice" + } + ], + "depends_on": "SECURE_FLASH_ENC_ENABLED && SOC_FLASH_ENCRYPTION_XTS_AES_SUPPORT_PSEUDO_ROUND", + "help": "If set (default), the bootloader will permanently enable the XTS-AES peripheral's pseudo rounds function.\nNote: Enabling this config would burn an efuse.", + "id": "SECURE_FLASH_PSEUDO_ROUND_FUNC", + "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC", + "range": null, + "title": "Permanently enable XTS-AES's pseudo rounds function", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH", + "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "SECURE_ROM_DL_MODE_ENABLED", + "name": "SECURE_ROM_DL_MODE_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "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, espefuse 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.", + "id": "SECURE_DISABLE_ROM_DL_MODE", + "name": "SECURE_DISABLE_ROM_DL_MODE", + "range": null, + "title": "UART ROM download mode (Permanently disabled (recommended))", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_SUPPORTS_SECURE_DL_MODE && ", + "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 flasher stub feature,\nespefuse, 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.", + "id": "SECURE_ENABLE_SECURE_ROM_DL_MODE", + "name": "SECURE_ENABLE_SECURE_ROM_DL_MODE", + "range": null, + "title": "UART ROM download mode (Permanently switch to Secure mode (recommended))", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "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.", + "id": "SECURE_INSECURE_ALLOW_DL_MODE", + "name": "SECURE_INSECURE_ALLOW_DL_MODE", + "range": null, + "title": "UART ROM download mode (Enabled (not recommended))", + "type": "bool" + } + ], + "depends_on": "(SECURE_BOOT_V2_ENABLED || SECURE_FLASH_ENC_ENABLED) && !(IDF_TARGET_ESP32 && ESP32_REV_MIN_FULL < 300)", + "help": null, + "id": "security-features-uart-rom-download-mode-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.projbuild-1181", + "name": "SECURE_UART_ROM_DL_MODE", + "title": "UART ROM download mode", + "type": "choice" + } + ], + "depends_on": null, + "id": "security-features-C:-esp-v6.0-esp-idf-components-bootloader-Kconfig.projbuild-447", + "title": "Security features", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "!APP_REPRODUCIBLE_BUILD", + "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.", + "id": "APP_COMPILE_TIME_DATE", + "name": "APP_COMPILE_TIME_DATE", + "range": null, + "title": "Use time/date stamp for app", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "APP_EXCLUDE_PROJECT_VER_VAR", + "name": "APP_EXCLUDE_PROJECT_VER_VAR", + "range": null, + "title": "Exclude PROJECT_VER from firmware image", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "APP_EXCLUDE_PROJECT_NAME_VAR", + "name": "APP_EXCLUDE_PROJECT_NAME_VAR", + "range": null, + "title": "Exclude PROJECT_NAME from firmware image", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "APP_PROJECT_VER_FROM_CONFIG", + "help": "Project version", + "id": "APP_PROJECT_VER", + "name": "APP_PROJECT_VER", + "range": null, + "title": "Project version", + "type": "string" + } + ], + "depends_on": null, + "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.", + "id": "APP_PROJECT_VER_FROM_CONFIG", + "name": "APP_PROJECT_VER_FROM_CONFIG", + "range": null, + "title": "Get the project version from Kconfig", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "At startup, the app will read the embedded APP ELF SHA-256 hash value from flash\nand convert it into a string and store it in a RAM buffer.\nThis ensures the panic handler and core dump will be able to print this string\neven when cache is disabled.\nThe size of the buffer is APP_RETRIEVE_LEN_ELF_SHA plus the null terminator.\nChanging this value will change the size of this buffer, in bytes.", + "id": "APP_RETRIEVE_LEN_ELF_SHA", + "name": "APP_RETRIEVE_LEN_ELF_SHA", + "range": [ + 8, + 64 + ], + "title": "The length of APP ELF SHA is stored in RAM(chars)", + "type": "int" + } + ], + "depends_on": null, + "id": "application-manager-C:-esp-v6.0-esp-idf-components-esp_app_format-Kconfig.projbuild-1", + "title": "Application manager", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_CRC_LE", + "name": "ESP_ROM_HAS_CRC_LE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_CRC_BE", + "name": "ESP_ROM_HAS_CRC_BE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_MZ_CRC32", + "name": "ESP_ROM_HAS_MZ_CRC32", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_JPEG_DECODE", + "name": "ESP_ROM_HAS_JPEG_DECODE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_UART_BUF_SWITCH", + "name": "ESP_ROM_HAS_UART_BUF_SWITCH", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_NEEDS_SWSETUP_WORKAROUND", + "name": "ESP_ROM_NEEDS_SWSETUP_WORKAROUND", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_NEWLIB", + "name": "ESP_ROM_HAS_NEWLIB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_NEWLIB_NANO_FORMAT", + "name": "ESP_ROM_HAS_NEWLIB_NANO_FORMAT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_NEWLIB_32BIT_TIME", + "name": "ESP_ROM_HAS_NEWLIB_32BIT_TIME", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_SW_FLOAT", + "name": "ESP_ROM_HAS_SW_FLOAT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_USB_OTG_NUM", + "name": "ESP_ROM_USB_OTG_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_USB_SERIAL_DEVICE_NUM", + "name": "ESP_ROM_USB_SERIAL_DEVICE_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB", + "name": "ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_HAS_OUTPUT_PUTC_FUNC", + "name": "ESP_ROM_HAS_OUTPUT_PUTC_FUNC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Always print ROM logs, this is the default behavior.", + "id": "BOOT_ROM_LOG_ALWAYS_ON", + "name": "BOOT_ROM_LOG_ALWAYS_ON", + "range": null, + "title": "Always Log", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Don't print ROM logs.", + "id": "BOOT_ROM_LOG_ALWAYS_OFF", + "name": "BOOT_ROM_LOG_ALWAYS_OFF", + "range": null, + "title": "Permanently disable logging", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "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.", + "id": "BOOT_ROM_LOG_ON_GPIO_HIGH", + "name": "BOOT_ROM_LOG_ON_GPIO_HIGH", + "range": null, + "title": "Log on GPIO High", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "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.", + "id": "BOOT_ROM_LOG_ON_GPIO_LOW", + "name": "BOOT_ROM_LOG_ON_GPIO_LOW", + "range": null, + "title": "Log on GPIO Low", + "type": "bool" + } + ], + "depends_on": "!IDF_TARGET_ESP32", + "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.", + "id": "boot-rom-behavior-permanently-change-boot-rom-output-C:-esp-v6.0-esp-idf-components-esp_rom-Kconfig.projbuild-6", + "name": "BOOT_ROM_LOG_SCHEME", + "title": "Permanently change Boot ROM output", + "type": "choice" + } + ], + "depends_on": null, + "id": "boot-rom-behavior-C:-esp-v6.0-esp-idf-components-esp_rom-Kconfig.projbuild-3", + "title": "Boot ROM Behavior", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "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", + "id": "ESPTOOLPY_NO_STUB", + "name": "ESPTOOLPY_NO_STUB", + "range": null, + "title": "Disable download stub", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_SPI_MEM_SUPPORT_FLASH_OPI_MODE && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "ESPTOOLPY_OCT_FLASH", + "name": "ESPTOOLPY_OCT_FLASH", + "range": null, + "title": "Enable Octal Flash", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_SPI_MEM_SUPPORT_FLASH_OPI_MODE && !APP_BUILD_TYPE_PURE_RAM_APP", + "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. This option is mainly to improve the out-of-box experience of developers. It doesn't guarantee\n the feature-complete. Some code still rely on `ESPTOOLPY_OCT_FLASH`. Please do not rely on this option\n when you are pretty sure that you are using Octal flash.\n In this case, 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.", + "id": "ESPTOOLPY_FLASH_MODE_AUTO_DETECT", + "name": "ESPTOOLPY_FLASH_MODE_AUTO_DETECT", + "range": null, + "title": "Choose flash mode automatically (please read help)", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "!ESPTOOLPY_OCT_FLASH && ", + "help": null, + "id": "ESPTOOLPY_FLASHMODE_QIO", + "name": "ESPTOOLPY_FLASHMODE_QIO", + "range": null, + "title": "QIO", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESPTOOLPY_OCT_FLASH && ", + "help": null, + "id": "ESPTOOLPY_FLASHMODE_QOUT", + "name": "ESPTOOLPY_FLASHMODE_QOUT", + "range": null, + "title": "QOUT", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESPTOOLPY_OCT_FLASH && ", + "help": null, + "id": "ESPTOOLPY_FLASHMODE_DIO", + "name": "ESPTOOLPY_FLASHMODE_DIO", + "range": null, + "title": "DIO", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESPTOOLPY_OCT_FLASH && ", + "help": null, + "id": "ESPTOOLPY_FLASHMODE_DOUT", + "name": "ESPTOOLPY_FLASHMODE_DOUT", + "range": null, + "title": "DOUT", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESPTOOLPY_OCT_FLASH && ", + "help": null, + "id": "ESPTOOLPY_FLASHMODE_OPI", + "name": "ESPTOOLPY_FLASHMODE_OPI", + "range": null, + "title": "OPI", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Mode the flash chip is flashed in, as well as the default mode for the\nbinary to run in.", + "id": "serial-flasher-config-flash-spi-mode-C:-esp-v6.0-esp-idf-components-esptool_py-Kconfig.projbuild-39", + "name": "ESPTOOLPY_FLASHMODE", + "title": "Flash SPI mode", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASH_SAMPLE_MODE_STR", + "name": "ESPTOOLPY_FLASH_SAMPLE_MODE_STR", + "range": null, + "title": "STR Mode", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESPTOOLPY_OCT_FLASH && ", + "help": null, + "id": "ESPTOOLPY_FLASH_SAMPLE_MODE_DTR", + "name": "ESPTOOLPY_FLASH_SAMPLE_MODE_DTR", + "range": null, + "title": "DTR Mode", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "serial-flasher-config-flash-sampling-mode-C:-esp-v6.0-esp-idf-components-esptool_py-Kconfig.projbuild-64", + "name": "ESPTOOLPY_FLASH_SAMPLE_MODE", + "title": "Flash Sampling Mode", + "type": "choice" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "ESPTOOLPY_FLASHMODE", + "name": "ESPTOOLPY_FLASHMODE", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_80M", + "name": "ESPTOOLPY_FLASHFREQ_80M", + "range": null, + "title": "80 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_40M", + "name": "ESPTOOLPY_FLASHFREQ_40M", + "range": null, + "title": "40 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_26M", + "name": "ESPTOOLPY_FLASHFREQ_26M", + "range": null, + "title": "26 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_20M", + "name": "ESPTOOLPY_FLASHFREQ_20M", + "range": null, + "title": "20 MHz", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "serial-flasher-config-flash-spi-speed-C:-esp-v6.0-esp-idf-components-esptool_py-..-spi_flash-esp32-Kconfig.flash_freq-1", + "name": "ESPTOOLPY_FLASHFREQ", + "title": "Flash SPI speed", + "type": "choice" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ", + "name": "ESPTOOLPY_FLASHFREQ", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_1MB", + "name": "ESPTOOLPY_FLASHSIZE_1MB", + "range": null, + "title": "1 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_2MB", + "name": "ESPTOOLPY_FLASHSIZE_2MB", + "range": null, + "title": "2 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_4MB", + "name": "ESPTOOLPY_FLASHSIZE_4MB", + "range": null, + "title": "4 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_8MB", + "name": "ESPTOOLPY_FLASHSIZE_8MB", + "range": null, + "title": "8 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_16MB", + "name": "ESPTOOLPY_FLASHSIZE_16MB", + "range": null, + "title": "16 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_32MB", + "name": "ESPTOOLPY_FLASHSIZE_32MB", + "range": null, + "title": "32 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_64MB", + "name": "ESPTOOLPY_FLASHSIZE_64MB", + "range": null, + "title": "64 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_128MB", + "name": "ESPTOOLPY_FLASHSIZE_128MB", + "range": null, + "title": "128 MB", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "SPI flash size, in megabytes", + "id": "serial-flasher-config-flash-size-C:-esp-v6.0-esp-idf-components-esptool_py-Kconfig.projbuild-112", + "name": "ESPTOOLPY_FLASHSIZE", + "title": "Flash size", + "type": "choice" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE", + "name": "ESPTOOLPY_FLASHSIZE", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "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.", + "id": "ESPTOOLPY_HEADER_FLASHSIZE_UPDATE", + "name": "ESPTOOLPY_HEADER_FLASHSIZE_UPDATE", + "range": null, + "title": "Detect flash size when flashing bootloader", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_BEFORE_RESET", + "name": "ESPTOOLPY_BEFORE_RESET", + "range": null, + "title": "Reset to bootloader", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_BEFORE_NORESET", + "name": "ESPTOOLPY_BEFORE_NORESET", + "range": null, + "title": "No reset", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Configure whether esptool 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.", + "id": "serial-flasher-config-before-flashing-C:-esp-v6.0-esp-idf-components-esptool_py-Kconfig.projbuild-159", + "name": "ESPTOOLPY_BEFORE", + "title": "Before flashing", + "type": "choice" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "ESPTOOLPY_BEFORE", + "name": "ESPTOOLPY_BEFORE", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_AFTER_RESET", + "name": "ESPTOOLPY_AFTER_RESET", + "range": null, + "title": "Reset after flashing", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_AFTER_NORESET", + "name": "ESPTOOLPY_AFTER_NORESET", + "range": null, + "title": "Stay in bootloader", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Configure whether esptool 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.", + "id": "serial-flasher-config-after-flashing-C:-esp-v6.0-esp-idf-components-esptool_py-Kconfig.projbuild-180", + "name": "ESPTOOLPY_AFTER", + "title": "After flashing", + "type": "choice" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "ESPTOOLPY_AFTER", + "name": "ESPTOOLPY_AFTER", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "ESPTOOLPY_MONITOR_BAUD", + "name": "ESPTOOLPY_MONITOR_BAUD", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "id": "serial-flasher-config-C:-esp-v6.0-esp-idf-components-esptool_py-Kconfig.projbuild-1", + "title": "Serial flasher config", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "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.", + "id": "PARTITION_TABLE_SINGLE_APP", + "name": "PARTITION_TABLE_SINGLE_APP", + "range": null, + "title": "Single factory app, no OTA", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "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.", + "id": "PARTITION_TABLE_SINGLE_APP_LARGE", + "name": "PARTITION_TABLE_SINGLE_APP_LARGE", + "range": null, + "title": "Single factory app (large), no OTA", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "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", + "id": "PARTITION_TABLE_TWO_OTA", + "name": "PARTITION_TABLE_TWO_OTA", + "range": null, + "title": "Factory app, two OTA definitions", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "This is a basic OTA-enabled partition table with\ntwo OTA app partitions. Both app partition sizes are 1700K,\nso this partition table requires 4MB or larger flash size.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_two_ota_large.csv", + "id": "PARTITION_TABLE_TWO_OTA_LARGE", + "name": "PARTITION_TABLE_TWO_OTA_LARGE", + "range": null, + "title": "Two large size OTA partitions", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "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.", + "id": "PARTITION_TABLE_CUSTOM", + "name": "PARTITION_TABLE_CUSTOM", + "range": null, + "title": "Custom partition table CSV", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP32_COREDUMP_ENABLE_TO_FLASH && NVS_SEC_KEY_PROTECT_USING_FLASH_ENC && ", + "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", + "id": "PARTITION_TABLE_SINGLE_APP_ENCRYPTED_NVS", + "name": "PARTITION_TABLE_SINGLE_APP_ENCRYPTED_NVS", + "range": null, + "title": "Single factory app, no OTA, encrypted NVS", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP32_COREDUMP_ENABLE_TO_FLASH && NVS_SEC_KEY_PROTECT_USING_FLASH_ENC && ", + "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", + "id": "PARTITION_TABLE_SINGLE_APP_LARGE_ENC_NVS", + "name": "PARTITION_TABLE_SINGLE_APP_LARGE_ENC_NVS", + "range": null, + "title": "Single factory app (large), no OTA, encrypted NVS", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP_COREDUMP_ENABLE_TO_FLASH && NVS_SEC_KEY_PROTECT_USING_FLASH_ENC && ", + "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", + "id": "PARTITION_TABLE_TWO_OTA_ENCRYPTED_NVS", + "name": "PARTITION_TABLE_TWO_OTA_ENCRYPTED_NVS", + "range": null, + "title": "Factory app, two OTA definitions, encrypted NVS", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_ENABLE_TEE && ", + "help": "This is a variation of the default \"Single factory app, no OTA\" partition table\nthat supports the ESP-TEE framework. See the Trusted Execution Environment (TEE) 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_tee.csv", + "id": "PARTITION_TABLE_SINGLE_APP_TEE", + "name": "PARTITION_TABLE_SINGLE_APP_TEE", + "range": null, + "title": "Single factory app, no OTA, TEE", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_ENABLE_TEE && ", + "help": "This is a basic OTA-enabled partition table with two OTA app partitions each\nfor the TEE and the user (REE) application. The user app partition sizes are 1536K,\nso this partition table requires 4MB or larger flash size. See the\nTrusted Execution Environment (TEE) section in the ESP-IDF Programmers Guide\nfor more information.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_two_ota_tee.csv", + "id": "PARTITION_TABLE_TWO_OTA_TEE", + "name": "PARTITION_TABLE_TWO_OTA_TEE", + "range": null, + "title": "Two OTA definitions, TEE", + "type": "bool" + } + ], + "depends_on": null, + "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.", + "id": "partition-table-partition-table-C:-esp-v6.0-esp-idf-components-partition_table-Kconfig.projbuild-3", + "name": "PARTITION_TABLE_TYPE", + "title": "Partition Table", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "Name of the custom partition CSV filename.\nThis path is evaluated relative to the project root directory by default.\nHowever, if the absolute path for the CSV file is provided, then the absolute path is configured.", + "id": "PARTITION_TABLE_CUSTOM_FILENAME", + "name": "PARTITION_TABLE_CUSTOM_FILENAME", + "range": null, + "title": "Custom partition CSV file", + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "PARTITION_TABLE_FILENAME", + "name": "PARTITION_TABLE_FILENAME", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": "The offset address of the partition table is, by default, 0x8000, and it starts right after\nthe bootloader. This offset can be changed if more space is required for the bootloader.\nIf you change this offset, both the bootloader and the app must be compiled with the same\nPARTITION_TABLE_OFFSET value.\n\nThis value must be a multiple of 0x1000.\n\nIf you change the partition table offset, make sure to update the partition offsets in\nthe partition table CSV file. To let the build system automatically adjust partition offsets based on\nthe configured partition table offset, leave the offset fields blank in the CSV file.\n\nNote: If you specify fixed offsets in the partition table CSV (i.e., the offset column is not blank),\nthe first partition must start at PARTITION_TABLE_OFFSET + 0x1000, since the partition table occupies\n0x1000 bytes of flash space.", + "id": "PARTITION_TABLE_OFFSET", + "name": "PARTITION_TABLE_OFFSET", + "range": null, + "title": "Offset of partition table", + "type": "hex" + }, + { + "children": [], + "depends_on": "!APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS && !IDF_TARGET_LINUX", + "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.", + "id": "PARTITION_TABLE_MD5", + "name": "PARTITION_TABLE_MD5", + "range": null, + "title": "Generate an MD5 checksum for the partition table", + "type": "bool" + } + ], + "depends_on": null, + "id": "partition-table-C:-esp-v6.0-esp-idf-components-partition_table-Kconfig.projbuild-1", + "title": "Partition Table", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_OPTIMIZATION_DEBUG", + "name": "COMPILER_OPTIMIZATION_DEBUG", + "range": null, + "title": "Debug (-Og)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_OPTIMIZATION_SIZE", + "name": "COMPILER_OPTIMIZATION_SIZE", + "range": null, + "title": "Optimize for size (-Os with GCC, -Oz with Clang)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_OPTIMIZATION_PERF", + "name": "COMPILER_OPTIMIZATION_PERF", + "range": null, + "title": "Optimize for performance (-O2)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_OPTIMIZATION_NONE", + "name": "COMPILER_OPTIMIZATION_NONE", + "range": null, + "title": "Debug without optimization (-O0)", + "type": "bool" + } + ], + "depends_on": null, + "help": "This option sets compiler optimization level (gcc -O argument) for the app.\n\n- The \"Debug\" setting will add the -Og flag to CFLAGS.\n- The \"Size\" setting will add the -Os flag to CFLAGS (-Oz with Clang).\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.", + "id": "compiler-options-optimization-level-C:-esp-v6.0-esp-idf-Kconfig-337", + "name": "COMPILER_OPTIMIZATION", + "title": "Optimization Level", + "type": "choice" + }, + { + "children": [], + "depends_on": "SOC_CPU_ZCMP_WORKAROUND", + "help": "Enable the RISC-V ZCMP (Compressed Macro) extension to reduce binary size\nby optimizing function prologue and epilogue sequences.\n\nNote: Due to a hardware issue on some ESP32 chips (e.g., ESP32C5, ESP32C61,\nESP32H4), executing \"cm.push\" may re-enable interrupts even when global\ninterrupts are disabled (mstatus.mie = 0). This can cause unexpected interrupts\nduring CPU retention or within critical sections.\n\nWorkarounds are implemented in the IDF codebase. However, if user code\ndirectly disables interrupts, additional actions may be required. Refer\nto code examples under the SOC_CPU_ZCMP_WORKAROUND macro, or disable\nthe ZCMP extension for source files that contain functions which may\nexecute while mstatus.mie = 0.", + "id": "COMPILER_ENABLE_RISCV_ZCMP", + "name": "COMPILER_ENABLE_RISCV_ZCMP", + "range": null, + "title": "Enable RISCV ZCMP extension", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Enable assertions. Assertion content and line number will be printed on failure.", + "id": "COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE", + "name": "COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE", + "range": null, + "title": "Enabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Enable silent assertions. Failed assertions will abort(), user needs to\nuse the aborting address to find the line number with the failed assertion.", + "id": "COMPILER_OPTIMIZATION_ASSERTIONS_SILENT", + "name": "COMPILER_OPTIMIZATION_ASSERTIONS_SILENT", + "range": null, + "title": "Silent (saves code size)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "If assertions are disabled, -DNDEBUG is added to CPPFLAGS.", + "id": "COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE", + "name": "COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE", + "range": null, + "title": "Disabled (sets -DNDEBUG)", + "type": "bool" + } + ], + "depends_on": null, + "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.", + "id": "compiler-options-assertion-level-C:-esp-v6.0-esp-idf-Kconfig-392", + "name": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL", + "title": "Assertion level", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "When NDEBUG is set, assert(X) will not cause code to trigger an assertion.\nWith this option set, assert(X) will still evaluate the expression X, though\nthe result will never cause an assertion. This means that if X is a function\nthen the function will be called.\n\nThis is not according to the standard, which states that the assert(X) should\nbe replaced with ((void)0) if NDEBUG is defined.", + "id": "COMPILER_ASSERT_NDEBUG_EVALUATE", + "name": "COMPILER_ASSERT_NDEBUG_EVALUATE", + "range": null, + "title": "Enable the evaluation of the expression inside assert(X) when NDEBUG is set", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_FLOAT_LIB_FROM_GCCLIB", + "name": "COMPILER_FLOAT_LIB_FROM_GCCLIB", + "range": null, + "title": "libgcc", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_ROM_HAS_RVFPLIB && ", + "help": null, + "id": "COMPILER_FLOAT_LIB_FROM_RVFPLIB", + "name": "COMPILER_FLOAT_LIB_FROM_RVFPLIB", + "range": null, + "title": "librvfp", + "type": "bool" + } + ], + "depends_on": null, + "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.", + "id": "compiler-options-compiler-float-lib-source-C:-esp-v6.0-esp-idf-Kconfig-439", + "name": "COMPILER_FLOAT_LIB_FROM", + "title": "Compiler float lib source", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL", + "name": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "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", + "id": "COMPILER_OPTIMIZATION_CHECKS_SILENT", + "name": "COMPILER_OPTIMIZATION_CHECKS_SILENT", + "range": null, + "title": "Disable messages in ESP_RETURN_ON_* and ESP_EXIT_ON_* macros", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "COMPILER_HIDE_PATHS_MACROS", + "is_menuconfig": true, + "name": "COMPILER_HIDE_PATHS_MACROS", + "range": null, + "title": "Replace ESP-IDF and project paths in binaries", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "COMPILER_CXX_EXCEPTIONS", + "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.", + "id": "COMPILER_CXX_EXCEPTIONS_EMG_POOL_SIZE", + "name": "COMPILER_CXX_EXCEPTIONS_EMG_POOL_SIZE", + "range": null, + "title": "Emergency Pool Size", + "type": "int" + } + ], + "depends_on": null, + "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.", + "id": "COMPILER_CXX_EXCEPTIONS", + "is_menuconfig": true, + "name": "COMPILER_CXX_EXCEPTIONS", + "range": null, + "title": "Enable C++ exceptions", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "COMPILER_CXX_RTTI", + "name": "COMPILER_CXX_RTTI", + "range": null, + "title": "Enable C++ run-time type info (RTTI)", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_STACK_CHECK_MODE_NONE", + "name": "COMPILER_STACK_CHECK_MODE_NONE", + "range": null, + "title": "None", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_STACK_CHECK_MODE_NORM", + "name": "COMPILER_STACK_CHECK_MODE_NORM", + "range": null, + "title": "Normal", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_STACK_CHECK_MODE_STRONG", + "name": "COMPILER_STACK_CHECK_MODE_STRONG", + "range": null, + "title": "Strong", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_STACK_CHECK_MODE_ALL", + "name": "COMPILER_STACK_CHECK_MODE_ALL", + "range": null, + "title": "Overall", + "type": "bool" + } + ], + "depends_on": null, + "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.", + "id": "compiler-options-stack-smashing-protection-mode-C:-esp-v6.0-esp-idf-Kconfig-518", + "name": "COMPILER_STACK_CHECK_MODE", + "title": "Stack smashing protection mode", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "Stack smashing protection.", + "id": "COMPILER_STACK_CHECK", + "name": "COMPILER_STACK_CHECK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TOOLCHAIN_GCC", + "help": "Disable merging identical constants (string/floating-point) across compilation units.\nThis helps in better size analysis of the application binary as the rodata section\ndistribution is more uniform across libraries. On downside, it may increase\nthe binary size and hence should be used during development phase only.", + "id": "COMPILER_NO_MERGE_CONSTANTS", + "name": "COMPILER_NO_MERGE_CONSTANTS", + "range": null, + "title": "Disable merging const sections", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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 *``.", + "id": "COMPILER_WARN_WRITE_STRINGS", + "name": "COMPILER_WARN_WRITE_STRINGS", + "range": null, + "title": "Enable -Wwrite-strings warning flag", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ARCH_RISCV", + "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.", + "id": "COMPILER_SAVE_RESTORE_LIBCALLS", + "name": "COMPILER_SAVE_RESTORE_LIBCALLS", + "range": null, + "title": "Enable -msave-restore flag to reduce code size", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this option if you do not want default warnings to be considered as errors,\nespecially when updating IDF.\n\nThis is a temporary flag that could help to allow upgrade while having\nsome time to address the warnings raised by those default warnings.\nAlternatives are:\n1) fix code (preferred),\n2) remove specific warnings,\n3) do not consider specific warnings as error.", + "id": "COMPILER_DISABLE_DEFAULT_ERRORS", + "name": "COMPILER_DISABLE_DEFAULT_ERRORS", + "range": null, + "title": "Disable errors for default warnings", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this option if use GCC 12 or newer, and want to disable warnings which don't appear with\nGCC 11.", + "id": "COMPILER_DISABLE_GCC12_WARNINGS", + "name": "COMPILER_DISABLE_GCC12_WARNINGS", + "range": null, + "title": "Disable new warnings introduced in GCC 12", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this option if use GCC 13 or newer, and want to disable warnings which don't appear with\nGCC 12.", + "id": "COMPILER_DISABLE_GCC13_WARNINGS", + "name": "COMPILER_DISABLE_GCC13_WARNINGS", + "range": null, + "title": "Disable new warnings introduced in GCC 13", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this option if use GCC 14 or newer, and want to disable warnings which don't appear with\nGCC 13.", + "id": "COMPILER_DISABLE_GCC14_WARNINGS", + "name": "COMPILER_DISABLE_GCC14_WARNINGS", + "range": null, + "title": "Disable new warnings introduced in GCC 14", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this option if use GCC 15 or newer, and want to disable warnings which don't appear with\nGCC 14.", + "id": "COMPILER_DISABLE_GCC15_WARNINGS", + "name": "COMPILER_DISABLE_GCC15_WARNINGS", + "range": null, + "title": "Disable new warnings introduced in GCC 15", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If enabled, RTL files will be produced during compilation. These files\ncan be used by other tools, for example to calculate call graphs.", + "id": "COMPILER_DUMP_RTL_FILES", + "name": "COMPILER_DUMP_RTL_FILES", + "range": null, + "title": "Dump RTL files during compilation", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "!IDF_TARGET_LINUX && ", + "help": null, + "id": "COMPILER_RT_LIB_GCCLIB", + "name": "COMPILER_RT_LIB_GCCLIB", + "range": null, + "title": "libgcc", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TOOLCHAIN_CLANG && !IDF_TARGET_LINUX && ", + "help": null, + "id": "COMPILER_RT_LIB_CLANGRT", + "name": "COMPILER_RT_LIB_CLANGRT", + "range": null, + "title": "libclang_rt", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_LINUX && ", + "help": null, + "id": "COMPILER_RT_LIB_HOST", + "name": "COMPILER_RT_LIB_HOST", + "range": null, + "title": "Host", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select runtime library to be used by compiler.\n- GCC toolchain supports libgcc only.\n- Clang allows to choose between libgcc or libclang_rt.\n- For host builds (\"linux\" target), uses the default library.", + "id": "compiler-options-compiler-runtime-library-C:-esp-v6.0-esp-idf-Kconfig-643", + "name": "COMPILER_RT_LIB", + "title": "Compiler runtime library", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "COMPILER_RT_LIB_NAME", + "name": "COMPILER_RT_LIB_NAME", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Fails the link step with an error if orphan sections are detected.", + "id": "COMPILER_ORPHAN_SECTIONS_ERROR", + "name": "COMPILER_ORPHAN_SECTIONS_ERROR", + "range": null, + "title": "Fail if orphan sections found", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Places orphan sections with a warning message.", + "id": "COMPILER_ORPHAN_SECTIONS_WARNING", + "name": "COMPILER_ORPHAN_SECTIONS_WARNING", + "range": null, + "title": "Place with warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Places orphan sections without a warning/error message.", + "id": "COMPILER_ORPHAN_SECTIONS_PLACE", + "name": "COMPILER_ORPHAN_SECTIONS_PLACE", + "range": null, + "title": "Place silently", + "type": "bool" + } + ], + "depends_on": "!IDF_TARGET_LINUX", + "help": "If the linker finds orphan sections, it attempts to place orphan sections after sections of the same\nattribute such as code vs data, loadable vs non-loadable, etc.\nThat means that orphan sections could placed between sections defined in IDF linker scripts.\nThis could lead to corruption of the binary image. Configure the linker action here.", + "id": "compiler-options-orphan-sections-handling-C:-esp-v6.0-esp-idf-Kconfig-671", + "name": "COMPILER_ORPHAN_SECTIONS", + "title": "Orphan sections handling", + "type": "choice" + }, + { + "children": [], + "depends_on": "IDF_TOOLCHAIN_GCC", + "help": "Enable compiler static analyzer. This may produce false-positive results and increases compile time.", + "id": "COMPILER_STATIC_ANALYZER", + "name": "COMPILER_STATIC_ANALYZER", + "range": null, + "title": "Enable compiler static analyzer", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Use default _GLIBCXX20_CONSTEXPR and _GLIBCXX23_CONSTEXPR defined in libstdc++", + "id": "COMPILER_CXX_GLIBCXX_CONSTEXPR_NO_CHANGE", + "name": "COMPILER_CXX_GLIBCXX_CONSTEXPR_NO_CHANGE", + "range": null, + "title": "No change", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Define _GLIBCXX20_CONSTEXPR=__attribute__((cold)) constexpr\nDefine _GLIBCXX23_CONSTEXPR=__attribute__((cold)) constexpr", + "id": "COMPILER_CXX_GLIBCXX_CONSTEXPR_COLD_CONSTEXPR", + "name": "COMPILER_CXX_GLIBCXX_CONSTEXPR_COLD_CONSTEXPR", + "range": null, + "title": "_GLIBCXX2X_CONSTEXPR=__attribute__((cold)) constexpr", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Define _GLIBCXX20_CONSTEXPR=__attribute__((cold)).\nDefine _GLIBCXX23_CONSTEXPR=__attribute__((cold)).", + "id": "COMPILER_CXX_GLIBCXX_CONSTEXPR_COLD", + "name": "COMPILER_CXX_GLIBCXX_CONSTEXPR_COLD", + "range": null, + "title": "_GLIBCXX2X_CONSTEXPR=__attribute__((cold))", + "type": "bool" + } + ], + "depends_on": "IDF_TOOLCHAIN_GCC && !IDF_TARGET_LINUX", + "help": "Modify libstdc++ _GLIBCXX20_CONSTEXPR and _GLIBCXX23_CONSTEXPR definitions to provide size\noptimizations. The total size optimization depends on the application's structure.\nThere is no robust way to determine which option would be better in a particular case.\nPlease try all available options to find the best size optimization.", + "id": "compiler-options-define-_glibcxx_constexpr-C:-esp-v6.0-esp-idf-Kconfig-704", + "name": "COMPILER_CXX_GLIBCXX_CONSTEXPR", + "title": "Define _GLIBCXX_CONSTEXPR", + "type": "choice" + } + ], + "depends_on": null, + "id": "compiler-options-C:-esp-v6.0-esp-idf-Kconfig-335", + "title": "Compiler options", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "This option is recommended for classic Bluetooth or for dual-mode\nusecases", + "id": "BT_BLUEDROID_ENABLED", + "name": "BT_BLUEDROID_ENABLED", + "range": null, + "title": "Bluedroid - Dual-mode", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "This option is recommended for BLE only usecases to save on memory", + "id": "BT_NIMBLE_ENABLED", + "name": "BT_NIMBLE_ENABLED", + "range": null, + "title": "NimBLE - BLE only", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_BT_SUPPORTED && ", + "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).", + "id": "BT_CONTROLLER_ONLY", + "name": "BT_CONTROLLER_ONLY", + "range": null, + "title": "Disabled", + "type": "bool" + } + ], + "depends_on": "BT_ENABLED", + "help": "This helps to choose Bluetooth host stack", + "id": "component-config-bluetooth-bluetooth-host-C:-esp-v6.0-esp-idf-components-bt-Kconfig-9", + "name": "BT_HOST", + "title": "Host", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_BT_SUPPORTED && ", + "help": "This option is recommended for Bluetooth controller usecases", + "id": "BT_CONTROLLER_ENABLED", + "name": "BT_CONTROLLER_ENABLED", + "range": null, + "title": "Enabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "This option is recommended for Bluetooth Host only usecases", + "id": "BT_CONTROLLER_DISABLED", + "name": "BT_CONTROLLER_DISABLED", + "range": null, + "title": "Disabled", + "type": "bool" + } + ], + "depends_on": "BT_ENABLED", + "help": "This helps to choose Bluetooth controller stack", + "id": "component-config-bluetooth-bluetooth-controller-C:-esp-v6.0-esp-idf-components-bt-Kconfig-37", + "name": "BT_CONTROLLER", + "title": "Controller", + "type": "choice" + } + ], + "depends_on": "!APP_NO_BLOBS", + "help": "Select this option to enable Bluetooth and show the submenu with Bluetooth configuration choices.", + "id": "BT_ENABLED", + "name": "BT_ENABLED", + "range": null, + "title": "Bluetooth", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This select btc task stack size", + "id": "BT_BTC_TASK_STACK_SIZE", + "name": "BT_BTC_TASK_STACK_SIZE", + "range": null, + "title": "Bluetooth event (callback to application) task stack size", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_BLUEDROID_PINNED_TO_CORE_0", + "name": "BT_BLUEDROID_PINNED_TO_CORE_0", + "range": null, + "title": "Core 0 (PRO CPU)", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_UNICORE && ", + "help": null, + "id": "BT_BLUEDROID_PINNED_TO_CORE_1", + "name": "BT_BLUEDROID_PINNED_TO_CORE_1", + "range": null, + "title": "Core 1 (APP CPU)", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !FREERTOS_UNICORE && BT_BLUEDROID_ENABLED", + "help": "Which the cpu core to run Bluedroid. Can choose core0 and core1.\nCan not specify no-affinity.", + "id": "component-config-bluetooth-bluedroid-options-the-cpu-core-which-bluedroid-run-C:-esp-v6.0-esp-idf-components-bt-host-bluedroid-Kconfig.in-8", + "name": "BT_BLUEDROID_PINNED_TO_CORE_CHOICE", + "title": "The cpu core which Bluedroid run", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_BLUEDROID_PINNED_TO_CORE", + "name": "BT_BLUEDROID_PINNED_TO_CORE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This select btu task stack size", + "id": "BT_BTU_TASK_STACK_SIZE", + "name": "BT_BTU_TASK_STACK_SIZE", + "range": null, + "title": "Bluetooth Bluedroid Host Stack task stack size", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED", + "help": "Enable Espressif Vendor-specific HCI commands for coexist status configuration", + "id": "BT_BLUEDROID_ESP_COEX_VSC", + "name": "BT_BLUEDROID_ESP_COEX_VSC", + "range": null, + "title": "Enable Espressif Vendor-specific HCI commands for coexist status configuration", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "(BT_CONTROLLER_DISABLED || (BT_CONTROLLER_ENABLED && SOC_BT_H2C_ENC_KEY_CTRL_ENH_STD_SUPPORTED)) && ", + "help": null, + "id": "BT_ENC_KEY_SIZE_CTRL_STD", + "name": "BT_ENC_KEY_SIZE_CTRL_STD", + "range": null, + "title": "Supported by standard HCI command", + "type": "bool" + }, + { + "children": [], + "depends_on": "(BT_CONTROLLER_DISABLED || (BT_CONTROLLER_ENABLED && SOC_BT_H2C_ENC_KEY_CTRL_ENH_VSC_SUPPORTED)) && ", + "help": null, + "id": "BT_ENC_KEY_SIZE_CTRL_VSC", + "name": "BT_ENC_KEY_SIZE_CTRL_VSC", + "range": null, + "title": "Supported by Vendor-specific HCI command", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_ENC_KEY_SIZE_CTRL_NONE", + "name": "BT_ENC_KEY_SIZE_CTRL_NONE", + "range": null, + "title": "Not supported", + "type": "bool" + } + ], + "depends_on": "BT_CLASSIC_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This chooses the support status of configuring encryption key size", + "id": "component-config-bluetooth-bluedroid-options-classic-bluetooth-configure-encryption-key-size-C:-esp-v6.0-esp-idf-components-bt-host-bluedroid-Kconfig.in-51", + "name": "BT_ENC_KEY_SIZE_CTRL_ENABLED", + "title": "configure encryption key size", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_CLASSIC_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This enables functionalities of Host qualification for Classic Bluetooth.", + "id": "BT_CLASSIC_BQB_ENABLED", + "name": "BT_CLASSIC_BQB_ENABLED", + "range": null, + "title": "Host Qualitifcation support for Classic Bluetooth", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_A2DP_ENABLE && BT_BLUEDROID_ENABLED", + "help": "If enable, user shall register audio codec capability to A2DP and encode/decode\naudio data in application layer. The internal codec in A2DP will be remove in\nthe future, it is recommend to use external codec for new design.", + "id": "BT_A2DP_USE_EXTERNAL_CODEC", + "name": "BT_A2DP_USE_EXTERNAL_CODEC", + "range": null, + "title": "Use External Codec for A2DP", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_A2DP_ENABLE && BT_BLUEDROID_ENABLED", + "help": "Audio/Video Remote Control Profile, AVRCP and A2DP are coupled in Bluedroid,\nAVRCP still controlled by A2DP option, this is a dummy option currently", + "id": "BT_AVRCP_ENABLED", + "name": "BT_AVRCP_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_AVRCP_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This enable Cover Art feature for AVRCP CT role, Cover Art requires AVRCP\nversion 1.6 or higher. Therefore, if the Cover Art feature is enabled,\nAVRCP version will set to 1.6, otherwise, it will remain at 1.5", + "id": "BT_AVRCP_CT_COVER_ART_ENABLED", + "name": "BT_AVRCP_CT_COVER_ART_ENABLED", + "range": null, + "title": "AVRCP CT Cover Art", + "type": "bool" + } + ], + "depends_on": "BT_AVRCP_ENABLED && BT_BLUEDROID_ENABLED", + "id": "component-config-bluetooth-bluedroid-options-classic-bluetooth-a2dp-avrcp-features-C:-esp-v6.0-esp-idf-components-bt-host-bluedroid-Kconfig.in-102", + "title": "AVRCP Features", + "type": "menu" + } + ], + "depends_on": "BT_CLASSIC_ENABLED && BT_BLUEDROID_ENABLED", + "help": "Advanced Audio Distribution Profile", + "id": "BT_A2DP_ENABLE", + "name": "BT_A2DP_ENABLE", + "range": null, + "title": "A2DP", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_CLASSIC_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This enables the Serial Port Profile", + "id": "BT_SPP_ENABLED", + "name": "BT_SPP_ENABLED", + "range": null, + "title": "SPP", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_CLASSIC_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This enables the Logical Link Control and Adaptation Layer Protocol.\nOnly supported classic bluetooth.", + "id": "BT_L2CAP_ENABLED", + "name": "BT_L2CAP_ENABLED", + "range": null, + "title": "BT L2CAP", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_CLASSIC_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This enables common SDP operation, such as SDP record creation and deletion.", + "id": "BT_SDP_COMMON_ENABLED", + "name": "BT_SDP_COMMON_ENABLED", + "range": null, + "title": "BT SDP COMMON", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_CLASSIC_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This is the total size of all SDP attributes allowed.\nAny attributes that exceed this size are truncated.\nThe default value is 300.", + "id": "BT_SDP_PAD_LEN", + "name": "BT_SDP_PAD_LEN", + "range": null, + "title": "One or more BT SDP attributes total allocated length (bytes)", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_CLASSIC_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This is the maximum allowed size for a single SDP attribute.\nAny attributes that exceed this size are truncated.\nThe default value is 300.", + "id": "BT_SDP_ATTR_LEN", + "name": "BT_SDP_ATTR_LEN", + "range": null, + "title": "Single BT SDP attribute allocated length (bytes)", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_HFP_ENABLE && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_HFP_CLIENT_ENABLE", + "name": "BT_HFP_CLIENT_ENABLE", + "range": null, + "title": "Hands Free Unit", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_HFP_ENABLE && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_HFP_AG_ENABLE", + "name": "BT_HFP_AG_ENABLE", + "range": null, + "title": "Audio Gateway", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_HFP_AUDIO_DATA_PATH_PCM", + "name": "BT_HFP_AUDIO_DATA_PATH_PCM", + "range": null, + "title": "PCM", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_HFP_AUDIO_DATA_PATH_HCI", + "name": "BT_HFP_AUDIO_DATA_PATH_HCI", + "range": null, + "title": "HCI", + "type": "bool" + } + ], + "depends_on": "BT_HFP_ENABLE && BT_BLUEDROID_ENABLED", + "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.", + "id": "component-config-bluetooth-bluedroid-options-classic-bluetooth-hands-free-handset-profile-audio-sco-data-path-C:-esp-v6.0-esp-idf-components-bt-host-bluedroid-Kconfig.in-177", + "name": "BT_HFP_AUDIO_DATA_PATH", + "title": "audio(SCO) data path", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_HFP_ENABLE && BT_HFP_AUDIO_DATA_PATH_HCI && BT_BLUEDROID_ENABLED", + "help": "If enable, user shall encode/decode audio data in application layer. The internal\ncodec in HFP will be remove in the future, it is recommend to use external codec\nfor new design.", + "id": "BT_HFP_USE_EXTERNAL_CODEC", + "name": "BT_HFP_USE_EXTERNAL_CODEC", + "range": null, + "title": "Use External Codec for HFP", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_HFP_ENABLE && BT_HFP_AUDIO_DATA_PATH_HCI && BT_BLUEDROID_ENABLED", + "help": "This enables Wide Band Speech. Should disable it when SCO data path is PCM.\nOtherwise there will be no data transmitted via GPIOs.", + "id": "BT_HFP_WBS_ENABLE", + "name": "BT_HFP_WBS_ENABLE", + "range": null, + "title": "Wide Band Speech", + "type": "bool" + } + ], + "depends_on": "BT_CLASSIC_ENABLED && BT_BLUEDROID_ENABLED", + "help": "Hands Free Unit and Audio Gateway can be included simultaneously\nbut they cannot run simultaneously due to internal limitations.", + "id": "BT_HFP_ENABLE", + "is_menuconfig": true, + "name": "BT_HFP_ENABLE", + "range": null, + "title": "Hands Free/Handset Profile", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_HID_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This enables the BT HID Host", + "id": "BT_HID_HOST_ENABLED", + "name": "BT_HID_HOST_ENABLED", + "range": null, + "title": "Classic BT HID Host", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_HID_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This enables the BT HID Device", + "id": "BT_HID_DEVICE_ENABLED", + "name": "BT_HID_DEVICE_ENABLED", + "range": null, + "title": "Classic BT HID Device", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_HID_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This enables the BT HID to remove device bonding information when virtual cable unplugging,\nremoving device bonding information is optional in HID 1.0 but mandatory in HID 1.1", + "id": "BT_HID_REMOVE_DEVICE_BONDING_ENABLED", + "name": "BT_HID_REMOVE_DEVICE_BONDING_ENABLED", + "range": null, + "title": "Remove Device Bonding Information when HID Virtual Cable Unplugging", + "type": "bool" + } + ], + "depends_on": "BT_CLASSIC_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This enables the BT HID functionalities", + "id": "BT_HID_ENABLED", + "is_menuconfig": true, + "name": "BT_HID_ENABLED", + "range": null, + "title": "Classic BT HID", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_PBAC_ENABLED && BT_BLUEDROID_ENABLED", + "help": "Set the supported features of PBAP Client, the default value is supported all features", + "id": "BT_PBAC_SUPPORTED_FEAT", + "name": "BT_PBAC_SUPPORTED_FEAT", + "range": null, + "title": "PBAP Client Supported Features", + "type": "hex" + }, + { + "children": [], + "depends_on": "BT_PBAC_ENABLED && BT_BLUEDROID_ENABLED", + "help": "MTU is limited by the max MTU of transport layer, and should not be smaller than 255,\nbut can be set to zero to use a default MTU of transport layer", + "id": "BT_PBAC_PREFERRED_MTU", + "name": "BT_PBAC_PREFERRED_MTU", + "range": null, + "title": "PBAP Client Preferred MTU", + "type": "int" + } + ], + "depends_on": "BT_CLASSIC_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This enables the Phone Book Access Profile Client", + "id": "BT_PBAC_ENABLED", + "is_menuconfig": true, + "name": "BT_PBAC_ENABLED", + "range": null, + "title": "PBAP Client", + "type": "menu" + }, + { + "children": [], + "depends_on": "BT_CLASSIC_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This enables the BT GOEP Profile Client role", + "id": "BT_GOEPC_ENABLED", + "name": "BT_GOEPC_ENABLED", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && ((BT_CONTROLLER_ENABLED && SOC_BT_CLASSIC_SUPPORTED) || BT_CONTROLLER_DISABLED) && BT_BLUEDROID_ENABLED", + "help": "For now this option needs \"SMP_ENABLE\" to be set to yes", + "id": "BT_CLASSIC_ENABLED", + "name": "BT_CLASSIC_ENABLED", + "range": null, + "title": "Classic Bluetooth", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BT_GATTS_ENABLE && BT_BLUEDROID_ENABLED", + "help": "This enables \"Peripheral Preferred Connection Parameters\" characteristic (UUID: 0x2A04)\nin GAP service that has connection parameters like min/max connection interval, slave\nlatency and supervision timeout multiplier", + "id": "BT_GATTS_PPCP_CHAR_GAP", + "name": "BT_GATTS_PPCP_CHAR_GAP", + "range": null, + "title": "Enable Peripheral Preferred Connection Parameters characteristic in GAP service", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_BLE_BLUFI_ENABLE && BT_BLE_SMP_ENABLE && BT_BLUEDROID_ENABLED", + "help": "Enable BLE Security Manager Protocol (SMP) for BluFi.\nWhen enabled, BluFi will support BLE pairing and encryption\nbefore Wi-Fi provisioning, providing a more secure provisioning process.\nThis feature is only supported with the Bluedroid host.", + "id": "BT_BLUFI_BLE_SMP_ENABLE", + "name": "BT_BLUFI_BLE_SMP_ENABLE", + "range": null, + "title": "Enable BLE SMP support for BluFi", + "type": "bool" + } + ], + "depends_on": "BT_GATTS_ENABLE && BT_BLUEDROID_ENABLED", + "help": "This option can be close when the app does not require blufi function.", + "id": "BT_BLE_BLUFI_ENABLE", + "name": "BT_BLE_BLUFI_ENABLE", + "range": null, + "title": "Include blufi function", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_GATTS_ENABLE && BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED", + "help": "Maximum GATT Server Profiles Count", + "id": "BT_GATT_MAX_SR_PROFILES", + "name": "BT_GATT_MAX_SR_PROFILES", + "range": null, + "title": "Max GATT Server Profiles", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_GATTS_ENABLE && BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED", + "help": "Maximum GATT Service Attributes Count", + "id": "BT_GATT_MAX_SR_ATTRIBUTES", + "name": "BT_GATT_MAX_SR_ATTRIBUTES", + "range": null, + "title": "Max GATT Service Attributes", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Manually send service change indication through API esp_ble_gatts_send_service_change_indication()", + "id": "BT_GATTS_SEND_SERVICE_CHANGE_MANUAL", + "name": "BT_GATTS_SEND_SERVICE_CHANGE_MANUAL", + "range": null, + "title": "GATTS manually send service change indication", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Let Bluedroid handle the service change indication internally", + "id": "BT_GATTS_SEND_SERVICE_CHANGE_AUTO", + "name": "BT_GATTS_SEND_SERVICE_CHANGE_AUTO", + "range": null, + "title": "GATTS automatically send service change indication", + "type": "bool" + } + ], + "depends_on": "BT_GATTS_ENABLE && BT_BLUEDROID_ENABLED", + "help": "Service change indication mode for GATT Server.", + "id": "component-config-bluetooth-bluedroid-options-bluetooth-low-energy-include-gatt-server-module-gatts--gatts-service-change-mode-C:-esp-v6.0-esp-idf-components-bt-host-bluedroid-Kconfig.in-323", + "name": "BT_GATTS_SEND_SERVICE_CHANGE_MODE", + "title": "GATTS Service Change Mode", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_GATTS_ENABLE && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_GATTS_SEND_SERVICE_CHANGE_MODE", + "name": "BT_GATTS_SEND_SERVICE_CHANGE_MODE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_GATTS_ENABLE && BT_BLUEDROID_ENABLED", + "help": "This option enables the GATT robust caching feature on the server.\nif turned on, the Client Supported Features characteristic, Database Hash characteristic,\nand Server Supported Features characteristic will be included in the GAP SERVICE.", + "id": "BT_GATTS_ROBUST_CACHING_ENABLED", + "name": "BT_GATTS_ROBUST_CACHING_ENABLED", + "range": null, + "title": "Enable Robust Caching on Server Side", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_GATTS_ENABLE && BT_BLUEDROID_ENABLED", + "help": "Enabling this option allows remote GATT clients to write device name", + "id": "BT_GATTS_DEVICE_NAME_WRITABLE", + "name": "BT_GATTS_DEVICE_NAME_WRITABLE", + "range": null, + "title": "Allow to write device name by GATT clients", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_GATTS_ENABLE && BT_BLUEDROID_ENABLED", + "help": "Enabling this option allows remote GATT clients to write appearance", + "id": "BT_GATTS_APPEARANCE_WRITABLE", + "name": "BT_GATTS_APPEARANCE_WRITABLE", + "range": null, + "title": "Allow to write appearance by GATT clients", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_GATTS_ENABLE && BT_BLUEDROID_ENABLED", + "help": "Enable LE GATT Security Levels Characteristic", + "id": "BT_GATTS_SECURITY_LEVELS_CHAR", + "name": "BT_GATTS_SECURITY_LEVELS_CHAR", + "range": null, + "title": "Enable LE GATT Security Levels Characteristic", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_GATTS_ENABLE && BT_BLUEDROID_ENABLED", + "help": "Enable the Encrypted Data Key Material characteristic in GAP service.\nThis characteristic allows advertising data to be decrypted and authenticated\nusing the key material (session key + IV) as defined in Bluetooth Core\nSpecification Version 5.4. The characteristic requires encrypted link to read.", + "id": "BT_GATTS_KEY_MATERIAL_CHAR", + "name": "BT_GATTS_KEY_MATERIAL_CHAR", + "range": null, + "title": "Enable Encrypted Data Key Material Characteristic", + "type": "bool" + } + ], + "depends_on": "BT_BLE_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This option can be disabled when the app work only on gatt client mode", + "id": "BT_GATTS_ENABLE", + "is_menuconfig": true, + "name": "BT_GATTS_ENABLE", + "range": null, + "title": "Include GATT server module(GATTS)", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_GATTC_ENABLE && BT_BLUEDROID_ENABLED", + "help": "Maximum GATTC cache characteristic count", + "id": "BT_GATTC_MAX_CACHE_CHAR", + "name": "BT_GATTC_MAX_CACHE_CHAR", + "range": null, + "title": "Max gattc cache characteristic for discover", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_GATTC_ENABLE && BT_BLUEDROID_ENABLED", + "help": "Maximum GATTC notify(indication) register number", + "id": "BT_GATTC_NOTIF_REG_MAX", + "name": "BT_GATTC_NOTIF_REG_MAX", + "range": null, + "title": "Max gattc notify(indication) register number", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_GATTC_ENABLE && BT_BLUEDROID_ENABLED", + "help": "This select can save gattc cache data to nvs flash", + "id": "BT_GATTC_CACHE_NVS_FLASH", + "name": "BT_GATTC_CACHE_NVS_FLASH", + "range": null, + "title": "Save gattc cache data to nvs flash", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_GATTC_ENABLE && BT_BLUEDROID_ENABLED", + "help": "The number of attempts to reconnect if the connection establishment failed", + "id": "BT_GATTC_CONNECT_RETRY_COUNT", + "name": "BT_GATTC_CONNECT_RETRY_COUNT", + "range": null, + "title": "The number of attempts to reconnect if the connection establishment failed", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_GATTC_ENABLE && BT_BLUEDROID_ENABLED", + "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.", + "id": "BT_BLE_ESTAB_LINK_CONN_TOUT", + "name": "BT_BLE_ESTAB_LINK_CONN_TOUT", + "range": null, + "title": "Timeout of BLE connection establishment", + "type": "int" + } + ], + "depends_on": "BT_BLE_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This option can be close when the app work only on gatt server mode", + "id": "BT_GATTC_ENABLE", + "is_menuconfig": true, + "name": "BT_GATTC_ENABLE", + "range": null, + "title": "Include GATT client module(GATTC)", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_BLE_SMP_ENABLE && BT_BLUEDROID_ENABLED", + "help": "In order to reduce the pairing time, slave actively initiates connection parameters\nupdate during pairing.", + "id": "BT_SMP_SLAVE_CON_PARAMS_UPD_ENABLE", + "name": "BT_SMP_SLAVE_CON_PARAMS_UPD_ENABLE", + "range": null, + "title": "Slave enable connection parameters update during pairing", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLE_SMP_ENABLE && BT_BLUEDROID_ENABLED", + "help": "There are tracking risks associated with using a fixed or static IRK.\nIf enabled this option, Bluedroid will assign a new randomly-generated IRK\nwhen all pairing and bonding records are deleted. This would decrease the ability\nof a previously paired peer to be used to determine whether a device\nwith which it previously shared an IRK is within range.", + "id": "BT_BLE_SMP_ID_RESET_ENABLE", + "name": "BT_BLE_SMP_ID_RESET_ENABLE", + "range": null, + "title": "Reset device identity when all bonding records are deleted", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLE_SMP_ENABLE && BT_BLUEDROID_ENABLED", + "help": "This select can save SMP bonding keys to nvs flash", + "id": "BT_BLE_SMP_BOND_NVS_FLASH", + "name": "BT_BLE_SMP_BOND_NVS_FLASH", + "range": null, + "title": "Save SMP bonding keys to nvs flash", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLE_SMP_ENABLE && ((BT_CONTROLLER_ENABLED && !SOC_BLE_DEVICE_PRIVACY_SUPPORTED) || BT_CONTROLLER_DISABLED) && BT_BLUEDROID_ENABLED", + "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.", + "id": "BT_BLE_RPA_SUPPORTED", + "name": "BT_BLE_RPA_SUPPORTED", + "range": null, + "title": "Update RPA to Controller", + "type": "bool" + } + ], + "depends_on": "BT_BLE_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This option can be close when the app not used the ble security connect.", + "id": "BT_BLE_SMP_ENABLE", + "is_menuconfig": true, + "name": "BT_BLE_SMP_ENABLE", + "range": null, + "title": "Include BLE security module(SMP)", + "type": "menu" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This enables Bluetooth Low Energy", + "id": "BT_BLE_ENABLED", + "name": "BT_BLE_ENABLED", + "range": null, + "title": "Bluetooth Low Energy", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED", + "help": "Bluedroid memory debug", + "id": "BT_BLUEDROID_MEM_DEBUG", + "name": "BT_BLUEDROID_MEM_DEBUG", + "range": null, + "title": "Bluedroid memory debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_BLUEDROID_MEM_DEBUG && BT_BLUEDROID_ENABLED", + "help": "Enable Bluedroid memory usage statistics", + "id": "BT_BLUEDROID_MEM_STATS", + "name": "BT_BLUEDROID_MEM_STATS", + "range": null, + "title": "Bluedroid memory statistics", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_BLUEDROID_THREAD_DEBUG && BT_BLUEDROID_ENABLED", + "help": "Indicates how long it takes for the thread to execute an item\nbefore it is considered blocked.", + "id": "BT_BLUEDROID_THREAD_BLOCK_TIME", + "name": "BT_BLUEDROID_THREAD_BLOCK_TIME", + "range": null, + "title": "OSI thread block time (in ms)", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_THREAD_DEBUG && BT_BLUEDROID_ENABLED", + "help": "Indicates how many messages are added to the queue\nwhile the threadis executing an item before it is considered blocked.", + "id": "BT_BLUEDROID_THREAD_BLOCK_MSG", + "name": "BT_BLUEDROID_THREAD_BLOCK_MSG", + "range": null, + "title": "OSI thread block message count", + "type": "int" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED", + "help": "Enable Bluedroid thread debug mode.\nUsed to debug whether the thread is blocked and\ndump information about the thread\u2019s related work queue.", + "id": "BT_BLUEDROID_THREAD_DEBUG", + "name": "BT_BLUEDROID_THREAD_DEBUG", + "range": null, + "title": "Bluedroid thread debug", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED", + "id": "component-config-bluetooth-bluedroid-options-bluedroid-debug-option-C:-esp-v6.0-esp-idf-components-bt-host-bluedroid-Kconfig.in-487", + "title": "Bluedroid debug option", + "type": "menu" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This select can save the rodata code size", + "id": "BT_STACK_NO_LOG", + "name": "BT_STACK_NO_LOG", + "range": null, + "title": "Disable BT debug logs (minimize bin size)", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_HCI_TRACE_LEVEL_NONE", + "name": "BT_LOG_HCI_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_HCI_TRACE_LEVEL_ERROR", + "name": "BT_LOG_HCI_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_HCI_TRACE_LEVEL_WARNING", + "name": "BT_LOG_HCI_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_HCI_TRACE_LEVEL_API", + "name": "BT_LOG_HCI_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_HCI_TRACE_LEVEL_EVENT", + "name": "BT_LOG_HCI_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_HCI_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_HCI_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_HCI_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_HCI_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": "Define BT trace level for HCI layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-hci-layer-C:-esp-v6.0-esp-idf-components-bt-host-bluedroid-Kconfig.in-539", + "name": "BT_LOG_HCI_TRACE_LEVEL", + "title": "HCI layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_LOG_HCI_TRACE_LEVEL", + "name": "BT_LOG_HCI_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTM_TRACE_LEVEL_NONE", + "name": "BT_LOG_BTM_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTM_TRACE_LEVEL_ERROR", + "name": "BT_LOG_BTM_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTM_TRACE_LEVEL_WARNING", + "name": "BT_LOG_BTM_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTM_TRACE_LEVEL_API", + "name": "BT_LOG_BTM_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTM_TRACE_LEVEL_EVENT", + "name": "BT_LOG_BTM_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTM_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_BTM_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTM_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_BTM_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": "Define BT trace level for BTM layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-btm-layer-C:-esp-v6.0-esp-idf-components-bt-host-bluedroid-Kconfig.in-574", + "name": "BT_LOG_BTM_TRACE_LEVEL", + "title": "BTM layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_LOG_BTM_TRACE_LEVEL", + "name": "BT_LOG_BTM_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_L2CAP_TRACE_LEVEL_NONE", + "name": "BT_LOG_L2CAP_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_L2CAP_TRACE_LEVEL_ERROR", + "name": "BT_LOG_L2CAP_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_L2CAP_TRACE_LEVEL_WARNING", + "name": "BT_LOG_L2CAP_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_L2CAP_TRACE_LEVEL_API", + "name": "BT_LOG_L2CAP_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_L2CAP_TRACE_LEVEL_EVENT", + "name": "BT_LOG_L2CAP_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_L2CAP_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_L2CAP_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_L2CAP_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_L2CAP_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": "Define BT trace level for L2CAP layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-l2cap-layer-C:-esp-v6.0-esp-idf-components-bt-host-bluedroid-Kconfig.in-609", + "name": "BT_LOG_L2CAP_TRACE_LEVEL", + "title": "L2CAP layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_LOG_L2CAP_TRACE_LEVEL", + "name": "BT_LOG_L2CAP_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_RFCOMM_TRACE_LEVEL_NONE", + "name": "BT_LOG_RFCOMM_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_RFCOMM_TRACE_LEVEL_ERROR", + "name": "BT_LOG_RFCOMM_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_RFCOMM_TRACE_LEVEL_WARNING", + "name": "BT_LOG_RFCOMM_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_RFCOMM_TRACE_LEVEL_API", + "name": "BT_LOG_RFCOMM_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_RFCOMM_TRACE_LEVEL_EVENT", + "name": "BT_LOG_RFCOMM_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_RFCOMM_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_RFCOMM_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_RFCOMM_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_RFCOMM_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": "Define BT trace level for RFCOMM layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-rfcomm-layer-C:-esp-v6.0-esp-idf-components-bt-host-bluedroid-Kconfig.in-644", + "name": "BT_LOG_RFCOMM_TRACE_LEVEL", + "title": "RFCOMM layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_LOG_RFCOMM_TRACE_LEVEL", + "name": "BT_LOG_RFCOMM_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_SDP_TRACE_LEVEL_NONE", + "name": "BT_LOG_SDP_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_SDP_TRACE_LEVEL_ERROR", + "name": "BT_LOG_SDP_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_SDP_TRACE_LEVEL_WARNING", + "name": "BT_LOG_SDP_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_SDP_TRACE_LEVEL_API", + "name": "BT_LOG_SDP_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_SDP_TRACE_LEVEL_EVENT", + "name": "BT_LOG_SDP_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_SDP_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_SDP_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_SDP_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_SDP_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": "Define BT trace level for SDP layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-sdp-layer-C:-esp-v6.0-esp-idf-components-bt-host-bluedroid-Kconfig.in-679", + "name": "BT_LOG_SDP_TRACE_LEVEL", + "title": "SDP layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_LOG_SDP_TRACE_LEVEL", + "name": "BT_LOG_SDP_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_GAP_TRACE_LEVEL_NONE", + "name": "BT_LOG_GAP_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_GAP_TRACE_LEVEL_ERROR", + "name": "BT_LOG_GAP_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_GAP_TRACE_LEVEL_WARNING", + "name": "BT_LOG_GAP_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_GAP_TRACE_LEVEL_API", + "name": "BT_LOG_GAP_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_GAP_TRACE_LEVEL_EVENT", + "name": "BT_LOG_GAP_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_GAP_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_GAP_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_GAP_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_GAP_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": "Define BT trace level for GAP layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-gap-layer-C:-esp-v6.0-esp-idf-components-bt-host-bluedroid-Kconfig.in-714", + "name": "BT_LOG_GAP_TRACE_LEVEL", + "title": "GAP layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_LOG_GAP_TRACE_LEVEL", + "name": "BT_LOG_GAP_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BNEP_TRACE_LEVEL_NONE", + "name": "BT_LOG_BNEP_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BNEP_TRACE_LEVEL_ERROR", + "name": "BT_LOG_BNEP_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BNEP_TRACE_LEVEL_WARNING", + "name": "BT_LOG_BNEP_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BNEP_TRACE_LEVEL_API", + "name": "BT_LOG_BNEP_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BNEP_TRACE_LEVEL_EVENT", + "name": "BT_LOG_BNEP_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BNEP_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_BNEP_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BNEP_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_BNEP_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": "Define BT trace level for BNEP layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-bnep-layer-C:-esp-v6.0-esp-idf-components-bt-host-bluedroid-Kconfig.in-749", + "name": "BT_LOG_BNEP_TRACE_LEVEL", + "title": "BNEP layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_LOG_BNEP_TRACE_LEVEL", + "name": "BT_LOG_BNEP_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_PAN_TRACE_LEVEL_NONE", + "name": "BT_LOG_PAN_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_PAN_TRACE_LEVEL_ERROR", + "name": "BT_LOG_PAN_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_PAN_TRACE_LEVEL_WARNING", + "name": "BT_LOG_PAN_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_PAN_TRACE_LEVEL_API", + "name": "BT_LOG_PAN_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_PAN_TRACE_LEVEL_EVENT", + "name": "BT_LOG_PAN_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_PAN_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_PAN_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_PAN_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_PAN_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": "Define BT trace level for PAN layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-pan-layer-C:-esp-v6.0-esp-idf-components-bt-host-bluedroid-Kconfig.in-784", + "name": "BT_LOG_PAN_TRACE_LEVEL", + "title": "PAN layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_LOG_PAN_TRACE_LEVEL", + "name": "BT_LOG_PAN_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_A2D_TRACE_LEVEL_NONE", + "name": "BT_LOG_A2D_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_A2D_TRACE_LEVEL_ERROR", + "name": "BT_LOG_A2D_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_A2D_TRACE_LEVEL_WARNING", + "name": "BT_LOG_A2D_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_A2D_TRACE_LEVEL_API", + "name": "BT_LOG_A2D_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_A2D_TRACE_LEVEL_EVENT", + "name": "BT_LOG_A2D_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_A2D_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_A2D_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_A2D_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_A2D_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": "Define BT trace level for A2D layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-a2d-layer-C:-esp-v6.0-esp-idf-components-bt-host-bluedroid-Kconfig.in-819", + "name": "BT_LOG_A2D_TRACE_LEVEL", + "title": "A2D layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_LOG_A2D_TRACE_LEVEL", + "name": "BT_LOG_A2D_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVDT_TRACE_LEVEL_NONE", + "name": "BT_LOG_AVDT_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVDT_TRACE_LEVEL_ERROR", + "name": "BT_LOG_AVDT_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVDT_TRACE_LEVEL_WARNING", + "name": "BT_LOG_AVDT_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVDT_TRACE_LEVEL_API", + "name": "BT_LOG_AVDT_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVDT_TRACE_LEVEL_EVENT", + "name": "BT_LOG_AVDT_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVDT_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_AVDT_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVDT_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_AVDT_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": "Define BT trace level for AVDT layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-avdt-layer-C:-esp-v6.0-esp-idf-components-bt-host-bluedroid-Kconfig.in-854", + "name": "BT_LOG_AVDT_TRACE_LEVEL", + "title": "AVDT layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_LOG_AVDT_TRACE_LEVEL", + "name": "BT_LOG_AVDT_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVCT_TRACE_LEVEL_NONE", + "name": "BT_LOG_AVCT_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVCT_TRACE_LEVEL_ERROR", + "name": "BT_LOG_AVCT_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVCT_TRACE_LEVEL_WARNING", + "name": "BT_LOG_AVCT_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVCT_TRACE_LEVEL_API", + "name": "BT_LOG_AVCT_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVCT_TRACE_LEVEL_EVENT", + "name": "BT_LOG_AVCT_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVCT_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_AVCT_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVCT_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_AVCT_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": "Define BT trace level for AVCT layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-avct-layer-C:-esp-v6.0-esp-idf-components-bt-host-bluedroid-Kconfig.in-889", + "name": "BT_LOG_AVCT_TRACE_LEVEL", + "title": "AVCT layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_LOG_AVCT_TRACE_LEVEL", + "name": "BT_LOG_AVCT_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVRC_TRACE_LEVEL_NONE", + "name": "BT_LOG_AVRC_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVRC_TRACE_LEVEL_ERROR", + "name": "BT_LOG_AVRC_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVRC_TRACE_LEVEL_WARNING", + "name": "BT_LOG_AVRC_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVRC_TRACE_LEVEL_API", + "name": "BT_LOG_AVRC_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVRC_TRACE_LEVEL_EVENT", + "name": "BT_LOG_AVRC_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVRC_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_AVRC_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVRC_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_AVRC_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": "Define BT trace level for AVRC layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-avrc-layer-C:-esp-v6.0-esp-idf-components-bt-host-bluedroid-Kconfig.in-924", + "name": "BT_LOG_AVRC_TRACE_LEVEL", + "title": "AVRC layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_LOG_AVRC_TRACE_LEVEL", + "name": "BT_LOG_AVRC_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_MCA_TRACE_LEVEL_NONE", + "name": "BT_LOG_MCA_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_MCA_TRACE_LEVEL_ERROR", + "name": "BT_LOG_MCA_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_MCA_TRACE_LEVEL_WARNING", + "name": "BT_LOG_MCA_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_MCA_TRACE_LEVEL_API", + "name": "BT_LOG_MCA_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_MCA_TRACE_LEVEL_EVENT", + "name": "BT_LOG_MCA_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_MCA_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_MCA_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_MCA_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_MCA_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": "Define BT trace level for MCA layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-mca-layer-C:-esp-v6.0-esp-idf-components-bt-host-bluedroid-Kconfig.in-959", + "name": "BT_LOG_MCA_TRACE_LEVEL", + "title": "MCA layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_LOG_MCA_TRACE_LEVEL", + "name": "BT_LOG_MCA_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_HID_TRACE_LEVEL_NONE", + "name": "BT_LOG_HID_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_HID_TRACE_LEVEL_ERROR", + "name": "BT_LOG_HID_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_HID_TRACE_LEVEL_WARNING", + "name": "BT_LOG_HID_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_HID_TRACE_LEVEL_API", + "name": "BT_LOG_HID_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_HID_TRACE_LEVEL_EVENT", + "name": "BT_LOG_HID_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_HID_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_HID_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_HID_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_HID_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": "Define BT trace level for HID layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-hid-layer-C:-esp-v6.0-esp-idf-components-bt-host-bluedroid-Kconfig.in-994", + "name": "BT_LOG_HID_TRACE_LEVEL", + "title": "HID layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_LOG_HID_TRACE_LEVEL", + "name": "BT_LOG_HID_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_APPL_TRACE_LEVEL_NONE", + "name": "BT_LOG_APPL_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_APPL_TRACE_LEVEL_ERROR", + "name": "BT_LOG_APPL_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_APPL_TRACE_LEVEL_WARNING", + "name": "BT_LOG_APPL_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_APPL_TRACE_LEVEL_API", + "name": "BT_LOG_APPL_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_APPL_TRACE_LEVEL_EVENT", + "name": "BT_LOG_APPL_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_APPL_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_APPL_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_APPL_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_APPL_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": "Define BT trace level for APPL layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-appl-layer-C:-esp-v6.0-esp-idf-components-bt-host-bluedroid-Kconfig.in-1029", + "name": "BT_LOG_APPL_TRACE_LEVEL", + "title": "APPL layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_LOG_APPL_TRACE_LEVEL", + "name": "BT_LOG_APPL_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_GATT_TRACE_LEVEL_NONE", + "name": "BT_LOG_GATT_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_GATT_TRACE_LEVEL_ERROR", + "name": "BT_LOG_GATT_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_GATT_TRACE_LEVEL_WARNING", + "name": "BT_LOG_GATT_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_GATT_TRACE_LEVEL_API", + "name": "BT_LOG_GATT_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_GATT_TRACE_LEVEL_EVENT", + "name": "BT_LOG_GATT_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_GATT_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_GATT_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_GATT_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_GATT_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": "Define BT trace level for GATT layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-gatt-layer-C:-esp-v6.0-esp-idf-components-bt-host-bluedroid-Kconfig.in-1064", + "name": "BT_LOG_GATT_TRACE_LEVEL", + "title": "GATT layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_LOG_GATT_TRACE_LEVEL", + "name": "BT_LOG_GATT_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_SMP_TRACE_LEVEL_NONE", + "name": "BT_LOG_SMP_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_SMP_TRACE_LEVEL_ERROR", + "name": "BT_LOG_SMP_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_SMP_TRACE_LEVEL_WARNING", + "name": "BT_LOG_SMP_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_SMP_TRACE_LEVEL_API", + "name": "BT_LOG_SMP_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_SMP_TRACE_LEVEL_EVENT", + "name": "BT_LOG_SMP_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_SMP_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_SMP_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_SMP_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_SMP_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": "Define BT trace level for SMP layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-smp-layer-C:-esp-v6.0-esp-idf-components-bt-host-bluedroid-Kconfig.in-1099", + "name": "BT_LOG_SMP_TRACE_LEVEL", + "title": "SMP layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_LOG_SMP_TRACE_LEVEL", + "name": "BT_LOG_SMP_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTIF_TRACE_LEVEL_NONE", + "name": "BT_LOG_BTIF_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTIF_TRACE_LEVEL_ERROR", + "name": "BT_LOG_BTIF_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTIF_TRACE_LEVEL_WARNING", + "name": "BT_LOG_BTIF_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTIF_TRACE_LEVEL_API", + "name": "BT_LOG_BTIF_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTIF_TRACE_LEVEL_EVENT", + "name": "BT_LOG_BTIF_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTIF_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_BTIF_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTIF_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_BTIF_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": "Define BT trace level for BTIF layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-btif-layer-C:-esp-v6.0-esp-idf-components-bt-host-bluedroid-Kconfig.in-1134", + "name": "BT_LOG_BTIF_TRACE_LEVEL", + "title": "BTIF layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_LOG_BTIF_TRACE_LEVEL", + "name": "BT_LOG_BTIF_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTC_TRACE_LEVEL_NONE", + "name": "BT_LOG_BTC_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTC_TRACE_LEVEL_ERROR", + "name": "BT_LOG_BTC_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTC_TRACE_LEVEL_WARNING", + "name": "BT_LOG_BTC_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTC_TRACE_LEVEL_API", + "name": "BT_LOG_BTC_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTC_TRACE_LEVEL_EVENT", + "name": "BT_LOG_BTC_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTC_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_BTC_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTC_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_BTC_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": "Define BT trace level for BTC layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-btc-layer-C:-esp-v6.0-esp-idf-components-bt-host-bluedroid-Kconfig.in-1169", + "name": "BT_LOG_BTC_TRACE_LEVEL", + "title": "BTC layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_LOG_BTC_TRACE_LEVEL", + "name": "BT_LOG_BTC_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_OSI_TRACE_LEVEL_NONE", + "name": "BT_LOG_OSI_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_OSI_TRACE_LEVEL_ERROR", + "name": "BT_LOG_OSI_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_OSI_TRACE_LEVEL_WARNING", + "name": "BT_LOG_OSI_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_OSI_TRACE_LEVEL_API", + "name": "BT_LOG_OSI_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_OSI_TRACE_LEVEL_EVENT", + "name": "BT_LOG_OSI_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_OSI_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_OSI_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_OSI_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_OSI_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": "Define BT trace level for OSI layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-osi-layer-C:-esp-v6.0-esp-idf-components-bt-host-bluedroid-Kconfig.in-1204", + "name": "BT_LOG_OSI_TRACE_LEVEL", + "title": "OSI layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_LOG_OSI_TRACE_LEVEL", + "name": "BT_LOG_OSI_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BLUFI_TRACE_LEVEL_NONE", + "name": "BT_LOG_BLUFI_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BLUFI_TRACE_LEVEL_ERROR", + "name": "BT_LOG_BLUFI_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BLUFI_TRACE_LEVEL_WARNING", + "name": "BT_LOG_BLUFI_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BLUFI_TRACE_LEVEL_API", + "name": "BT_LOG_BLUFI_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BLUFI_TRACE_LEVEL_EVENT", + "name": "BT_LOG_BLUFI_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BLUFI_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_BLUFI_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BLUFI_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_BLUFI_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": "Define BT trace level for BLUFI layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-blufi-layer-C:-esp-v6.0-esp-idf-components-bt-host-bluedroid-Kconfig.in-1239", + "name": "BT_LOG_BLUFI_TRACE_LEVEL", + "title": "BLUFI layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_LOG_BLUFI_TRACE_LEVEL", + "name": "BT_LOG_BLUFI_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-C:-esp-v6.0-esp-idf-components-bt-host-bluedroid-Kconfig.in-536", + "title": "BT DEBUG LOG LEVEL", + "type": "menu" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED", + "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.", + "id": "BT_ACL_CONNECTIONS", + "name": "BT_ACL_CONNECTIONS", + "range": null, + "title": "BT/BLE MAX ACL CONNECTIONS", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_BLE_ENABLED && BT_BLUEDROID_ENABLED", + "help": "Enable this option if there are multiple connections", + "id": "BT_MULTI_CONNECTION_ENBALE", + "name": "BT_MULTI_CONNECTION_ENBALE", + "range": null, + "title": "Enable BLE multi-connections", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This select can save the internal RAM if there have the PSRAM", + "id": "BT_ALLOCATION_FROM_SPIRAM_FIRST", + "name": "BT_ALLOCATION_FROM_SPIRAM_FIRST", + "range": null, + "title": "BT/BLE will first malloc the memory from the PSRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This select can make the allocation of memory will become more flexible", + "id": "BT_BLE_DYNAMIC_ENV_MEMORY", + "name": "BT_BLE_DYNAMIC_ENV_MEMORY", + "range": null, + "title": "Use dynamic memory allocation in BT/BLE stack", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_SMP_ENABLE", + "name": "BT_SMP_ENABLE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_SMP_ENABLE && BT_BLUEDROID_ENABLED", + "help": "The number of security records for peer devices.", + "id": "BT_SMP_MAX_BONDS", + "name": "BT_SMP_MAX_BONDS", + "range": null, + "title": "BT/BLE maximum bond device count", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLE_ENABLED && BT_BLUEDROID_ENABLED", + "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", + "id": "BT_BLE_ACT_SCAN_REP_ADV_SCAN", + "name": "BT_BLE_ACT_SCAN_REP_ADV_SCAN", + "range": null, + "title": "Report adv data and scan response individually when BLE active scan", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED", + "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.", + "id": "BT_MAX_DEVICE_NAME_LEN", + "name": "BT_MAX_DEVICE_NAME_LEN", + "range": null, + "title": "length of bluetooth device name", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_BLE_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This set RPA timeout of Controller and Host.\nDefault is 900 s (15 minutes). Range is 1 s to 1 hour (3600 s).", + "id": "BT_BLE_RPA_TIMEOUT", + "name": "BT_BLE_RPA_TIMEOUT", + "range": null, + "title": "Timeout of resolvable private address", + "type": "int" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BT_BLE_50_EXTEND_ADV_EN && BT_BLUEDROID_ENABLED", + "help": "This enables BLE periodic advertising", + "id": "BT_BLE_50_PERIODIC_ADV_EN", + "name": "BT_BLE_50_PERIODIC_ADV_EN", + "range": null, + "title": "Enable BLE periodic advertising", + "type": "bool" + } + ], + "depends_on": "BT_BLE_50_FEATURES_SUPPORTED && BT_BLUEDROID_ENABLED", + "help": "This enables BLE extend advertising", + "id": "BT_BLE_50_EXTEND_ADV_EN", + "name": "BT_BLE_50_EXTEND_ADV_EN", + "range": null, + "title": "Enable BLE extend advertising", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_BLE_50_EXTEND_SCAN_EN && BT_BLUEDROID_ENABLED", + "help": "This enables BLE periodic advertising sync", + "id": "BT_BLE_50_EXTEND_SYNC_EN", + "name": "BT_BLE_50_EXTEND_SYNC_EN", + "range": null, + "title": "Enable BLE periodic advertising sync", + "type": "bool" + } + ], + "depends_on": "BT_BLE_50_FEATURES_SUPPORTED && BT_BLUEDROID_ENABLED", + "help": "This enables BLE extend scan", + "id": "BT_BLE_50_EXTEND_SCAN_EN", + "name": "BT_BLE_50_EXTEND_SCAN_EN", + "range": null, + "title": "Enable BLE extend scan", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLE_50_FEATURES_SUPPORTED && BT_BLUEDROID_ENABLED", + "help": "This enables BLE 5.0 direct test mode", + "id": "BT_BLE_50_DTM_TEST_EN", + "name": "BT_BLE_50_DTM_TEST_EN", + "range": null, + "title": "Enable BLE 5.0 DTM test", + "type": "bool" + } + ], + "depends_on": "BT_BLE_ENABLED && ((BT_CONTROLLER_ENABLED && SOC_BLE_50_SUPPORTED) || BT_CONTROLLER_DISABLED) && BT_BLUEDROID_ENABLED", + "help": "Enabling this option activates BLE 5.0 features.\nThis option is universally supported in chips that support BLE, except for ESP32.\nBLE 4.2 and BLE 5.0 cannot be used simultaneously.", + "id": "BT_BLE_50_FEATURES_SUPPORTED", + "is_menuconfig": true, + "name": "BT_BLE_50_FEATURES_SUPPORTED", + "range": null, + "title": "Enable BLE 5.0 and above features(please disable BLE 4.2 if enable BLE 5.0)", + "type": "menu" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLE_50_PERIODIC_ADV_EN && ((BT_CONTROLLER_ENABLED && SOC_ESP_NIMBLE_CONTROLLER) || BT_CONTROLLER_DISABLED) && BT_BLUEDROID_ENABLED", + "help": "This enables BLE periodic advertising sync transfer feature", + "id": "BT_BLE_FEAT_PERIODIC_ADV_SYNC_TRANSFER", + "name": "BT_BLE_FEAT_PERIODIC_ADV_SYNC_TRANSFER", + "range": null, + "title": "Enable BLE periodic advertising sync transfer feature", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLE_50_PERIODIC_ADV_EN && ((BT_CONTROLLER_ENABLED && SOC_ESP_NIMBLE_CONTROLLER) || BT_CONTROLLER_DISABLED) && BT_BLUEDROID_ENABLED", + "help": "Enable the periodic advertising enhancements", + "id": "BT_BLE_FEAT_PERIODIC_ADV_ENH", + "name": "BT_BLE_FEAT_PERIODIC_ADV_ENH", + "range": null, + "title": "Enable periodic adv enhancements(adi support)", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLE_50_EXTEND_SYNC_EN && ((BT_CONTROLLER_ENABLED && SOC_ESP_NIMBLE_CONTROLLER) || BT_CONTROLLER_DISABLED) && BT_BLUEDROID_ENABLED", + "help": "Enable the create sync enhancements", + "id": "BT_BLE_FEAT_CREATE_SYNC_ENH", + "name": "BT_BLE_FEAT_CREATE_SYNC_ENH", + "range": null, + "title": "Enable create sync enhancements(reporting disable and duplicate filtering enable support)", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLE_50_EXTEND_SYNC_EN && BT_BLUEDROID_ENABLED", + "help": "Set the maximum retry count when periodic advertising create sync fails\nwith error code 0x3E (Connection Failed to be Established).\nSet to 0 to disable retry. Default is 3.", + "id": "BT_BLE_FEAT_CREATE_SYNC_RETRY_MAX", + "name": "BT_BLE_FEAT_CREATE_SYNC_RETRY_MAX", + "range": null, + "title": "Maximum retry count for periodic advertising create sync", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_BLE_FEAT_ISO_EN && BT_BLUEDROID_ENABLED", + "help": "Enable iso 6.0 feature", + "id": "BT_BLE_FEAT_ISO_60_EN", + "name": "BT_BLE_FEAT_ISO_60_EN", + "range": null, + "title": "Enable ISO v6.0 feature", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLE_FEAT_ISO_EN && BT_BLUEDROID_ENABLED", + "help": "Enable BLE 5.2 BIG brocaster", + "id": "BT_BLE_FEAT_ISO_BIG_BROCASTER", + "name": "BT_BLE_FEAT_ISO_BIG_BROCASTER", + "range": null, + "title": "Enable BLE iso BIG brocaster", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLE_FEAT_ISO_EN && BT_BLUEDROID_ENABLED", + "help": "Enable BLE 5.2 BIG syncer", + "id": "BT_BLE_FEAT_ISO_BIG_SYNCER", + "name": "BT_BLE_FEAT_ISO_BIG_SYNCER", + "range": null, + "title": "Enable BLE iso BIG syncer", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLE_FEAT_ISO_EN && (BT_BLE_FEAT_ISO_BIG_BROCASTER || BT_BLE_FEAT_ISO_BIG_SYNCER) && BT_BLUEDROID_ENABLED", + "help": "Enable BLE 5.2 CIG peripheral", + "id": "BT_BLE_ISO_BIS_MAX_COUNT", + "name": "BT_BLE_ISO_BIS_MAX_COUNT", + "range": null, + "title": "Maximum bis count", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_BLE_FEAT_ISO_EN && BT_BLUEDROID_ENABLED", + "help": "Enable BLE 5.2 CIG central", + "id": "BT_BLE_FEAT_ISO_CIG_CENTRAL", + "name": "BT_BLE_FEAT_ISO_CIG_CENTRAL", + "range": null, + "title": "Enable BLE iso CIG central", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLE_FEAT_ISO_EN && BT_BLUEDROID_ENABLED", + "help": "Enable BLE 5.2 CIG peripheral", + "id": "BT_BLE_FEAT_ISO_CIG_PERIPHERAL", + "name": "BT_BLE_FEAT_ISO_CIG_PERIPHERAL", + "range": null, + "title": "Enable BLE iso CIG peripheral", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLE_FEAT_ISO_EN && (BT_BLE_FEAT_ISO_CIG_CENTRAL || BT_BLE_FEAT_ISO_CIG_PERIPHERAL) && BT_BLUEDROID_ENABLED", + "help": "Enable BLE 5.2 CIG peripheral", + "id": "BT_BLE_ISO_CIS_MAX_COUNT", + "name": "BT_BLE_ISO_CIS_MAX_COUNT", + "range": null, + "title": "Maximum cis count", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Enable ISO standard flow control", + "id": "BT_BLE_ISO_STD_FLOW_CTRL", + "name": "BT_BLE_ISO_STD_FLOW_CTRL", + "range": null, + "title": "ISO standard flow control", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Enable ISO non-standard flow control", + "id": "BT_BLE_ISO_NON_STD_FLOW_CTRL", + "name": "BT_BLE_ISO_NON_STD_FLOW_CTRL", + "range": null, + "title": "ISO non-standard flow control", + "type": "bool" + } + ], + "depends_on": "BT_BLE_FEAT_ISO_EN && BT_BLUEDROID_ENABLED", + "help": "Select ISO flow control type", + "id": "component-config-bluetooth-bluedroid-options-enable-ble-5-2-iso-feature-select-iso-flow-control-type-C:-esp-v6.0-esp-idf-components-bt-host-bluedroid-Kconfig.in-1489", + "name": "BT_BLE_ISO_FLOW_CONTROL", + "title": "Select ISO flow control type", + "type": "choice" + } + ], + "depends_on": "BT_BLE_50_FEATURES_SUPPORTED && ((BT_CONTROLLER_ENABLED && SOC_BLE_AUDIO_SUPPORTED) || BT_CONTROLLER_DISABLED) && BT_BLUEDROID_ENABLED", + "help": "Enable BLE 5.2 iso", + "id": "BT_BLE_FEAT_ISO_EN", + "is_menuconfig": true, + "name": "BT_BLE_FEAT_ISO_EN", + "range": null, + "title": "Enable BLE 5.2 iso feature", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_BLE_FEAT_CTE_EN && BT_BLUEDROID_ENABLED", + "help": "Transmission of CTE in periodic advertising", + "id": "BT_BLE_FEAT_CTE_CONNECTIONLESS_EN", + "name": "BT_BLE_FEAT_CTE_CONNECTIONLESS_EN", + "range": null, + "title": "Enable BLE CTE connectionless feature", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLE_FEAT_CTE_EN && BT_BLUEDROID_ENABLED", + "help": "Transmission of CTE by ACL connection", + "id": "BT_BLE_FEAT_CTE_CONNECTION_EN", + "name": "BT_BLE_FEAT_CTE_CONNECTION_EN", + "range": null, + "title": "Enable BLE CTE connection feature", + "type": "bool" + } + ], + "depends_on": "BT_BLE_50_FEATURES_SUPPORTED && ((BT_CONTROLLER_ENABLED && SOC_BLE_CTE_SUPPORTED) || BT_CONTROLLER_DISABLED) && BT_BLUEDROID_ENABLED", + "help": "Enable BLE 5.1 CTE", + "id": "BT_BLE_FEAT_CTE_EN", + "is_menuconfig": true, + "name": "BT_BLE_FEAT_CTE_EN", + "range": null, + "title": "Enable BLE CTE feature", + "type": "menu" + }, + { + "children": [], + "depends_on": "BT_BLE_50_FEATURES_SUPPORTED && ((BT_CONTROLLER_ENABLED && SOC_BLE_POWER_CONTROL_SUPPORTED) || BT_CONTROLLER_DISABLED) && BT_BLUEDROID_ENABLED", + "help": "Enable BLE power control feature", + "id": "BT_BLE_FEAT_POWER_CONTROL", + "name": "BT_BLE_FEAT_POWER_CONTROL", + "range": null, + "title": "Enable BLE power control feature", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLE_50_FEATURES_SUPPORTED && ((BT_CONTROLLER_ENABLED && SOC_BLE_SUBRATE_SUPPORTED) || BT_CONTROLLER_DISABLED) && BT_BLUEDROID_ENABLED", + "help": "Enable BLE connection subrating feature", + "id": "BT_BLE_FEAT_CONN_SUBRATING", + "name": "BT_BLE_FEAT_CONN_SUBRATING", + "range": null, + "title": "Enable BLE connection subrating feature", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLE_50_FEATURES_SUPPORTED && ((BT_CONTROLLER_ENABLED && SOC_BLE_PERIODIC_ADV_WITH_RESPONSE) || BT_CONTROLLER_DISABLED) && BT_BLUEDROID_ENABLED", + "help": "Enable BLE Periodic Advertisement with Response(PAwR) feature", + "id": "BT_BLE_FEAT_PAWR_EN", + "name": "BT_BLE_FEAT_PAWR_EN", + "range": null, + "title": "Enable Periodic Advertisement with Response(PAwR)", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLE_50_FEATURES_SUPPORTED && ((BT_CONTROLLER_ENABLED && SOC_BLE_ADV_CODING_SELECT_SUPPORTED) || BT_CONTROLLER_DISABLED) && BT_BLUEDROID_ENABLED", + "help": "Enable Advertising Coding Selection", + "id": "BT_BLE_FEAT_ADV_CODING_SELECTION", + "name": "BT_BLE_FEAT_ADV_CODING_SELECTION", + "range": null, + "title": "Enable Advertising Coding Selection", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLE_50_FEATURES_SUPPORTED && ((BT_CONTROLLER_ENABLED && SOC_BLE_CHANNEL_SOUNDING_SUPPORTED) || BT_CONTROLLER_DISABLED) && BT_BLUEDROID_ENABLED", + "help": "Enable BLE channel sounding", + "id": "BT_BLE_FEAT_CHANNEL_SOUNDING", + "name": "BT_BLE_FEAT_CHANNEL_SOUNDING", + "range": null, + "title": "Enable BLE channel sounding", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_BLE_42_FEATURES_SUPPORTED && BT_BLUEDROID_ENABLED", + "help": "This enables BLE 4.2 direct test mode", + "id": "BT_BLE_42_DTM_TEST_EN", + "name": "BT_BLE_42_DTM_TEST_EN", + "range": null, + "title": "Enable BLE 4.2 DTM test", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLE_42_FEATURES_SUPPORTED && BT_BLUEDROID_ENABLED", + "help": "This enables BLE v4.2 advertising", + "id": "BT_BLE_42_ADV_EN", + "name": "BT_BLE_42_ADV_EN", + "range": null, + "title": "Enable BLE 4.2 advertising", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLE_42_FEATURES_SUPPORTED && BT_BLUEDROID_ENABLED", + "help": "This enables BLE v4.2 scan", + "id": "BT_BLE_42_SCAN_EN", + "name": "BT_BLE_42_SCAN_EN", + "range": null, + "title": "Enable BLE 4.2 scan", + "type": "bool" + } + ], + "depends_on": "BT_BLE_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This enables BLE 4.2 features.\nThis option is universally supported by all ESP chips with BLE capabilities.\nBLE 4.2 and BLE 5.0 cannot be used simultaneously.", + "id": "BT_BLE_42_FEATURES_SUPPORTED", + "is_menuconfig": true, + "name": "BT_BLE_42_FEATURES_SUPPORTED", + "range": null, + "title": "Enable BLE 4.2 features(please disable BLE 5.0 if enable BLE 4.2)", + "type": "menu" + }, + { + "children": [], + "depends_on": "BT_BLE_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This enables BLE vendor HCI command and event", + "id": "BT_BLE_VENDOR_HCI_EN", + "name": "BT_BLE_VENDOR_HCI_EN", + "range": null, + "title": "Enable BLE Vendor HCI command and event", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLE_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This enable BLE high duty advertising interval feature", + "id": "BT_BLE_HIGH_DUTY_ADV_INTERVAL", + "name": "BT_BLE_HIGH_DUTY_ADV_INTERVAL", + "range": null, + "title": "Enable BLE high duty advertising interval feature", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED", + "help": "This enables abort when memory allocation fails", + "id": "BT_ABORT_WHEN_ALLOCATION_FAILS", + "name": "BT_ABORT_WHEN_ALLOCATION_FAILS", + "range": null, + "title": "Abort when memory allocation fails in BT/BLE stack", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED", + "id": "component-config-bluetooth-bluedroid-options-C:-esp-v6.0-esp-idf-components-bt-Kconfig-57", + "title": "Bluedroid Options", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_NIMBLE_MEM_ALLOC_MODE_INTERNAL", + "name": "BT_NIMBLE_MEM_ALLOC_MODE_INTERNAL", + "range": null, + "title": "Internal memory", + "type": "bool" + }, + { + "children": [], + "depends_on": "(SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC) && ", + "help": null, + "id": "BT_NIMBLE_MEM_ALLOC_MODE_EXTERNAL", + "name": "BT_NIMBLE_MEM_ALLOC_MODE_EXTERNAL", + "range": null, + "title": "External SPIRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_NIMBLE_MEM_ALLOC_MODE_DEFAULT", + "name": "BT_NIMBLE_MEM_ALLOC_MODE_DEFAULT", + "range": null, + "title": "Default alloc mode", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP32_IRAM_AS_8BIT_ACCESSIBLE_MEMORY && ", + "help": "Allows use of IRAM memory region as 8-bit accessible region.\n\nEvery unaligned (8bit or 16bit) access will result in an\nexception and incur penalty of certain clock cycles per\nunaligned read/write.", + "id": "BT_NIMBLE_MEM_ALLOC_MODE_IRAM_8BIT", + "name": "BT_NIMBLE_MEM_ALLOC_MODE_IRAM_8BIT", + "range": null, + "title": "Internal IRAM", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "Allocation strategy for NimBLE host stack. 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", + "id": "component-config-bluetooth-nimble-options-general-memory-allocation-strategy-C:-esp-v6.0-esp-idf-components-bt-host-nimble-Kconfig.in-2", + "name": "BT_NIMBLE_MEM_ALLOC_MODE", + "title": "Memory allocation strategy", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": null, + "id": "BT_NIMBLE_PINNED_TO_CORE", + "name": "BT_NIMBLE_PINNED_TO_CORE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_NIMBLE_PINNED_TO_CORE_0", + "name": "BT_NIMBLE_PINNED_TO_CORE_0", + "range": null, + "title": "Core 0 (PRO CPU)", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_UNICORE && ", + "help": null, + "id": "BT_NIMBLE_PINNED_TO_CORE_1", + "name": "BT_NIMBLE_PINNED_TO_CORE_1", + "range": null, + "title": "Core 1 (APP CPU)", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_ENABLED && !FREERTOS_UNICORE && BT_NIMBLE_ENABLED", + "help": "The CPU core on which NimBLE host will run. You can choose\nCore 0 or Core 1. Cannot specify no-affinity", + "id": "component-config-bluetooth-nimble-options-general-the-cpu-core-on-which-nimble-host-will-run-C:-esp-v6.0-esp-idf-components-bt-host-nimble-Kconfig.in-44", + "name": "BT_NIMBLE_PINNED_TO_CORE_CHOICE", + "title": "The CPU core on which NimBLE host will run", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "This configures stack size of NimBLE host task", + "id": "BT_NIMBLE_HOST_TASK_STACK_SIZE", + "name": "BT_NIMBLE_HOST_TASK_STACK_SIZE", + "range": null, + "title": "NimBLE Host task stack size", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "This option is used to distinguish whether a previous version\nof VHCI is being used", + "id": "BT_NIMBLE_LEGACY_VHCI_ENABLE", + "name": "BT_NIMBLE_LEGACY_VHCI_ENABLE", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_ENABLED", + "id": "component-config-bluetooth-nimble-options-general-C:-esp-v6.0-esp-idf-components-bt-host-nimble-Kconfig.in-1", + "title": "General", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "Enables BLE Central role", + "id": "BT_NIMBLE_ROLE_CENTRAL", + "name": "BT_NIMBLE_ROLE_CENTRAL", + "range": null, + "title": "Enable BLE Central role", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "Enable BLE Peripheral role", + "id": "BT_NIMBLE_ROLE_PERIPHERAL", + "name": "BT_NIMBLE_ROLE_PERIPHERAL", + "range": null, + "title": "Enable BLE Peripheral role", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "Enables BLE broadcaster role", + "id": "BT_NIMBLE_ROLE_BROADCASTER", + "name": "BT_NIMBLE_ROLE_BROADCASTER", + "range": null, + "title": "Enable BLE Broadcaster role", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "Enables BLE Observer role", + "id": "BT_NIMBLE_ROLE_OBSERVER", + "name": "BT_NIMBLE_ROLE_OBSERVER", + "range": null, + "title": "Enable BLE Observer role", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ROLE_CENTRAL && BT_NIMBLE_ENABLED", + "help": "Enables support for GATT Client", + "id": "BT_NIMBLE_GATT_CLIENT", + "name": "BT_NIMBLE_GATT_CLIENT", + "range": null, + "title": "Enable BLE GATT Client support", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ROLE_PERIPHERAL && BT_NIMBLE_ENABLED", + "help": "Enables support for GATT Server", + "id": "BT_NIMBLE_GATT_SERVER", + "name": "BT_NIMBLE_GATT_SERVER", + "range": null, + "title": "Enable BLE GATT Server support", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_ENABLED", + "id": "component-config-bluetooth-nimble-options-roles-and-profiles-C:-esp-v6.0-esp-idf-components-bt-host-nimble-Kconfig.in-77", + "title": "Roles and Profiles", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_SECURITY_ENABLE && BT_NIMBLE_ENABLED", + "help": "Enable security manager legacy pairing", + "id": "BT_NIMBLE_SM_LEGACY", + "name": "BT_NIMBLE_SM_LEGACY", + "range": null, + "title": "Security manager legacy pairing", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_SM_SC && BT_NIMBLE_SECURITY_ENABLE && BT_NIMBLE_ENABLED", + "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.", + "id": "BT_NIMBLE_SM_SC_DEBUG_KEYS", + "name": "BT_NIMBLE_SM_SC_DEBUG_KEYS", + "range": null, + "title": "Use predefined public-private key pair", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_SECURITY_ENABLE && BT_NIMBLE_ENABLED", + "help": "Enable security manager secure connections", + "id": "BT_NIMBLE_SM_SC", + "name": "BT_NIMBLE_SM_SC", + "range": null, + "title": "Security manager secure connections (4.2)", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_SECURITY_ENABLE && BT_NIMBLE_ENABLED", + "help": "Enable encryption connection", + "id": "BT_NIMBLE_LL_CFG_FEAT_LE_ENCRYPTION", + "name": "BT_NIMBLE_LL_CFG_FEAT_LE_ENCRYPTION", + "range": null, + "title": "Enable LE encryption", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_SECURITY_ENABLE && BT_NIMBLE_ENABLED", + "help": "LE Security Mode 1 Levels:\n1. No Security\n2. Unauthenticated pairing with encryption\n3. Authenticated pairing with encryption\n4. Authenticated LE Secure Connections pairing with encryption using a 128-bit strength encryption key.", + "id": "BT_NIMBLE_SM_LVL", + "name": "BT_NIMBLE_SM_LVL", + "range": null, + "title": "Security level", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_SECURITY_ENABLE && BT_NIMBLE_ENABLED", + "help": "Enable Secure Connections Only Mode", + "id": "BT_NIMBLE_SM_SC_ONLY", + "name": "BT_NIMBLE_SM_SC_ONLY", + "range": null, + "title": "Enable Secure Connections Only Mode", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_SECURITY_ENABLE && BT_NIMBLE_ENABLED", + "help": "There are tracking risks associated with using a fixed or static IRK.\nIf enabled this option, NimBLE will assign a new randomly-generated IRK\nwhen all pairing and bonding records are deleted. This would decrease the ability\nof a previously paired peer to be used to determine whether a device\nwith which it previously shared an IRK is within range.", + "id": "BT_NIMBLE_SMP_ID_RESET", + "name": "BT_NIMBLE_SMP_ID_RESET", + "range": null, + "title": "Reset device identity when all bonding records are deleted", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_SECURITY_ENABLE && BT_NIMBLE_ENABLED", + "help": "Enable this flag to make bonding persistent across device reboots", + "id": "BT_NIMBLE_NVS_PERSIST", + "name": "BT_NIMBLE_NVS_PERSIST", + "range": null, + "title": "Persist the BLE Bonding keys in NVS", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_SECURITY_ENABLE && BT_NIMBLE_ENABLED", + "help": "Defines maximum number of bonds to save for peer security and our security", + "id": "BT_NIMBLE_MAX_BONDS", + "name": "BT_NIMBLE_MAX_BONDS", + "range": null, + "title": "Maximum number of bonds to save across reboots", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_SECURITY_ENABLE && BT_NIMBLE_ENABLED", + "help": "Use this option to let stack internally handle the request for repeat pairing.\nEnabling this option will delete the pairing of the device and stack will NOT post any event\nto application. If this option is disabled, application will get BLE_GAP_EVENT_REPEAT_PAIRING\nevent.", + "id": "BT_NIMBLE_HANDLE_REPEAT_PAIRING_DELETION", + "name": "BT_NIMBLE_HANDLE_REPEAT_PAIRING_DELETION", + "range": null, + "title": "Enable stack handling of repeat pairing", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "Enable BLE sm feature", + "id": "BT_NIMBLE_SECURITY_ENABLE", + "is_menuconfig": true, + "name": "BT_NIMBLE_SECURITY_ENABLE", + "range": null, + "title": "Enable BLE SM feature", + "type": "menu" + } + ], + "depends_on": "BT_NIMBLE_ENABLED", + "id": "component-config-bluetooth-nimble-options-security-smp--C:-esp-v6.0-esp-idf-components-bt-host-nimble-Kconfig.in-122", + "title": "Security (SMP)", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "Time interval between RPA address change.", + "id": "BT_NIMBLE_RPA_TIMEOUT", + "name": "BT_NIMBLE_RPA_TIMEOUT", + "range": null, + "title": "RPA timeout in seconds", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "BLE Whitelist size", + "id": "BT_NIMBLE_WHITELIST_SIZE", + "name": "BT_NIMBLE_WHITELIST_SIZE", + "range": null, + "title": "BLE white list size", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLE_CONN_REATTEMPT && BT_NIMBLE_ENABLED", + "help": "Defines maximum number of connection reattempts.", + "id": "BT_NIMBLE_MAX_CONN_REATTEMPT", + "name": "BT_NIMBLE_MAX_CONN_REATTEMPT", + "range": null, + "title": "Maximum number connection reattempts", + "type": "int" + } + ], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "Enable to make the NimBLE host to reattempt GAP connection attempt in case of\nconnection establishment failure due to reason 0x3E.", + "id": "BT_NIMBLE_ENABLE_CONN_REATTEMPT", + "name": "BT_NIMBLE_ENABLE_CONN_REATTEMPT", + "range": null, + "title": "Enable connection reattempts on connection establishment error", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_HS_PVCY && IDF_TARGET_ESP32 && BT_NIMBLE_ENABLED", + "help": "Use this option to do host based Random Private Address resolution.\nThis option is valid only for ESP32", + "id": "BT_NIMBLE_HOST_BASED_PRIVACY", + "name": "BT_NIMBLE_HOST_BASED_PRIVACY", + "range": null, + "title": "Enable host based privacy for random address.", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "Enable this option to include host-side APIs related to BLE privacy.\nDisable it if your application does not require privacy features (such as\nRPA generation, resolving, or privacy-based pairing). Disabling this option\nexcludes privacy-related code from the host to reduce memory usage.", + "id": "BT_NIMBLE_HS_PVCY", + "name": "BT_NIMBLE_HS_PVCY", + "range": null, + "title": "Enable privacy related APIs", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && !IDF_TARGET_ESP32C2 && BT_NIMBLE_ENABLED", + "help": "This enables support for user to initiate a new connection with scan in progress", + "id": "BT_NIMBLE_HOST_ALLOW_CONNECT_WITH_SCAN", + "name": "BT_NIMBLE_HOST_ALLOW_CONNECT_WITH_SCAN", + "range": null, + "title": "Allow Connections with scanning in progress", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "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.", + "id": "BT_NIMBLE_HOST_QUEUE_CONG_CHECK", + "name": "BT_NIMBLE_HOST_QUEUE_CONG_CHECK", + "range": null, + "title": "BLE queue congestion check", + "type": "bool" + }, + { + "children": [], + "depends_on": "(BT_NIMBLE_ROLE_CENTRAL || BT_NIMBLE_ROLE_PERIPHERAL) && BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "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.", + "id": "BT_NIMBLE_MAX_CONNECTIONS", + "name": "BT_NIMBLE_MAX_CONNECTIONS", + "range": null, + "title": "Maximum number of concurrent connections", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "Defines maximum number of CCC descriptors to save", + "id": "BT_NIMBLE_MAX_CCCDS", + "name": "BT_NIMBLE_MAX_CCCDS", + "range": null, + "title": "Maximum number of CCC descriptors to save across reboots", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "Enable this option to choose mbedTLS instead of TinyCrypt for crypto\ncomputations.", + "id": "BT_NIMBLE_CRYPTO_STACK_MBEDTLS", + "name": "BT_NIMBLE_CRYPTO_STACK_MBEDTLS", + "range": null, + "title": "Override TinyCrypt with mbedTLS for crypto computations", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "BLE Host stop procedure timeout in milliseconds.", + "id": "BT_NIMBLE_HS_STOP_TIMEOUT_MS", + "name": "BT_NIMBLE_HS_STOP_TIMEOUT_MS", + "range": null, + "title": "BLE host stop timeout in msec", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "Set this option to use Esp Timer which has higher priority timer instead of FreeRTOS timer", + "id": "BT_NIMBLE_USE_ESP_TIMER", + "name": "BT_NIMBLE_USE_ESP_TIMER", + "range": null, + "title": "Enable Esp Timer for Nimble", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_HS_FLOW_CTRL && BT_NIMBLE_ENABLED", + "help": "Host flow control interval in msecs", + "id": "BT_NIMBLE_HS_FLOW_CTRL_ITVL", + "name": "BT_NIMBLE_HS_FLOW_CTRL_ITVL", + "range": null, + "title": "Host Flow control interval", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_HS_FLOW_CTRL && BT_NIMBLE_ENABLED", + "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", + "id": "BT_NIMBLE_HS_FLOW_CTRL_THRESH", + "name": "BT_NIMBLE_HS_FLOW_CTRL_THRESH", + "range": null, + "title": "Host Flow control threshold", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_HS_FLOW_CTRL && BT_NIMBLE_ENABLED", + "help": "Enable this option to send number-of-completed-packets event to\ncontroller after disconnection", + "id": "BT_NIMBLE_HS_FLOW_CTRL_TX_ON_DISCONNECT", + "name": "BT_NIMBLE_HS_FLOW_CTRL_TX_ON_DISCONNECT", + "range": null, + "title": "Host Flow control on disconnect", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_ENABLED && !SOC_ESP_NIMBLE_CONTROLLER && BT_NIMBLE_ENABLED", + "help": "Enable Host Flow control", + "id": "BT_NIMBLE_HS_FLOW_CTRL", + "name": "BT_NIMBLE_HS_FLOW_CTRL", + "range": null, + "title": "Enable Host Flow control", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_ENABLED", + "id": "component-config-bluetooth-nimble-options-gap-C:-esp-v6.0-esp-idf-components-bt-host-nimble-Kconfig.in-207", + "title": "GAP", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "(BT_NIMBLE_GATT_CLIENT || BT_NIMBLE_GATT_SERVER) && BT_NIMBLE_ENABLED", + "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()", + "id": "BT_NIMBLE_ATT_PREFERRED_MTU", + "name": "BT_NIMBLE_ATT_PREFERRED_MTU", + "range": null, + "title": "Preferred MTU size in octets", + "type": "int" + }, + { + "children": [], + "depends_on": "(BT_NIMBLE_GATT_CLIENT || BT_NIMBLE_GATT_SERVER) && BT_NIMBLE_ENABLED", + "help": "This is the default value of ATT Maximum prepare entries", + "id": "BT_NIMBLE_ATT_MAX_PREP_ENTRIES", + "name": "BT_NIMBLE_ATT_MAX_PREP_ENTRIES", + "range": null, + "title": "Max Prepare write entries", + "type": "int" + }, + { + "children": [], + "depends_on": "(BT_NIMBLE_GATT_CLIENT || BT_NIMBLE_GATT_SERVER) && BT_NIMBLE_ENABLED", + "help": "Maximum number of GATT client procedures that can be executed.", + "id": "BT_NIMBLE_GATT_MAX_PROCS", + "name": "BT_NIMBLE_GATT_MAX_PROCS", + "range": null, + "title": "Maximum number of GATT client procedures", + "type": "int" + }, + { + "children": [], + "depends_on": "(BT_NIMBLE_GATT_CLIENT || BT_NIMBLE_GATT_SERVER) && BT_NIMBLE_ENABLED", + "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.", + "id": "BT_NIMBLE_BLE_GATT_BLOB_TRANSFER", + "name": "BT_NIMBLE_BLE_GATT_BLOB_TRANSFER", + "range": null, + "title": "Blob transfer", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_GATT_CACHING && BT_NIMBLE_ENABLED", + "help": "Enable this option to include *included services* (e.g., services referenced by other services)\nin the GATT database cache. Disabling this will skip caching of included service entries.", + "id": "BT_NIMBLE_GATT_CACHING_INCLUDE_SERVICES", + "name": "BT_NIMBLE_GATT_CACHING_INCLUDE_SERVICES", + "range": null, + "title": "Include services in GATT caching", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "Enable GATT caching", + "id": "BT_NIMBLE_GATT_CACHING", + "is_menuconfig": true, + "name": "BT_NIMBLE_GATT_CACHING", + "range": null, + "title": "Enable GATT caching", + "type": "menu" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "Enable this option to start discovery for included service.", + "id": "BT_NIMBLE_INCL_SVC_DISCOVERY", + "name": "BT_NIMBLE_INCL_SVC_DISCOVERY", + "range": null, + "title": "Enable Included service discovery", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_GATT_CACHING && BT_NIMBLE_ENABLED", + "help": "Set this option to set the upper limit on number of connections to be cached.", + "id": "BT_NIMBLE_GATT_CACHING_MAX_CONNS", + "name": "BT_NIMBLE_GATT_CACHING_MAX_CONNS", + "range": null, + "title": "Maximum connections to be cached", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_GATT_CACHING && BT_NIMBLE_ENABLED", + "help": "Set this option to set the upper limit on number of services per connection to be cached.", + "id": "BT_NIMBLE_GATT_CACHING_MAX_SVCS", + "name": "BT_NIMBLE_GATT_CACHING_MAX_SVCS", + "range": null, + "title": "Maximum number of services per connection", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_GATT_CACHING && BT_NIMBLE_ENABLED", + "help": "Set this option to set the upper limit on number of included services per connection to be cached.", + "id": "BT_NIMBLE_GATT_CACHING_MAX_INCL_SVCS", + "name": "BT_NIMBLE_GATT_CACHING_MAX_INCL_SVCS", + "range": null, + "title": "Maximum number of included services per connection", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_GATT_CACHING && BT_NIMBLE_ENABLED", + "help": "Set this option to set the upper limit on number of characteristics per connection to be cached.", + "id": "BT_NIMBLE_GATT_CACHING_MAX_CHRS", + "name": "BT_NIMBLE_GATT_CACHING_MAX_CHRS", + "range": null, + "title": "Maximum number of characteristics per connection", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_GATT_CACHING && BT_NIMBLE_ENABLED", + "help": "Set this option to set the upper limit on number of descriptors per connection to be cached.", + "id": "BT_NIMBLE_GATT_CACHING_MAX_DSCS", + "name": "BT_NIMBLE_GATT_CACHING_MAX_DSCS", + "range": null, + "title": "Maximum number of descriptors per connection", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_GATT_CACHING && BT_NIMBLE_ENABLED", + "help": "When client receives ATT out-of-sync error message, it will not automatically start the discovery procedure\nto correct the invalid cache.", + "id": "BT_NIMBLE_GATT_CACHING_DISABLE_AUTO", + "name": "BT_NIMBLE_GATT_CACHING_DISABLE_AUTO", + "range": null, + "title": "Do not start discovery procedure automatically upon receiving Out of Sync", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_GATT_CACHING && BT_NIMBLE_ENABLED", + "help": "Enable this option to use associated address caching instead of performing service discovery.", + "id": "BT_NIMBLE_GATT_CACHING_ASSOC_ENABLE", + "name": "BT_NIMBLE_GATT_CACHING_ASSOC_ENABLE", + "range": null, + "title": "Enable association-based GATT caching", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_ENABLED", + "id": "component-config-bluetooth-nimble-options-gatt-att-C:-esp-v6.0-esp-idf-components-bt-host-nimble-Kconfig.in-353", + "title": "GATT / ATT", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "Defines maximum number of BLE Connection Oriented Channels. When set to (0), BLE COC is not compiled in", + "id": "BT_NIMBLE_L2CAP_COC_MAX_NUM", + "name": "BT_NIMBLE_L2CAP_COC_MAX_NUM", + "range": null, + "title": "Maximum number of connection oriented channels", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_L2CAP_COC_MAX_NUM >= 1 && BT_NIMBLE_ENABLED", + "help": "Enable Enhanced Credit Based Flow Control Mode", + "id": "BT_NIMBLE_L2CAP_ENHANCED_COC", + "name": "BT_NIMBLE_L2CAP_ENHANCED_COC", + "range": null, + "title": "L2CAP Enhanced Connection Oriented Channel", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_ENABLED", + "id": "component-config-bluetooth-nimble-options-l2cap-C:-esp-v6.0-esp-idf-components-bt-host-nimble-Kconfig.in-460", + "title": "L2CAP", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "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.", + "id": "BT_NIMBLE_MSYS_1_BLOCK_COUNT", + "name": "BT_NIMBLE_MSYS_1_BLOCK_COUNT", + "range": null, + "title": "MSYS_1 Block Count", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "Dynamic memory size of block 1", + "id": "BT_NIMBLE_MSYS_1_BLOCK_SIZE", + "name": "BT_NIMBLE_MSYS_1_BLOCK_SIZE", + "range": null, + "title": "MSYS_1 Block Size", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "Dynamic memory count for block 2", + "id": "BT_NIMBLE_MSYS_2_BLOCK_COUNT", + "name": "BT_NIMBLE_MSYS_2_BLOCK_COUNT", + "range": null, + "title": "MSYS_2 Block Count", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "Dynamic memory size of block 2", + "id": "BT_NIMBLE_MSYS_2_BLOCK_SIZE", + "name": "BT_NIMBLE_MSYS_2_BLOCK_SIZE", + "range": null, + "title": "MSYS_2 Block Size", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_LE_MSYS_INIT_IN_CONTROLLER && BT_NIMBLE_ENABLED", + "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.", + "id": "BT_NIMBLE_MSYS_BUF_FROM_HEAP", + "name": "BT_NIMBLE_MSYS_BUF_FROM_HEAP", + "range": null, + "title": "Get Msys Mbuf from heap", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "The number of ACL data buffers allocated for host.", + "id": "BT_NIMBLE_TRANSPORT_ACL_FROM_LL_COUNT", + "name": "BT_NIMBLE_TRANSPORT_ACL_FROM_LL_COUNT", + "range": null, + "title": "ACL Buffer count", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "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)", + "id": "BT_NIMBLE_TRANSPORT_ACL_SIZE", + "name": "BT_NIMBLE_TRANSPORT_ACL_SIZE", + "range": null, + "title": "Transport ACL Buffer size", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "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.", + "id": "BT_NIMBLE_TRANSPORT_EVT_SIZE", + "name": "BT_NIMBLE_TRANSPORT_EVT_SIZE", + "range": null, + "title": "Transport Event Buffer size", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "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", + "id": "BT_NIMBLE_TRANSPORT_EVT_COUNT", + "name": "BT_NIMBLE_TRANSPORT_EVT_COUNT", + "range": null, + "title": "Transport Event Buffer count", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "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", + "id": "BT_NIMBLE_TRANSPORT_EVT_DISCARD_COUNT", + "name": "BT_NIMBLE_TRANSPORT_EVT_DISCARD_COUNT", + "range": null, + "title": "Discardable Transport Event Buffer count", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "This is the service data unit buffer count for l2cap coc.", + "id": "BT_NIMBLE_L2CAP_COC_SDU_BUFF_COUNT", + "name": "BT_NIMBLE_L2CAP_COC_SDU_BUFF_COUNT", + "range": null, + "title": "L2cap coc Service Data Unit Buffer count", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_MEMPOOL_RUNTIME_ALLOC && BT_NIMBLE_ENABLED", + "help": "When this option is enabled, dynamically allocated blocks will not be freed\nbut will be reused instead. This ensures virtually no impact on performance\nwhile reducing the memory consumption of the mempool.", + "id": "BT_NIMBLE_MEMPOOL_BLOCK_REUSED", + "name": "BT_NIMBLE_MEMPOOL_BLOCK_REUSED", + "range": null, + "title": "Support block reuse for mempool runtime memory allocation", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_ENABLED && !SOC_ESP_NIMBLE_CONTROLLER && BT_NIMBLE_ENABLED", + "help": "When this option is enabled, mempool does not require pre-allocating memory.\nInstead, memory for each block will be dynamically allocated and released\nduring mempool usage. This can significantly reduce memory consumption\nafter mempool initialization, but may have some impact on performance.", + "id": "BT_NIMBLE_MEMPOOL_RUNTIME_ALLOC", + "name": "BT_NIMBLE_MEMPOOL_RUNTIME_ALLOC", + "range": null, + "title": "Support on-demand runtime memory allocation for mempool", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_ENABLED", + "id": "component-config-bluetooth-nimble-options-memory-settings-C:-esp-v6.0-esp-idf-components-bt-host-nimble-Kconfig.in-478", + "title": "Memory Settings", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", + "help": "Enable 2M-PHY", + "id": "BT_NIMBLE_LL_CFG_FEAT_LE_2M_PHY", + "name": "BT_NIMBLE_LL_CFG_FEAT_LE_2M_PHY", + "range": null, + "title": "Enable 2M Phy", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", + "help": "Enable coded-PHY", + "id": "BT_NIMBLE_LL_CFG_FEAT_LE_CODED_PHY", + "name": "BT_NIMBLE_LL_CFG_FEAT_LE_CODED_PHY", + "range": null, + "title": "Enable coded Phy", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_EXT_ADV && BT_NIMBLE_EXT_ADV && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", + "help": "Enable this option to use Extended Adv V2 command instead of V1.", + "id": "BT_NIMBLE_EXT_ADV_V2", + "name": "BT_NIMBLE_EXT_ADV_V2", + "range": null, + "title": "Enable support for extended adv v2", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_EXT_ADV && BT_NIMBLE_EXT_ADV && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", + "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.", + "id": "BT_NIMBLE_MAX_EXT_ADV_INSTANCES", + "name": "BT_NIMBLE_MAX_EXT_ADV_INSTANCES", + "range": null, + "title": "Maximum number of extended advertising instances.", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_EXT_ADV && BT_NIMBLE_EXT_ADV && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", + "help": "Defines the length of the extended adv data. The value should not\nexceed 1650.", + "id": "BT_NIMBLE_EXT_ADV_MAX_SIZE", + "name": "BT_NIMBLE_EXT_ADV_MAX_SIZE", + "range": null, + "title": "Maximum length of the advertising data.", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLE_PERIODIC_ADV && (!BT_CONTROLLER_ENABLED || SOC_BLE_PERIODIC_ADV_ENH_SUPPORTED) && BT_NIMBLE_EXT_ADV && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", + "help": "Enable the periodic advertising enhancements", + "id": "BT_NIMBLE_PERIODIC_ADV_ENH", + "name": "BT_NIMBLE_PERIODIC_ADV_ENH", + "range": null, + "title": "Periodic adv enhancements(adi support)", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLE_PERIODIC_ADV && BT_NIMBLE_EXT_ADV && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", + "help": "This enables controller transfer periodic sync events to host", + "id": "BT_NIMBLE_PERIODIC_ADV_SYNC_TRANSFER", + "name": "BT_NIMBLE_PERIODIC_ADV_SYNC_TRANSFER", + "range": null, + "title": "Enable Transfer Sync Events", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLE_PERIODIC_ADV && SOC_BLE_PERIODIC_ADV_WITH_RESPONSE && BT_NIMBLE_EXT_ADV && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", + "help": "This enables controller PAwR (Periodic Advertisement with Response).", + "id": "BT_NIMBLE_PERIODIC_ADV_WITH_RESPONSES", + "name": "BT_NIMBLE_PERIODIC_ADV_WITH_RESPONSES", + "range": null, + "title": "Enable Periodic Advertisement with Response (EXPERIMENTAL)", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_EXT_ADV && BT_NIMBLE_EXT_ADV && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", + "help": "Enable this option to start periodic advertisement.", + "id": "BT_NIMBLE_ENABLE_PERIODIC_ADV", + "name": "BT_NIMBLE_ENABLE_PERIODIC_ADV", + "range": null, + "title": "Enable periodic advertisement.", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", + "help": "Enable this option to do extended advertising. Extended advertising\nwill be supported from BLE 5.0 onwards.", + "id": "BT_NIMBLE_EXT_ADV", + "name": "BT_NIMBLE_EXT_ADV", + "range": null, + "title": "Enable extended advertising", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLE_PERIODIC_SYNC && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", + "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.", + "id": "BT_NIMBLE_MAX_PERIODIC_SYNCS", + "name": "BT_NIMBLE_MAX_PERIODIC_SYNCS", + "range": null, + "title": "Maximum number of periodic advertising syncs", + "type": "int" + }, + { + "children": [], + "depends_on": "SOC_ESP_NIMBLE_CONTROLLER && BT_NIMBLE_ENABLE_PERIODIC_SYNC && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", + "help": "Set this option to set the upper limit for number of periodic advertiser list.", + "id": "BT_NIMBLE_MAX_PERIODIC_ADVERTISER_LIST", + "name": "BT_NIMBLE_MAX_PERIODIC_ADVERTISER_LIST", + "range": null, + "title": "Maximum number of periodic advertiser list", + "type": "int" + } + ], + "depends_on": "BT_NIMBLE_EXT_SCAN && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", + "help": "Enable this option to receive periodic advertisement.", + "id": "BT_NIMBLE_ENABLE_PERIODIC_SYNC", + "name": "BT_NIMBLE_ENABLE_PERIODIC_SYNC", + "range": null, + "title": "Enable periodic sync", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", + "help": "Enable this option to do extended scanning.", + "id": "BT_NIMBLE_EXT_SCAN", + "name": "BT_NIMBLE_EXT_SCAN", + "range": null, + "title": "Enable extended scanning", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_50_FEATURE_SUPPORT && (!BT_CONTROLLER_ENABLED || SOC_BLE_POWER_CONTROL_SUPPORTED) && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", + "help": "Set this option to enable the Power Control feature", + "id": "BT_NIMBLE_BLE_POWER_CONTROL", + "name": "BT_NIMBLE_BLE_POWER_CONTROL", + "range": null, + "title": "Enable support for BLE Power Control", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_50_FEATURE_SUPPORT && (!BT_CONTROLLER_ENABLED || SOC_BLE_CTE_SUPPORTED) && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", + "help": "Enable support for Connectionless and Connection Oriented Direction Finding", + "id": "BT_NIMBLE_AOA_AOD", + "name": "BT_NIMBLE_AOA_AOD", + "range": null, + "title": "Direction Finding", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "ISO standard flow control", + "id": "BT_NIMBLE_ISO_STD_FLOW_CTRL", + "name": "BT_NIMBLE_ISO_STD_FLOW_CTRL", + "range": null, + "title": "Standard", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "ISO non-standard flow control", + "id": "BT_NIMBLE_ISO_NON_STD_FLOW_CTRL", + "name": "BT_NIMBLE_ISO_NON_STD_FLOW_CTRL", + "range": null, + "title": "Non-standard", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_ISO && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", + "help": "ISO flow control mode", + "id": "component-config-bluetooth-nimble-options-ble-5-x-features-enable-ble-5-feature-isochronous-channels-iso-flow-control-mode-C:-esp-v6.0-esp-idf-components-bt-host-nimble-Kconfig.in-738", + "name": "BT_NIMBLE_ISO_FLOW_CONTROL", + "title": "ISO flow control mode", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ISO && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", + "help": "Enable BLE Isochronous Test functionality.", + "id": "BT_NIMBLE_ISO_TEST", + "name": "BT_NIMBLE_ISO_TEST", + "range": null, + "title": "ISO Test mode", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ISO && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", + "help": "Maximum number of BIG.", + "id": "BT_NIMBLE_ISO_BIG", + "name": "BT_NIMBLE_ISO_BIG", + "range": null, + "title": "Maximum number of BIG", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ISO && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", + "help": "Maximum number of BIS.", + "id": "BT_NIMBLE_ISO_BIS", + "name": "BT_NIMBLE_ISO_BIS", + "range": null, + "title": "Maximum number of BIS", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ISO && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", + "help": "Maximum number of BIS per BIG.", + "id": "BT_NIMBLE_ISO_BIS_PER_BIG", + "name": "BT_NIMBLE_ISO_BIS_PER_BIG", + "range": null, + "title": "Maximum number of BIS per BIG", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ISO && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", + "help": "Maximum number of CIG.", + "id": "BT_NIMBLE_ISO_CIG", + "name": "BT_NIMBLE_ISO_CIG", + "range": null, + "title": "Maximum number of CIG", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ISO && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", + "help": "Maximum number of CIS.", + "id": "BT_NIMBLE_ISO_CIS", + "name": "BT_NIMBLE_ISO_CIS", + "range": null, + "title": "Maximum number of CIS", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ISO && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", + "help": "Maximum number of CIS per CIG.", + "id": "BT_NIMBLE_ISO_CIS_PER_CIG", + "name": "BT_NIMBLE_ISO_CIS_PER_CIG", + "range": null, + "title": "Maximum number of CIS per CIG", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ISO && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", + "help": "Enable this to support LE CIS Established event [v2].", + "id": "BT_NIMBLE_ISO_CIS_ESTAB_V2", + "name": "BT_NIMBLE_ISO_CIS_ESTAB_V2", + "range": null, + "title": "LE CIS Established event [v2]", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_50_FEATURE_SUPPORT && BT_NIMBLE_ENABLED", + "help": "Enable BLE Isochronous functionality.", + "id": "BT_NIMBLE_ISO", + "name": "BT_NIMBLE_ISO", + "range": null, + "title": "Isochronous channels", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_ENABLED && (SOC_BLE_50_SUPPORTED || !BT_CONTROLLER_ENABLED) && BT_NIMBLE_ENABLED", + "help": "Enable BLE 5 feature", + "id": "BT_NIMBLE_50_FEATURE_SUPPORT", + "is_menuconfig": true, + "name": "BT_NIMBLE_50_FEATURE_SUPPORT", + "range": null, + "title": "Enable BLE 5 feature", + "type": "menu" + } + ], + "depends_on": "BT_NIMBLE_ENABLED", + "id": "component-config-bluetooth-nimble-options-ble-5-x-features-C:-esp-v6.0-esp-idf-components-bt-host-nimble-Kconfig.in-590", + "title": "BLE 5.x Features", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_60_FEATURE_SUPPORT && (SOC_BLE_60_SUPPORTED || BT_CONTROLLER_DISABLED) && BT_NIMBLE_ENABLED", + "help": "Used to enable/disable the channel sounding feature", + "id": "BT_NIMBLE_CHANNEL_SOUNDING", + "name": "BT_NIMBLE_CHANNEL_SOUNDING", + "range": null, + "title": "ble channel souding feature", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_60_FEATURE_SUPPORT && (SOC_BLE_60_SUPPORTED || BT_CONTROLLER_DISABLED) && BT_NIMBLE_ENABLED", + "help": "Enable support for Monitor Advertisers", + "id": "BT_NIMBLE_MONITOR_ADV", + "name": "BT_NIMBLE_MONITOR_ADV", + "range": null, + "title": "Enable Monitor Advertising", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_ENABLED && (SOC_BLE_60_SUPPORTED || BT_CONTROLLER_DISABLED) && (SOC_BLE_60_SUPPORTED || BT_CONTROLLER_DISABLED) && BT_NIMBLE_ENABLED", + "help": "Enable BLE 6.x feature support", + "id": "BT_NIMBLE_60_FEATURE_SUPPORT", + "is_menuconfig": true, + "name": "BT_NIMBLE_60_FEATURE_SUPPORT", + "range": null, + "title": "Enable BLE 6 feature", + "type": "menu" + } + ], + "depends_on": "(SOC_BLE_60_SUPPORTED || BT_CONTROLLER_DISABLED) && BT_NIMBLE_ENABLED", + "id": "component-config-bluetooth-nimble-options-ble-6-x-features-C:-esp-v6.0-esp-idf-components-bt-host-nimble-Kconfig.in-811", + "title": "BLE 6.x Features", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": "Enable Proximity Service support", + "id": "BT_NIMBLE_PROX_SERVICE", + "name": "BT_NIMBLE_PROX_SERVICE", + "range": null, + "title": "Proximity service", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": "Enable Alert Notification Service support", + "id": "BT_NIMBLE_ANS_SERVICE", + "name": "BT_NIMBLE_ANS_SERVICE", + "range": null, + "title": "Alert Notification service", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": "Enable Current Time Service support", + "id": "BT_NIMBLE_CTS_SERVICE", + "name": "BT_NIMBLE_CTS_SERVICE", + "range": null, + "title": "Current Time Service", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": "Enable Health Thermometer Service support", + "id": "BT_NIMBLE_HTP_SERVICE", + "name": "BT_NIMBLE_HTP_SERVICE", + "range": null, + "title": "Health Thermometer service", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": "Enable Internet Protocol Service support", + "id": "BT_NIMBLE_IPSS_SERVICE", + "name": "BT_NIMBLE_IPSS_SERVICE", + "range": null, + "title": "Internet Protocol Support service", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": "Enable Tx Power Service support", + "id": "BT_NIMBLE_TPS_SERVICE", + "name": "BT_NIMBLE_TPS_SERVICE", + "range": null, + "title": "Tx Power service", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": "Enable Immediate Alert Service support", + "id": "BT_NIMBLE_IAS_SERVICE", + "name": "BT_NIMBLE_IAS_SERVICE", + "range": null, + "title": "Immediate Alert service", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": "Enable Link Loss Service support", + "id": "BT_NIMBLE_LLS_SERVICE", + "name": "BT_NIMBLE_LLS_SERVICE", + "range": null, + "title": "Link Loss service", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": "Enable Serial Port Service support", + "id": "BT_NIMBLE_SPS_SERVICE", + "name": "BT_NIMBLE_SPS_SERVICE", + "range": null, + "title": "Serial Port service", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": "Enable HeartRate Service support", + "id": "BT_NIMBLE_HR_SERVICE", + "name": "BT_NIMBLE_HR_SERVICE", + "range": null, + "title": "Heart Rate service", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_HID_SERVICE && BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": "Defines maximum number of HID service instances", + "id": "BT_NIMBLE_SVC_HID_MAX_INSTANCES", + "name": "BT_NIMBLE_SVC_HID_MAX_INSTANCES", + "range": null, + "title": "Maximum HID service instances", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_HID_SERVICE && BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": "Defines maximum number of report characteristics per service instance", + "id": "BT_NIMBLE_SVC_HID_MAX_RPTS", + "name": "BT_NIMBLE_SVC_HID_MAX_RPTS", + "range": null, + "title": "Maximum HID Report characteristics per service instance", + "type": "int" + } + ], + "depends_on": "BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": "Enable HID service support", + "id": "BT_NIMBLE_HID_SERVICE", + "is_menuconfig": true, + "name": "BT_NIMBLE_HID_SERVICE", + "range": null, + "title": "Human Interface Device service", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_BAS_SERVICE && BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": "Enable/Disable notifications on BAS Battery Level Characteristic", + "id": "BT_NIMBLE_SVC_BAS_BATTERY_LEVEL_NOTIFY", + "name": "BT_NIMBLE_SVC_BAS_BATTERY_LEVEL_NOTIFY", + "range": null, + "title": "BAS Battery Level NOTIFY permission", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": "Enable Battery service support", + "id": "BT_NIMBLE_BAS_SERVICE", + "is_menuconfig": true, + "name": "BT_NIMBLE_BAS_SERVICE", + "range": null, + "title": "Battery service", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_DIS_SERVICE && BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": "Enable the DIS characteristic Manufacturer Name String characteristic", + "id": "BT_NIMBLE_SVC_DIS_MANUFACTURER_NAME", + "name": "BT_NIMBLE_SVC_DIS_MANUFACTURER_NAME", + "range": null, + "title": "Manufacturer Name", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_DIS_SERVICE && BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": "Enable the DIS Serial Number characteristic", + "id": "BT_NIMBLE_SVC_DIS_SERIAL_NUMBER", + "name": "BT_NIMBLE_SVC_DIS_SERIAL_NUMBER", + "range": null, + "title": "Serial Number", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_DIS_SERVICE && BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": "Enable the DIS Hardware Revision characteristic", + "id": "BT_NIMBLE_SVC_DIS_HARDWARE_REVISION", + "name": "BT_NIMBLE_SVC_DIS_HARDWARE_REVISION", + "range": null, + "title": "Hardware Revision", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_DIS_SERVICE && BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": "Enable the DIS Firmware Revision characteristic", + "id": "BT_NIMBLE_SVC_DIS_FIRMWARE_REVISION", + "name": "BT_NIMBLE_SVC_DIS_FIRMWARE_REVISION", + "range": null, + "title": "Firmware Revision", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_DIS_SERVICE && BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": "Enable the DIS Software Revision characteristic", + "id": "BT_NIMBLE_SVC_DIS_SOFTWARE_REVISION", + "name": "BT_NIMBLE_SVC_DIS_SOFTWARE_REVISION", + "range": null, + "title": "Software Revision", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_DIS_SERVICE && BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": "Enable the DIS System ID characteristic", + "id": "BT_NIMBLE_SVC_DIS_SYSTEM_ID", + "name": "BT_NIMBLE_SVC_DIS_SYSTEM_ID", + "range": null, + "title": "System ID", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_DIS_SERVICE && BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": "Enable the DIS PnP ID characteristic", + "id": "BT_NIMBLE_SVC_DIS_PNP_ID", + "name": "BT_NIMBLE_SVC_DIS_PNP_ID", + "range": null, + "title": "PnP ID", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_DIS_SERVICE && BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": "Use DIS as an included service", + "id": "BT_NIMBLE_SVC_DIS_INCLUDED", + "name": "BT_NIMBLE_SVC_DIS_INCLUDED", + "range": null, + "title": "DIS as an Included Service", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": "Enable Device Information service support", + "id": "BT_NIMBLE_DIS_SERVICE", + "is_menuconfig": true, + "name": "BT_NIMBLE_DIS_SERVICE", + "range": null, + "title": "Device Information Service", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "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()", + "id": "BT_NIMBLE_SVC_GAP_DEVICE_NAME", + "name": "BT_NIMBLE_SVC_GAP_DEVICE_NAME", + "range": null, + "title": "BLE GAP default device name", + "type": "string" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": "Device Name characteristic value shall be 0 to 248 octets in length", + "id": "BT_NIMBLE_GAP_DEVICE_NAME_MAX_LEN", + "name": "BT_NIMBLE_GAP_DEVICE_NAME_MAX_LEN", + "range": null, + "title": "Maximum length of BLE device name in octets", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": "Standard BLE GAP Appearance value in HEX format e.g. 0x02C0", + "id": "BT_NIMBLE_SVC_GAP_APPEARANCE", + "name": "BT_NIMBLE_SVC_GAP_APPEARANCE", + "range": null, + "title": "External appearance of the device", + "type": "hex" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": null, + "id": "BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM", + "name": "BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": null, + "id": "BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM_ENC", + "name": "BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM_ENC", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": null, + "id": "BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM_AUTHEN", + "name": "BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM_AUTHEN", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": null, + "id": "BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM_AUTHOR", + "name": "BT_NIMBLE_SVC_GAP_NAME_WRITE_PERM_AUTHOR", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": "Enable the LE GATT Security Level Characteristic", + "id": "BT_NIMBLE_SVC_GAP_GATT_SECURITY_LEVEL", + "name": "BT_NIMBLE_SVC_GAP_GATT_SECURITY_LEVEL", + "range": null, + "title": "LE GATT Security Level Characteristic", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": "Enable the Resolvable Private Address Only characteristic", + "id": "BT_NIMBLE_SVC_GAP_RPA_ONLY", + "name": "BT_NIMBLE_SVC_GAP_RPA_ONLY", + "range": null, + "title": "Resolvable Private Address Only characteristic", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_NIMBLE_SVC_GAP_CAR_CHAR_NOT_SUPP", + "name": "BT_NIMBLE_SVC_GAP_CAR_CHAR_NOT_SUPP", + "range": null, + "title": "Characteristic not supported", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_NIMBLE_SVC_GAP_CAR_NOT_SUPP", + "name": "BT_NIMBLE_SVC_GAP_CAR_NOT_SUPP", + "range": null, + "title": "Central Address Resolution not supported", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_NIMBLE_SVC_GAP_CAR_SUPP", + "name": "BT_NIMBLE_SVC_GAP_CAR_SUPP", + "range": null, + "title": "Central Address Resolution supported", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": "Weather or not Central Address Resolution characteristic is supported on\nthe device, and if supported, weather or not Central Address Resolution\nis supported.\n\n- Central Address Resolution characteristic not supported\n- Central Address Resolution not supported\n- Central Address Resolution supported", + "id": "component-config-bluetooth-nimble-options-services-gap-service-gap-characteristic-central-address-resolution-C:-esp-v6.0-esp-idf-components-bt-host-nimble-Kconfig.in-1054", + "name": "BT_NIMBLE_SVC_GAP_CENT_ADDR_RESOLUTION", + "title": "GAP Characteristic - Central Address Resolution", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": null, + "id": "BT_NIMBLE_SVC_GAP_CENT_ADDR_RESOLUTION", + "name": "BT_NIMBLE_SVC_GAP_CENT_ADDR_RESOLUTION", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE && BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": "Enable write with encryption permission (BLE_GATT_CHR_F_WRITE_ENC)", + "id": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_ENC", + "name": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_ENC", + "range": null, + "title": "Write with encryption", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE && BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": "Enable write with authentication permission (BLE_GATT_CHR_F_WRITE_AUTHEN)", + "id": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_AUTHEN", + "name": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_AUTHEN", + "range": null, + "title": "Write with authentication", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE && BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": "Enable write with authorisation permission (BLE_GATT_CHR_F_WRITE_AUTHOR)", + "id": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_AUTHOR", + "name": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_AUTHOR", + "range": null, + "title": "Write with authorisation", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": "Enable write permission (BLE_GATT_CHR_F_WRITE)", + "id": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE", + "name": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE", + "range": null, + "title": "Write", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": null, + "id": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM", + "name": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": null, + "id": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM_ENC", + "name": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM_ENC", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": null, + "id": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM_ATHN", + "name": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM_ATHN", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": null, + "id": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM_ATHR", + "name": "BT_NIMBLE_SVC_GAP_APPEAR_WRITE_PERM_ATHR", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": "BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "id": "component-config-bluetooth-nimble-options-services-gap-service-gap-appearance-write-permissions-C:-esp-v6.0-esp-idf-components-bt-host-nimble-Kconfig.in-1084", + "title": "GAP Appearance write permissions", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_SVC_GAP_NAME_WRITE && BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": "Enable write with encryption permission (BLE_GATT_CHR_F_WRITE_ENC)", + "id": "BT_NIMBLE_SVC_GAP_NAME_WRITE_ENC", + "name": "BT_NIMBLE_SVC_GAP_NAME_WRITE_ENC", + "range": null, + "title": "Write with encryption", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_SVC_GAP_NAME_WRITE && BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": "Enable write with authentication permission (BLE_GATT_CHR_F_WRITE_AUTHEN)", + "id": "BT_NIMBLE_SVC_GAP_NAME_WRITE_AUTHEN", + "name": "BT_NIMBLE_SVC_GAP_NAME_WRITE_AUTHEN", + "range": null, + "title": "Write with authentication", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_SVC_GAP_NAME_WRITE && BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": "Enable write with authorisation permission (BLE_GATT_CHR_F_WRITE_AUTHOR)", + "id": "BT_NIMBLE_SVC_GAP_NAME_WRITE_AUTHOR", + "name": "BT_NIMBLE_SVC_GAP_NAME_WRITE_AUTHOR", + "range": null, + "title": "Write with authorisation", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": "Enable write permission (BLE_GATT_CHR_F_WRITE)", + "id": "BT_NIMBLE_SVC_GAP_NAME_WRITE", + "name": "BT_NIMBLE_SVC_GAP_NAME_WRITE", + "range": null, + "title": "Write", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "id": "component-config-bluetooth-nimble-options-services-gap-service-gap-device-name-write-permissions-C:-esp-v6.0-esp-idf-components-bt-host-nimble-Kconfig.in-1133", + "title": "GAP device name write permissions", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_ROLE_PERIPHERAL && BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": "Peripheral Preferred Connection Parameter: Connection Interval maximum value\nInterval Max = value * 1.25 ms", + "id": "BT_NIMBLE_SVC_GAP_PPCP_MAX_CONN_INTERVAL", + "name": "BT_NIMBLE_SVC_GAP_PPCP_MAX_CONN_INTERVAL", + "range": null, + "title": "PPCP Connection Interval Max (Unit: 1.25 ms)", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ROLE_PERIPHERAL && BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": "Peripheral Preferred Connection Parameter: Connection Interval minimum value\nInterval Min = value * 1.25 ms", + "id": "BT_NIMBLE_SVC_GAP_PPCP_MIN_CONN_INTERVAL", + "name": "BT_NIMBLE_SVC_GAP_PPCP_MIN_CONN_INTERVAL", + "range": null, + "title": "PPCP Connection Interval Min (Unit: 1.25 ms)", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": "Peripheral Preferred Connection Parameter: Slave Latency", + "id": "BT_NIMBLE_SVC_GAP_PPCP_SLAVE_LATENCY", + "name": "BT_NIMBLE_SVC_GAP_PPCP_SLAVE_LATENCY", + "range": null, + "title": "PPCP Slave Latency", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": "Peripheral Preferred Connection Parameter: Supervision Timeout\nTimeout = Value * 10 ms", + "id": "BT_NIMBLE_SVC_GAP_PPCP_SUPERVISION_TMO", + "name": "BT_NIMBLE_SVC_GAP_PPCP_SUPERVISION_TMO", + "range": null, + "title": "PPCP Supervision Timeout (Uint: 10 ms)", + "type": "int" + } + ], + "depends_on": "BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GAP_SERVICE && BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "id": "component-config-bluetooth-nimble-options-services-gap-service-peripheral-preferred-connection-parameters-ppcp-settings-C:-esp-v6.0-esp-idf-components-bt-host-nimble-Kconfig.in-1163", + "title": "Peripheral Preferred Connection Parameters (PPCP) settings", + "type": "menu" + } + ], + "depends_on": "BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "help": "Enable GAP Service support", + "id": "BT_NIMBLE_GAP_SERVICE", + "is_menuconfig": true, + "name": "BT_NIMBLE_GAP_SERVICE", + "range": null, + "title": "GAP Service", + "type": "menu" + } + ], + "depends_on": "BT_NIMBLE_GATT_SERVER && BT_NIMBLE_ENABLED", + "id": "component-config-bluetooth-nimble-options-services-C:-esp-v6.0-esp-idf-components-bt-host-nimble-Kconfig.in-836", + "title": "Services", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "This enables user to add/remove Gatt services at runtime", + "id": "BT_NIMBLE_DYNAMIC_SERVICE", + "name": "BT_NIMBLE_DYNAMIC_SERVICE", + "range": null, + "title": "Enable dynamic services", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "Set this option to enable blufi functionality.", + "id": "BT_NIMBLE_BLUFI_ENABLE", + "name": "BT_NIMBLE_BLUFI_ENABLE", + "range": null, + "title": "Enable blufi functionality", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "This option is used to enable encrypted advertising data.", + "id": "BT_NIMBLE_ENC_ADV_DATA", + "name": "BT_NIMBLE_ENC_ADV_DATA", + "range": null, + "title": "Encrypted Advertising Data", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "Enables concatenation of multiple UUIDs of the same type while parsing\nadvertising data on the central device. When disabled, only the last\nparsed UUID of a given type is retained.", + "id": "BT_NIMBLE_ADV_UUID_CONCAT", + "name": "BT_NIMBLE_ADV_UUID_CONCAT", + "range": null, + "title": "concatenate uuids while parsing advertising data", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENC_ADV_DATA && BT_NIMBLE_ENABLED", + "help": "Defines maximum number of encrypted advertising data key material to save", + "id": "BT_NIMBLE_MAX_EADS", + "name": "BT_NIMBLE_MAX_EADS", + "range": null, + "title": "Maximum number of EAD devices to save across reboots", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "When BLE and Wireless protocol/IEEE 802.15.4 operate in coexistence, BLE preemption\ncan disrupt the GATT context,causing the service discovery callback to not be invoked.\nA temporary list is maintained to preserve the GATT context and use it in case of preemption.", + "id": "BT_NIMBLE_GATTC_PROC_PREEMPTION_PROTECT", + "name": "BT_NIMBLE_GATTC_PROC_PREEMPTION_PROTECT", + "range": null, + "title": "Gatt-proc preemption protect check", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "If enabled, when a service request (e.g. read, write) to a server fails, and the ATT\nerror suggests insufficient security, then the central will initiate pairing and retry\nthe service request.", + "id": "BT_NIMBLE_GATTC_AUTO_PAIR", + "name": "BT_NIMBLE_GATTC_AUTO_PAIR", + "range": null, + "title": "Automatically pair upon receiving service request failure", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "Defines the number of channels EATT bearers can use", + "id": "BT_NIMBLE_EATT_CHAN_NUM", + "name": "BT_NIMBLE_EATT_CHAN_NUM", + "range": null, + "title": "Maximum number of EATT channels", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "Enable connection subrate change feature", + "id": "BT_NIMBLE_SUBRATE", + "name": "BT_NIMBLE_SUBRATE", + "range": null, + "title": "Enable Subrate Change", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_SECURITY_ENABLE && BT_NIMBLE_ENABLED", + "help": "Enable support for user defined static passkey for SMP", + "id": "BT_NIMBLE_STATIC_PASSKEY", + "name": "BT_NIMBLE_STATIC_PASSKEY", + "range": null, + "title": "Enable support for Static Passkey", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "Enable DTM related test procedure support", + "id": "BT_NIMBLE_DTM_MODE_TEST", + "name": "BT_NIMBLE_DTM_MODE_TEST", + "range": null, + "title": "Enable DTM related test procedure support", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "This option enables memory optimizations in the NimBLE stack.", + "id": "BT_NIMBLE_MEM_OPTIMIZATION", + "name": "BT_NIMBLE_MEM_OPTIMIZATION", + "range": null, + "title": "Enable memory optimization", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "This option enables use of dynamic memory allocation instead of static\nallocation for variable global / local variable. This helps in improving\nmemory footprint", + "id": "BT_NIMBLE_STATIC_TO_DYNAMIC", + "name": "BT_NIMBLE_STATIC_TO_DYNAMIC", + "range": null, + "title": "Use Dynamic Memory allocations instead of static", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "Enable Sign counter operations", + "id": "BT_NIMBLE_SM_SIGN_CNT", + "name": "BT_NIMBLE_SM_SIGN_CNT", + "range": null, + "title": "Enable Sign counter operations", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "Enable CPFD and CAPD gatt descriptors support", + "id": "BT_NIMBLE_CPFD_CAFD", + "name": "BT_NIMBLE_CPFD_CAFD", + "range": null, + "title": "Enable CPFD/CAPD support", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "Enable Support to reconfigure L2CAP MTU / MPS", + "id": "BT_NIMBLE_RECONFIG_MTU", + "name": "BT_NIMBLE_RECONFIG_MTU", + "range": null, + "title": "Reconfig L2CAP MTU support", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "Disabling IRAM-optimized paths will place functions in FLASH (.irom.text)\ninstead of DRAM (.iram.text/.text in internal RAM). Suitable for low-speed\nGAP/GATT operations to reduce RAM usage.", + "id": "BT_NIMBLE_LOW_SPEED_MODE", + "name": "BT_NIMBLE_LOW_SPEED_MODE", + "range": null, + "title": "Reduce DRAM/IRAM usage by moving GATT/GAP/NPL functions to FLASH", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_ENABLED", + "id": "component-config-bluetooth-nimble-options-extra-features-C:-esp-v6.0-esp-idf-components-bt-host-nimble-Kconfig.in-1201", + "title": "Extra Features", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_MESH && BT_NIMBLE_ENABLED", + "help": "Enable proxy. This is automatically set whenever NIMBLE_MESH_PB_GATT or\nNIMBLE_MESH_GATT_PROXY is set", + "id": "BT_NIMBLE_MESH_PROXY", + "name": "BT_NIMBLE_MESH_PROXY", + "range": null, + "title": "Enable mesh proxy functionality", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_MESH_PROV && BT_NIMBLE_ENABLED", + "help": "Enable this option to allow the device to be provisioned over\nthe advertising bearer", + "id": "BT_NIMBLE_MESH_PB_ADV", + "name": "BT_NIMBLE_MESH_PB_ADV", + "range": null, + "title": "Enable mesh provisioning over advertising bearer", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_MESH_PROV && BT_NIMBLE_ENABLED", + "help": "Enable this option to allow the device to be provisioned over the GATT\nbearer", + "id": "BT_NIMBLE_MESH_PB_GATT", + "name": "BT_NIMBLE_MESH_PB_GATT", + "range": null, + "title": "Enable mesh provisioning over GATT bearer", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_MESH && BT_NIMBLE_ENABLED", + "help": "Enable mesh provisioning", + "id": "BT_NIMBLE_MESH_PROV", + "name": "BT_NIMBLE_MESH_PROV", + "range": null, + "title": "Enable BLE mesh provisioning", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_MESH && BT_NIMBLE_ENABLED", + "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", + "id": "BT_NIMBLE_MESH_GATT_PROXY", + "name": "BT_NIMBLE_MESH_GATT_PROXY", + "range": null, + "title": "Enable GATT Proxy functionality", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_MESH && BT_NIMBLE_ENABLED", + "help": "Support for acting as a Mesh Relay Node", + "id": "BT_NIMBLE_MESH_RELAY", + "name": "BT_NIMBLE_MESH_RELAY", + "range": null, + "title": "Enable mesh relay functionality", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_MESH && BT_NIMBLE_ENABLED", + "help": "Enable this option to be able to act as a Low Power Node", + "id": "BT_NIMBLE_MESH_LOW_POWER", + "name": "BT_NIMBLE_MESH_LOW_POWER", + "range": null, + "title": "Enable mesh low power mode", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_MESH && BT_NIMBLE_ENABLED", + "help": "Enable this option to be able to act as a Friend Node", + "id": "BT_NIMBLE_MESH_FRIEND", + "name": "BT_NIMBLE_MESH_FRIEND", + "range": null, + "title": "Enable mesh friend functionality", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_MESH && BT_NIMBLE_ENABLED", + "help": "This value defines Bluetooth Mesh device/node name", + "id": "BT_NIMBLE_MESH_DEVICE_NAME", + "name": "BT_NIMBLE_MESH_DEVICE_NAME", + "range": null, + "title": "Set mesh device name", + "type": "string" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_MESH && BT_NIMBLE_ENABLED", + "help": "Defines mesh node count.", + "id": "BT_NIMBLE_MESH_NODE_COUNT", + "name": "BT_NIMBLE_MESH_NODE_COUNT", + "range": null, + "title": "Set mesh node count", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_MESH && BT_NIMBLE_ENABLED", + "help": "Enable mesh provisioner.", + "id": "BT_NIMBLE_MESH_PROVISIONER", + "name": "BT_NIMBLE_MESH_PROVISIONER", + "range": null, + "title": "Enable BLE mesh provisioner", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "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`", + "id": "BT_NIMBLE_MESH", + "is_menuconfig": true, + "name": "BT_NIMBLE_MESH", + "range": null, + "title": "Enable BLE mesh functionality", + "type": "menu" + } + ], + "depends_on": "BT_NIMBLE_ENABLED", + "id": "component-config-bluetooth-nimble-options-nimble-mesh-C:-esp-v6.0-esp-idf-components-bt-host-nimble-Kconfig.in-1329", + "title": "NimBLE Mesh", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BT_CONTROLLER_DISABLED && BT_NIMBLE_TRANSPORT_UART && BT_NIMBLE_ENABLED", + "help": "Uart port", + "id": "BT_NIMBLE_TRANSPORT_UART_PORT", + "name": "BT_NIMBLE_TRANSPORT_UART_PORT", + "range": null, + "title": "Uart port", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "UART_BAUDRATE_115200", + "name": "UART_BAUDRATE_115200", + "range": null, + "title": "115200", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "UART_BAUDRATE_230400", + "name": "UART_BAUDRATE_230400", + "range": null, + "title": "230400", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "UART_BAUDRATE_460800", + "name": "UART_BAUDRATE_460800", + "range": null, + "title": "460800", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "UART_BAUDRATE_921600", + "name": "UART_BAUDRATE_921600", + "range": null, + "title": "921600", + "type": "bool" + } + ], + "depends_on": "BT_CONTROLLER_DISABLED && BT_NIMBLE_TRANSPORT_UART && BT_NIMBLE_ENABLED", + "help": "Uart Baud Rate", + "id": "component-config-bluetooth-nimble-options-host-controller-transport-enable-uart-transport-uart-hci-baud-rate-C:-esp-v6.0-esp-idf-components-bt-host-nimble-Kconfig.in-1443", + "name": "BT_NIMBLE_HCI_USE_UART_BAUDRATE", + "title": "Uart Hci Baud Rate", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_DISABLED && BT_NIMBLE_TRANSPORT_UART && BT_NIMBLE_ENABLED", + "help": null, + "id": "BT_NIMBLE_HCI_UART_BAUDRATE", + "name": "BT_NIMBLE_HCI_UART_BAUDRATE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "UART_PARITY_NONE", + "name": "UART_PARITY_NONE", + "range": null, + "title": "None", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "UART_PARITY_ODD", + "name": "UART_PARITY_ODD", + "range": null, + "title": "Odd", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "UART_PARITY_EVEN", + "name": "UART_PARITY_EVEN", + "range": null, + "title": "Even", + "type": "bool" + } + ], + "depends_on": "BT_CONTROLLER_DISABLED && BT_NIMBLE_TRANSPORT_UART && BT_NIMBLE_ENABLED", + "help": "Uart Parity", + "id": "component-config-bluetooth-nimble-options-host-controller-transport-enable-uart-transport-uart-parity-C:-esp-v6.0-esp-idf-components-bt-host-nimble-Kconfig.in-1468", + "name": "BT_NIMBLE_USE_HCI_UART_PARITY", + "title": "Uart PARITY", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_DISABLED && BT_NIMBLE_TRANSPORT_UART && BT_NIMBLE_ENABLED", + "help": null, + "id": "BT_NIMBLE_TRANSPORT_UART_PARITY_NONE", + "name": "BT_NIMBLE_TRANSPORT_UART_PARITY_NONE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_DISABLED && BT_NIMBLE_TRANSPORT_UART && BT_NIMBLE_ENABLED", + "help": null, + "id": "BT_NIMBLE_TRANSPORT_UART_PARITY_ODD", + "name": "BT_NIMBLE_TRANSPORT_UART_PARITY_ODD", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_DISABLED && BT_NIMBLE_TRANSPORT_UART && BT_NIMBLE_ENABLED", + "help": null, + "id": "BT_NIMBLE_TRANSPORT_UART_PARITY_EVEN", + "name": "BT_NIMBLE_TRANSPORT_UART_PARITY_EVEN", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_DISABLED && BT_NIMBLE_TRANSPORT_UART && BT_NIMBLE_ENABLED", + "help": "Rx pin for Nimble Transport", + "id": "BT_NIMBLE_UART_RX_PIN", + "name": "BT_NIMBLE_UART_RX_PIN", + "range": null, + "title": "UART Rx pin", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_DISABLED && BT_NIMBLE_TRANSPORT_UART && BT_NIMBLE_ENABLED", + "help": "Tx pin for Nimble Transport", + "id": "BT_NIMBLE_UART_TX_PIN", + "name": "BT_NIMBLE_UART_TX_PIN", + "range": null, + "title": "UART Tx pin", + "type": "int" + } + ], + "depends_on": "BT_CONTROLLER_DISABLED && BT_NIMBLE_ENABLED", + "help": "Use UART transport", + "id": "BT_NIMBLE_TRANSPORT_UART", + "name": "BT_NIMBLE_TRANSPORT_UART", + "range": null, + "title": "Enable Uart Transport", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "UART_HW_FLOWCTRL_DISABLE", + "name": "UART_HW_FLOWCTRL_DISABLE", + "range": null, + "title": "Disable", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "UART_HW_FLOWCTRL_CTS_RTS", + "name": "UART_HW_FLOWCTRL_CTS_RTS", + "range": null, + "title": "Enable hardware flow control", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "Uart Flow Control", + "id": "component-config-bluetooth-nimble-options-host-controller-transport-uart-flow-control-C:-esp-v6.0-esp-idf-components-bt-host-nimble-Kconfig.in-1515", + "name": "BT_NIMBLE_USE_HCI_UART_FLOW_CTRL", + "title": "Uart Flow Control", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": null, + "id": "BT_NIMBLE_HCI_UART_FLOW_CTRL", + "name": "BT_NIMBLE_HCI_UART_FLOW_CTRL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "UART HCI RTS pin", + "id": "BT_NIMBLE_HCI_UART_RTS_PIN", + "name": "BT_NIMBLE_HCI_UART_RTS_PIN", + "range": null, + "title": "UART Rts Pin", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "UART HCI CTS pin", + "id": "BT_NIMBLE_HCI_UART_CTS_PIN", + "name": "BT_NIMBLE_HCI_UART_CTS_PIN", + "range": null, + "title": "UART Cts Pin", + "type": "int" + } + ], + "depends_on": "BT_NIMBLE_ENABLED", + "id": "component-config-bluetooth-nimble-options-host-controller-transport-C:-esp-v6.0-esp-idf-components-bt-host-nimble-Kconfig.in-1428", + "title": "Host-controller Transport", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && !BT_NIMBLE_ISO && BT_NIMBLE_ENABLED", + "help": "Enable NimBLE memory debug to track memory allocations and deallocations.\nThis feature records the function name, line number, and size of each allocation,\nand provides APIs to display memory usage statistics, find memory leaks, and\nmonitor peak memory usage.", + "id": "BT_NIMBLE_MEM_DEBUG", + "name": "BT_NIMBLE_MEM_DEBUG", + "range": null, + "title": "NimBLE memory debug", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_NIMBLE_LOG_LEVEL_NONE", + "name": "BT_NIMBLE_LOG_LEVEL_NONE", + "range": null, + "title": "No logs", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_NIMBLE_LOG_LEVEL_ERROR", + "name": "BT_NIMBLE_LOG_LEVEL_ERROR", + "range": null, + "title": "Error logs", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_NIMBLE_LOG_LEVEL_WARNING", + "name": "BT_NIMBLE_LOG_LEVEL_WARNING", + "range": null, + "title": "Warning logs", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_NIMBLE_LOG_LEVEL_INFO", + "name": "BT_NIMBLE_LOG_LEVEL_INFO", + "range": null, + "title": "Info logs", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_NIMBLE_LOG_LEVEL_DEBUG", + "name": "BT_NIMBLE_LOG_LEVEL_DEBUG", + "range": null, + "title": "Debug logs", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "Select NimBLE log level. Note that the selected NimBLE log\nverbosity can not exceed the level set in\n\"Component config --> Log output --> Default log verbosity\".", + "id": "component-config-bluetooth-nimble-options-debugging-testing-nimble-host-log-verbosity-C:-esp-v6.0-esp-idf-components-bt-host-nimble-Kconfig.in-1556", + "name": "BT_NIMBLE_LOG_LEVEL", + "title": "NimBLE Host log verbosity", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": null, + "id": "BT_NIMBLE_LOG_LEVEL", + "name": "BT_NIMBLE_LOG_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "Enable feature to give useful explanation for HCI errors", + "id": "BT_NIMBLE_PRINT_ERR_NAME", + "name": "BT_NIMBLE_PRINT_ERR_NAME", + "range": null, + "title": "Enable feature to print Error description", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "This enables extra runtime asserts and host debugging", + "id": "BT_NIMBLE_DEBUG", + "name": "BT_NIMBLE_DEBUG", + "range": null, + "title": "Enable extra runtime asserts and host debugging", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "Enable the throughput test mode", + "id": "BT_NIMBLE_TEST_THROUGHPUT_TEST", + "name": "BT_NIMBLE_TEST_THROUGHPUT_TEST", + "range": null, + "title": "Throughput Test Mode enable", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_ENABLED", + "id": "component-config-bluetooth-nimble-options-debugging-testing-C:-esp-v6.0-esp-idf-components-bt-host-nimble-Kconfig.in-1545", + "title": "Debugging/Testing", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "This option is used to enable support for sending Vendor Specific HCI commands and handling\nVendor Specific HCI Events.", + "id": "BT_NIMBLE_VS_SUPPORT", + "name": "BT_NIMBLE_VS_SUPPORT", + "range": null, + "title": "Enable support for VSC and VSE", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_BLE_MULTI_CONN_OPTIMIZATION && BT_NIMBLE_ENABLED", + "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.", + "id": "BT_NIMBLE_OPTIMIZE_MULTI_CONN", + "name": "BT_NIMBLE_OPTIMIZE_MULTI_CONN", + "range": null, + "title": "Enable the optimization of multi-connection", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "This enable BLE high duty advertising interval feature", + "id": "BT_NIMBLE_HIGH_DUTY_ADV_ITVL", + "name": "BT_NIMBLE_HIGH_DUTY_ADV_ITVL", + "range": null, + "title": "Enable BLE high duty advertising interval feature", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_ESP_NIMBLE_CONTROLLER && BT_NIMBLE_50_FEATURE_SUPPORT && !IDF_TARGET_ESP32C2 && BT_NIMBLE_ENABLED", + "help": "This enable vendor-specific APIs to send specific DID for different advertising data in extended\nadvertising.", + "id": "BT_NIMBLE_ADV_SEND_CONSTANT_DID", + "name": "BT_NIMBLE_ADV_SEND_CONSTANT_DID", + "range": null, + "title": "Enable BLE Ext Adv to Send with Specific DID", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_ESP_NIMBLE_CONTROLLER && BT_NIMBLE_50_FEATURE_SUPPORT && !IDF_TARGET_ESP32C2 && BT_NIMBLE_ENABLED", + "help": "This enables vendor-specific APIs to only receive specific groups of ADIs, and implements DIDs\nduplicate filtering for extended scanning. Enabling this can reduce the unnecessary reception of\nsecondary channel PDUs carrying non-targeted ADIs.", + "id": "BT_NIMBLE_SCAN_ALLOW_ENH_ADI_FILTER", + "name": "BT_NIMBLE_SCAN_ALLOW_ENH_ADI_FILTER", + "range": null, + "title": "Enable BLE Ext Scan to Receive Packet with Specific ADI", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_ENABLED", + "id": "component-config-bluetooth-nimble-options-vendor-optimization-C:-esp-v6.0-esp-idf-components-bt-host-nimble-Kconfig.in-1611", + "title": "Vendor / Optimization", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "Enable support to query host status", + "id": "BT_NIMBLE_CHK_HOST_STATUS", + "name": "BT_NIMBLE_CHK_HOST_STATUS", + "range": null, + "title": "Enable host status query support", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "Enable support for misc APIs like set data addr change, read local resolv addr\nand set host feature", + "id": "BT_NIMBLE_UTIL_API", + "name": "BT_NIMBLE_UTIL_API", + "range": null, + "title": "Enable helper APIs", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED && BT_NIMBLE_ENABLED", + "help": "Enable support for parsing of more adv fields as per spec", + "id": "BT_NIMBLE_EXTRA_ADV_FIELDS", + "name": "BT_NIMBLE_EXTRA_ADV_FIELDS", + "range": null, + "title": "Enable extra Adv report fields parsing", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_ENABLED", + "id": "component-config-bluetooth-nimble-options-helper-utils-C:-esp-v6.0-esp-idf-components-bt-host-nimble-Kconfig.in-1653", + "title": "Helper Utils", + "type": "menu" + } + ], + "depends_on": "BT_NIMBLE_ENABLED", + "id": "component-config-bluetooth-nimble-options-C:-esp-v6.0-esp-idf-components-bt-Kconfig-62", + "title": "NimBLE Options", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BTDM_CTRL_MODE_BLE_ONLY", + "name": "BTDM_CTRL_MODE_BLE_ONLY", + "range": null, + "title": "BLE Only", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BTDM_CTRL_MODE_BR_EDR_ONLY", + "name": "BTDM_CTRL_MODE_BR_EDR_ONLY", + "range": null, + "title": "BR/EDR Only", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BTDM_CTRL_MODE_BTDM", + "name": "BTDM_CTRL_MODE_BTDM", + "range": null, + "title": "Bluetooth Dual Mode", + "type": "bool" + } + ], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": "Specify the bluetooth controller mode (BR/EDR, BLE or dual mode).", + "id": "component-config-bluetooth-controller-options-bluetooth-controller-mode-br-edr-ble-dualmode--C:-esp-v6.0-esp-idf-components-bt-controller-esp32-Kconfig.in-1", + "name": "BTDM_CTRL_MODE", + "title": "Bluetooth controller mode (BR/EDR/BLE/DUALMODE)", + "type": "choice" + }, + { + "children": [], + "depends_on": "(BTDM_CTRL_MODE_BLE_ONLY || BTDM_CTRL_MODE_BTDM) && BT_CONTROLLER_ENABLED", + "help": "BLE maximum connections of bluetooth controller.\nEach connection uses 1KB static DRAM whenever the BT controller is enabled.", + "id": "BTDM_CTRL_BLE_MAX_CONN", + "name": "BTDM_CTRL_BLE_MAX_CONN", + "range": null, + "title": "BLE Max Connections", + "type": "int" + }, + { + "children": [], + "depends_on": "(BTDM_CTRL_MODE_BR_EDR_ONLY || BTDM_CTRL_MODE_BTDM) && BT_CONTROLLER_ENABLED", + "help": "BR/EDR default minimum size of encryption key when start encryption.", + "id": "BTDM_CTRL_BR_EDR_MIN_ENC_KEY_SZ_DFT", + "name": "BTDM_CTRL_BR_EDR_MIN_ENC_KEY_SZ_DFT", + "range": null, + "title": "BR/EDR default minimum size of encryption key", + "type": "int" + }, + { + "children": [], + "depends_on": "(BTDM_CTRL_MODE_BR_EDR_ONLY || BTDM_CTRL_MODE_BTDM) && BT_CONTROLLER_ENABLED", + "help": "BR/EDR ACL maximum connections of bluetooth controller.\nEach connection uses 1.2 KB DRAM whenever the BT controller is enabled.", + "id": "BTDM_CTRL_BR_EDR_MAX_ACL_CONN", + "name": "BTDM_CTRL_BR_EDR_MAX_ACL_CONN", + "range": null, + "title": "BR/EDR ACL Max Connections", + "type": "int" + }, + { + "children": [], + "depends_on": "(BTDM_CTRL_MODE_BR_EDR_ONLY || BTDM_CTRL_MODE_BTDM) && BT_CONTROLLER_ENABLED", + "help": "BR/EDR Synchronize maximum connections of bluetooth controller.\nEach connection uses 2 KB DRAM whenever the BT controller is enabled.", + "id": "BTDM_CTRL_BR_EDR_MAX_SYNC_CONN", + "name": "BTDM_CTRL_BR_EDR_MAX_SYNC_CONN", + "range": null, + "title": "BR/EDR Sync(SCO/eSCO) Max Connections", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BTDM_CTRL_BR_EDR_SCO_DATA_PATH_HCI", + "name": "BTDM_CTRL_BR_EDR_SCO_DATA_PATH_HCI", + "range": null, + "title": "HCI", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BTDM_CTRL_BR_EDR_SCO_DATA_PATH_PCM", + "name": "BTDM_CTRL_BR_EDR_SCO_DATA_PATH_PCM", + "range": null, + "title": "PCM", + "type": "bool" + } + ], + "depends_on": "(BTDM_CTRL_MODE_BR_EDR_ONLY || BTDM_CTRL_MODE_BTDM) && BT_CONTROLLER_ENABLED", + "help": "SCO data path, i.e. HCI or PCM.\nSCO data can be sent/received through HCI synchronous packets, or the data\ncan be routed to on-chip PCM module on ESP32. PCM input/output signals can\nbe \"matrixed\" to GPIOs. The default data path can also be set using API\n\"esp_bredr_sco_datapath_set\"", + "id": "component-config-bluetooth-controller-options-br-edr-sync-sco-esco-default-data-path-C:-esp-v6.0-esp-idf-components-bt-controller-esp32-Kconfig.in-54", + "name": "BTDM_CTRL_BR_EDR_SCO_DATA_PATH", + "title": "BR/EDR Sync(SCO/eSCO) default data path", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": null, + "id": "BTDM_CTRL_BR_EDR_SCO_DATA_PATH_EFF", + "name": "BTDM_CTRL_BR_EDR_SCO_DATA_PATH_EFF", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BTDM_CTRL_PCM_ROLE_MASTER", + "name": "BTDM_CTRL_PCM_ROLE_MASTER", + "range": null, + "title": "PCM Master", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BTDM_CTRL_PCM_ROLE_SLAVE", + "name": "BTDM_CTRL_PCM_ROLE_SLAVE", + "range": null, + "title": "PCM Slave", + "type": "bool" + } + ], + "depends_on": "BTDM_CTRL_PCM_ROLE_EDGE_CONFIG && BT_CONTROLLER_ENABLED", + "help": "PCM role can be configured as PCM master or PCM slave", + "id": "component-config-bluetooth-controller-options-pcm-signal-configurations-role-polar-and-channel-mode-stereo-mono--pcm-role-C:-esp-v6.0-esp-idf-components-bt-controller-esp32-Kconfig.in-82", + "name": "BTDM_CTRL_PCM_ROLE", + "title": "PCM Role", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BTDM_CTRL_PCM_POLAR_FALLING_EDGE", + "name": "BTDM_CTRL_PCM_POLAR_FALLING_EDGE", + "range": null, + "title": "Falling Edge", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BTDM_CTRL_PCM_POLAR_RISING_EDGE", + "name": "BTDM_CTRL_PCM_POLAR_RISING_EDGE", + "range": null, + "title": "Rising Edge", + "type": "bool" + } + ], + "depends_on": "BTDM_CTRL_PCM_ROLE_EDGE_CONFIG && BT_CONTROLLER_ENABLED", + "help": "PCM polarity can be configured as Falling Edge or Rising Edge", + "id": "component-config-bluetooth-controller-options-pcm-signal-configurations-role-polar-and-channel-mode-stereo-mono--pcm-polar-C:-esp-v6.0-esp-idf-components-bt-controller-esp32-Kconfig.in-94", + "name": "BTDM_CTRL_PCM_POLAR", + "title": "PCM Polar", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Stereo Mode(Dual channel): FSYNC and DOUT signals both change simultaneously on the edge of CLK.\nThe FSYNC signal continues until the end of the current channel-data transmission.\n(There is a waveform graph under the path examples/bluetooth/bluedroid/classic_bt/hfp_ag/image)", + "id": "BTDM_CTRL_PCM_FSYNCSHP_STEREO_MODE", + "name": "BTDM_CTRL_PCM_FSYNCSHP_STEREO_MODE", + "range": null, + "title": "Stereo Mode", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Mono Mode 1(Single channel): FSYNC signal starts to change a CLK clock cycle earlier than the DOUT signal.\nThe FSYNC signal continues for one extra CLK clock cycle.\n(There is a waveform graph under the path examples/bluetooth/bluedroid/classic_bt/hfp_ag/image)", + "id": "BTDM_CTRL_PCM_FSYNCSHP_MONO_MODE_LF", + "name": "BTDM_CTRL_PCM_FSYNCSHP_MONO_MODE_LF", + "range": null, + "title": "Mono Mode 1", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Mono Mode 2(Single channel): FSYNC and DOUT signals both change simultaneously on the edge of CLK.\nThe FSYNC signal continues for one extra CLK clock cycle.\n(There is a waveform graph under the path examples/bluetooth/bluedroid/classic_bt/hfp_ag/image)", + "id": "BTDM_CTRL_PCM_FSYNCSHP_MONO_MODE_FF", + "name": "BTDM_CTRL_PCM_FSYNCSHP_MONO_MODE_FF", + "range": null, + "title": "Mono Mode 2", + "type": "bool" + } + ], + "depends_on": "BTDM_CTRL_PCM_ROLE_EDGE_CONFIG && BT_CONTROLLER_ENABLED", + "help": "PCM frame synchronization signal shape can be configured as Stereo Mode or Mono Mode.\n(There are detailed instructions under the path examples/bluetooth/bluedroid/classic_bt/hfp_ag/README.md)", + "id": "component-config-bluetooth-controller-options-pcm-signal-configurations-role-polar-and-channel-mode-stereo-mono--channel-mode-stereo-mono--C:-esp-v6.0-esp-idf-components-bt-controller-esp32-Kconfig.in-106", + "name": "BTDM_CTRL_PCM_FSYNCSHP", + "title": "Channel Mode(Stereo/Mono)", + "type": "choice" + } + ], + "depends_on": "BTDM_CTRL_BR_EDR_SCO_DATA_PATH_PCM && BT_CONTROLLER_ENABLED", + "help": null, + "id": "BTDM_CTRL_PCM_ROLE_EDGE_CONFIG", + "is_menuconfig": true, + "name": "BTDM_CTRL_PCM_ROLE_EDGE_CONFIG", + "range": null, + "title": "PCM Signal Configurations: Role, Polar and Channel Mode(Stereo/Mono)", + "type": "menu" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": null, + "id": "BTDM_CTRL_PCM_ROLE_EFF", + "name": "BTDM_CTRL_PCM_ROLE_EFF", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": null, + "id": "BTDM_CTRL_PCM_POLAR_EFF", + "name": "BTDM_CTRL_PCM_POLAR_EFF", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": null, + "id": "BTDM_CTRL_PCM_FSYNCSHP_EFF", + "name": "BTDM_CTRL_PCM_FSYNCSHP_EFF", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BTDM_CTRL_MODE_BTDM && BT_CONTROLLER_ENABLED", + "help": "BLE auto latency, used to enhance classic BT performance\nwhile classic BT and BLE are enabled at the same time.", + "id": "BTDM_CTRL_AUTO_LATENCY", + "name": "BTDM_CTRL_AUTO_LATENCY", + "range": null, + "title": "Auto latency", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": null, + "id": "BTDM_CTRL_AUTO_LATENCY_EFF", + "name": "BTDM_CTRL_AUTO_LATENCY_EFF", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "(BTDM_CTRL_MODE_BR_EDR_ONLY || BTDM_CTRL_MODE_BTDM) && BT_CONTROLLER_ENABLED", + "help": "To protect from BIAS attack during Legacy authentication,\nLegacy authentication Vendor specific event should be enabled", + "id": "BTDM_CTRL_LEGACY_AUTH_VENDOR_EVT", + "name": "BTDM_CTRL_LEGACY_AUTH_VENDOR_EVT", + "range": null, + "title": "Legacy Authentication Vendor Specific Event Enable", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": null, + "id": "BTDM_CTRL_LEGACY_AUTH_VENDOR_EVT_EFF", + "name": "BTDM_CTRL_LEGACY_AUTH_VENDOR_EVT_EFF", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": null, + "id": "BTDM_CTRL_BLE_MAX_CONN_EFF", + "name": "BTDM_CTRL_BLE_MAX_CONN_EFF", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": null, + "id": "BTDM_CTRL_BR_EDR_MIN_ENC_KEY_SZ_DFT_EFF", + "name": "BTDM_CTRL_BR_EDR_MIN_ENC_KEY_SZ_DFT_EFF", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": null, + "id": "BTDM_CTRL_BR_EDR_MAX_ACL_CONN_EFF", + "name": "BTDM_CTRL_BR_EDR_MAX_ACL_CONN_EFF", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BTDM_CTRL_PINNED_TO_CORE_0", + "name": "BTDM_CTRL_PINNED_TO_CORE_0", + "range": null, + "title": "Core 0 (PRO CPU)", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_UNICORE && ", + "help": null, + "id": "BTDM_CTRL_PINNED_TO_CORE_1", + "name": "BTDM_CTRL_PINNED_TO_CORE_1", + "range": null, + "title": "Core 1 (APP CPU)", + "type": "bool" + } + ], + "depends_on": "!FREERTOS_UNICORE && BT_CONTROLLER_ENABLED", + "help": "Specify the cpu core to run bluetooth controller.\nCan not specify no-affinity.", + "id": "component-config-bluetooth-controller-options-the-cpu-core-which-bluetooth-controller-run-C:-esp-v6.0-esp-idf-components-bt-controller-esp32-Kconfig.in-198", + "name": "BTDM_CTRL_PINNED_TO_CORE_CHOICE", + "title": "The cpu core which bluetooth controller run", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": null, + "id": "BTDM_CTRL_PINNED_TO_CORE", + "name": "BTDM_CTRL_PINNED_TO_CORE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Normal option. Mostly, choose this VHCI when bluetooth host run on ESP32, too.", + "id": "BTDM_CTRL_HCI_MODE_VHCI", + "name": "BTDM_CTRL_HCI_MODE_VHCI", + "range": null, + "title": "VHCI", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "If use external bluetooth host which run on other hardware and use UART as the HCI interface,\nchoose this option.", + "id": "BTDM_CTRL_HCI_MODE_UART_H4", + "name": "BTDM_CTRL_HCI_MODE_UART_H4", + "range": null, + "title": "UART(H4)", + "type": "bool" + } + ], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": "Specify HCI mode as VHCI or UART(H4)", + "id": "component-config-bluetooth-controller-options-hci-mode-C:-esp-v6.0-esp-idf-components-bt-controller-esp32-Kconfig.in-218", + "name": "BTDM_CTRL_HCI_MODE_CHOICE", + "title": "HCI mode", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "BTDM_CTRL_HCI_MODE_UART_H4 && BT_CONTROLLER_ENABLED", + "help": "Uart number for HCI. The available uart is UART1 and UART2.", + "id": "BTDM_CTRL_HCI_UART_NO", + "name": "BTDM_CTRL_HCI_UART_NO", + "range": null, + "title": "UART Number for HCI", + "type": "int" + }, + { + "children": [], + "depends_on": "BTDM_CTRL_HCI_MODE_UART_H4 && BT_CONTROLLER_ENABLED", + "help": "UART Baudrate for HCI. Please use standard baudrate.", + "id": "BTDM_CTRL_HCI_UART_BAUDRATE", + "name": "BTDM_CTRL_HCI_UART_BAUDRATE", + "range": null, + "title": "UART Baudrate for HCI", + "type": "int" + }, + { + "children": [], + "depends_on": "BTDM_CTRL_HCI_MODE_UART_H4 && BT_CONTROLLER_ENABLED", + "help": null, + "id": "BTDM_CTRL_HCI_UART_FLOW_CTRL_EN", + "name": "BTDM_CTRL_HCI_UART_FLOW_CTRL_EN", + "range": null, + "title": "Enable UART flow control", + "type": "bool" + } + ], + "depends_on": "BT_CONTROLLER_ENABLED", + "id": "component-config-bluetooth-controller-options-hci-uart-h4-options-C:-esp-v6.0-esp-idf-components-bt-controller-esp32-Kconfig.in-235", + "title": "HCI UART(H4) Options", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "ORIG mode is a bluetooth sleep mode that can be used for dual mode controller. In this mode,\nbluetooth controller sleeps between BR/EDR frames and BLE events. A low power clock is used to\nmaintain bluetooth reference clock.", + "id": "BTDM_CTRL_MODEM_SLEEP_MODE_ORIG", + "name": "BTDM_CTRL_MODEM_SLEEP_MODE_ORIG", + "range": null, + "title": "ORIG Mode(sleep with low power clock)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "EVED mode is for BLE only and is only for internal test. Do not use it for production. this\nmode is not compatible with DFS nor light sleep", + "id": "BTDM_CTRL_MODEM_SLEEP_MODE_EVED", + "name": "BTDM_CTRL_MODEM_SLEEP_MODE_EVED", + "range": null, + "title": "EVED Mode(For internal test only)", + "type": "bool" + } + ], + "depends_on": "BTDM_CTRL_MODEM_SLEEP && BT_CONTROLLER_ENABLED", + "help": "To select which strategy to use for modem sleep", + "id": "component-config-bluetooth-controller-options-modem-sleep-options-bluetooth-modem-sleep-bluetooth-modem-sleep-mode-C:-esp-v6.0-esp-idf-components-bt-controller-esp32-Kconfig.in-268", + "name": "BTDM_CTRL_MODEM_SLEEP_MODE", + "title": "Bluetooth Modem sleep mode", + "type": "choice" + } + ], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": "Enable/disable bluetooth controller low power mode.", + "id": "BTDM_CTRL_MODEM_SLEEP", + "name": "BTDM_CTRL_MODEM_SLEEP", + "range": null, + "title": "Bluetooth modem sleep", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "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, but\ncannot work when light sleep is enabled. Main crystal has a good performance in accuracy as\nthe bluetooth low power clock source.", + "id": "BTDM_CTRL_LPCLK_SEL_MAIN_XTAL", + "name": "BTDM_CTRL_LPCLK_SEL_MAIN_XTAL", + "range": null, + "title": "Main crystal", + "type": "bool" + }, + { + "children": [], + "depends_on": "(RTC_CLK_SRC_EXT_CRYS || RTC_CLK_SRC_EXT_OSC) && ", + "help": "External 32kHz crystal/oscillator 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.", + "id": "BTDM_CTRL_LPCLK_SEL_EXT_32K_XTAL", + "name": "BTDM_CTRL_LPCLK_SEL_EXT_32K_XTAL", + "range": null, + "title": "External 32kHz crystal/oscillator", + "type": "bool" + } + ], + "depends_on": "BTDM_CTRL_MODEM_SLEEP_MODE_ORIG && BT_CONTROLLER_ENABLED", + "help": "Select the low power clock source for bluetooth controller. Bluetooth low power clock is\nthe clock source to maintain time in sleep mode.\n\n- \"Main crystal\" option provides good accuracy and can support Dynamic Frequency Scaling\n to be used with Bluetooth modem sleep. Light sleep is not supported.\n- \"External 32kHz crystal\" option allows user to use a 32.768kHz crystal as Bluetooth low\n power clock. This option is allowed as long as External 32kHz crystal is configured as\n the system RTC clock source. This option provides good accuracy and supports Bluetooth\n modem sleep to be used alongside Dynamic Frequency Scaling or light sleep.", + "id": "component-config-bluetooth-controller-options-modem-sleep-options-bluetooth-low-power-clock-C:-esp-v6.0-esp-idf-components-bt-controller-esp32-Kconfig.in-288", + "name": "BTDM_CTRL_LOW_POWER_CLOCK", + "title": "Bluetooth low power clock", + "type": "choice" + } + ], + "depends_on": "BT_CONTROLLER_ENABLED", + "id": "component-config-bluetooth-controller-options-modem-sleep-options-C:-esp-v6.0-esp-idf-components-bt-controller-esp32-Kconfig.in-261", + "title": "MODEM SLEEP Options", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "BTDM_CTRL_LPCLK_SEL_EXT_32K_XTAL && BTDM_CTRL_MODE_BLE_ONLY && ", + "help": null, + "id": "BTDM_BLE_DEFAULT_SCA_500PPM", + "name": "BTDM_BLE_DEFAULT_SCA_500PPM", + "range": null, + "title": "251ppm to 500ppm", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BTDM_BLE_DEFAULT_SCA_250PPM", + "name": "BTDM_BLE_DEFAULT_SCA_250PPM", + "range": null, + "title": "151ppm to 250ppm", + "type": "bool" + } + ], + "depends_on": "(BTDM_CTRL_MODE_BLE_ONLY || BTDM_CTRL_MODE_BTDM) && BT_CONTROLLER_ENABLED", + "help": "BLE Sleep Clock Accuracy(SCA) for the local device is used to estimate window widening in BLE\nconnection events. With a lower level of clock accuracy(e.g. 500ppm over 250ppm), the slave\nneeds a larger RX window to synchronize with master in each anchor point, thus resulting in an\nincrease of power consumption but a higher level of robustness in keeping connected. According\nto the requirements of Bluetooth Core specification 4.2, the worst-case accuracy of Classic\nBluetooth Low Power Oscillator (LPO) is +/-250ppm in STANDBY and in low power modes such as\nsniff. For BLE the worst-case SCA is +/-500ppm.\n\n- \"151ppm to 250ppm\" option is the default value for Bluetooth Dual mode\n- \"251ppm to 500ppm\" option can be used in BLE only mode when using external 32kHz crystal as\n low power clock. This option is provided in case that BLE sleep clock has a lower level of\n accuracy, or other error sources contribute to the inaccurate timing during sleep.", + "id": "component-config-bluetooth-controller-options-ble-sleep-clock-accuracy-C:-esp-v6.0-esp-idf-components-bt-controller-esp32-Kconfig.in-321", + "name": "BTDM_BLE_SLEEP_CLOCK_ACCURACY", + "title": "BLE Sleep Clock Accuracy", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": null, + "id": "BTDM_BLE_SLEEP_CLOCK_ACCURACY_INDEX_EFF", + "name": "BTDM_BLE_SLEEP_CLOCK_ACCURACY_INDEX_EFF", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "This way is to use advertiser address filtering. The adv packet of the same address is only\nallowed to be reported once", + "id": "BTDM_SCAN_DUPL_TYPE_DEVICE", + "name": "BTDM_SCAN_DUPL_TYPE_DEVICE", + "range": null, + "title": "Scan Duplicate By Device Address", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "This way is to use advertising data filtering. All same advertising data only allow to be reported\nonce even though they are from different devices.", + "id": "BTDM_SCAN_DUPL_TYPE_DATA", + "name": "BTDM_SCAN_DUPL_TYPE_DATA", + "range": null, + "title": "Scan Duplicate By Advertising Data", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "This way is to use advertising data and device address filtering. All different adv packets with\nthe same address are allowed to be reported.", + "id": "BTDM_SCAN_DUPL_TYPE_DATA_DEVICE", + "name": "BTDM_SCAN_DUPL_TYPE_DATA_DEVICE", + "range": null, + "title": "Scan Duplicate By Device Address And Advertising Data", + "type": "bool" + } + ], + "depends_on": "BTDM_BLE_SCAN_DUPL && BT_CONTROLLER_ENABLED", + "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.", + "id": "component-config-bluetooth-controller-options-ble-scan-duplicate-options-scan-duplicate-type-C:-esp-v6.0-esp-idf-components-bt-controller-esp32-Kconfig.in-358", + "name": "BTDM_SCAN_DUPL_TYPE", + "title": "Scan Duplicate Type", + "type": "choice" + }, + { + "children": [], + "depends_on": "BTDM_BLE_SCAN_DUPL && BT_CONTROLLER_ENABLED", + "help": null, + "id": "BTDM_SCAN_DUPL_TYPE", + "name": "BTDM_SCAN_DUPL_TYPE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BTDM_BLE_SCAN_DUPL && BT_CONTROLLER_ENABLED", + "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 oldest device will be refreshed.", + "id": "BTDM_SCAN_DUPL_CACHE_SIZE", + "name": "BTDM_SCAN_DUPL_CACHE_SIZE", + "range": null, + "title": "Maximum number of devices in scan duplicate filter", + "type": "int" + }, + { + "children": [], + "depends_on": "BTDM_BLE_SCAN_DUPL && BT_CONTROLLER_ENABLED", + "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.", + "id": "BTDM_SCAN_DUPL_CACHE_REFRESH_PERIOD", + "name": "BTDM_SCAN_DUPL_CACHE_REFRESH_PERIOD", + "range": null, + "title": "Duplicate scan list refresh period (seconds)", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "BTDM_BLE_MESH_SCAN_DUPL_EN && BT_CONTROLLER_ENABLED", + "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.", + "id": "BTDM_MESH_DUPL_SCAN_CACHE_SIZE", + "name": "BTDM_MESH_DUPL_SCAN_CACHE_SIZE", + "range": null, + "title": "Maximum number of Mesh adv packets in scan duplicate filter", + "type": "int" + } + ], + "depends_on": "BTDM_BLE_SCAN_DUPL && BT_CONTROLLER_ENABLED", + "help": "This enables the BLE scan duplicate for special BLE Mesh scan.", + "id": "BTDM_BLE_MESH_SCAN_DUPL_EN", + "name": "BTDM_BLE_MESH_SCAN_DUPL_EN", + "range": null, + "title": "Special duplicate scan mechanism for BLE Mesh scan", + "type": "bool" + } + ], + "depends_on": "(BTDM_CTRL_MODE_BTDM || BTDM_CTRL_MODE_BLE_ONLY) && BT_CONTROLLER_ENABLED", + "help": "This select enables parameters setting of BLE scan duplicate.", + "id": "BTDM_BLE_SCAN_DUPL", + "name": "BTDM_BLE_SCAN_DUPL", + "range": null, + "title": "BLE Scan Duplicate Options", + "type": "bool" + }, + { + "children": [], + "depends_on": "(BTDM_CTRL_MODE_BLE_ONLY || BTDM_CTRL_MODE_BTDM) && BT_CONTROLLER_ENABLED", + "help": "The full scan function is mainly used to provide BLE scan performance.\nThis is required for scenes with high scan performance requirements, such as BLE Mesh scenes.", + "id": "BTDM_CTRL_FULL_SCAN_SUPPORTED", + "name": "BTDM_CTRL_FULL_SCAN_SUPPORTED", + "range": null, + "title": "BLE full scan feature supported", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": "Disable active scan backoff. The bluetooth spec requires that scanners should run a backoff procedure to\nminimize collision of scan request PDUs from multiple scanners. If scan backoff is disabled, in active\nscanning, scan request PDU will be sent every time when HW receives scannable ADV PDU.", + "id": "BTDM_CTRL_SCAN_BACKOFF_UPPERLIMITMAX", + "name": "BTDM_CTRL_SCAN_BACKOFF_UPPERLIMITMAX", + "range": null, + "title": "Disable active scan backoff", + "type": "bool" + }, + { + "children": [], + "depends_on": "(BTDM_CTRL_MODE_BLE_ONLY || BTDM_CTRL_MODE_BTDM) && BT_CONTROLLER_ENABLED", + "help": "Enabling this option will add stricter verification of the Access Address in the CONNECT_IND PDU.\nThis improves security by ensuring that only connection requests with valid Access Addresses are accepted.\nIf disabled, only basic checks are applied, improving compatibility.", + "id": "BTDM_CTRL_CHECK_CONNECT_IND_ACCESS_ADDRESS", + "name": "BTDM_CTRL_CHECK_CONNECT_IND_ACCESS_ADDRESS", + "range": null, + "title": "Enable enhanced Access Address check in CONNECT_IND", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BTDM_BLE_ADV_REPORT_FLOW_CTRL_SUPP && BT_CONTROLLER_ENABLED", + "help": "The number of unprocessed advertising report that Bluedroid can save.If you set\n`BTDM_BLE_ADV_REPORT_FLOW_CTRL_NUM` to a small value, this may cause adv packets lost.\nIf you set `BTDM_BLE_ADV_REPORT_FLOW_CTRL_NUM` to a large value, Bluedroid 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`BTDM_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.", + "id": "BTDM_BLE_ADV_REPORT_FLOW_CTRL_NUM", + "name": "BTDM_BLE_ADV_REPORT_FLOW_CTRL_NUM", + "range": null, + "title": "BLE adv report flow control number", + "type": "int" + }, + { + "children": [], + "depends_on": "BTDM_BLE_ADV_REPORT_FLOW_CTRL_SUPP && BT_CONTROLLER_ENABLED", + "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 `BTDM_BLE_ADV_REPORT_DISCARD_THRSHOLD` to a small value or printf every adv lost event, it\nmay cause adv packets lost more.", + "id": "BTDM_BLE_ADV_REPORT_DISCARD_THRSHOLD", + "name": "BTDM_BLE_ADV_REPORT_DISCARD_THRSHOLD", + "range": null, + "title": "BLE adv lost event threshold value", + "type": "int" + } + ], + "depends_on": "(BTDM_CTRL_MODE_BTDM || BTDM_CTRL_MODE_BLE_ONLY) && BT_CONTROLLER_ENABLED", + "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.", + "id": "BTDM_BLE_ADV_REPORT_FLOW_CTRL_SUPP", + "name": "BTDM_BLE_ADV_REPORT_FLOW_CTRL_SUPP", + "range": null, + "title": "BLE adv report flow control supported", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "(BTDM_CTRL_MODE_BLE_ONLY || BTDM_CTRL_MODE_BTDM) && BT_CONTROLLER_ENABLED", + "help": "If this option is enabled, Controller will terminate the connection\nwhen Instant Passed (0x28) error occurs during connection update procedure.", + "id": "BTDM_BLE_LLCP_CONN_UPDATE", + "name": "BTDM_BLE_LLCP_CONN_UPDATE", + "range": null, + "title": "BLE ACL connection update procedure", + "type": "bool" + }, + { + "children": [], + "depends_on": "(BTDM_CTRL_MODE_BLE_ONLY || BTDM_CTRL_MODE_BTDM) && BT_CONTROLLER_ENABLED", + "help": "If this option is enabled, Controller will terminate the connection\nwhen Instant Passed (0x28) error occurs in channel map update procedure.", + "id": "BTDM_BLE_LLCP_CHAN_MAP_UPDATE", + "name": "BTDM_BLE_LLCP_CHAN_MAP_UPDATE", + "range": null, + "title": "BLE ACL channel map update procedure", + "type": "bool" + } + ], + "depends_on": "BT_CONTROLLER_ENABLED", + "id": "component-config-bluetooth-controller-options-ble-disconnects-when-instant-passed-0x28-occurs-C:-esp-v6.0-esp-idf-components-bt-controller-esp32-Kconfig.in-499", + "title": "BLE disconnects when Instant Passed (0x28) occurs", + "type": "menu" + }, + { + "children": [], + "depends_on": "(BTDM_CTRL_MODE_BLE_ONLY || BTDM_CTRL_MODE_BTDM) && BT_CONTROLLER_ENABLED", + "help": "If this option is enabled, The Controller will records the communication quality\nfor each channel and then start a timer to check and update the channel map every 4 seconds.", + "id": "BTDM_BLE_CHAN_ASS_EN", + "name": "BTDM_BLE_CHAN_ASS_EN", + "range": null, + "title": "Enable channel assessment", + "type": "bool" + }, + { + "children": [], + "depends_on": "(BTDM_CTRL_MODE_BTDM || BTDM_CTRL_MODE_BLE_ONLY) && BT_CONTROLLER_ENABLED", + "help": "If this option is disabled, The Controller will not start the LE authenticated payload timer.\nThis option is used for some compatibility problems related to LE ping procedure.", + "id": "BTDM_BLE_PING_EN", + "name": "BTDM_BLE_PING_EN", + "range": null, + "title": "Enable LE Ping procedure", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_ENABLED && BT_CONTROLLER_ENABLED", + "help": "Enables specific debugging features for the Bluetooth controller.\nThis option is strictly for internal debugging purposes and should not be enabled in production environments,\nas it may impact performance and stability.", + "id": "BTDM_CTRL_CONTROLLER_DEBUG_MODE_1", + "name": "BTDM_CTRL_CONTROLLER_DEBUG_MODE_1", + "range": null, + "title": "Enable Bluetooth controller debugging mode 1 (for internal use only)", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED", + "help": null, + "id": "BTDM_RESERVE_DRAM", + "name": "BTDM_RESERVE_DRAM", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": "BT_ENABLED && BT_CONTROLLER_ENABLED", + "help": "Using Level 4 interrupt for Bluetooth.", + "id": "BTDM_CTRL_HLI", + "name": "BTDM_CTRL_HLI", + "range": null, + "title": "High level interrupt", + "type": "bool" + } + ], + "depends_on": "BT_CONTROLLER_ENABLED", + "id": "component-config-bluetooth-controller-options-C:-esp-v6.0-esp-idf-components-bt-Kconfig-67", + "title": "Controller Options", + "type": "menu" + }, + { + "children": [], + "depends_on": "BT_ENABLED && BT_LE_RELEASE_IRAM_SUPPORTED", + "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 memory protection scheme (ESP_SYSTEM_MEMPROT)", + "id": "BT_RELEASE_IRAM", + "name": "BT_RELEASE_IRAM", + "range": null, + "title": "Release Bluetooth text (READ DOCS FIRST)", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED || BT_NIMBLE_ENABLED", + "help": "This option decides the maximum number of alarms which\ncould be used by Bluetooth host.", + "id": "BT_ALARM_MAX_NUM", + "name": "BT_ALARM_MAX_NUM", + "range": null, + "title": "Maximum number of Bluetooth alarms", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "(BT_BLE_SMP_ENABLE || BT_SMP_ENABLE) && ", + "help": "Use the built-in Bluedroid cryptographic implementation.\nThis provides compatibility with all features.\nThis option is only available for Bluedroid host.", + "id": "BT_SMP_CRYPTO_STACK_NATIVE", + "name": "BT_SMP_CRYPTO_STACK_NATIVE", + "range": null, + "title": "Native Bluedroid implementation", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Use TinyCrypt library for cryptographic operations.\nTinyCrypt is a lightweight cryptographic library designed for constrained devices.\nThis can reduce code size compared to the native implementation.\nThis is the default option.", + "id": "BT_SMP_CRYPTO_STACK_TINYCRYPT", + "name": "BT_SMP_CRYPTO_STACK_TINYCRYPT", + "range": null, + "title": "TinyCrypt", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Use mbedTLS library for cryptographic operations.\nThis can provide hardware acceleration on supported platforms and reduce code size\nby sharing crypto implementations with other components.", + "id": "BT_SMP_CRYPTO_STACK_MBEDTLS", + "name": "BT_SMP_CRYPTO_STACK_MBEDTLS", + "range": null, + "title": "mbedTLS", + "type": "bool" + } + ], + "depends_on": "BT_BLE_SMP_ENABLE || BT_SMP_ENABLE || BT_NIMBLE_SECURITY_ENABLE", + "help": "Select the cryptographic library to use for SMP operations (AES, AES-CMAC, ECDH P-256).", + "id": "component-config-bluetooth-common-options-smp-cryptographic-stack-C:-esp-v6.0-esp-idf-components-bt-common-Kconfig.in-9", + "name": "BT_SMP_CRYPTO_STACK", + "title": "SMP cryptographic stack", + "type": "choice" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BLE_LOG_ENABLED", + "help": "Stack size for BLE Log Task", + "id": "BLE_LOG_TASK_STACK_SIZE", + "name": "BLE_LOG_TASK_STACK_SIZE", + "range": null, + "title": "Stack size for BLE Log Task", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_LOG_ENABLED", + "help": "There're 2 log buffer managers (LBMs) with compare-and-swap\n(CAS) protection, 1 LBM with FreeRTOS mutex protection, 1 LBM\nwithout protection for critical section. Each LBM is managing\n2 ping-pong buffers, which means there will be 4 * 2 *\nBLE_LOG_LBM_TRANS_SIZE bytes buffer allocated", + "id": "BLE_LOG_LBM_TRANS_SIZE", + "name": "BLE_LOG_LBM_TRANS_SIZE", + "range": null, + "title": "Buffer size for each peripheral transport", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_LOG_ENABLED", + "help": "BLE Log module will search for an LBM with atomic lock protection first; if\nall LBMs with atomic lock protection are unavailable, BLE Log module will\ntry to use the LBM with spin lock protection. So the more LBMs with atomic\nlock protection are created, the better the logging performance will be.", + "id": "BLE_LOG_LBM_ATOMIC_LOCK_TASK_CNT", + "name": "BLE_LOG_LBM_ATOMIC_LOCK_TASK_CNT", + "range": null, + "title": "Count of log buffer managers with atomic lock protection for task context", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_LOG_ENABLED", + "help": "BLE Log module will search for an LBM with atomic lock protection first; if\nall LBMs with atomic lock protection are unavailable, BLE Log module will\ntry to use the LBM with spin lock protection. So the more LBMs with atomic\nlock protection are created, the more ISRs can nest.", + "id": "BLE_LOG_LBM_ATOMIC_LOCK_ISR_CNT", + "name": "BLE_LOG_LBM_ATOMIC_LOCK_ISR_CNT", + "range": null, + "title": "Count of log buffer managers with atomic lock protection for ISR context", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED && SOC_ESP_NIMBLE_CONTROLLER && BLE_LOG_ENABLED", + "help": "Current BLE Controller is ESP BLE Controller", + "id": "BLE_LOG_IS_ESP_CONTROLLER", + "name": "BLE_LOG_IS_ESP_CONTROLLER", + "range": null, + "title": "Current BLE Controller is ESP BLE Controller", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_CONTROLLER_ENABLED && !SOC_ESP_NIMBLE_CONTROLLER && BT_CTRL_RUN_IN_FLASH_ONLY && BLE_LOG_ENABLED", + "help": "Current BLE Controller is ESP BLE Legacy Controller", + "id": "BLE_LOG_IS_ESP_LEGACY_CONTROLLER", + "name": "BLE_LOG_IS_ESP_LEGACY_CONTROLLER", + "range": null, + "title": "Current BLE Controller is ESP BLE Legacy Controller", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_LOG_LL_ENABLED && BLE_LOG_ENABLED", + "help": "There're 2 Link Layer dedicated log buffer managers (LBMs) with\ncompare-and-swap (CAS) protection. Each LBM is managing 2 ping-\npong buffers, which means there will be additional 2 * 2 *\nBLE_LOG_LBM_LL_TRANS_SIZE bytes buffer allocated", + "id": "BLE_LOG_LBM_LL_TRANS_SIZE", + "name": "BLE_LOG_LBM_LL_TRANS_SIZE", + "range": null, + "title": "Buffer size for each peripheral transport of Link Layer LBM", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_LOG_LL_HCI_LOG_PAYLOAD_LEN_LIMIT_ENABLED && BLE_LOG_LL_ENABLED && BLE_LOG_ENABLED", + "help": "Maximum length for LL HCI Log payload (len_append).\nWhen the feature is enabled and len_append exceeds this value,\nit will be truncated.", + "id": "BLE_LOG_LL_HCI_LOG_PAYLOAD_LEN_LIMIT", + "name": "BLE_LOG_LL_HCI_LOG_PAYLOAD_LEN_LIMIT", + "range": null, + "title": "LL HCI Log Payload Length Limit (bytes)", + "type": "int" + } + ], + "depends_on": "BLE_LOG_LL_ENABLED && BLE_LOG_ENABLED", + "help": "Enable length limit for LL HCI Log payload (addr_append).\nWhen enabled, if len_append exceeds the configured limit,\nit will be truncated to the maximum length.", + "id": "BLE_LOG_LL_HCI_LOG_PAYLOAD_LEN_LIMIT_ENABLED", + "name": "BLE_LOG_LL_HCI_LOG_PAYLOAD_LEN_LIMIT_ENABLED", + "range": null, + "title": "Enable LL HCI Log Payload Length Limit", + "type": "bool" + } + ], + "depends_on": "BT_CONTROLLER_ENABLED && BLE_LOG_ENABLED", + "help": "Enable BLE Log for Link Layer", + "id": "BLE_LOG_LL_ENABLED", + "name": "BLE_LOG_LL_ENABLED", + "range": null, + "title": "Enable BLE Log for Link Layer", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_LOG_ENABLED", + "help": "Enable BLE Host side HCI Logging", + "id": "BLE_LOG_HOST_SIDE_HCI_LOG_ENABLED", + "name": "BLE_LOG_HOST_SIDE_HCI_LOG_ENABLED", + "range": null, + "title": "Enable BLE Host side HCI Logging", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_LOG_ENABLED", + "help": "Checksum is the default method for BLE Log data integrity check,\nbut for targets with slow CPU speed, it may cause significant system\nperformance decrease; a compromise could be made to balance the\nrealtime performance and log data integrity, which is calculating the\nchecksum of frame head and payload all together by default, or only\ncalculate the checksum of frame head to minimize performance decrease", + "id": "BLE_LOG_PAYLOAD_CHECKSUM_ENABLED", + "name": "BLE_LOG_PAYLOAD_CHECKSUM_ENABLED", + "range": null, + "title": "Enable payload checksum for BLE Log data integrity check", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_LOG_ENABLED", + "help": "XOR checksum is introduced for integrity check performance optimization.", + "id": "BLE_LOG_XOR_CHECKSUM_ENABLED", + "name": "BLE_LOG_XOR_CHECKSUM_ENABLED", + "range": null, + "title": "Enable XOR checksum for BLE Log payload integrity check", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_LOG_ENABLED", + "help": "Enable enhanced statistics for written/lost frame/bytes count, which may\ncost additional ~100kB memory", + "id": "BLE_LOG_ENH_STAT_ENABLED", + "name": "BLE_LOG_ENH_STAT_ENABLED", + "range": null, + "title": "Enable enhanced statistics for BLE Log", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_LOG_TS_ENABLED && BLE_LOG_TS_ENABLED && BLE_LOG_ENABLED", + "help": "GPIO number for TS toggle output", + "id": "BLE_LOG_SYNC_IO_NUM", + "name": "BLE_LOG_SYNC_IO_NUM", + "range": null, + "title": "GPIO number for Timestamp Synchronization (TS) toggle output", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_LOG_TS_ENABLED && BLE_LOG_ENABLED", + "help": "Timeout (ms) for Timestamp Synchronization toggle", + "id": "BLE_LOG_TS_TRIGGER_TIMEOUT_MS", + "name": "BLE_LOG_TS_TRIGGER_TIMEOUT_MS", + "range": null, + "title": "Timeout (ms) for Timestamp Synchronization toggle", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "ESP Timer based periodic TS trigger", + "id": "BLE_LOG_TS_TRIGGER_ESP_TIMER", + "name": "BLE_LOG_TS_TRIGGER_ESP_TIMER", + "range": null, + "title": "BLE Log Timestamp Synchronization trigger - ESP Timer", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Task Event based TS trigger (Light Sleep Test Compatibility)", + "id": "BLE_LOG_TS_TRIGGER_TASK_EVENT", + "name": "BLE_LOG_TS_TRIGGER_TASK_EVENT", + "range": null, + "title": "BLE Log Timestamp Synchronization trigger - Task Event", + "type": "bool" + } + ], + "depends_on": "BLE_LOG_TS_ENABLED && BLE_LOG_ENABLED", + "help": "Choose BLE Log Timestamp Synchronization trigger", + "id": "component-config-bluetooth-common-options-ble-log-enable-ble-log-module-experimental--enable-ble-log-timestamp-synchronization-ts--ble-log-timestamp-synchronization-trigger-choice-C:-esp-v6.0-esp-idf-components-bt-common-ble_log-Kconfig.in-151", + "name": "BLE_LOG_TS_TRIGGER_CHOICE", + "title": "BLE Log Timestamp Synchronization trigger choice", + "type": "choice" + }, + { + "children": [], + "depends_on": "BLE_LOG_TS_TRIGGER_ESP_TIMER && BLE_LOG_TS_ENABLED && BLE_LOG_ENABLED", + "help": "Utilize ISR dispatch method for ESP Timer as Timestamp Synchronization trigger", + "id": "BLE_LOG_TS_TRIGGER_ESP_TIMER_ISR_DISPATCH_METHOD", + "name": "BLE_LOG_TS_TRIGGER_ESP_TIMER_ISR_DISPATCH_METHOD", + "range": null, + "title": "Utilize ISR dispatch method for ESP Timer as Timestamp Synchronization trigger", + "type": "bool" + } + ], + "depends_on": "BLE_LOG_ENABLED", + "help": "Enable BLE Log TS with external logging module", + "id": "BLE_LOG_TS_ENABLED", + "name": "BLE_LOG_TS_ENABLED", + "range": null, + "title": "Enable BLE Log Timestamp Synchronization (TS)", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Dummy transport (dump only)", + "id": "BLE_LOG_PRPH_DUMMY", + "name": "BLE_LOG_PRPH_DUMMY", + "range": null, + "title": "Dummy transport", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_GPSPI_SUPPORTED && ", + "help": "Utilize SPI master DMA driver as transport", + "id": "BLE_LOG_PRPH_SPI_MASTER_DMA", + "name": "BLE_LOG_PRPH_SPI_MASTER_DMA", + "range": null, + "title": "Utilize SPI master DMA driver as transport", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_UHCI_SUPPORTED && ", + "help": "Utilize UART DMA driver as transport", + "id": "BLE_LOG_PRPH_UART_DMA", + "name": "BLE_LOG_PRPH_UART_DMA", + "range": null, + "title": "Utilize UART DMA driver as transport", + "type": "bool" + } + ], + "depends_on": "BLE_LOG_ENABLED", + "help": "Choose BLE Log peripheral", + "id": "component-config-bluetooth-common-options-ble-log-enable-ble-log-module-experimental--ble-log-peripheral-choice-C:-esp-v6.0-esp-idf-components-bt-common-ble_log-Kconfig.in-178", + "name": "BLE_LOG_PRPH_CHOICE", + "title": "BLE Log peripheral choice", + "type": "choice" + }, + { + "children": [], + "depends_on": "BLE_LOG_PRPH_SPI_MASTER_DMA && BLE_LOG_ENABLED", + "help": "GPIO number of MOSI port for SPI master DMA transport", + "id": "BLE_LOG_PRPH_SPI_MASTER_DMA_MOSI_IO_NUM", + "name": "BLE_LOG_PRPH_SPI_MASTER_DMA_MOSI_IO_NUM", + "range": null, + "title": "GPIO number of MOSI port for SPI master DMA transport", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_LOG_PRPH_SPI_MASTER_DMA && BLE_LOG_ENABLED", + "help": "GPIO number of SCLK port for SPI master DMA transport", + "id": "BLE_LOG_PRPH_SPI_MASTER_DMA_SCLK_IO_NUM", + "name": "BLE_LOG_PRPH_SPI_MASTER_DMA_SCLK_IO_NUM", + "range": null, + "title": "GPIO number of SCLK port for SPI master DMA transport", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_LOG_PRPH_SPI_MASTER_DMA && BLE_LOG_ENABLED", + "help": "GPIO number of CS port for SPI master DMA transport", + "id": "BLE_LOG_PRPH_SPI_MASTER_DMA_CS_IO_NUM", + "name": "BLE_LOG_PRPH_SPI_MASTER_DMA_CS_IO_NUM", + "range": null, + "title": "GPIO number of CS port for SPI master DMA transport", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_LOG_PRPH_UART_DMA && BLE_LOG_ENABLED", + "help": "UART port number for UART DMA", + "id": "BLE_LOG_PRPH_UART_DMA_PORT", + "name": "BLE_LOG_PRPH_UART_DMA_PORT", + "range": null, + "title": "UART port number for UART DMA transport", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_LOG_PRPH_UART_DMA && BLE_LOG_ENABLED", + "help": "Determine the baud rate of UART port", + "id": "BLE_LOG_PRPH_UART_DMA_BAUD_RATE", + "name": "BLE_LOG_PRPH_UART_DMA_BAUD_RATE", + "range": null, + "title": "Baud rate of UART port for UART DMA transport", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_LOG_PRPH_UART_DMA && BLE_LOG_ENABLED", + "help": "GPIO number for UART TX", + "id": "BLE_LOG_PRPH_UART_DMA_TX_IO_NUM", + "name": "BLE_LOG_PRPH_UART_DMA_TX_IO_NUM", + "range": null, + "title": "GPIO number for UART TX", + "type": "int" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "Maximum output length for a single log", + "id": "BLE_MESH_COMPRESSED_LOG_BUFFER_LEN", + "name": "BLE_MESH_COMPRESSED_LOG_BUFFER_LEN", + "range": null, + "title": "BLE Mesh log buffer length", + "type": "int" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_STACK_ERR_LOG_COMPRESSION && BLE_MESH_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "When this option is enabled, the log data will be output\nthrough both the compressed log interface and the original\nUART interface at the same time, meaning that the log\nstatements will appear on both paths. However, please note\nthat this dual-output approach introduces additional code\nand string constants, which will increase the size of the\nfirmware binary file. When this option is disabled, the\nlogs will no longer be printed through the original UART\noutput path; instead, they will only be output through the\ncompressed log interface. As the code and strings related\nto the original UART output are omitted, the size of the\nfirmware binary file can be effectively reduced.", + "id": "BLE_MESH_STACK_ERR_LOG_PRESERVE", + "name": "BLE_MESH_STACK_ERR_LOG_PRESERVE", + "range": null, + "title": "Keep the original error log statement", + "type": "bool" + } + ], + "depends_on": "BLE_MESH_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "The error log in the BLE-MESH component will be compressed", + "id": "BLE_MESH_STACK_ERR_LOG_COMPRESSION", + "name": "BLE_MESH_STACK_ERR_LOG_COMPRESSION", + "range": null, + "title": "Compress ERROR log of ESP-BLE-MESH", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_STACK_WARN_LOG_COMPRESSION && BLE_MESH_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "Please refer to the help information in BLE_MESH_STACK_ERR_LOG_PRESERVE", + "id": "BLE_MESH_STACK_WARN_LOG_PRESERVE", + "name": "BLE_MESH_STACK_WARN_LOG_PRESERVE", + "range": null, + "title": "Keep the original warn log statement", + "type": "bool" + } + ], + "depends_on": "BLE_MESH_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "The warn log in the BLE-MESH component will be compressed", + "id": "BLE_MESH_STACK_WARN_LOG_COMPRESSION", + "name": "BLE_MESH_STACK_WARN_LOG_COMPRESSION", + "range": null, + "title": "Compress warn log of ESP-BLE-MESH", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_STACK_INFO_LOG_COMPRESSION && BLE_MESH_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "Please refer to the help information in BLE_MESH_STACK_ERR_LOG_PRESERVE", + "id": "BLE_MESH_STACK_INFO_LOG_PRESERVE", + "name": "BLE_MESH_STACK_INFO_LOG_PRESERVE", + "range": null, + "title": "Keep the original info log statement", + "type": "bool" + } + ], + "depends_on": "BLE_MESH_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "The info log in the BLE-MESH component will be compressed", + "id": "BLE_MESH_STACK_INFO_LOG_COMPRESSION", + "name": "BLE_MESH_STACK_INFO_LOG_COMPRESSION", + "range": null, + "title": "Compress info log of ESP-BLE-MESH", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_STACK_DEBUG_LOG_COMPRESSION && BLE_MESH_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "Please refer to the help information in BLE_MESH_STACK_ERR_LOG_PRESERVE", + "id": "BLE_MESH_STACK_DEBUG_LOG_PRESERVE", + "name": "BLE_MESH_STACK_DEBUG_LOG_PRESERVE", + "range": null, + "title": "Keep the original debug log statement", + "type": "bool" + } + ], + "depends_on": "BLE_MESH_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "The debug log in the BLE-MESH component will be compressed", + "id": "BLE_MESH_STACK_DEBUG_LOG_COMPRESSION", + "name": "BLE_MESH_STACK_DEBUG_LOG_COMPRESSION", + "range": null, + "title": "Compress debug log of ESP-BLE-MESH", + "type": "bool" + } + ], + "depends_on": "BLE_MESH_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "id": "component-config-bluetooth-common-options-ble-log-enable-ble-log-module-experimental--settings-of-ble-log-compression-enable-ble-log-compression-preview-please-read-help-information--enable-ble-mesh-log-compression-preview--select-the-stack-log-tag-to-be-compressed-C:-esp-v6.0-esp-idf-components-bt-common-ble_log-extension-log_compression-Kconfig.in-45", + "title": "Select the stack log tag to be compressed", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_NET_BUF_ERR_LOG_COMPRESSION && BLE_MESH_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "When this option is enabled, the log data will be output\nthrough both the compressed log interface and the original\nUART interface at the same time, meaning that the log\nstatements will appear on both paths. However, please note\nthat this dual-output approach introduces additional code\nand string constants, which will increase the size of the\nfirmware binary file. When this option is disabled, the\nlogs will no longer be printed through the original UART\noutput path; instead, they will only be output through the\ncompressed log interface. As the code and strings related\nto the original UART output are omitted, the size of the\nfirmware binary file can be effectively reduced.", + "id": "BLE_MESH_NET_BUF_ERR_LOG_PRESERVE", + "name": "BLE_MESH_NET_BUF_ERR_LOG_PRESERVE", + "range": null, + "title": "Keep the original error log statement", + "type": "bool" + } + ], + "depends_on": "BLE_MESH_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "The error log in the BLE-MESH component will be compressed", + "id": "BLE_MESH_NET_BUF_ERR_LOG_COMPRESSION", + "name": "BLE_MESH_NET_BUF_ERR_LOG_COMPRESSION", + "range": null, + "title": "Compress ERROR log of ESP-BLE-MESH", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_NET_BUF_WARN_LOG_COMPRESSION && BLE_MESH_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "Please refer to the help information in BLE_MESH_NET_BUF_ERR_LOG_PRESERVE", + "id": "BLE_MESH_NET_BUF_WARN_LOG_PRESERVE", + "name": "BLE_MESH_NET_BUF_WARN_LOG_PRESERVE", + "range": null, + "title": "Keep the original warn log statement", + "type": "bool" + } + ], + "depends_on": "BLE_MESH_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "The warn log in the BLE-MESH component will be compressed", + "id": "BLE_MESH_NET_BUF_WARN_LOG_COMPRESSION", + "name": "BLE_MESH_NET_BUF_WARN_LOG_COMPRESSION", + "range": null, + "title": "Compress warn log of ESP-BLE-MESH", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_NET_BUF_INFO_LOG_COMPRESSION && BLE_MESH_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "Please refer to the help information in BLE_MESH_NET_BUF_ERR_LOG_PRESERVE", + "id": "BLE_MESH_NET_BUF_INFO_LOG_PRESERVE", + "name": "BLE_MESH_NET_BUF_INFO_LOG_PRESERVE", + "range": null, + "title": "Keep the original info log statement", + "type": "bool" + } + ], + "depends_on": "BLE_MESH_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "The info log in the BLE-MESH component will be compressed", + "id": "BLE_MESH_NET_BUF_INFO_LOG_COMPRESSION", + "name": "BLE_MESH_NET_BUF_INFO_LOG_COMPRESSION", + "range": null, + "title": "Compress info log of ESP-BLE-MESH", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_NET_BUF_DEBUG_LOG_COMPRESSION && BLE_MESH_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "Please refer to the help information in BLE_MESH_NET_BUF_ERR_LOG_PRESERVE", + "id": "BLE_MESH_NET_BUF_DEBUG_LOG_PRESERVE", + "name": "BLE_MESH_NET_BUF_DEBUG_LOG_PRESERVE", + "range": null, + "title": "Keep the original debug log statement", + "type": "bool" + } + ], + "depends_on": "BLE_MESH_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "The debug log in the BLE-MESH component will be compressed", + "id": "BLE_MESH_NET_BUF_DEBUG_LOG_COMPRESSION", + "name": "BLE_MESH_NET_BUF_DEBUG_LOG_COMPRESSION", + "range": null, + "title": "Compress debug log of ESP-BLE-MESH", + "type": "bool" + } + ], + "depends_on": "BLE_MESH_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "id": "component-config-bluetooth-common-options-ble-log-enable-ble-log-module-experimental--settings-of-ble-log-compression-enable-ble-log-compression-preview-please-read-help-information--enable-ble-mesh-log-compression-preview--select-the-net-buf-log-tag-to-be-compressed-C:-esp-v6.0-esp-idf-components-bt-common-ble_log-extension-log_compression-Kconfig.in-103", + "title": "Select the net buf log tag to be compressed", + "type": "menu" + } + ], + "depends_on": "BLE_COMPRESSED_LOG_ENABLE && BLE_MESH && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "Apply compression to ESP-BLE-MESH protocol stack logs. Requires\nbase BLE compression to be enabled. Specifically optimizes log\nstorage and transmission for ble mesh.\n\nNote: This library depends on additional Python packages. It will\nfunction correctly only after these dependencies are installed;\nrefer to:\n\"components/bt/common/ble_log/log_compression/README.en.md\"\nfor installation instructions.\n\nIf the required packages are not installed, the log-compression\nmechanism will remain disabled even when this Config is enabled.", + "id": "BLE_MESH_COMPRESSED_LOG_ENABLE", + "is_menuconfig": true, + "name": "BLE_MESH_COMPRESSED_LOG_ENABLE", + "range": null, + "title": "Enable BLE Mesh log compression(Preview)", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "Maximum output length for a single log", + "id": "BLE_HOST_COMPRESSED_LOG_BUFFER_LEN", + "name": "BLE_HOST_COMPRESSED_LOG_BUFFER_LEN", + "range": null, + "title": "Host log buffer length", + "type": "int" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BLE_BLUEDROID_BTM_ERROR_LOG_COMPRESSION && BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "When this option is enabled, the log data will be output\nthrough both the compressed log interface and the original\nUART interface at the same time, meaning that the log\nstatements will appear on both paths. However, please note\nthat this dual-output approach introduces additional code\nand string constants, which will increase the size of the\nfirmware binary file. When this option is disabled, the\nlogs will no longer be printed through the original UART\noutput path; instead, they will only be output through the\ncompressed log interface. As the code and strings related\nto the original UART output are omitted, the size of the\nfirmware binary file can be effectively reduced.", + "id": "BLE_BLUEDROID_BTM_ERROR_LOG_PRESERVE", + "name": "BLE_BLUEDROID_BTM_ERROR_LOG_PRESERVE", + "range": null, + "title": "Keep the original error log statement", + "type": "bool" + } + ], + "depends_on": "BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "The error log in the Bluedroid host component will be compressed", + "id": "BLE_BLUEDROID_BTM_ERROR_LOG_COMPRESSION", + "name": "BLE_BLUEDROID_BTM_ERROR_LOG_COMPRESSION", + "range": null, + "title": "Compress error log of Bluedroid host", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_BLUEDROID_BTM_WARNING_LOG_COMPRESSION && BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "Please refer to the help information in BLE_BLUEDROID_BTM_ERROR_LOG_PRESERVE", + "id": "BLE_BLUEDROID_BTM_WARNING_LOG_PRESERVE", + "name": "BLE_BLUEDROID_BTM_WARNING_LOG_PRESERVE", + "range": null, + "title": "Keep the original warning log statement", + "type": "bool" + } + ], + "depends_on": "BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "The warning log in the Bluedroid host component will be compressed", + "id": "BLE_BLUEDROID_BTM_WARNING_LOG_COMPRESSION", + "name": "BLE_BLUEDROID_BTM_WARNING_LOG_COMPRESSION", + "range": null, + "title": "Compress warning log of Bluedroid host", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_BLUEDROID_BTM_API_LOG_COMPRESSION && BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "Please refer to the help information in BLE_BLUEDROID_BTM_ERROR_LOG_PRESERVE", + "id": "BLE_BLUEDROID_BTM_API_LOG_PRESERVE", + "name": "BLE_BLUEDROID_BTM_API_LOG_PRESERVE", + "range": null, + "title": "Keep the original api log statement", + "type": "bool" + } + ], + "depends_on": "BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "The api log in the Bluedroid host component will be compressed", + "id": "BLE_BLUEDROID_BTM_API_LOG_COMPRESSION", + "name": "BLE_BLUEDROID_BTM_API_LOG_COMPRESSION", + "range": null, + "title": "Compress api log of Bluedroid host", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_BLUEDROID_BTM_EVENT_LOG_COMPRESSION && BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "Please refer to the help information in BLE_BLUEDROID_BTM_ERROR_LOG_PRESERVE", + "id": "BLE_BLUEDROID_BTM_EVENT_LOG_PRESERVE", + "name": "BLE_BLUEDROID_BTM_EVENT_LOG_PRESERVE", + "range": null, + "title": "Keep the original event log statement", + "type": "bool" + } + ], + "depends_on": "BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "The event log in the Bluedroid host component will be compressed", + "id": "BLE_BLUEDROID_BTM_EVENT_LOG_COMPRESSION", + "name": "BLE_BLUEDROID_BTM_EVENT_LOG_COMPRESSION", + "range": null, + "title": "Compress event log of Bluedroid host", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_BLUEDROID_BTM_DEBUG_LOG_COMPRESSION && BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "Please refer to the help information in BLE_BLUEDROID_BTM_ERROR_LOG_PRESERVE", + "id": "BLE_BLUEDROID_BTM_DEBUG_LOG_PRESERVE", + "name": "BLE_BLUEDROID_BTM_DEBUG_LOG_PRESERVE", + "range": null, + "title": "Keep the original debug log statement", + "type": "bool" + } + ], + "depends_on": "BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "The debug log in the Bluedroid host component will be compressed", + "id": "BLE_BLUEDROID_BTM_DEBUG_LOG_COMPRESSION", + "name": "BLE_BLUEDROID_BTM_DEBUG_LOG_COMPRESSION", + "range": null, + "title": "Compress debug log of Bluedroid host", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_BLUEDROID_BTM_VERBOSE_LOG_COMPRESSION && BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "Please refer to the help information in BLE_BLUEDROID_BTM_ERROR_LOG_PRESERVE", + "id": "BLE_BLUEDROID_BTM_VERBOSE_LOG_PRESERVE", + "name": "BLE_BLUEDROID_BTM_VERBOSE_LOG_PRESERVE", + "range": null, + "title": "Keep the original verbose log statement", + "type": "bool" + } + ], + "depends_on": "BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "The verbose log in the Bluedroid host component will be compressed", + "id": "BLE_BLUEDROID_BTM_VERBOSE_LOG_COMPRESSION", + "name": "BLE_BLUEDROID_BTM_VERBOSE_LOG_COMPRESSION", + "range": null, + "title": "Compress verbose log of Bluedroid host", + "type": "bool" + } + ], + "depends_on": "BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "id": "component-config-bluetooth-common-options-ble-log-enable-ble-log-module-experimental--settings-of-ble-log-compression-enable-ble-log-compression-preview-please-read-help-information--enable-ble-host-log-compression-preview-only-bluedroid-host-for-now--select-the-btm-layer-log-tag-to-be-compressed-C:-esp-v6.0-esp-idf-components-bt-common-ble_log-extension-log_compression-Kconfig.in-186", + "title": "Select the BTM layer log tag to be compressed", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BLE_BLUEDROID_L2CAP_ERROR_LOG_COMPRESSION && BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "When this option is enabled, the log data will be output\nthrough both the compressed log interface and the original\nUART interface at the same time, meaning that the log\nstatements will appear on both paths. However, please note\nthat this dual-output approach introduces additional code\nand string constants, which will increase the size of the\nfirmware binary file. When this option is disabled, the\nlogs will no longer be printed through the original UART\noutput path; instead, they will only be output through the\ncompressed log interface. As the code and strings related\nto the original UART output are omitted, the size of the\nfirmware binary file can be effectively reduced.", + "id": "BLE_BLUEDROID_L2CAP_ERROR_LOG_PRESERVE", + "name": "BLE_BLUEDROID_L2CAP_ERROR_LOG_PRESERVE", + "range": null, + "title": "Keep the original error log statement", + "type": "bool" + } + ], + "depends_on": "BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "The error log in the Bluedroid host component will be compressed", + "id": "BLE_BLUEDROID_L2CAP_ERROR_LOG_COMPRESSION", + "name": "BLE_BLUEDROID_L2CAP_ERROR_LOG_COMPRESSION", + "range": null, + "title": "Compress error log of Bluedroid host", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_BLUEDROID_L2CAP_WARNING_LOG_COMPRESSION && BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "Please refer to the help information in BLE_BLUEDROID_L2CAP_ERROR_LOG_PRESERVE", + "id": "BLE_BLUEDROID_L2CAP_WARNING_LOG_PRESERVE", + "name": "BLE_BLUEDROID_L2CAP_WARNING_LOG_PRESERVE", + "range": null, + "title": "Keep the original warning log statement", + "type": "bool" + } + ], + "depends_on": "BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "The warning log in the Bluedroid host component will be compressed", + "id": "BLE_BLUEDROID_L2CAP_WARNING_LOG_COMPRESSION", + "name": "BLE_BLUEDROID_L2CAP_WARNING_LOG_COMPRESSION", + "range": null, + "title": "Compress warning log of Bluedroid host", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_BLUEDROID_L2CAP_API_LOG_COMPRESSION && BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "Please refer to the help information in BLE_BLUEDROID_L2CAP_ERROR_LOG_PRESERVE", + "id": "BLE_BLUEDROID_L2CAP_API_LOG_PRESERVE", + "name": "BLE_BLUEDROID_L2CAP_API_LOG_PRESERVE", + "range": null, + "title": "Keep the original api log statement", + "type": "bool" + } + ], + "depends_on": "BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "The api log in the Bluedroid host component will be compressed", + "id": "BLE_BLUEDROID_L2CAP_API_LOG_COMPRESSION", + "name": "BLE_BLUEDROID_L2CAP_API_LOG_COMPRESSION", + "range": null, + "title": "Compress api log of Bluedroid host", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_BLUEDROID_L2CAP_EVENT_LOG_COMPRESSION && BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "Please refer to the help information in BLE_BLUEDROID_L2CAP_ERROR_LOG_PRESERVE", + "id": "BLE_BLUEDROID_L2CAP_EVENT_LOG_PRESERVE", + "name": "BLE_BLUEDROID_L2CAP_EVENT_LOG_PRESERVE", + "range": null, + "title": "Keep the original event log statement", + "type": "bool" + } + ], + "depends_on": "BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "The event log in the Bluedroid host component will be compressed", + "id": "BLE_BLUEDROID_L2CAP_EVENT_LOG_COMPRESSION", + "name": "BLE_BLUEDROID_L2CAP_EVENT_LOG_COMPRESSION", + "range": null, + "title": "Compress event log of Bluedroid host", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_BLUEDROID_L2CAP_DEBUG_LOG_COMPRESSION && BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "Please refer to the help information in BLE_BLUEDROID_L2CAP_ERROR_LOG_PRESERVE", + "id": "BLE_BLUEDROID_L2CAP_DEBUG_LOG_PRESERVE", + "name": "BLE_BLUEDROID_L2CAP_DEBUG_LOG_PRESERVE", + "range": null, + "title": "Keep the original debug log statement", + "type": "bool" + } + ], + "depends_on": "BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "The debug log in the Bluedroid host component will be compressed", + "id": "BLE_BLUEDROID_L2CAP_DEBUG_LOG_COMPRESSION", + "name": "BLE_BLUEDROID_L2CAP_DEBUG_LOG_COMPRESSION", + "range": null, + "title": "Compress debug log of Bluedroid host", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_BLUEDROID_L2CAP_VERBOSE_LOG_COMPRESSION && BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "Please refer to the help information in BLE_BLUEDROID_L2CAP_ERROR_LOG_PRESERVE", + "id": "BLE_BLUEDROID_L2CAP_VERBOSE_LOG_PRESERVE", + "name": "BLE_BLUEDROID_L2CAP_VERBOSE_LOG_PRESERVE", + "range": null, + "title": "Keep the original verbose log statement", + "type": "bool" + } + ], + "depends_on": "BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "The verbose log in the Bluedroid host component will be compressed", + "id": "BLE_BLUEDROID_L2CAP_VERBOSE_LOG_COMPRESSION", + "name": "BLE_BLUEDROID_L2CAP_VERBOSE_LOG_COMPRESSION", + "range": null, + "title": "Compress verbose log of Bluedroid host", + "type": "bool" + } + ], + "depends_on": "BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "id": "component-config-bluetooth-common-options-ble-log-enable-ble-log-module-experimental--settings-of-ble-log-compression-enable-ble-log-compression-preview-please-read-help-information--enable-ble-host-log-compression-preview-only-bluedroid-host-for-now--select-the-la2cap-layer-log-tag-to-be-compressed-C:-esp-v6.0-esp-idf-components-bt-common-ble_log-extension-log_compression-Kconfig.in-271", + "title": "Select the LA2CAP layer log tag to be compressed", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BLE_BLUEDROID_GAP_ERROR_LOG_COMPRESSION && BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "When this option is enabled, the log data will be output\nthrough both the compressed log interface and the original\nUART interface at the same time, meaning that the log\nstatements will appear on both paths. However, please note\nthat this dual-output approach introduces additional code\nand string constants, which will increase the size of the\nfirmware binary file. When this option is disabled, the\nlogs will no longer be printed through the original UART\noutput path; instead, they will only be output through the\ncompressed log interface. As the code and strings related\nto the original UART output are omitted, the size of the\nfirmware binary file can be effectively reduced.", + "id": "BLE_BLUEDROID_GAP_ERROR_LOG_PRESERVE", + "name": "BLE_BLUEDROID_GAP_ERROR_LOG_PRESERVE", + "range": null, + "title": "Keep the original error log statement", + "type": "bool" + } + ], + "depends_on": "BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "The error log in the Bluedroid host component will be compressed", + "id": "BLE_BLUEDROID_GAP_ERROR_LOG_COMPRESSION", + "name": "BLE_BLUEDROID_GAP_ERROR_LOG_COMPRESSION", + "range": null, + "title": "Compress error log of Bluedroid host", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_BLUEDROID_GAP_WARNING_LOG_COMPRESSION && BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "Please refer to the help information in BLE_BLUEDROID_GAP_ERROR_LOG_PRESERVE", + "id": "BLE_BLUEDROID_GAP_WARNING_LOG_PRESERVE", + "name": "BLE_BLUEDROID_GAP_WARNING_LOG_PRESERVE", + "range": null, + "title": "Keep the original warning log statement", + "type": "bool" + } + ], + "depends_on": "BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "The warning log in the Bluedroid host component will be compressed", + "id": "BLE_BLUEDROID_GAP_WARNING_LOG_COMPRESSION", + "name": "BLE_BLUEDROID_GAP_WARNING_LOG_COMPRESSION", + "range": null, + "title": "Compress warning log of Bluedroid host", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_BLUEDROID_GAP_API_LOG_COMPRESSION && BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "Please refer to the help information in BLE_BLUEDROID_GAP_ERROR_LOG_PRESERVE", + "id": "BLE_BLUEDROID_GAP_API_LOG_PRESERVE", + "name": "BLE_BLUEDROID_GAP_API_LOG_PRESERVE", + "range": null, + "title": "Keep the original api log statement", + "type": "bool" + } + ], + "depends_on": "BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "The api log in the Bluedroid host component will be compressed", + "id": "BLE_BLUEDROID_GAP_API_LOG_COMPRESSION", + "name": "BLE_BLUEDROID_GAP_API_LOG_COMPRESSION", + "range": null, + "title": "Compress api log of Bluedroid host", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_BLUEDROID_GAP_EVENT_LOG_COMPRESSION && BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "Please refer to the help information in BLE_BLUEDROID_GAP_ERROR_LOG_PRESERVE", + "id": "BLE_BLUEDROID_GAP_EVENT_LOG_PRESERVE", + "name": "BLE_BLUEDROID_GAP_EVENT_LOG_PRESERVE", + "range": null, + "title": "Keep the original event log statement", + "type": "bool" + } + ], + "depends_on": "BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "The event log in the Bluedroid host component will be compressed", + "id": "BLE_BLUEDROID_GAP_EVENT_LOG_COMPRESSION", + "name": "BLE_BLUEDROID_GAP_EVENT_LOG_COMPRESSION", + "range": null, + "title": "Compress event log of Bluedroid host", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_BLUEDROID_GAP_DEBUG_LOG_COMPRESSION && BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "Please refer to the help information in BLE_BLUEDROID_GAP_ERROR_LOG_PRESERVE", + "id": "BLE_BLUEDROID_GAP_DEBUG_LOG_PRESERVE", + "name": "BLE_BLUEDROID_GAP_DEBUG_LOG_PRESERVE", + "range": null, + "title": "Keep the original debug log statement", + "type": "bool" + } + ], + "depends_on": "BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "The debug log in the Bluedroid host component will be compressed", + "id": "BLE_BLUEDROID_GAP_DEBUG_LOG_COMPRESSION", + "name": "BLE_BLUEDROID_GAP_DEBUG_LOG_COMPRESSION", + "range": null, + "title": "Compress debug log of Bluedroid host", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_BLUEDROID_GAP_VERBOSE_LOG_COMPRESSION && BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "Please refer to the help information in BLE_BLUEDROID_GAP_ERROR_LOG_PRESERVE", + "id": "BLE_BLUEDROID_GAP_VERBOSE_LOG_PRESERVE", + "name": "BLE_BLUEDROID_GAP_VERBOSE_LOG_PRESERVE", + "range": null, + "title": "Keep the original verbose log statement", + "type": "bool" + } + ], + "depends_on": "BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "The verbose log in the Bluedroid host component will be compressed", + "id": "BLE_BLUEDROID_GAP_VERBOSE_LOG_COMPRESSION", + "name": "BLE_BLUEDROID_GAP_VERBOSE_LOG_COMPRESSION", + "range": null, + "title": "Compress verbose log of Bluedroid host", + "type": "bool" + } + ], + "depends_on": "BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "id": "component-config-bluetooth-common-options-ble-log-enable-ble-log-module-experimental--settings-of-ble-log-compression-enable-ble-log-compression-preview-please-read-help-information--enable-ble-host-log-compression-preview-only-bluedroid-host-for-now--select-the-gap-layer-log-tag-to-be-compressed-C:-esp-v6.0-esp-idf-components-bt-common-ble_log-extension-log_compression-Kconfig.in-355", + "title": "Select the GAP layer log tag to be compressed", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BLE_BLUEDROID_GATT_ERROR_LOG_COMPRESSION && BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "When this option is enabled, the log data will be output\nthrough both the compressed log interface and the original\nUART interface at the same time, meaning that the log\nstatements will appear on both paths. However, please note\nthat this dual-output approach introduces additional code\nand string constants, which will increase the size of the\nfirmware binary file. When this option is disabled, the\nlogs will no longer be printed through the original UART\noutput path; instead, they will only be output through the\ncompressed log interface. As the code and strings related\nto the original UART output are omitted, the size of the\nfirmware binary file can be effectively reduced.", + "id": "BLE_BLUEDROID_GATT_ERROR_LOG_PRESERVE", + "name": "BLE_BLUEDROID_GATT_ERROR_LOG_PRESERVE", + "range": null, + "title": "Keep the original error log statement", + "type": "bool" + } + ], + "depends_on": "BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "The error log in the Bluedroid host component will be compressed", + "id": "BLE_BLUEDROID_GATT_ERROR_LOG_COMPRESSION", + "name": "BLE_BLUEDROID_GATT_ERROR_LOG_COMPRESSION", + "range": null, + "title": "Compress error log of Bluedroid host", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_BLUEDROID_GATT_WARNING_LOG_COMPRESSION && BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "Please refer to the help information in BLE_BLUEDROID_GATT_ERROR_LOG_PRESERVE", + "id": "BLE_BLUEDROID_GATT_WARNING_LOG_PRESERVE", + "name": "BLE_BLUEDROID_GATT_WARNING_LOG_PRESERVE", + "range": null, + "title": "Keep the original warning log statement", + "type": "bool" + } + ], + "depends_on": "BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "The warning log in the Bluedroid host component will be compressed", + "id": "BLE_BLUEDROID_GATT_WARNING_LOG_COMPRESSION", + "name": "BLE_BLUEDROID_GATT_WARNING_LOG_COMPRESSION", + "range": null, + "title": "Compress warning log of Bluedroid host", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_BLUEDROID_GATT_API_LOG_COMPRESSION && BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "Please refer to the help information in BLE_BLUEDROID_GATT_ERROR_LOG_PRESERVE", + "id": "BLE_BLUEDROID_GATT_API_LOG_PRESERVE", + "name": "BLE_BLUEDROID_GATT_API_LOG_PRESERVE", + "range": null, + "title": "Keep the original api log statement", + "type": "bool" + } + ], + "depends_on": "BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "The api log in the Bluedroid host component will be compressed", + "id": "BLE_BLUEDROID_GATT_API_LOG_COMPRESSION", + "name": "BLE_BLUEDROID_GATT_API_LOG_COMPRESSION", + "range": null, + "title": "Compress api log of Bluedroid host", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_BLUEDROID_GATT_EVENT_LOG_COMPRESSION && BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "Please refer to the help information in BLE_BLUEDROID_GATT_ERROR_LOG_PRESERVE", + "id": "BLE_BLUEDROID_GATT_EVENT_LOG_PRESERVE", + "name": "BLE_BLUEDROID_GATT_EVENT_LOG_PRESERVE", + "range": null, + "title": "Keep the original event log statement", + "type": "bool" + } + ], + "depends_on": "BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "The event log in the Bluedroid host component will be compressed", + "id": "BLE_BLUEDROID_GATT_EVENT_LOG_COMPRESSION", + "name": "BLE_BLUEDROID_GATT_EVENT_LOG_COMPRESSION", + "range": null, + "title": "Compress event log of Bluedroid host", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_BLUEDROID_GATT_DEBUG_LOG_COMPRESSION && BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "Please refer to the help information in BLE_BLUEDROID_GATT_ERROR_LOG_PRESERVE", + "id": "BLE_BLUEDROID_GATT_DEBUG_LOG_PRESERVE", + "name": "BLE_BLUEDROID_GATT_DEBUG_LOG_PRESERVE", + "range": null, + "title": "Keep the original debug log statement", + "type": "bool" + } + ], + "depends_on": "BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "The debug log in the Bluedroid host component will be compressed", + "id": "BLE_BLUEDROID_GATT_DEBUG_LOG_COMPRESSION", + "name": "BLE_BLUEDROID_GATT_DEBUG_LOG_COMPRESSION", + "range": null, + "title": "Compress debug log of Bluedroid host", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_BLUEDROID_GATT_VERBOSE_LOG_COMPRESSION && BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "Please refer to the help information in BLE_BLUEDROID_GATT_ERROR_LOG_PRESERVE", + "id": "BLE_BLUEDROID_GATT_VERBOSE_LOG_PRESERVE", + "name": "BLE_BLUEDROID_GATT_VERBOSE_LOG_PRESERVE", + "range": null, + "title": "Keep the original verbose log statement", + "type": "bool" + } + ], + "depends_on": "BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "The verbose log in the Bluedroid host component will be compressed", + "id": "BLE_BLUEDROID_GATT_VERBOSE_LOG_COMPRESSION", + "name": "BLE_BLUEDROID_GATT_VERBOSE_LOG_COMPRESSION", + "range": null, + "title": "Compress verbose log of Bluedroid host", + "type": "bool" + } + ], + "depends_on": "BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "id": "component-config-bluetooth-common-options-ble-log-enable-ble-log-module-experimental--settings-of-ble-log-compression-enable-ble-log-compression-preview-please-read-help-information--enable-ble-host-log-compression-preview-only-bluedroid-host-for-now--select-the-gatt-layer-log-tag-to-be-compressed-C:-esp-v6.0-esp-idf-components-bt-common-ble_log-extension-log_compression-Kconfig.in-439", + "title": "Select the GATT layer log tag to be compressed", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BLE_BLUEDROID_SMP_ERROR_LOG_COMPRESSION && BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "When this option is enabled, the log data will be output\nthrough both the compressed log interface and the original\nUART interface at the same time, meaning that the log\nstatements will appear on both paths. However, please note\nthat this dual-output approach introduces additional code\nand string constants, which will increase the size of the\nfirmware binary file. When this option is disabled, the\nlogs will no longer be printed through the original UART\noutput path; instead, they will only be output through the\ncompressed log interface. As the code and strings related\nto the original UART output are omitted, the size of the\nfirmware binary file can be effectively reduced.", + "id": "BLE_BLUEDROID_SMP_ERROR_LOG_PRESERVE", + "name": "BLE_BLUEDROID_SMP_ERROR_LOG_PRESERVE", + "range": null, + "title": "Keep the original error log statement", + "type": "bool" + } + ], + "depends_on": "BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "The error log in the Bluedroid host component will be compressed", + "id": "BLE_BLUEDROID_SMP_ERROR_LOG_COMPRESSION", + "name": "BLE_BLUEDROID_SMP_ERROR_LOG_COMPRESSION", + "range": null, + "title": "Compress error log of Bluedroid host", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_BLUEDROID_SMP_WARNING_LOG_COMPRESSION && BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "Please refer to the help information in BLE_BLUEDROID_SMP_ERROR_LOG_PRESERVE", + "id": "BLE_BLUEDROID_SMP_WARNING_LOG_PRESERVE", + "name": "BLE_BLUEDROID_SMP_WARNING_LOG_PRESERVE", + "range": null, + "title": "Keep the original warning log statement", + "type": "bool" + } + ], + "depends_on": "BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "The warning log in the Bluedroid host component will be compressed", + "id": "BLE_BLUEDROID_SMP_WARNING_LOG_COMPRESSION", + "name": "BLE_BLUEDROID_SMP_WARNING_LOG_COMPRESSION", + "range": null, + "title": "Compress warning log of Bluedroid host", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_BLUEDROID_SMP_API_LOG_COMPRESSION && BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "Please refer to the help information in BLE_BLUEDROID_SMP_ERROR_LOG_PRESERVE", + "id": "BLE_BLUEDROID_SMP_API_LOG_PRESERVE", + "name": "BLE_BLUEDROID_SMP_API_LOG_PRESERVE", + "range": null, + "title": "Keep the original api log statement", + "type": "bool" + } + ], + "depends_on": "BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "The api log in the Bluedroid host component will be compressed", + "id": "BLE_BLUEDROID_SMP_API_LOG_COMPRESSION", + "name": "BLE_BLUEDROID_SMP_API_LOG_COMPRESSION", + "range": null, + "title": "Compress api log of Bluedroid host", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_BLUEDROID_SMP_EVENT_LOG_COMPRESSION && BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "Please refer to the help information in BLE_BLUEDROID_SMP_ERROR_LOG_PRESERVE", + "id": "BLE_BLUEDROID_SMP_EVENT_LOG_PRESERVE", + "name": "BLE_BLUEDROID_SMP_EVENT_LOG_PRESERVE", + "range": null, + "title": "Keep the original event log statement", + "type": "bool" + } + ], + "depends_on": "BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "The event log in the Bluedroid host component will be compressed", + "id": "BLE_BLUEDROID_SMP_EVENT_LOG_COMPRESSION", + "name": "BLE_BLUEDROID_SMP_EVENT_LOG_COMPRESSION", + "range": null, + "title": "Compress event log of Bluedroid host", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_BLUEDROID_SMP_DEBUG_LOG_COMPRESSION && BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "Please refer to the help information in BLE_BLUEDROID_SMP_ERROR_LOG_PRESERVE", + "id": "BLE_BLUEDROID_SMP_DEBUG_LOG_PRESERVE", + "name": "BLE_BLUEDROID_SMP_DEBUG_LOG_PRESERVE", + "range": null, + "title": "Keep the original debug log statement", + "type": "bool" + } + ], + "depends_on": "BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "The debug log in the Bluedroid host component will be compressed", + "id": "BLE_BLUEDROID_SMP_DEBUG_LOG_COMPRESSION", + "name": "BLE_BLUEDROID_SMP_DEBUG_LOG_COMPRESSION", + "range": null, + "title": "Compress debug log of Bluedroid host", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_BLUEDROID_SMP_VERBOSE_LOG_COMPRESSION && BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "Please refer to the help information in BLE_BLUEDROID_SMP_ERROR_LOG_PRESERVE", + "id": "BLE_BLUEDROID_SMP_VERBOSE_LOG_PRESERVE", + "name": "BLE_BLUEDROID_SMP_VERBOSE_LOG_PRESERVE", + "range": null, + "title": "Keep the original verbose log statement", + "type": "bool" + } + ], + "depends_on": "BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "The verbose log in the Bluedroid host component will be compressed", + "id": "BLE_BLUEDROID_SMP_VERBOSE_LOG_COMPRESSION", + "name": "BLE_BLUEDROID_SMP_VERBOSE_LOG_COMPRESSION", + "range": null, + "title": "Compress verbose log of Bluedroid host", + "type": "bool" + } + ], + "depends_on": "BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "id": "component-config-bluetooth-common-options-ble-log-enable-ble-log-module-experimental--settings-of-ble-log-compression-enable-ble-log-compression-preview-please-read-help-information--enable-ble-host-log-compression-preview-only-bluedroid-host-for-now--select-the-smp-layer-log-tag-to-be-compressed-C:-esp-v6.0-esp-idf-components-bt-common-ble_log-extension-log_compression-Kconfig.in-523", + "title": "Select the SMP layer log tag to be compressed", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BLE_BLUEDROID_APPL_ERROR_LOG_COMPRESSION && BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "When this option is enabled, the log data will be output\nthrough both the compressed log interface and the original\nUART interface at the same time, meaning that the log\nstatements will appear on both paths. However, please note\nthat this dual-output approach introduces additional code\nand string constants, which will increase the size of the\nfirmware binary file. When this option is disabled, the\nlogs will no longer be printed through the original UART\noutput path; instead, they will only be output through the\ncompressed log interface. As the code and strings related\nto the original UART output are omitted, the size of the\nfirmware binary file can be effectively reduced.", + "id": "BLE_BLUEDROID_APPL_ERROR_LOG_PRESERVE", + "name": "BLE_BLUEDROID_APPL_ERROR_LOG_PRESERVE", + "range": null, + "title": "Keep the original error log statement", + "type": "bool" + } + ], + "depends_on": "BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "The error log in the Bluedroid host component will be compressed", + "id": "BLE_BLUEDROID_APPL_ERROR_LOG_COMPRESSION", + "name": "BLE_BLUEDROID_APPL_ERROR_LOG_COMPRESSION", + "range": null, + "title": "Compress error log of Bluedroid host", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_BLUEDROID_APPL_WARNING_LOG_COMPRESSION && BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "Please refer to the help information in BLE_BLUEDROID_APPL_ERROR_LOG_PRESERVE", + "id": "BLE_BLUEDROID_APPL_WARNING_LOG_PRESERVE", + "name": "BLE_BLUEDROID_APPL_WARNING_LOG_PRESERVE", + "range": null, + "title": "Keep the original warning log statement", + "type": "bool" + } + ], + "depends_on": "BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "The warning log in the Bluedroid host component will be compressed", + "id": "BLE_BLUEDROID_APPL_WARNING_LOG_COMPRESSION", + "name": "BLE_BLUEDROID_APPL_WARNING_LOG_COMPRESSION", + "range": null, + "title": "Compress warning log of Bluedroid host", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_BLUEDROID_APPL_API_LOG_COMPRESSION && BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "Please refer to the help information in BLE_BLUEDROID_APPL_ERROR_LOG_PRESERVE", + "id": "BLE_BLUEDROID_APPL_API_LOG_PRESERVE", + "name": "BLE_BLUEDROID_APPL_API_LOG_PRESERVE", + "range": null, + "title": "Keep the original api log statement", + "type": "bool" + } + ], + "depends_on": "BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "The api log in the Bluedroid host component will be compressed", + "id": "BLE_BLUEDROID_APPL_API_LOG_COMPRESSION", + "name": "BLE_BLUEDROID_APPL_API_LOG_COMPRESSION", + "range": null, + "title": "Compress api log of Bluedroid host", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_BLUEDROID_APPL_EVENT_LOG_COMPRESSION && BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "Please refer to the help information in BLE_BLUEDROID_APPL_ERROR_LOG_PRESERVE", + "id": "BLE_BLUEDROID_APPL_EVENT_LOG_PRESERVE", + "name": "BLE_BLUEDROID_APPL_EVENT_LOG_PRESERVE", + "range": null, + "title": "Keep the original event log statement", + "type": "bool" + } + ], + "depends_on": "BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "The event log in the Bluedroid host component will be compressed", + "id": "BLE_BLUEDROID_APPL_EVENT_LOG_COMPRESSION", + "name": "BLE_BLUEDROID_APPL_EVENT_LOG_COMPRESSION", + "range": null, + "title": "Compress event log of Bluedroid host", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_BLUEDROID_APPL_DEBUG_LOG_COMPRESSION && BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "Please refer to the help information in BLE_BLUEDROID_APPL_ERROR_LOG_PRESERVE", + "id": "BLE_BLUEDROID_APPL_DEBUG_LOG_PRESERVE", + "name": "BLE_BLUEDROID_APPL_DEBUG_LOG_PRESERVE", + "range": null, + "title": "Keep the original debug log statement", + "type": "bool" + } + ], + "depends_on": "BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "The debug log in the Bluedroid host component will be compressed", + "id": "BLE_BLUEDROID_APPL_DEBUG_LOG_COMPRESSION", + "name": "BLE_BLUEDROID_APPL_DEBUG_LOG_COMPRESSION", + "range": null, + "title": "Compress debug log of Bluedroid host", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_BLUEDROID_APPL_VERBOSE_LOG_COMPRESSION && BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "Please refer to the help information in BLE_BLUEDROID_APPL_ERROR_LOG_PRESERVE", + "id": "BLE_BLUEDROID_APPL_VERBOSE_LOG_PRESERVE", + "name": "BLE_BLUEDROID_APPL_VERBOSE_LOG_PRESERVE", + "range": null, + "title": "Keep the original verbose log statement", + "type": "bool" + } + ], + "depends_on": "BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "The verbose log in the Bluedroid host component will be compressed", + "id": "BLE_BLUEDROID_APPL_VERBOSE_LOG_COMPRESSION", + "name": "BLE_BLUEDROID_APPL_VERBOSE_LOG_COMPRESSION", + "range": null, + "title": "Compress verbose log of Bluedroid host", + "type": "bool" + } + ], + "depends_on": "BLE_HOST_COMPRESSED_LOG_ENABLE && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "id": "component-config-bluetooth-common-options-ble-log-enable-ble-log-module-experimental--settings-of-ble-log-compression-enable-ble-log-compression-preview-please-read-help-information--enable-ble-host-log-compression-preview-only-bluedroid-host-for-now--select-the-appl-layer-log-tag-to-be-compressed-C:-esp-v6.0-esp-idf-components-bt-common-ble_log-extension-log_compression-Kconfig.in-607", + "title": "Select the APPL layer log tag to be compressed", + "type": "menu" + } + ], + "depends_on": "BLE_COMPRESSED_LOG_ENABLE && BT_BLUEDROID_ENABLED && BLE_COMPRESSED_LOG_ENABLE && BLE_LOG_ENABLED", + "help": "Apply compression to host logs. Requires\nbase BLE compression to be enabled. Specifically optimizes log\nstorage and transmission.\n\nNote: This library depends on additional Python packages. It will\nfunction correctly only after these dependencies are installed;\nrefer to:\n\"components/bt/common/ble_log/log_compression/README.en.md\"\nfor installation instructions.", + "id": "BLE_HOST_COMPRESSED_LOG_ENABLE", + "is_menuconfig": true, + "name": "BLE_HOST_COMPRESSED_LOG_ENABLE", + "range": null, + "title": "Enable BLE Host log compression(Preview, only Bluedroid Host for now)", + "type": "menu" + } + ], + "depends_on": "BLE_LOG_ENABLED", + "help": "Compress BLE logs during application build to reduce flash usage\nand improve output speed. When enabled, log data from Bluetooth\nLow Energy components will be compressed before storage,\noptimizing both memory footprint and transmission efficiency.\n\nNote: This library depends on additional Python packages. It will\nfunction correctly only after these dependencies are installed;\nrefer to:\n\"components/bt/common/ble_log/log_compression/README.en.md\"\nfor installation instructions.", + "id": "BLE_COMPRESSED_LOG_ENABLE", + "name": "BLE_COMPRESSED_LOG_ENABLE", + "range": null, + "title": "Enable BLE log compression(Preview, Please read help information)", + "type": "bool" + } + ], + "depends_on": "BLE_LOG_ENABLED", + "id": "component-config-bluetooth-common-options-ble-log-enable-ble-log-module-experimental--settings-of-ble-log-compression-C:-esp-v6.0-esp-idf-components-bt-common-ble_log-Kconfig.in-242", + "title": "Settings of BLE Log Compression", + "type": "menu" + } + ], + "depends_on": null, + "help": "Enable BLE Log Module", + "id": "BLE_LOG_ENABLED", + "name": "BLE_LOG_ENABLED", + "range": null, + "title": "Enable BLE Log Module (Experimental)", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-bluetooth-common-options-ble-log-C:-esp-v6.0-esp-idf-components-bt-common-Kconfig.in-46", + "title": "BLE Log", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_BLE_LOG_SPI_OUT_ENABLED", + "help": "SPI transaction buffer size for upper layer task logs.\nThere will be 2 SPI DMA buffers with the same size.", + "id": "BT_BLE_LOG_SPI_OUT_UL_TASK_BUF_SIZE", + "name": "BT_BLE_LOG_SPI_OUT_UL_TASK_BUF_SIZE", + "range": null, + "title": "SPI transaction buffer size for upper layer task logs", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_BLE_LOG_SPI_OUT_HCI_ENABLED", + "help": "SPI transaction buffer size for HCI logs.\nThere will be 2 SPI DMA buffers with the same size.", + "id": "BT_BLE_LOG_SPI_OUT_HCI_BUF_SIZE", + "name": "BT_BLE_LOG_SPI_OUT_HCI_BUF_SIZE", + "range": null, + "title": "SPI transaction buffer size for HCI logs", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_BLE_LOG_SPI_OUT_HCI_ENABLED", + "help": "HCI task count", + "id": "BT_BLE_LOG_SPI_OUT_HCI_TASK_CNT", + "name": "BT_BLE_LOG_SPI_OUT_HCI_TASK_CNT", + "range": null, + "title": "HCI task count", + "type": "int" + } + ], + "depends_on": "BT_BLE_LOG_SPI_OUT_ENABLED", + "help": "Enable logging of HCI packets to the SPI bus when BLE SPI log output is enabled.", + "id": "BT_BLE_LOG_SPI_OUT_HCI_ENABLED", + "name": "BT_BLE_LOG_SPI_OUT_HCI_ENABLED", + "range": null, + "title": "Enable HCI log output to SPI", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_BLE_LOG_SPI_OUT_HOST_ENABLED", + "help": "SPI transaction buffer size for host logs.\nThere will be 2 SPI DMA buffers with the same size.", + "id": "BT_BLE_LOG_SPI_OUT_HOST_BUF_SIZE", + "name": "BT_BLE_LOG_SPI_OUT_HOST_BUF_SIZE", + "range": null, + "title": "SPI transaction buffer size for host logs", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_BLE_LOG_SPI_OUT_HOST_ENABLED", + "help": "Host task count.", + "id": "BT_BLE_LOG_SPI_OUT_HOST_TASK_CNT", + "name": "BT_BLE_LOG_SPI_OUT_HOST_TASK_CNT", + "range": null, + "title": "Host task count", + "type": "int" + } + ], + "depends_on": "BT_BLE_LOG_SPI_OUT_ENABLED", + "help": "This configuration applies to the logs of both Bluedroid Host and NimBLE Host.\nWhen BLE SPI log output is enabled, this option allows host logs to be transmitted via SPI.", + "id": "BT_BLE_LOG_SPI_OUT_HOST_ENABLED", + "name": "BT_BLE_LOG_SPI_OUT_HOST_ENABLED", + "range": null, + "title": "Enable Host log output to SPI", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_BLE_LOG_SPI_OUT_LL_ENABLED", + "help": "SPI transaction buffer size for lower layer task logs.\nThere will be 2 SPI DMA buffers with the same size.", + "id": "BT_BLE_LOG_SPI_OUT_LL_TASK_BUF_SIZE", + "name": "BT_BLE_LOG_SPI_OUT_LL_TASK_BUF_SIZE", + "range": null, + "title": "SPI transaction buffer size for lower layer task logs", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_BLE_LOG_SPI_OUT_LL_ENABLED", + "help": "SPI transaction buffer size for lower layer ISR logs.\nThere will be 2 SPI DMA buffers with the same size.", + "id": "BT_BLE_LOG_SPI_OUT_LL_ISR_BUF_SIZE", + "name": "BT_BLE_LOG_SPI_OUT_LL_ISR_BUF_SIZE", + "range": null, + "title": "SPI transaction buffer size for lower layer ISR logs", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_BLE_LOG_SPI_OUT_LL_ENABLED", + "help": "SPI transaction buffer size for upper layer HCI logs.\nThere will be 2 SPI DMA buffers with the same size", + "id": "BT_BLE_LOG_SPI_OUT_LL_HCI_BUF_SIZE", + "name": "BT_BLE_LOG_SPI_OUT_LL_HCI_BUF_SIZE", + "range": null, + "title": "SPI transaction buffer size for lower layer HCI logs", + "type": "int" + } + ], + "depends_on": "BT_BLE_LOG_SPI_OUT_ENABLED && BT_LE_CONTROLLER_LOG_SPI_OUT_ENABLED", + "help": "Enable controller log output to SPI bus.", + "id": "BT_BLE_LOG_SPI_OUT_LL_ENABLED", + "name": "BT_BLE_LOG_SPI_OUT_LL_ENABLED", + "range": null, + "title": "Enable Controller log output to SPI", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLE_LOG_SPI_OUT_ENABLED", + "help": "GPIO number of SPI MOSI", + "id": "BT_BLE_LOG_SPI_OUT_MOSI_IO_NUM", + "name": "BT_BLE_LOG_SPI_OUT_MOSI_IO_NUM", + "range": null, + "title": "GPIO number of SPI MOSI", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_BLE_LOG_SPI_OUT_ENABLED", + "help": "GPIO number of SPI SCLK", + "id": "BT_BLE_LOG_SPI_OUT_SCLK_IO_NUM", + "name": "BT_BLE_LOG_SPI_OUT_SCLK_IO_NUM", + "range": null, + "title": "GPIO number of SPI SCLK", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_BLE_LOG_SPI_OUT_ENABLED", + "help": "GPIO number of SPI CS", + "id": "BT_BLE_LOG_SPI_OUT_CS_IO_NUM", + "name": "BT_BLE_LOG_SPI_OUT_CS_IO_NUM", + "range": null, + "title": "GPIO number of SPI CS", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_BLE_LOG_SPI_OUT_TS_SYNC_ENABLED", + "help": "GPIO number of SYNC IO", + "id": "BT_BLE_LOG_SPI_OUT_SYNC_IO_NUM", + "name": "BT_BLE_LOG_SPI_OUT_SYNC_IO_NUM", + "range": null, + "title": "GPIO number of SYNC IO", + "type": "int" + } + ], + "depends_on": "BT_BLE_LOG_SPI_OUT_ENABLED", + "help": "Enable ble log & logic analyzer log time sync", + "id": "BT_BLE_LOG_SPI_OUT_TS_SYNC_ENABLED", + "name": "BT_BLE_LOG_SPI_OUT_TS_SYNC_ENABLED", + "range": null, + "title": "Enable ble log & logic analyzer log time sync", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_BLE_LOG_SPI_OUT_FLUSH_TIMER_ENABLED", + "help": "Buffer flush out period in unit of ms", + "id": "BT_BLE_LOG_SPI_OUT_FLUSH_TIMEOUT", + "name": "BT_BLE_LOG_SPI_OUT_FLUSH_TIMEOUT", + "range": null, + "title": "Buffer flush out period in unit of ms", + "type": "int" + } + ], + "depends_on": "BT_BLE_LOG_SPI_OUT_ENABLED", + "help": "Enable periodic buffer flush out\nNot recommended when SPI receiver is unavailable", + "id": "BT_BLE_LOG_SPI_OUT_FLUSH_TIMER_ENABLED", + "name": "BT_BLE_LOG_SPI_OUT_FLUSH_TIMER_ENABLED", + "range": null, + "title": "Enable periodic buffer flush out", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_BLE_LOG_SPI_OUT_LE_AUDIO_ENABLED", + "help": "SPI transaction buffer size for LE Audio logs.\nThere will be 2 SPI DMA buffers with the same size.", + "id": "BT_BLE_LOG_SPI_OUT_LE_AUDIO_BUF_SIZE", + "name": "BT_BLE_LOG_SPI_OUT_LE_AUDIO_BUF_SIZE", + "range": null, + "title": "SPI transaction buffer size for LE Audio logs", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_BLE_LOG_SPI_OUT_LE_AUDIO_ENABLED", + "help": "LE audio task count", + "id": "BT_BLE_LOG_SPI_OUT_LE_AUDIO_TASK_CNT", + "name": "BT_BLE_LOG_SPI_OUT_LE_AUDIO_TASK_CNT", + "range": null, + "title": "LE audio task count", + "type": "int" + } + ], + "depends_on": "BT_BLE_LOG_SPI_OUT_ENABLED", + "help": "Enable LE Audio log output to SPI", + "id": "BT_BLE_LOG_SPI_OUT_LE_AUDIO_ENABLED", + "name": "BT_BLE_LOG_SPI_OUT_LE_AUDIO_ENABLED", + "range": null, + "title": "Enable LE Audio log output to SPI", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_BLE_LOG_SPI_OUT_MESH_ENABLED", + "help": "SPI transaction buffer size for BLE mesh logs.\nThere will be 2 SPI DMA buffers with the same size.", + "id": "BT_BLE_LOG_SPI_OUT_MESH_BUF_SIZE", + "name": "BT_BLE_LOG_SPI_OUT_MESH_BUF_SIZE", + "range": null, + "title": "SPI transaction buffer size for BLE mesh logs", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_BLE_LOG_SPI_OUT_MESH_ENABLED", + "help": "Mesh task count", + "id": "BT_BLE_LOG_SPI_OUT_MESH_TASK_CNT", + "name": "BT_BLE_LOG_SPI_OUT_MESH_TASK_CNT", + "range": null, + "title": "Mesh task count", + "type": "int" + } + ], + "depends_on": "BT_BLE_LOG_SPI_OUT_ENABLED", + "help": "Enable BLE mesh log output to SPI", + "id": "BT_BLE_LOG_SPI_OUT_MESH_ENABLED", + "name": "BT_BLE_LOG_SPI_OUT_MESH_ENABLED", + "range": null, + "title": "Enable BLE mesh log output to SPI", + "type": "bool" + } + ], + "depends_on": null, + "help": "Output ble logs to SPI bus", + "id": "BT_BLE_LOG_SPI_OUT_ENABLED", + "name": "BT_BLE_LOG_SPI_OUT_ENABLED", + "range": null, + "title": "Output ble logs to SPI bus (Experimental)", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_BLE_LOG_UHCI_OUT_ENABLED", + "help": "UART port connected to UHCI controller\nIf UART port 0 is selected, UART VFS Driver, UART ROM Driver\nand UART Driver output would be redirected to BLE Log UHCI Out\nto solve UART Tx FIFO multi-task access issue", + "id": "BT_BLE_LOG_UHCI_OUT_UART_PORT", + "name": "BT_BLE_LOG_UHCI_OUT_UART_PORT", + "range": null, + "title": "UART port connected to UHCI controller", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_BLE_LOG_UHCI_OUT_ENABLED", + "help": "UHCI transaction buffer size for lower layer task logs", + "id": "BT_BLE_LOG_UHCI_OUT_LL_TASK_BUF_SIZE", + "name": "BT_BLE_LOG_UHCI_OUT_LL_TASK_BUF_SIZE", + "range": null, + "title": "UHCI transaction buffer size for lower layer task logs", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_BLE_LOG_UHCI_OUT_ENABLED", + "help": "UHCI transaction buffer size for lower layer ISR logs", + "id": "BT_BLE_LOG_UHCI_OUT_LL_ISR_BUF_SIZE", + "name": "BT_BLE_LOG_UHCI_OUT_LL_ISR_BUF_SIZE", + "range": null, + "title": "UHCI transaction buffer size for lower layer ISR logs", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_BLE_LOG_UHCI_OUT_ENABLED", + "help": "UHCI transaction buffer size for lower layer HCI logs", + "id": "BT_BLE_LOG_UHCI_OUT_LL_HCI_BUF_SIZE", + "name": "BT_BLE_LOG_UHCI_OUT_LL_HCI_BUF_SIZE", + "range": null, + "title": "UHCI transaction buffer size for lower layer HCI logs", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_BLE_LOG_UHCI_OUT_UART_NEED_INIT", + "help": "Baud rate for BT_BLE_LOG_UHCI_OUT_UART_PORT", + "id": "BT_BLE_LOG_UHCI_OUT_UART_BAUD_RATE", + "name": "BT_BLE_LOG_UHCI_OUT_UART_BAUD_RATE", + "range": null, + "title": "Baud rate for BT_BLE_LOG_UHCI_OUT_UART_PORT", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_BLE_LOG_UHCI_OUT_UART_NEED_INIT", + "help": "IO number for UART TX port", + "id": "BT_BLE_LOG_UHCI_OUT_UART_IO_NUM_TX", + "name": "BT_BLE_LOG_UHCI_OUT_UART_IO_NUM_TX", + "range": null, + "title": "IO number for UART TX port", + "type": "int" + } + ], + "depends_on": "BT_BLE_LOG_UHCI_OUT_ENABLED", + "help": "Enable to init UART port", + "id": "BT_BLE_LOG_UHCI_OUT_UART_NEED_INIT", + "name": "BT_BLE_LOG_UHCI_OUT_UART_NEED_INIT", + "range": null, + "title": "Enable to init UART port", + "type": "bool" + } + ], + "depends_on": null, + "help": "Output ble logs via UHCI (UART DMA) driver\nOn enable, BT_BLE_LOG_UHCI_OUT_UART_PORT would be reinited with\nBT_BLE_LOG_UHCI_OUT_UART_BAUD_RATE as new baud rate and\nBT_BLE_LOG_UHCI_OUT_UART_IO_NUM_TX as new UART Tx IO", + "id": "BT_BLE_LOG_UHCI_OUT_ENABLED", + "name": "BT_BLE_LOG_UHCI_OUT_ENABLED", + "range": null, + "title": "Output ble logs via UHCI (UART DMA) driver (Experimental)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Used in internal tests only. Enable used memory statistics.", + "id": "BT_LE_USED_MEM_STATISTICS_ENABLED", + "name": "BT_LE_USED_MEM_STATISTICS_ENABLED", + "range": null, + "title": "Enable used memory statistics", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-bluetooth-common-options-C:-esp-v6.0-esp-idf-components-bt-Kconfig-83", + "title": "Common Options", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_HCI_LOG_DEBUG_EN", + "help": "This option is to configure the buffer size of the hci data steam cache in hci debug mode.\nThis is a ring buffer, the new data will overwrite the oldest data if the buffer is full.", + "id": "BT_HCI_LOG_DATA_BUFFER_SIZE", + "name": "BT_HCI_LOG_DATA_BUFFER_SIZE", + "range": null, + "title": "Size of the cache used for HCI data in Bluetooth HCI debug mode (N*1024 bytes)", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_HCI_LOG_DEBUG_EN", + "help": "This option is to configure the buffer size of the hci adv report cache in hci debug mode.\nThis is a ring buffer, the new data will overwrite the oldest data if the buffer is full.", + "id": "BT_HCI_LOG_ADV_BUFFER_SIZE", + "name": "BT_HCI_LOG_ADV_BUFFER_SIZE", + "range": null, + "title": "Size of the cache used for adv report in Bluetooth HCI debug mode (N*1024 bytes)", + "type": "int" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED || BT_NIMBLE_ENABLED", + "help": "This option is used to enable bluetooth debug mode, which saves the hci layer data stream.", + "id": "BT_HCI_LOG_DEBUG_EN", + "name": "BT_HCI_LOG_DEBUG_EN", + "range": null, + "title": "Enable Bluetooth HCI debug mode", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-bluetooth-C:-esp-v6.0-esp-idf-components-bt-Kconfig-1", + "title": "Bluetooth", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH", + "help": "It is a temporary solution and needs further modifications.", + "id": "BLE_MESH_HCI_5_0", + "name": "BLE_MESH_HCI_5_0", + "range": null, + "title": "Support sending 20ms non-connectable adv packets", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Support BLE Mesh v1.1 features", + "id": "BLE_MESH_V11_SUPPORT", + "name": "BLE_MESH_V11_SUPPORT", + "range": null, + "title": "Support ESP BLE Mesh v1.1 features (Preview)", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable this option to allow using random advertising interval\nfor mesh packets. And this could help avoid collision of\nadvertising packets.", + "id": "BLE_MESH_RANDOM_ADV_INTERVAL", + "name": "BLE_MESH_RANDOM_ADV_INTERVAL", + "range": null, + "title": "Support using random adv interval for mesh packets", + "type": "bool" + }, + { + "children": [], + "depends_on": "!BT_LE_CRYPTO_STACK_MBEDTLS && !BT_NIMBLE_CRYPTO_STACK_MBEDTLS && BLE_MESH", + "help": "Enable this option to use the unified BLE tinycrypt solution\ninstead of the default one in BLE Mesh stack.", + "id": "BLE_MESH_USE_UNIFIED_CRYPTO", + "name": "BLE_MESH_USE_UNIFIED_CRYPTO", + "range": null, + "title": "Use the unified BLE tinycrypt implementation", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_EXT_ADV && BLE_MESH", + "help": "Number of buffer slots allocated for extended advertising packets.", + "id": "BLE_MESH_EXT_ADV_BUF_COUNT", + "name": "BLE_MESH_EXT_ADV_BUF_COUNT", + "range": null, + "title": "Number of extended advertising buffers", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_EXT_ADV && BLE_MESH_RELAY && BLE_MESH", + "help": "Number of buffer slots allocated for extended advertising packets used in message relay.", + "id": "BLE_MESH_EXT_RELAY_ADV_BUF_COUNT", + "name": "BLE_MESH_EXT_RELAY_ADV_BUF_COUNT", + "range": null, + "title": "Number of extended relay advertising buffers", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_LONG_PACKET && BLE_MESH", + "help": "Maximum payload length for extended advertising packets (bytes).\nRange: 30-249 bytes.\nDefault: 105.\nNote: Maximum access payload = (LENGTH - 17) \u00d7 SEGMENT_COUNT\n- Transmission: Uses BLE_MESH_LONG_PACKET_TX_SEG_CNT\n- Reception: Uses BLE_MESH_LONG_PACKET_RX_SEG_CNT", + "id": "BLE_MESH_LONG_PACKET_ADV_LEN", + "name": "BLE_MESH_LONG_PACKET_ADV_LEN", + "range": null, + "title": "Maximum advertising payload length", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_LONG_PACKET && BLE_MESH", + "help": "Number of advertising buffers allocated for long packet transmissions.", + "id": "BLE_MESH_LONG_PACKET_ADV_BUF_COUNT", + "name": "BLE_MESH_LONG_PACKET_ADV_BUF_COUNT", + "range": null, + "title": "Long packet advertising buffer count", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_LONG_PACKET && BLE_MESH_RELAY && BLE_MESH", + "help": "Number of advertising buffers allocated for relay long packets.", + "id": "BLE_MESH_LONG_PACKET_RELAY_ADV_BUF_COUNT", + "name": "BLE_MESH_LONG_PACKET_RELAY_ADV_BUF_COUNT", + "range": null, + "title": "Long packet relay buffer count", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_LONG_PACKET && BLE_MESH", + "help": "Maximum number of segments for outgoing long packet messages.\nUpper bound: min(BLE_MESH_TX_SEG_MAX, BLE_MESH_LONG_PACKET_ADV_BUF_COUNT)", + "id": "BLE_MESH_LONG_PACKET_TX_SEG_CNT", + "name": "BLE_MESH_LONG_PACKET_TX_SEG_CNT", + "range": null, + "title": "Maximum transmission segments per message", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_LONG_PACKET && BLE_MESH", + "help": "Maximum number of segments supported for receiving long packet messages.", + "id": "BLE_MESH_LONG_PACKET_RX_SEG_CNT", + "name": "BLE_MESH_LONG_PACKET_RX_SEG_CNT", + "range": null, + "title": "Maximum reception segments per message", + "type": "int" + } + ], + "depends_on": "BLE_MESH_EXT_ADV && BLE_MESH", + "help": "Enable extended-length advertising packets for BLE Mesh using BLE 5.0 extended advertising.\nThis overrides the standard BLE Mesh packet length limitations.", + "id": "BLE_MESH_LONG_PACKET", + "is_menuconfig": true, + "name": "BLE_MESH_LONG_PACKET", + "range": null, + "title": "Enable non-standard long packet mode for BLE Mesh", + "type": "menu" + } + ], + "depends_on": "BLE_MESH_USE_BLE_50 && BLE_MESH", + "help": "Enable broadcasting of BLE Mesh messages using BLE 5.0 extended advertising.\nThis allows control of extended advertising parameters (e.g., PHY selection)\nwhile maintaining standard BLE Mesh packet length.", + "id": "BLE_MESH_EXT_ADV", + "is_menuconfig": true, + "name": "BLE_MESH_EXT_ADV", + "range": null, + "title": "Enable extended advertising for BLE Mesh", + "type": "menu" + }, + { + "children": [], + "depends_on": "BLE_MESH_USE_BLE_50 && BLE_MESH", + "help": "Extended ADV instance used by Mesh normal advertising packets.", + "id": "BLE_MESH_ADV_INST_ID", + "name": "BLE_MESH_ADV_INST_ID", + "range": null, + "title": "Extended adv instance for Mesh normal packets", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_PROXY && (BLE_MESH_PB_GATT || BLE_MESH_GATT_PROXY_SERVER) && BLE_MESH_SUPPORT_MULTI_ADV && BLE_MESH", + "help": "Extended ADV instance used by Mesh proxy advertising packets.", + "id": "BLE_MESH_PROXY_ADV_INST_ID", + "name": "BLE_MESH_PROXY_ADV_INST_ID", + "range": null, + "title": "Extended adv instance for Mesh proxy packets", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_SEPARATE_RELAY_ADV_INSTANCE && BLE_MESH", + "help": "Extended ADV instance used by Mesh relay advertising packets.", + "id": "BLE_MESH_RELAY_ADV_INST_ID", + "name": "BLE_MESH_RELAY_ADV_INST_ID", + "range": null, + "title": "Extended adv instance for Mesh relay packets", + "type": "int" + } + ], + "depends_on": "BLE_MESH_SUPPORT_MULTI_ADV && BLE_MESH_RELAY_ADV_BUF && BLE_MESH", + "help": "Enable this option to support using a separate extended ADV instance for Mesh relay packets.", + "id": "BLE_MESH_SEPARATE_RELAY_ADV_INSTANCE", + "is_menuconfig": true, + "name": "BLE_MESH_SEPARATE_RELAY_ADV_INSTANCE", + "range": null, + "title": "Use separate extended adv instance for Mesh relay packets", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_SEPARATE_BLE_ADV_INSTANCE && BLE_MESH", + "help": "Extended ADV instance used by normal BLE advertising packets.", + "id": "BLE_MESH_BLE_ADV_INST_ID", + "name": "BLE_MESH_BLE_ADV_INST_ID", + "range": null, + "title": "Extended adv instance for normal BLE packets", + "type": "int" + } + ], + "depends_on": "BLE_MESH_SUPPORT_MULTI_ADV && BLE_MESH_SUPPORT_BLE_ADV && BLE_MESH", + "help": "Enable this option to support using a separate extended ADV instance for normal BLE advertising packets.", + "id": "BLE_MESH_SEPARATE_BLE_ADV_INSTANCE", + "is_menuconfig": true, + "name": "BLE_MESH_SEPARATE_BLE_ADV_INSTANCE", + "range": null, + "title": "Use separate extended adv instance for BLE normal packets", + "type": "menu" + } + ], + "depends_on": "BLE_MESH_USE_BLE_50 && BLE_MESH", + "help": "Enable this option to support using multiple adv instance while running BLE Mesh.", + "id": "BLE_MESH_SUPPORT_MULTI_ADV", + "is_menuconfig": true, + "name": "BLE_MESH_SUPPORT_MULTI_ADV", + "range": null, + "title": "Support using multiple adv instance for BLE Mesh", + "type": "menu" + } + ], + "depends_on": "BLE_MESH_EXPERIMENTAL && BLE_MESH", + "help": "This option to enable BLE Mesh using some BLE 5.0 APIs.", + "id": "BLE_MESH_USE_BLE_50", + "is_menuconfig": true, + "name": "BLE_MESH_USE_BLE_50", + "range": null, + "title": "Support using BLE 5.0 APIs for BLE Mesh", + "type": "menu" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "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\".", + "id": "BLE_MESH_USE_DUPLICATE_SCAN", + "name": "BLE_MESH_USE_DUPLICATE_SCAN", + "range": null, + "title": "Support Duplicate Scan in BLE Mesh", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_V11_SUPPORT && BLE_MESH", + "help": "Enable this option to allow using BLE Active Scan for BLE Mesh.", + "id": "BLE_MESH_ACTIVE_SCAN", + "name": "BLE_MESH_ACTIVE_SCAN", + "range": null, + "title": "Support Active Scan in BLE Mesh", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BLE_MESH_MEM_ALLOC_MODE_INTERNAL", + "name": "BLE_MESH_MEM_ALLOC_MODE_INTERNAL", + "range": null, + "title": "Internal DRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "(SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC) && ", + "help": null, + "id": "BLE_MESH_MEM_ALLOC_MODE_EXTERNAL", + "name": "BLE_MESH_MEM_ALLOC_MODE_EXTERNAL", + "range": null, + "title": "External SPIRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Enable this option to use the default memory allocation strategy when\nexternal SPIRAM is enabled. See the SPIRAM options for more details.", + "id": "BLE_MESH_MEM_ALLOC_MODE_DEFAULT", + "name": "BLE_MESH_MEM_ALLOC_MODE_DEFAULT", + "range": null, + "title": "Default alloc mode", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP32_IRAM_AS_8BIT_ACCESSIBLE_MEMORY && ", + "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.", + "id": "BLE_MESH_MEM_ALLOC_MODE_IRAM_8BIT", + "name": "BLE_MESH_MEM_ALLOC_MODE_IRAM_8BIT", + "range": null, + "title": "Internal IRAM", + "type": "bool" + } + ], + "depends_on": "BLE_MESH", + "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.", + "id": "component-config-esp-ble-mesh-support-memory-allocation-strategy-C:-esp-v6.0-esp-idf-components-bt-esp_ble_mesh-Kconfig.in-203", + "name": "BLE_MESH_MEM_ALLOC_MODE", + "title": "Memory allocation strategy", + "type": "choice" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "IDF_TARGET_ESP32 && SPIRAM && ", + "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.", + "id": "BLE_MESH_FREERTOS_STATIC_ALLOC_EXTERNAL", + "name": "BLE_MESH_FREERTOS_STATIC_ALLOC_EXTERNAL", + "range": null, + "title": "External SPIRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP32_IRAM_AS_8BIT_ACCESSIBLE_MEMORY && ", + "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.", + "id": "BLE_MESH_FREERTOS_STATIC_ALLOC_IRAM_8BIT", + "name": "BLE_MESH_FREERTOS_STATIC_ALLOC_IRAM_8BIT", + "range": null, + "title": "Internal IRAM", + "type": "bool" + } + ], + "depends_on": "BLE_MESH_FREERTOS_STATIC_ALLOC && BLE_MESH", + "help": "Choose the memory to be used for FreeRTOS objects.", + "id": "component-config-esp-ble-mesh-support-enable-freertos-static-allocation-memory-allocation-for-freertos-objects-C:-esp-v6.0-esp-idf-components-bt-esp_ble_mesh-Kconfig.in-260", + "name": "BLE_MESH_FREERTOS_STATIC_ALLOC_MODE", + "title": "Memory allocation for FreeRTOS objects", + "type": "choice" + } + ], + "depends_on": "FREERTOS_SUPPORT_STATIC_ALLOCATION && ((IDF_TARGET_ESP32 && SPIRAM) || ESP32_IRAM_AS_8BIT_ACCESSIBLE_MEMORY) && BLE_MESH", + "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.", + "id": "BLE_MESH_FREERTOS_STATIC_ALLOC", + "name": "BLE_MESH_FREERTOS_STATIC_ALLOC", + "range": null, + "title": "Enable FreeRTOS static allocation", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "If enabled, users can use the function esp_ble_mesh_deinit() to de-initialize\nthe whole BLE Mesh stack.", + "id": "BLE_MESH_DEINIT", + "name": "BLE_MESH_DEINIT", + "range": null, + "title": "Support de-initialize BLE Mesh stack", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_SUPPORT_BLE_ADV && BLE_MESH", + "help": "Number of advertising buffers for BLE packets available.", + "id": "BLE_MESH_BLE_ADV_BUF_COUNT", + "name": "BLE_MESH_BLE_ADV_BUF_COUNT", + "range": null, + "title": "Number of advertising buffers for BLE advertising packets", + "type": "int" + } + ], + "depends_on": "BLE_MESH", + "help": "When selected, users can send normal BLE advertising packets\nwith specific API.", + "id": "BLE_MESH_SUPPORT_BLE_ADV", + "name": "BLE_MESH_SUPPORT_BLE_ADV", + "range": null, + "title": "Support sending normal BLE advertising packets", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "When selected, users can register a callback and receive normal BLE\nadvertising packets in the application layer.", + "id": "BLE_MESH_SUPPORT_BLE_SCAN", + "name": "BLE_MESH_SUPPORT_BLE_SCAN", + "range": null, + "title": "Support scanning normal BLE advertising packets", + "type": "bool" + } + ], + "depends_on": "BLE_MESH", + "id": "component-config-esp-ble-mesh-support-ble-mesh-and-ble-coexistence-support-C:-esp-v6.0-esp-idf-components-bt-esp_ble_mesh-Kconfig.in-292", + "title": "BLE Mesh and BLE coexistence support", + "type": "menu" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "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.", + "id": "BLE_MESH_FAST_PROV", + "name": "BLE_MESH_FAST_PROV", + "range": null, + "title": "Enable BLE Mesh Fast Provisioning", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "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.", + "id": "BLE_MESH_NODE", + "name": "BLE_MESH_NODE", + "range": null, + "title": "Support for BLE Mesh Node", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_PROVISIONER && BLE_MESH", + "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).", + "id": "BLE_MESH_WAIT_FOR_PROV_MAX_DEV_NUM", + "name": "BLE_MESH_WAIT_FOR_PROV_MAX_DEV_NUM", + "range": null, + "title": "Maximum number of unprovisioned devices that can be added to device queue", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_PROVISIONER && BLE_MESH", + "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.", + "id": "BLE_MESH_MAX_PROV_NODES", + "name": "BLE_MESH_MAX_PROV_NODES", + "range": null, + "title": "Maximum number of devices that can be provisioned by Provisioner", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_PB_ADV && BLE_MESH_PROVISIONER && BLE_MESH", + "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.", + "id": "BLE_MESH_PBA_SAME_TIME", + "name": "BLE_MESH_PBA_SAME_TIME", + "range": null, + "title": "Maximum number of PB-ADV running at the same time by Provisioner", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_PB_GATT && BLE_MESH_PROVISIONER && BLE_MESH", + "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.", + "id": "BLE_MESH_PBG_SAME_TIME", + "name": "BLE_MESH_PBG_SAME_TIME", + "range": null, + "title": "Maximum number of PB-GATT running at the same time by Provisioner", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_PROVISIONER && BLE_MESH", + "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.", + "id": "BLE_MESH_PROVISIONER_SUBNET_COUNT", + "name": "BLE_MESH_PROVISIONER_SUBNET_COUNT", + "range": null, + "title": "Maximum number of mesh subnets that can be created by Provisioner", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_PROVISIONER && BLE_MESH", + "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.", + "id": "BLE_MESH_PROVISIONER_APP_KEY_COUNT", + "name": "BLE_MESH_PROVISIONER_APP_KEY_COUNT", + "range": null, + "title": "Maximum number of application keys that can be owned by Provisioner", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_PROVISIONER_RECV_HB && BLE_MESH_PROVISIONER && BLE_MESH", + "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.", + "id": "BLE_MESH_PROVISIONER_RECV_HB_FILTER_SIZE", + "name": "BLE_MESH_PROVISIONER_RECV_HB_FILTER_SIZE", + "range": null, + "title": "Maximum number of filter entries for receiving Heartbeat messages", + "type": "int" + } + ], + "depends_on": "BLE_MESH_PROVISIONER && BLE_MESH", + "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.", + "id": "BLE_MESH_PROVISIONER_RECV_HB", + "name": "BLE_MESH_PROVISIONER_RECV_HB", + "range": null, + "title": "Support receiving Heartbeat messages", + "type": "bool" + } + ], + "depends_on": "BLE_MESH", + "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.", + "id": "BLE_MESH_PROVISIONER", + "name": "BLE_MESH_PROVISIONER", + "range": null, + "title": "Support for BLE Mesh Provisioner", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_PROV && BLE_MESH_V11_SUPPORT && BLE_MESH", + "help": "Enable this option to support BLE Mesh enhanced provisioning authentication\nfunctionality. This option can increase the security level of provisioning.\nIt is recommended to enable this option.", + "id": "BLE_MESH_PROV_EPA", + "name": "BLE_MESH_PROV_EPA", + "range": null, + "title": "BLE Mesh enhanced provisioning authentication", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_CERT_BASED_PROV && BLE_MESH", + "help": "This option sets the maximum size of the provisioning record fragment that the\nProvisioner can receive. The range depends on provisioning bearer.", + "id": "BLE_MESH_RECORD_FRAG_MAX_SIZE", + "name": "BLE_MESH_RECORD_FRAG_MAX_SIZE", + "range": null, + "title": "Maximum size of the provisioning record fragment that Provisioner can receive", + "type": "int" + } + ], + "depends_on": "BLE_MESH_PROV && BLE_MESH_V11_SUPPORT && BLE_MESH", + "help": "Enable this option to support BLE Mesh Certificate-Based Provisioning.", + "id": "BLE_MESH_CERT_BASED_PROV", + "name": "BLE_MESH_CERT_BASED_PROV", + "range": null, + "title": "Support Certificate-based provisioning", + "type": "bool" + } + ], + "depends_on": "BLE_MESH", + "help": "Enable this option to support BLE Mesh Provisioning functionality. For\nBLE Mesh, this option should be always enabled.", + "id": "BLE_MESH_PROV", + "name": "BLE_MESH_PROV", + "range": null, + "title": "BLE Mesh Provisioning support", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_NODE && BLE_MESH_PB_ADV && BLE_MESH", + "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.", + "id": "BLE_MESH_UNPROVISIONED_BEACON_INTERVAL", + "name": "BLE_MESH_UNPROVISIONED_BEACON_INTERVAL", + "range": null, + "title": "Interval between two consecutive Unprovisioned Device Beacon", + "type": "int" + } + ], + "depends_on": "BLE_MESH", + "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.", + "id": "BLE_MESH_PB_ADV", + "name": "BLE_MESH_PB_ADV", + "range": null, + "title": "Provisioning support using the advertising bearer (PB-ADV)", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "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", + "id": "BLE_MESH_PB_GATT", + "name": "BLE_MESH_PB_GATT", + "range": null, + "title": "Provisioning support using GATT (PB-GATT)", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable this option to support BLE Mesh Proxy protocol used by PB-GATT\nand other proxy pdu transmission.", + "id": "BLE_MESH_PROXY", + "name": "BLE_MESH_PROXY", + "range": null, + "title": "BLE Mesh Proxy protocol support", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_GATT_PROXY_SERVER && BLE_MESH", + "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.", + "id": "BLE_MESH_NODE_ID_TIMEOUT", + "name": "BLE_MESH_NODE_ID_TIMEOUT", + "range": null, + "title": "Node Identity advertising timeout", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_GATT_PROXY_SERVER && BLE_MESH", + "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.", + "id": "BLE_MESH_PROXY_FILTER_SIZE", + "name": "BLE_MESH_PROXY_FILTER_SIZE", + "range": null, + "title": "Maximum number of filter entries per Proxy Client", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_PRB_SRV && BLE_MESH_GATT_PROXY_SERVER && BLE_MESH", + "help": "The Proxy Privacy parameter controls the privacy of the Proxy Server\nover the connection. The value of the Proxy Privacy parameter is\ncontrolled by the type of proxy connection, which is dependent on the\nbearer used by the proxy connection.", + "id": "BLE_MESH_PROXY_PRIVACY", + "name": "BLE_MESH_PROXY_PRIVACY", + "range": null, + "title": "Support Proxy Privacy", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_PROXY_SOLIC_PDU_RX && BLE_MESH", + "help": "This option specifies the maximum capacity of the solicitation replay\nprotection list. The solicitation replay protection list is used to\nreject Solicitation PDUs that were already processed by a node, which\nwill store the solicitation src and solicitation sequence number of\nthe received Solicitation PDU message.", + "id": "BLE_MESH_PROXY_SOLIC_RX_CRPL", + "name": "BLE_MESH_PROXY_SOLIC_RX_CRPL", + "range": null, + "title": "Maximum capacity of solicitation replay protection list", + "type": "int" + } + ], + "depends_on": "BLE_MESH_GATT_PROXY_SERVER && BLE_MESH_V11_SUPPORT && BLE_MESH", + "help": "Enable this option to support receiving Proxy Solicitation PDU.", + "id": "BLE_MESH_PROXY_SOLIC_PDU_RX", + "name": "BLE_MESH_PROXY_SOLIC_PDU_RX", + "range": null, + "title": "Support receiving Proxy Solicitation PDU", + "type": "bool" + } + ], + "depends_on": "BLE_MESH_NODE && BLE_MESH", + "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.", + "id": "BLE_MESH_GATT_PROXY_SERVER", + "name": "BLE_MESH_GATT_PROXY_SERVER", + "range": null, + "title": "BLE Mesh GATT Proxy Server", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_EXPERIMENTAL && BLE_MESH", + "help": "Enable this option to support the coexistence of proxy client and proxy server.", + "id": "BLE_MESH_PROXY_CLI_SRV_COEXIST", + "name": "BLE_MESH_PROXY_CLI_SRV_COEXIST", + "range": null, + "title": "Support Proxy Client and Proxy Server coexistence", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_PROXY_SOLIC_PDU_TX && BLE_MESH", + "help": "This option specifies the maximum number of Solicitation Source (SSRC)\nthat can be used by Proxy Client for sending a Solicitation PDU.\nA Proxy Client may use the primary address or any of the secondary\naddresses as the SSRC for a Solicitation PDU.\nSo for a Proxy Client, it's better to choose the value based on its\nown element count.", + "id": "BLE_MESH_PROXY_SOLIC_TX_SRC_COUNT", + "name": "BLE_MESH_PROXY_SOLIC_TX_SRC_COUNT", + "range": null, + "title": "Maximum number of SSRC that can be used by Proxy Client", + "type": "int" + } + ], + "depends_on": "BLE_MESH_GATT_PROXY_CLIENT && BLE_MESH_V11_SUPPORT && BLE_MESH", + "help": "Enable this option to support sending Proxy Solicitation PDU.", + "id": "BLE_MESH_PROXY_SOLIC_PDU_TX", + "name": "BLE_MESH_PROXY_SOLIC_PDU_TX", + "range": null, + "title": "Support sending Proxy Solicitation PDU", + "type": "bool" + } + ], + "depends_on": "BLE_MESH", + "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.", + "id": "BLE_MESH_GATT_PROXY_CLIENT", + "name": "BLE_MESH_GATT_PROXY_CLIENT", + "range": null, + "title": "BLE Mesh GATT Proxy Client", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "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.", + "id": "BLE_MESH_NET_BUF_POOL_USAGE", + "name": "BLE_MESH_NET_BUF_POOL_USAGE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_SETTINGS && BLE_MESH", + "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.", + "id": "BLE_MESH_STORE_TIMEOUT", + "name": "BLE_MESH_STORE_TIMEOUT", + "range": null, + "title": "Delay (in seconds) before storing anything persistently", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_SETTINGS && BLE_MESH", + "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.", + "id": "BLE_MESH_SEQ_STORE_RATE", + "name": "BLE_MESH_SEQ_STORE_RATE", + "range": null, + "title": "How often the sequence number gets updated in storage", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_SETTINGS && BLE_MESH", + "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.", + "id": "BLE_MESH_RPL_STORE_TIMEOUT", + "name": "BLE_MESH_RPL_STORE_TIMEOUT", + "range": null, + "title": "Minimum frequency that the RPL gets updated in storage", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_NODE && BLE_MESH_SETTINGS && BLE_MESH", + "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.", + "id": "BLE_MESH_SETTINGS_BACKWARD_COMPATIBILITY", + "name": "BLE_MESH_SETTINGS_BACKWARD_COMPATIBILITY", + "range": null, + "title": "A specific option for settings backward compatibility", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_SPECIFIC_PARTITION && BLE_MESH_SETTINGS && BLE_MESH", + "help": "This value defines the name of the specified NVS partition used by the\nmesh stack.", + "id": "BLE_MESH_PARTITION_NAME", + "name": "BLE_MESH_PARTITION_NAME", + "range": null, + "title": "Name of the NVS partition for BLE Mesh", + "type": "string" + } + ], + "depends_on": "BLE_MESH_SETTINGS && BLE_MESH", + "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.", + "id": "BLE_MESH_SPECIFIC_PARTITION", + "name": "BLE_MESH_SPECIFIC_PARTITION", + "range": null, + "title": "Use a specific NVS partition for BLE Mesh", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_USE_MULTIPLE_NAMESPACE && BLE_MESH_SETTINGS && BLE_MESH", + "help": "This option specifies the maximum NVS namespaces supported by Provisioner.", + "id": "BLE_MESH_MAX_NVS_NAMESPACE", + "name": "BLE_MESH_MAX_NVS_NAMESPACE", + "range": null, + "title": "Maximum number of NVS namespaces", + "type": "int" + } + ], + "depends_on": "BLE_MESH_PROVISIONER && BLE_MESH_SETTINGS && BLE_MESH", + "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.", + "id": "BLE_MESH_USE_MULTIPLE_NAMESPACE", + "name": "BLE_MESH_USE_MULTIPLE_NAMESPACE", + "range": null, + "title": "Support using multiple NVS namespaces by Provisioner", + "type": "bool" + } + ], + "depends_on": "BLE_MESH", + "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.", + "id": "BLE_MESH_SETTINGS", + "name": "BLE_MESH_SETTINGS", + "range": null, + "title": "Store BLE Mesh configuration persistently", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "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.", + "id": "BLE_MESH_SUBNET_COUNT", + "name": "BLE_MESH_SUBNET_COUNT", + "range": null, + "title": "Maximum number of mesh subnets per network", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "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.", + "id": "BLE_MESH_APP_KEY_COUNT", + "name": "BLE_MESH_APP_KEY_COUNT", + "range": null, + "title": "Maximum number of application keys per network", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "This option specifies the maximum number of application keys to which each model\ncan be bound.", + "id": "BLE_MESH_MODEL_KEY_COUNT", + "name": "BLE_MESH_MODEL_KEY_COUNT", + "range": null, + "title": "Maximum number of application keys per model", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "This option specifies the maximum number of addresses to which each model can\nbe subscribed.", + "id": "BLE_MESH_MODEL_GROUP_COUNT", + "name": "BLE_MESH_MODEL_GROUP_COUNT", + "range": null, + "title": "Maximum number of group address subscriptions per model", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "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.", + "id": "BLE_MESH_LABEL_COUNT", + "name": "BLE_MESH_LABEL_COUNT", + "range": null, + "title": "Maximum number of Label UUIDs used for Virtual Addresses", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "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.", + "id": "BLE_MESH_CRPL", + "name": "BLE_MESH_CRPL", + "range": null, + "title": "Maximum capacity of the replay protection list", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_EXPERIMENTAL && BLE_MESH", + "help": "There may be many expired messages in a complex mesh network that would be\nconsidered replayed messages.\nEnable this option will refuse to relay such messages, which could help to\nreduce invalid packets in the mesh network.\nHowever, it should be noted that enabling this option may result in packet\nloss in certain environments.\nTherefore, users need to decide whether to enable this option according to\nthe actual usage situation.", + "id": "BLE_MESH_NOT_RELAY_REPLAY_MSG", + "name": "BLE_MESH_NOT_RELAY_REPLAY_MSG", + "range": null, + "title": "Not relay replayed messages in a mesh network", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "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.", + "id": "BLE_MESH_MSG_CACHE_SIZE", + "name": "BLE_MESH_MSG_CACHE_SIZE", + "range": null, + "title": "Network message cache size", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "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.", + "id": "BLE_MESH_ADV_BUF_COUNT", + "name": "BLE_MESH_ADV_BUF_COUNT", + "range": null, + "title": "Number of advertising buffers", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "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).", + "id": "BLE_MESH_IVU_DIVIDER", + "name": "BLE_MESH_IVU_DIVIDER", + "range": null, + "title": "Divider for IV Update state refresh timer", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "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.", + "id": "BLE_MESH_IVU_RECOVERY_IVI", + "name": "BLE_MESH_IVU_RECOVERY_IVI", + "range": null, + "title": "Recovery the IV index when the latest whole IV update procedure is missed", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_V11_SUPPORT && BLE_MESH", + "help": "Enable this option to use the enhanced segmentation and reassembly\nmechanism introduced in Bluetooth Mesh Protocol 1.1.", + "id": "BLE_MESH_SAR_ENHANCEMENT", + "name": "BLE_MESH_SAR_ENHANCEMENT", + "range": null, + "title": "Segmentation and reassembly enhancement", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "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.", + "id": "BLE_MESH_TX_SEG_MSG_COUNT", + "name": "BLE_MESH_TX_SEG_MSG_COUNT", + "range": null, + "title": "Maximum number of simultaneous outgoing segmented messages", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "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.", + "id": "BLE_MESH_RX_SEG_MSG_COUNT", + "name": "BLE_MESH_RX_SEG_MSG_COUNT", + "range": null, + "title": "Maximum number of simultaneous incoming segmented messages", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Maximum incoming Upper Transport Access PDU length. Leave this to the default\nvalue, unless you really need to optimize memory usage.", + "id": "BLE_MESH_RX_SDU_MAX", + "name": "BLE_MESH_RX_SDU_MAX", + "range": null, + "title": "Maximum incoming Upper Transport Access PDU length", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "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.", + "id": "BLE_MESH_TX_SEG_MAX", + "name": "BLE_MESH_TX_SEG_MAX", + "range": null, + "title": "Maximum number of segments in outgoing messages", + "type": "int" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_RELAY_ADV_BUF && BLE_MESH_RELAY && BLE_MESH", + "help": "Number of advertising buffers for relay packets available.", + "id": "BLE_MESH_RELAY_ADV_BUF_COUNT", + "name": "BLE_MESH_RELAY_ADV_BUF_COUNT", + "range": null, + "title": "Number of advertising buffers for relay packets", + "type": "int" + } + ], + "depends_on": "BLE_MESH_RELAY && BLE_MESH", + "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.", + "id": "BLE_MESH_RELAY_ADV_BUF", + "name": "BLE_MESH_RELAY_ADV_BUF", + "range": null, + "title": "Use separate advertising buffers for relay packets", + "type": "bool" + } + ], + "depends_on": "BLE_MESH_NODE && BLE_MESH", + "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.", + "id": "BLE_MESH_RELAY", + "name": "BLE_MESH_RELAY", + "range": null, + "title": "Relay support", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_LOW_POWER && BLE_MESH", + "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.", + "id": "BLE_MESH_LPN_ESTABLISHMENT", + "name": "BLE_MESH_LPN_ESTABLISHMENT", + "range": null, + "title": "Perform Friendship establishment using low power", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_LPN_AUTO && BLE_MESH_LOW_POWER && BLE_MESH", + "help": "Time in seconds from the last received message, that the node waits out\nbefore starting to look for Friend nodes.", + "id": "BLE_MESH_LPN_AUTO_TIMEOUT", + "name": "BLE_MESH_LPN_AUTO_TIMEOUT", + "range": null, + "title": "Time from last received message before going to LPN mode", + "type": "int" + } + ], + "depends_on": "BLE_MESH_LOW_POWER && BLE_MESH", + "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.", + "id": "BLE_MESH_LPN_AUTO", + "name": "BLE_MESH_LPN_AUTO", + "range": null, + "title": "Automatically start looking for Friend nodes once provisioned", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_LOW_POWER && BLE_MESH", + "help": "Time in seconds between Friend Requests, if a previous Friend Request did\nnot yield any acceptable Friend Offers.", + "id": "BLE_MESH_LPN_RETRY_TIMEOUT", + "name": "BLE_MESH_LPN_RETRY_TIMEOUT", + "range": null, + "title": "Retry timeout for Friend requests", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_LOW_POWER && BLE_MESH", + "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.", + "id": "BLE_MESH_LPN_RSSI_FACTOR", + "name": "BLE_MESH_LPN_RSSI_FACTOR", + "range": null, + "title": "RSSIFactor, used in Friend Offer Delay calculation", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_LOW_POWER && BLE_MESH", + "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.", + "id": "BLE_MESH_LPN_RECV_WIN_FACTOR", + "name": "BLE_MESH_LPN_RECV_WIN_FACTOR", + "range": null, + "title": "ReceiveWindowFactor, used in Friend Offer Delay calculation", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_LOW_POWER && BLE_MESH", + "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.", + "id": "BLE_MESH_LPN_MIN_QUEUE_SIZE", + "name": "BLE_MESH_LPN_MIN_QUEUE_SIZE", + "range": null, + "title": "Minimum size of the acceptable friend queue (MinQueueSizeLog)", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_LOW_POWER && BLE_MESH", + "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.", + "id": "BLE_MESH_LPN_RECV_DELAY", + "name": "BLE_MESH_LPN_RECV_DELAY", + "range": null, + "title": "Receive delay requested by the local node", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_LOW_POWER && BLE_MESH", + "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.", + "id": "BLE_MESH_LPN_POLL_TIMEOUT", + "name": "BLE_MESH_LPN_POLL_TIMEOUT", + "range": null, + "title": "The value of the PollTimeout timer", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_LOW_POWER && BLE_MESH", + "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.", + "id": "BLE_MESH_LPN_INIT_POLL_TIMEOUT", + "name": "BLE_MESH_LPN_INIT_POLL_TIMEOUT", + "range": null, + "title": "The starting value of the PollTimeout timer", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_LOW_POWER && BLE_MESH", + "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.", + "id": "BLE_MESH_LPN_SCAN_LATENCY", + "name": "BLE_MESH_LPN_SCAN_LATENCY", + "range": null, + "title": "Latency for enabling scanning", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_LOW_POWER && BLE_MESH", + "help": "Maximum number of groups to which the LPN can subscribe.", + "id": "BLE_MESH_LPN_GROUPS", + "name": "BLE_MESH_LPN_GROUPS", + "range": null, + "title": "Number of groups the LPN can subscribe to", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_LOW_POWER && BLE_MESH", + "help": "Automatically subscribe all nodes address when friendship\nestablished.", + "id": "BLE_MESH_LPN_SUB_ALL_NODES_ADDR", + "name": "BLE_MESH_LPN_SUB_ALL_NODES_ADDR", + "range": null, + "title": "Automatically subscribe all nodes address", + "type": "bool" + } + ], + "depends_on": "BLE_MESH_NODE && BLE_MESH", + "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.", + "id": "BLE_MESH_LOW_POWER", + "name": "BLE_MESH_LOW_POWER", + "range": null, + "title": "Support for Low Power features", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_FRIEND && BLE_MESH", + "help": "Receive Window in milliseconds supported by the Friend node.", + "id": "BLE_MESH_FRIEND_RECV_WIN", + "name": "BLE_MESH_FRIEND_RECV_WIN", + "range": null, + "title": "Friend Receive Window", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_FRIEND && BLE_MESH", + "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.", + "id": "BLE_MESH_FRIEND_QUEUE_SIZE", + "name": "BLE_MESH_FRIEND_QUEUE_SIZE", + "range": null, + "title": "Minimum number of buffers supported per Friend Queue", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_FRIEND && BLE_MESH", + "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.", + "id": "BLE_MESH_FRIEND_SUB_LIST_SIZE", + "name": "BLE_MESH_FRIEND_SUB_LIST_SIZE", + "range": null, + "title": "Friend Subscription List Size", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_FRIEND && BLE_MESH", + "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.", + "id": "BLE_MESH_FRIEND_LPN_COUNT", + "name": "BLE_MESH_FRIEND_LPN_COUNT", + "range": null, + "title": "Number of supported LPN nodes", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_FRIEND && BLE_MESH", + "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.", + "id": "BLE_MESH_FRIEND_SEG_RX", + "name": "BLE_MESH_FRIEND_SEG_RX", + "range": null, + "title": "Number of incomplete segment lists per LPN", + "type": "int" + } + ], + "depends_on": "BLE_MESH", + "help": "Enable this option to be able to act as a Friend Node.", + "id": "BLE_MESH_FRIEND", + "name": "BLE_MESH_FRIEND", + "range": null, + "title": "Support for Friend feature", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH && BLE_MESH", + "help": "Select this to save the BLE Mesh related rodata code size. Enabling this option\nwill disable the output of BLE Mesh debug log.", + "id": "BLE_MESH_NO_LOG", + "name": "BLE_MESH_NO_LOG", + "range": null, + "title": "Disable BLE Mesh debug logs (minimize bin size)", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BLE_MESH_TRACE_LEVEL_NONE", + "name": "BLE_MESH_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BLE_MESH_TRACE_LEVEL_ERROR", + "name": "BLE_MESH_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BLE_MESH_TRACE_LEVEL_WARNING", + "name": "BLE_MESH_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BLE_MESH_TRACE_LEVEL_INFO", + "name": "BLE_MESH_TRACE_LEVEL_INFO", + "range": null, + "title": "INFO", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BLE_MESH_TRACE_LEVEL_DEBUG", + "name": "BLE_MESH_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BLE_MESH_TRACE_LEVEL_VERBOSE", + "name": "BLE_MESH_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BLE_MESH && !BLE_MESH_NO_LOG && BLE_MESH && !BLE_MESH_NO_LOG && BLE_MESH", + "help": "Define BLE Mesh trace level for BLE Mesh stack.", + "id": "component-config-esp-ble-mesh-support-ble-mesh-stack-debug-log-level-ble_mesh_stack-C:-esp-v6.0-esp-idf-components-bt-esp_ble_mesh-Kconfig.in-1181", + "name": "BLE_MESH_STACK_TRACE_LEVEL", + "title": "BLE_MESH_STACK", + "type": "choice" + }, + { + "children": [], + "depends_on": "BLE_MESH && BLE_MESH && !BLE_MESH_NO_LOG && BLE_MESH", + "help": null, + "id": "BLE_MESH_STACK_TRACE_LEVEL", + "name": "BLE_MESH_STACK_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": "BLE_MESH && !BLE_MESH_NO_LOG && BLE_MESH", + "id": "component-config-esp-ble-mesh-support-ble-mesh-stack-debug-log-level-C:-esp-v6.0-esp-idf-components-bt-esp_ble_mesh-Kconfig.in-1178", + "title": "BLE Mesh STACK DEBUG LOG LEVEL", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BLE_MESH_NET_BUF_TRACE_LEVEL_NONE", + "name": "BLE_MESH_NET_BUF_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BLE_MESH_NET_BUF_TRACE_LEVEL_ERROR", + "name": "BLE_MESH_NET_BUF_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BLE_MESH_NET_BUF_TRACE_LEVEL_WARNING", + "name": "BLE_MESH_NET_BUF_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BLE_MESH_NET_BUF_TRACE_LEVEL_INFO", + "name": "BLE_MESH_NET_BUF_TRACE_LEVEL_INFO", + "range": null, + "title": "INFO", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BLE_MESH_NET_BUF_TRACE_LEVEL_DEBUG", + "name": "BLE_MESH_NET_BUF_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BLE_MESH_NET_BUF_TRACE_LEVEL_VERBOSE", + "name": "BLE_MESH_NET_BUF_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BLE_MESH && !BLE_MESH_NO_LOG && BLE_MESH && !BLE_MESH_NO_LOG && BLE_MESH", + "help": "Define BLE Mesh trace level for BLE Mesh net buffer.", + "id": "component-config-esp-ble-mesh-support-ble-mesh-net-buf-debug-log-level-ble_mesh_net_buf-C:-esp-v6.0-esp-idf-components-bt-esp_ble_mesh-Kconfig.in-1218", + "name": "BLE_MESH_NET_BUF_TRACE_LEVEL", + "title": "BLE_MESH_NET_BUF", + "type": "choice" + }, + { + "children": [], + "depends_on": "BLE_MESH && BLE_MESH && !BLE_MESH_NO_LOG && BLE_MESH", + "help": null, + "id": "BLE_MESH_NET_BUF_TRACE_LEVEL", + "name": "BLE_MESH_NET_BUF_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": "BLE_MESH && !BLE_MESH_NO_LOG && BLE_MESH", + "id": "component-config-esp-ble-mesh-support-ble-mesh-net-buf-debug-log-level-C:-esp-v6.0-esp-idf-components-bt-esp_ble_mesh-Kconfig.in-1215", + "title": "BLE Mesh NET BUF DEBUG LOG LEVEL", + "type": "menu" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "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.", + "id": "BLE_MESH_CLIENT_MSG_TIMEOUT", + "name": "BLE_MESH_CLIENT_MSG_TIMEOUT", + "range": null, + "title": "Timeout(ms) for client message response", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Configuration Client model.", + "id": "BLE_MESH_CFG_CLI", + "name": "BLE_MESH_CFG_CLI", + "range": null, + "title": "Configuration Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Health Client model.", + "id": "BLE_MESH_HEALTH_CLI", + "name": "BLE_MESH_HEALTH_CLI", + "range": null, + "title": "Health Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Health Server model.", + "id": "BLE_MESH_HEALTH_SRV", + "name": "BLE_MESH_HEALTH_SRV", + "range": null, + "title": "Health Server model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_V11_SUPPORT && BLE_MESH", + "help": "Enable support for Bridge Configuration Client model.", + "id": "BLE_MESH_BRC_CLI", + "name": "BLE_MESH_BRC_CLI", + "range": null, + "title": "Bridge Configuration Client model", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_BRC_SRV && BLE_MESH_V11_SUPPORT && BLE_MESH", + "help": "Maximum number of Bridging Table entries that the Bridge Configuration Server can support.", + "id": "BLE_MESH_MAX_BRIDGING_TABLE_ENTRY_COUNT", + "name": "BLE_MESH_MAX_BRIDGING_TABLE_ENTRY_COUNT", + "range": null, + "title": "Maximum number of Bridging Table entries", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_BRC_SRV && BLE_MESH_V11_SUPPORT && BLE_MESH", + "help": "This option specifies the maximum capacity of the bridge replay\nprotection list. The bridge replay protection list is used to\nprevent a bridged subnet from replay attack, which will store the\nsource address and sequence number of the received bridge messages.", + "id": "BLE_MESH_BRIDGE_CRPL", + "name": "BLE_MESH_BRIDGE_CRPL", + "range": null, + "title": "Maximum capacity of bridge replay protection list", + "type": "int" + } + ], + "depends_on": "BLE_MESH_V11_SUPPORT && BLE_MESH", + "help": "Enable support for Bridge Configuration Server model.", + "id": "BLE_MESH_BRC_SRV", + "name": "BLE_MESH_BRC_SRV", + "range": null, + "title": "Bridge Configuration Server model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_V11_SUPPORT && BLE_MESH", + "help": "Enable support for Mesh Private Beacon Client model.", + "id": "BLE_MESH_PRB_CLI", + "name": "BLE_MESH_PRB_CLI", + "range": null, + "title": "Mesh Private Beacon Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_V11_SUPPORT && BLE_MESH", + "help": "Enable support for Mesh Private Beacon Server model.", + "id": "BLE_MESH_PRB_SRV", + "name": "BLE_MESH_PRB_SRV", + "range": null, + "title": "Mesh Private Beacon Server model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_V11_SUPPORT && BLE_MESH", + "help": "Enable support for On-Demand Private Proxy Client model.", + "id": "BLE_MESH_ODP_CLI", + "name": "BLE_MESH_ODP_CLI", + "range": null, + "title": "On-Demand Private Proxy Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_PROXY_SOLIC_PDU_RX && BLE_MESH_V11_SUPPORT && BLE_MESH", + "help": "Enable support for On-Demand Private Proxy Server model.", + "id": "BLE_MESH_ODP_SRV", + "name": "BLE_MESH_ODP_SRV", + "range": null, + "title": "On-Demand Private Proxy Server model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_V11_SUPPORT && BLE_MESH", + "help": "Enable support for Solicitation PDU RPL Configuration Client model.", + "id": "BLE_MESH_SRPL_CLI", + "name": "BLE_MESH_SRPL_CLI", + "range": null, + "title": "Solicitation PDU RPL Configuration Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_PROXY_SOLIC_PDU_RX && BLE_MESH_V11_SUPPORT && BLE_MESH", + "help": "Enable support for Solicitation PDU RPL Configuration Server model.\nNote:\nThis option depends on the functionality of receiving Solicitation\nPDU. If the device doesn't support receiving Solicitation PDU, then\nthere is no need to enable this server model.", + "id": "BLE_MESH_SRPL_SRV", + "name": "BLE_MESH_SRPL_SRV", + "range": null, + "title": "Solicitation PDU RPL Configuration Server model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_V11_SUPPORT && BLE_MESH", + "help": "Enable support for Opcodes Aggregator Client model.", + "id": "BLE_MESH_AGG_CLI", + "name": "BLE_MESH_AGG_CLI", + "range": null, + "title": "Opcodes Aggregator Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_V11_SUPPORT && BLE_MESH", + "help": "Enable support for Opcodes Aggregator Server model.", + "id": "BLE_MESH_AGG_SRV", + "name": "BLE_MESH_AGG_SRV", + "range": null, + "title": "Opcodes Aggregator Server model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_V11_SUPPORT && BLE_MESH", + "help": "Enable support for SAR Configuration Client model.", + "id": "BLE_MESH_SAR_CLI", + "name": "BLE_MESH_SAR_CLI", + "range": null, + "title": "SAR Configuration Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_V11_SUPPORT && BLE_MESH", + "help": "Enable support for SAR Configuration Server model.", + "id": "BLE_MESH_SAR_SRV", + "name": "BLE_MESH_SAR_SRV", + "range": null, + "title": "SAR Configuration Server model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_V11_SUPPORT && BLE_MESH", + "help": "Composition Data Page 1 contains information about the relationships\namong models.\nEach model either can be a root model or can extend other models.", + "id": "BLE_MESH_COMP_DATA_1", + "name": "BLE_MESH_COMP_DATA_1", + "range": null, + "title": "Support Composition Data Page 1", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_V11_SUPPORT && BLE_MESH", + "help": "Composition Data Page 128 is used to indicate the structure of\nelements, features, and models of a node after the successful\nexecution of the Node Address Refresh procedure or the Node\nComposition Refresh procedure, or after the execution of the\nNode Removal procedure followed by the provisioning process.\nComposition Data Page 128 shall be present if the node supports\nthe Remote Provisioning Server model; otherwise it is optional.", + "id": "BLE_MESH_COMP_DATA_128", + "name": "BLE_MESH_COMP_DATA_128", + "range": null, + "title": "Support Composition Data Page 128", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_MODELS_METADATA_0 && BLE_MESH_V11_SUPPORT && BLE_MESH", + "help": "The Models Metadata state contains metadata of a node\u2019s models.\nThe Models Metadata state is composed of a number of pages of\ninformation.\nModels Metadata Page 128 contains metadata for the node\u2019s models\nafter the successful execution of the Node Address Refresh\nprocedure or the Node Composition Refresh procedure, or after\nthe execution of the Node Removal procedure followed by the\nprovisioning process.\nModels Metadata Page 128 shall be present if the node supports\nthe Remote Provisioning Server model and the node supports the\nLarge Composition Data Server model.", + "id": "BLE_MESH_MODELS_METADATA_128", + "name": "BLE_MESH_MODELS_METADATA_128", + "range": null, + "title": "Support Models Metadata Page 128", + "type": "bool" + } + ], + "depends_on": "BLE_MESH_V11_SUPPORT && BLE_MESH", + "help": "The Models Metadata state contains metadata of a node\u2019s models.\nThe Models Metadata state is composed of a number of pages of\ninformation.\nModels Metadata Page 0 shall be present if the node supports\nthe Large Composition Data Server model.", + "id": "BLE_MESH_MODELS_METADATA_0", + "name": "BLE_MESH_MODELS_METADATA_0", + "range": null, + "title": "Support Models Metadata Page 0", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_V11_SUPPORT && BLE_MESH", + "help": "Enable support for Large Composition Data Client model.", + "id": "BLE_MESH_LCD_CLI", + "name": "BLE_MESH_LCD_CLI", + "range": null, + "title": "Large Composition Data Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_V11_SUPPORT && BLE_MESH", + "help": "Enable support for Large Composition Data Server model.", + "id": "BLE_MESH_LCD_SRV", + "name": "BLE_MESH_LCD_SRV", + "range": null, + "title": "Large Composition Data Server model", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_RPR_CLI && BLE_MESH_V11_SUPPORT && BLE_MESH", + "help": "This option specifies how many devices can be provisioned at the same time\nusing PB-REMOTE. For example, if the value is 2, it means a Provisioner can\nprovision two unprovisioned devices with PB-REMOTE at the same time.", + "id": "BLE_MESH_RPR_CLI_PROV_SAME_TIME", + "name": "BLE_MESH_RPR_CLI_PROV_SAME_TIME", + "range": null, + "title": "Maximum number of PB-Remote running at the same time by Provisioner", + "type": "int" + } + ], + "depends_on": "BLE_MESH_PROVISIONER && BLE_MESH_V11_SUPPORT && BLE_MESH", + "help": "Enable support for Remote Provisioning Client model", + "id": "BLE_MESH_RPR_CLI", + "name": "BLE_MESH_RPR_CLI", + "range": null, + "title": "Remote Provisioning Client model", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_RPR_SRV && BLE_MESH_V11_SUPPORT && BLE_MESH", + "help": "This option specifies how many device information can a Remote\nProvisioning Server store each time while scanning.", + "id": "BLE_MESH_RPR_SRV_MAX_SCANNED_ITEMS", + "name": "BLE_MESH_RPR_SRV_MAX_SCANNED_ITEMS", + "range": null, + "title": "Maximum number of device information can be scanned", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_RPR_SRV && BLE_MESH_V11_SUPPORT && BLE_MESH", + "help": "Enable this option to support Active Scan for remote provisioning.", + "id": "BLE_MESH_RPR_SRV_ACTIVE_SCAN", + "name": "BLE_MESH_RPR_SRV_ACTIVE_SCAN", + "range": null, + "title": "Support Active Scan for remote provisioning", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_RPR_SRV && BLE_MESH_V11_SUPPORT && BLE_MESH", + "help": "This option specifies how many extended scan procedures can be\nstarted by the Remote Provisioning Server.", + "id": "BLE_MESH_RPR_SRV_MAX_EXT_SCAN", + "name": "BLE_MESH_RPR_SRV_MAX_EXT_SCAN", + "range": null, + "title": "Maximum number of extended scan procedures", + "type": "int" + } + ], + "depends_on": "BLE_MESH_NODE && BLE_MESH_V11_SUPPORT && BLE_MESH", + "help": "Enable support for Remote Provisioning Server model", + "id": "BLE_MESH_RPR_SRV", + "name": "BLE_MESH_RPR_SRV", + "range": null, + "title": "Remote Provisioning Server model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_V11_SUPPORT && BLE_MESH", + "help": "Enable support for Directed Forwarding Configuration Client model.", + "id": "BLE_MESH_DF_CLI", + "name": "BLE_MESH_DF_CLI", + "range": null, + "title": "Directed Forwarding Configuration Client model", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_DF_SRV && BLE_MESH_V11_SUPPORT && BLE_MESH", + "help": "Maximum number of Discovery Table entries supported by the node in a given subnet.", + "id": "BLE_MESH_MAX_DISC_TABLE_ENTRY_COUNT", + "name": "BLE_MESH_MAX_DISC_TABLE_ENTRY_COUNT", + "range": null, + "title": "Maximum number of discovery table entries in a given subnet", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_DF_SRV && BLE_MESH_V11_SUPPORT && BLE_MESH", + "help": "Maximum number of Forward Table entries supported by the node in a given subnet.", + "id": "BLE_MESH_MAX_FORWARD_TABLE_ENTRY_COUNT", + "name": "BLE_MESH_MAX_FORWARD_TABLE_ENTRY_COUNT", + "range": null, + "title": "Maximum number of forward table entries in a given subnet", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_DF_SRV && BLE_MESH_V11_SUPPORT && BLE_MESH", + "help": "Maximum size of dependent nodes list supported by each forward table entry.", + "id": "BLE_MESH_MAX_DEPS_NODES_PER_PATH", + "name": "BLE_MESH_MAX_DEPS_NODES_PER_PATH", + "range": null, + "title": "Maximum number of dependent nodes per path", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_DF_SRV && BLE_MESH_V11_SUPPORT && BLE_MESH", + "help": "The option only removes the Path Use timer; all other behavior of the\ndevice is not changed.\nIf Path Monitoring test mode is going to be used, this option should\nbe enabled.", + "id": "BLE_MESH_PATH_MONITOR_TEST", + "name": "BLE_MESH_PATH_MONITOR_TEST", + "range": null, + "title": "Enable Path Monitoring test mode", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_GATT_PROXY_SERVER && BLE_MESH_DF_SRV && BLE_MESH_V11_SUPPORT && BLE_MESH", + "help": "Support Directed Proxy functionality.", + "id": "BLE_MESH_SUPPORT_DIRECTED_PROXY", + "name": "BLE_MESH_SUPPORT_DIRECTED_PROXY", + "range": null, + "title": "Enable Directed Proxy functionality", + "type": "bool" + } + ], + "depends_on": "BLE_MESH_V11_SUPPORT && BLE_MESH", + "help": "Enable support for Directed Forwarding Configuration Server model.", + "id": "BLE_MESH_DF_SRV", + "name": "BLE_MESH_DF_SRV", + "range": null, + "title": "Directed Forwarding Configuration Server model", + "type": "bool" + } + ], + "depends_on": "BLE_MESH", + "id": "component-config-esp-ble-mesh-support-support-for-ble-mesh-foundation-models-C:-esp-v6.0-esp-idf-components-bt-esp_ble_mesh-Kconfig.in-1264", + "title": "Support for BLE Mesh Foundation models", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Generic OnOff Client model.", + "id": "BLE_MESH_GENERIC_ONOFF_CLI", + "name": "BLE_MESH_GENERIC_ONOFF_CLI", + "range": null, + "title": "Generic OnOff Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Generic Level Client model.", + "id": "BLE_MESH_GENERIC_LEVEL_CLI", + "name": "BLE_MESH_GENERIC_LEVEL_CLI", + "range": null, + "title": "Generic Level Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Generic Default Transition Time Client model.", + "id": "BLE_MESH_GENERIC_DEF_TRANS_TIME_CLI", + "name": "BLE_MESH_GENERIC_DEF_TRANS_TIME_CLI", + "range": null, + "title": "Generic Default Transition Time Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Generic Power OnOff Client model.", + "id": "BLE_MESH_GENERIC_POWER_ONOFF_CLI", + "name": "BLE_MESH_GENERIC_POWER_ONOFF_CLI", + "range": null, + "title": "Generic Power OnOff Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Generic Power Level Client model.", + "id": "BLE_MESH_GENERIC_POWER_LEVEL_CLI", + "name": "BLE_MESH_GENERIC_POWER_LEVEL_CLI", + "range": null, + "title": "Generic Power Level Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Generic Battery Client model.", + "id": "BLE_MESH_GENERIC_BATTERY_CLI", + "name": "BLE_MESH_GENERIC_BATTERY_CLI", + "range": null, + "title": "Generic Battery Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Generic Location Client model.", + "id": "BLE_MESH_GENERIC_LOCATION_CLI", + "name": "BLE_MESH_GENERIC_LOCATION_CLI", + "range": null, + "title": "Generic Location Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Generic Property Client model.", + "id": "BLE_MESH_GENERIC_PROPERTY_CLI", + "name": "BLE_MESH_GENERIC_PROPERTY_CLI", + "range": null, + "title": "Generic Property Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Sensor Client model.", + "id": "BLE_MESH_SENSOR_CLI", + "name": "BLE_MESH_SENSOR_CLI", + "range": null, + "title": "Sensor Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Time Client model.", + "id": "BLE_MESH_TIME_CLI", + "name": "BLE_MESH_TIME_CLI", + "range": null, + "title": "Time Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Scene Client model.", + "id": "BLE_MESH_SCENE_CLI", + "name": "BLE_MESH_SCENE_CLI", + "range": null, + "title": "Scene Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Scheduler Client model.", + "id": "BLE_MESH_SCHEDULER_CLI", + "name": "BLE_MESH_SCHEDULER_CLI", + "range": null, + "title": "Scheduler Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Light Lightness Client model.", + "id": "BLE_MESH_LIGHT_LIGHTNESS_CLI", + "name": "BLE_MESH_LIGHT_LIGHTNESS_CLI", + "range": null, + "title": "Light Lightness Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Light CTL Client model.", + "id": "BLE_MESH_LIGHT_CTL_CLI", + "name": "BLE_MESH_LIGHT_CTL_CLI", + "range": null, + "title": "Light CTL Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Light HSL Client model.", + "id": "BLE_MESH_LIGHT_HSL_CLI", + "name": "BLE_MESH_LIGHT_HSL_CLI", + "range": null, + "title": "Light HSL Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Light XYL Client model.", + "id": "BLE_MESH_LIGHT_XYL_CLI", + "name": "BLE_MESH_LIGHT_XYL_CLI", + "range": null, + "title": "Light XYL Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Light LC Client model.", + "id": "BLE_MESH_LIGHT_LC_CLI", + "name": "BLE_MESH_LIGHT_LC_CLI", + "range": null, + "title": "Light LC Client model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Generic server models.", + "id": "BLE_MESH_GENERIC_SERVER", + "name": "BLE_MESH_GENERIC_SERVER", + "range": null, + "title": "Generic server models", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Sensor server models.", + "id": "BLE_MESH_SENSOR_SERVER", + "name": "BLE_MESH_SENSOR_SERVER", + "range": null, + "title": "Sensor server models", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Time and Scenes server models.", + "id": "BLE_MESH_TIME_SCENE_SERVER", + "name": "BLE_MESH_TIME_SCENE_SERVER", + "range": null, + "title": "Time and Scenes server models", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Lighting server models.", + "id": "BLE_MESH_LIGHTING_SERVER", + "name": "BLE_MESH_LIGHTING_SERVER", + "range": null, + "title": "Lighting server models", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_MBT_CLI && BLE_MESH", + "help": "Maximum number of BLOB Transfer Server models that can participating\nin the BLOB transfer with a BLOB Transfer Client model.", + "id": "BLE_MESH_MAX_BLOB_RECEIVERS", + "name": "BLE_MESH_MAX_BLOB_RECEIVERS", + "range": null, + "title": "Maximum number of simultaneous blob receivers", + "type": "int" + } + ], + "depends_on": "BLE_MESH_V11_SUPPORT && BLE_MESH", + "help": "Enable support for BLOB Transfer Client model.\nWarn: This version of the Mesh Binary Large Object Transfer Model will be deprecated,\nand a new version will be released in the future.", + "id": "BLE_MESH_MBT_CLI", + "name": "BLE_MESH_MBT_CLI", + "range": null, + "title": "BLOB Transfer Client model(Deprecated)", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_V11_SUPPORT && BLE_MESH", + "help": "Enable support for BLOB Transfer Server model.\nWarn: This version of the Mesh Binary Large Object Transfer Model will be deprecated,\nand a new version will be released in the future.", + "id": "BLE_MESH_MBT_SRV", + "name": "BLE_MESH_MBT_SRV", + "range": null, + "title": "BLOB Transfer Server model(Deprecated)", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_BLOB_SRV && BLE_MESH", + "help": "In Pull mode (Pull BLOB Transfer Mode), the BLOB Transfer Server\nrequests a fixed number of chunks from the Client. Use this option to\ncontrol the chunk count in the request. If the BLOB Transfer Server\nis instantiated on a Low Power node, the pull request count will be\ntrimmed to not overflow the Friend queue.", + "id": "BLE_MESH_BLOB_SRV_PULL_REQ_COUNT", + "name": "BLE_MESH_BLOB_SRV_PULL_REQ_COUNT", + "range": null, + "title": "Number of chunks to request for each pull", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_BLOB_SRV && BLE_MESH", + "help": "The maximum object size a BLOB Transfer Server can receive.", + "id": "BLE_MESH_BLOB_SIZE_MAX", + "name": "BLE_MESH_BLOB_SIZE_MAX", + "range": null, + "title": "Largest BLOB size in bytes", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_BLOB_SRV && BLE_MESH", + "help": "Minimum acceptable block size in a BLOB transfer. The transfer block\nsize will be some number that is a power of two, and is between block\nsize min and block size max. If no such number exists, a compile\ntime warning will be issued.", + "id": "BLE_MESH_BLOB_BLOCK_SIZE_MIN", + "name": "BLE_MESH_BLOB_BLOCK_SIZE_MIN", + "range": null, + "title": "Minimum block size", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_BLOB_SRV && BLE_MESH", + "help": "Maximum acceptable block size in a BLOB transfer. The transfer block\nsize will be some number that is a power of two, and is between block\nsize min and block size max. If no such number exists, a compile\ntime warning will be issued.", + "id": "BLE_MESH_BLOB_BLOCK_SIZE_MAX", + "name": "BLE_MESH_BLOB_BLOCK_SIZE_MAX", + "range": null, + "title": "Maximum block size", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_BLOB_SRV && BLE_MESH", + "help": "The timer value that Pull BLOB Transfer Server uses to report missed chunks.", + "id": "BLE_MESH_BLOB_REPORT_TIMEOUT", + "name": "BLE_MESH_BLOB_REPORT_TIMEOUT", + "range": null, + "title": "Partial Block Report interval in Pull mode", + "type": "int" + }, + { + "children": [], + "depends_on": "!BLE_MESH_ALIGN_CHUNK_SIZE_TO_MAX_SEGMENT && BLE_MESH_BLOB_SRV && BLE_MESH", + "help": "Set the chunk size for the BLOB Server.\nThe actual maximum chunk size depends on how many segments are\npossible and will be clamped to the max possible if set above.\nsee also: BLE_MESH_RX_SEG_MAX,\nand the maximum SDU a node can receive.", + "id": "BLE_MESH_RX_BLOB_CHUNK_SIZE", + "name": "BLE_MESH_RX_BLOB_CHUNK_SIZE", + "range": null, + "title": "BLOB Server chunk size", + "type": "int" + } + ], + "depends_on": "BLE_MESH_V11_SUPPORT && BLE_MESH", + "help": "Enable the Binary Large Object (BLOB) Transfer Server model.", + "id": "BLE_MESH_BLOB_SRV", + "name": "BLE_MESH_BLOB_SRV", + "range": null, + "title": "Support for BLOB Transfer Server model", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_BLOB_CLI && BLE_MESH", + "help": "Controls the number of times the client will attempt to resend missing\nchunks to the BLOB receivers for every block.", + "id": "BLE_MESH_BLOB_CLI_BLOCK_RETRIES", + "name": "BLE_MESH_BLOB_CLI_BLOCK_RETRIES", + "range": null, + "title": "Number of retries per block", + "type": "int" + }, + { + "children": [], + "depends_on": "!BLE_MESH_ALIGN_CHUNK_SIZE_TO_MAX_SEGMENT && BLE_MESH_BLOB_CLI && BLE_MESH", + "help": "Set the chunk size for the BLOB Client.\nThe actual maximum chunk size depends on how many segments are\npossible and will be clamped to the max possible if set above.\nsee also: BLE_MESH_TX_SEG_MAX,\nand the maximum SDU a node can receive.", + "id": "BLE_MESH_TX_BLOB_CHUNK_SIZE", + "name": "BLE_MESH_TX_BLOB_CHUNK_SIZE", + "range": null, + "title": "BLOB Client chunk size", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_BLOB_CLI && BLE_MESH", + "help": "Set the interval in milliseconds in which chunks are sent during the BLOB transfer.\nNote: Without a delay between each sent chunk, the network might become too busy with the\nBLOB transfer for other communications to succeed.\nNote: Timing restrictions, like the timeout base, should be considered or changed\naccordingly when setting this interval. Otherwise, the interval might be too big for the\ntimeout settings and cause timeouts.", + "id": "BLE_MESH_TX_BLOB_CHUNK_SEND_INTERVAL", + "name": "BLE_MESH_TX_BLOB_CHUNK_SEND_INTERVAL", + "range": null, + "title": "BLOB Client chunk send interval", + "type": "int" + } + ], + "depends_on": "BLE_MESH_V11_SUPPORT && BLE_MESH", + "help": "Enable the Binary Large Object (BLOB) Transfer Client model.", + "id": "BLE_MESH_BLOB_CLI", + "name": "BLE_MESH_BLOB_CLI", + "range": null, + "title": "Support for BLOB Transfer Client model", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH", + "help": "A BLOB transfer contains several blocks. Each block is made up of\nseveral chunks. This option controls the maximum chunk count per\nblock.", + "id": "BLE_MESH_BLOB_CHUNK_COUNT_MAX", + "name": "BLE_MESH_BLOB_CHUNK_COUNT_MAX", + "range": null, + "title": "Maximum chunk count per block", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": null, + "id": "BLE_MESH_ALIGN_CHUNK_SIZE_TO_MAX_SEGMENT", + "name": "BLE_MESH_ALIGN_CHUNK_SIZE_TO_MAX_SEGMENT", + "range": null, + "title": "Align chunk size to max segmented message size", + "type": "bool" + } + ], + "depends_on": "BLE_MESH", + "id": "component-config-esp-ble-mesh-support-support-for-ble-mesh-client-server-models-binary-larger-object-transfer-model-blob-models-common-configuration-C:-esp-v6.0-esp-idf-components-bt-esp_ble_mesh-Kconfig.in-1787", + "title": "BLOB models common configuration", + "type": "menu" + } + ], + "depends_on": "BLE_MESH", + "id": "component-config-esp-ble-mesh-support-support-for-ble-mesh-client-server-models-binary-larger-object-transfer-model-C:-esp-v6.0-esp-idf-components-bt-esp_ble_mesh-Kconfig.in-1677", + "title": "Binary Larger Object Transfer model", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_BLOB_SRV && BLE_MESH", + "help": "Enable the Firmware Update Server model.", + "id": "BLE_MESH_DFU_SRV", + "name": "BLE_MESH_DFU_SRV", + "range": null, + "title": "Support for Firmware Update Server model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_BLOB_CLI && BLE_MESH", + "help": "Enable the Firmware Update Client model.", + "id": "BLE_MESH_DFU_CLI", + "name": "BLE_MESH_DFU_CLI", + "range": null, + "title": "Support for Firmware Update Client model", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH", + "help": "This value defines the maximum length of an image's firmware ID.", + "id": "BLE_MESH_DFU_FWID_MAXLEN", + "name": "BLE_MESH_DFU_FWID_MAXLEN", + "range": null, + "title": "DFU FWID max length", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "This value defines the maximum length of an image's metadata.", + "id": "BLE_MESH_DFU_METADATA_MAXLEN", + "name": "BLE_MESH_DFU_METADATA_MAXLEN", + "range": null, + "title": "DFU metadata max length", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "This option adds a set of functions that can be used to encode and decode a firmware\nmetadata using the format defined in the Bluetooth mesh DFU subsystem.", + "id": "BLE_MESH_DFU_METADATA", + "name": "BLE_MESH_DFU_METADATA", + "range": null, + "title": "Support for the default metadata format", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "This value defines the maximum length of an image's URI, not including\na string terminator.", + "id": "BLE_MESH_DFU_URI_MAXLEN", + "name": "BLE_MESH_DFU_URI_MAXLEN", + "range": null, + "title": "DFU URI max length", + "type": "int" + } + ], + "depends_on": "BLE_MESH", + "id": "component-config-esp-ble-mesh-support-support-for-ble-mesh-client-server-models-device-firmware-update-model-firmware-update-model-configuration-C:-esp-v6.0-esp-idf-components-bt-esp_ble_mesh-Kconfig.in-1821", + "title": "Firmware Update model configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_DFU_SLOTS && BLE_MESH", + "help": "This value defines the number of firmware slots the DFU image slot manager\ncan keep simultaneously.", + "id": "BLE_MESH_DFU_SLOT_CNT", + "name": "BLE_MESH_DFU_SLOT_CNT", + "range": null, + "title": "Number of firmware image slots", + "type": "int" + } + ], + "depends_on": "BLE_MESH", + "help": "Enable the DFU image slot manager, for managing firmware distribution slots\nfor the Firmware Update Client model.", + "id": "BLE_MESH_DFU_SLOTS", + "name": "BLE_MESH_DFU_SLOTS", + "range": null, + "title": "Firmware image slot manager", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable the Device Distribution Client model", + "id": "BLE_MESH_DFD_CLI", + "name": "BLE_MESH_DFD_CLI", + "range": null, + "title": "Support for Device Distribution Client model", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_DFD_SRV && BLE_MESH", + "help": "This value defines the largest DFU image a single slot can store.", + "id": "BLE_MESH_DFD_SRV_SLOT_MAX_SIZE", + "name": "BLE_MESH_DFD_SRV_SLOT_MAX_SIZE", + "range": null, + "title": "Largest DFU image that can be stored", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_DFD_SRV && BLE_MESH", + "help": "This value defines the total storage space dedicated to storing DFU\nimages on the Firmware Distribution Server.", + "id": "BLE_MESH_DFD_SRV_SLOT_SPACE", + "name": "BLE_MESH_DFD_SRV_SLOT_SPACE", + "range": null, + "title": "Total DFU image storage space", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_DFD_SRV && BLE_MESH", + "help": "This value defines the maximum number of Target nodes the Firmware\nDistribution Server can target simultaneously.", + "id": "BLE_MESH_DFD_SRV_TARGETS_MAX", + "name": "BLE_MESH_DFD_SRV_TARGETS_MAX", + "range": null, + "title": "Maximum Target node count", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_DFD_SRV && BLE_MESH", + "help": "This enables support for OOB upload of firmware images for\ndistribution. This makes several callbacks and use of the init\nmacro BLE_MESH_DFD_SRV_INIT_OOB mandatory. See the API documentation\nfor bt_mesh_dfd_srv_cb for details about the mandatory callbacks.", + "id": "BLE_MESH_DFD_SRV_OOB_UPLOAD", + "name": "BLE_MESH_DFD_SRV_OOB_UPLOAD", + "range": null, + "title": "Support for DFU image OOB upload", + "type": "bool" + } + ], + "depends_on": "BLE_MESH_BLOB_SRV && BLE_MESH_DFU_CLI && BLE_MESH", + "help": "Enable the Firmware Distribution Server model.", + "id": "BLE_MESH_DFD_SRV", + "name": "BLE_MESH_DFD_SRV", + "range": null, + "title": "Support for Firmware Distribution Server model", + "type": "bool" + } + ], + "depends_on": "BLE_MESH", + "id": "component-config-esp-ble-mesh-support-support-for-ble-mesh-client-server-models-device-firmware-update-model-C:-esp-v6.0-esp-idf-components-bt-esp_ble_mesh-Kconfig.in-1807", + "title": "Device Firmware Update model", + "type": "menu" + } + ], + "depends_on": "BLE_MESH", + "id": "component-config-esp-ble-mesh-support-support-for-ble-mesh-client-server-models-C:-esp-v6.0-esp-idf-components-bt-esp_ble_mesh-Kconfig.in-1536", + "title": "Support for BLE Mesh Client/Server models", + "type": "menu" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "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.", + "id": "BLE_MESH_IV_UPDATE_TEST", + "name": "BLE_MESH_IV_UPDATE_TEST", + "range": null, + "title": "Test the IV Update Procedure", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "This option is used to decide whether discarding the old SeqAuth when\nreceiving a segmented message.", + "id": "BLE_MESH_DISCARD_OLD_SEQ_AUTH", + "name": "BLE_MESH_DISCARD_OLD_SEQ_AUTH", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH", + "help": "This option adds extra self-tests which are run every time BLE Mesh\nnetworking is initialized.", + "id": "BLE_MESH_SELF_TEST", + "name": "BLE_MESH_SELF_TEST", + "range": null, + "title": "Perform BLE Mesh self-tests", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_BQB_TEST && BLE_MESH", + "help": "This option is used to enable the log of auto-pts test.", + "id": "BLE_MESH_BQB_TEST_LOG", + "name": "BLE_MESH_BQB_TEST_LOG", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": "BLE_MESH", + "help": "This option is used to enable some internal functions for auto-pts test.", + "id": "BLE_MESH_BQB_TEST", + "name": "BLE_MESH_BQB_TEST", + "range": null, + "title": "Enable BLE Mesh specific internal test", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_SELF_TEST && BLE_MESH", + "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.", + "id": "BLE_MESH_TEST_AUTO_ENTER_NETWORK", + "name": "BLE_MESH_TEST_AUTO_ENTER_NETWORK", + "range": null, + "title": "Unprovisioned device enters mesh network automatically", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_SELF_TEST && BLE_MESH", + "help": "With this option enabled, users can use white list to filter mesh\nadvertising packets while scanning.", + "id": "BLE_MESH_TEST_USE_WHITE_LIST", + "name": "BLE_MESH_TEST_USE_WHITE_LIST", + "range": null, + "title": "Use white list to filter mesh advertising packets", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Activate shell module that provides BLE Mesh commands to the console.", + "id": "BLE_MESH_SHELL", + "name": "BLE_MESH_SHELL", + "range": null, + "title": "Enable BLE Mesh shell", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_DEBUG && BLE_MESH", + "help": "Enable Network layer debug logs for the BLE Mesh functionality.", + "id": "BLE_MESH_DEBUG_NET", + "name": "BLE_MESH_DEBUG_NET", + "range": null, + "title": "Network layer debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_DEBUG && BLE_MESH", + "help": "Enable Transport layer debug logs for the BLE Mesh functionality.", + "id": "BLE_MESH_DEBUG_TRANS", + "name": "BLE_MESH_DEBUG_TRANS", + "range": null, + "title": "Transport layer debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_DEBUG && BLE_MESH", + "help": "Enable Beacon-related debug logs for the BLE Mesh functionality.", + "id": "BLE_MESH_DEBUG_BEACON", + "name": "BLE_MESH_DEBUG_BEACON", + "range": null, + "title": "Beacon debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_DEBUG && BLE_MESH", + "help": "Enable cryptographic debug logs for the BLE Mesh functionality.", + "id": "BLE_MESH_DEBUG_CRYPTO", + "name": "BLE_MESH_DEBUG_CRYPTO", + "range": null, + "title": "Crypto debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_DEBUG && BLE_MESH", + "help": "Enable Provisioning debug logs for the BLE Mesh functionality.", + "id": "BLE_MESH_DEBUG_PROV", + "name": "BLE_MESH_DEBUG_PROV", + "range": null, + "title": "Provisioning debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_DEBUG && BLE_MESH", + "help": "Enable Access layer debug logs for the BLE Mesh functionality.", + "id": "BLE_MESH_DEBUG_ACCESS", + "name": "BLE_MESH_DEBUG_ACCESS", + "range": null, + "title": "Access layer debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_DEBUG && BLE_MESH", + "help": "Enable Foundation Models debug logs for the BLE Mesh functionality.", + "id": "BLE_MESH_DEBUG_MODEL", + "name": "BLE_MESH_DEBUG_MODEL", + "range": null, + "title": "Foundation model debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_DEBUG && BLE_MESH", + "help": "Enable advertising debug logs for the BLE Mesh functionality.", + "id": "BLE_MESH_DEBUG_ADV", + "name": "BLE_MESH_DEBUG_ADV", + "range": null, + "title": "Advertising debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_DEBUG && BLE_MESH", + "help": "Enable Low Power debug logs for the BLE Mesh functionality.", + "id": "BLE_MESH_DEBUG_LOW_POWER", + "name": "BLE_MESH_DEBUG_LOW_POWER", + "range": null, + "title": "Low Power debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_DEBUG && BLE_MESH", + "help": "Enable Friend debug logs for the BLE Mesh functionality.", + "id": "BLE_MESH_DEBUG_FRIEND", + "name": "BLE_MESH_DEBUG_FRIEND", + "range": null, + "title": "Friend debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_PROXY && BLE_MESH_DEBUG && BLE_MESH", + "help": "Enable Proxy protocol debug logs for the BLE Mesh functionality.", + "id": "BLE_MESH_DEBUG_PROXY", + "name": "BLE_MESH_DEBUG_PROXY", + "range": null, + "title": "Proxy debug", + "type": "bool" + } + ], + "depends_on": "BLE_MESH", + "help": "Enable debug logs for the BLE Mesh functionality.", + "id": "BLE_MESH_DEBUG", + "name": "BLE_MESH_DEBUG", + "range": null, + "title": "Enable BLE Mesh debug logs", + "type": "bool" + } + ], + "depends_on": "BLE_MESH", + "id": "component-config-esp-ble-mesh-support-ble-mesh-specific-test-option-C:-esp-v6.0-esp-idf-components-bt-esp_ble_mesh-Kconfig.in-1940", + "title": "BLE Mesh specific test option", + "type": "menu" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Make BLE Mesh Experimental features visible.\nExperimental features list:\n- CONFIG_BLE_MESH_NOT_RELAY_REPLAY_MSG\n- CONFIG_BLE_MESH_USE_BLE_50\n- CONFIG_BLE_MESH_PROXY_CLI_SRV_COEXIST", + "id": "BLE_MESH_EXPERIMENTAL", + "name": "BLE_MESH_EXPERIMENTAL", + "range": null, + "title": "Make BLE Mesh experimental features visible", + "type": "bool" + } + ], + "depends_on": "BT_ENABLED", + "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.", + "id": "BLE_MESH", + "is_menuconfig": true, + "name": "BLE_MESH", + "range": null, + "title": "ESP BLE Mesh Support", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Instead of listing the commands in the order of registration, the help command lists\nthe available commands in sorted order, if this option is enabled.", + "id": "CONSOLE_SORTED_HELP", + "name": "CONSOLE_SORTED_HELP", + "range": null, + "title": "Enable sorted help", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-console-library-C:-esp-v6.0-esp-idf-components-console-Kconfig-1", + "title": "Console Library", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "SOC_TWAI_SUPPORTED", + "help": "Place the TWAI ISR in to IRAM to reduce latency and increase performance", + "id": "TWAI_ISR_IN_IRAM_LEGACY", + "name": "TWAI_ISR_IN_IRAM_LEGACY", + "range": null, + "title": "Place TWAI ISR function in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_TWAI_SUPPORTED", + "help": "whether to suppress the deprecation warnings when using legacy twai driver\n(driver/twai.h). If you want to continue using the legacy driver,\nand don't want to see related deprecation warnings, you can enable this option.", + "id": "TWAI_SUPPRESS_DEPRECATE_WARN", + "name": "TWAI_SUPPRESS_DEPRECATE_WARN", + "range": null, + "title": "Suppress legacy driver deprecated warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_TWAI_SUPPORTED", + "help": "This configuration option used to bypass the conflict check mechanism with legacy code.", + "id": "TWAI_SKIP_LEGACY_CONFLICT_CHECK", + "name": "TWAI_SKIP_LEGACY_CONFLICT_CHECK", + "range": null, + "title": "Skip legacy driver conflict check", + "type": "bool" + } + ], + "depends_on": "SOC_TWAI_SUPPORTED", + "id": "component-config-legacy-driver-configurations-legacy-twai-driver-configurations-C:-esp-v6.0-esp-idf-components-driver-.-twai-Kconfig.twai-1", + "title": "Legacy TWAI Driver Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_I2C_SUPPORTED", + "help": "whether to suppress the deprecation warnings when using legacy i2c driver\n(driver/i2c.h). If you want to continue using the legacy driver,\nand don't want to see related deprecation warnings, you can enable this option.", + "id": "I2C_SUPPRESS_DEPRECATE_WARN", + "name": "I2C_SUPPRESS_DEPRECATE_WARN", + "range": null, + "title": "Suppress legacy driver deprecated warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_I2C_SUPPORTED", + "help": "This configuration option allows the user to bypass the conflict check mechanism with legacy code.", + "id": "I2C_SKIP_LEGACY_CONFLICT_CHECK", + "name": "I2C_SKIP_LEGACY_CONFLICT_CHECK", + "range": null, + "title": "Skip legacy conflict check", + "type": "bool" + } + ], + "depends_on": "SOC_I2C_SUPPORTED", + "id": "component-config-legacy-driver-configurations-legacy-i2c-driver-configurations-C:-esp-v6.0-esp-idf-components-driver-Kconfig-5", + "title": "Legacy I2C Driver Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_TOUCH_SENSOR_SUPPORTED", + "help": "whether to suppress the deprecation warnings when using legacy touch sensor driver\n(driver/touch_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.", + "id": "TOUCH_SUPPRESS_DEPRECATE_WARN", + "name": "TOUCH_SUPPRESS_DEPRECATE_WARN", + "range": null, + "title": "Suppress legacy driver deprecated warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_TOUCH_SENSOR_SUPPORTED", + "help": "This configuration option allows the user to bypass the conflict check mechanism with legacy code.", + "id": "TOUCH_SKIP_LEGACY_CONFLICT_CHECK", + "name": "TOUCH_SKIP_LEGACY_CONFLICT_CHECK", + "range": null, + "title": "Skip legacy conflict check", + "type": "bool" + } + ], + "depends_on": "SOC_TOUCH_SENSOR_SUPPORTED", + "id": "component-config-legacy-driver-configurations-legacy-touch-sensor-driver-configurations-C:-esp-v6.0-esp-idf-components-driver-Kconfig-22", + "title": "Legacy Touch Sensor Driver Configurations", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-legacy-driver-configurations-C:-esp-v6.0-esp-idf-components-driver-Kconfig-1", + "title": "Legacy Driver Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "EFUSE_CUSTOM_TABLE", + "help": "Name of the custom eFuse CSV filename. This path is evaluated\nrelative to the project root directory.", + "id": "EFUSE_CUSTOM_TABLE_FILENAME", + "name": "EFUSE_CUSTOM_TABLE_FILENAME", + "range": null, + "title": "Custom eFuse CSV file", + "type": "string" + } + ], + "depends_on": null, + "help": "Allows to generate a structure for eFuse from the CSV file.", + "id": "EFUSE_CUSTOM_TABLE", + "name": "EFUSE_CUSTOM_TABLE", + "range": null, + "title": "Use custom eFuse table", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "EFUSE_VIRTUAL && !IDF_TARGET_LINUX", + "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).", + "id": "EFUSE_VIRTUAL_KEEP_IN_FLASH", + "name": "EFUSE_VIRTUAL_KEEP_IN_FLASH", + "range": null, + "title": "Keep eFuses in flash", + "type": "bool" + }, + { + "children": [], + "depends_on": "EFUSE_VIRTUAL", + "help": "If enabled, log efuse burns. This shows changes that would be made.", + "id": "EFUSE_VIRTUAL_LOG_ALL_WRITES", + "name": "EFUSE_VIRTUAL_LOG_ALL_WRITES", + "range": null, + "title": "Log all virtual writes", + "type": "bool" + } + ], + "depends_on": null, + "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.", + "id": "EFUSE_VIRTUAL", + "name": "EFUSE_VIRTUAL", + "range": null, + "title": "Simulate eFuse operations in RAM", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "EFUSE_CODE_SCHEME_COMPAT_NONE", + "name": "EFUSE_CODE_SCHEME_COMPAT_NONE", + "range": null, + "title": "None Only", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "EFUSE_CODE_SCHEME_COMPAT_3_4", + "name": "EFUSE_CODE_SCHEME_COMPAT_3_4", + "range": null, + "title": "3/4 and None", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "EFUSE_CODE_SCHEME_COMPAT_REPEAT", + "name": "EFUSE_CODE_SCHEME_COMPAT_REPEAT", + "range": null, + "title": "Repeat, 3/4 and None (common table does not support it)", + "type": "bool" + } + ], + "depends_on": "IDF_TARGET_ESP32", + "help": "Selector eFuse code scheme.", + "id": "component-config-efuse-bit-manager-coding-scheme-compatibility-C:-esp-v6.0-esp-idf-components-efuse-Kconfig-51", + "name": "EFUSE_CODE_SCHEME_SELECTOR", + "title": "Coding Scheme Compatibility", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "EFUSE_MAX_BLK_LEN", + "name": "EFUSE_MAX_BLK_LEN", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-efuse-bit-manager-C:-esp-v6.0-esp-idf-components-efuse-Kconfig-1", + "title": "eFuse Bit Manager", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_TLS_USING_MBEDTLS", + "name": "ESP_TLS_USING_MBEDTLS", + "range": null, + "title": "mbedTLS", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "When selected, allows external components to register their own TLS stack implementation\nvia esp_tls_register_stack() API. The custom stack must be registered before creating\nany TLS connections, otherwise TLS operations will fail.\n\nExternal components can provide any TLS stack implementation by implementing the\nesp_tls_stack_ops_t interface.", + "id": "ESP_TLS_CUSTOM_STACK", + "name": "ESP_TLS_CUSTOM_STACK", + "range": null, + "title": "Custom TLS stack (register via esp_tls_register_stack())", + "type": "bool" + } + ], + "depends_on": null, + "help": "The ESP-TLS APIs support multiple backend TLS libraries. mbedTLS is supported by default.\nCustom TLS stacks can be registered via esp_tls_register_stack() API when\nCONFIG_ESP_TLS_CUSTOM_STACK is selected. Different TLS libraries may support different\nfeatures and have different resource usage. Consult the ESP-TLS documentation in ESP-IDF\nProgramming guide for more details.", + "id": "component-config-esp-tls-choose-ssl-tls-library-for-esp-tls-see-help-for-more-info--C:-esp-v6.0-esp-idf-components-esp-tls-Kconfig-2", + "name": "ESP_TLS_LIBRARY_CHOOSE", + "title": "Choose SSL/TLS library for ESP-TLS (See help for more Info)", + "type": "choice" + }, + { + "children": [], + "depends_on": "ESP_TLS_USING_MBEDTLS", + "help": "Enable use of Secure Element for ESP-TLS, this enables internal support for\nATECC608A peripheral, which can be used for TLS connection.", + "id": "ESP_TLS_USE_SECURE_ELEMENT", + "name": "ESP_TLS_USE_SECURE_ELEMENT", + "range": null, + "title": "Use Secure Element (ATECC608A) with ESP-TLS", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_TLS_USING_MBEDTLS && SOC_DIG_SIGN_SUPPORTED", + "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.", + "id": "ESP_TLS_USE_DS_PERIPHERAL", + "name": "ESP_TLS_USE_DS_PERIPHERAL", + "range": null, + "title": "Use Digital Signature (DS) Peripheral with ESP-TLS", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_TLS_USING_MBEDTLS && MBEDTLS_CLIENT_SSL_SESSION_TICKETS", + "help": "Enable session ticket support as specified in RFC5077.", + "id": "ESP_TLS_CLIENT_SESSION_TICKETS", + "name": "ESP_TLS_CLIENT_SESSION_TICKETS", + "range": null, + "title": "Enable client session tickets", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_TLS_SERVER_SESSION_TICKETS", + "help": "Sets the session ticket timeout used in the tls server.", + "id": "ESP_TLS_SERVER_SESSION_TICKET_TIMEOUT", + "name": "ESP_TLS_SERVER_SESSION_TICKET_TIMEOUT", + "range": null, + "title": "Server session ticket timeout in seconds", + "type": "int" + } + ], + "depends_on": "ESP_TLS_USING_MBEDTLS && MBEDTLS_SERVER_SSL_SESSION_TICKETS", + "help": "Enable session ticket support as specified in RFC5077", + "id": "ESP_TLS_SERVER_SESSION_TICKETS", + "name": "ESP_TLS_SERVER_SESSION_TICKETS", + "range": null, + "title": "Enable server session tickets", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_TLS_USING_MBEDTLS", + "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).", + "id": "ESP_TLS_SERVER_CERT_SELECT_HOOK", + "name": "ESP_TLS_SERVER_CERT_SELECT_HOOK", + "range": null, + "title": "Certificate selection hook", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_TLS_USING_MBEDTLS", + "help": "When this option is enabled, the ESP-TLS server can be configured to\nrequest client certificates optionally. This is done by setting the\nclient_cert_authmode_optional field in the esp_https_server_config_t structure.\n\nmbedtls_ssl_get_verify_result() can be called after the handshake is complete to\nretrieve status of verification of the client certificate, if presented.", + "id": "ESP_TLS_SERVER_MIN_AUTH_MODE_OPTIONAL", + "name": "ESP_TLS_SERVER_MIN_AUTH_MODE_OPTIONAL", + "range": null, + "title": "ESP-TLS Server: Set minimum Certificate Verification mode to Optional", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable support for pre shared key ciphers, supported for both mbedTLS as well as\ncustom TLS stacks.", + "id": "ESP_TLS_PSK_VERIFICATION", + "name": "ESP_TLS_PSK_VERIFICATION", + "range": null, + "title": "Enable PSK verification", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_TLS_INSECURE", + "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.", + "id": "ESP_TLS_SKIP_SERVER_CERT_VERIFY", + "name": "ESP_TLS_SKIP_SERVER_CERT_VERIFY", + "range": null, + "title": "Skip server certificate verification by default (WARNING: ONLY FOR TESTING PURPOSE, READ HELP)", + "type": "bool" + } + ], + "depends_on": null, + "help": "You can enable some potentially insecure options. These options should only be used for testing purposes.\nOnly enable these options if you are very sure.", + "id": "ESP_TLS_INSECURE", + "name": "ESP_TLS_INSECURE", + "range": null, + "title": "Allow potentially insecure options", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable support for dynamic buffer strategy for ESP-TLS. This is the hidden config option kept\nfor external components like OTA, to find out whether the dynamic buffer strategy is supported\nfor particular ESP-IDF version.", + "id": "ESP_TLS_DYN_BUF_STRATEGY_SUPPORTED", + "name": "ESP_TLS_DYN_BUF_STRATEGY_SUPPORTED", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-tls-C:-esp-v6.0-esp-idf-components-esp-tls-Kconfig-1", + "title": "ESP-TLS", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Place ISR version ADC oneshot mode read function into IRAM.", + "id": "ADC_ONESHOT_CTRL_FUNC_IN_IRAM", + "name": "ADC_ONESHOT_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place ISR version ADC oneshot mode read function into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_ADC_DMA_SUPPORTED", + "help": "Ensure the ADC continuous mode ISR is IRAM-Safe. When enabled, the ISR handler\nwill be available when the cache is disabled.", + "id": "ADC_CONTINUOUS_ISR_IRAM_SAFE", + "name": "ADC_CONTINUOUS_ISR_IRAM_SAFE", + "range": null, + "title": "ADC continuous mode driver ISR IRAM-Safe", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "IDF_TARGET_ESP32", + "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.", + "id": "ADC_CALI_EFUSE_TP_ENABLE", + "name": "ADC_CALI_EFUSE_TP_ENABLE", + "range": null, + "title": "Use Two Point Values", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32", + "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.", + "id": "ADC_CALI_EFUSE_VREF_ENABLE", + "name": "ADC_CALI_EFUSE_VREF_ENABLE", + "range": null, + "title": "Use eFuse Vref", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32", + "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.", + "id": "ADC_CALI_LUT_ENABLE", + "name": "ADC_CALI_LUT_ENABLE", + "range": null, + "title": "Use Lookup Tables", + "type": "bool" + } + ], + "depends_on": "IDF_TARGET_ESP32", + "id": "component-config-adc-and-adc-calibration-adc-calibration-configurations-C:-esp-v6.0-esp-idf-components-esp_adc-Kconfig-19", + "title": "ADC Calibration Configurations", + "type": "menu" + }, + { + "children": [], + "depends_on": "SOC_DAC_SUPPORTED", + "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.", + "id": "ADC_DISABLE_DAC_OUTPUT", + "name": "ADC_DISABLE_DAC_OUTPUT", + "range": null, + "title": "Disable DAC when ADC2 is in use", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32S3", + "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.", + "id": "ADC_CONTINUOUS_FORCE_USE_ADC2_ON_C3_S3", + "name": "ADC_CONTINUOUS_FORCE_USE_ADC2_ON_C3_S3", + "range": null, + "title": "Force use ADC2 continuous mode on ESP32S3 or ESP32C3", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32C3", + "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.", + "id": "ADC_ONESHOT_FORCE_USE_ADC2_ON_C3", + "name": "ADC_ONESHOT_FORCE_USE_ADC2_ON_C3", + "range": null, + "title": "Force use ADC2 oneshot mode on ESP32C3", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "whether to enable the debug log message for ADC driver.\nNote that this option only controls the ADC driver log, will not affect other drivers.", + "id": "ADC_ENABLE_DEBUG_LOG", + "name": "ADC_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable ADC debug log", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-adc-and-adc-calibration-C:-esp-v6.0-esp-idf-components-esp_adc-Kconfig-1", + "title": "ADC and ADC Calibration", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_COEX_ENABLED", + "name": "ESP_COEX_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "((ESP_WIFI_ENABLED && BT_ENABLED) || (ESP_WIFI_ENABLED && IEEE802154_ENABLED) || (IEEE802154_ENABLED && BT_ENABLED)) && ESP_COEX_ENABLED", + "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.", + "id": "ESP_COEX_SW_COEXIST_ENABLE", + "name": "ESP_COEX_SW_COEXIST_ENABLE", + "range": null, + "title": "Software controls WiFi/Bluetooth coexistence", + "type": "bool" + }, + { + "children": [], + "depends_on": "!(BT_ENABLED || NIMBLE_ENABLED) && !IDF_TARGET_ESP32 && ESP_COEX_ENABLED", + "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.", + "id": "ESP_COEX_EXTERNAL_COEXIST_ENABLE", + "name": "ESP_COEX_EXTERNAL_COEXIST_ENABLE", + "range": null, + "title": "External Coexistence", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_COEX_SW_COEXIST_ENABLE && ESP_COEX_ENABLED", + "help": "If enabled, coexist power management will be enabled.", + "id": "ESP_COEX_POWER_MANAGEMENT", + "name": "ESP_COEX_POWER_MANAGEMENT", + "range": null, + "title": "Support power management under coexistence", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_COEX_GPIO_DEBUG_DIAG_GENERAL", + "name": "ESP_COEX_GPIO_DEBUG_DIAG_GENERAL", + "range": null, + "title": "General", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_COEX_GPIO_DEBUG_DIAG_WIFI", + "name": "ESP_COEX_GPIO_DEBUG_DIAG_WIFI", + "range": null, + "title": "Wi-Fi", + "type": "bool" + } + ], + "depends_on": "ESP_COEX_GPIO_DEBUG", + "help": "Select type of debugging diagram", + "id": "component-config-wireless-coexistence-gpio-debugging-for-coexistence-debugging-diagram-C:-esp-v6.0-esp-idf-components-esp_coex-Kconfig-52", + "name": "ESP_COEX_GPIO_DEBUG_DIAG", + "title": "Debugging Diagram", + "type": "choice" + }, + { + "children": [], + "depends_on": "ESP_COEX_GPIO_DEBUG", + "help": null, + "id": "ESP_COEX_GPIO_DEBUG_IO_COUNT", + "name": "ESP_COEX_GPIO_DEBUG_IO_COUNT", + "range": null, + "title": "Max number of debugging GPIOs", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 0 && ESP_COEX_GPIO_DEBUG", + "help": null, + "id": "ESP_COEX_GPIO_DEBUG_IO_IDX0", + "name": "ESP_COEX_GPIO_DEBUG_IO_IDX0", + "range": null, + "title": "Actual IO num for Debug IO ID0", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 1 && ESP_COEX_GPIO_DEBUG", + "help": null, + "id": "ESP_COEX_GPIO_DEBUG_IO_IDX1", + "name": "ESP_COEX_GPIO_DEBUG_IO_IDX1", + "range": null, + "title": "Actual IO num for Debug IO ID1", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 2 && ESP_COEX_GPIO_DEBUG", + "help": null, + "id": "ESP_COEX_GPIO_DEBUG_IO_IDX2", + "name": "ESP_COEX_GPIO_DEBUG_IO_IDX2", + "range": null, + "title": "Actual IO num for Debug IO ID2", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 3 && ESP_COEX_GPIO_DEBUG", + "help": null, + "id": "ESP_COEX_GPIO_DEBUG_IO_IDX3", + "name": "ESP_COEX_GPIO_DEBUG_IO_IDX3", + "range": null, + "title": "Actual IO num for Debug IO ID3", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 4 && ESP_COEX_GPIO_DEBUG", + "help": null, + "id": "ESP_COEX_GPIO_DEBUG_IO_IDX4", + "name": "ESP_COEX_GPIO_DEBUG_IO_IDX4", + "range": null, + "title": "Actual IO num for Debug IO ID4", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 5 && ESP_COEX_GPIO_DEBUG", + "help": null, + "id": "ESP_COEX_GPIO_DEBUG_IO_IDX5", + "name": "ESP_COEX_GPIO_DEBUG_IO_IDX5", + "range": null, + "title": "Actual IO num for Debug IO ID5", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 6 && ESP_COEX_GPIO_DEBUG", + "help": null, + "id": "ESP_COEX_GPIO_DEBUG_IO_IDX6", + "name": "ESP_COEX_GPIO_DEBUG_IO_IDX6", + "range": null, + "title": "Actual IO num for Debug IO ID6", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 7 && ESP_COEX_GPIO_DEBUG", + "help": null, + "id": "ESP_COEX_GPIO_DEBUG_IO_IDX7", + "name": "ESP_COEX_GPIO_DEBUG_IO_IDX7", + "range": null, + "title": "Actual IO num for Debug IO ID7", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 8 && ESP_COEX_GPIO_DEBUG", + "help": null, + "id": "ESP_COEX_GPIO_DEBUG_IO_IDX8", + "name": "ESP_COEX_GPIO_DEBUG_IO_IDX8", + "range": null, + "title": "Actual IO num for Debug IO ID8", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 9 && ESP_COEX_GPIO_DEBUG", + "help": null, + "id": "ESP_COEX_GPIO_DEBUG_IO_IDX9", + "name": "ESP_COEX_GPIO_DEBUG_IO_IDX9", + "range": null, + "title": "Actual IO num for Debug IO ID9", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 10 && ESP_COEX_GPIO_DEBUG", + "help": null, + "id": "ESP_COEX_GPIO_DEBUG_IO_IDX10", + "name": "ESP_COEX_GPIO_DEBUG_IO_IDX10", + "range": null, + "title": "Actual IO num for Debug IO ID10", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 11 && ESP_COEX_GPIO_DEBUG", + "help": null, + "id": "ESP_COEX_GPIO_DEBUG_IO_IDX11", + "name": "ESP_COEX_GPIO_DEBUG_IO_IDX11", + "range": null, + "title": "Actual IO num for Debug IO ID11", + "type": "int" + } + ], + "depends_on": "!PM_SLP_DISABLE_GPIO && !PM_POWER_DOWN_PERIPHERAL_IN_LIGHT_SLEEP", + "help": "Support coexistence GPIO debugging", + "id": "ESP_COEX_GPIO_DEBUG", + "name": "ESP_COEX_GPIO_DEBUG", + "range": null, + "title": "GPIO debugging for coexistence", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-wireless-coexistence-C:-esp-v6.0-esp-idf-components-esp_coex-Kconfig-2", + "title": "Wireless Coexistence", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "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.", + "id": "ESP_ERR_TO_NAME_LOOKUP", + "name": "ESP_ERR_TO_NAME_LOOKUP", + "range": null, + "title": "Enable lookup of error code strings", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ALLOW_BSS_SEG_EXTERNAL_MEMORY", + "name": "ESP_ALLOW_BSS_SEG_EXTERNAL_MEMORY", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-common-esp-related-C:-esp-v6.0-esp-idf-components-esp_common-Kconfig-1", + "title": "Common ESP-related", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_ANA_CMPR_SUPPORTED", + "help": "Place Analog Comparator ISR handler in IRAM to reduce latency caused by cache miss.", + "id": "ANA_CMPR_ISR_HANDLER_IN_IRAM", + "name": "ANA_CMPR_ISR_HANDLER_IN_IRAM", + "range": null, + "title": "Place Analog Comparator ISR handler in IRAM to reduce latency", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_ANA_CMPR_SUPPORTED", + "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.", + "id": "ANA_CMPR_CTRL_FUNC_IN_IRAM", + "name": "ANA_CMPR_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place Analog Comparator control functions into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_ANA_CMPR_SUPPORTED", + "help": "Enable this option to allow the Analog Comparator Interrupt Service Routine (ISR)\nto execute even when the cache is disabled. This can be useful in scenarios where the cache\nmight be turned off, but the comparator functionality is still required to operate correctly.", + "id": "ANA_CMPR_ISR_CACHE_SAFE", + "name": "ANA_CMPR_ISR_CACHE_SAFE", + "range": null, + "title": "Allow Analog Comparator ISR to execute when cache is disabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_ANA_CMPR_SUPPORTED", + "help": "This will ensure the driver object will not be allocated from a memory region\nwhere its cache can be disabled.", + "id": "ANA_CMPR_OBJ_CACHE_SAFE", + "name": "ANA_CMPR_OBJ_CACHE_SAFE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_ANA_CMPR_SUPPORTED", + "help": "If enabled, the driver component will:\n1. ignore the global logging settings\n2. compile all log messages into the binary\n3. set the runtime log level to VERBOSE\nPlease enable this option by caution, as it will increase the binary size.", + "id": "ANA_CMPR_ENABLE_DEBUG_LOG", + "name": "ANA_CMPR_ENABLE_DEBUG_LOG", + "range": null, + "title": "Force enable debug log", + "type": "bool" + } + ], + "depends_on": "SOC_ANA_CMPR_SUPPORTED", + "id": "component-config-esp-driver-analog-comparator-configurations-C:-esp-v6.0-esp-idf-components-esp_driver_ana_cmpr-Kconfig-1", + "title": "ESP-Driver:Analog Comparator Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_BITSCRAMBLER_SUPPORTED", + "help": "Place BitScrambler control functions into IRAM for better performance and fewer cache misses.", + "id": "BITSCRAMBLER_CTRL_FUNC_IN_IRAM", + "name": "BITSCRAMBLER_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place BitScrambler control functions in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_BITSCRAMBLER_SUPPORTED", + "help": "This will ensure the BitScrambler object will not be allocated from a memory region\nwhere its cache can be disabled.", + "id": "BITSCRAMBLER_OBJ_CACHE_SAFE", + "name": "BITSCRAMBLER_OBJ_CACHE_SAFE", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": "SOC_BITSCRAMBLER_SUPPORTED", + "id": "component-config-esp-driver-bitscrambler-configurations-C:-esp-v6.0-esp-idf-components-esp_driver_bitscrambler-Kconfig-1", + "title": "ESP-Driver:BitScrambler Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_MIPI_CSI_SUPPORTED && (SOC_MIPI_CSI_SUPPORTED || SOC_ISP_DVP_SUPPORTED || SOC_LCDCAM_CAM_SUPPORTED)", + "help": "Ensure the CSI driver ISR is Cache-Safe. When enabled, the ISR handler\nwill be available when the cache is disabled.", + "id": "CAM_CTLR_MIPI_CSI_ISR_CACHE_SAFE", + "name": "CAM_CTLR_MIPI_CSI_ISR_CACHE_SAFE", + "range": null, + "title": "CSI ISR Cache-Safe", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_ISP_DVP_SUPPORTED && (SOC_MIPI_CSI_SUPPORTED || SOC_ISP_DVP_SUPPORTED || SOC_LCDCAM_CAM_SUPPORTED)", + "help": "Ensure the ISP_DVP driver ISR is Cache-Safe. When enabled, the ISR handler\nwill be available when the cache is disabled.", + "id": "CAM_CTLR_ISP_DVP_ISR_CACHE_SAFE", + "name": "CAM_CTLR_ISP_DVP_ISR_CACHE_SAFE", + "range": null, + "title": "ISP_DVP ISR Cache-Safe", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_LCDCAM_CAM_SUPPORTED && (SOC_MIPI_CSI_SUPPORTED || SOC_ISP_DVP_SUPPORTED || SOC_LCDCAM_CAM_SUPPORTED)", + "help": "Ensure the DVP driver ISR is Cache-Safe. When enabled, the ISR handler\nwill be available when the cache is disabled.", + "id": "CAM_CTLR_DVP_CAM_ISR_CACHE_SAFE", + "name": "CAM_CTLR_DVP_CAM_ISR_CACHE_SAFE", + "range": null, + "title": "DVP ISR Cache-Safe", + "type": "bool" + } + ], + "depends_on": "SOC_MIPI_CSI_SUPPORTED || SOC_ISP_DVP_SUPPORTED || SOC_LCDCAM_CAM_SUPPORTED", + "id": "component-config-esp-driver-camera-controller-configurations-C:-esp-v6.0-esp-idf-components-esp_driver_cam-Kconfig-1", + "title": "ESP-Driver:Camera Controller Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_DAC_SUPPORTED", + "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.", + "id": "DAC_CTRL_FUNC_IN_IRAM", + "name": "DAC_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place DAC control functions into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DAC_SUPPORTED", + "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).", + "id": "DAC_ISR_IRAM_SAFE", + "name": "DAC_ISR_IRAM_SAFE", + "range": null, + "title": "DAC ISR IRAM-Safe", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DAC_SUPPORTED", + "help": "whether to enable the debug log message for DAC driver.\nNote that, this option only controls the DAC driver log, won't affect other drivers.", + "id": "DAC_ENABLE_DEBUG_LOG", + "name": "DAC_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable debug log", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DAC_DMA_16BIT_ALIGN && SOC_DAC_SUPPORTED", + "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.", + "id": "DAC_DMA_AUTO_16BIT_ALIGN", + "name": "DAC_DMA_AUTO_16BIT_ALIGN", + "range": null, + "title": "Align the continuous data to 16 bit automatically", + "type": "bool" + } + ], + "depends_on": "SOC_DAC_SUPPORTED", + "id": "component-config-esp-driver-dac-configurations-C:-esp-v6.0-esp-idf-components-esp_driver_dac-Kconfig-1", + "title": "ESP-Driver:DAC Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_GDMA_SUPPORTED", + "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.", + "id": "GDMA_CTRL_FUNC_IN_IRAM", + "name": "GDMA_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place GDMA control functions in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_GDMA_SUPPORTED", + "help": "Place GDMA ISR handler functions in IRAM to reduce latency caused by cache miss.", + "id": "GDMA_ISR_HANDLER_IN_IRAM", + "name": "GDMA_ISR_HANDLER_IN_IRAM", + "range": null, + "title": "Place GDMA ISR handler in IRAM to reduce latency", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_GDMA_SUPPORTED", + "help": "This will ensure the GDMA object is DRAM-Safe, allow to avoid external memory\ncache misses, and also be accessible whilst the cache is disabled.", + "id": "GDMA_OBJ_DRAM_SAFE", + "name": "GDMA_OBJ_DRAM_SAFE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_GDMA_SUPPORTED", + "help": "If enabled, GDMA driver component will:\n1. ignore the global logging settings\n2. compile all log messages into the binary\n3. set the runtime log level to VERBOSE\nPlease enable this option by caution, as it will increase the binary size.", + "id": "GDMA_ENABLE_DEBUG_LOG", + "name": "GDMA_ENABLE_DEBUG_LOG", + "range": null, + "title": "Force enable debug log", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_GDMA_SUPPORT_WEIGHTED_ARBITRATION && IDF_EXPERIMENTAL_FEATURES && SOC_GDMA_SUPPORTED", + "help": "Whether to enable the weighted arbitration for GDMA driver.\nThe default weight of each channel is 1. You need to set weight for each channel before transmissions.\nIf this option is enabled, the buffer should be aligned to the burst size.", + "id": "GDMA_ENABLE_WEIGHTED_ARBITRATION", + "name": "GDMA_ENABLE_WEIGHTED_ARBITRATION", + "range": null, + "title": "GDMA enable weighted arbitration (Experimental)", + "type": "bool" + } + ], + "depends_on": "SOC_GDMA_SUPPORTED", + "id": "component-config-gdma-configurations-C:-esp-v6.0-esp-idf-components-esp_driver_dma-Kconfig-1", + "title": "GDMA Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_DW_GDMA_SUPPORTED", + "help": "Place DW_GDMA control functions (e.g. dw_gdma_channel_continue) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", + "id": "DW_GDMA_CTRL_FUNC_IN_IRAM", + "name": "DW_GDMA_CTRL_FUNC_IN_IRAM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DW_GDMA_SUPPORTED", + "help": "Place DW_GDMA setter functions (e.g. dw_gdma_channel_set_block_markers) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", + "id": "DW_GDMA_SETTER_FUNC_IN_IRAM", + "name": "DW_GDMA_SETTER_FUNC_IN_IRAM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DW_GDMA_SUPPORTED", + "help": "Place DW_GDMA getter functions (e.g. dw_gdma_link_list_get_item) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", + "id": "DW_GDMA_GETTER_FUNC_IN_IRAM", + "name": "DW_GDMA_GETTER_FUNC_IN_IRAM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DW_GDMA_SUPPORTED", + "help": "This will ensure the DW_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).", + "id": "DW_GDMA_ISR_IRAM_SAFE", + "name": "DW_GDMA_ISR_IRAM_SAFE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DW_GDMA_SUPPORTED", + "help": "This will ensure the DW_GDMA object is DRAM-Safe, allow to avoid external memory\ncache misses, and also be accessible whilst the cache is disabled.", + "id": "DW_GDMA_OBJ_DRAM_SAFE", + "name": "DW_GDMA_OBJ_DRAM_SAFE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DW_GDMA_SUPPORTED", + "help": "Whether to enable the debug log message for DW_GDMA driver.\nNote that, this option only controls the DW_GDMA driver log, won't affect other drivers.", + "id": "DW_GDMA_ENABLE_DEBUG_LOG", + "name": "DW_GDMA_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable debug log", + "type": "bool" + } + ], + "depends_on": "SOC_DW_GDMA_SUPPORTED", + "id": "component-config-dw_gdma-configurations-C:-esp-v6.0-esp-idf-components-esp_driver_dma-Kconfig-45", + "title": "DW_GDMA Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_DMA2D_SUPPORTED", + "help": "Place 2D-DMA all operation functions, including control functions (e.g. start/stop/append/reset) and setter\nfunctions (e.g. connect/strategy/callback registration) into IRAM, so that these functions can be IRAM-safe\nand able to be called in the other IRAM interrupt context. It also helps optimizing the performance.", + "id": "DMA2D_OPERATION_FUNC_IN_IRAM", + "name": "DMA2D_OPERATION_FUNC_IN_IRAM", + "range": null, + "title": "Place 2D-DMA operation functions into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DMA2D_SUPPORTED", + "help": "This will ensure the 2D-DMA 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).", + "id": "DMA2D_ISR_IRAM_SAFE", + "name": "DMA2D_ISR_IRAM_SAFE", + "range": null, + "title": "2D-DMA ISR IRAM-Safe", + "type": "bool" + } + ], + "depends_on": "SOC_DMA2D_SUPPORTED", + "id": "component-config-2d-dma-configurations-C:-esp-v6.0-esp-idf-components-esp_driver_dma-Kconfig-96", + "title": "2D-DMA Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "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.", + "id": "GPIO_CTRL_FUNC_IN_IRAM", + "name": "GPIO_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place GPIO control functions into IRAM", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-driver-gpio-configurations-C:-esp-v6.0-esp-idf-components-esp_driver_gpio-Kconfig-1", + "title": "ESP-Driver:GPIO Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_GPTIMER_SUPPORTED", + "help": "Place GPTimer ISR handler in IRAM to reduce latency caused by cache miss.", + "id": "GPTIMER_ISR_HANDLER_IN_IRAM", + "name": "GPTIMER_ISR_HANDLER_IN_IRAM", + "range": null, + "title": "Place GPTimer ISR handler in IRAM to reduce latency", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_GPTIMER_SUPPORTED", + "help": "Place GPTimer control functions (like start/stop) in IRAM, to reduce latency caused by cache miss.\nIf enabled, these functions can also be called when cache is disabled.", + "id": "GPTIMER_CTRL_FUNC_IN_IRAM", + "name": "GPTIMER_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place GPTimer control functions in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_GPTIMER_SUPPORTED", + "help": "Enable this option to allow the GPTimer Interrupt Service Routine (ISR)\nto execute even when the cache is disabled. This can be useful in scenarios where the cache\nmight be turned off, but the GPTimer functionality is still required to operate correctly.", + "id": "GPTIMER_ISR_CACHE_SAFE", + "name": "GPTIMER_ISR_CACHE_SAFE", + "range": null, + "title": "Allow GPTimer ISR to execute when cache is disabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_GPTIMER_SUPPORTED", + "help": "This will ensure the GPTimer object will not be allocated from a memory region\nwhere its cache can be disabled.", + "id": "GPTIMER_OBJ_CACHE_SAFE", + "name": "GPTIMER_OBJ_CACHE_SAFE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_GPTIMER_SUPPORTED", + "help": "If enabled, GPTimer component will:\n1. ignore the global logging settings\n2. compile all log messages into the binary\n3. set the runtime log level to VERBOSE\nPlease enable this option by caution, as it will increase the binary size.", + "id": "GPTIMER_ENABLE_DEBUG_LOG", + "name": "GPTIMER_ENABLE_DEBUG_LOG", + "range": null, + "title": "Force enable debug log", + "type": "bool" + } + ], + "depends_on": "SOC_GPTIMER_SUPPORTED", + "id": "component-config-esp-driver-gptimer-configurations-C:-esp-v6.0-esp-idf-components-esp_driver_gptimer-Kconfig-1", + "title": "ESP-Driver:GPTimer Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_I2C_SUPPORTED", + "help": "Ensure the I2C interrupt is IRAM-Safe by allowing the interrupt handler to be\nexecutable when the cache is disabled (e.g. SPI Flash write).\nnote: This cannot be used in the I2C legacy driver.", + "id": "I2C_ISR_IRAM_SAFE", + "name": "I2C_ISR_IRAM_SAFE", + "range": null, + "title": "I2C ISR IRAM-Safe", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_I2C_SUPPORTED", + "help": "whether to enable the debug log message for I2C driver.\nNote that this option only controls the I2C driver log, will not affect other drivers.", + "id": "I2C_ENABLE_DEBUG_LOG", + "name": "I2C_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable I2C debug log", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_I2C_SUPPORTED", + "help": "Place I2C master ISR handler into IRAM for better performance and fewer cache misses.", + "id": "I2C_MASTER_ISR_HANDLER_IN_IRAM", + "name": "I2C_MASTER_ISR_HANDLER_IN_IRAM", + "range": null, + "title": "Place I2C master ISR handler into IRAM", + "type": "bool" + } + ], + "depends_on": "SOC_I2C_SUPPORTED", + "id": "component-config-esp-driver-i2c-configurations-C:-esp-v6.0-esp-idf-components-esp_driver_i2c-Kconfig-1", + "title": "ESP-Driver:I2C Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_I2S_SUPPORTED", + "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).", + "id": "I2S_ISR_IRAM_SAFE", + "name": "I2S_ISR_IRAM_SAFE", + "range": null, + "title": "I2S ISR IRAM-Safe", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_I2S_SUPPORTED", + "help": "Place I2S control functions into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", + "id": "I2S_CTRL_FUNC_IN_IRAM", + "name": "I2S_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place I2S control functions into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_I2S_SUPPORTED", + "help": "whether to enable the debug log message for I2S driver.\nNote that, this option only controls the I2S driver log, will not affect other drivers.", + "id": "I2S_ENABLE_DEBUG_LOG", + "name": "I2S_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable I2S debug log", + "type": "bool" + } + ], + "depends_on": "SOC_I2S_SUPPORTED", + "id": "component-config-esp-driver-i2s-configurations-C:-esp-v6.0-esp-idf-components-esp_driver_i2s-Kconfig-1", + "title": "ESP-Driver:I2S Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "I3C_MASTER_ENABLED", + "name": "I3C_MASTER_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Ensure the I3C interrupt is Cache-Safe by allowing the interrupt handler to be\nexecutable when the cache is disabled (e.g. SPI Flash write).", + "id": "I3C_MASTER_ISR_CACHE_SAFE", + "name": "I3C_MASTER_ISR_CACHE_SAFE", + "range": null, + "title": "I3C ISR Cache-Safe", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "whether to enable the debug log message for I3C driver.\nNote that this option only controls the I3C driver log, will not affect other drivers.", + "id": "I3C_MASTER_ENABLE_DEBUG_LOG", + "name": "I3C_MASTER_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable I3C debug log", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Place I3C master ISR handler into IRAM for better performance and fewer cache misses.", + "id": "I3C_MASTER_ISR_HANDLER_IN_IRAM", + "name": "I3C_MASTER_ISR_HANDLER_IN_IRAM", + "range": null, + "title": "Place I3C master ISR handler into IRAM", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-driver-i3c-master-configurations-C:-esp-v6.0-esp-idf-components-esp_driver_i3c-Kconfig-1", + "title": "ESP-Driver:I3C Master Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_ISP_SUPPORTED", + "help": "Ensure the ISP driver ISR is IRAM-Safe. When enabled, the ISR handler\nwill be available when the cache is disabled.", + "id": "ISP_ISR_IRAM_SAFE", + "name": "ISP_ISR_IRAM_SAFE", + "range": null, + "title": "ISP driver ISR IRAM-Safe", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_ISP_SUPPORTED", + "help": "Place ISP control functions 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\nFunction list:\n- `esp_isp_sharpen_configure`", + "id": "ISP_CTRL_FUNC_IN_IRAM", + "name": "ISP_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place ISP control functions into IRAM", + "type": "bool" + } + ], + "depends_on": "SOC_ISP_SUPPORTED", + "id": "component-config-esp-driver-isp-configurations-C:-esp-v6.0-esp-idf-components-esp_driver_isp-Kconfig-1", + "title": "ESP-Driver:ISP Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_JPEG_CODEC_SUPPORTED", + "help": "whether to enable the debug log message for JPEG driver.\nNote that, this option only controls the JPEG driver log, won't affect other drivers.\nPlease also note, enable this option will make jpeg codec process speed much slower.", + "id": "JPEG_ENABLE_DEBUG_LOG", + "name": "JPEG_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable debug log", + "type": "bool" + } + ], + "depends_on": "SOC_JPEG_CODEC_SUPPORTED", + "id": "component-config-esp-driver-jpeg-codec-configurations-C:-esp-v6.0-esp-idf-components-esp_driver_jpeg-Kconfig-1", + "title": "ESP-Driver:JPEG-Codec Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Place LEDC control functions (ledc_update_duty and ledc_stop) into IRAM,\nso that these functions can be IRAM-safe and able to be called in an IRAM context.\nEnabling this option can improve driver performance as well.", + "id": "LEDC_CTRL_FUNC_IN_IRAM", + "name": "LEDC_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place LEDC control functions into IRAM", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-driver-ledc-configurations-C:-esp-v6.0-esp-idf-components-esp_driver_ledc-Kconfig-1", + "title": "ESP-Driver:LEDC Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_MCPWM_SUPPORTED", + "help": "Place MCPWM ISR handler(s) in IRAM to reduce latency caused by cache miss.", + "id": "MCPWM_ISR_HANDLER_IN_IRAM", + "name": "MCPWM_ISR_HANDLER_IN_IRAM", + "range": null, + "title": "Place MCPWM ISR handler into IRAM to reduce latency", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MCPWM_SUPPORTED", + "help": "Enable this option to allow the MCPWM Interrupt Service Routine (ISR)\nto execute even when the cache is disabled. This can be useful in scenarios where the cache\nmight be turned off, but the MCPWM functionality is still required to operate correctly.", + "id": "MCPWM_ISR_CACHE_SAFE", + "name": "MCPWM_ISR_CACHE_SAFE", + "range": null, + "title": "Allow MCPWM ISR to execute when cache is disabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MCPWM_SUPPORTED", + "help": "Place MCPWM control functions in IRAM, to reduce latency caused by cache miss.\nIf enabled, these functions can also be called when cache is disabled.", + "id": "MCPWM_CTRL_FUNC_IN_IRAM", + "name": "MCPWM_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place MCPWM control functions in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MCPWM_SUPPORTED", + "help": "This will ensure the MCPWM object will not be allocated from a memory region\nwhere its cache can be disabled.", + "id": "MCPWM_OBJ_CACHE_SAFE", + "name": "MCPWM_OBJ_CACHE_SAFE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MCPWM_SUPPORTED", + "help": "If enabled, MCPWM component will:\n1. ignore the global logging settings\n2. compile all log messages into the binary\n3. set the runtime log level to VERBOSE\nPlease enable this option with caution, as it will increase the binary size.", + "id": "MCPWM_ENABLE_DEBUG_LOG", + "name": "MCPWM_ENABLE_DEBUG_LOG", + "range": null, + "title": "Force enable debug log", + "type": "bool" + } + ], + "depends_on": "SOC_MCPWM_SUPPORTED", + "id": "component-config-esp-driver-mcpwm-configurations-C:-esp-v6.0-esp-idf-components-esp_driver_mcpwm-Kconfig-1", + "title": "ESP-Driver:MCPWM Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_PARLIO_SUPPORTED", + "help": "Place Parallel IO TX ISR handler in IRAM to reduce latency caused by cache miss.", + "id": "PARLIO_TX_ISR_HANDLER_IN_IRAM", + "name": "PARLIO_TX_ISR_HANDLER_IN_IRAM", + "range": null, + "title": "Place Parallel IO TX ISR handler in IRAM to reduce latency", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_PARLIO_SUPPORTED", + "help": "Place Parallel IO RX ISR handler in IRAM to reduce latency caused by cache miss.", + "id": "PARLIO_RX_ISR_HANDLER_IN_IRAM", + "name": "PARLIO_RX_ISR_HANDLER_IN_IRAM", + "range": null, + "title": "Place Parallel IO RX ISR handler in IRAM to reduce latency", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_PARLIO_SUPPORTED", + "help": "Enable this option to allow the Parallel IO TX Interrupt Service Routine (ISR)\nto execute even when the cache is disabled. This can be useful in scenarios where the cache\nmight be turned off, but the Parallel IO TX functionality is still required to operate correctly.", + "id": "PARLIO_TX_ISR_CACHE_SAFE", + "name": "PARLIO_TX_ISR_CACHE_SAFE", + "range": null, + "title": "Allow Parallel IO TX ISR to execute when cache is disabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_PARLIO_SUPPORTED", + "help": "Enable this option to allow the Parallel IO RX Interrupt Service Routine (ISR)\nto execute even when the cache is disabled. This can be useful in scenarios where the cache\nmight be turned off, but the Parallel IO RX functionality is still required to operate correctly.", + "id": "PARLIO_RX_ISR_CACHE_SAFE", + "name": "PARLIO_RX_ISR_CACHE_SAFE", + "range": null, + "title": "Allow Parallel IO RX ISR to execute when cache is disabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_PARLIO_SUPPORTED", + "help": "This will ensure the driver object will not be allocated from a memory region\nwhere its cache can be disabled.", + "id": "PARLIO_OBJ_CACHE_SAFE", + "name": "PARLIO_OBJ_CACHE_SAFE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_PARLIO_SUPPORTED", + "help": "If enabled, Parallel IO driver component will:\n1. ignore the global logging settings\n2. compile all log messages into the binary\n3. set the runtime log level to VERBOSE\nPlease enable this option by caution, as it will increase the binary size.", + "id": "PARLIO_ENABLE_DEBUG_LOG", + "name": "PARLIO_ENABLE_DEBUG_LOG", + "range": null, + "title": "Force enable debug log", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_PARLIO_SUPPORTED", + "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).", + "id": "PARLIO_ISR_IRAM_SAFE", + "name": "PARLIO_ISR_IRAM_SAFE", + "range": null, + "title": "Parallel IO ISR IRAM-Safe (Deprecated)", + "type": "bool" + } + ], + "depends_on": "SOC_PARLIO_SUPPORTED", + "id": "component-config-esp-driver-parallel-io-configurations-C:-esp-v6.0-esp-idf-components-esp_driver_parlio-Kconfig-1", + "title": "ESP-Driver:Parallel IO Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_PCNT_SUPPORTED", + "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.", + "id": "PCNT_CTRL_FUNC_IN_IRAM", + "name": "PCNT_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place PCNT control functions into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_PCNT_SUPPORTED", + "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).", + "id": "PCNT_ISR_IRAM_SAFE", + "name": "PCNT_ISR_IRAM_SAFE", + "range": null, + "title": "PCNT ISR IRAM-Safe", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_PCNT_SUPPORTED", + "help": "whether to enable the debug log message for PCNT driver.\nNote that, this option only controls the PCNT driver log, won't affect other drivers.", + "id": "PCNT_ENABLE_DEBUG_LOG", + "name": "PCNT_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable debug log", + "type": "bool" + } + ], + "depends_on": "SOC_PCNT_SUPPORTED", + "id": "component-config-esp-driver-pcnt-configurations-C:-esp-v6.0-esp-idf-components-esp_driver_pcnt-Kconfig-1", + "title": "ESP-Driver:PCNT Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_RMT_SUPPORTED", + "help": "Place RMT encoder function into IRAM for better performance and fewer cache misses.", + "id": "RMT_ENCODER_FUNC_IN_IRAM", + "name": "RMT_ENCODER_FUNC_IN_IRAM", + "range": null, + "title": "Place RMT encoder function in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_RMT_SUPPORTED", + "help": "Place RMT TX ISR handler in IRAM to reduce latency caused by cache miss.", + "id": "RMT_TX_ISR_HANDLER_IN_IRAM", + "name": "RMT_TX_ISR_HANDLER_IN_IRAM", + "range": null, + "title": "Place RMT TX ISR handler in IRAM to reduce latency", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_RMT_SUPPORTED", + "help": "Place RMT RX ISR handler in IRAM to reduce latency caused by cache miss.", + "id": "RMT_RX_ISR_HANDLER_IN_IRAM", + "name": "RMT_RX_ISR_HANDLER_IN_IRAM", + "range": null, + "title": "Place RMT RX ISR handler in IRAM to reduce latency", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_RMT_SUPPORTED", + "help": "Place RMT receive function into IRAM for better performance and fewer cache misses.", + "id": "RMT_RECV_FUNC_IN_IRAM", + "name": "RMT_RECV_FUNC_IN_IRAM", + "range": null, + "title": "Place RMT receive function in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_RMT_SUPPORTED", + "help": "Enable this option to allow the RMT TX Interrupt Service Routine (ISR)\nto execute even when the cache is disabled. This can be useful in scenarios where the cache\nmight be turned off, but the RMT TX functionality is still required to operate correctly.", + "id": "RMT_TX_ISR_CACHE_SAFE", + "name": "RMT_TX_ISR_CACHE_SAFE", + "range": null, + "title": "Allow RMT TX ISR to execute when cache is disabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_RMT_SUPPORTED", + "help": "Enable this option to allow the RMT RX Interrupt Service Routine (ISR)\nto execute even when the cache is disabled. This can be useful in scenarios where the cache\nmight be turned off, but the RMT RX functionality is still required to operate correctly.", + "id": "RMT_RX_ISR_CACHE_SAFE", + "name": "RMT_RX_ISR_CACHE_SAFE", + "range": null, + "title": "Allow RMT RX ISR to execute when cache is disabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_RMT_SUPPORTED", + "help": "This will ensure the RMT object will not be allocated from a memory region\nwhere its cache can be disabled.", + "id": "RMT_OBJ_CACHE_SAFE", + "name": "RMT_OBJ_CACHE_SAFE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_RMT_SUPPORTED", + "help": "If enabled, RMT driver component will:\n1. ignore the global logging settings\n2. compile all log messages into the binary\n3. set the runtime log level to VERBOSE\nPlease enable this option by caution, as it will increase the binary size.", + "id": "RMT_ENABLE_DEBUG_LOG", + "name": "RMT_ENABLE_DEBUG_LOG", + "range": null, + "title": "Force enable debug log", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_RMT_SUPPORTED", + "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).", + "id": "RMT_ISR_IRAM_SAFE", + "name": "RMT_ISR_IRAM_SAFE", + "range": null, + "title": "RMT ISR IRAM-Safe (Deprecated)", + "type": "bool" + } + ], + "depends_on": "SOC_RMT_SUPPORTED", + "id": "component-config-esp-driver-rmt-configurations-C:-esp-v6.0-esp-idf-components-esp_driver_rmt-Kconfig-1", + "title": "ESP-Driver:RMT Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_SDM_SUPPORTED", + "help": "Place SDM control functions (like set_pulse_density) 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.", + "id": "SDM_CTRL_FUNC_IN_IRAM", + "name": "SDM_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place SDM control functions into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_SDM_SUPPORTED", + "help": "This will ensure the SDM object will not be allocated from a memory region\nwhere its cache can be disabled.", + "id": "SDM_OBJ_CACHE_SAFE", + "name": "SDM_OBJ_CACHE_SAFE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_SDM_SUPPORTED", + "help": "If enabled, SDM driver will:\n1. ignore the global logging settings\n2. compile all log messages into the binary\n3. set the runtime log level to VERBOSE\nPlease enable this option by caution, as it will increase the binary size.", + "id": "SDM_ENABLE_DEBUG_LOG", + "name": "SDM_ENABLE_DEBUG_LOG", + "range": null, + "title": "Force enable debug log", + "type": "bool" + } + ], + "depends_on": "SOC_SDM_SUPPORTED", + "id": "component-config-esp-driver-sigma-delta-modulator-configurations-C:-esp-v6.0-esp-idf-components-esp_driver_sdm-Kconfig-1", + "title": "ESP-Driver:Sigma Delta Modulator Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_SDMMC_HOST_SUPPORTED", + "help": "Ensure the SD Host SDMMC driver ISR is Cache-Safe. When enabled,\nthe ISR handler will be available when the cache is disabled.", + "id": "SD_HOST_SDMMC_ISR_CACHE_SAFE", + "name": "SD_HOST_SDMMC_ISR_CACHE_SAFE", + "range": null, + "title": "SD Host ISR Cache-Safe", + "type": "bool" + } + ], + "depends_on": "SOC_SDMMC_HOST_SUPPORTED", + "id": "component-config-esp-driver-sd-host-sdmmc-controller-configurations-C:-esp-v6.0-esp-idf-components-esp_driver_sdmmc-Kconfig-1", + "title": "ESP-Driver:SD Host SDMMC Controller Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "FREERTOS_IN_IRAM && SOC_GPSPI_SUPPORTED", + "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_IN_IRAM` is disabled.\n\nDuring unit test, this is enabled to measure the ideal case of api.", + "id": "SPI_MASTER_IN_IRAM", + "name": "SPI_MASTER_IN_IRAM", + "range": null, + "title": "Place transmitting functions of SPI master into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "!HEAP_PLACE_FUNCTION_INTO_FLASH && SOC_GPSPI_SUPPORTED", + "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.", + "id": "SPI_MASTER_ISR_IN_IRAM", + "name": "SPI_MASTER_ISR_IN_IRAM", + "range": null, + "title": "Place SPI master ISR function into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_GPSPI_SUPPORTED", + "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 is 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.", + "id": "SPI_SLAVE_IN_IRAM", + "name": "SPI_SLAVE_IN_IRAM", + "range": null, + "title": "Place transmitting functions of SPI slave into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_GPSPI_SUPPORTED", + "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.", + "id": "SPI_SLAVE_ISR_IN_IRAM", + "name": "SPI_SLAVE_ISR_IN_IRAM", + "range": null, + "title": "Place SPI slave ISR function into IRAM", + "type": "bool" + } + ], + "depends_on": "SOC_GPSPI_SUPPORTED", + "id": "component-config-esp-driver-spi-configurations-C:-esp-v6.0-esp-idf-components-esp_driver_spi-Kconfig-1", + "title": "ESP-Driver:SPI Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_TOUCH_SENSOR_SUPPORTED", + "help": "Place touch sensor oneshot scanning and continuous scanning functions into IRAM,\nso that these function can be IRAM-safe and able to be called when the flash cache is disabled.\nEnabling this option can improve driver performance as well.", + "id": "TOUCH_CTRL_FUNC_IN_IRAM", + "name": "TOUCH_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place touch sensor control functions into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_TOUCH_SENSOR_SUPPORTED", + "help": "Ensure the touch sensor interrupt is IRAM-Safe by allowing the interrupt handler to be\nexecutable when the cache is disabled (e.g. SPI Flash write).", + "id": "TOUCH_ISR_IRAM_SAFE", + "name": "TOUCH_ISR_IRAM_SAFE", + "range": null, + "title": "Touch sensor ISR IRAM-Safe", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_TOUCH_SENSOR_SUPPORTED", + "help": "Whether to enable the debug log message for touch driver.\nNote that, this option only controls the touch driver log, won't affect other drivers.", + "id": "TOUCH_ENABLE_DEBUG_LOG", + "name": "TOUCH_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable debug log", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_TOUCH_SENSOR_SUPPORTED", + "help": "If skipped the FSM check, the driver will allow to re-configure the touch sensor during the runtime.\nIt is mainly used to tune the parameters in the runtime to find a proper set of touch parameters.\nCAUTION: Not suggest to enable this option in the final product, it might cause false triggering\nwhich is not safe in the actual environment.", + "id": "TOUCH_SKIP_FSM_CHECK", + "name": "TOUCH_SKIP_FSM_CHECK", + "range": null, + "title": "Skip the FSM check", + "type": "bool" + } + ], + "depends_on": "SOC_TOUCH_SENSOR_SUPPORTED", + "id": "component-config-esp-driver-touch-sensor-configurations-C:-esp-v6.0-esp-idf-components-esp_driver_touch_sens-Kconfig-1", + "title": "ESP-Driver:Touch Sensor Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_TEMP_SENSOR_SUPPORTED", + "help": "whether 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.", + "id": "TEMP_SENSOR_ENABLE_DEBUG_LOG", + "name": "TEMP_SENSOR_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable debug log", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_TEMPERATURE_SENSOR_INTR_SUPPORT && SOC_TEMP_SENSOR_SUPPORTED", + "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).", + "id": "TEMP_SENSOR_ISR_IRAM_SAFE", + "name": "TEMP_SENSOR_ISR_IRAM_SAFE", + "range": null, + "title": "Temperature sensor ISR IRAM-Safe", + "type": "bool" + } + ], + "depends_on": "SOC_TEMP_SENSOR_SUPPORTED", + "id": "component-config-esp-driver-temperature-sensor-configurations-C:-esp-v6.0-esp-idf-components-esp_driver_tsens-Kconfig-1", + "title": "ESP-Driver:Temperature Sensor Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_TWAI_SUPPORTED", + "help": "Place the TWAI ISR in to IRAM to reduce latency and increase performance", + "id": "TWAI_ISR_IN_IRAM", + "name": "TWAI_ISR_IN_IRAM", + "range": null, + "title": "Place TWAI ISR function in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_TWAI_SUPPORTED", + "help": "Place certain TWAI I/O functions (like twai_transmit) in IRAM to reduce latency", + "id": "TWAI_IO_FUNC_IN_IRAM", + "name": "TWAI_IO_FUNC_IN_IRAM", + "range": null, + "title": "Place TWAI I/O functions in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_TWAI_SUPPORTED", + "help": "Allow TWAI works under Cache disabled (such as when writing to SPI Flash),\nto enabled this config, all callbacks and user_ctx should also place in IRAM", + "id": "TWAI_ISR_CACHE_SAFE", + "name": "TWAI_ISR_CACHE_SAFE", + "range": null, + "title": "Allow TWAI ISR execute when cache disabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_TWAI_SUPPORTED", + "help": "This will ensure the TWAI driver object will not be allocated from a memory region\nwhere its cache can be disabled.", + "id": "TWAI_OBJ_CACHE_SAFE", + "name": "TWAI_OBJ_CACHE_SAFE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_TWAI_SUPPORTED", + "help": "If enabled, TWAI driver component will:\n1. ignore the global logging settings\n2. compile all log messages into the binary\n3. set the runtime log level to VERBOSE\nPlease enable this option by caution, as it will increase the binary size.", + "id": "TWAI_ENABLE_DEBUG_LOG", + "name": "TWAI_ENABLE_DEBUG_LOG", + "range": null, + "title": "Force enable debug log", + "type": "bool" + } + ], + "depends_on": "SOC_TWAI_SUPPORTED", + "id": "component-config-esp-driver-twai-configurations-C:-esp-v6.0-esp-idf-components-esp_driver_twai-Kconfig-1", + "title": "ESP-Driver:TWAI Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "!RINGBUF_PLACE_ISR_FUNCTIONS_INTO_FLASH", + "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.", + "id": "UART_ISR_IN_IRAM", + "name": "UART_ISR_IN_IRAM", + "range": null, + "title": "Place UART ISR function into IRAM", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-driver-uart-configurations-C:-esp-v6.0-esp-idf-components-esp_driver_uart-Kconfig-1", + "title": "ESP-Driver:UART Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "If this option is not selected, UHCI interrupt will be disabled for a long time and\nmay cause data lost when doing spi flash operation.", + "id": "UHCI_ISR_HANDLER_IN_IRAM", + "name": "UHCI_ISR_HANDLER_IN_IRAM", + "range": null, + "title": "Place UHCI ISR function into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this option to allow the ISR for UHCI to execute even when the cache is disabled.\nThis can be useful in scenarios where the cache might be turned off, but the UHCI\nfunctionality is still required to operate correctly.", + "id": "UHCI_ISR_CACHE_SAFE", + "name": "UHCI_ISR_CACHE_SAFE", + "range": null, + "title": "Allow UHCI ISR to execute when cache is disabled", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "whether to enable the debug log message for UHCI driver.\nNote that, this option only controls the UHCI driver log, won't affect other drivers.", + "id": "UHCI_ENABLE_DEBUG_LOG", + "name": "UHCI_ENABLE_DEBUG_LOG", + "range": null, + "title": "Enable debug log", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-driver-uhci-configurations-C:-esp-v6.0-esp-idf-components-esp_driver_uart-Kconfig-14", + "title": "ESP-Driver:UHCI Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "PM_ENABLE && ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED && !SOC_USB_SERIAL_JTAG_SUPPORT_LIGHT_SLEEP && USJ_ENABLE_USB_SERIAL_JTAG && SOC_USB_SERIAL_JTAG_SUPPORTED", + "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.", + "id": "USJ_NO_AUTO_LS_ON_CONNECTION", + "name": "USJ_NO_AUTO_LS_ON_CONNECTION", + "range": null, + "title": "Don't enter the automatic light sleep when USB Serial/JTAG port is connected", + "type": "bool" + } + ], + "depends_on": "SOC_USB_SERIAL_JTAG_SUPPORTED", + "help": "The USB-Serial-JTAG module on ESP chips is turned on by default after power-on.\nIf your application does not need it and not rely on it to be used as system\nconsole or use the built-in JTAG for debugging, you can disable this option,\nthen the clock of this module will be disabled at startup, which will save\nsome power consumption.\nNote: This will disable USB-Serial-JTAG only in the application; it will still be enabled during\nthe bootloader stage, so you can continue to use it to flash the chip in download mode.\nTo disable it completely, you must burn the EFUSE_DIS_USB_SERIAL_JTAG eFuse.", + "id": "USJ_ENABLE_USB_SERIAL_JTAG", + "name": "USJ_ENABLE_USB_SERIAL_JTAG", + "range": null, + "title": "Enable USB-Serial-JTAG Module", + "type": "bool" + } + ], + "depends_on": "SOC_USB_SERIAL_JTAG_SUPPORTED", + "id": "component-config-esp-driver-usb-serial-jtag-configuration-C:-esp-v6.0-esp-idf-components-esp_driver_usb_serial_jtag-Kconfig-1", + "title": "ESP-Driver:USB Serial/JTAG Configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "ETH_ENABLED", + "name": "ETH_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ETH_USE_ESP32_EMAC", + "help": "Set the size of each buffer used by Ethernet MAC DMA.\n!! Important !! Make sure it is 64B aligned for ESP32P4!", + "id": "ETH_DMA_BUFFER_SIZE", + "name": "ETH_DMA_BUFFER_SIZE", + "range": [ + 256, + 1600 + ], + "title": "Ethernet DMA buffer size (Byte)", + "type": "int" + }, + { + "children": [], + "depends_on": "ETH_USE_ESP32_EMAC", + "help": "Number of DMA receive buffers. Each buffer's size is ETH_DMA_BUFFER_SIZE.\nLarger number of buffers could increase throughput somehow.", + "id": "ETH_DMA_RX_BUFFER_NUM", + "name": "ETH_DMA_RX_BUFFER_NUM", + "range": [ + 3, + 30 + ], + "title": "Amount of Ethernet DMA Rx buffers", + "type": "int" + }, + { + "children": [], + "depends_on": "ETH_USE_ESP32_EMAC", + "help": "Number of DMA transmit buffers. Each buffer's size is ETH_DMA_BUFFER_SIZE.\nLarger number of buffers could increase throughput somehow.", + "id": "ETH_DMA_TX_BUFFER_NUM", + "name": "ETH_DMA_TX_BUFFER_NUM", + "range": [ + 3, + 30 + ], + "title": "Amount of Ethernet DMA Tx buffers", + "type": "int" + }, + { + "children": [], + "depends_on": "ETH_DMA_RX_BUFFER_NUM > 15 && ETH_USE_ESP32_EMAC", + "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.", + "id": "ETH_SOFT_FLOW_CONTROL", + "name": "ETH_SOFT_FLOW_CONTROL", + "range": null, + "title": "Enable software flow control", + "type": "bool" + }, + { + "children": [], + "depends_on": "ETH_USE_ESP32_EMAC", + "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.", + "id": "ETH_IRAM_OPTIMIZATION", + "name": "ETH_IRAM_OPTIMIZATION", + "range": null, + "title": "Enable IRAM optimization", + "type": "bool" + } + ], + "depends_on": "SOC_EMAC_SUPPORTED", + "help": "ESP32 integrates a 10/100M Ethernet MAC controller.", + "id": "ETH_USE_ESP32_EMAC", + "is_menuconfig": true, + "name": "ETH_USE_ESP32_EMAC", + "range": null, + "title": "Support ESP32 internal EMAC controller", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": "ESP-IDF can also support SPI-Ethernet. Actual chip drivers are available as components in\nComponent Registry.", + "id": "ETH_USE_SPI_ETHERNET", + "is_menuconfig": true, + "name": "ETH_USE_SPI_ETHERNET", + "range": null, + "title": "Support SPI to Ethernet Module", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "ETH_USE_OPENETH", + "help": "Number of DMA receive buffers, each buffer is 1600 bytes.", + "id": "ETH_OPENETH_DMA_RX_BUFFER_NUM", + "name": "ETH_OPENETH_DMA_RX_BUFFER_NUM", + "range": null, + "title": "Number of Ethernet DMA Rx buffers", + "type": "int" + }, + { + "children": [], + "depends_on": "ETH_USE_OPENETH", + "help": "Number of DMA transmit buffers, each buffer is 1600 bytes.", + "id": "ETH_OPENETH_DMA_TX_BUFFER_NUM", + "name": "ETH_OPENETH_DMA_TX_BUFFER_NUM", + "range": null, + "title": "Number of Ethernet DMA Tx buffers", + "type": "int" + } + ], + "depends_on": null, + "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.", + "id": "ETH_USE_OPENETH", + "is_menuconfig": true, + "name": "ETH_USE_OPENETH", + "range": null, + "title": "Support OpenCores Ethernet MAC (for use with QEMU)", + "type": "menu" + }, + { + "children": [], + "depends_on": "ETH_ENABLED", + "help": "Prevents multiple accesses when Ethernet interface is used as shared resource and multiple\nfunctionalities might try to access it at a time.", + "id": "ETH_TRANSMIT_MUTEX", + "name": "ETH_TRANSMIT_MUTEX", + "range": null, + "title": "Enable Transmit Mutex", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-ethernet-C:-esp-v6.0-esp-idf-components-esp_eth-Kconfig-1", + "title": "Ethernet", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "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.", + "id": "ESP_EVENT_LOOP_PROFILING", + "name": "ESP_EVENT_LOOP_PROFILING", + "range": null, + "title": "Enable event loop profiling", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_EVENT_POST_FROM_ISR", + "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.", + "id": "ESP_EVENT_POST_FROM_IRAM_ISR", + "name": "ESP_EVENT_POST_FROM_IRAM_ISR", + "range": null, + "title": "Support posting events from ISRs placed in IRAM", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enable posting events from interrupt handlers.", + "id": "ESP_EVENT_POST_FROM_ISR", + "name": "ESP_EVENT_POST_FROM_ISR", + "range": null, + "title": "Support posting events from ISRs", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-event-loop-library-C:-esp-v6.0-esp-idf-components-esp_event-Kconfig-1", + "title": "Event Loop Library", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_GDBSTUB_ENABLED", + "name": "ESP_GDBSTUB_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable builtin GDBStub.\nThis allows to debug the target device using serial port:\n- Run 'idf.py monitor'.\n- Wait for the device to initialize.\n- Press Ctrl+C to interrupt the execution and enter GDB attached to your device for debugging.\nNOTE: all UART input will be handled by GDBStub.", + "id": "ESP_SYSTEM_GDBSTUB_RUNTIME", + "name": "ESP_SYSTEM_GDBSTUB_RUNTIME", + "range": null, + "title": "GDBStub at runtime", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_GDBSTUB_SUPPORT_TASKS", + "help": "Set the number of tasks which GDB Stub will support.", + "id": "ESP_GDBSTUB_MAX_TASKS", + "name": "ESP_GDBSTUB_MAX_TASKS", + "range": null, + "title": "Maximum number of tasks supported by GDB Stub", + "type": "int" + } + ], + "depends_on": "ESP_GDBSTUB_ENABLED", + "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.", + "id": "ESP_GDBSTUB_SUPPORT_TASKS", + "name": "ESP_GDBSTUB_SUPPORT_TASKS", + "range": null, + "title": "Enable listing FreeRTOS tasks through GDB Stub", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-gdb-stub-C:-esp-v6.0-esp-idf-components-esp_gdbstub-Kconfig-1", + "title": "GDB Stub", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "This is the stack size for the BT HID task.\nDefault is 2048 bytes.", + "id": "ESPHID_TASK_SIZE_BT", + "name": "ESPHID_TASK_SIZE_BT", + "range": [ + 2048, + 10240 + ], + "title": "Task stack size for ESP HID BR/EDR", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "This is the stack size for the BLE HID task.\nDefault is 4096 bytes.", + "id": "ESPHID_TASK_SIZE_BLE", + "name": "ESPHID_TASK_SIZE_BLE", + "range": [ + 2048, + 10240 + ], + "title": "Task stack size for ESP HID BLE", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-esp-hid-C:-esp-v6.0-esp-idf-components-esp_hid-Kconfig-1", + "title": "ESP HID", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "This option will enable https protocol by linking esp-tls library and initializing SSL transport", + "id": "ESP_HTTP_CLIENT_ENABLE_HTTPS", + "name": "ESP_HTTP_CLIENT_ENABLE_HTTPS", + "range": null, + "title": "Enable https", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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", + "id": "ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH", + "name": "ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH", + "range": null, + "title": "Enable HTTP Basic Authentication", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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", + "id": "ESP_HTTP_CLIENT_ENABLE_DIGEST_AUTH", + "name": "ESP_HTTP_CLIENT_ENABLE_DIGEST_AUTH", + "range": null, + "title": "Enable HTTP Digest Authentication", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This option will enable injection of a custom tcp_transport handle, so the http operation\nwill be performed on top of the user defined transport abstraction (if configured)", + "id": "ESP_HTTP_CLIENT_ENABLE_CUSTOM_TRANSPORT", + "name": "ESP_HTTP_CLIENT_ENABLE_CUSTOM_TRANSPORT", + "range": null, + "title": "Enable custom transport", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This enables use of content range header in esp_http_client component.", + "id": "ESP_HTTP_CLIENT_ENABLE_GET_CONTENT_RANGE", + "name": "ESP_HTTP_CLIENT_ENABLE_GET_CONTENT_RANGE", + "range": null, + "title": "Enable content range functionality", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This config option helps in setting the time in millisecond to wait for event to be posted to the\nsystem default event loop. Set it to -1 if you need to set timeout to portMAX_DELAY.", + "id": "ESP_HTTP_CLIENT_EVENT_POST_TIMEOUT", + "name": "ESP_HTTP_CLIENT_EVENT_POST_TIMEOUT", + "range": null, + "title": "Time in millisecond to wait for posting event", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-esp-http-client-C:-esp-v6.0-esp-idf-components-esp_http_client-Kconfig-1", + "title": "ESP HTTP client", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "This sets the default limit for the HTTP request header length. The limit can be\nconfigured at run time by setting max_req_hdr_len member of httpd_config_t structure.\nThe memory allocated will depend on the actual header length. Hence keeping a sufficiently\nlarge max header length is recommended.", + "id": "HTTPD_MAX_REQ_HDR_LEN", + "name": "HTTPD_MAX_REQ_HDR_LEN", + "range": [ + 128, + 65536 + ], + "title": "HTTP Request Header Length limit", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "This sets the maximum supported size of HTTP request URI to be processed by the server", + "id": "HTTPD_MAX_URI_LEN", + "name": "HTTPD_MAX_URI_LEN", + "range": null, + "title": "Max HTTP URI Length", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "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", + "id": "HTTPD_ERR_RESP_NO_DELAY", + "name": "HTTPD_ERR_RESP_NO_DELAY", + "range": null, + "title": "Use TCP_NODELAY socket option when sending HTTP error responses", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "HTTPD_PURGE_BUF_LEN", + "name": "HTTPD_PURGE_BUF_LEN", + "range": null, + "title": "Length of temporary buffer for purging data", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "HTTPD_LOG_PURGE_DATA", + "name": "HTTPD_LOG_PURGE_DATA", + "range": null, + "title": "Log purged content data at Debug level", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This sets the WebSocket server support.", + "id": "HTTPD_WS_SUPPORT", + "name": "HTTPD_WS_SUPPORT", + "range": null, + "title": "WebSocket server support", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "HTTPD_QUEUE_WORK_BLOCKING", + "name": "HTTPD_QUEUE_WORK_BLOCKING", + "range": null, + "title": "httpd_queue_work as blocking API", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This config option helps in setting the time in millisecond to wait for event to be posted to the\nsystem default event loop. Set it to -1 if you need to set timeout to portMAX_DELAY.", + "id": "HTTPD_SERVER_EVENT_POST_TIMEOUT", + "name": "HTTPD_SERVER_EVENT_POST_TIMEOUT", + "range": null, + "title": "Time in millisecond to wait for posting event", + "type": "int" + }, + { + "children": [], + "depends_on": "HTTPD_WS_SUPPORT", + "help": "Enable this option to use WebSocket pre-handshake callback. This will allow the server to register\na callback function that will be called before the WebSocket handshake is processed i.e. before switching\nto the WebSocket protocol.", + "id": "HTTPD_WS_PRE_HANDSHAKE_CB_SUPPORT", + "name": "HTTPD_WS_PRE_HANDSHAKE_CB_SUPPORT", + "range": null, + "title": "WebSocket pre-handshake callback support", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-http-server-C:-esp-v6.0-esp-idf-components-esp_http_server-Kconfig-1", + "title": "HTTP Server", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "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.", + "id": "ESP_HTTPS_OTA_DECRYPT_CB", + "name": "ESP_HTTPS_OTA_DECRYPT_CB", + "range": null, + "title": "Provide decryption callback", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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", + "id": "ESP_HTTPS_OTA_ALLOW_HTTP", + "name": "ESP_HTTPS_OTA_ALLOW_HTTP", + "range": null, + "title": "Allow HTTP for OTA (WARNING: ONLY FOR TESTING PURPOSE, READ HELP)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This config option helps in setting the time in millisecond to wait for event to be posted to the\nsystem default event loop. Set it to -1 if you need to set timeout to portMAX_DELAY.", + "id": "ESP_HTTPS_OTA_EVENT_POST_TIMEOUT", + "name": "ESP_HTTPS_OTA_EVENT_POST_TIMEOUT", + "range": null, + "title": "Time in millisecond to wait for posting event", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "This enables use of range header in esp_https_ota component.\nThe firmware image will be downloaded over multiple HTTP requests.", + "id": "ESP_HTTPS_OTA_ENABLE_PARTIAL_DOWNLOAD", + "name": "ESP_HTTPS_OTA_ENABLE_PARTIAL_DOWNLOAD", + "range": null, + "title": "Enable partial HTTP download for OTA", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-https-ota-C:-esp-v6.0-esp-idf-components-esp_https_ota-Kconfig-1", + "title": "ESP HTTPS OTA", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_TLS_USING_MBEDTLS && MBEDTLS_TLS_SERVER", + "help": "Enable ESP HTTPS server component", + "id": "ESP_HTTPS_SERVER_ENABLE", + "name": "ESP_HTTPS_SERVER_ENABLE", + "range": null, + "title": "Enable ESP_HTTPS_SERVER component", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This config option helps in setting the time in millisecond to wait for event to be posted to the\nsystem default event loop. Set it to -1 if you need to set timeout to portMAX_DELAY.", + "id": "ESP_HTTPS_SERVER_EVENT_POST_TIMEOUT", + "name": "ESP_HTTPS_SERVER_EVENT_POST_TIMEOUT", + "range": null, + "title": "Time in millisecond to wait for posting event", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Enable certificate selection hook for ESP HTTPS Server. When enabled, this allows the server to\ndynamically select the appropriate certificate based on the client's Server Name Indication (SNI).\nThis is useful for hosting multiple domains on a single server with different SSL certificates.", + "id": "ESP_HTTPS_SERVER_CERT_SELECT_HOOK", + "name": "ESP_HTTPS_SERVER_CERT_SELECT_HOOK", + "range": null, + "title": "Enable certificate selection hook", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-https-server-C:-esp-v6.0-esp-idf-components-esp_https_server-Kconfig-1", + "title": "ESP HTTPS server", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_HW_SUPPORT_FUNC_IN_IRAM", + "name": "ESP_HW_SUPPORT_FUNC_IN_IRAM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_REV_MIN_0", + "name": "ESP32_REV_MIN_0", + "range": null, + "title": "Rev v0.0 (ECO0)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_REV_MIN_1", + "name": "ESP32_REV_MIN_1", + "range": null, + "title": "Rev v1.0 (ECO1)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_REV_MIN_1_1", + "name": "ESP32_REV_MIN_1_1", + "range": null, + "title": "Rev v1.1 (ECO1.1)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_REV_MIN_2", + "name": "ESP32_REV_MIN_2", + "range": null, + "title": "Rev v2.0 (ECO2)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_REV_MIN_3", + "name": "ESP32_REV_MIN_3", + "range": null, + "title": "Rev v3.0 (ECO3)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_REV_MIN_3_1", + "name": "ESP32_REV_MIN_3_1", + "range": null, + "title": "Rev v3.1 (ECO4)", + "type": "bool" + } + ], + "depends_on": null, + "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.", + "id": "component-config-hardware-settings-chip-revision-minimum-supported-esp32-revision-C:-esp-v6.0-esp-idf-components-esp_hw_support-.-port-esp32-Kconfig.hw_support-1", + "name": "ESP32_REV_MIN", + "title": "Minimum Supported ESP32 Revision", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_REV_MIN", + "name": "ESP32_REV_MIN", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_REV_MIN_FULL", + "name": "ESP32_REV_MIN_FULL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_REV_MIN_FULL", + "name": "ESP_REV_MIN_FULL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_REV_MAX_FULL", + "name": "ESP32_REV_MAX_FULL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_REV_MAX_FULL", + "name": "ESP_REV_MAX_FULL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Required minimum eFuse Block revision. ESP-IDF will check it at the 2nd bootloader stage\nwhether the current image can work correctly for this eFuse Block revision.\nSo that to avoid running an incompatible image on a SoC that contains breaking change in the eFuse Block.\nIf you want to update this value to run the image that not compatible with the current eFuse Block revision,\nplease contact to Espressif's business team for details:\nhttps://www.espressif.com.cn/en/contact-us/sales-questions", + "id": "ESP_EFUSE_BLOCK_REV_MIN_FULL", + "name": "ESP_EFUSE_BLOCK_REV_MIN_FULL", + "range": null, + "title": "Minimum Supported ESP32 eFuse Block Revision", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_EFUSE_BLOCK_REV_MAX_FULL", + "name": "ESP_EFUSE_BLOCK_REV_MAX_FULL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "IDF_CI_BUILD", + "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.", + "id": "ESP_REV_NEW_CHIP_TEST", + "name": "ESP_REV_NEW_CHIP_TEST", + "range": null, + "title": "Internal test mode", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-chip-revision-C:-esp-v6.0-esp-idf-components-esp_hw_support-Kconfig-12", + "title": "Chip revision", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_ADDR_UNIVERSE_WIFI_STA", + "name": "ESP_MAC_ADDR_UNIVERSE_WIFI_STA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_ADDR_UNIVERSE_WIFI_AP", + "name": "ESP_MAC_ADDR_UNIVERSE_WIFI_AP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_ADDR_UNIVERSE_BT", + "name": "ESP_MAC_ADDR_UNIVERSE_BT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_ADDR_UNIVERSE_ETH", + "name": "ESP_MAC_ADDR_UNIVERSE_ETH", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_ADDR_UNIVERSE_IEEE802154", + "name": "ESP_MAC_ADDR_UNIVERSE_IEEE802154", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_ONE", + "name": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_ONE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_TWO", + "name": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_TWO", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR", + "name": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES", + "name": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_UNIVERSAL_MAC_ADDRESSES_TWO", + "name": "ESP32_UNIVERSAL_MAC_ADDRESSES_TWO", + "range": null, + "title": "Two", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR", + "name": "ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR", + "range": null, + "title": "Four", + "type": "bool" + } + ], + "depends_on": null, + "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.)", + "id": "component-config-hardware-settings-mac-config-number-of-universally-administered-by-ieee-mac-address-C:-esp-v6.0-esp-idf-components-esp_hw_support-.-port-esp32-Kconfig.mac-1", + "name": "ESP32_UNIVERSAL_MAC_ADDRESSES", + "title": "Number of universally administered (by IEEE) MAC address", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_UNIVERSAL_MAC_ADDRESSES", + "name": "ESP32_UNIVERSAL_MAC_ADDRESSES", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32", + "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.", + "id": "ESP_MAC_IGNORE_MAC_CRC_ERROR", + "name": "ESP_MAC_IGNORE_MAC_CRC_ERROR", + "range": null, + "title": "Ignore MAC CRC error (not recommended)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "When this configuration is enabled, the user can invoke `esp_read_mac` to obtain the desired type of\nMAC using a custom MAC as the base MAC.", + "id": "ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC", + "name": "ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC", + "range": null, + "title": "Enable using custom mac as base mac", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-mac-config-C:-esp-v6.0-esp-idf-components-esp_hw_support-Kconfig-26", + "title": "MAC Config", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "(!SPIRAM || ESP_LDO_RESERVE_PSRAM) && !(IDF_TARGET_ESP32P4 && ESP32P4_REV_MIN_FULL < 100)", + "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.", + "id": "ESP_SLEEP_POWER_DOWN_FLASH", + "name": "ESP_SLEEP_POWER_DOWN_FLASH", + "range": null, + "title": "Power down flash in light sleep when there is no SPIRAM or SPIRAM has independent power supply", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "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.)", + "id": "ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND", + "name": "ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND", + "range": null, + "title": "Pull-up Flash CS pin in light sleep", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM", + "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.)", + "id": "ESP_SLEEP_PSRAM_LEAKAGE_WORKAROUND", + "name": "ESP_SLEEP_PSRAM_LEAKAGE_WORKAROUND", + "range": null, + "title": "Pull-up PSRAM CS pin in light sleep", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_SLEEP_PSRAM_LEAKAGE_WORKAROUND || ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND", + "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.", + "id": "ESP_SLEEP_MSPI_NEED_ALL_IO_PU", + "name": "ESP_SLEEP_MSPI_NEED_ALL_IO_PU", + "range": null, + "title": "Pull-up all SPI pins in light sleep", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_SLEEP_RTC_BUS_ISO_WORKAROUND", + "name": "ESP_SLEEP_RTC_BUS_ISO_WORKAROUND", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "All existing chips except esp32 and esp32s2 will reset on wake-up if a GPIO receives\na small electrostatic pulse during light sleep, with specific conditions.\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.", + "id": "ESP_SLEEP_GPIO_RESET_WORKAROUND", + "name": "ESP_SLEEP_GPIO_RESET_WORKAROUND", + "range": null, + "title": "light sleep GPIO reset workaround", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "When the chip exits sleep, the CPU and the flash chip are powered on at the same time.\nCPU will run rom code (deepsleep) or ram code (lightsleep) first, and then load or execute\ncode from flash.\n\nSome flash chips need sufficient time to pass between power on and first read operation.\nBy default, without any extra delay, this time is approximately 900us, although\nsome flash chip types need more than that.\n\n(!!! Please adjust this value according to the Data Sheet of SPI Flash used in your project.)\nIn Flash Data Sheet, the parameters that define the Flash ready timing after power-up (minimum\ntime from Vcc(min) to CS active) are usually named tVSL in ELECTRICAL CHARACTERISTICS chapter,\nand the configuration value here should be:\nESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY = tVSL - 900\n\nFor esp32 and esp32s3, the 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 console after deep sleep reset\non esp32, or triggered RTC_WDT/LP_WDT after lightsleep wakeup, try increasing this value.\n(For esp32, the delay will be executed in both deep sleep and light sleep wake up flow.\nFor chips after esp32, the delay will be executed only in light sleep flow, the delay\ncontrolled by the EFUSE_FLASH_TPUW in ROM will be executed in deepsleep wake up flow.)", + "id": "ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY", + "name": "ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY", + "range": [ + 0, + 5000 + ], + "title": "Extra delay (in us) after flash powerdown sleep wakeup to wait flash ready", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Enabling it will check the cache safety of the code before the flash power is ready after\nlight sleep wakeup, and check PM_SLP_IRAM_OPT related code cache safety. This option is\nonly for code quality inspection. Enabling it will increase the time overhead of entering\nand exiting sleep. It is not recommended to enable it in the release version.", + "id": "ESP_SLEEP_CACHE_SAFE_ASSERTION", + "name": "ESP_SLEEP_CACHE_SAFE_ASSERTION", + "range": null, + "title": "Check the cache safety of the sleep wakeup code in sleep process", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable esp sleep debug.", + "id": "ESP_SLEEP_DEBUG", + "name": "ESP_SLEEP_DEBUG", + "range": null, + "title": "esp sleep debug", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "When using rtc gpio wakeup source during deepsleep without external pull-up/downs, you may want to\nmake use of the internal ones.", + "id": "ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS", + "name": "ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS", + "range": null, + "title": "Allow to enable internal pull-up/downs for the Deep-Sleep wakeup IOs", + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_USE_TICKLESS_IDLE", + "help": "If enabled, it allows user to register sleep event callbacks. It is primarily designed for internal\ndevelopers and customers can use PM_LIGHT_SLEEP_CALLBACKS as an alternative.\n\nNOTE: These callbacks are executed from the IDLE task context hence you cannot have any blocking calls\nin your callbacks.\n\nNOTE: Enabling these callbacks may change sleep duration calculations based on time spent in\ncallback and hence it is highly recommended to keep them as short as possible.", + "id": "ESP_SLEEP_EVENT_CALLBACKS", + "name": "ESP_SLEEP_EVENT_CALLBACKS", + "range": null, + "title": "Enable registration of sleep event callbacks", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-sleep-config-C:-esp-v6.0-esp-idf-components-esp_hw_support-Kconfig-77", + "title": "Sleep Config", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "RTC_CLK_SRC_INT_RC", + "name": "RTC_CLK_SRC_INT_RC", + "range": null, + "title": "Internal 150 kHz RC oscillator", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "RTC_CLK_SRC_EXT_CRYS", + "name": "RTC_CLK_SRC_EXT_CRYS", + "range": null, + "title": "External 32kHz crystal", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "RTC_CLK_SRC_EXT_OSC", + "name": "RTC_CLK_SRC_EXT_OSC", + "range": null, + "title": "External 32kHz oscillator at 32K_XN pin", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "RTC_CLK_SRC_INT_8MD256", + "name": "RTC_CLK_SRC_INT_8MD256", + "range": null, + "title": "Internal 8.5MHz oscillator, divided by 256 (~33kHz)", + "type": "bool" + } + ], + "depends_on": null, + "help": "Choose which clock is used as RTC clock source.\n\n- \"Internal 150kHz oscillator\" option provides lowest deep sleep current\n consumption, and does not require extra external components. However\n frequency stability with respect to temperature is poor, so time may\n drift in deep/light sleep modes.\n- \"External 32kHz crystal\" provides better frequency stability, at the\n expense of slightly higher (1uA) deep sleep current consumption.\n- \"External 32kHz oscillator\" allows using 32kHz clock generated by an\n external circuit. In this case, external clock signal must be connected\n to 32K_XN pin.\n Additionally, 1nF capacitor must be connected between 32K_XP pin and\n ground. 32K_XP pin can not be used as a GPIO in this case.\n- \"Internal 8.5MHz oscillator divided by 256\" option results in higher\n deep sleep current (by 5uA) but has better frequency stability than\n the internal 150kHz oscillator. It does not require external components.", + "id": "component-config-hardware-settings-rtc-clock-config-rtc-clock-source-C:-esp-v6.0-esp-idf-components-esp_hw_support-.-port-esp32-Kconfig.rtc-1", + "name": "RTC_CLK_SRC", + "title": "RTC clock source", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "RTC_EXT_CRYST_ADDIT_CURRENT_NONE", + "name": "RTC_EXT_CRYST_ADDIT_CURRENT_NONE", + "range": null, + "title": "None", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "RTC_EXT_CRYST_ADDIT_CURRENT", + "name": "RTC_EXT_CRYST_ADDIT_CURRENT", + "range": null, + "title": "Method 1", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "RTC_EXT_CRYST_ADDIT_CURRENT_V2", + "name": "RTC_EXT_CRYST_ADDIT_CURRENT_V2", + "range": null, + "title": "Method 2", + "type": "bool" + } + ], + "depends_on": "RTC_CLK_SRC_EXT_CRYS && ESP32_REV_MIN_FULL < 200", + "help": "With some 32kHz crystal configurations, the X32N and X32P pins may not have enough\ndrive strength to keep the crystal oscillating. Choose the method to provide\nadditional current from touchpad 9 to the external 32kHz crystal. Note that\nthe deep sleep current is slightly high (4-5uA) and the touchpad and the\nwakeup sources of both touchpad and ULP are not available in method 1 and method 2.\n\nThis problem is fixed in ESP32 ECO 3, so this workaround is not needed. Setting the\nproject configuration to minimum revision ECO3 will disable this option, , allow\nall wakeup sources, and save some code size.\n\n- \"None\" option will not provide additional current to external crystal\n- \"Method 1\" option can't ensure 100% to solve the external 32k crystal start failed\n issue, but the touchpad can work in this method.\n- \"Method 2\" option can solve the external 32k issue, but the touchpad can't work\n in this method.", + "id": "component-config-hardware-settings-rtc-clock-config-additional-current-for-external-32khz-crystal-C:-esp-v6.0-esp-idf-components-esp_hw_support-.-port-esp32-Kconfig.rtc-34", + "name": "RTC_EXT_CRYST_ADDIT_CURRENT_METHOD", + "title": "Additional current for external 32kHz crystal", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "RTC_CLK_CAL_CYCLES", + "name": "RTC_CLK_CAL_CYCLES", + "range": [ + 0, + 32766 + ], + "title": "Number of cycles for RTC_SLOW_CLK calibration", + "type": "int" + }, + { + "children": [], + "depends_on": "RTC_CLK_SRC_EXT_CRYS", + "help": "Number of attempts to repeat 32k XTAL calibration\nbefore giving up and switching to the internal RC.\nIncrease this option if the 32k crystal oscillator\ndoes not start and switches to internal RC.", + "id": "RTC_XTAL_CAL_RETRY", + "name": "RTC_XTAL_CAL_RETRY", + "range": null, + "title": "Number of attempts to repeat 32k XTAL calibration", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Place RTC clock module (all rtc clock functions and const data) into IRAM.", + "id": "RTC_CLK_FUNC_IN_IRAM", + "name": "RTC_CLK_FUNC_IN_IRAM", + "range": null, + "title": "Place RTC clock module functions into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Place RTC time module (all rtc clock functions) into IRAM.", + "id": "RTC_TIME_FUNC_IN_IRAM", + "name": "RTC_TIME_FUNC_IN_IRAM", + "range": null, + "title": "Place RTC time module functions into IRAM", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-rtc-clock-config-C:-esp-v6.0-esp-idf-components-esp_hw_support-Kconfig-228", + "title": "RTC Clock Config", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "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.", + "id": "ESP_PERIPH_CTRL_FUNC_IN_IRAM", + "name": "ESP_PERIPH_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place peripheral control functions into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Place analog i2c master control functions (e.g. regi2c_ctrl_read_reg, regi2c_ctrl_write_reg) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", + "id": "ESP_REGI2C_CTRL_FUNC_IN_IRAM", + "name": "ESP_REGI2C_CTRL_FUNC_IN_IRAM", + "range": null, + "title": "Place regi2c control functions into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MODEM_CLOCK_SUPPORTED", + "help": "If enabled, this option will perform additional checks on modem clock configuration\nto ensure proper operation and detect potential configuration issues.", + "id": "ESP_MODEM_CLOCK_ENABLE_CHECKING", + "name": "ESP_MODEM_CLOCK_ENABLE_CHECKING", + "range": null, + "title": "Enable modem clock configuration checking", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-peripheral-control-C:-esp-v6.0-esp-idf-components-esp_hw_support-Kconfig-244", + "title": "Peripheral Control", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_ETM_SUPPORTED", + "help": "If enabled, ETM driver will:\n1. ignore the global logging settings\n2. compile all log messages into the binary\n3. set the runtime log level to VERBOSE\nPlease enable this option by caution, as it will increase the binary size.", + "id": "ETM_ENABLE_DEBUG_LOG", + "name": "ETM_ENABLE_DEBUG_LOG", + "range": null, + "title": "Force enable debug log", + "type": "bool" + } + ], + "depends_on": "SOC_ETM_SUPPORTED", + "id": "component-config-hardware-settings-event-task-matrix-etm-configurations-C:-esp-v6.0-esp-idf-components-esp_hw_support-.-etm-Kconfig.etm-1", + "title": "Event Task Matrix (ETM) Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "XTAL_FREQ_26", + "name": "XTAL_FREQ_26", + "range": null, + "title": "26 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "XTAL_FREQ_32", + "name": "XTAL_FREQ_32", + "range": null, + "title": "32 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "XTAL_FREQ_40", + "name": "XTAL_FREQ_40", + "range": null, + "title": "40 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "XTAL_FREQ_AUTO", + "name": "XTAL_FREQ_AUTO", + "range": null, + "title": "Autodetect", + "type": "bool" + } + ], + "depends_on": null, + "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: On ESP32, the XTAL_FREQ_AUTO option allows the ESP target to automatically estimating XTAL clock's\noperating frequency. The ESP32 uses the internal 8MHZ as a reference when estimating. Due to the internal\noscillator's frequency being temperature dependent, usage of the XTAL_FREQ_AUTO is not recommended in\napplications that operate in high ambient temperatures or use high-temperature qualified chips and modules.", + "id": "component-config-hardware-settings-main-xtal-config-main-xtal-frequency-C:-esp-v6.0-esp-idf-components-esp_hw_support-.-port-esp32-Kconfig.xtal-1", + "name": "XTAL_FREQ", + "title": "Main XTAL frequency", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "XTAL_FREQ", + "name": "XTAL_FREQ", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-main-xtal-config-C:-esp-v6.0-esp-idf-components-esp_hw_support-Kconfig-270", + "title": "Main XTAL Config", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_0", + "name": "ESP_BROWNOUT_DET_LVL_SEL_0", + "range": null, + "title": "2.43V +/- 0.05", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_1", + "name": "ESP_BROWNOUT_DET_LVL_SEL_1", + "range": null, + "title": "2.48V +/- 0.05", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_2", + "name": "ESP_BROWNOUT_DET_LVL_SEL_2", + "range": null, + "title": "2.58V +/- 0.05", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_3", + "name": "ESP_BROWNOUT_DET_LVL_SEL_3", + "range": null, + "title": "2.62V +/- 0.05", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_4", + "name": "ESP_BROWNOUT_DET_LVL_SEL_4", + "range": null, + "title": "2.67V +/- 0.05", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_5", + "name": "ESP_BROWNOUT_DET_LVL_SEL_5", + "range": null, + "title": "2.70V +/- 0.05", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_6", + "name": "ESP_BROWNOUT_DET_LVL_SEL_6", + "range": null, + "title": "2.77V +/- 0.05", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_BROWNOUT_DET_LVL_SEL_7", + "name": "ESP_BROWNOUT_DET_LVL_SEL_7", + "range": null, + "title": "2.80V +/- 0.05", + "type": "bool" + } + ], + "depends_on": "ESP_BROWNOUT_DET", + "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 ESP 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.", + "id": "component-config-hardware-settings-power-supplier-brownout-detector-hardware-brownout-detect-reset-brownout-voltage-level-C:-esp-v6.0-esp-idf-components-esp_hw_support-.-power_supply-port-esp32-Kconfig.power-14", + "name": "ESP_BROWNOUT_DET_LVL_SEL", + "title": "Brownout voltage level", + "type": "choice" + } + ], + "depends_on": "!IDF_ENV_FPGA", + "help": "The ESP 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.", + "id": "ESP_BROWNOUT_DET", + "name": "ESP_BROWNOUT_DET", + "range": null, + "title": "Hardware brownout detect & reset", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_BROWNOUT_DET_LVL", + "name": "ESP_BROWNOUT_DET_LVL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "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 RES-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.", + "id": "ESP_BROWNOUT_USE_INTR", + "name": "ESP_BROWNOUT_USE_INTR", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-power-supplier-brownout-detector-C:-esp-v6.0-esp-idf-components-esp_hw_support-.-power_supply-port-esp32-Kconfig.power-3", + "title": "Brownout Detector", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-power-supplier-C:-esp-v6.0-esp-idf-components-esp_hw_support-.-power_supply-port-esp32-Kconfig.power-1", + "title": "Power Supplier", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": "This option is only used for new chip bringup, when\nclock support isn't done yet. So with this option,\nwe use xtal on FPGA as the clock source.", + "id": "ESP_BRINGUP_BYPASS_CPU_CLK_SETTING", + "name": "ESP_BRINGUP_BYPASS_CPU_CLK_SETTING", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This option is only used for new chip bringup, when\nRNG isn't done yet. So with this option, we use 0x5A\nto fill the random buffers", + "id": "ESP_BRINGUP_BYPASS_RANDOM_SETTING", + "name": "ESP_BRINGUP_BYPASS_RANDOM_SETTING", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM", + "name": "ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_SPI_BUS_LOCK_FUNCS_IN_IRAM", + "name": "ESP_SPI_BUS_LOCK_FUNCS_IN_IRAM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Due to the poor low-temperature characteristics of\nRC32K (it cannot operate below -40 degrees Celsius),\nplease avoid using it whenever possible", + "id": "ESP_CLK_RC32K_NOT_TO_USE", + "name": "ESP_CLK_RC32K_NOT_TO_USE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_PMU_PVT_SUPPORTED", + "help": "If enabled, hp & lp voltage can be auto adjust by PVT characteristic.\nOtherwise, internal voltage will be set to fix dbias.\nThis is a must for stable mass production. Disable for debugging only.", + "id": "ESP_ENABLE_PVT", + "name": "ESP_ENABLE_PVT", + "range": null, + "title": "Auto adjust hp & lp voltage using pvt function (MUST ENABLE FOR MP)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_INTR_IN_IRAM", + "name": "ESP_INTR_IN_IRAM", + "range": null, + "title": "Place esp_intr_alloc functions in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32P4", + "help": null, + "id": "P4_REV3_MSPI_CRASH_AFTER_POWER_UP_WORKAROUND", + "name": "P4_REV3_MSPI_CRASH_AFTER_POWER_UP_WORKAROUND", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32P4", + "help": null, + "id": "P4_REV3_MSPI_WORKAROUND_SIZE", + "name": "P4_REV3_MSPI_WORKAROUND_SIZE", + "range": null, + "title": null, + "type": "hex" + } + ], + "depends_on": null, + "id": "component-config-hardware-settings-C:-esp-v6.0-esp-idf-components-esp_hw_support-Kconfig-1", + "title": "Hardware Settings", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_LCD_RGB_SUPPORTED", + "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.", + "id": "LCD_RGB_ISR_IRAM_SAFE", + "name": "LCD_RGB_ISR_IRAM_SAFE", + "range": null, + "title": "RGB LCD ISR IRAM-Safe", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_LCD_RGB_SUPPORTED", + "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.", + "id": "LCD_RGB_RESTART_IN_VSYNC", + "name": "LCD_RGB_RESTART_IN_VSYNC", + "range": null, + "title": "Always restart RGB LCD transmission in VSYNC", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MIPI_DSI_SUPPORTED", + "help": "Place DSI ISR handler in IRAM to reduce latency caused by cache miss.", + "id": "LCD_DSI_ISR_HANDLER_IN_IRAM", + "name": "LCD_DSI_ISR_HANDLER_IN_IRAM", + "range": null, + "title": "Place DSI ISR handler in IRAM to reduce latency", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MIPI_DSI_SUPPORTED", + "help": "Enable this option to allow the DSI Interrupt Service Routine (ISR)\nto execute even when the cache is disabled. This can be useful in scenarios where the cache\nmight be turned off, but the DSI functionality is still required to operate correctly.", + "id": "LCD_DSI_ISR_CACHE_SAFE", + "name": "LCD_DSI_ISR_CACHE_SAFE", + "range": null, + "title": "Allow DSI ISR to execute when cache is disabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_MIPI_DSI_SUPPORTED", + "help": "This will ensure the DSI driver object will always be allocated in internal RAM.", + "id": "LCD_DSI_OBJ_FORCE_INTERNAL", + "name": "LCD_DSI_OBJ_FORCE_INTERNAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If enabled, LCD driver component will:\n1. ignore the global logging settings\n2. compile all log messages into the binary\n3. set the runtime log level to VERBOSE\nPlease enable this option by caution, as it will increase the binary size.", + "id": "LCD_ENABLE_DEBUG_LOG", + "name": "LCD_ENABLE_DEBUG_LOG", + "range": null, + "title": "Force enable debug log", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-driver-lcd-controller-configurations-C:-esp-v6.0-esp-idf-components-esp_lcd-Kconfig-1", + "title": "ESP-Driver:LCD Controller Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LIBC_NEWLIB", + "name": "LIBC_NEWLIB", + "range": null, + "title": "NewLib", + "type": "bool" + }, + { + "children": [], + "depends_on": "!IDF_TOOLCHAIN_CLANG && ", + "help": null, + "id": "LIBC_PICOLIBC", + "name": "LIBC_PICOLIBC", + "range": null, + "title": "Picolibc", + "type": "bool" + } + ], + "depends_on": null, + "help": null, + "id": "component-config-libc-libc-to-build-application-with-C:-esp-v6.0-esp-idf-components-esp_libc-Kconfig-3", + "name": "LIBC", + "title": "LibC to build application with", + "type": "choice" + }, + { + "children": [], + "depends_on": "LIBC_PICOLIBC", + "help": "This option provides limited compatibility with libraries built using Newlib headers by:\n\nEnabling hidden system-header inclusions that exist in Newlib.\nAdding tls_stdio, tls_stdout, and tls_stderr variables to Thread Local Storage\nto allow prebuilt libraries to access them via getreent().\nProviding an implementation of getreent() that returns the value of the thread-pointer register.\n\nLimitations:\n\n1. If your application or an external prebuilt library accesses Newlib \"struct _reent\" implicitly,\nthis may cause memory corruption on the task stack. You have two options:\n\n- Use libc API calls instead of directly accessing \"struct _reent\" fields.\n- Switch ESP-IDF to use the Newlib implementation by setting CONFIG_LIBC_NEWLIB=y in sdkconfig.\n\n2. If your application uses a prebuilt library built with Newlib headers, you may encounter\nunexpected behavior when overriding stdin, stdout, and stderr. External prebuilt libraries\ncan only read these streams, so overriding them will not affect as it was for Newlib.\nYou have two options to fix this:\n\n- Rebuild the library with Picolibc headers that follow POSIX-standardized stdin, stdout,\n and stderr declarations.\n- Switch ESP-IDF to use the Newlib implementation by setting CONFIG_LIBC_NEWLIB=y in sdkconfig.", + "id": "LIBC_PICOLIBC_NEWLIB_COMPATIBILITY", + "name": "LIBC_PICOLIBC_NEWLIB_COMPATIBILITY", + "range": null, + "title": "Provides limited interoperability with libraries built using Newlib headers", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LIBC_MISC_IN_IRAM", + "name": "LIBC_MISC_IN_IRAM", + "range": null, + "title": "Place misc libc functions (abort/assert/stdatomics) in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this option to include be able to call the lock API from\ncode that runs while cache is disabled, e.g. IRAM interrupts.", + "id": "LIBC_LOCKS_PLACE_IN_IRAM", + "name": "LIBC_LOCKS_PLACE_IN_IRAM", + "range": null, + "title": "Place lock API in IRAM", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LIBC_STDOUT_LINE_ENDING_CRLF", + "name": "LIBC_STDOUT_LINE_ENDING_CRLF", + "range": null, + "title": "CRLF", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LIBC_STDOUT_LINE_ENDING_LF", + "name": "LIBC_STDOUT_LINE_ENDING_LF", + "range": null, + "title": "LF", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LIBC_STDOUT_LINE_ENDING_CR", + "name": "LIBC_STDOUT_LINE_ENDING_CR", + "range": null, + "title": "CR", + "type": "bool" + } + ], + "depends_on": "VFS_SUPPORT_IO", + "help": "This option allows configuring the desired line endings sent to console\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 occurrence of LF is replaced with CR\n\nThis option doesn't affect behavior of the UART driver (drivers/uart.h).", + "id": "component-config-libc-line-ending-for-console-output-C:-esp-v6.0-esp-idf-components-esp_libc-Kconfig-56", + "name": "LIBC_STDOUT_LINE_ENDING", + "title": "Line ending for console output", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LIBC_STDIN_LINE_ENDING_CRLF", + "name": "LIBC_STDIN_LINE_ENDING_CRLF", + "range": null, + "title": "CRLF", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LIBC_STDIN_LINE_ENDING_LF", + "name": "LIBC_STDIN_LINE_ENDING_LF", + "range": null, + "title": "LF", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LIBC_STDIN_LINE_ENDING_CR", + "name": "LIBC_STDIN_LINE_ENDING_CR", + "range": null, + "title": "CR", + "type": "bool" + } + ], + "depends_on": "VFS_SUPPORT_IO", + "help": "This option allows configuring which input sequence on console 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 occurrence of CR is replaced with LF\n\nThis option doesn't affect behavior of the UART driver (drivers/uart.h).", + "id": "component-config-libc-line-ending-for-console-input-C:-esp-v6.0-esp-idf-components-esp_libc-Kconfig-81", + "name": "LIBC_STDIN_LINE_ENDING", + "title": "Line ending for console input", + "type": "choice" + }, + { + "children": [], + "depends_on": "LIBC_NEWLIB", + "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/git/?p=newlib-cygwin.git;a=blob_plain;f=newlib/README;hb=HEAD\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.", + "id": "LIBC_NEWLIB_NANO_FORMAT", + "name": "LIBC_NEWLIB_NANO_FORMAT", + "range": null, + "title": "Enable 'nano' formatting options for printf/scanf family", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LIBC_TIME_SYSCALL_USE_RTC_HRT", + "name": "LIBC_TIME_SYSCALL_USE_RTC_HRT", + "range": null, + "title": "RTC and high-resolution timer", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LIBC_TIME_SYSCALL_USE_RTC", + "name": "LIBC_TIME_SYSCALL_USE_RTC", + "range": null, + "title": "RTC", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LIBC_TIME_SYSCALL_USE_HRT", + "name": "LIBC_TIME_SYSCALL_USE_HRT", + "range": null, + "title": "High-resolution timer", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LIBC_TIME_SYSCALL_USE_NONE", + "name": "LIBC_TIME_SYSCALL_USE_NONE", + "range": null, + "title": "None", + "type": "bool" + } + ], + "depends_on": null, + "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; they are defined as weak,\n so they could be overridden.\n If you want to customize gettimeofday() and other time functions,\n please choose this option and refer to the 'time.c' source file\n for the exact prototypes of these functions.\n\n- When RTC is used for timekeeping, two RTC_STORE registers are\n used to keep time in deep sleep mode.", + "id": "component-config-libc-timers-used-for-gettimeofday-function-C:-esp-v6.0-esp-idf-components-esp_libc-Kconfig-133", + "name": "LIBC_TIME_SYSCALL", + "title": "Timers used for gettimeofday function", + "type": "choice" + }, + { + "children": [], + "depends_on": "ESP_ROM_HAS_SUBOPTIMAL_NEWLIB_ON_MISALIGNED_MEMORY", + "help": "Enables performance-optimized implementations of memory and string functions\nwhen handling misaligned memory.\n\nRequire approximately 800\u20131000 bytes of IRAM.\n\nOptimized functions include:\n - memcpy\n - memset\n - memmove\n - str[n]cpy\n - str[n]cmp", + "id": "LIBC_OPTIMIZED_MISALIGNED_ACCESS", + "name": "LIBC_OPTIMIZED_MISALIGNED_ACCESS", + "range": null, + "title": "Use performance-optimized memXXX/strXXX functions on misaligned memory access", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Size of the buffer used to format assert failure messages.\n\nWhen assertions fail, the system formats a message containing the function name,\nfile name, line number, and the failed expression. This option controls the\nmaximum length of this message.\n\nIf you encounter truncated assert messages (especially with C++ templates or\nlong function names), increase this value. The default value of 200 bytes\nshould be sufficient for most cases, but complex template expressions may\nrequire larger buffers.", + "id": "LIBC_ASSERT_BUFFER_SIZE", + "name": "LIBC_ASSERT_BUFFER_SIZE", + "range": [ + 100, + 2048 + ], + "title": "Assert message buffer size", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-libc-C:-esp-v6.0-esp-idf-components-esp_libc-Kconfig-1", + "title": "LibC", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "STDATOMIC_S32C1I_SPIRAM_WORKAROUND", + "name": "STDATOMIC_S32C1I_SPIRAM_WORKAROUND", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "ESP_MM_CACHE_MSYNC_C2M_CHUNKED_OPS", + "help": "Max len in bytes per C2M chunk, operations with size over the max len will be\nsliced into multiple chunks.", + "id": "ESP_MM_CACHE_MSYNC_C2M_CHUNKED_OPS_MAX_LEN", + "name": "ESP_MM_CACHE_MSYNC_C2M_CHUNKED_OPS_MAX_LEN", + "range": null, + "title": "Max len in bytes per C2M chunk", + "type": "hex" + } + ], + "depends_on": "SOC_CACHE_WRITEBACK_SUPPORTED", + "help": "`esp_cache_msync` C2M direction takes critical sections, which means during\nthe operation, the interrupts are disabled. Whereas Cache writebacks for\nlarge buffers could be especially time intensive, and might cause interrupts\nto be disabled for a significant amount of time.\n\nSometimes you want other ISRs to be responded during this C2M process.\nThis option is to slice one C2M operation into multiple chunks,\nwith CONFIG_ESP_MM_CACHE_MSYNC_C2M_CHUNKED_OPS_MAX_LEN max len. This will give you\na breath during the C2M process as sometimes the C2M process is quite long.\n\nNote if the buffer processed by the `esp_cache_msync` (C2M sliced) is interrupted by an ISR,\nand this ISR also accesses this buffer, this may lead to data coherence issue.", + "id": "ESP_MM_CACHE_MSYNC_C2M_CHUNKED_OPS", + "name": "ESP_MM_CACHE_MSYNC_C2M_CHUNKED_OPS", + "range": null, + "title": "Enable esp_cache_msync C2M chunked operation", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-mm-memory-management-configurations-C:-esp-v6.0-esp-idf-components-esp_mm-Kconfig-1", + "title": "ESP-MM: Memory Management Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Enable raising LOST_IP events using a timer when the IPv4 address becomes invalid.\nWhen disabled, the timer is not started and LOST_IP events are not posted.\nThe delay is configured by ESP_NETIF_IP_LOST_TIMER_INTERVAL.", + "id": "ESP_NETIF_LOST_IP_TIMER_ENABLE", + "name": "ESP_NETIF_LOST_IP_TIMER_ENABLE", + "range": null, + "title": "Enable IPv4 lost IP event timer", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "The 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 every time 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 gets the IP again before\nthe timer expires. For backward compatibility, setting the interval to 0 disables the\ntimer as well.", + "id": "ESP_NETIF_IP_LOST_TIMER_INTERVAL", + "name": "ESP_NETIF_IP_LOST_TIMER_INTERVAL", + "range": [ + 0, + 65535 + ], + "title": "IP Address lost timer interval (seconds)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "No implementation of ESP-NETIF functions is provided.\nThis option is used for adding a custom TCP/IP stack and defining related\nesp_netif functionality", + "id": "ESP_NETIF_PROVIDE_CUSTOM_IMPLEMENTATION", + "name": "ESP_NETIF_PROVIDE_CUSTOM_IMPLEMENTATION", + "range": null, + "title": "Use only ESP-NETIF headers", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "LWIP_ENABLE && ", + "help": "lwIP is a small independent implementation of the TCP/IP protocol suite.", + "id": "ESP_NETIF_TCPIP_LWIP", + "name": "ESP_NETIF_TCPIP_LWIP", + "range": null, + "title": "LwIP", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Dummy implementation of esp-netif functionality which connects driver transmit\nto receive function. This option is for testing purpose only", + "id": "ESP_NETIF_LOOPBACK", + "name": "ESP_NETIF_LOOPBACK", + "range": null, + "title": "Loopback", + "type": "bool" + } + ], + "depends_on": "!ESP_NETIF_PROVIDE_CUSTOM_IMPLEMENTATION", + "help": "Choose the TCP/IP Stack to work, for example, LwIP, uIP, etc.", + "id": "component-config-esp-netif-adapter-tcp-ip-stack-library-C:-esp-v6.0-esp-idf-components-esp_netif-Kconfig-31", + "name": "ESP_NETIF_USE_TCPIP_STACK_LIB", + "title": "TCP/IP Stack Library", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_NETIF_USES_TCPIP_WITH_BSD_API", + "name": "ESP_NETIF_USES_TCPIP_WITH_BSD_API", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable if esp_netif_transmit() and esp_netif_receive() should generate events. This can be useful\nto blink data traffic indication lights.", + "id": "ESP_NETIF_REPORT_DATA_TRAFFIC", + "name": "ESP_NETIF_REPORT_DATA_TRAFFIC", + "range": null, + "title": "Report data traffic via events", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_NETIF_RECEIVE_REPORT_ERRORS", + "name": "ESP_NETIF_RECEIVE_REPORT_ERRORS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_NETIF_L2_TAP", + "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.", + "id": "ESP_NETIF_L2_TAP_MAX_FDS", + "name": "ESP_NETIF_L2_TAP_MAX_FDS", + "range": null, + "title": "Maximum number of opened L2 TAP File descriptors", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_NETIF_L2_TAP", + "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).", + "id": "ESP_NETIF_L2_TAP_RX_QUEUE_SIZE", + "name": "ESP_NETIF_L2_TAP_RX_QUEUE_SIZE", + "range": null, + "title": "Size of L2 TAP Rx queue", + "type": "int" + } + ], + "depends_on": null, + "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.", + "id": "ESP_NETIF_L2_TAP", + "name": "ESP_NETIF_L2_TAP", + "range": null, + "title": "Enable netif L2 TAP support", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_NETIF_TCPIP_LWIP", + "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 available!", + "id": "ESP_NETIF_BRIDGE_EN", + "name": "ESP_NETIF_BRIDGE_EN", + "range": null, + "title": "Enable LwIP IEEE 802.1D bridge", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this option to use the DNS server which belongs to the selected default network interface.\nThis feature collects DNS server and netif information from LWIP core modules.\nWhenever a new default netif is selected, global DNS servers in LWIP are updated with the netif\nrelated servers.", + "id": "ESP_NETIF_SET_DNS_PER_DEFAULT_NETIF", + "name": "ESP_NETIF_SET_DNS_PER_DEFAULT_NETIF", + "range": null, + "title": "Enable DNS server per interface", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-netif-adapter-C:-esp-v6.0-esp-idf-components-esp_netif-Kconfig-1", + "title": "ESP NETIF Adapter", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "IDF_TARGET_LINUX", + "help": "This option enables gathering host test statistics and SPI flash wear levelling simulation.", + "id": "ESP_PARTITION_ENABLE_STATS", + "name": "ESP_PARTITION_ENABLE_STATS", + "range": null, + "title": "Host test statistics enabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_LINUX", + "help": "This option controls whether the partition implementation checks\nif the flash is erased before writing to it.\nThis is necessary for SPIFFS, which expects to be able to write without erasing first.", + "id": "ESP_PARTITION_ERASE_CHECK", + "name": "ESP_PARTITION_ERASE_CHECK", + "range": null, + "title": "Check if flash is erased before writing", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-partition-api-configuration-C:-esp-v6.0-esp-idf-components-esp_partition-Kconfig-1", + "title": "Partition API Configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_PHY_ENABLED", + "name": "ESP_PHY_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_PHY_ENABLED", + "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\ncalibration will 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'.", + "id": "ESP_PHY_CALIBRATION_AND_DATA_STORAGE", + "name": "ESP_PHY_CALIBRATION_AND_DATA_STORAGE", + "range": null, + "title": "Store phy calibration data in NVS", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_PHY_INIT_DATA_IN_PARTITION && ESP_PHY_ENABLED", + "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'.", + "id": "ESP_PHY_DEFAULT_INIT_IF_INVALID", + "name": "ESP_PHY_DEFAULT_INIT_IF_INVALID", + "range": null, + "title": "Reset default PHY init data if invalid", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_PHY_MULTIPLE_INIT_DATA_BIN && ESP_PHY_INIT_DATA_IN_PARTITION && ESP_PHY_ENABLED", + "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.", + "id": "ESP_PHY_MULTIPLE_INIT_DATA_BIN_EMBED", + "name": "ESP_PHY_MULTIPLE_INIT_DATA_BIN_EMBED", + "range": null, + "title": "Support embedded multiple phy init data bin to app bin", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_PHY_MULTIPLE_INIT_DATA_BIN && ESP_PHY_INIT_DATA_IN_PARTITION && ESP_PHY_ENABLED", + "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.", + "id": "ESP_PHY_INIT_DATA_ERROR", + "name": "ESP_PHY_INIT_DATA_ERROR", + "range": null, + "title": "Terminate operation when PHY init data error", + "type": "bool" + } + ], + "depends_on": "ESP_PHY_INIT_DATA_IN_PARTITION && ESP_PHY_INIT_DATA_IN_PARTITION && ESP_PHY_ENABLED", + "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.", + "id": "ESP_PHY_MULTIPLE_INIT_DATA_BIN", + "name": "ESP_PHY_MULTIPLE_INIT_DATA_BIN", + "range": null, + "title": "Support multiple PHY init data bin", + "type": "bool" + } + ], + "depends_on": "SOC_WIFI_SUPPORTED && ESP_PHY_ENABLED", + "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'.", + "id": "ESP_PHY_INIT_DATA_IN_PARTITION", + "is_menuconfig": true, + "name": "ESP_PHY_INIT_DATA_IN_PARTITION", + "range": null, + "title": "Use a partition to store PHY init data", + "type": "menu" + }, + { + "children": [], + "depends_on": "ESP_PHY_ENABLED", + "help": "Set maximum transmit power for WiFi radio. Actual transmit power for high\ndata rates may be lower than this setting.", + "id": "ESP_PHY_MAX_WIFI_TX_POWER", + "name": "ESP_PHY_MAX_WIFI_TX_POWER", + "range": [ + 10, + 20 + ], + "title": "Max WiFi TX power (dBm)", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_PHY_ENABLED", + "help": null, + "id": "ESP_PHY_MAX_TX_POWER", + "name": "ESP_PHY_MAX_TX_POWER", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "SOC_PM_SUPPORT_MAC_BB_PD && FREERTOS_USE_TICKLESS_IDLE && ESP_PHY_ENABLED", + "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).", + "id": "ESP_PHY_MAC_BB_PD", + "name": "ESP_PHY_MAC_BB_PD", + "range": null, + "title": "Power down MAC and baseband of Wi-Fi and Bluetooth when PHY is disabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_BROWNOUT_DET && ESP_PHY_ENABLED", + "help": "When brownout reset occurs, reduce PHY TX power to keep the code running.", + "id": "ESP_PHY_REDUCE_TX_POWER", + "name": "ESP_PHY_REDUCE_TX_POWER", + "range": null, + "title": "Reduce PHY TX power when brownout reset", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_WIFI_PHY_NEEDS_USB_WORKAROUND && ESP_PHY_ENABLED", + "help": "On some ESP targets, the USB PHY can interfere with WiFi thus lowering WiFi performance.\nAs a result, on those affected ESP targets, the ESP PHY library's initialization will automatically\ndisable the USB PHY to get best WiFi performance.\nThis option controls whether or not the ESP PHY library will keep the USB PHY enabled on\ninitialization.\n\nNote: This option can be disabled to increase WiFi performance. However, disabling this option will\nalso mean that the USB PHY cannot be used while WiFi is enabled.", + "id": "ESP_PHY_ENABLE_USB", + "name": "ESP_PHY_ENABLE_USB", + "range": null, + "title": "Keep the USB PHY enabled when initializing WiFi", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_PHY_ENABLED", + "help": "If enabled, you can use RF certification test APIs.", + "id": "ESP_PHY_ENABLE_CERT_TEST", + "name": "ESP_PHY_ENABLE_CERT_TEST", + "range": null, + "title": "Enable RF certification test functions", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_PHY_RF_CAL_PARTIAL", + "name": "ESP_PHY_RF_CAL_PARTIAL", + "range": null, + "title": "Calibration partial", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_PHY_RF_CAL_NONE", + "name": "ESP_PHY_RF_CAL_NONE", + "range": null, + "title": "Calibration none", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_PHY_RF_CAL_FULL", + "name": "ESP_PHY_RF_CAL_FULL", + "range": null, + "title": "Calibration full", + "type": "bool" + } + ], + "depends_on": "ESP_PHY_ENABLED", + "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.", + "id": "component-config-phy-calibration-mode-C:-esp-v6.0-esp-idf-components-esp_phy-Kconfig-136", + "name": "ESP_PHY_CALIBRATION_MODE", + "title": "Calibration mode", + "type": "choice" + }, + { + "children": [], + "depends_on": "ESP_PHY_ENABLED", + "help": null, + "id": "ESP_PHY_CALIBRATION_MODE", + "name": "ESP_PHY_CALIBRATION_MODE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "SOC_PHY_IMPROVE_RX_11B && ESP_PHY_ENABLED", + "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.", + "id": "ESP_PHY_IMPROVE_RX_11B", + "name": "ESP_PHY_IMPROVE_RX_11B", + "range": null, + "title": "Improve Wi-Fi receive 11b pkts", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_PHY_ENABLED", + "help": "Set the period of the pll track.", + "id": "ESP_PHY_PLL_TRACK_PERIOD_MS", + "name": "ESP_PHY_PLL_TRACK_PERIOD_MS", + "range": null, + "title": "Set the period of the pll track", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_PHY_ENABLED", + "help": "If enabled, there will be some logs while pll tracking", + "id": "ESP_PHY_PLL_TRACK_DEBUG", + "name": "ESP_PHY_PLL_TRACK_DEBUG", + "range": null, + "title": "Enable pll track logging", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_PHY_ENABLED", + "help": "Select to support record and query phy used time.", + "id": "ESP_PHY_RECORD_USED_TIME", + "name": "ESP_PHY_RECORD_USED_TIME", + "range": null, + "title": "Record PHY used time", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_PHY_ENABLED", + "help": "Select this option to place frequently called PHY library functions in IRAM.\nWhen this option is disabled, more than 1.1Kbytes of IRAM memory will be saved,\nbut PHY performance will be reduced. This config only affect esp32c2 now.", + "id": "ESP_PHY_IRAM_OPT", + "name": "ESP_PHY_IRAM_OPT", + "range": null, + "title": "PHY IRAM speed optimization", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_PHY_DEBUG && ESP_PHY_ENABLED", + "help": "Disable pll track. This configuration option is used for experimental.\nPLL track helps the PHY module adapt to temperature changes, ensuring stable performance.\nWhen pll enabled, the ESP PHY module will periodically track and adjust PLL parameters.", + "id": "ESP_PHY_DISABLE_PLL_TRACK", + "name": "ESP_PHY_DISABLE_PLL_TRACK", + "range": null, + "title": "Disable phy pll track(only for experimental)", + "type": "bool" + } + ], + "depends_on": "ESP_PHY_ENABLED", + "help": "Enabling this option allows different kinds of phy debugging features.", + "id": "ESP_PHY_DEBUG", + "is_menuconfig": true, + "name": "ESP_PHY_DEBUG", + "range": null, + "title": "Enable PHY Debug", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-phy-C:-esp-v6.0-esp-idf-components-esp_phy-Kconfig-1", + "title": "PHY", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "PM_SLEEP_FUNC_IN_IRAM", + "name": "PM_SLEEP_FUNC_IN_IRAM", + "range": null, + "title": "Place Power Management module functions in IRAM", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "PM_ENABLE", + "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.", + "id": "PM_DFS_INIT_AUTO", + "name": "PM_DFS_INIT_AUTO", + "range": null, + "title": "Enable dynamic frequency scaling (DFS) at startup", + "type": "bool" + }, + { + "children": [], + "depends_on": "PM_ENABLE", + "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.", + "id": "PM_PROFILING", + "name": "PM_PROFILING", + "range": null, + "title": "Enable profiling counters for PM locks", + "type": "bool" + }, + { + "children": [], + "depends_on": "PM_ENABLE", + "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.", + "id": "PM_TRACE", + "name": "PM_TRACE", + "range": null, + "title": "Enable debug tracing of PM using GPIOs", + "type": "bool" + } + ], + "depends_on": "(!FREERTOS_SMP && SOC_PM_SUPPORTED) || __DOXYGEN__", + "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.", + "id": "PM_ENABLE", + "name": "PM_ENABLE", + "range": null, + "title": "Support for power management", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_LIGHT_SLEEP_SUPPORTED", + "help": "If enabled, about 2.1KB of lightsleep related source code would be in IRAM and chip would sleep\nlonger for 310us at 160MHz CPU frequency 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.", + "id": "PM_SLP_IRAM_OPT", + "name": "PM_SLP_IRAM_OPT", + "range": null, + "title": "Put lightsleep related codes in internal RAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_USE_TICKLESS_IDLE", + "help": "If enabled, about 180Bytes of RTOS_IDLE related source code would be in IRAM and chip would sleep\nlonger for 20us at 160MHz CPU frequency 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.", + "id": "PM_RTOS_IDLE_OPT", + "name": "PM_RTOS_IDLE_OPT", + "range": null, + "title": "Put RTOS IDLE related codes in internal RAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_USE_TICKLESS_IDLE", + "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.", + "id": "PM_SLP_DISABLE_GPIO", + "name": "PM_SLP_DISABLE_GPIO", + "range": null, + "title": "Disable all GPIO when chip at sleep", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "PM_SLP_DEFAULT_PARAMS_OPT", + "name": "PM_SLP_DEFAULT_PARAMS_OPT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP || (ESP32P4_SELECTS_REV_LESS_V3 && PM_POWER_DOWN_PERIPHERAL_IN_LIGHT_SLEEP)", + "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", + "id": "PM_CHECK_SLEEP_RETENTION_FRAME", + "name": "PM_CHECK_SLEEP_RETENTION_FRAME", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "PM_ENABLE", + "help": "The value of this option determines the calibration interval of the RTC_FAST/SLOW clock during sleep when\npower management is enabled. When it is configured as N, the RTC_FAST/SLOW clock will be calibrated\nevery N times of lightsleep.\nDecreasing this value will increase the time the chip is in the active state, thereby increasing the\naverage power consumption of the chip.\nIncreasing this value can reduce the average power consumption, but when the external environment changes\ndrastically and the chip RTC_FAST/SLOW oscillator frequency drifts, it may cause system instability.", + "id": "PM_LIGHTSLEEP_RTC_OSC_CAL_INTERVAL", + "name": "PM_LIGHTSLEEP_RTC_OSC_CAL_INTERVAL", + "range": null, + "title": "Calibrate the RTC_FAST/SLOW clock every N times of light sleep", + "type": "int" + }, + { + "children": [], + "depends_on": "SOC_PM_SUPPORT_CPU_PD && !ESP32P4_SELECTS_REV_LESS_V3", + "help": "If enabled, the CPU will be powered down in light sleep,\nESP chips supports saving and restoring CPU's running context before and after light sleep,\nthe feature provides applications with seamless CPU powerdowned lightsleep without user awareness.\nBut this will takes up some internal memory.\nOn esp32c3 soc, enabling this option will consume 1.68 KB of internal RAM\nand will reduce sleep current consumption by about 100 uA.\nOn esp32s3 soc, enabling this option will consume 8.58 KB of internal RAM\nand will reduce sleep current consumption by about 650 uA.", + "id": "PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP", + "name": "PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP", + "range": null, + "title": "Power down CPU in light sleep", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Allocate memory for retention data only when preparing to enter light sleep.", + "id": "PM_CPU_RETENTION_DYNAMIC", + "name": "PM_CPU_RETENTION_DYNAMIC", + "range": null, + "title": "Dynamically allocate memory", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Pre-allocate all required retention memory during system initialization.", + "id": "PM_CPU_RETENTION_STATIC", + "name": "PM_CPU_RETENTION_STATIC", + "range": null, + "title": "Statically allocate memory", + "type": "bool" + } + ], + "depends_on": "SOC_PM_CPU_RETENTION_BY_SW && (PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP || (PM_POWER_DOWN_PERIPHERAL_IN_LIGHT_SLEEP && ESP32P4_SELECTS_REV_LESS_V3))", + "help": "In light sleep mode, certain CPU states and data need to be preserved in memory while cpu domain\nis powered down. This configuration determines how the required memory resources are allocated.\nThe PM_CPU_RETENTION_DYNAMIC option allows more flexible runtime memory management by\nsupporting access to larger memory. However, it carries the risk of insufficient memory\nwhen the chip enters the light-sleep mode, even resulting in retention failure.\nIn contrast, the PM_CPU_RETENTION_STATIC option ensures reliable sleep CPU retention during the\nsystem initialization, but reduces the memory available during runtime.", + "id": "component-config-power-management-retentive-memory-alloaction-strategy-for-light-sleep-C:-esp-v6.0-esp-idf-components-esp_pm-Kconfig-135", + "name": null, + "title": "Retentive memory alloaction strategy for light sleep", + "type": "choice" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32S3 && PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP", + "help": "Cache tag memory and CPU both belong to the CPU power domain.\nESP chips supports saving and restoring Cache tag memory before and after sleep,\nthis feature supports accesses to the external memory that was cached before sleep still\nbe cached when the CPU wakes up from a powerdowned CPU lightsleep.\nThis option controls the restore method for Cache tag memory in lightsleep.\nIf this option is enabled, the I/D-cache tag memory will be backuped to the internal RAM\nbefore sleep and restored upon wakeup.\nDepending on the the cache configuration, if this option is enabled,\nit will consume up to 9 KB of internal RAM.\nIf this option is disabled, all cached data won't be kept after sleep,\nthe DCache will be writeback before sleep and invalid all cached data after sleep,\nall accesses to external memory(Flash/PSRAM) will be cache missed after waking up,\nresulting in performance degradation due to increased memory accesses latency.", + "id": "PM_RESTORE_CACHE_TAGMEM_AFTER_LIGHT_SLEEP", + "name": "PM_RESTORE_CACHE_TAGMEM_AFTER_LIGHT_SLEEP", + "range": null, + "title": "Restore I/D-cache tag memory after power down CPU light sleep", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_PM_SUPPORT_TOP_PD && SOC_PAU_SUPPORTED && !(IDF_TARGET_ESP32P4 && ESP_REV_MIN_FULL = 300 && SPIRAM)", + "help": "If enabled, digital peripherals will try to powered down in light sleep, then all related peripherals will\nnot be available during sleep, including wake-up sources from the peripherals (For detailed availability\ninformation, see the note of the corresponding wakeup source enable function).\nThe chip will automatically save/restore register context during sleep/wakeup to make the upper layer\nuser unaware of the peripheral powerdown during sleep. Enabling this option will increase static RAM and\nheap usage but will also significantly reduce power.\nconsumption during lightsleep, the actual memory cost depends on the peripherals you have initialized,\nfor specific power consumption data in this mode, please refer to Electrical Characteristics section\nin the chip datasheet.\n(In order to save/restore the context of the necessary hardware for FreeRTOS to run, it will need\nat least 4.55 KB free heap at 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\nNote3: Enabling this option does not necessarily mean that the peripheral power domain will be\nturned down during sleep. The control priority of `esp_sleep_pd_config` is higher than this option,\nuser code can still prevent the peripheral power domain from powering down during sleep by\n`esp_sleep_pd_config(ESP_PD_DOMAIN_TOP, ESP_PD_OPTION_ON)`. In addition, whether the peripheral power\ndomain is powered down during sleep also depends on the sleep working strategy selected by the driver.\nIf any module belonging to the peripheral power domain chooses not to be powered down during sleep,\nthen the peripheral power domain will not be powered off either.", + "id": "PM_POWER_DOWN_PERIPHERAL_IN_LIGHT_SLEEP", + "name": "PM_POWER_DOWN_PERIPHERAL_IN_LIGHT_SLEEP", + "range": null, + "title": "Power down Digital Peripheral in light sleep (EXPERIMENTAL)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "PM_ESP_SLEEP_POWER_DOWN_CPU", + "name": "PM_ESP_SLEEP_POWER_DOWN_CPU", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "PM_UPDATE_CCOMPARE_HLI_WORKAROUND", + "name": "PM_UPDATE_CCOMPARE_HLI_WORKAROUND", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_USE_TICKLESS_IDLE", + "help": "If enabled, it allows user to register entry and exit callbacks which are called before and after\nentering auto light sleep.\n\nNOTE: These callbacks are executed from the IDLE task context hence you cannot have any blocking calls\nin your callbacks.\n\nNOTE: Enabling these callbacks may change sleep duration calculations based on time spent in callback and\nhence it is highly recommended to keep them as short as possible", + "id": "PM_LIGHT_SLEEP_CALLBACKS", + "name": "PM_LIGHT_SLEEP_CALLBACKS", + "range": null, + "title": "Enable registration of pm light sleep callbacks", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Workaround for frequency limit during encrypted flash writes.\nOnly enabled when SPI_FLASH_FREQ_LIMIT_C5_240MHZ is enabled.\nThis is an internal configuration, automatically set based on SPI Flash configuration.", + "id": "PM_WORKAROUND_FREQ_LIMIT_ENABLED", + "name": "PM_WORKAROUND_FREQ_LIMIT_ENABLED", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-power-management-C:-esp-v6.0-esp-idf-components-esp_pm-Kconfig-1", + "title": "Power Management", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "SPIRAM_MODE_QUAD", + "name": "SPIRAM_MODE_QUAD", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_TYPE_AUTO", + "name": "SPIRAM_TYPE_AUTO", + "range": null, + "title": "Auto-detect", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_TYPE_ESPPSRAM16", + "name": "SPIRAM_TYPE_ESPPSRAM16", + "range": null, + "title": "ESP-PSRAM16 or APS1604", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_TYPE_ESPPSRAM32", + "name": "SPIRAM_TYPE_ESPPSRAM32", + "range": null, + "title": "ESP-PSRAM32", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_TYPE_ESPPSRAM64", + "name": "SPIRAM_TYPE_ESPPSRAM64", + "range": null, + "title": "ESP-PSRAM64 or LY68L6400", + "type": "bool" + } + ], + "depends_on": "SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "component-config-esp-psram-support-for-external-spi-connected-ram-spi-ram-config-type-of-spi-ram-chip-in-use-C:-esp-v6.0-esp-idf-components-esp_psram-.-esp32-Kconfig.spiram-15", + "name": "SPIRAM_TYPE", + "title": "Type of SPI RAM chip in use", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_SPEED_40M", + "name": "SPIRAM_SPEED_40M", + "range": null, + "title": "40MHz clock speed", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESPTOOLPY_FLASHFREQ_80M && ", + "help": null, + "id": "SPIRAM_SPEED_80M", + "name": "SPIRAM_SPEED_80M", + "range": null, + "title": "80MHz clock speed", + "type": "bool" + } + ], + "depends_on": "SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Select the speed for the SPI RAM chip.\nIf SPI RAM is enabled, we only support three combinations of SPI speed mode we supported now:\n\n1. Flash SPI running at 40Mhz and RAM SPI running at 40Mhz\n2. Flash SPI running at 80Mhz and RAM SPI running at 40Mhz\n3. Flash SPI running at 80Mhz and RAM SPI running at 80Mhz\n\nNote: If the third mode(80Mhz+80Mhz) is enabled for SPI RAM of type 32MBit, one of the HSPI/VSPI host\nwill be occupied by the system. Which SPI host to use can be selected by the config item\nSPIRAM_OCCUPY_SPI_HOST. Application code should never touch HSPI/VSPI hardware in this case. The\noption to select 80MHz will only be visible if the flash SPI speed is also 80MHz.\n(ESPTOOLPY_FLASHFREQ_80M is true)", + "id": "component-config-esp-psram-support-for-external-spi-connected-ram-spi-ram-config-set-ram-clock-speed-C:-esp-v6.0-esp-idf-components-esp_psram-.-esp32-Kconfig.spiram-33", + "name": "SPIRAM_SPEED", + "title": "Set RAM clock speed", + "type": "choice" + }, + { + "children": [], + "depends_on": "SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "SPIRAM_SPEED", + "name": "SPIRAM_SPEED", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "SPIRAM_BOOT_HW_INIT && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "If this is enabled, the PSRAM 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 PSRAM.", + "id": "SPIRAM_BOOT_INIT", + "name": "SPIRAM_BOOT_INIT", + "range": null, + "title": "Initialize PSRAM during startup, including the hardware and memory related configurations", + "type": "bool" + } + ], + "depends_on": "SPIRAM && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "If this is enabled, the PSRAM hardware will be initialized during startup.\nEnabling this config does not ensure make sure the availability of the PSRAM for usage,\nbut just initialises the PSRAM hardware.\nThis is necessary to configure PSRAM memory protection during the boot up.", + "id": "SPIRAM_BOOT_HW_INIT", + "name": "SPIRAM_BOOT_HW_INIT", + "range": null, + "title": "Initialise the PSRAM related hardware", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "If this is enabled, the PSRAM will be pre-configured for memory protection during initial boot.\nThis configuration takes into consideration the PSRAM memory configurations that are performed\nby ESP-IDF's default PSRAM initialization function, esp_psram_init().\nThus, the config is enabled by default when SPIRAM_BOOT_INIT is enabled,\nbecause the function esp_psram_init() would be called in the startup code.\n\nIn case you wish to disable SPIRAM_BOOT_INIT just for delaying the PSRAM initialization and plan\nto use the ESP-IDF's default PSRAM initialization function, esp_psram_init() in the application code,\nyou should still enable this config to enable memory protection for the PSRAM.\n\nNote that enabling this config also considers that the rest of the PSRAM memory that is left after\nthe memory configurations are performed by esp_psram_init(), can be allocated to the heap using the function\nesp_psram_extram_add_to_heap_allocator(), thus configures this region with heap memory protection (RW).\n\nAs an advanced usage, if you plan to initialize the PSRAM memory regions manually by yourself without\nusing the function esp_psram_init(), you should disable this config to avoid any memory protection and\nusage conflicts.", + "id": "SPIRAM_PRE_CONFIGURE_MEMORY_PROTECTION", + "name": "SPIRAM_PRE_CONFIGURE_MEMORY_PROTECTION", + "range": null, + "title": "Pre-configure memory protection for PSRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM_BOOT_HW_INIT && !SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY && !SPIRAM_ALLOW_NOINIT_SEG_EXTERNAL_MEMORY && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "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. In particular, it is important to note that when SPIRAM_IGNORE_NOTFOUND\nis enabled, some WIFI related configs will be set to the default value used when SPIRAM is disabled.\nIt can be assumed that by enabling this config, WIFI and LWIP will assume that the current chip does not\nhave SPIRAM. SPIRAM_TRY_ALLOCATE_WIFI_LWIP will not work, buffers in WIFI and LWIP will be set to smaller\nranges and default values. WIFI_CACHE_TX_BUFFER_NUM and ESP_WIFI_AMSDU_TX_ENABLED will be disabled,\nESP_WIFI_TX_BUFFER will be set to ESP_WIFI_DYNAMIC_TX_BUFFER.", + "id": "SPIRAM_IGNORE_NOTFOUND", + "name": "SPIRAM_IGNORE_NOTFOUND", + "range": null, + "title": "Ignore PSRAM when not found", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_USE_MEMMAP", + "name": "SPIRAM_USE_MEMMAP", + "range": null, + "title": "Integrate RAM into memory map", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_USE_CAPS_ALLOC", + "name": "SPIRAM_USE_CAPS_ALLOC", + "range": null, + "title": "Make RAM allocatable using heap_caps_malloc(..., MALLOC_CAP_SPIRAM)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_USE_MALLOC", + "name": "SPIRAM_USE_MALLOC", + "range": null, + "title": "Make RAM allocatable using malloc() as well", + "type": "bool" + } + ], + "depends_on": "SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "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.", + "id": "component-config-esp-psram-support-for-external-spi-connected-ram-spi-ram-config-spi-ram-access-method-C:-esp-v6.0-esp-idf-components-esp_psram-Kconfig.spiram.common-62", + "name": "SPIRAM_USE", + "title": "SPI RAM access method", + "type": "choice" + }, + { + "children": [], + "depends_on": "SPIRAM_BOOT_INIT && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Runs a rudimentary memory test on initialization. Aborts when memory test fails. Disable this for\nslightly faster startup.", + "id": "SPIRAM_MEMTEST", + "name": "SPIRAM_MEMTEST", + "range": null, + "title": "Run memory test on SPI RAM initialization", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM_USE_MALLOC && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "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.", + "id": "SPIRAM_MALLOC_ALWAYSINTERNAL", + "name": "SPIRAM_MALLOC_ALWAYSINTERNAL", + "range": null, + "title": "Maximum malloc() size, in bytes, to always put in internal memory", + "type": "int" + }, + { + "children": [], + "depends_on": "(SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC) && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Try to allocate memories of WiFi and LWIP in SPIRAM firstly. If failed, try to allocate internal\nmemory then.", + "id": "SPIRAM_TRY_ALLOCATE_WIFI_LWIP", + "name": "SPIRAM_TRY_ALLOCATE_WIFI_LWIP", + "range": null, + "title": "Try to allocate memories of WiFi and LWIP in SPIRAM firstly. If failed, allocate internal memory", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM_USE_MALLOC && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "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.", + "id": "SPIRAM_MALLOC_RESERVE_INTERNAL", + "name": "SPIRAM_MALLOC_RESERVE_INTERNAL", + "range": null, + "title": "Reserve this amount of bytes for data that specifically needs to be in DMA or internal memory", + "type": "int" + }, + { + "children": [], + "depends_on": "SPIRAM && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "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.", + "id": "SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY", + "name": "SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY", + "range": null, + "title": "Allow .bss segment placed in external memory", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "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.", + "id": "SPIRAM_ALLOW_NOINIT_SEG_EXTERNAL_MEMORY", + "name": "SPIRAM_ALLOW_NOINIT_SEG_EXTERNAL_MEMORY", + "range": null, + "title": "Allow .noinit segment placed in external memory", + "type": "bool" + }, + { + "children": [], + "depends_on": "(SPIRAM_USE_MEMMAP || SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC) && ESP32_REV_MIN_FULL < 300 && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Revision 1 of the ESP32 has a bug that can cause a write to PSRAM not to take place in some situations\nwhen the cache line needs to be fetched from external RAM and an interrupt occurs. This enables a\nfix in the compiler (-mfix-esp32-psram-cache-issue) that makes sure the specific code that is\nvulnerable to this will not be emitted.\n\nThis will also not use any bits of newlib that are located in ROM, opting for a version that is\ncompiled with the workaround and located in flash instead.\n\nThe workaround is not required for ESP32 revision 3 and above.", + "id": "SPIRAM_CACHE_WORKAROUND", + "name": "SPIRAM_CACHE_WORKAROUND", + "range": null, + "title": "Enable workaround for bug in SPI RAM cache for Rev1 ESP32s", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_CACHE_WORKAROUND_STRATEGY_MEMW", + "name": "SPIRAM_CACHE_WORKAROUND_STRATEGY_MEMW", + "range": null, + "title": "Insert memw after vulnerable instructions (default)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_CACHE_WORKAROUND_STRATEGY_DUPLDST", + "name": "SPIRAM_CACHE_WORKAROUND_STRATEGY_DUPLDST", + "range": null, + "title": "Duplicate LD/ST for 32-bit, memw for 8/16 bit", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_CACHE_WORKAROUND_STRATEGY_NOPS", + "name": "SPIRAM_CACHE_WORKAROUND_STRATEGY_NOPS", + "range": null, + "title": "Insert nops between vulnerable loads/stores (old strategy, obsolete)", + "type": "bool" + } + ], + "depends_on": "SPIRAM_CACHE_WORKAROUND && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Select the workaround strategy. Note that the strategy for precompiled\nlibraries (libgcc, libc, bt, wifi) is not affected by this selection.\n\nUnless you know you need a different strategy, it's suggested you stay\nwith the default MEMW strategy. Note that DUPLDST can interfere with hardware\nencryption and this will be automatically disabled if this workaround is selected.\n'Insert nops' is the workaround that was used in older esp-idf versions. This workaround\nstill can cause faulty data transfers from/to SPI RAM in some situation.", + "id": "component-config-esp-psram-support-for-external-spi-connected-ram-spi-ram-config-spiram-cache-workaround-debugging-workaround-strategy-C:-esp-v6.0-esp-idf-components-esp_psram-.-esp32-Kconfig.spiram-81", + "name": "SPIRAM_CACHE_WORKAROUND_STRATEGY", + "title": "Workaround strategy", + "type": "choice" + }, + { + "children": [], + "depends_on": "SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "SPIRAM_WORKAROUND_NEED_VOLATILE_SPINLOCK", + "name": "SPIRAM_WORKAROUND_NEED_VOLATILE_SPINLOCK", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": "SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "id": "component-config-esp-psram-support-for-external-spi-connected-ram-spi-ram-config-spiram-cache-workaround-debugging-C:-esp-v6.0-esp-idf-components-esp_psram-.-esp32-Kconfig.spiram-79", + "title": "SPIRAM cache workaround debugging", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SPIRAM_CACHE_WORKAROUND && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "The functions affected by this option are: longjmp and setjmp.\nPutting these function in IRAM will allow them to be called when flash cache is disabled\nbut it will also reduce the available size of free IRAM for the user application.", + "id": "SPIRAM_CACHE_LIBJMP_IN_IRAM", + "name": "SPIRAM_CACHE_LIBJMP_IN_IRAM", + "range": null, + "title": "Put libc's jump related functions in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM_CACHE_WORKAROUND && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "The functions affected by this option are: abs, div, labs, ldiv, quorem, fpclassify,\nand nan.\nPutting these function in IRAM will allow them to be called when flash cache is disabled\nbut it will also reduce the available size of free IRAM for the user application.", + "id": "SPIRAM_CACHE_LIBMATH_IN_IRAM", + "name": "SPIRAM_CACHE_LIBMATH_IN_IRAM", + "range": null, + "title": "Put libc's math related functions in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM_CACHE_WORKAROUND && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "The functions affected by this option are: utoa, itoa, atoi, atol, strtol, and strtoul.\nPutting these function in IRAM will allow them to be called when flash cache is disabled\nbut it will also reduce the available size of free IRAM for the user application.", + "id": "SPIRAM_CACHE_LIBNUMPARSER_IN_IRAM", + "name": "SPIRAM_CACHE_LIBNUMPARSER_IN_IRAM", + "range": null, + "title": "Put libc's number parsing related functions in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM_CACHE_WORKAROUND && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "The functions affected by this option are: wcrtomb, fvwrite, wbuf, wsetup, fputwc, wctomb_r,\nungetc, makebuf, fflush, refill, and sccl.\nPutting these function in IRAM will allow them to be called when flash cache is disabled\nbut it will also reduce the available size of free IRAM for the user application.", + "id": "SPIRAM_CACHE_LIBIO_IN_IRAM", + "name": "SPIRAM_CACHE_LIBIO_IN_IRAM", + "range": null, + "title": "Put libc's I/O related functions in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM_CACHE_WORKAROUND && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "The functions affected by this option are: asctime, asctime_r, ctime, ctime_r, lcltime, lcltime_r,\ngmtime, gmtime_r, strftime, mktime, tzset_r, tzset, time, gettzinfo, systimes, month_lengths,\ntimelocal, tzvars, tzlock, tzcalc_limits, and strptime.\nPutting these function in IRAM will allow them to be called when flash cache is disabled\nbut it will also reduce the available size of free IRAM for the user application.", + "id": "SPIRAM_CACHE_LIBTIME_IN_IRAM", + "name": "SPIRAM_CACHE_LIBTIME_IN_IRAM", + "range": null, + "title": "Put libc's time related functions in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM_CACHE_WORKAROUND && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "The functions affected by this option are: ctype_, toupper, tolower, toascii, strupr, bzero,\nisalnum, isalpha, isascii, isblank, iscntrl, isdigit, isgraph, islower, isprint, ispunct,\nisspace, and isupper.\nPutting these function in IRAM will allow them to be called when flash cache is disabled\nbut it will also reduce the available size of free IRAM for the user application.", + "id": "SPIRAM_CACHE_LIBCHAR_IN_IRAM", + "name": "SPIRAM_CACHE_LIBCHAR_IN_IRAM", + "range": null, + "title": "Put libc's characters related functions in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM_CACHE_WORKAROUND && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "The functions affected by this option are: memccpy, memchr memmove, and memrchr.\nPutting these function in IRAM will allow them to be called when flash cache is disabled\nbut it will also reduce the available size of free IRAM for the user application.", + "id": "SPIRAM_CACHE_LIBMEM_IN_IRAM", + "name": "SPIRAM_CACHE_LIBMEM_IN_IRAM", + "range": null, + "title": "Put libc's memory related functions in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM_CACHE_WORKAROUND && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "The functions affected by this option are: strcasecmp, strcasestr, strchr, strcoll,\nstrcpy, strcspn, strdup, strdup_r, strlcat, strlcpy, strlen, strlwr, strncasecmp,\nstrncat, strncmp, strncpy, strndup, strndup_r, strrchr, strsep, strspn, strstr,\nstrtok_r, and strupr.\nPutting these function in IRAM will allow them to be called when flash cache is disabled\nbut it will also reduce the available size of free IRAM for the user application.", + "id": "SPIRAM_CACHE_LIBSTR_IN_IRAM", + "name": "SPIRAM_CACHE_LIBSTR_IN_IRAM", + "range": null, + "title": "Put libc's string related functions in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM_CACHE_WORKAROUND && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "The functions affected by this option are: srand, rand, and rand_r.\nPutting these function in IRAM will allow them to be called when flash cache is disabled\nbut it will also reduce the available size of free IRAM for the user application.", + "id": "SPIRAM_CACHE_LIBRAND_IN_IRAM", + "name": "SPIRAM_CACHE_LIBRAND_IN_IRAM", + "range": null, + "title": "Put libc's random related functions in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM_CACHE_WORKAROUND && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "The functions affected by this option are: environ, envlock, and getenv_r.\nPutting these function in IRAM will allow them to be called when flash cache is disabled\nbut it will also reduce the available size of free IRAM for the user application.", + "id": "SPIRAM_CACHE_LIBENV_IN_IRAM", + "name": "SPIRAM_CACHE_LIBENV_IN_IRAM", + "range": null, + "title": "Put libc's environment related functions in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM_CACHE_WORKAROUND && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "The functions affected by this option are: lock, isatty, fclose, open, close, creat, read,\nrshift, sbrk, stdio, syssbrk, sysclose, sysopen, creat, sysread, syswrite, impure, fwalk,\nand findfp.\nPutting these function in IRAM will allow them to be called when flash cache is disabled\nbut it will also reduce the available size of free IRAM for the user application.", + "id": "SPIRAM_CACHE_LIBFILE_IN_IRAM", + "name": "SPIRAM_CACHE_LIBFILE_IN_IRAM", + "range": null, + "title": "Put libc's file related functions in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM_CACHE_WORKAROUND && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "The functions affected by this option are: raise and system\nPutting these function in IRAM will allow them to be called when flash cache is disabled\nbut it will also reduce the available size of free IRAM for the user application.", + "id": "SPIRAM_CACHE_LIBMISC_IN_IRAM", + "name": "SPIRAM_CACHE_LIBMISC_IN_IRAM", + "range": null, + "title": "Put libc's miscellaneous functions in IRAM, see help", + "type": "bool" + } + ], + "depends_on": "SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "id": "component-config-esp-psram-support-for-external-spi-connected-ram-spi-ram-config-spiram-workaround-libraries-placement-C:-esp-v6.0-esp-idf-components-esp_psram-.-esp32-Kconfig.spiram-111", + "title": "SPIRAM workaround libraries placement", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SPIRAM_BANKSWITCH_ENABLE && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Select the amount of banks reserved for bank switching. Note that the amount of RAM allocatable with\nmalloc/esp_heap_alloc_caps will decrease by 32K for each page reserved here.\n\nNote that this reservation is only actually done if your program actually uses the himem API. Without\nany himem calls, the reservation is not done and the original amount of memory will be available\nto malloc/esp_heap_alloc_caps.", + "id": "SPIRAM_BANKSWITCH_RESERVE", + "name": "SPIRAM_BANKSWITCH_RESERVE", + "range": null, + "title": "Amount of 32K pages to reserve for bank switching", + "type": "int" + } + ], + "depends_on": "(SPIRAM_USE_MEMMAP || SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC) && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "The ESP32 only supports 4MiB of external RAM in its address space. The hardware does support larger\nmemories, but these have to be bank-switched in and out of this address space. Enabling this allows you\nto reserve some MMU pages for this, which allows the use of the esp_himem api to manage these banks.\n\n#Note that this is limited to 62 banks, as esp_psram_extram_writeback_cache needs some kind of mapping of\n#some banks below that mark to work. We cannot at this moment guarantee this to exist when himem is\n#enabled.\n\nIf spiram 2T mode is enabled, the size of 64Mbit psram will be changed as 32Mbit, so himem will be\nunusable.", + "id": "SPIRAM_BANKSWITCH_ENABLE", + "name": "SPIRAM_BANKSWITCH_ENABLE", + "range": null, + "title": "Enable bank switching for >4MiB external RAM", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_OCCUPY_HSPI_HOST", + "name": "SPIRAM_OCCUPY_HSPI_HOST", + "range": null, + "title": "HSPI host (SPI2)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_OCCUPY_VSPI_HOST", + "name": "SPIRAM_OCCUPY_VSPI_HOST", + "range": null, + "title": "VSPI host (SPI3)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_OCCUPY_NO_HOST", + "name": "SPIRAM_OCCUPY_NO_HOST", + "range": null, + "title": "Will not try to use any host, will abort if not able to use the PSRAM", + "type": "bool" + } + ], + "depends_on": "SPIRAM_SPEED_80M && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "When both flash and PSRAM is working under 80MHz, and the PSRAM is of type 32MBit, one of the HSPI/VSPI\nhost will be used to output the clock. Select which one to use here.", + "id": "component-config-esp-psram-support-for-external-spi-connected-ram-spi-ram-config-spi-host-to-use-for-32mbit-psram-C:-esp-v6.0-esp-idf-components-esp_psram-.-esp32-Kconfig.spiram-262", + "name": "SPIRAM_OCCUPY_SPI_HOST", + "title": "SPI host to use for 32MBit PSRAM", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "SPIRAM && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "The PSRAM CLOCK IO can be any unused GPIO, user can config it based on hardware design. If user use\n1.8V flash and 1.8V psram, this value can only be one of 6, 7, 8, 9, 10, 11, 16, 17.\n\nIf configured to the same pin as Flash, PSRAM shouldn't be rev0. Contact Espressif for more\ninformation.", + "id": "D0WD_PSRAM_CLK_IO", + "name": "D0WD_PSRAM_CLK_IO", + "range": null, + "title": "PSRAM CLK IO number", + "type": "int" + }, + { + "children": [], + "depends_on": "SPIRAM && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "The PSRAM CS IO can be any unused GPIO, user can config it based on hardware design. If user use\n1.8V flash and 1.8V psram, this value can only be one of 6, 7, 8, 9, 10, 11, 16, 17.", + "id": "D0WD_PSRAM_CS_IO", + "name": "D0WD_PSRAM_CS_IO", + "range": null, + "title": "PSRAM CS IO number", + "type": "int" + } + ], + "depends_on": "SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "id": "component-config-esp-psram-support-for-external-spi-connected-ram-spi-ram-config-psram-clock-and-cs-io-for-esp32-dowd-C:-esp-v6.0-esp-idf-components-esp_psram-.-esp32-Kconfig.spiram-279", + "title": "PSRAM clock and cs IO for ESP32-DOWD", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SPIRAM && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "User can config it based on hardware design. For ESP32-D2WD chip, the psram can only be 1.8V psram,\nso this value can only be one of 6, 7, 8, 9, 10, 11, 16, 17.\n\nIf configured to the same pin (GPIO6) as Flash, PSRAM shouldn't be rev0. Contact Espressif for more\ninformation.", + "id": "D2WD_PSRAM_CLK_IO", + "name": "D2WD_PSRAM_CLK_IO", + "range": null, + "title": "PSRAM CLK IO number", + "type": "int" + }, + { + "children": [], + "depends_on": "SPIRAM && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "User can config it based on hardware design. For ESP32-D2WD chip, the psram can only be 1.8V psram,\nso this value can only be one of 6, 7, 8, 9, 10, 11, 16, 17.", + "id": "D2WD_PSRAM_CS_IO", + "name": "D2WD_PSRAM_CS_IO", + "range": null, + "title": "PSRAM CS IO number", + "type": "int" + } + ], + "depends_on": "SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "id": "component-config-esp-psram-support-for-external-spi-connected-ram-spi-ram-config-psram-clock-and-cs-io-for-esp32-d2wd-C:-esp-v6.0-esp-idf-components-esp_psram-.-esp32-Kconfig.spiram-303", + "title": "PSRAM clock and cs IO for ESP32-D2WD", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SPIRAM && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "The PSRAM CS IO can be any unused GPIO, user can config it based on hardware design.\n\nFor ESP32-PICO chip, the psram share clock with flash, so user do not need to configure the clock\nIO.\nFor the reference hardware design, please refer to\nhttps://www.espressif.com/sites/default/files/documentation/esp32-pico-d4_datasheet_en.pdf", + "id": "PICO_PSRAM_CS_IO", + "name": "PICO_PSRAM_CS_IO", + "range": null, + "title": "PSRAM CS IO number", + "type": "int" + } + ], + "depends_on": "SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "id": "component-config-esp-psram-support-for-external-spi-connected-ram-spi-ram-config-psram-clock-and-cs-io-for-esp32-pico-d4-C:-esp-v6.0-esp-idf-components-esp_psram-.-esp32-Kconfig.spiram-327", + "title": "PSRAM clock and cs IO for ESP32-PICO-D4", + "type": "menu" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32 && (ESPTOOLPY_FLASHMODE_DIO || ESPTOOLPY_FLASHMODE_DOUT) && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "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 DIO or DOUT.\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 psram only has QPI\nmode, so a WP pin setting is necessary.\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\nto Y and specify the GPIO number connected to the WP pin.\n\nWhen flash mode is set to QIO or QOUT, the PSRAM WP pin will be set the same as the SPI Flash WP pin\nconfigured in the bootloader.", + "id": "SPIRAM_CUSTOM_SPIWP_SD3_PIN", + "name": "SPIRAM_CUSTOM_SPIWP_SD3_PIN", + "range": null, + "title": "Use custom SPI PSRAM WP(SD3) Pin when flash pins set in eFuse (read help)", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32 && (ESPTOOLPY_FLASHMODE_DIO || ESPTOOLPY_FLASHMODE_DOUT) && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "The option \"Use custom SPI PSRAM WP(SD3) pin\" must be set or this value is ignored\n\nIf burning a customized set of SPI flash pins in eFuse and using DIO or DOUT mode for flash, set this\nvalue to the GPIO number of the SPIRAM WP pin.", + "id": "SPIRAM_SPIWP_SD3_PIN", + "name": "SPIRAM_SPIWP_SD3_PIN", + "range": null, + "title": "Custom SPI PSRAM WP(SD3) Pin", + "type": "int" + }, + { + "children": [], + "depends_on": "SPIRAM && SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Enable this option to fix single bit errors inside 64Mbit PSRAM.\n\nSome 64Mbit PSRAM chips have a hardware issue in the RAM which causes bit errors at multiple\nfixed bit positions.\n\nNote: If this option is enabled, the 64Mbit PSRAM chip will appear to be 32Mbit in size.\nApplications will not be affected unless the use the esp_himem APIs, which are not supported\nin 2T mode.", + "id": "SPIRAM_2T_MODE", + "name": "SPIRAM_2T_MODE", + "range": null, + "title": "Enable SPI PSRAM 2T mode", + "type": "bool" + } + ], + "depends_on": "SPIRAM && !APP_BUILD_TYPE_PURE_RAM_APP", + "id": "component-config-esp-psram-support-for-external-spi-connected-ram-spi-ram-config-C:-esp-v6.0-esp-idf-components-esp_psram-.-esp32-Kconfig.spiram-8", + "title": "SPI RAM config", + "type": "menu" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This enables support for an external SPI RAM chip, connected in parallel with the\nmain SPI flash chip.", + "id": "SPIRAM", + "name": "SPIRAM", + "range": null, + "title": "Support for external, SPI-connected RAM", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "id": "component-config-esp-psram-C:-esp-v6.0-esp-idf-components-esp_psram-Kconfig-1", + "title": "ESP PSRAM", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Place ring buffer functions in IRAM for better performance.\nBy default, ring buffer functions are placed in Flash to save IRAM.\nEnable this option if you need maximum performance for ring buffer operations.\n\nNote: This option increases IRAM usage.", + "id": "RINGBUF_IN_IRAM", + "name": "RINGBUF_IN_IRAM", + "range": null, + "title": "Place ring buffer functions in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "!RINGBUF_IN_IRAM", + "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.", + "id": "RINGBUF_PLACE_ISR_FUNCTIONS_INTO_FLASH", + "name": "RINGBUF_PLACE_ISR_FUNCTIONS_INTO_FLASH", + "range": null, + "title": "Place ISR ringbuf functions into flash", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-ringbuf-C:-esp-v6.0-esp-idf-components-esp_ringbuf-Kconfig-1", + "title": "ESP Ringbuf", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_ROM_PRINT_IN_IRAM", + "name": "ESP_ROM_PRINT_IN_IRAM", + "range": null, + "title": "Place print functions in IRAM", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-rom-C:-esp-v6.0-esp-idf-components-esp_rom-Kconfig-1", + "title": "ESP-ROM", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_LOW", + "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_LOW", + "range": null, + "title": "Security level low", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_MEDIUM", + "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_MEDIUM", + "range": null, + "title": "Security level medium", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_HIGH", + "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_HIGH", + "range": null, + "title": "Security level high", + "type": "bool" + } + ], + "depends_on": "ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP && SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", + "help": "Configure the DPA protection security level", + "id": "component-config-esp-security-specific-crypto-dpa-protection-enable-crypto-dpa-protection-at-startup-dpa-protection-level-C:-esp-v6.0-esp-idf-components-esp_security-Kconfig-16", + "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL", + "title": "DPA protection level", + "type": "choice" + } + ], + "depends_on": "SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", + "help": "This config controls the DPA (Differential Power Analysis) protection\nknob for the crypto peripherals. DPA protection dynamically adjusts\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.", + "id": "ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP", + "name": "ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP", + "range": null, + "title": "Enable crypto DPA protection at startup", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", + "help": null, + "id": "ESP_CRYPTO_DPA_PROTECTION_LEVEL", + "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": "SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", + "id": "component-config-esp-security-specific-crypto-dpa-protection-C:-esp-v6.0-esp-idf-components-esp_security-Kconfig-3", + "title": "Crypto DPA Protection", + "type": "menu" + }, + { + "children": [], + "depends_on": "SOC_ECC_CONSTANT_TIME_POINT_MUL", + "help": "If enabled, the app startup code will burn the ECC_FORCE_CONST_TIME efuse bit to force the\nECC peripheral to always perform constant time point multiplication operations,\nirrespective of the ECC_MULT_SECURITY_MODE status bit that is present in the ECC_MULT_CONF_REG\nregister. By default, ESP-IDF configures the ECC peripheral to perform constant time point\nmultiplication operations, so enabling this config would provide security enhancement only in\nthe cases when trusted boot is not enabled and the attacker tries carrying out non-constant\ntime point multiplication operations by changing the default ESP-IDF configurations.\nPerforming constant time operations protect the ECC multiplication operations from timing attacks.\n\nFor targets that support Secure Boot using ECDSA-P384, the write-protection bit of the efuse\nbit could be shared by multiple other efuse bits and can be programmed by the application when\nSecure Boot is enabled.\nThus, you could select CONFIG_SECURE_BOOT_SKIP_WRITE_PROTECTION_SCA, in case you would like\nto skip the write-protection of the efuse bit.", + "id": "ESP_CRYPTO_FORCE_ECC_CONSTANT_TIME_POINT_MUL", + "name": "ESP_CRYPTO_FORCE_ECC_CONSTANT_TIME_POINT_MUL", + "range": null, + "title": "Forcefully enable ECC constant time point multiplication operations", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_ECDSA_P192_CURVE_DEFAULT_DISABLED", + "help": "By default, only the 256-bit curve operations are allowed. If this configuration is enabled,\nit will set the eFuse to allow ECDSA operations using both the 192-bit and 256-bit curves.", + "id": "ESP_ECDSA_ENABLE_P192_CURVE", + "name": "ESP_ECDSA_ENABLE_P192_CURVE", + "range": null, + "title": "Enable ECDSA 192-curve operations", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-security-specific-C:-esp-v6.0-esp-idf-components-esp_security-Kconfig-1", + "title": "ESP Security Specific", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CONSOLE_UART_DEFAULT", + "name": "ESP_CONSOLE_UART_DEFAULT", + "range": null, + "title": "Default: UART0", + "type": "bool" + }, + { + "children": [], + "depends_on": "(IDF_TARGET_ESP32S2 || IDF_TARGET_ESP32S3) && !TINY_USB && ", + "help": null, + "id": "ESP_CONSOLE_USB_CDC", + "name": "ESP_CONSOLE_USB_CDC", + "range": null, + "title": "USB CDC", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_USB_SERIAL_JTAG_SUPPORTED && ", + "help": null, + "id": "ESP_CONSOLE_USB_SERIAL_JTAG", + "name": "ESP_CONSOLE_USB_SERIAL_JTAG", + "range": null, + "title": "USB Serial/JTAG Controller", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CONSOLE_UART_CUSTOM", + "name": "ESP_CONSOLE_UART_CUSTOM", + "range": null, + "title": "Custom UART", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CONSOLE_NONE", + "name": "ESP_CONSOLE_NONE", + "range": null, + "title": "None", + "type": "bool" + } + ], + "depends_on": null, + "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.", + "id": "component-config-esp-stdio-channel-for-console-output-C:-esp-v6.0-esp-idf-components-esp_stdio-Kconfig-2", + "name": "ESP_CONSOLE_UART", + "title": "Channel for console output", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CONSOLE_SECONDARY_NONE", + "name": "ESP_CONSOLE_SECONDARY_NONE", + "range": null, + "title": "No secondary console", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP_CONSOLE_USB_SERIAL_JTAG && ", + "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.", + "id": "ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG", + "name": "ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG", + "range": null, + "title": "USB_SERIAL_JTAG PORT", + "type": "bool" + } + ], + "depends_on": "SOC_USB_SERIAL_JTAG_SUPPORTED", + "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.", + "id": "component-config-esp-stdio-channel-for-console-secondary-output-C:-esp-v6.0-esp-idf-components-esp_stdio-Kconfig-35", + "name": "ESP_CONSOLE_SECONDARY", + "title": "Channel for console secondary output", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED", + "name": "ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_CONSOLE_UART", + "name": "ESP_CONSOLE_UART", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CONSOLE_UART_CUSTOM_NUM_0", + "name": "ESP_CONSOLE_UART_CUSTOM_NUM_0", + "range": null, + "title": "UART0", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CONSOLE_UART_CUSTOM_NUM_1", + "name": "ESP_CONSOLE_UART_CUSTOM_NUM_1", + "range": null, + "title": "UART1", + "type": "bool" + } + ], + "depends_on": "ESP_CONSOLE_UART_CUSTOM", + "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.", + "id": "component-config-esp-stdio-uart-peripheral-to-use-for-console-output-0-1--C:-esp-v6.0-esp-idf-components-esp_stdio-Kconfig-68", + "name": "ESP_CONSOLE_UART_NUM", + "title": "UART peripheral to use for console output (0-1)", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_CONSOLE_UART_NUM", + "name": "ESP_CONSOLE_UART_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_CONSOLE_ROM_SERIAL_PORT_NUM", + "name": "ESP_CONSOLE_ROM_SERIAL_PORT_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_CONSOLE_UART_CUSTOM", + "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). Value -1 means to\ncontinue using the default console UART TX pin.\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.", + "id": "ESP_CONSOLE_UART_TX_GPIO", + "name": "ESP_CONSOLE_UART_TX_GPIO", + "range": null, + "title": "UART TX on GPIO", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_CONSOLE_UART_CUSTOM", + "help": "This GPIO is used for console UART RX input in the ESP-IDF Bootloader and the app (including\ndefault standard input of the app). Value -1 means to continue using the default console UART\nRX pin.\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.", + "id": "ESP_CONSOLE_UART_RX_GPIO", + "name": "ESP_CONSOLE_UART_RX_GPIO", + "range": null, + "title": "UART RX on GPIO", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_CONSOLE_UART", + "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.", + "id": "ESP_CONSOLE_UART_BAUDRATE", + "name": "ESP_CONSOLE_UART_BAUDRATE", + "range": [ + 1200, + 4000000 + ], + "title": "UART console baud rate", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_CONSOLE_USB_CDC", + "help": "Set the size of USB CDC RX buffer. Increase the buffer size if your application\nis often receiving data over USB CDC.", + "id": "ESP_CONSOLE_USB_CDC_RX_BUF_SIZE", + "name": "ESP_CONSOLE_USB_CDC_RX_BUF_SIZE", + "range": null, + "title": "Size of USB CDC RX buffer", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_CONSOLE_USB_CDC", + "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.", + "id": "ESP_CONSOLE_USB_CDC_SUPPORT_ETS_PRINTF", + "name": "ESP_CONSOLE_USB_CDC_SUPPORT_ETS_PRINTF", + "range": null, + "title": "Enable esp_rom_printf / ESP_EARLY_LOG via USB CDC", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-stdio-C:-esp-v6.0-esp-idf-components-esp_stdio-Kconfig-1", + "title": "ESP-STDIO", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "IDF_ENV_FPGA && ", + "help": null, + "id": "ESP_DEFAULT_CPU_FREQ_MHZ_40", + "name": "ESP_DEFAULT_CPU_FREQ_MHZ_40", + "range": null, + "title": "40 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_DEFAULT_CPU_FREQ_MHZ_80", + "name": "ESP_DEFAULT_CPU_FREQ_MHZ_80", + "range": null, + "title": "80 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_DEFAULT_CPU_FREQ_MHZ_160", + "name": "ESP_DEFAULT_CPU_FREQ_MHZ_160", + "range": null, + "title": "160 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_DEFAULT_CPU_FREQ_MHZ_240", + "name": "ESP_DEFAULT_CPU_FREQ_MHZ_240", + "range": null, + "title": "240 MHz", + "type": "bool" + } + ], + "depends_on": null, + "help": "CPU frequency to be set on application startup.", + "id": "component-config-esp-system-settings-cpu-frequency-C:-esp-v6.0-esp-idf-components-esp_system-.-port-soc-esp32-Kconfig.cpu-1", + "name": "ESP_DEFAULT_CPU_FREQ_MHZ", + "title": "CPU frequency", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_DEFAULT_CPU_FREQ_MHZ", + "name": "ESP_DEFAULT_CPU_FREQ_MHZ", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_SYSTEM_SINGLE_CORE_MODE", + "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.\nThis option depends on the CONFIG_ESP_SYSTEM_SINGLE_CORE_MODE option because RTC fast memory\ncan be accessed only by PRO_CPU core.", + "id": "ESP32_RTCDATA_IN_FAST_MEM", + "name": "ESP32_RTCDATA_IN_FAST_MEM", + "range": null, + "title": "Place RTC_DATA_ATTR and RTC_RODATA_ATTR variables into RTC fast memory segment", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP32_USE_FIXED_STATIC_RAM_SIZE", + "help": "RAM size dedicated for static variables (.data & .bss sections).\nPlease note that the actual length will be reduced by BTDM_RESERVE_DRAM if Bluetooth\ncontroller is enabled.", + "id": "ESP32_FIXED_STATIC_RAM_SIZE", + "name": "ESP32_FIXED_STATIC_RAM_SIZE", + "range": null, + "title": "Fixed Static RAM size", + "type": "hex" + } + ], + "depends_on": null, + "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 ESP32_FIXED_STATIC_RAM_SIZE", + "id": "ESP32_USE_FIXED_STATIC_RAM_SIZE", + "name": "ESP32_USE_FIXED_STATIC_RAM_SIZE", + "range": null, + "title": "Use fixed static RAM size", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_SYSTEM_SINGLE_CORE_MODE", + "help": "If enabled, application can use IRAM as byte accessible region for storing data\n(Note: IRAM region cannot be used as task stack)\n\nThis is possible due to handling of exceptions `LoadStoreError (3)` and `LoadStoreAlignmentError (9)`\nEach unaligned read/write access will incur a penalty of maximum of 167 CPU cycles.", + "id": "ESP32_IRAM_AS_8BIT_ACCESSIBLE_MEMORY", + "name": "ESP32_IRAM_AS_8BIT_ACCESSIBLE_MEMORY", + "range": null, + "title": "Enable IRAM as 8 bit accessible memory", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "!ESP32_TRAX", + "help": "Reserve parts of SRAM1 for app IRAM which was previously reserved for bootloader DRAM.\nIf booting an app on an older bootloader from before this option was introduced, the app will fail\nto boot due to not recognizing the new IRAM memory area.\n\nIf this is the case please test carefully before pushing out any OTA updates.", + "id": "ESP_SYSTEM_ESP32_SRAM1_REGION_AS_IRAM", + "name": "ESP_SYSTEM_ESP32_SRAM1_REGION_AS_IRAM", + "range": null, + "title": "Reserve parts of SRAM1 for app IRAM (WARNING, read help before enabling)", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-system-settings-memory-non-backward-compatible-options-C:-esp-v6.0-esp-idf-components-esp_system-.-port-soc-esp32-Kconfig.memory-44", + "title": "Non-backward compatible options", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-esp-system-settings-memory-C:-esp-v6.0-esp-idf-components-esp_system-.-port-soc-esp32-Kconfig.memory-1", + "title": "Memory", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_MEMMAP_TRACEMEM", + "name": "ESP32_MEMMAP_TRACEMEM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_MEMMAP_TRACEMEM_TWOBANKS", + "name": "ESP32_MEMMAP_TRACEMEM_TWOBANKS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP32_TRAX && !ESP_SYSTEM_SINGLE_CORE_MODE", + "help": "The ESP32 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\n# Memory to reverse for trace, used in linker script", + "id": "ESP32_TRAX_TWOBANKS", + "name": "ESP32_TRAX_TWOBANKS", + "range": null, + "title": "Reserve memory for tracing both pro as well as app cpu execution", + "type": "bool" + } + ], + "depends_on": null, + "help": "The ESP32 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.", + "id": "ESP32_TRAX", + "name": "ESP32_TRAX", + "range": null, + "title": "Use TRAX tracing feature", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_TRACEMEM_RESERVE_DRAM", + "name": "ESP32_TRACEMEM_RESERVE_DRAM", + "range": null, + "title": null, + "type": "hex" + } + ], + "depends_on": null, + "id": "component-config-esp-system-settings-trace-memory-C:-esp-v6.0-esp-idf-components-esp_system-.-port-soc-esp32-Kconfig.tracemem-1", + "title": "Trace memory", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": "The following system functions will be placed in IRAM if this option is enabled:\n- system startup\n- system time\n- system error\n- system restart\n- system crosscore\n- system debug\n- system APB backup DMA lock\n- system application tick hook\n- Unified Behavior Sanitizer (UBSAN) hook\n- Interrupt watchdog handler\n- XTAL32K watchdog timer\n- IPC and IPC ISR", + "id": "ESP_SYSTEM_IN_IRAM", + "name": "ESP_SYSTEM_IN_IRAM", + "range": null, + "title": "Place system functions in IRAM", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "!ESP_SYSTEM_GDBSTUB_RUNTIME && ", + "help": "Outputs the relevant registers over the serial port and halt the\nprocessor. Needs a manual reset to restart.", + "id": "ESP_SYSTEM_PANIC_PRINT_HALT", + "name": "ESP_SYSTEM_PANIC_PRINT_HALT", + "range": null, + "title": "Print registers and halt", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP_SYSTEM_GDBSTUB_RUNTIME && ", + "help": "Outputs the relevant registers over the serial port and immediately\nreset the processor.", + "id": "ESP_SYSTEM_PANIC_PRINT_REBOOT", + "name": "ESP_SYSTEM_PANIC_PRINT_REBOOT", + "range": null, + "title": "Print registers and reboot", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP_SYSTEM_GDBSTUB_RUNTIME && ", + "help": "Just resets the processor without outputting anything", + "id": "ESP_SYSTEM_PANIC_SILENT_REBOOT", + "name": "ESP_SYSTEM_PANIC_SILENT_REBOOT", + "range": null, + "title": "Silent reboot", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_GDBSTUB_ENABLED && ", + "help": "Invoke gdbstub on the serial port, allowing for gdb to attach to it to do a postmortem\nof the crash.", + "id": "ESP_SYSTEM_PANIC_GDBSTUB", + "name": "ESP_SYSTEM_PANIC_GDBSTUB", + "range": null, + "title": "GDBStub on panic", + "type": "bool" + } + ], + "depends_on": null, + "help": "If FreeRTOS detects unexpected behaviour or an unhandled exception, the panic handler is\ninvoked. Configure the panic handler's action here.", + "id": "component-config-esp-system-settings-panic-handler-behaviour-C:-esp-v6.0-esp-idf-components-esp_system-Kconfig-30", + "name": "ESP_SYSTEM_PANIC", + "title": "Panic handler behaviour", + "type": "choice" + }, + { + "children": [], + "depends_on": "ESP_SYSTEM_PANIC_PRINT_REBOOT", + "help": "After the panic handler executes, you can specify a number of seconds to\nwait before the device reboots.", + "id": "ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS", + "name": "ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS", + "range": [ + 0, + 99 + ], + "title": "Panic reboot delay (Seconds)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Only initialize and use the main core.", + "id": "ESP_SYSTEM_SINGLE_CORE_MODE", + "name": "ESP_SYSTEM_SINGLE_CORE_MODE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_SYSTEM_RTC_EXT_XTAL", + "name": "ESP_SYSTEM_RTC_EXT_XTAL", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_SYSTEM_RTC_EXT_OSC", + "name": "ESP_SYSTEM_RTC_EXT_OSC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_SYSTEM_RTC_EXT_XTAL", + "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).", + "id": "ESP_SYSTEM_RTC_EXT_XTAL_BOOTSTRAP_CYCLES", + "name": "ESP_SYSTEM_RTC_EXT_XTAL_BOOTSTRAP_CYCLES", + "range": null, + "title": "Bootstrap cycles for external 32kHz crystal", + "type": "int" + }, + { + "children": [], + "depends_on": "SOC_RTC_FAST_MEM_SUPPORTED", + "help": null, + "id": "ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK", + "name": "ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK", + "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. Speed wise RTC fast memory operates on\nAPB clock and hence does not have much performance impact.", + "id": "ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP", + "name": "ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP", + "range": null, + "title": "Enable RTC fast memory for dynamic allocations", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "When selected, no backtracing will be performed at runtime. By using idf.py monitor, it\nis still possible to get a backtrace when a panic occurs.", + "id": "ESP_SYSTEM_NO_BACKTRACE", + "name": "ESP_SYSTEM_NO_BACKTRACE", + "range": null, + "title": "No backtracing", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "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\nunwinding and generation of both .eh_frame and .eh_frame_hdr sections, resulting in a bigger binary\nsize (20% to 100% larger). The main purpose of this option is to be able to have a backtrace parsed\nand printed by the program itself, regardless of the serial monitor used.\nThis option is not recommended to be used for production.", + "id": "ESP_SYSTEM_USE_EH_FRAME", + "name": "ESP_SYSTEM_USE_EH_FRAME", + "range": null, + "title": "Generate and use eh_frame for backtracing", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "This configuration allows the compiler to allocate CPU register s0 as the frame pointer. The main usage\nof the frame pointer is to be able to generate a backtrace from the panic handler on exception.\nEnabling this option results in bigger and slightly slower code since all functions will have\nto populate this register and won't be able to use it as a general-purpose register anymore.", + "id": "ESP_SYSTEM_USE_FRAME_POINTER", + "name": "ESP_SYSTEM_USE_FRAME_POINTER", + "range": null, + "title": "Use CPU Frame Pointer register", + "type": "bool" + } + ], + "depends_on": "IDF_TARGET_ARCH_RISCV", + "help": "Configure how backtracing will be performed at runtime when a panic occurs.", + "id": "component-config-esp-system-settings-backtracing-method-C:-esp-v6.0-esp-idf-components-esp_system-Kconfig-126", + "name": "ESP_BACKTRACING_METHOD", + "title": "Backtracing method", + "type": "choice" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "SOC_MEMPROT_SUPPORTED && ", + "help": "This option enables memory protection using the Permission Control Module (PMS).", + "id": "ESP_SYSTEM_MEMPROT_PMS", + "name": "ESP_SYSTEM_MEMPROT_PMS", + "range": null, + "title": "Enable Permission Control Module (PMS) configurations", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_CPU_IDRAM_SPLIT_USING_PMP && !SECURE_ENABLE_TEE && ", + "help": "This option enables memory protection using CPU PMP.", + "id": "ESP_SYSTEM_MEMPROT_PMP", + "name": "ESP_SYSTEM_MEMPROT_PMP", + "range": null, + "title": "Enable CPU's Physical Memory Protection (PMP) configurations", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_ENABLE_TEE && ", + "help": "This option enables the default memory protection provided by TEE.", + "id": "ESP_SYSTEM_MEMPROT_TEE", + "name": "ESP_SYSTEM_MEMPROT_TEE", + "range": null, + "title": "Enable Trusted Execution Environment (TEE) configurations", + "type": "bool" + } + ], + "depends_on": "ESP_SYSTEM_MEMPROT", + "help": null, + "id": "component-config-esp-system-settings-enable-memory-protection-memory-protection-configurations-C:-esp-v6.0-esp-idf-components-esp_system-Kconfig-173", + "name": "ESP_SYSTEM_MEMPROT_MODE", + "title": "Memory Protection configurations", + "type": "choice" + }, + { + "children": [], + "depends_on": "ESP_SYSTEM_MEMPROT && ESP_SYSTEM_MEMPROT_PMS", + "help": "Once locked, memory protection settings cannot be changed anymore.\nThe lock is reset only on the chip startup.", + "id": "ESP_SYSTEM_MEMPROT_PMS_LOCK", + "name": "ESP_SYSTEM_MEMPROT_PMS_LOCK", + "range": null, + "title": "Lock memory protection settings", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_SYSTEM_MEMPROT && IDF_TARGET_ARCH_RISCV && SOC_LP_CORE_SUPPORTED && ESP_SYSTEM_MEMPROT_PMP", + "help": "If enabled, user can run code available in LP Core image.\n\nWarning: on ESP32-P4 this will also mark the memory area used for BOOTLOADER_RESERVE_RTC_MEM\nas executable. If you consider this a security risk then do not activate this option.", + "id": "ESP_SYSTEM_MEMPROT_PMP_LP_CORE_RESERVE_MEM_EXEC", + "name": "ESP_SYSTEM_MEMPROT_PMP_LP_CORE_RESERVE_MEM_EXEC", + "range": null, + "title": "Make LP core reserved memory executable from HP core", + "type": "bool" + } + ], + "depends_on": "SOC_CPU_IDRAM_SPLIT_USING_PMP || SECURE_ENABLE_TEE || SOC_MEMPROT_SUPPORTED", + "help": "This option enables memory protection for the valid memory regions.\nThis feature also automatically splits the ROM, RAM and flash memory into data and\ninstruction segments and sets Read/Execute permissions for the instruction part\n(below given splitting address) and Read/Write permissions for the data part\n(above the splitting address). The memory protection is effective on all access\nthrough the IRAM0 and DRAM0 buses.\n\nNote: allocating memory with MALLOC_CAP_EXEC capability is not possible when this config is enabled.", + "id": "ESP_SYSTEM_MEMPROT", + "name": "ESP_SYSTEM_MEMPROT", + "range": null, + "title": "Enable memory protection", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Config system event queue size in different application.", + "id": "ESP_SYSTEM_EVENT_QUEUE_SIZE", + "name": "ESP_SYSTEM_EVENT_QUEUE_SIZE", + "range": null, + "title": "System event queue size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Config system event task stack size in different application.", + "id": "ESP_SYSTEM_EVENT_TASK_STACK_SIZE", + "name": "ESP_SYSTEM_EVENT_TASK_STACK_SIZE", + "range": null, + "title": "Event loop task stack size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "ESP_MAIN_TASK_STACK_SIZE", + "name": "ESP_MAIN_TASK_STACK_SIZE", + "range": null, + "title": "Main task stack size", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_MAIN_TASK_AFFINITY_CPU0", + "name": "ESP_MAIN_TASK_AFFINITY_CPU0", + "range": null, + "title": "CPU0", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_UNICORE && ", + "help": null, + "id": "ESP_MAIN_TASK_AFFINITY_CPU1", + "name": "ESP_MAIN_TASK_AFFINITY_CPU1", + "range": null, + "title": "CPU1", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_MAIN_TASK_AFFINITY_NO_AFFINITY", + "name": "ESP_MAIN_TASK_AFFINITY_NO_AFFINITY", + "range": null, + "title": "No affinity", + "type": "bool" + } + ], + "depends_on": null, + "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.", + "id": "component-config-esp-system-settings-main-task-core-affinity-C:-esp-v6.0-esp-idf-components-esp_system-Kconfig-240", + "name": "ESP_MAIN_TASK_AFFINITY", + "title": "Main task core affinity", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAIN_TASK_AFFINITY", + "name": "ESP_MAIN_TASK_AFFINITY", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": null, + "help": "Minimal value of size, in bytes, accepted to execute a expression\nwith shared stack.", + "id": "ESP_MINIMAL_SHARED_STACK_SIZE", + "name": "ESP_MINIMAL_SHARED_STACK_SIZE", + "range": null, + "title": "Minimal allowed size for shared stack", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_INT_WDT", + "help": "The timeout of the watchdog, in milliseconds. Make this higher than the FreeRTOS tick rate.", + "id": "ESP_INT_WDT_TIMEOUT_MS", + "name": "ESP_INT_WDT_TIMEOUT_MS", + "range": [ + 10, + 10000 + ], + "title": "Interrupt watchdog timeout (ms)", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_INT_WDT && !FREERTOS_UNICORE", + "help": "Also detect if interrupts on CPU 1 are disabled for too long.", + "id": "ESP_INT_WDT_CHECK_CPU1", + "name": "ESP_INT_WDT_CHECK_CPU1", + "range": null, + "title": "Also watch CPU1 tick interrupt", + "type": "bool" + } + ], + "depends_on": null, + "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.", + "id": "ESP_INT_WDT", + "name": "ESP_INT_WDT", + "range": null, + "title": "Interrupt watchdog", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_TASK_WDT_EN", + "help": null, + "id": "ESP_TASK_WDT_USE_ESP_TIMER", + "name": "ESP_TASK_WDT_USE_ESP_TIMER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_TASK_WDT_INIT", + "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)", + "id": "ESP_TASK_WDT_PANIC", + "name": "ESP_TASK_WDT_PANIC", + "range": null, + "title": "Invoke panic handler on Task Watchdog timeout", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_TASK_WDT_INIT", + "help": "Timeout period configuration for the Task Watchdog Timer in seconds.\nThis is also configurable at run time (see Task Watchdog Timer API Reference)", + "id": "ESP_TASK_WDT_TIMEOUT_S", + "name": "ESP_TASK_WDT_TIMEOUT_S", + "range": [ + 1, + 60 + ], + "title": "Task Watchdog timeout period (seconds)", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_TASK_WDT_INIT", + "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.", + "id": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0", + "name": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0", + "range": null, + "title": "Watch CPU0 Idle Task", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_TASK_WDT_INIT && !FREERTOS_UNICORE", + "help": "If this option is enabled, the Task Watchdog Timer will wach the CPU1\nIdle Task.", + "id": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1", + "name": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1", + "range": null, + "title": "Watch CPU1 Idle Task", + "type": "bool" + } + ], + "depends_on": "ESP_TASK_WDT_EN", + "help": "Enabling this option will cause the Task Watchdog Timer to be initialized\nautomatically at startup.", + "id": "ESP_TASK_WDT_INIT", + "name": "ESP_TASK_WDT_INIT", + "range": null, + "title": "Initialize Task Watchdog Timer on startup", + "type": "bool" + } + ], + "depends_on": null, + "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)", + "id": "ESP_TASK_WDT_EN", + "name": "ESP_TASK_WDT_EN", + "range": null, + "title": "Enable Task Watchdog Timer", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_XT_WDT", + "help": "Timeout period configuration for the XTAL32K watchdog timer based on RTC_CLK.", + "id": "ESP_XT_WDT_TIMEOUT", + "name": "ESP_XT_WDT_TIMEOUT", + "range": null, + "title": "XTAL32K watchdog timeout period", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_XT_WDT", + "help": "Enable this to automatically switch to BACKUP32K_CLK as the source of RTC_SLOW_CLK when\nthe watchdog timer expires.", + "id": "ESP_XT_WDT_BACKUP_CLK_ENABLE", + "name": "ESP_XT_WDT_BACKUP_CLK_ENABLE", + "range": null, + "title": "Automatically switch to BACKUP32K_CLK when timer expires", + "type": "bool" + } + ], + "depends_on": "SOC_XT_WDT_SUPPORTED && (ESP_SYSTEM_RTC_EXT_OSC || ESP_SYSTEM_RTC_EXT_XTAL)", + "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.", + "id": "ESP_XT_WDT", + "name": "ESP_XT_WDT", + "range": null, + "title": "Initialize XTAL32K watchdog timer on startup", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "ESP_PANIC_HANDLER_IRAM", + "name": "ESP_PANIC_HANDLER_IRAM", + "range": null, + "title": "Place panic handler code in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP32_TRAX && !ESP32S2_TRAX && !ESP32S3_TRAX", + "help": "Debug stubs are used by OpenOCD to execute pre-compiled onboard code\nwhich does some useful debugging stuff, e.g. GCOV data dump.", + "id": "ESP_DEBUG_STUBS_ENABLE", + "name": "ESP_DEBUG_STUBS_ENABLE", + "range": null, + "title": "OpenOCD debug stubs", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DEBUG_HAVE_OCD_STUB_BINS", + "help": "OpenOCD uses stub code to access flash during programming or when inserting and removing\nSW flash breakpoints.\nTo execute stub code, OpenOCD allocates memory on the target device, backs up the existing memory,\nloads the stub binary, runs the binary, and then restores the original memory.\nThis process can be time-consuming, especially when using USB serial JTAG.\nBy enabling this option, 8K of memory in RAM will be preallocated with the stub code,\neliminating the need to back up and restore the memory region.", + "id": "ESP_DEBUG_INCLUDE_OCD_STUB_BINS", + "name": "ESP_DEBUG_INCLUDE_OCD_STUB_BINS", + "range": null, + "title": "Preload OpenOCD stub binaries to speed up debugging. 8K memory will be reserved", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "The FreeRTOS panic and unhandled exception handlers can detect a JTAG OCD debugger and\ninstead of panicking, have the debugger stop on the offending instruction.", + "id": "ESP_DEBUG_OCDAWARE", + "name": "ESP_DEBUG_OCDAWARE", + "range": null, + "title": "Make exception and panic handlers JTAG/OCD aware", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "IDF_TARGET_ESP32 && ", + "help": "Using level 5 interrupt for Interrupt Watchdog, IPC_ISR and other system checks.", + "id": "ESP_SYSTEM_CHECK_INT_LEVEL_5", + "name": "ESP_SYSTEM_CHECK_INT_LEVEL_5", + "range": null, + "title": "Level 5 interrupt", + "type": "bool" + }, + { + "children": [], + "depends_on": "!BTDM_CTRL_HLI && ", + "help": "Using level 4 interrupt for Interrupt Watchdog, IPC_ISR and other system checks.", + "id": "ESP_SYSTEM_CHECK_INT_LEVEL_4", + "name": "ESP_SYSTEM_CHECK_INT_LEVEL_4", + "range": null, + "title": "Level 4 interrupt", + "type": "bool" + } + ], + "depends_on": null, + "help": "Interrupt level to use for Interrupt Watchdog, IPC_ISR and other system checks.", + "id": "component-config-esp-system-settings-interrupt-level-to-use-for-interrupt-watchdog-and-other-system-checks-C:-esp-v6.0-esp-idf-components-esp_system-Kconfig-426", + "name": "ESP_SYSTEM_CHECK_INT_LEVEL", + "title": "Interrupt level to use for Interrupt Watchdog and other system checks", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "If set, the first time the app boots it will disable the BASIC ROM Console\npermanently (by burning an eFuse).\n\nOtherwise, the BASIC ROM Console starts on reset if no valid bootloader is\nread from the flash.\n\n(Enabling secure boot also disables the BASIC ROM Console by default.)", + "id": "ESP32_DISABLE_BASIC_ROM_CONSOLE", + "name": "ESP32_DISABLE_BASIC_ROM_CONSOLE", + "range": null, + "title": "Permanently disable BASIC ROM Console", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP_SYSTEM_SINGLE_CORE_MODE && SPIRAM", + "help": null, + "id": "ESP32_ECO3_CACHE_LOCK_FIX", + "name": "ESP32_ECO3_CACHE_LOCK_FIX", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_ASSIST_DEBUG_SUPPORTED", + "help": "This config allows to trigger a panic interrupt when Stack Pointer register goes out of allocated stack\nmemory bounds.", + "id": "ESP_SYSTEM_HW_STACK_GUARD", + "name": "ESP_SYSTEM_HW_STACK_GUARD", + "range": null, + "title": "Hardware stack guard", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32C2 || IDF_TARGET_ESP32S3 || IDF_TARGET_ESP32C6 || IDF_TARGET_ESP32H2", + "help": "This configuration helps to address an BBPLL inaccurate issue when boot from certain bootloader version,\nwhich may increase about the boot-up time by about 200 us. Disable this when your bootloader is built with\nESP-IDF version v5.2 and above.", + "id": "ESP_SYSTEM_BBPLL_RECALIB", + "name": "ESP_SYSTEM_BBPLL_RECALIB", + "range": null, + "title": "Re-calibration BBPLL at startup", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_ASSIST_DEBUG_SUPPORTED", + "help": "This option will enable the PC recording function of assist_debug module. The PC value of the CPU will be\nrecorded to PC record register in assist_debug module in real time. When an exception occurs and the CPU\nis reset, this register will be kept, then we can use the recorded PC to debug the causes of the reset.", + "id": "ESP_SYSTEM_HW_PC_RECORD", + "name": "ESP_SYSTEM_HW_PC_RECORD", + "range": null, + "title": "Hardware PC recording", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-system-settings-C:-esp-v6.0-esp-idf-components-esp_system-Kconfig-2", + "title": "ESP System Settings", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_IPC_ENABLE", + "name": "ESP_IPC_ENABLE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "ESP_IPC_TASK_STACK_SIZE", + "name": "ESP_IPC_TASK_STACK_SIZE", + "range": [ + 512, + 65536 + ], + "title": "Inter-Processor Call (IPC) task stack size", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_IPC_ENABLE", + "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.", + "id": "ESP_IPC_USES_CALLERS_PRIORITY", + "name": "ESP_IPC_USES_CALLERS_PRIORITY", + "range": null, + "title": "IPC runs at caller's priority", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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 intended 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).", + "id": "ESP_IPC_ISR_ENABLE", + "name": "ESP_IPC_ISR_ENABLE", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-ipc-inter-processor-call--C:-esp-v6.0-esp-idf-components-esp_system-Kconfig-475", + "title": "IPC (Inter-Processor Call)", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_TIMER_IN_IRAM", + "name": "ESP_TIMER_IN_IRAM", + "range": null, + "title": "Place esp_timer functions in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "ESP_TIMER_PROFILING", + "name": "ESP_TIMER_PROFILING", + "range": null, + "title": "Enable esp_timer profiling features", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_TIME_FUNCS_USE_RTC_TIMER", + "name": "ESP_TIME_FUNCS_USE_RTC_TIMER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_TIME_FUNCS_USE_ESP_TIMER", + "name": "ESP_TIME_FUNCS_USE_ESP_TIMER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_TIME_FUNCS_USE_NONE", + "name": "ESP_TIME_FUNCS_USE_NONE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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 seeing 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\".", + "id": "ESP_TIMER_TASK_STACK_SIZE", + "name": "ESP_TIMER_TASK_STACK_SIZE", + "range": [ + 2048, + 65536 + ], + "title": "High-resolution timer task stack size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "This sets the interrupt priority level for esp_timer ISR.\nA higher value reduces interrupt latency by minimizing the timer processing delay.", + "id": "ESP_TIMER_INTERRUPT_LEVEL", + "name": "ESP_TIMER_INTERRUPT_LEVEL", + "range": [ + 1, + 3 + ], + "title": "Interrupt level", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "This shows some hidden features of esp_timer.\nNote that they may break other features, use them with care.", + "id": "ESP_TIMER_SHOW_EXPERIMENTAL", + "name": "ESP_TIMER_SHOW_EXPERIMENTAL", + "range": null, + "title": "show esp_timer's experimental features", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_TIMER_TASK_AFFINITY", + "name": "ESP_TIMER_TASK_AFFINITY", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_TIMER_TASK_AFFINITY_CPU0", + "name": "ESP_TIMER_TASK_AFFINITY_CPU0", + "range": null, + "title": "CPU0", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_UNICORE && ESP_TIMER_SHOW_EXPERIMENTAL && ", + "help": null, + "id": "ESP_TIMER_TASK_AFFINITY_CPU1", + "name": "ESP_TIMER_TASK_AFFINITY_CPU1", + "range": null, + "title": "CPU1", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_UNICORE && ESP_TIMER_SHOW_EXPERIMENTAL && ", + "help": null, + "id": "ESP_TIMER_TASK_AFFINITY_NO_AFFINITY", + "name": "ESP_TIMER_TASK_AFFINITY_NO_AFFINITY", + "range": null, + "title": "No affinity", + "type": "bool" + } + ], + "depends_on": null, + "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.", + "id": "component-config-esp-timer-high-resolution-timer--esp_timer-task-core-affinity-C:-esp-v6.0-esp-idf-components-esp_timer-Kconfig-60", + "name": "ESP_TIMER_TASK_AFFINITY", + "title": "esp_timer task core affinity", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_TIMER_ISR_AFFINITY_CPU0", + "name": "ESP_TIMER_ISR_AFFINITY_CPU0", + "range": null, + "title": "CPU0", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_UNICORE && ESP_TIMER_SHOW_EXPERIMENTAL && ", + "help": null, + "id": "ESP_TIMER_ISR_AFFINITY_CPU1", + "name": "ESP_TIMER_ISR_AFFINITY_CPU1", + "range": null, + "title": "CPU1", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_UNICORE && ESP_TIMER_SHOW_EXPERIMENTAL && ", + "help": null, + "id": "ESP_TIMER_ISR_AFFINITY_NO_AFFINITY", + "name": "ESP_TIMER_ISR_AFFINITY_NO_AFFINITY", + "range": null, + "title": "No affinity", + "type": "bool" + } + ], + "depends_on": null, + "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.", + "id": "component-config-esp-timer-high-resolution-timer--timer-interrupt-core-affinity-C:-esp-v6.0-esp-idf-components-esp_timer-Kconfig-81", + "name": "ESP_TIMER_ISR_AFFINITY", + "title": "timer interrupt core affinity", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "Allows using ESP_TIMER_ISR dispatch method (ESP_TIMER_TASK dispatch method is also available).\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.", + "id": "ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD", + "name": "ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD", + "range": null, + "title": "Support ISR dispatch method", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32", + "help": null, + "id": "ESP_TIMER_IMPL_TG0_LAC", + "name": "ESP_TIMER_IMPL_TG0_LAC", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!IDF_TARGET_ESP32", + "help": null, + "id": "ESP_TIMER_IMPL_SYSTIMER", + "name": "ESP_TIMER_IMPL_SYSTIMER", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-timer-high-resolution-timer--C:-esp-v6.0-esp-idf-components-esp_timer-Kconfig-1", + "title": "ESP Timer (High Resolution Timer)", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Use a custom encoder provided by an external component.\nThe trace core system will be enabled but no built-in encoder is included.\n\nThe external component MUST provide a header file named\n\"esp_trace_freertos_impl.h\" in its include directories that\ndefines all required FreeRTOS trace macros.", + "id": "ESP_TRACE_LIB_EXTERNAL", + "name": "ESP_TRACE_LIB_EXTERNAL", + "range": null, + "title": "External library from component registry", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_TRACE_LIB_NONE", + "name": "ESP_TRACE_LIB_NONE", + "range": null, + "title": "Disabled", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select the trace library to use.", + "id": "component-config-esp-trace-configuration-trace-library-C:-esp-v6.0-esp-idf-components-esp_trace-Kconfig-3", + "name": "ESP_TRACE_LIBRARY", + "title": "Trace library", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_TRACE_LIB_NAME", + "name": "ESP_TRACE_LIB_NAME", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_TRACE_TRANSPORT_APPTRACE", + "name": "ESP_TRACE_TRANSPORT_APPTRACE", + "range": null, + "title": "ESP-IDF apptrace", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP_TRACE_LIB_NONE && ", + "help": "Use a transport registered by an external component.\nThe trace core system will be enabled but no built-in transport is included.", + "id": "ESP_TRACE_TRANSPORT_EXTERNAL", + "name": "ESP_TRACE_TRANSPORT_EXTERNAL", + "range": null, + "title": "External transport from component registry", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_TRACE_TRANSPORT_NONE", + "name": "ESP_TRACE_TRANSPORT_NONE", + "range": null, + "title": "None", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select the trace backend to use.", + "id": "component-config-esp-trace-configuration-trace-transport-C:-esp-v6.0-esp-idf-components-esp_trace-Kconfig-28", + "name": "ESP_TRACE_TRANSPORT", + "title": "Trace transport", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_TRACE_TRANSPORT_NAME", + "name": "ESP_TRACE_TRANSPORT_NAME", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": "Internal config to enable tracing dependency around components.", + "id": "ESP_TRACE_ENABLE", + "name": "ESP_TRACE_ENABLE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "!PM_ENABLE && ", + "help": null, + "id": "APPTRACE_DEST_JTAG", + "name": "APPTRACE_DEST_JTAG", + "range": null, + "title": "JTAG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "APPTRACE_DEST_UART", + "name": "APPTRACE_DEST_UART", + "range": null, + "title": "UART", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Compile both JTAG and UART interfaces in advance (higher IRAM usage).\nAllows runtime switching between JTAG and UART via esp_apptrace_get_user_params().\n\nIf esp_apptrace_get_user_params() is not provided by the\napplication, JTAG is used by default with the default\nconfiguration defined in components/app_trace/include/esp_app_trace_config.h.", + "id": "APPTRACE_DEST_ALL", + "name": "APPTRACE_DEST_ALL", + "range": null, + "title": "All (runtime selection)", + "type": "bool" + } + ], + "depends_on": "ESP_TRACE_TRANSPORT_APPTRACE", + "help": "Select destination for application trace: JTAG, UART, or both.", + "id": "component-config-esp-trace-configuration-application-level-tracing-data-destination-C:-esp-v6.0-esp-idf-components-app_trace-Kconfig.apptrace-3", + "name": "APPTRACE_DESTINATION", + "title": "Data Destination", + "type": "choice" + }, + { + "children": [], + "depends_on": "APPTRACE_DEST_JTAG && !APPTRACE_TRAX_ENABLE && ESP_TRACE_TRANSPORT_APPTRACE", + "help": "Size of the memory buffer for trace data in bytes.", + "id": "APPTRACE_BUF_SIZE", + "name": "APPTRACE_BUF_SIZE", + "range": null, + "title": "Size of the apptrace buffer", + "type": "int" + }, + { + "children": [], + "depends_on": "APPTRACE_DEST_UART && ESP_TRACE_TRANSPORT_APPTRACE", + "help": "UART communication port number for the apptrace destination.\nSee UART documentation for available port numbers.", + "id": "APPTRACE_DEST_UART_NUM", + "name": "APPTRACE_DEST_UART_NUM", + "range": null, + "title": "UART port number", + "type": "int" + }, + { + "children": [], + "depends_on": "APPTRACE_DEST_UART && ESP_TRACE_TRANSPORT_APPTRACE", + "help": "This GPIO is used for UART TX pin.", + "id": "APPTRACE_UART_TX_GPIO", + "name": "APPTRACE_UART_TX_GPIO", + "range": null, + "title": "UART TX on GPIO", + "type": "int" + }, + { + "children": [], + "depends_on": "APPTRACE_DEST_UART && ESP_TRACE_TRANSPORT_APPTRACE", + "help": "This GPIO is used for UART RX pin.", + "id": "APPTRACE_UART_RX_GPIO", + "name": "APPTRACE_UART_RX_GPIO", + "range": null, + "title": "UART RX on GPIO", + "type": "int" + }, + { + "children": [], + "depends_on": "APPTRACE_DEST_UART && ESP_TRACE_TRANSPORT_APPTRACE", + "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.", + "id": "APPTRACE_UART_BAUDRATE", + "name": "APPTRACE_UART_BAUDRATE", + "range": null, + "title": "UART baud rate", + "type": "int" + }, + { + "children": [], + "depends_on": "APPTRACE_DEST_UART && ESP_TRACE_TRANSPORT_APPTRACE", + "help": "Size of the UART output ring buffer. Must be power of two.\nThis size related to the baudrate, system tick frequency and amount of data to transfer.", + "id": "APPTRACE_UART_TX_BUFF_SIZE", + "name": "APPTRACE_UART_TX_BUFF_SIZE", + "range": null, + "title": "UART TX ring buffer size", + "type": "int" + }, + { + "children": [], + "depends_on": "APPTRACE_DEST_UART && ESP_TRACE_TRANSPORT_APPTRACE", + "help": "Maximum size of the single message to transfer.", + "id": "APPTRACE_UART_TX_MSG_SIZE", + "name": "APPTRACE_UART_TX_MSG_SIZE", + "range": null, + "title": "UART TX message size", + "type": "int" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ARCH_XTENSA && !ESP32_TRAX && !ESP32S2_TRAX && !ESP32S3_TRAX && ESP_TRACE_TRANSPORT_APPTRACE", + "help": "Enables/disable TRAX tracing HW.", + "id": "APPTRACE_TRAX_ENABLE", + "name": "APPTRACE_TRAX_ENABLE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_TRACE_TRANSPORT_APPTRACE", + "help": "Enables/disable application tracing module internal sync lock to prevent data corruption\nwhen multiple tasks are writing to the same trace buffer.\nKeep in mind this will slow down the trace data transfer to the host.", + "id": "APPTRACE_LOCK_ENABLE", + "name": "APPTRACE_LOCK_ENABLE", + "range": null, + "title": "Internal Sync Lock Enable", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_TRACE_TRANSPORT_APPTRACE", + "help": "Timeout for flushing last trace data to host in case of panic. In ms.\nUse -1 to disable timeout and wait forever.", + "id": "APPTRACE_ONPANIC_HOST_FLUSH_TMO", + "name": "APPTRACE_ONPANIC_HOST_FLUSH_TMO", + "range": null, + "title": "Timeout for flushing last trace data to host on panic", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_TRACE_TRANSPORT_APPTRACE", + "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.", + "id": "APPTRACE_POSTMORTEM_FLUSH_THRESH", + "name": "APPTRACE_POSTMORTEM_FLUSH_THRESH", + "range": null, + "title": "Threshold for flushing last trace data to host on panic", + "type": "int" + } + ], + "depends_on": "ESP_TRACE_TRANSPORT_APPTRACE", + "id": "component-config-esp-trace-configuration-application-level-tracing-C:-esp-v6.0-esp-idf-components-app_trace-Kconfig.apptrace-1", + "title": "Application Level Tracing", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_SYSTEM_SINGLE_CORE_MODE && !PM_ENABLE && !IDF_TARGET_ESP32C3 && ", + "help": null, + "id": "ESP_TRACE_TS_SOURCE_CCOUNT", + "name": "ESP_TRACE_TS_SOURCE_CCOUNT", + "range": null, + "title": "CPU cycle counter (CCOUNT)", + "type": "bool" + }, + { + "children": [], + "depends_on": "!PM_ENABLE && !IDF_TARGET_ESP32C3 && ", + "help": null, + "id": "ESP_TRACE_TS_SOURCE_GPTIMER", + "name": "ESP_TRACE_TS_SOURCE_GPTIMER", + "range": null, + "title": "General Purpose Timer (Timer Group)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_TRACE_TS_SOURCE_ESP_TIMER", + "name": "ESP_TRACE_TS_SOURCE_ESP_TIMER", + "range": null, + "title": "esp_timer high resolution timer", + "type": "bool" + } + ], + "depends_on": "ESP_TRACE_ENABLE", + "help": "Select the timestamp source for tracing.", + "id": "component-config-esp-trace-configuration-trace-timestamp-source-C:-esp-v6.0-esp-idf-components-esp_trace-Kconfig-62", + "name": "ESP_TRACE_TIMESTAMP_SOURCE", + "title": "Trace timestamp source", + "type": "choice" + } + ], + "depends_on": null, + "id": "component-config-esp-trace-configuration-C:-esp-v6.0-esp-idf-components-esp_trace-Kconfig-1", + "title": "ESP Trace Configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_WIFI_ENABLED", + "name": "ESP_WIFI_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_HOST_WIFI_ENABLED", + "help": null, + "id": "ESP_WIFI_CONTROLLER_TARGET", + "name": "ESP_WIFI_CONTROLLER_TARGET", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": "ESP_HOST_WIFI_ENABLED", + "help": null, + "id": "ESP_WIFI_TARGET_ESP32", + "name": "ESP_WIFI_TARGET_ESP32", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": "SOC_WIRELESS_HOST_SUPPORTED", + "help": null, + "id": "ESP_HOST_WIFI_ENABLED", + "name": "ESP_HOST_WIFI_ENABLED", + "range": null, + "title": "Host WiFi Enable", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "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.", + "id": "ESP_WIFI_STATIC_RX_BUFFER_NUM", + "name": "ESP_WIFI_STATIC_RX_BUFFER_NUM", + "range": [ + 2, + 25 + ], + "title": "Max number of WiFi static RX buffers", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "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.", + "id": "ESP_WIFI_DYNAMIC_RX_BUFFER_NUM", + "name": "ESP_WIFI_DYNAMIC_RX_BUFFER_NUM", + "range": [ + 0, + 128 + ], + "title": "Max number of WiFi dynamic RX buffers", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_WIFI_STATIC_TX_BUFFER", + "name": "ESP_WIFI_STATIC_TX_BUFFER", + "range": null, + "title": "Static", + "type": "bool" + }, + { + "children": [], + "depends_on": "!(SPIRAM_TRY_ALLOCATE_WIFI_LWIP && !SPIRAM_IGNORE_NOTFOUND) && ", + "help": null, + "id": "ESP_WIFI_DYNAMIC_TX_BUFFER", + "name": "ESP_WIFI_DYNAMIC_TX_BUFFER", + "range": null, + "title": "Dynamic", + "type": "bool" + } + ], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "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.", + "id": "component-config-wi-fi-type-of-wifi-tx-buffers-C:-esp-v6.0-esp-idf-components-esp_wifi-Kconfig-60", + "name": "ESP_WIFI_TX_BUFFER", + "title": "Type of WiFi TX buffers", + "type": "choice" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "help": null, + "id": "ESP_WIFI_TX_BUFFER_TYPE", + "name": "ESP_WIFI_TX_BUFFER_TYPE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_WIFI_STATIC_TX_BUFFER && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "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.", + "id": "ESP_WIFI_STATIC_TX_BUFFER_NUM", + "name": "ESP_WIFI_STATIC_TX_BUFFER_NUM", + "range": null, + "title": "Max number of WiFi static TX buffers", + "type": "int" + }, + { + "children": [], + "depends_on": "SPIRAM_TRY_ALLOCATE_WIFI_LWIP && !SPIRAM_IGNORE_NOTFOUND && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "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.", + "id": "ESP_WIFI_CACHE_TX_BUFFER_NUM", + "name": "ESP_WIFI_CACHE_TX_BUFFER_NUM", + "range": null, + "title": "Max number of WiFi cache TX buffers", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_WIFI_DYNAMIC_TX_BUFFER && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "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.", + "id": "ESP_WIFI_DYNAMIC_TX_BUFFER_NUM", + "name": "ESP_WIFI_DYNAMIC_TX_BUFFER_NUM", + "range": [ + 1, + 128 + ], + "title": "Max number of WiFi dynamic TX buffers", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_WIFI_STATIC_RX_MGMT_BUFFER", + "name": "ESP_WIFI_STATIC_RX_MGMT_BUFFER", + "range": null, + "title": "Static", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_WIFI_DYNAMIC_RX_MGMT_BUFFER", + "name": "ESP_WIFI_DYNAMIC_RX_MGMT_BUFFER", + "range": null, + "title": "Dynamic", + "type": "bool" + } + ], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "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.", + "id": "component-config-wi-fi-type-of-wifi-rx-mgmt-buffers-C:-esp-v6.0-esp-idf-components-esp_wifi-Kconfig-131", + "name": "ESP_WIFI_MGMT_RX_BUFFER", + "title": "Type of WiFi RX MGMT buffers", + "type": "choice" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "help": null, + "id": "ESP_WIFI_DYNAMIC_RX_MGMT_BUF", + "name": "ESP_WIFI_DYNAMIC_RX_MGMT_BUF", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "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.", + "id": "ESP_WIFI_RX_MGMT_BUF_NUM_DEF", + "name": "ESP_WIFI_RX_MGMT_BUF_NUM_DEF", + "range": [ + 1, + 10 + ], + "title": "Max number of WiFi RX MGMT buffers", + "type": "int" + }, + { + "children": [], + "depends_on": "SOC_WIFI_CSI_SUPPORT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "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.", + "id": "ESP_WIFI_CSI_ENABLED", + "name": "ESP_WIFI_CSI_ENABLED", + "range": null, + "title": "WiFi CSI(Channel State Information)", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_WIFI_AMPDU_TX_ENABLED && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "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.", + "id": "ESP_WIFI_TX_BA_WIN", + "name": "ESP_WIFI_TX_BA_WIN", + "range": [ + 2, + 32 + ], + "title": "WiFi AMPDU TX BA window size", + "type": "int" + } + ], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "help": "Select this option to enable AMPDU TX feature", + "id": "ESP_WIFI_AMPDU_TX_ENABLED", + "name": "ESP_WIFI_AMPDU_TX_ENABLED", + "range": null, + "title": "WiFi AMPDU TX", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_WIFI_AMPDU_RX_ENABLED && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "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 preferred to allocate in PSRAM first,\nthe default and minimum value should be 16 to achieve better throughput and compatibility with both\nstations and APs.", + "id": "ESP_WIFI_RX_BA_WIN", + "name": "ESP_WIFI_RX_BA_WIN", + "range": [ + 2, + 32 + ], + "title": "WiFi AMPDU RX BA window size", + "type": "int" + } + ], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "help": "Select this option to enable AMPDU RX feature", + "id": "ESP_WIFI_AMPDU_RX_ENABLED", + "name": "ESP_WIFI_AMPDU_RX_ENABLED", + "range": null, + "title": "WiFi AMPDU RX", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_WIFI_CACHE_TX_BUFFER_NUM >= 2 && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Select this option to enable AMSDU TX feature", + "id": "ESP_WIFI_AMSDU_TX_ENABLED", + "name": "ESP_WIFI_AMSDU_TX_ENABLED", + "range": null, + "title": "WiFi AMSDU TX", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "help": "Select this option to enable WiFi NVS flash", + "id": "ESP_WIFI_NVS_ENABLED", + "name": "ESP_WIFI_NVS_ENABLED", + "range": null, + "title": "WiFi NVS flash", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_WIFI_TASK_PINNED_TO_CORE_0", + "name": "ESP_WIFI_TASK_PINNED_TO_CORE_0", + "range": null, + "title": "Core 0", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_WIFI_TASK_PINNED_TO_CORE_1", + "name": "ESP_WIFI_TASK_PINNED_TO_CORE_1", + "range": null, + "title": "Core 1", + "type": "bool" + } + ], + "depends_on": "!FREERTOS_UNICORE && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Pinned WiFi task to core 0 or core 1.", + "id": "component-config-wi-fi-wifi-task-core-id-C:-esp-v6.0-esp-idf-components-esp_wifi-Kconfig-227", + "name": "ESP_WIFI_TASK_CORE_ID", + "title": "WiFi Task Core ID", + "type": "choice" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "help": "ESP-MESH utilizes beacon frames to detect and resolve root node conflicts (see documentation). However\nthe default 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 occurrence of\nmore root nodes conflict involving more than five root nodes, the conflict resolution process will\ndetect five of the root nodes, resolve the conflict, and re-detect more root nodes. This process will\nrepeat until all root node conflicts are resolved. However this process can generally take a very long\ntime.\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 on top of\nthe default 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\nidentified more quickly.", + "id": "ESP_WIFI_SOFTAP_BEACON_MAX_LEN", + "name": "ESP_WIFI_SOFTAP_BEACON_MAX_LEN", + "range": [ + 752, + 1256 + ], + "title": "Max length of WiFi SoftAP Beacon", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "help": "Set the maximum number of Wi-Fi management short buffers. These buffers are dynamically allocated,\nwith their size determined by the length of the management packet to be sent. When a management\npacket is less than 64 bytes, the Wi-Fi driver classifies it as a short management packet and\nassigns it to one of these buffers.", + "id": "ESP_WIFI_MGMT_SBUF_NUM", + "name": "ESP_WIFI_MGMT_SBUF_NUM", + "range": [ + 6, + 32 + ], + "title": "WiFi mgmt short buffer number", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "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.", + "id": "ESP_WIFI_IRAM_OPT", + "name": "ESP_WIFI_IRAM_OPT", + "range": null, + "title": "WiFi IRAM speed optimization", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "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.", + "id": "ESP_WIFI_EXTRA_IRAM_OPT", + "name": "ESP_WIFI_EXTRA_IRAM_OPT", + "range": null, + "title": "WiFi EXTRA IRAM speed optimization", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "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.", + "id": "ESP_WIFI_RX_IRAM_OPT", + "name": "ESP_WIFI_RX_IRAM_OPT", + "range": null, + "title": "WiFi RX IRAM speed optimization", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "ESP_WIFI_ENABLE_SAE_H2E && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Select this option to enable SAE-PK", + "id": "ESP_WIFI_ENABLE_SAE_PK", + "name": "ESP_WIFI_ENABLE_SAE_PK", + "range": null, + "title": "Enable SAE-PK", + "type": "bool" + } + ], + "depends_on": "ESP_WIFI_ENABLE_WPA3_SAE && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Select this option to enable SAE-H2E", + "id": "ESP_WIFI_ENABLE_SAE_H2E", + "name": "ESP_WIFI_ENABLE_SAE_H2E", + "range": null, + "title": "Enable SAE-H2E", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLE_WPA3_SAE && ESP_WIFI_SOFTAP_SUPPORT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Select this option to enable SAE support in softAP mode.", + "id": "ESP_WIFI_SOFTAP_SAE_SUPPORT", + "name": "ESP_WIFI_SOFTAP_SAE_SUPPORT", + "range": null, + "title": "Enable WPA3 Personal(SAE) SoftAP", + "type": "bool" + } + ], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "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\nfor details.", + "id": "ESP_WIFI_ENABLE_WPA3_SAE", + "name": "ESP_WIFI_ENABLE_WPA3_SAE", + "range": null, + "title": "Enable WPA3-Personal", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "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\nfor details.", + "id": "ESP_WIFI_ENABLE_WPA3_OWE_STA", + "name": "ESP_WIFI_ENABLE_WPA3_OWE_STA", + "range": null, + "title": "Enable OWE STA", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLE_SAE_H2E && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Select this option to support wpa3_compatible mode for station and AP", + "id": "ESP_WIFI_WPA3_COMPATIBLE_SUPPORT", + "name": "ESP_WIFI_WPA3_COMPATIBLE_SUPPORT", + "range": null, + "title": "Enable WPA3 Compatible support", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "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.", + "id": "ESP_WIFI_SLP_IRAM_OPT", + "name": "ESP_WIFI_SLP_IRAM_OPT", + "range": null, + "title": "WiFi SLP IRAM speed optimization", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "help": "Only for station in WIFI_PS_MIN_MODEM or WIFI_PS_MAX_MODEM. When the station enters the active state,\nit will work for at least ESP_WIFI_SLP_DEFAULT_MIN_ACTIVE_TIME. If a data packet is received or sent\nduring this period, the time will be refreshed. If the time is up, but the station still has packets\nto receive or send, the time will also be refreshed. unit: milliseconds.", + "id": "ESP_WIFI_SLP_DEFAULT_MIN_ACTIVE_TIME", + "name": "ESP_WIFI_SLP_DEFAULT_MIN_ACTIVE_TIME", + "range": [ + 8, + 60 + ], + "title": "Minimum active time", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "help": "Enables bss max idle support for Station and SoftAP. BSS max idle period enables an SoftAP to indicate\na time period during which the AP does not disassociate a STA due to nonreceipt of frames from the STA.\nFor station, max idle period is default 10 (1000TUs) and can be set through\nESP_WIFI_SLP_DEFAULT_MAX_ACTIVE_TIME. For softap, bss max idle parameters will be set through\nbss_max_idle_cfg in wifi_ap_config_t.", + "id": "ESP_WIFI_BSS_MAX_IDLE_SUPPORT", + "name": "ESP_WIFI_BSS_MAX_IDLE_SUPPORT", + "range": null, + "title": "Enable bss max idle support", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "help": "Only for station. If no packet has been sent within ESP_WIFI_SLP_DEFAULT_MAX_ACTIVE_TIME, a null data\npacket will be sent to maintain the connection with the AP. If ESP_WIFI_BSS_MAX_IDLE_SUPPORT is set,\nit will be sent as bss max idle period in association request. unit: seconds.", + "id": "ESP_WIFI_SLP_DEFAULT_MAX_ACTIVE_TIME", + "name": "ESP_WIFI_SLP_DEFAULT_MAX_ACTIVE_TIME", + "range": [ + 10, + 60 + ], + "title": "Maximum keep alive time", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "help": "Only for station in WIFI_PS_MIN_MODEM or WIFI_PS_MAX_MODEM. When the station knows through the beacon\nthat AP will send broadcast packet, it will wait for ESP_WIFI_SLP_DEFAULT_WAIT_BROADCAST_DATA_TIME\nbefore entering the sleep process. If a broadcast packet is received with more data bits, the time\nwill refreshed. unit: milliseconds.", + "id": "ESP_WIFI_SLP_DEFAULT_WAIT_BROADCAST_DATA_TIME", + "name": "ESP_WIFI_SLP_DEFAULT_WAIT_BROADCAST_DATA_TIME", + "range": [ + 10, + 30 + ], + "title": "Minimum wait broadcast data time", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_WIFI_FTM_ENABLE && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": null, + "id": "ESP_WIFI_FTM_INITIATOR_SUPPORT", + "name": "ESP_WIFI_FTM_INITIATOR_SUPPORT", + "range": null, + "title": "FTM Initiator support", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_WIFI_FTM_ENABLE && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": null, + "id": "ESP_WIFI_FTM_RESPONDER_SUPPORT", + "name": "ESP_WIFI_FTM_RESPONDER_SUPPORT", + "range": null, + "title": "FTM Responder support", + "type": "bool" + } + ], + "depends_on": "SOC_WIFI_FTM_SUPPORT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Enable feature Fine Timing Measurement for calculating WiFi Round-Trip-Time (RTT).", + "id": "ESP_WIFI_FTM_ENABLE", + "name": "ESP_WIFI_FTM_ENABLE", + "range": null, + "title": "WiFi FTM", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "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.", + "id": "ESP_WIFI_STA_DISCONNECTED_PM_ENABLE", + "name": "ESP_WIFI_STA_DISCONNECTED_PM_ENABLE", + "range": null, + "title": "Power Management for station at disconnected", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_WIFI_GCMP_SUPPORT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Select this option to enable GCMP support. GCMP support is compulsory for WiFi Suite-B support.", + "id": "ESP_WIFI_GCMP_SUPPORT", + "name": "ESP_WIFI_GCMP_SUPPORT", + "range": null, + "title": "WiFi GCMP Support(GCMP128 and GCMP256)", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "help": "Select this option to enable GMAC support. GMAC support is compulsory for WiFi 192 bit certification.", + "id": "ESP_WIFI_GMAC_SUPPORT", + "name": "ESP_WIFI_GMAC_SUPPORT", + "range": null, + "title": "WiFi GMAC Support(GMAC128 and GMAC256)", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "help": "WiFi module can be compiled without SoftAP to save code size.", + "id": "ESP_WIFI_SOFTAP_SUPPORT", + "name": "ESP_WIFI_SOFTAP_SUPPORT", + "range": null, + "title": "WiFi SoftAP Support", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_PHY_MAC_BB_PD && SOC_PM_SUPPORT_BEACON_WAKEUP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "The wifi modem automatically receives the beacon frame during light sleep.", + "id": "ESP_WIFI_ENHANCED_LIGHT_SLEEP", + "name": "ESP_WIFI_ENHANCED_LIGHT_SLEEP", + "range": null, + "title": "WiFi modem automatically receives the beacon", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_WIFI_SLP_BEACON_LOST_OPT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Timeout time for close rf phy when beacon loss occurs, Unit: 1024 microsecond.", + "id": "ESP_WIFI_SLP_BEACON_LOST_TIMEOUT", + "name": "ESP_WIFI_SLP_BEACON_LOST_TIMEOUT", + "range": null, + "title": "Beacon loss timeout", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_WIFI_SLP_BEACON_LOST_OPT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Maximum number of consecutive lost beacons allowed, the WiFi Rx state behaviour\nwill be determined by ESP_WIFI_SLP_BEACON_LOST_OVER_THRESHOLD_POLICY\nwhen the number of consecutive beacons lost is greater than the given threshold.", + "id": "ESP_WIFI_SLP_BEACON_LOST_THRESHOLD", + "name": "ESP_WIFI_SLP_BEACON_LOST_THRESHOLD", + "range": null, + "title": "Maximum number of consecutive lost beacons allowed", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_WIFI_SLP_BEACON_LOST_OPT && SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "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.", + "id": "ESP_WIFI_SLP_PHY_ON_DELTA_EARLY_TIME", + "name": "ESP_WIFI_SLP_PHY_ON_DELTA_EARLY_TIME", + "range": null, + "title": "Delta early time for RF PHY on", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_WIFI_SLP_BEACON_LOST_OPT && SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "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.", + "id": "ESP_WIFI_SLP_PHY_OFF_DELTA_TIMEOUT_TIME", + "name": "ESP_WIFI_SLP_PHY_OFF_DELTA_TIMEOUT_TIME", + "range": null, + "title": "Delta timeout time for RF PHY off", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_WIFI_SLP_BEACON_LOST_OVER_THRESHOLD_RECEIVE", + "name": "ESP_WIFI_SLP_BEACON_LOST_OVER_THRESHOLD_RECEIVE", + "range": null, + "title": "Receive beacon", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_WIFI_SLP_BEACON_LOST_OVER_THRESHOLD_DROP", + "name": "ESP_WIFI_SLP_BEACON_LOST_OVER_THRESHOLD_DROP", + "range": null, + "title": "Drop beacon", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_WIFI_SLP_BEACON_LOST_OVER_THRESHOLD_AUTO", + "name": "ESP_WIFI_SLP_BEACON_LOST_OVER_THRESHOLD_AUTO", + "range": null, + "title": "Auto", + "type": "bool" + } + ], + "depends_on": "ESP_WIFI_SLP_BEACON_LOST_OPT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Select the strategy to apply when the number of lost beacons exceeds the threshold.\n\n- \"Receive beacon\": Keep RF on until a beacon is successfully received.\n\n- \"Drop beacon\": Turn off RF and skip beacon reception during this period.\n\n- \"Auto\": Beacon will been dropped only if ESP_WIFI_SLP_SAMPLE_BEACON_FEATURE enabled\n and expected rx beacon probability stays below the standard.", + "id": "component-config-wi-fi-wifi-sleep-optimize-when-beacon-lost-beacon-strategy-when-beacon-loss-exceeds-threshold-C:-esp-v6.0-esp-idf-components-esp_wifi-Kconfig-495", + "name": "ESP_WIFI_SLP_BEACON_LOST_OVER_THRESHOLD_POLICY", + "title": "Beacon strategy when beacon loss exceeds threshold", + "type": "choice" + }, + { + "children": [], + "depends_on": "ESP_WIFI_SLP_BEACON_LOST_OPT && !ESP_WIFI_ENHANCED_LIGHT_SLEEP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Select to enable feature sampling beacons to calculate beacon offset.", + "id": "ESP_WIFI_SLP_SAMPLE_BEACON_FEATURE", + "name": "ESP_WIFI_SLP_SAMPLE_BEACON_FEATURE", + "range": null, + "title": "Sample beacon to calculate beacon offset", + "type": "bool" + } + ], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "help": "Enable wifi sleep optimization when beacon loss occurs and immediately enter\nsleep mode when the WiFi module detects beacon loss.", + "id": "ESP_WIFI_SLP_BEACON_LOST_OPT", + "name": "ESP_WIFI_SLP_BEACON_LOST_OPT", + "range": null, + "title": "Wifi sleep optimize when beacon lost", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_WIFI_SLP_SAMPLE_BEACON_FEATURE && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Numble of sampled beacons at wifi connected to adjust beacon parameters.", + "id": "ESP_WIFI_SLP_SAMPLE_BEACON_COUNT", + "name": "ESP_WIFI_SLP_SAMPLE_BEACON_COUNT", + "range": null, + "title": "Sample beacons at wifi connected to adjust beacon parameters", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_WIFI_SLP_SAMPLE_BEACON_FEATURE && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Difference triggers event WIFI_EVENT_STA_BEACON_OFFSET_UNSTABLE\nwhen the actual rx beacon probability continuously falls below\nthe expected probability by this value.\nunit: percentage", + "id": "ESP_WIFI_SLP_SAMPLE_BEACON_DIFFERENCE_PERCENT", + "name": "ESP_WIFI_SLP_SAMPLE_BEACON_DIFFERENCE_PERCENT", + "range": null, + "title": "Difference percentage triggers unstable event", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_WIFI_SLP_SAMPLE_BEACON_FEATURE && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Standard triggers beacon drop when the expected rx beacon probability\nfalls below this value under ESP_WIFI_SLP_BEACON_LOST_DROP_BEACON_AUTO mode.\nunit: percentage", + "id": "ESP_WIFI_SLP_SAMPLE_BEACON_STANDARD_PERCENT", + "name": "ESP_WIFI_SLP_SAMPLE_BEACON_STANDARD_PERCENT", + "range": null, + "title": "Standard percentage triggers beacon drop", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_WIFI_SLP_SAMPLE_BEACON_FEATURE && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Resample period if beacon drop is active under ESP_WIFI_SLP_BEACON_LOST_DROP_BEACON_AUTO mode.\nIt means never resample if setting this value to 0.\nunit: hours", + "id": "ESP_WIFI_SLP_SAMPLE_BEACON_RESAMPLE_PERIOD", + "name": "ESP_WIFI_SLP_SAMPLE_BEACON_RESAMPLE_PERIOD", + "range": null, + "title": "Resample period", + "type": "int" + } + ], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "id": "component-config-wi-fi-beacon-sample-configuration-options-C:-esp-v6.0-esp-idf-components-esp_wifi-Kconfig-524", + "title": "Beacon Sample Configuration Options", + "type": "menu" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "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\nkeys number. When using ESP mesh, this value should be set to a maximum of 6.", + "id": "ESP_WIFI_ESPNOW_MAX_ENCRYPT_NUM", + "name": "ESP_WIFI_ESPNOW_MAX_ENCRYPT_NUM", + "range": [ + 0, + 17 + ], + "title": "Maximum espnow encrypt peers number", + "type": "int" + }, + { + "children": [], + "depends_on": "SOC_WIFI_NAN_SUPPORT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Enable Wi-Fi Aware: Synchronization feature (NAN-Sync).", + "id": "ESP_WIFI_NAN_SYNC_ENABLE", + "name": "ESP_WIFI_NAN_SYNC_ENABLE", + "range": null, + "title": "Enable Wi-Fi Aware: Synchronization (NAN-Sync)", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_EXPERIMENTAL_FEATURES && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Enable Wi-Fi Aware: Unsynchronized service discovery (NAN-USD)", + "id": "ESP_WIFI_NAN_USD_ENABLE", + "name": "ESP_WIFI_NAN_USD_ENABLE", + "range": null, + "title": "Enable Wi-Fi Aware: Unsynchronized service discovery (NAN-USD)", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "ESP_WIFI_MBEDTLS_TLS_CLIENT && IDF_EXPERIMENTAL_FEATURES && ESP_WIFI_MBEDTLS_CRYPTO && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Select this option to support EAP with TLS v1.3.\nThis configuration still supports compatibility with EAP-TLS v1.2.\nPlease note that enabling this configuration will cause every application which\nuses TLS go for TLS1.3 if server supports that. TLS1.3 is still in development in mbedtls\nand there may be interoperability issues with this. Please modify your application to set\nmax version as TLS1.2 if you want to enable TLS1.3 only for WiFi connection.", + "id": "ESP_WIFI_EAP_TLS1_3", + "name": "ESP_WIFI_EAP_TLS1_3", + "range": null, + "title": "Enable EAP-TLS v1.3 Support for WiFi Enterprise connection", + "type": "bool" + } + ], + "depends_on": "ESP_WIFI_ENTERPRISE_SUPPORT && ESP_WIFI_MBEDTLS_CRYPTO && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "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. In case your server is using one of these version,\nit is advisable to update your server.\nPlease disable this option for compatibility with older TLS versions.", + "id": "ESP_WIFI_MBEDTLS_TLS_CLIENT", + "name": "ESP_WIFI_MBEDTLS_TLS_CLIENT", + "range": null, + "title": "Use MbedTLS TLS client for WiFi Enterprise connection", + "type": "bool" + } + ], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "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.", + "id": "ESP_WIFI_MBEDTLS_CRYPTO", + "name": "ESP_WIFI_MBEDTLS_CRYPTO", + "range": null, + "title": "Use MbedTLS crypto APIs", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_WIFI_WAPI_SUPPORT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Select this option to enable WAPI-PSK\nwhich is a Chinese National Standard Encryption for Wireless LANs (GB 15629.11-2003).", + "id": "ESP_WIFI_WAPI_PSK", + "name": "ESP_WIFI_WAPI_PSK", + "range": null, + "title": "Enable WAPI PSK support", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENTERPRISE_SUPPORT && SOC_WIFI_GCMP_SUPPORT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Select this option to enable 192 bit NSA suite-B.\nThis is necessary to support WPA3 192 bit security.", + "id": "ESP_WIFI_SUITE_B_192", + "name": "ESP_WIFI_SUITE_B_192", + "range": null, + "title": "Enable NSA suite B support with 192 bit key", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_WIFI_11KV_SUPPORT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Select this option to enable 802.11k APIs(RRM support).\nOnly APIs which are helpful for network assisted roaming\nare supported for now.\nEnable this option with RRM enabled in sta config\nto make device ready for network assisted roaming.\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.", + "id": "ESP_WIFI_RRM_SUPPORT", + "name": "ESP_WIFI_RRM_SUPPORT", + "range": null, + "title": "Enable 802.11k APIs Support", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_WIFI_11KV_SUPPORT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Select this option to enable 802.11v APIs(BTM support).\nOnly APIs which are helpful for network assisted roaming\nare supported for now.\nEnable this option with BTM 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.", + "id": "ESP_WIFI_WNM_SUPPORT", + "name": "ESP_WIFI_WNM_SUPPORT", + "range": null, + "title": "Enable 802.11v APIs Support", + "type": "bool" + } + ], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "help": "Select this option to enable 802.11k 802.11v APIs(RRM and BTM support).", + "id": "ESP_WIFI_11KV_SUPPORT", + "name": "ESP_WIFI_11KV_SUPPORT", + "range": null, + "title": "Enable 802.11k, 802.11v APIs Support", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_WIFI_RRM_SUPPORT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Keep scan results in cache, if not enabled, those\nwill be flushed immediately.", + "id": "ESP_WIFI_SCAN_CACHE", + "name": "ESP_WIFI_SCAN_CACHE", + "range": null, + "title": "Keep scan results in cache", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "help": "Select this option to enable WiFi Multiband operation certification support.", + "id": "ESP_WIFI_MBO_SUPPORT", + "name": "ESP_WIFI_MBO_SUPPORT", + "range": null, + "title": "Enable Multi Band Operation Certification Support", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "ESP_WIFI_ROAMING_LOW_RSSI_ROAMING && ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "WiFi RSSI threshold to trigger roaming value in dBm (-99 to -1). Values under -30 dbm\nmight lead to a flood of low rssi events. This interferes with normal functioning and\nTX/Rx performance.", + "id": "ESP_WIFI_ROAMING_LOW_RSSI_THRESHOLD", + "name": "ESP_WIFI_ROAMING_LOW_RSSI_THRESHOLD", + "range": null, + "title": "WiFi RSSI threshold to trigger roaming", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ROAMING_LOW_RSSI_ROAMING && ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Decide the offset by which to decrease the Low RSSI threshold set by ESP_WIFI_ROAMING_LOW_RSSI_THRESHOLD\nafter each failed attempt to roam. This allows for the station to keep scanning for better AP's after\nthe Low RSSI threshold is reached in a stepped manner, rather than only attempting to roam the first time\nthe current AP's RSSI breaches the set RSSI threshold.\nSetting 0 here may cause station to be flooded with low rssi events,\ntherefore that's not recommended to be kept.", + "id": "ESP_WIFI_ROAMING_LOW_RSSI_OFFSET", + "name": "ESP_WIFI_ROAMING_LOW_RSSI_OFFSET", + "range": null, + "title": "Offset by which to reset the RSSI Threshold after attempt to roam.", + "type": "int" + } + ], + "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Enable to use a RSSI threshold to trigger roaming.", + "id": "ESP_WIFI_ROAMING_LOW_RSSI_ROAMING", + "name": "ESP_WIFI_ROAMING_LOW_RSSI_ROAMING", + "range": null, + "title": "Use Low RSSI to trigger roaming.", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_WIFI_ROAMING_PERIODIC_SCAN_MONITOR && ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Threshold at which the station will begin scanning to find an AP with better RSSI.", + "id": "ESP_WIFI_ROAMING_PERIODIC_SCAN_THRESHOLD", + "name": "ESP_WIFI_ROAMING_PERIODIC_SCAN_THRESHOLD", + "range": null, + "title": "Threshold at which to begin periodic scanning for a better AP.", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ROAMING_PERIODIC_SCAN_MONITOR && ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Intervals at which station will periodically scan to check if better AP is available", + "id": "ESP_WIFI_ROAMING_SCAN_MONITOR_INTERVAL", + "name": "ESP_WIFI_ROAMING_SCAN_MONITOR_INTERVAL", + "range": null, + "title": "Time intervals (in seconds) at which station will initiate a scan", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ROAMING_PERIODIC_SCAN_MONITOR && ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Minimum RSSI difference b/w current AP and a potential roaming candidate AP\nto trigger a roaming attempt.", + "id": "ESP_WIFI_ROAMING_SCAN_ROAM_RSSI_DIFF", + "name": "ESP_WIFI_ROAMING_SCAN_ROAM_RSSI_DIFF", + "range": null, + "title": "RSSI difference b/w current AP and candidate AP to initiate connection", + "type": "int" + } + ], + "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Conduct periodic scans periodically to check if a better AP is available.", + "id": "ESP_WIFI_ROAMING_PERIODIC_SCAN_MONITOR", + "name": "ESP_WIFI_ROAMING_PERIODIC_SCAN_MONITOR", + "range": null, + "title": "Conduct periodic scans to check if a better AP is available", + "type": "bool" + } + ], + "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "id": "component-config-wi-fi-advanced-support-for-wi-fi-roaming-experimental--configure-roaming-app-roaming-triggers-C:-esp-v6.0-esp-idf-components-esp_wifi-wifi_apps-roaming_app-src-Kconfig.roaming-2", + "title": "Roaming triggers", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Roaming between APs that do not support 802.11v.\nThis will allow station to roam even when connection is not BTM supported,\nby forcefully disconnecting from current AP and connecting to better AP.", + "id": "ESP_WIFI_ROAMING_LEGACY_ROAMING", + "name": "ESP_WIFI_ROAMING_LEGACY_ROAMING", + "range": null, + "title": "Support Legacy roaming approach", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_WIFI_ROAMING_NETWORK_ASSISTED_ROAM && ESP_WIFI_ROAMING_LEGACY_ROAMING && ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Retry threshold after which the station should stop using Network Assisted\nroaming methods and start using legacy roaming instead.", + "id": "ESP_WIFI_NETWORK_ASSISTED_ROAMING_RETRY_COUNT", + "name": "ESP_WIFI_NETWORK_ASSISTED_ROAMING_RETRY_COUNT", + "range": null, + "title": "Retry count after which to switch to legacy roaming", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ROAMING_NETWORK_ASSISTED_ROAM && ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Station will not ask for IP renew after a BTM based roaming. Before enabling please\nmake sure your network supports this.", + "id": "ESP_WIFI_NETWORK_ASSISTED_ROAMING_IP_RENEW_SKIP", + "name": "ESP_WIFI_NETWORK_ASSISTED_ROAMING_IP_RENEW_SKIP", + "range": null, + "title": "Skip IP renew during BTM based roaming", + "type": "bool" + } + ], + "depends_on": "ESP_WIFI_WNM_SUPPORT && ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Roaming between APs using network assisted Roaming.\nThis involves BSS Transition Management mechanisms outlined in 802.11v.\nNote that this moves the responsibility to the AP's network, and hence isn't\nguaranteed to cause the station to attempt to roam each time.", + "id": "ESP_WIFI_ROAMING_NETWORK_ASSISTED_ROAM", + "name": "ESP_WIFI_ROAMING_NETWORK_ASSISTED_ROAM", + "range": null, + "title": "Support Network Assisted roaming using 802.11v", + "type": "bool" + } + ], + "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "id": "component-config-wi-fi-advanced-support-for-wi-fi-roaming-experimental--configure-roaming-app-roaming-methods-C:-esp-v6.0-esp-idf-components-esp_wifi-wifi_apps-roaming_app-src-Kconfig.roaming-64", + "title": "Roaming Methods", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Minimum duration of active scanning per channel in milliseconds.", + "id": "ESP_WIFI_ROAMING_SCAN_MIN_SCAN_TIME", + "name": "ESP_WIFI_ROAMING_SCAN_MIN_SCAN_TIME", + "range": null, + "title": "Minimum duration (in milliseconds) of station's per channel active scan", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Maximum duration of active scanning per channel in milliseconds.", + "id": "ESP_WIFI_ROAMING_SCAN_MAX_SCAN_TIME", + "name": "ESP_WIFI_ROAMING_SCAN_MAX_SCAN_TIME", + "range": null, + "title": "Maximum duration (in milliseconds) of station's per channel active scan time", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "If connected, duration for which the station will return to it's home channel for Tx/Rx of\nframes stored in buffers between scanning on consecutive channels.", + "id": "ESP_WIFI_ROAMING_HOME_CHANNEL_DWELL_TIME", + "name": "ESP_WIFI_ROAMING_HOME_CHANNEL_DWELL_TIME", + "range": null, + "title": "Home channel dwell time scanning between consecutive channels", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Channels your wireless network operates on to allow for faster scanning.\nSpecify the channels(between 1-14) in a comma separated manner.", + "id": "ESP_WIFI_ROAMING_SCAN_CHAN_LIST", + "name": "ESP_WIFI_ROAMING_SCAN_CHAN_LIST", + "range": null, + "title": "Preferred channel list for scanning", + "type": "string" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Duration for which the results from the most recent scans can be used\nby the roaming app for determining the roaming candidates.", + "id": "ESP_WIFI_ROAMING_SCAN_EXPIRY_WINDOW", + "name": "ESP_WIFI_ROAMING_SCAN_EXPIRY_WINDOW", + "range": null, + "title": "Scan results expiry window (in seconds)", + "type": "int" + } + ], + "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "id": "component-config-wi-fi-advanced-support-for-wi-fi-roaming-experimental--configure-roaming-app-scan-configuration-C:-esp-v6.0-esp-idf-components-esp_wifi-wifi_apps-roaming_app-src-Kconfig.roaming-103", + "title": "Scan Configuration", + "type": "menu" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Time to wait (in seconds) by station before registering for the RSSI event again\nor start continuous montoring to find better AP.", + "id": "ESP_WIFI_ROAMING_BACKOFF_TIME", + "name": "ESP_WIFI_ROAMING_BACKOFF_TIME", + "range": null, + "title": "Default time to wait between subsequent roaming attempts.", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_WIFI_ROAMING_PERIODIC_RRM_MONITORING && ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Enable this to send periodic neighbor report requests to the AP.\nThese neighbor report requests provide information about other APs in the same managed\nnetwork. This information is used for more intelligent roaming.", + "id": "ESP_WIFI_ROAMING_RRM_MONITOR_TIME", + "name": "ESP_WIFI_ROAMING_RRM_MONITOR_TIME", + "range": null, + "title": "Time interval (in seconds) between neighbor report requests to an AP", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ROAMING_PERIODIC_RRM_MONITORING && ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "The RSSI threshold beyond which we start sending periodic neighbor report requests.", + "id": "ESP_WIFI_ROAMING_RRM_MONITOR_THRESHOLD", + "name": "ESP_WIFI_ROAMING_RRM_MONITOR_THRESHOLD", + "range": null, + "title": "Threshold for sending periodic neighbor report requests", + "type": "int" + } + ], + "depends_on": "ESP_WIFI_RRM_SUPPORT && ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "This option will enable station to keep sending RRM neighbor list request to AP and\nupdate its internal list.", + "id": "ESP_WIFI_ROAMING_PERIODIC_RRM_MONITORING", + "name": "ESP_WIFI_ROAMING_PERIODIC_RRM_MONITORING", + "range": null, + "title": "Send periodic neighbor report request to AP for internal list updation", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "ESP_WIFI_ROAMING_AUTO_BLACKLISTING && ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Maximum number of connection failures before a BSSID is blacklisted.", + "id": "ESP_WIFI_ROAMING_MAX_CONN_FAILURES", + "name": "ESP_WIFI_ROAMING_MAX_CONN_FAILURES", + "range": null, + "title": "Maximum connection failures", + "type": "int" + } + ], + "depends_on": "ESP_WIFI_ROAMING_BSSID_BLACKLIST && ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Enable this to automatically blacklist BSSIDs after multiple failed connection attempts.", + "id": "ESP_WIFI_ROAMING_AUTO_BLACKLISTING", + "name": "ESP_WIFI_ROAMING_AUTO_BLACKLISTING", + "range": null, + "title": "Enable automatic BSSID blacklisting", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ROAMING_BSSID_BLACKLIST && ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Time in seconds for which a BSSID remains in the blacklist.\nThis applies to both automatically and manually blacklisted BSSIDs.", + "id": "ESP_WIFI_ROAMING_BLACKLIST_TIMEOUT", + "name": "ESP_WIFI_ROAMING_BLACKLIST_TIMEOUT", + "range": null, + "title": "Blacklist timeout (in seconds)", + "type": "int" + } + ], + "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Enable this to blacklist BSSIDs.", + "id": "ESP_WIFI_ROAMING_BSSID_BLACKLIST", + "name": "ESP_WIFI_ROAMING_BSSID_BLACKLIST", + "range": null, + "title": "Enable BSSID blacklisting", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Maximum number of roaming candidates to consider. This also defines the size of the blacklist.", + "id": "ESP_WIFI_ROAMING_MAX_CANDIDATES", + "name": "ESP_WIFI_ROAMING_MAX_CANDIDATES", + "range": null, + "title": "Maximum number of roaming candidates", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "If the currently connected AP sends a \"transition disable\" bit,\nthis option will make the roaming logic ignore less secure APs.\nThis helps prevent security downgrades when roaming in a mixed\nsecurity environment (e.g., WPA2/WPA3).", + "id": "ESP_WIFI_ROAMING_PREVENT_DOWNGRADE", + "name": "ESP_WIFI_ROAMING_PREVENT_DOWNGRADE", + "range": null, + "title": "Prevent security downgrade when roaming", + "type": "bool" + } + ], + "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "id": "component-config-wi-fi-advanced-support-for-wi-fi-roaming-experimental--configure-roaming-app-blacklist-configuration-C:-esp-v6.0-esp-idf-components-esp_wifi-wifi_apps-roaming_app-src-Kconfig.roaming-180", + "title": "Blacklist Configuration", + "type": "menu" + } + ], + "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "id": "component-config-wi-fi-advanced-support-for-wi-fi-roaming-experimental--configure-roaming-app-C:-esp-v6.0-esp-idf-components-esp_wifi-Kconfig-725", + "title": "Configure roaming App", + "type": "menu" + } + ], + "depends_on": "IDF_EXPERIMENTAL_FEATURES && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Enable Espressif's roaming app to allow for efficient Wi-Fi roaming.\nThis includes configurable periodic environment scans, maintaining a cache of the\nbest APs, handling low rssi events etc.\n\nRisk Warning\nPlease note that this feature is still experimental and enabling this potentially can\nlead to unpredictable scanning, connection and roaming attempts.\nWe are still working on tuning and optimising this feature to ensure reliable and stable use.", + "id": "ESP_WIFI_ENABLE_ROAMING_APP", + "name": "ESP_WIFI_ENABLE_ROAMING_APP", + "range": null, + "title": "Advanced support for Wi-Fi Roaming (Experimental)", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "help": "Select this option to enable WiFi Easy Connect Support.", + "id": "ESP_WIFI_DPP_SUPPORT", + "name": "ESP_WIFI_DPP_SUPPORT", + "range": null, + "title": "Enable DPP support", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "help": "Select this option to enable WiFi Fast Transition Support.", + "id": "ESP_WIFI_11R_SUPPORT", + "name": "ESP_WIFI_11R_SUPPORT", + "range": null, + "title": "Enable 802.11R (Fast Transition) Support", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_WIFI_SOFTAP_SUPPORT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Select this option to enable WPS registrar support in softAP mode.", + "id": "ESP_WIFI_WPS_SOFTAP_REGISTRAR", + "name": "ESP_WIFI_WPS_SOFTAP_REGISTRAR", + "range": null, + "title": "Add WPS Registrar support in SoftAP mode", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_WIFI_HE_SUPPORT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Enable Wi-Fi transmission statistics. Total support 4 access category. Each access category\nwill use 346 bytes memory.", + "id": "ESP_WIFI_ENABLE_WIFI_TX_STATS", + "name": "ESP_WIFI_ENABLE_WIFI_TX_STATS", + "range": null, + "title": "Enable Wi-Fi transmission statistics", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_WIFI_ENABLE_WIFI_RX_STATS && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Enable Wi-Fi DL MU-MIMO and DL OFDMA reception statistics. Will use 10932 bytes memory.", + "id": "ESP_WIFI_ENABLE_WIFI_RX_MU_STATS", + "name": "ESP_WIFI_ENABLE_WIFI_RX_MU_STATS", + "range": null, + "title": "Enable Wi-Fi DL MU-MIMO and DL OFDMA reception statistics", + "type": "bool" + } + ], + "depends_on": "SOC_WIFI_HE_SUPPORT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Enable Wi-Fi reception statistics. Total support 2 access category. Each access category\nwill use 190 bytes memory.", + "id": "ESP_WIFI_ENABLE_WIFI_RX_STATS", + "name": "ESP_WIFI_ENABLE_WIFI_RX_STATS", + "range": null, + "title": "Enable Wi-Fi reception statistics", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_WIFI_HE_SUPPORT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Set the maximum number of queue that can be aggregated by the STA in the A-MPDU carried in the\nHE TB PPDU.", + "id": "ESP_WIFI_TX_HETB_QUEUE_NUM", + "name": "ESP_WIFI_TX_HETB_QUEUE_NUM", + "range": null, + "title": "WiFi TX HE TB QUEUE number for STA HE TB PPDU transmission", + "type": "int" + }, + { + "children": [], + "depends_on": "SOC_WIFI_SUPPORT_5G && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Enable Wi-Fi dump HE-SIGB which is contained in DL HE MU PPDUs.", + "id": "ESP_WIFI_ENABLE_DUMP_HESIGB", + "name": "ESP_WIFI_ENABLE_DUMP_HESIGB", + "range": null, + "title": "Enable Wi-Fi dump HE-SIGB which is contained in DL HE MU PPDUs", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_WIFI_SUPPORT_5G && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Enable Wi-Fi dump MU CFO.", + "id": "ESP_WIFI_ENABLE_DUMP_MU_CFO", + "name": "ESP_WIFI_ENABLE_DUMP_MU_CFO", + "range": null, + "title": "Enable Wi-Fi dump MU CFO", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_WIFI_SUPPORT_5G && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Enable Wi-Fi dump NDPA frames.", + "id": "ESP_WIFI_ENABLE_DUMP_CTRL_NDPA", + "name": "ESP_WIFI_ENABLE_DUMP_CTRL_NDPA", + "range": null, + "title": "Enable Wi-Fi dump NDPA frames", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_WIFI_SUPPORT_5G && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Enable Wi-Fi dump BFRP frames.", + "id": "ESP_WIFI_ENABLE_DUMP_CTRL_BFRP", + "name": "ESP_WIFI_ENABLE_DUMP_CTRL_BFRP", + "range": null, + "title": "Enable Wi-Fi dump BFRP frames", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "help": "Select this option to enable validate each WPS attribute\nrigorously. Disabling this add the workarounds with various APs.\nEnabling this may cause inter operability issues with some APs.", + "id": "ESP_WIFI_WPS_STRICT", + "name": "ESP_WIFI_WPS_STRICT", + "range": null, + "title": "Strictly validate all WPS attributes", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "help": "Select this option to get passphrase during WPS configuration.\nThis option fakes the virtual display capabilities to get the\nconfiguration in passphrase mode.\nNot recommended 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.", + "id": "ESP_WIFI_WPS_PASSPHRASE", + "name": "ESP_WIFI_WPS_PASSPHRASE", + "range": null, + "title": "Get WPA2 passphrase in WPS config", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "help": "Select this option to enable reconnection to previous SSID if WPS fails.\nThis option will only work if station was connected to a network\nwhen WPS was started.", + "id": "ESP_WIFI_WPS_RECONNECT_ON_FAIL", + "name": "ESP_WIFI_WPS_RECONNECT_ON_FAIL", + "range": null, + "title": "Reconnect to previous SSID if WPS failed", + "type": "bool" + } + ], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "id": "component-config-wi-fi-wps-configuration-options-C:-esp-v6.0-esp-idf-components-esp_wifi-Kconfig-810", + "title": "WPS Configuration Options", + "type": "menu" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "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.", + "id": "ESP_WIFI_DEBUG_PRINT", + "name": "ESP_WIFI_DEBUG_PRINT", + "range": null, + "title": "Print debug messages from WPA Supplicant", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_WIFI_ENTERPRISE_SUPPORT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Select this configuration to free dynamic buffers during WiFi enterprise connection.\nThis will enable chip to reduce heap consumption during WiFi enterprise connection.", + "id": "ESP_WIFI_ENT_FREE_DYNAMIC_BUFFER", + "name": "ESP_WIFI_ENT_FREE_DYNAMIC_BUFFER", + "range": null, + "title": "Free dynamic buffers during WiFi enterprise connection", + "type": "bool" + } + ], + "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", + "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\nNote that when using bigger certificates on low-power chips without crypto\nhardware acceleration, it is recommended to adjust the task watchdog timer (TWDT)\nif it is enabled. For precise information on timing requirements, you can check\nperformance numbers at https://github.com/espressif/mbedtls/wiki/Performance-Numbers.", + "id": "ESP_WIFI_ENTERPRISE_SUPPORT", + "name": "ESP_WIFI_ENTERPRISE_SUPPORT", + "range": null, + "title": "Enable enterprise option", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_WIFI_ENHANCED_LIGHT_SLEEP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", + "help": "Enable debug assertions to verify modem RF flag update operations.\nThis option enables assert checks to verify that modem RF power state\nis correctly cleared before pmu sleep.", + "id": "ESP_WIFI_MODEM_RF_FLAG_UPDATE_DEBUG", + "name": "ESP_WIFI_MODEM_RF_FLAG_UPDATE_DEBUG", + "range": null, + "title": "Enable debug assertions for modem RF flag update", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-wi-fi-C:-esp-v6.0-esp-idf-components-esp_wifi-Kconfig-1", + "title": "Wi-Fi", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_COREDUMP_ENABLE_TO_FLASH", + "name": "ESP_COREDUMP_ENABLE_TO_FLASH", + "range": null, + "title": "Flash", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_COREDUMP_ENABLE_TO_UART", + "name": "ESP_COREDUMP_ENABLE_TO_UART", + "range": null, + "title": "UART", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_COREDUMP_ENABLE_TO_NONE", + "name": "ESP_COREDUMP_ENABLE_TO_NONE", + "range": null, + "title": "None", + "type": "bool" + } + ], + "depends_on": null, + "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.", + "id": "component-config-core-dump-data-destination-C:-esp-v6.0-esp-idf-components-espcoredump-Kconfig-3", + "name": "ESP_COREDUMP_TO_FLASH_OR_UART", + "title": "Data destination", + "type": "choice" + }, + { + "children": [], + "depends_on": "ESP_COREDUMP_ENABLE", + "help": "Storing these sections can help with easier debugging and troubleshooting.\nHowever, additional storage space will be required in the core dump partition.\nAt least 128KB should be reserved, but the actual amount required may vary based\non the application's DRAM usage.\nNote that sections located in external RAM will not be stored.", + "id": "ESP_COREDUMP_CAPTURE_DRAM", + "name": "ESP_COREDUMP_CAPTURE_DRAM", + "range": null, + "title": "Include whole .bss and .data sections and heap data into core dump file", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_COREDUMP_ENABLE_TO_FLASH", + "help": "When enabled, if any data are found on the flash core dump partition,\nthey will be checked by calculating their checksum.", + "id": "ESP_COREDUMP_CHECK_BOOT", + "name": "ESP_COREDUMP_CHECK_BOOT", + "range": null, + "title": "Check core dump data integrity on boot", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enables/disable core dump module.", + "id": "ESP_COREDUMP_ENABLE", + "name": "ESP_COREDUMP_ENABLE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_COREDUMP_ENABLE", + "help": "Enable/disable coredump logs. Logs strings from espcoredump component are\nplaced in DRAM. Disabling these helps to save ~5KB of internal memory.", + "id": "ESP_COREDUMP_LOGS", + "name": "ESP_COREDUMP_LOGS", + "range": null, + "title": "Enable coredump logs for debugging", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_COREDUMP_ENABLE", + "help": "Maximum number of tasks that will be included in the core dump.\nCrashed task registers and stacks are always included.\nOther tasks are included in order of their priority. (Highest priority ready task first)", + "id": "ESP_COREDUMP_MAX_TASKS_NUM", + "name": "ESP_COREDUMP_MAX_TASKS_NUM", + "range": null, + "title": "Maximum number of tasks", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_COREDUMP_ENABLE_TO_UART", + "help": "Config delay (in ms) before printing core dump to UART.\nDelay can be interrupted by pressing Enter key.", + "id": "ESP_COREDUMP_UART_DELAY", + "name": "ESP_COREDUMP_UART_DELAY", + "range": null, + "title": "Delay before print to UART", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_COREDUMP_ENABLE_TO_FLASH", + "help": "Don't overwrite an existing core dump already present in flash.\nEnable this option to only keep the first of multiple core dumps.\n\nIf enabled, the core dump partition must be erased before the first\ncore dump can be written.", + "id": "ESP_COREDUMP_FLASH_NO_OVERWRITE", + "name": "ESP_COREDUMP_FLASH_NO_OVERWRITE", + "range": null, + "title": "Don't overwrite existing core dump", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Force the use of a custom DRAM stack for coredump when Task stacks can be in PSRAM.", + "id": "ESP_COREDUMP_USE_STACK_SIZE", + "name": "ESP_COREDUMP_USE_STACK_SIZE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_COREDUMP_ENABLE", + "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 around 1300-1800\ndepending on the chosen checksum calculation method. SHA256 method needs more stack space than CRC32.\nNOTE: It eats DRAM.", + "id": "ESP_COREDUMP_STACK_SIZE", + "name": "ESP_COREDUMP_STACK_SIZE", + "range": null, + "title": "Reserved stack size", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_COREDUMP_ENABLE_TO_FLASH && IDF_TARGET_ARCH_RISCV", + "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", + "id": "ESP_COREDUMP_SUMMARY_STACKDUMP_SIZE", + "name": "ESP_COREDUMP_SUMMARY_STACKDUMP_SIZE", + "range": null, + "title": "Size of the stack dump buffer", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_COREDUMP_DECODE_INFO", + "name": "ESP_COREDUMP_DECODE_INFO", + "range": null, + "title": "Decode and show summary (info_corefile)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_COREDUMP_DECODE_DISABLE", + "name": "ESP_COREDUMP_DECODE_DISABLE", + "range": null, + "title": "Don't decode", + "type": "bool" + } + ], + "depends_on": "ESP_COREDUMP_ENABLE_TO_UART", + "help": null, + "id": "component-config-core-dump-handling-of-uart-core-dumps-in-idf-monitor-C:-esp-v6.0-esp-idf-components-espcoredump-Kconfig-118", + "name": "ESP_COREDUMP_DECODE", + "title": "Handling of UART core dumps in IDF Monitor", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_COREDUMP_DECODE", + "name": "ESP_COREDUMP_DECODE", + "range": null, + "title": null, + "type": "string" + } + ], + "depends_on": null, + "id": "component-config-core-dump-C:-esp-v6.0-esp-idf-components-espcoredump-Kconfig-1", + "title": "Core dump", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Number of volumes (logical drives) to use.", + "id": "FATFS_VOLUME_COUNT", + "name": "FATFS_VOLUME_COUNT", + "range": [ + 1, + 10 + ], + "title": "Number of volumes", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_LFN_NONE", + "name": "FATFS_LFN_NONE", + "range": null, + "title": "No long filenames", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_LFN_HEAP", + "name": "FATFS_LFN_HEAP", + "range": null, + "title": "Long filename buffer in heap", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_LFN_STACK", + "name": "FATFS_LFN_STACK", + "range": null, + "title": "Long filename buffer on stack", + "type": "bool" + } + ], + "depends_on": null, + "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.", + "id": "component-config-fat-filesystem-support-long-filename-support-C:-esp-v6.0-esp-idf-components-fatfs-Kconfig-10", + "name": "FATFS_LONG_FILENAMES", + "title": "Long filename support", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_SECTOR_512", + "name": "FATFS_SECTOR_512", + "range": null, + "title": "512", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_SECTOR_4096", + "name": "FATFS_SECTOR_4096", + "range": null, + "title": "4096", + "type": "bool" + } + ], + "depends_on": null, + "help": "Specify the size of the sector in bytes for FATFS partition generator.", + "id": "component-config-fat-filesystem-support-sector-size-C:-esp-v6.0-esp-idf-components-fatfs-Kconfig-25", + "name": "FATFS_SECTOR_SIZE", + "title": "Sector size", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_DYNAMIC", + "name": "FATFS_CODEPAGE_DYNAMIC", + "range": null, + "title": "Dynamic (all code pages supported)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_437", + "name": "FATFS_CODEPAGE_437", + "range": null, + "title": "US (CP437)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_720", + "name": "FATFS_CODEPAGE_720", + "range": null, + "title": "Arabic (CP720)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_737", + "name": "FATFS_CODEPAGE_737", + "range": null, + "title": "Greek (CP737)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_771", + "name": "FATFS_CODEPAGE_771", + "range": null, + "title": "KBL (CP771)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_775", + "name": "FATFS_CODEPAGE_775", + "range": null, + "title": "Baltic (CP775)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_850", + "name": "FATFS_CODEPAGE_850", + "range": null, + "title": "Latin 1 (CP850)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_852", + "name": "FATFS_CODEPAGE_852", + "range": null, + "title": "Latin 2 (CP852)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_855", + "name": "FATFS_CODEPAGE_855", + "range": null, + "title": "Cyrillic (CP855)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_857", + "name": "FATFS_CODEPAGE_857", + "range": null, + "title": "Turkish (CP857)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_860", + "name": "FATFS_CODEPAGE_860", + "range": null, + "title": "Portuguese (CP860)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_861", + "name": "FATFS_CODEPAGE_861", + "range": null, + "title": "Icelandic (CP861)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_862", + "name": "FATFS_CODEPAGE_862", + "range": null, + "title": "Hebrew (CP862)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_863", + "name": "FATFS_CODEPAGE_863", + "range": null, + "title": "Canadian French (CP863)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_864", + "name": "FATFS_CODEPAGE_864", + "range": null, + "title": "Arabic (CP864)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_865", + "name": "FATFS_CODEPAGE_865", + "range": null, + "title": "Nordic (CP865)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_866", + "name": "FATFS_CODEPAGE_866", + "range": null, + "title": "Russian (CP866)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_869", + "name": "FATFS_CODEPAGE_869", + "range": null, + "title": "Greek 2 (CP869)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_932", + "name": "FATFS_CODEPAGE_932", + "range": null, + "title": "Japanese (DBCS) (CP932)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_936", + "name": "FATFS_CODEPAGE_936", + "range": null, + "title": "Simplified Chinese (DBCS) (CP936)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_949", + "name": "FATFS_CODEPAGE_949", + "range": null, + "title": "Korean (DBCS) (CP949)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_950", + "name": "FATFS_CODEPAGE_950", + "range": null, + "title": "Traditional Chinese (DBCS) (CP950)", + "type": "bool" + } + ], + "depends_on": null, + "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.", + "id": "component-config-fat-filesystem-support-oem-code-page-C:-esp-v6.0-esp-idf-components-fatfs-Kconfig-36", + "name": "FATFS_CHOOSE_CODEPAGE", + "title": "OEM Code Page", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FATFS_CODEPAGE", + "name": "FATFS_CODEPAGE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "!FATFS_LFN_NONE", + "help": "Maximum long filename length. Can be reduced to save RAM.", + "id": "FATFS_MAX_LFN", + "name": "FATFS_MAX_LFN", + "range": [ + 12, + 255 + ], + "title": "Max long filename length", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_API_ENCODING_ANSI_OEM", + "name": "FATFS_API_ENCODING_ANSI_OEM", + "range": null, + "title": "API uses ANSI/OEM encoding", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_API_ENCODING_UTF_8", + "name": "FATFS_API_ENCODING_UTF_8", + "range": null, + "title": "API uses UTF-8 encoding", + "type": "bool" + } + ], + "depends_on": "!FATFS_LFN_NONE", + "help": "Choose encoding for character and string arguments/returns when using\nFATFS APIs. The encoding of arguments will usually depend on text\neditor settings.", + "id": "component-config-fat-filesystem-support-api-character-encoding-C:-esp-v6.0-esp-idf-components-fatfs-Kconfig-126", + "name": "FATFS_API_ENCODING", + "title": "API character encoding", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "FATFS_FS_LOCK", + "name": "FATFS_FS_LOCK", + "range": [ + 0, + 65535 + ], + "title": "Number of simultaneously open files protected by lock function", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "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 lengthy\noperation, another task will wait for the first task to release the lock,\nand time out after amount of time set by this option.", + "id": "FATFS_TIMEOUT_MS", + "name": "FATFS_TIMEOUT_MS", + "range": null, + "title": "Timeout for acquiring a file lock, ms", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "FATFS_PER_FILE_CACHE", + "name": "FATFS_PER_FILE_CACHE", + "range": null, + "title": "Use separate cache for each file", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC", + "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.", + "id": "FATFS_ALLOC_PREFER_EXTRAM", + "name": "FATFS_ALLOC_PREFER_EXTRAM", + "range": null, + "title": "Prefer external RAM when allocating FATFS buffers", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "FATFS_USE_FASTSEEK", + "name": "FATFS_USE_FASTSEEK", + "range": null, + "title": "Enable fast seek algorithm when using lseek function through VFS FAT", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_USE_STRFUNC_NONE", + "name": "FATFS_USE_STRFUNC_NONE", + "range": null, + "title": "0:Disable", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_USE_STRFUNC_WITHOUT_CRLF_CONV", + "name": "FATFS_USE_STRFUNC_WITHOUT_CRLF_CONV", + "range": null, + "title": "1:Enable without LF-CRLF conversion", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_USE_STRFUNC_WITH_CRLF_CONV", + "name": "FATFS_USE_STRFUNC_WITH_CRLF_CONV", + "range": null, + "title": "2:Enable with LF-CRLF conversion", + "type": "bool" + } + ], + "depends_on": null, + "help": "These are specialized alternatives to stdio functions for working\ndirectly with FATFS without VFS. Legacy code may need functions,\nbut for new development, it is advised to use stdio under VFS.\n\n0: Disable. FF_PRINT_LLI, FF_PRINT_FLOAT and FF_STRF_ENCODE have no effect.\n1: Enable without LF-CRLF conversion.\n2: Enable with LF-CRLF conversion.", + "id": "component-config-fat-filesystem-support-enable-string-functions-f_gets-f_putc-f_puts-and-f_printf--C:-esp-v6.0-esp-idf-components-fatfs-Kconfig-208", + "name": "FATFS_USE_STRFUNC_CHOICE", + "title": "Enable string functions, f_gets(), f_putc(), f_puts() and f_printf()", + "type": "choice" + }, + { + "children": [], + "depends_on": "!FATFS_USE_STRFUNC_NONE", + "help": null, + "id": "FATFS_PRINT_LLI", + "name": "FATFS_PRINT_LLI", + "range": null, + "title": "Make fatfs f_printf() support long long argument", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FATFS_USE_STRFUNC_NONE", + "help": null, + "id": "FATFS_PRINT_FLOAT", + "name": "FATFS_PRINT_FLOAT", + "range": null, + "title": "Make fatfs f_printf() support floating point argument", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_STRF_ENCODE_ANSI", + "name": "FATFS_STRF_ENCODE_ANSI", + "range": null, + "title": "0:ANSI/OEM in current CP", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_STRF_ENCODE_UTF16LE", + "name": "FATFS_STRF_ENCODE_UTF16LE", + "range": null, + "title": "1:Unicode in UTF-16LE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_STRF_ENCODE_UTF16BE", + "name": "FATFS_STRF_ENCODE_UTF16BE", + "range": null, + "title": "2:Unicode in UTF-16BE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_STRF_ENCODE_UTF8", + "name": "FATFS_STRF_ENCODE_UTF8", + "range": null, + "title": "3:Unicode in UTF-8", + "type": "bool" + } + ], + "depends_on": "!FATFS_LFN_NONE && !FATFS_USE_STRFUNC_NONE", + "help": "When FF_LFN_UNICODE >= 1 with LFN enabled, string functions convert the character\nencoding in it. FF_STRF_ENCODE selects assumption of character encoding ON THE FILE\nto be read/written via those functions.\n0: ANSI/OEM in current CP\n1: Unicode in UTF-16LE\n2: Unicode in UTF-16BE\n3: Unicode in UTF-8", + "id": "component-config-fat-filesystem-support-fatfs-string-functions-convert-character-encoding-C:-esp-v6.0-esp-idf-components-fatfs-Kconfig-240", + "name": "FATFS_STRF_ENCODE_CHOICE", + "title": "FatFS string functions: convert character encoding", + "type": "choice" + }, + { + "children": [], + "depends_on": "FATFS_USE_FASTSEEK", + "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.", + "id": "FATFS_FAST_SEEK_BUFFER_SIZE", + "name": "FATFS_FAST_SEEK_BUFFER_SIZE", + "range": null, + "title": "Fast seek CLMT buffer size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "FATFS_VFS_FSTAT_BLKSIZE", + "name": "FATFS_VFS_FSTAT_BLKSIZE", + "range": null, + "title": "Default block size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Enables automatic calling of f_sync() to flush recent file changes after each call of vfs_fat_write(),\nvfs_fat_pwrite(), vfs_fat_link(), vfs_fat_truncate() and vfs_fat_ftruncate() functions.\nThis feature improves file-consistency and size reporting accuracy for the FatFS,\nat a price on decreased performance due to frequent disk operations", + "id": "FATFS_IMMEDIATE_FSYNC", + "name": "FATFS_IMMEDIATE_FSYNC", + "range": null, + "title": "Enable automatic f_sync", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Allows FATFS volume label to be specified using f_setlabel", + "id": "FATFS_USE_LABEL", + "name": "FATFS_USE_LABEL", + "range": null, + "title": "Use FATFS volume label", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If enabled, the whole link operation (including file copying) is performed under lock.\nThis ensures that the link operation is atomic, but may cause performance for large files.\nIt may create less fragmented file copy.", + "id": "FATFS_LINK_LOCK", + "name": "FATFS_LINK_LOCK", + "range": null, + "title": "Perform the whole link operation under lock", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If enabled, the buffers used by FATFS will be allocated separately from the rest of the structure.\nThis option is useful when using multiple FATFS instances with different\nsector sizes, as the buffers will be allocated according to the sector size.\nIf disabled, the greatest sector size will be used for all FATFS instances.\n(In most cases, this would be the sector size of Wear Levelling library)\nThis might cause more memory to be used than necessary.", + "id": "FATFS_USE_DYN_BUFFERS", + "name": "FATFS_USE_DYN_BUFFERS", + "range": null, + "title": "Use dynamic buffers", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "If 1, the file system will not trust the free cluster count in the FSINFO (in FATFS struct).\nThis may result in more accurate output from `f_getfree()` function but increased overhead.", + "id": "FATFS_DONT_TRUST_FREE_CLUSTER_CNT", + "name": "FATFS_DONT_TRUST_FREE_CLUSTER_CNT", + "range": [ + 0, + 1 + ], + "title": "Don't trust free cluster count", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "If 1, the file system will not trust the last allocated cluster number in the FSINFO (in FATFS struct).\nThis may result in more accurate output from `f_getfree()` function but increased overhead.", + "id": "FATFS_DONT_TRUST_LAST_ALLOC", + "name": "FATFS_DONT_TRUST_LAST_ALLOC", + "range": [ + 0, + 1 + ], + "title": "Don't trust allocated cluster number", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-fat-filesystem-support-file-system-free-space-calculation-behavior-C:-esp-v6.0-esp-idf-components-fatfs-Kconfig-325", + "title": "File system free space calculation behavior", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-fat-filesystem-support-C:-esp-v6.0-esp-idf-components-fatfs-Kconfig-1", + "title": "FAT Filesystem support", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "!IDF_TARGET_ESP32P4 && !IDF_TARGET_ESP32H4", + "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.", + "id": "FREERTOS_SMP", + "name": "FREERTOS_SMP", + "range": null, + "title": "Run the Amazon SMP FreeRTOS kernel instead (FEATURE UNDER DEVELOPMENT)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "FREERTOS_UNICORE", + "name": "FREERTOS_UNICORE", + "range": null, + "title": "Run FreeRTOS only on first core", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Sets the FreeRTOS tick interrupt frequency in Hz (see configTICK_RATE_HZ documentation for more\ndetails).", + "id": "FREERTOS_HZ", + "name": "FREERTOS_HZ", + "range": [ + 1, + 1000 + ], + "title": "configTICK_RATE_HZ", + "type": "int" + }, + { + "children": [], + "depends_on": "FREERTOS_UNICORE && !FREERTOS_SMP", + "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).", + "id": "FREERTOS_OPTIMIZED_SCHEDULER", + "name": "FREERTOS_OPTIMIZED_SCHEDULER", + "range": null, + "title": "configUSE_PORT_OPTIMISED_TASK_SELECTION", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Do not check for stack overflows (configCHECK_FOR_STACK_OVERFLOW = 0)", + "id": "FREERTOS_CHECK_STACKOVERFLOW_NONE", + "name": "FREERTOS_CHECK_STACKOVERFLOW_NONE", + "range": null, + "title": "No checking", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "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)", + "id": "FREERTOS_CHECK_STACKOVERFLOW_PTRVAL", + "name": "FREERTOS_CHECK_STACKOVERFLOW_PTRVAL", + "range": null, + "title": "Check by stack pointer value (Method 1)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "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)", + "id": "FREERTOS_CHECK_STACKOVERFLOW_CANARY", + "name": "FREERTOS_CHECK_STACKOVERFLOW_CANARY", + "range": null, + "title": "Check using canary bytes (Method 2)", + "type": "bool" + } + ], + "depends_on": null, + "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.", + "id": "component-config-freertos-kernel-configcheck_for_stack_overflow-C:-esp-v6.0-esp-idf-components-freertos-Kconfig-51", + "name": "FREERTOS_CHECK_STACKOVERFLOW", + "title": "configCHECK_FOR_STACK_OVERFLOW", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS", + "name": "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS", + "range": [ + 1, + 256 + ], + "title": "configNUM_THREAD_LOCAL_STORAGE_POINTERS", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "FREERTOS_IDLE_TASK_STACKSIZE", + "name": "FREERTOS_IDLE_TASK_STACKSIZE", + "range": [ + 768, + 32768 + ], + "title": "configMINIMAL_STACK_SIZE (Idle task stack size)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "FREERTOS_USE_IDLE_HOOK", + "name": "FREERTOS_USE_IDLE_HOOK", + "range": null, + "title": "configUSE_IDLE_HOOK", + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_SMP", + "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 vApplicationPassiveIdleHook( void );``\n- ``vApplicationPassiveIdleHook()`` is called from FreeRTOS minimal idle task(s)", + "id": "FREERTOS_USE_PASSIVE_IDLE_HOOK", + "name": "FREERTOS_USE_PASSIVE_IDLE_HOOK", + "range": null, + "title": "Use FreeRTOS minimal idle hook", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "FREERTOS_USE_TICK_HOOK", + "name": "FREERTOS_USE_TICK_HOOK", + "range": null, + "title": "configUSE_TICK_HOOK", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "FREERTOS_MAX_TASK_NAME_LEN", + "name": "FREERTOS_MAX_TASK_NAME_LEN", + "range": [ + 1, + 256 + ], + "title": "configMAX_TASK_NAME_LEN", + "type": "int" + }, + { + "children": [], + "depends_on": "!IDF_TARGET_LINUX", + "help": "Enable backward compatibility with APIs prior to FreeRTOS v8.0.0. (see\nconfigENABLE_BACKWARD_COMPATIBILITY documentation for more details).", + "id": "FREERTOS_ENABLE_BACKWARD_COMPATIBILITY", + "name": "FREERTOS_ENABLE_BACKWARD_COMPATIBILITY", + "range": null, + "title": "configENABLE_BACKWARD_COMPATIBILITY", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "FREERTOS_USE_TIMERS", + "help": "Sets the timer task's name (see configTIMER_SERVICE_TASK_NAME documentation for more details).", + "id": "FREERTOS_TIMER_SERVICE_TASK_NAME", + "name": "FREERTOS_TIMER_SERVICE_TASK_NAME", + "range": null, + "title": "configTIMER_SERVICE_TASK_NAME", + "type": "string" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "FREERTOS_TIMER_TASK_AFFINITY_CPU0", + "name": "FREERTOS_TIMER_TASK_AFFINITY_CPU0", + "range": null, + "title": "CPU0", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_UNICORE && ", + "help": null, + "id": "FREERTOS_TIMER_TASK_AFFINITY_CPU1", + "name": "FREERTOS_TIMER_TASK_AFFINITY_CPU1", + "range": null, + "title": "CPU1", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FREERTOS_TIMER_TASK_NO_AFFINITY", + "name": "FREERTOS_TIMER_TASK_NO_AFFINITY", + "range": null, + "title": "No affinity", + "type": "bool" + } + ], + "depends_on": "FREERTOS_USE_TIMERS", + "help": "Sets the timer task's core affinity\n(see configTIMER_SERVICE_TASK_CORE_AFFINITY documentation for more details).", + "id": "component-config-freertos-kernel-configuse_timers-configtimer_service_task_core_affinity-C:-esp-v6.0-esp-idf-components-freertos-Kconfig-187", + "name": "FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY", + "title": "configTIMER_SERVICE_TASK_CORE_AFFINITY", + "type": "choice" + }, + { + "children": [], + "depends_on": "FREERTOS_USE_TIMERS", + "help": null, + "id": "FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY", + "name": "FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": "FREERTOS_USE_TIMERS", + "help": "Sets the timer task's priority (see configTIMER_TASK_PRIORITY documentation for more details).", + "id": "FREERTOS_TIMER_TASK_PRIORITY", + "name": "FREERTOS_TIMER_TASK_PRIORITY", + "range": [ + 1, + 25 + ], + "title": "configTIMER_TASK_PRIORITY", + "type": "int" + }, + { + "children": [], + "depends_on": "FREERTOS_USE_TIMERS", + "help": "Set the timer task's stack size (see configTIMER_TASK_STACK_DEPTH documentation for more details).", + "id": "FREERTOS_TIMER_TASK_STACK_DEPTH", + "name": "FREERTOS_TIMER_TASK_STACK_DEPTH", + "range": [ + 1536, + 32768 + ], + "title": "configTIMER_TASK_STACK_DEPTH", + "type": "int" + }, + { + "children": [], + "depends_on": "FREERTOS_USE_TIMERS", + "help": "Set the timer task's command queue length (see configTIMER_QUEUE_LENGTH documentation for more\ndetails).", + "id": "FREERTOS_TIMER_QUEUE_LENGTH", + "name": "FREERTOS_TIMER_QUEUE_LENGTH", + "range": [ + 5, + 20 + ], + "title": "configTIMER_QUEUE_LENGTH", + "type": "int" + } + ], + "depends_on": null, + "help": "Enable FreeRTOS Software Timers. Normally the timer task will only get pulled into the build\nand created if any software timer related functions are used. This is achieved through IDF\ndefining a weak empty function for xTimerCreateTimerTask, which should take effect if timers.c\nis not pulled into the build.\n\nIn certain special cases (if you use configUSE_TRACE_FACILITY=y and event groups) the linker will\nstill pull in the xTimerCreateTimerTask from timers.c even if the function that utilized it gets\ndiscarded due to not being used.\n\nIn these cases you can use this option to force the timer task to be disabled.", + "id": "FREERTOS_USE_TIMERS", + "name": "FREERTOS_USE_TIMERS", + "range": null, + "title": "configUSE_TIMERS", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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", + "id": "FREERTOS_QUEUE_REGISTRY_SIZE", + "name": "FREERTOS_QUEUE_REGISTRY_SIZE", + "range": [ + 0, + 20 + ], + "title": "configQUEUE_REGISTRY_SIZE", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES", + "name": "FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES", + "range": [ + 1, + 32 + ], + "title": "configTASK_NOTIFICATION_ARRAY_ENTRIES", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "FREERTOS_USE_TRACE_FACILITY", + "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).", + "id": "FREERTOS_USE_STATS_FORMATTING_FUNCTIONS", + "name": "FREERTOS_USE_STATS_FORMATTING_FUNCTIONS", + "range": null, + "title": "configUSE_STATS_FORMATTING_FUNCTIONS", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enables additional structure members and functions to assist with execution visualization and tracing\n(see configUSE_TRACE_FACILITY documentation for more details).", + "id": "FREERTOS_USE_TRACE_FACILITY", + "name": "FREERTOS_USE_TRACE_FACILITY", + "range": null, + "title": "configUSE_TRACE_FACILITY", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable list integrity checker\n(see configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES documentation for more details).", + "id": "FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES", + "name": "FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES", + "range": null, + "title": "configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_SMP && FREERTOS_USE_STATS_FORMATTING_FUNCTIONS", + "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.", + "id": "FREERTOS_VTASKLIST_INCLUDE_COREID", + "name": "FREERTOS_VTASKLIST_INCLUDE_COREID", + "range": null, + "title": "Enable display of xCoreID in vTaskList", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "configRUN_TIME_COUNTER_TYPE is set to uint32_t", + "id": "FREERTOS_RUN_TIME_COUNTER_TYPE_U32", + "name": "FREERTOS_RUN_TIME_COUNTER_TYPE_U32", + "range": null, + "title": "uint32_t", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "configRUN_TIME_COUNTER_TYPE is set to uint64_t", + "id": "FREERTOS_RUN_TIME_COUNTER_TYPE_U64", + "name": "FREERTOS_RUN_TIME_COUNTER_TYPE_U64", + "range": null, + "title": "uint64_t", + "type": "bool" + } + ], + "depends_on": "FREERTOS_GENERATE_RUN_TIME_STATS", + "help": "Sets the data type used for the FreeRTOS run time stats. A larger data type can be used to reduce the\nfrequency of the counter overflowing.", + "id": "component-config-freertos-kernel-configgenerate_run_time_stats-configrun_time_counter_type-C:-esp-v6.0-esp-idf-components-freertos-Kconfig-300", + "name": "FREERTOS_RUN_TIME_COUNTER_TYPE", + "title": "configRUN_TIME_COUNTER_TYPE", + "type": "choice" + } + ], + "depends_on": null, + "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.", + "id": "FREERTOS_GENERATE_RUN_TIME_STATS", + "name": "FREERTOS_GENERATE_RUN_TIME_STATS", + "range": null, + "title": "configGENERATE_RUN_TIME_STATS", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "FREERTOS_USE_TICKLESS_IDLE", + "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", + "id": "FREERTOS_IDLE_TIME_BEFORE_SLEEP", + "name": "FREERTOS_IDLE_TIME_BEFORE_SLEEP", + "range": null, + "title": "configEXPECTED_IDLE_TIME_BEFORE_SLEEP", + "type": "int" + } + ], + "depends_on": "PM_ENABLE", + "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.", + "id": "FREERTOS_USE_TICKLESS_IDLE", + "name": "FREERTOS_USE_TICKLESS_IDLE", + "range": null, + "title": "configUSE_TICKLESS_IDLE", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enables task tagging functionality and its associated API (see configUSE_APPLICATION_TASK_TAG\ndocumentation for more details).", + "id": "FREERTOS_USE_APPLICATION_TASK_TAG", + "name": "FREERTOS_USE_APPLICATION_TASK_TAG", + "range": null, + "title": "configUSE_APPLICATION_TASK_TAG", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-freertos-kernel-C:-esp-v6.0-esp-idf-components-freertos-Kconfig-3", + "title": "Kernel", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "COMPILER_OPTIMIZATION_DEBUG || ESP_COREDUMP_ENABLE || ESP_SYSTEM_PANIC_GDBSTUB || ESP_SYSTEM_GDBSTUB_RUNTIME", + "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.", + "id": "FREERTOS_TASK_FUNCTION_WRAPPER", + "name": "FREERTOS_TASK_FUNCTION_WRAPPER", + "range": null, + "title": "Wrap task functions", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "FREERTOS_WATCHPOINT_END_OF_STACK", + "name": "FREERTOS_WATCHPOINT_END_OF_STACK", + "range": null, + "title": "Enable stack overflow debug watchpoint", + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS > 0", + "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.", + "id": "FREERTOS_TLSP_DELETION_CALLBACKS", + "name": "FREERTOS_TLSP_DELETION_CALLBACKS", + "range": null, + "title": "Enable thread local storage pointers deletion callbacks", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this option to make FreeRTOS call a user provided hook function right before it deletes a task\n(i.e., frees/releases a dynamically/statically allocated task's memory). This is useful if users want\nto know when a task is actually deleted (in case the task's deletion is delegated to the IDLE task).\n\nIf this config option is enabled, users must define a ``void vTaskPreDeletionHook( void * pxTCB )``\nhook function in their application.", + "id": "FREERTOS_TASK_PRE_DELETION_HOOK", + "name": "FREERTOS_TASK_PRE_DELETION_HOOK", + "range": null, + "title": "Enable task pre-deletion hook", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_SMP", + "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.", + "id": "FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER", + "name": "FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER", + "range": null, + "title": "Check that mutex semaphore is given by owner task", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "FREERTOS_ISR_STACKSIZE", + "name": "FREERTOS_ISR_STACKSIZE", + "range": [ + 1536, + 32768 + ], + "title": "ISR stack size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "FREERTOS_INTERRUPT_BACKTRACE", + "name": "FREERTOS_INTERRUPT_BACKTRACE", + "range": null, + "title": "Enable backtrace from interrupt to task context", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_CPU_HAS_FPU && (IDF_TARGET_ESP32 || IDF_TARGET_ESP32S3)", + "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.", + "id": "FREERTOS_FPU_IN_ISR", + "name": "FREERTOS_FPU_IN_ISR", + "range": null, + "title": "Use float in Level 1 ISR", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_TICK_SUPPORT_CORETIMER", + "name": "FREERTOS_TICK_SUPPORT_CORETIMER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_TICK_SUPPORT_SYSTIMER", + "name": "FREERTOS_TICK_SUPPORT_SYSTIMER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "FREERTOS_TICK_SUPPORT_CORETIMER && ", + "help": "Select this to use timer 0", + "id": "FREERTOS_CORETIMER_0", + "name": "FREERTOS_CORETIMER_0", + "range": null, + "title": "Timer 0 (int 6, level 1)", + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_TICK_SUPPORT_CORETIMER && ", + "help": "Select this to use timer 1", + "id": "FREERTOS_CORETIMER_1", + "name": "FREERTOS_CORETIMER_1", + "range": null, + "title": "Timer 1 (int 15, level 3)", + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_TICK_SUPPORT_SYSTIMER && ", + "help": "Select this to use systimer with the 1 interrupt priority.", + "id": "FREERTOS_CORETIMER_SYSTIMER_LVL1", + "name": "FREERTOS_CORETIMER_SYSTIMER_LVL1", + "range": null, + "title": "SYSTIMER 0 (level 1)", + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_TICK_SUPPORT_SYSTIMER && ", + "help": "Select this to use systimer with the 3 interrupt priority.", + "id": "FREERTOS_CORETIMER_SYSTIMER_LVL3", + "name": "FREERTOS_CORETIMER_SYSTIMER_LVL3", + "range": null, + "title": "SYSTIMER 0 (level 3)", + "type": "bool" + } + ], + "depends_on": null, + "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.", + "id": "component-config-freertos-port-tick-timer-source-xtensa-only--C:-esp-v6.0-esp-idf-components-freertos-Kconfig-471", + "name": "FREERTOS_CORETIMER", + "title": "Tick timer source (Xtensa Only)", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_SYSTICK_USES_SYSTIMER", + "name": "FREERTOS_SYSTICK_USES_SYSTIMER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_SYSTICK_USES_CCOUNT", + "name": "FREERTOS_SYSTICK_USES_CCOUNT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "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.", + "id": "FREERTOS_RUN_TIME_STATS_USING_ESP_TIMER", + "name": "FREERTOS_RUN_TIME_STATS_USING_ESP_TIMER", + "range": null, + "title": "Use ESP TIMER for run time stats", + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_SYSTICK_USES_CCOUNT && ", + "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.", + "id": "FREERTOS_RUN_TIME_STATS_USING_CPU_CLK", + "name": "FREERTOS_RUN_TIME_STATS_USING_CPU_CLK", + "range": null, + "title": "Use CPU Clock for run time stats", + "type": "bool" + } + ], + "depends_on": "FREERTOS_GENERATE_RUN_TIME_STATS", + "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.", + "id": "component-config-freertos-port-choose-the-clock-source-for-run-time-stats-C:-esp-v6.0-esp-idf-components-freertos-Kconfig-515", + "name": "FREERTOS_RUN_TIME_STATS_CLK", + "title": "Choose the clock source for run time stats", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "Place FreeRTOS functions in IRAM for better performance.\nBy default, FreeRTOS functions are placed in Flash to save IRAM.\nEnable this option if you need maximum performance for FreeRTOS operations.\n\nNote: This option increases IRAM usage.", + "id": "FREERTOS_IN_IRAM", + "name": "FREERTOS_IN_IRAM", + "range": null, + "title": "Place FreeRTOS functions in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPI_FLASH_AUTO_SUSPEND", + "help": "When enabled additional FreeRTOS functions which maybe called from an ISR context are\nalso placed in Flash, thus freeing up more IRAM.\nThis option is only applicable when the SPI_FLASH_AUTO_SUSPEND feature is supported.", + "id": "FREERTOS_PLACE_ISR_FUNCTIONS_INTO_FLASH", + "name": "FREERTOS_PLACE_ISR_FUNCTIONS_INTO_FLASH", + "range": null, + "title": "Place FreeRTOS functions called from ISR context into Flash", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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", + "id": "FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE", + "name": "FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE", + "range": null, + "title": "Tests compliance with Vanilla FreeRTOS port*_CRITICAL calls", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-freertos-port-C:-esp-v6.0-esp-idf-components-freertos-Kconfig-359", + "title": "Port", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SPIRAM && FREERTOS_SUPPORT_STATIC_ALLOCATION", + "help": "Accessing memory in PSRAM 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\nExtra notes for ESP32:\n\nBecause some bits of the ESP32 code environment cannot be recompiled with the cache workaround,\nnormally tasks cannot be safely run with their stack residing in external memory; for this reason\nxTaskCreate (and related task creation functions) always allocate stack in internal memory and\nxTaskCreateStatic will check if the memory passed to it is in internal memory.\nIf you have a task that needs a large amount of stack and does not call on ROM code in any way\n(no direct calls, but also no Bluetooth/WiFi), you can try enable this to\ncause xTaskCreateStatic to allow tasks stack in external memory.", + "id": "FREERTOS_TASK_CREATE_ALLOW_EXT_MEM", + "name": "FREERTOS_TASK_CREATE_ALLOW_EXT_MEM", + "range": null, + "title": "Allow external memory as an argument to xTaskCreateStatic (READ HELP)", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-freertos-extra-C:-esp-v6.0-esp-idf-components-freertos-Kconfig-574", + "title": "Extra", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_PORT", + "name": "FREERTOS_PORT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_NO_AFFINITY", + "name": "FREERTOS_NO_AFFINITY", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_SUPPORT_STATIC_ALLOCATION", + "name": "FREERTOS_SUPPORT_STATIC_ALLOCATION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Hidden option, gets selected by CONFIG_ESP_DEBUG_OCDAWARE", + "id": "FREERTOS_DEBUG_OCDAWARE", + "name": "FREERTOS_DEBUG_OCDAWARE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_NUMBER_OF_CORES", + "name": "FREERTOS_NUMBER_OF_CORES", + "range": [ + 1, + 2 + ], + "title": null, + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-freertos-C:-esp-v6.0-esp-idf-components-freertos-Kconfig-1", + "title": "FreeRTOS", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "HAL_ASSERTION_EQUALS_SYSTEM", + "name": "HAL_ASSERTION_EQUALS_SYSTEM", + "range": null, + "title": "Same as system assertion level", + "type": "bool" + }, + { + "children": [], + "depends_on": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL >= 0 && ", + "help": null, + "id": "HAL_ASSERTION_DISABLE", + "name": "HAL_ASSERTION_DISABLE", + "range": null, + "title": "Disabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL >= 1 && ", + "help": null, + "id": "HAL_ASSERTION_SILENT", + "name": "HAL_ASSERTION_SILENT", + "range": null, + "title": "Silent", + "type": "bool" + }, + { + "children": [], + "depends_on": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL >= 2 && ", + "help": null, + "id": "HAL_ASSERTION_ENABLE", + "name": "HAL_ASSERTION_ENABLE", + "range": null, + "title": "Enabled", + "type": "bool" + } + ], + "depends_on": null, + "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.", + "id": "component-config-hardware-abstraction-layer-hal-and-low-level-ll--default-hal-assertion-level-C:-esp-v6.0-esp-idf-components-hal-Kconfig-2", + "name": "HAL_DEFAULT_ASSERTION_LEVEL", + "title": "Default HAL assertion level", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "HAL_DEFAULT_ASSERTION_LEVEL", + "name": "HAL_DEFAULT_ASSERTION_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "HAL_LOG_LEVEL_NONE", + "name": "HAL_LOG_LEVEL_NONE", + "range": null, + "title": "No output", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "HAL_LOG_LEVEL_ERROR", + "name": "HAL_LOG_LEVEL_ERROR", + "range": null, + "title": "Error", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "HAL_LOG_LEVEL_WARN", + "name": "HAL_LOG_LEVEL_WARN", + "range": null, + "title": "Warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "HAL_LOG_LEVEL_INFO", + "name": "HAL_LOG_LEVEL_INFO", + "range": null, + "title": "Info", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "HAL_LOG_LEVEL_DEBUG", + "name": "HAL_LOG_LEVEL_DEBUG", + "range": null, + "title": "Debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "HAL_LOG_LEVEL_VERBOSE", + "name": "HAL_LOG_LEVEL_VERBOSE", + "range": null, + "title": "Verbose", + "type": "bool" + } + ], + "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", + "help": "Specify how much output to see in HAL logs.", + "id": "component-config-hardware-abstraction-layer-hal-and-low-level-ll--hal-layer-log-verbosity-C:-esp-v6.0-esp-idf-components-hal-Kconfig-34", + "name": "HAL_LOG_LEVEL", + "title": "HAL layer log verbosity", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "HAL_LOG_LEVEL", + "name": "HAL_LOG_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_ROM_HAS_HAL_SYSTIMER", + "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.", + "id": "HAL_SYSTIMER_USE_ROM_IMPL", + "name": "HAL_SYSTIMER_USE_ROM_IMPL", + "range": null, + "title": "Use ROM implementation of SysTimer HAL driver", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_ROM_HAS_HAL_WDT", + "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.", + "id": "HAL_WDT_USE_ROM_IMPL", + "name": "HAL_WDT_USE_ROM_IMPL", + "range": null, + "title": "Use ROM implementation of WDT HAL driver", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this flag to use HAL functions from ROM when applicable instead of ESP-IDF.\n\nIf keeping this as \"n\" in your project, you will have less free IRAM.\nWhen compiling an application for a CPU that cannot access to the ROM memory,\nthis option should be disabled.", + "id": "HAL_GPIO_USE_ROM_IMPL", + "name": "HAL_GPIO_USE_ROM_IMPL", + "range": null, + "title": "Use ROM implementation of GPIO HAL driver", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32H2", + "help": "Enable this option to apply the countermeasure for ECDSA signature operation\nThis countermeasure masks the real ECDSA sign operation\nunder dummy sign operations to add randomness in the generated power signature.\nThis countermeasure is only necessary for ESP32-H2 < v1.2.", + "id": "HAL_ECDSA_GEN_SIG_CM", + "name": "HAL_ECDSA_GEN_SIG_CM", + "range": null, + "title": "Enable countermeasure for ECDSA signature generation", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-hardware-abstraction-layer-hal-and-low-level-ll--C:-esp-v6.0-esp-idf-components-hal-Kconfig-1", + "title": "Hardware Abstraction Layer (HAL) and Low Level (LL)", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "HEAP_HAS_EXEC_HEAP", + "name": "HEAP_HAS_EXEC_HEAP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "HEAP_POISONING_DISABLED", + "name": "HEAP_POISONING_DISABLED", + "range": null, + "title": "Basic (no poisoning)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "HEAP_POISONING_LIGHT", + "name": "HEAP_POISONING_LIGHT", + "range": null, + "title": "Light impact", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "HEAP_POISONING_COMPREHENSIVE", + "name": "HEAP_POISONING_COMPREHENSIVE", + "range": null, + "title": "Comprehensive", + "type": "bool" + } + ], + "depends_on": null, + "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.", + "id": "component-config-heap-memory-debugging-heap-corruption-detection-C:-esp-v6.0-esp-idf-components-heap-Kconfig-8", + "name": "HEAP_CORRUPTION_DETECTION", + "title": "Heap corruption detection", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "HEAP_TRACING_OFF", + "name": "HEAP_TRACING_OFF", + "range": null, + "title": "Disabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "HEAP_TRACING_STANDALONE", + "name": "HEAP_TRACING_STANDALONE", + "range": null, + "title": "Standalone", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "HEAP_TRACING_TOHOST", + "name": "HEAP_TRACING_TOHOST", + "range": null, + "title": "Host-based", + "type": "bool" + } + ], + "depends_on": null, + "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.", + "id": "component-config-heap-memory-debugging-heap-tracing-C:-esp-v6.0-esp-idf-components-heap-Kconfig-25", + "name": "HEAP_TRACING_DEST", + "title": "Heap tracing", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "Enables/disables heap tracing API.", + "id": "HEAP_TRACING", + "name": "HEAP_TRACING", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "SPIRAM && HEAP_TRACE_HASH_MAP", + "help": "When enabled this configuration forces the hash map to be placed in external RAM.", + "id": "HEAP_TRACE_HASH_MAP_IN_EXT_RAM", + "name": "HEAP_TRACE_HASH_MAP_IN_EXT_RAM", + "range": null, + "title": "Place hash map in external RAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "HEAP_TRACE_HASH_MAP", + "help": "Defines the number of entries in the heap trace hashmap. Each entry takes 8 bytes.\nThe bigger this number is, the better the performance. Recommended range: 200 - 2000.", + "id": "HEAP_TRACE_HASH_MAP_SIZE", + "name": "HEAP_TRACE_HASH_MAP_SIZE", + "range": null, + "title": "The number of entries in the hash map", + "type": "int" + } + ], + "depends_on": "HEAP_TRACING_STANDALONE", + "help": "Enable this flag to use a hash map to increase performance in handling\nheap trace records.\n\nHeap trace standalone supports storing records as a list, or a list + hash map.\n\nUsing only a list takes less memory, but calls to 'free' will get slower as the\nlist grows. This is particularly affected when using HEAP_TRACE_ALL mode.\n\nBy using a list + hash map, calls to 'free' remain fast, at the cost of\nadditional memory to store the hash map.", + "id": "HEAP_TRACE_HASH_MAP", + "name": "HEAP_TRACE_HASH_MAP", + "range": null, + "title": "Use hash map mechanism to access heap trace records", + "type": "bool" + }, + { + "children": [], + "depends_on": "HEAP_TRACING", + "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.", + "id": "HEAP_TRACING_STACK_DEPTH", + "name": "HEAP_TRACING_STACK_DEPTH", + "range": null, + "title": "Heap tracing stack depth", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Enable the user to implement function hooks triggered for each successful allocation and free.", + "id": "HEAP_USE_HOOKS", + "name": "HEAP_USE_HOOKS", + "range": null, + "title": "Use allocation and free hooks", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "HEAP_TASK_TRACKING", + "help": "When enabled, this configuration allows the user to keep trace of the memory usage\nof a task that has been deleted.\n\nThis allows the user to verify that no memory allocated within a task remains unfreed\nbefore terminating the task\n\nNote that this feature cannot keep track of a task deletion if the task is allocated statically", + "id": "HEAP_TRACK_DELETED_TASKS", + "name": "HEAP_TRACK_DELETED_TASKS", + "range": null, + "title": "Keep information about the memory usage of deleted tasks", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enables tracking the task responsible for each heap allocation.\n\nNote: Allocating or freeing memory or using the task tracking API will lead to a crash when the\nscheduler is not working (e.g, after calling vTaskSuspendAll).", + "id": "HEAP_TASK_TRACKING", + "name": "HEAP_TASK_TRACKING", + "range": null, + "title": "Enable heap task tracking", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "When enabled, if a memory allocation operation fails it will cause a system abort.", + "id": "HEAP_ABORT_WHEN_ALLOCATION_FAILS", + "name": "HEAP_ABORT_WHEN_ALLOCATION_FAILS", + "range": null, + "title": "Abort if memory allocation fails", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_ROM_HAS_HEAP_TLSF", + "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.", + "id": "HEAP_TLSF_USE_ROM_IMPL", + "name": "HEAP_TLSF_USE_ROM_IMPL", + "range": null, + "title": "Use ROM implementation of heap tlsf library", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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 IRAM ISR which runs when cache is disabled.", + "id": "HEAP_PLACE_FUNCTION_INTO_FLASH", + "name": "HEAP_PLACE_FUNCTION_INTO_FLASH", + "range": null, + "title": "Force the entire heap component to be placed in flash memory", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-heap-memory-debugging-C:-esp-v6.0-esp-idf-components-heap-Kconfig-1", + "title": "Heap memory debugging", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "IEEE802154_ENABLED", + "help": "The number of 802.15.4 receive buffers", + "id": "IEEE802154_RX_BUFFER_SIZE", + "name": "IEEE802154_RX_BUFFER_SIZE", + "range": null, + "title": "The number of 802.15.4 receive buffers", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "configure the CCA mode to Carrier sense only", + "id": "IEEE802154_CCA_CARRIER", + "name": "IEEE802154_CCA_CARRIER", + "range": null, + "title": "Carrier sense only", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "configure the CCA mode to Energy above threshold", + "id": "IEEE802154_CCA_ED", + "name": "IEEE802154_CCA_ED", + "range": null, + "title": "Energy above threshold", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "configure the CCA mode to Carrier sense OR energy above threshold", + "id": "IEEE802154_CCA_CARRIER_OR_ED", + "name": "IEEE802154_CCA_CARRIER_OR_ED", + "range": null, + "title": "Carrier sense OR energy above threshold", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "configure the CCA mode to Carrier sense AND energy above threshold", + "id": "IEEE802154_CCA_CARRIER_AND_ED", + "name": "IEEE802154_CCA_CARRIER_AND_ED", + "range": null, + "title": "Carrier sense AND energy above threshold", + "type": "bool" + } + ], + "depends_on": "IEEE802154_ENABLED", + "help": "configure the CCA mode", + "id": "component-config-ieee-802-15-4-ieee802154-enable-clear-channel-assessment-cca-mode-C:-esp-v6.0-esp-idf-components-ieee802154-Kconfig-16", + "name": "IEEE802154_CCA_MODE", + "title": "Clear Channel Assessment (CCA) mode", + "type": "choice" + }, + { + "children": [], + "depends_on": "IEEE802154_ENABLED", + "help": null, + "id": "IEEE802154_CCA_MODE", + "name": "IEEE802154_CCA_MODE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "IEEE802154_ENABLED", + "help": "set the CCA threshold, in dBm", + "id": "IEEE802154_CCA_THRESHOLD", + "name": "IEEE802154_CCA_THRESHOLD", + "range": null, + "title": "CCA detection threshold", + "type": "int" + }, + { + "children": [], + "depends_on": "IEEE802154_ENABLED", + "help": "set the pending table size", + "id": "IEEE802154_PENDING_TABLE_SIZE", + "name": "IEEE802154_PENDING_TABLE_SIZE", + "range": null, + "title": "Pending table size", + "type": "int" + }, + { + "children": [], + "depends_on": "IEEE802154_ENABLED", + "help": "Enable IEEE802154 multi-pan", + "id": "IEEE802154_MULTI_PAN_ENABLE", + "name": "IEEE802154_MULTI_PAN_ENABLE", + "range": null, + "title": "Enable multi-pan feature for frame filter", + "type": "bool" + }, + { + "children": [], + "depends_on": "IEEE802154_ENABLED", + "help": "Enabling this option increases throughput by ~5% at the expense of ~2.1k\nIRAM code size increase.", + "id": "IEEE802154_TIMING_OPTIMIZATION", + "name": "IEEE802154_TIMING_OPTIMIZATION", + "range": null, + "title": "Enable throughput optimization", + "type": "bool" + }, + { + "children": [], + "depends_on": "PM_ENABLE && IEEE802154_ENABLED", + "help": "Enabling this option allows the IEEE802.15.4 module to be powered down during automatic light sleep,\nwhich reduces current consumption.", + "id": "IEEE802154_SLEEP_ENABLE", + "name": "IEEE802154_SLEEP_ENABLE", + "range": null, + "title": "Enable IEEE802154 light sleep", + "type": "bool" + }, + { + "children": [], + "depends_on": "IEEE802154_ENABLED", + "help": "Enabling this option allows different kinds of IEEE802154 debug output.\nAll IEEE802154 debug features increase the size of the final binary.", + "id": "IEEE802154_DEBUG", + "is_menuconfig": true, + "name": "IEEE802154_DEBUG", + "range": null, + "title": "Enable IEEE802154 Debug", + "type": "menu" + }, + { + "children": [], + "depends_on": "IEEE802154_ENABLED", + "help": "Enabling this option to monitor and detect certain abnormal or unexpected\nstates during the operation of the IEEE 802.15.4. When this option is enabled,\nit will perform additional runtime checks and assertions.", + "id": "IEEE802154_DEBUG_ASSERT_MONITOR", + "name": "IEEE802154_DEBUG_ASSERT_MONITOR", + "range": null, + "title": "Enable IEEE802154 assert monitor", + "type": "bool" + } + ], + "depends_on": null, + "help": null, + "id": "IEEE802154_ENABLED", + "name": "IEEE802154_ENABLED", + "range": null, + "title": "IEEE802154 Enable", + "type": "bool" + }, + { + "children": [], + "depends_on": "IEEE802154_DEBUG", + "help": "Enabling this option to count IEEE802154 rx buffer when allocating or freeing.", + "id": "IEEE802154_RX_BUFFER_STATISTIC", + "name": "IEEE802154_RX_BUFFER_STATISTIC", + "range": null, + "title": "Rx buffer statistic", + "type": "bool" + }, + { + "children": [], + "depends_on": "IEEE802154_DEBUG", + "help": "Enabling this option to print more information when assert.", + "id": "IEEE802154_ASSERT", + "name": "IEEE802154_ASSERT", + "range": null, + "title": "Enrich the assert information", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "IEEE802154_RECORD_EVENT", + "help": "set the record event table size", + "id": "IEEE802154_RECORD_EVENT_SIZE", + "name": "IEEE802154_RECORD_EVENT_SIZE", + "range": null, + "title": "Record event table size", + "type": "int" + } + ], + "depends_on": "IEEE802154_RECORD", + "help": "Enabling this option to record event, when assert, the recorded event will be printed.", + "id": "IEEE802154_RECORD_EVENT", + "name": "IEEE802154_RECORD_EVENT", + "range": null, + "title": "Enable record event information for debugging", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "IEEE802154_RECORD_STATE", + "help": "set the record state table size", + "id": "IEEE802154_RECORD_STATE_SIZE", + "name": "IEEE802154_RECORD_STATE_SIZE", + "range": null, + "title": "Record state table size", + "type": "int" + } + ], + "depends_on": "IEEE802154_RECORD", + "help": "Enabling this option to record state, when assert, the recorded state will be printed.", + "id": "IEEE802154_RECORD_STATE", + "name": "IEEE802154_RECORD_STATE", + "range": null, + "title": "Enable record state information for debugging", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "IEEE802154_RECORD_CMD", + "help": "set the record command table size", + "id": "IEEE802154_RECORD_CMD_SIZE", + "name": "IEEE802154_RECORD_CMD_SIZE", + "range": null, + "title": "Record command table size", + "type": "int" + } + ], + "depends_on": "IEEE802154_RECORD", + "help": "Enabling this option to record the command, when assert, the recorded\ncommand will be printed.", + "id": "IEEE802154_RECORD_CMD", + "name": "IEEE802154_RECORD_CMD", + "range": null, + "title": "Enable record command information for debugging", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "IEEE802154_RECORD_ABORT", + "help": "set the record abort table size", + "id": "IEEE802154_RECORD_ABORT_SIZE", + "name": "IEEE802154_RECORD_ABORT_SIZE", + "range": null, + "title": "Record abort table size", + "type": "int" + } + ], + "depends_on": "IEEE802154_RECORD", + "help": "Enabling this option to record the abort, when assert, the recorded\nabort will be printed.", + "id": "IEEE802154_RECORD_ABORT", + "name": "IEEE802154_RECORD_ABORT", + "range": null, + "title": "Enable record abort information for debugging", + "type": "bool" + } + ], + "depends_on": "IEEE802154_DEBUG", + "help": "Enabling this option to add some probe codes in the driver, and record these information.", + "id": "IEEE802154_RECORD", + "name": "IEEE802154_RECORD", + "range": null, + "title": "Record the information with IEEE802154 state and event", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "IEEE802154_RECORD_TXRX_FRAME", + "help": "set the record frame table size", + "id": "IEEE802154_RECORD_TXRX_FRAME_SIZE", + "name": "IEEE802154_RECORD_TXRX_FRAME_SIZE", + "range": null, + "title": "Record frame table size", + "type": "int" + } + ], + "depends_on": "IEEE802154_DEBUG", + "help": "Enabling this option to record the tx and rx packets", + "id": "IEEE802154_RECORD_TXRX_FRAME", + "name": "IEEE802154_RECORD_TXRX_FRAME", + "range": null, + "title": "Enable record txrx packets for debugging", + "type": "bool" + }, + { + "children": [], + "depends_on": "IEEE802154_DEBUG", + "help": "Enabling this option to record the tx and rx", + "id": "IEEE802154_TXRX_STATISTIC", + "name": "IEEE802154_TXRX_STATISTIC", + "range": null, + "title": "Enable record tx/rx packets information for debugging", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-ieee-802-15-4-C:-esp-v6.0-esp-idf-components-ieee802154-Kconfig-1", + "title": "IEEE 802.15.4", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Select this option to use Log V1. Recommended for projects with strict stack constraints\nor that prioritize performance over flexibility.", + "id": "LOG_VERSION_1", + "name": "LOG_VERSION_1", + "range": null, + "title": "V1", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Select this option to use Log V2. Recommended for projects that require smaller binaries,\nruntime log formatting configuration, or advanced logging features.", + "id": "LOG_VERSION_2", + "name": "LOG_VERSION_2", + "range": null, + "title": "V2", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select the log version to be used by the ESP log component.\n\n- \"V1\": This version integrates log formatting into the format string provided by the user.\n Logs are processed and formatted during compile time, leading to a larger binary file.\n Example: ESP_LOGI(\"boot\", \"chip revision: v%d.%d\", major, minor);\n Output: I (56) boot: chip revision: v3.0\n Note: Log strings are stored in Flash with added formatting characters.\n Format string on flash: \"[0;32mI (%lu) %s: chip revision: v%d.%d [0m\"\n\n- \"V2\": This version centralizes log formatting within the esp_log() function.\n User-supplied format strings are stored without added formatting, reducing binary size.\n Example: ESP_LOGI(\"boot\", \"chip revision: v%d.%d\", major, minor);\n Output: I (56) boot: chip revision: v3.0\n Note: This version supports runtime configuration of formatting and is more flexible,\n logging from constrained environments (ex.: ISR, Startup, Cache disabled).\n It may consumes a bit more stack and affect performance.\n Format string on flash: \"chip revision: v%d.%d\"\n\nUse V1 for minimal stack usage and simpler implementation.\nUse V2 for smaller binary sizes, more flexible log formatting, and advanced features like disabling\ncolors or timestamps.", + "id": "component-config-log-log-version-C:-esp-v6.0-esp-idf-components-log-Kconfig-3", + "name": "LOG_VERSION", + "title": "Log version", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "This configuration sets the log version number based on the chosen log version.", + "id": "LOG_VERSION", + "name": "LOG_VERSION", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_NONE", + "name": "LOG_DEFAULT_LEVEL_NONE", + "range": null, + "title": "No output", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_ERROR", + "name": "LOG_DEFAULT_LEVEL_ERROR", + "range": null, + "title": "Error", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_WARN", + "name": "LOG_DEFAULT_LEVEL_WARN", + "range": null, + "title": "Warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_INFO", + "name": "LOG_DEFAULT_LEVEL_INFO", + "range": null, + "title": "Info", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_DEBUG", + "name": "LOG_DEFAULT_LEVEL_DEBUG", + "range": null, + "title": "Debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_VERBOSE", + "name": "LOG_DEFAULT_LEVEL_VERBOSE", + "range": null, + "title": "Verbose", + "type": "bool" + } + ], + "depends_on": null, + "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 if LOG_DYNAMIC_LEVEL_CONTROL\nis enabled.\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.", + "id": "component-config-log-log-level-default-log-verbosity-C:-esp-v6.0-esp-idf-components-log-.-Kconfig.level-3", + "name": "LOG_DEFAULT_LEVEL", + "title": "Default log verbosity", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LOG_DEFAULT_LEVEL", + "name": "LOG_DEFAULT_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_MAXIMUM_EQUALS_DEFAULT", + "name": "LOG_MAXIMUM_EQUALS_DEFAULT", + "range": null, + "title": "Same as default", + "type": "bool" + }, + { + "children": [], + "depends_on": "LOG_DEFAULT_LEVEL < 1 && ", + "help": null, + "id": "LOG_MAXIMUM_LEVEL_ERROR", + "name": "LOG_MAXIMUM_LEVEL_ERROR", + "range": null, + "title": "Error", + "type": "bool" + }, + { + "children": [], + "depends_on": "LOG_DEFAULT_LEVEL < 2 && ", + "help": null, + "id": "LOG_MAXIMUM_LEVEL_WARN", + "name": "LOG_MAXIMUM_LEVEL_WARN", + "range": null, + "title": "Warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "LOG_DEFAULT_LEVEL < 3 && ", + "help": null, + "id": "LOG_MAXIMUM_LEVEL_INFO", + "name": "LOG_MAXIMUM_LEVEL_INFO", + "range": null, + "title": "Info", + "type": "bool" + }, + { + "children": [], + "depends_on": "LOG_DEFAULT_LEVEL < 4 && ", + "help": null, + "id": "LOG_MAXIMUM_LEVEL_DEBUG", + "name": "LOG_MAXIMUM_LEVEL_DEBUG", + "range": null, + "title": "Debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "LOG_DEFAULT_LEVEL < 5 && ", + "help": null, + "id": "LOG_MAXIMUM_LEVEL_VERBOSE", + "name": "LOG_MAXIMUM_LEVEL_VERBOSE", + "range": null, + "title": "Verbose", + "type": "bool" + } + ], + "depends_on": null, + "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.", + "id": "component-config-log-log-level-maximum-log-verbosity-C:-esp-v6.0-esp-idf-components-log-.-Kconfig.level-41", + "name": "LOG_MAXIMUM_LEVEL", + "title": "Maximum log verbosity", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LOG_MAXIMUM_LEVEL", + "name": "LOG_MAXIMUM_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Enables an additional global \"master\" log level check that occurs before a log tag cache\nlookup. This is useful if you want to compile in a lot of logs that are selectable at\nruntime, but avoid the performance hit during periods where you don't want log output.\n\nExamples include remote log forwarding, or disabling logs during a time-critical or\nCPU-intensive section and re-enabling them later. Results in larger program size\ndepending on number of logs compiled in.\n\nIf enabled, defaults to LOG_DEFAULT_LEVEL and can be set using\nesp_log_set_level_master(). This check takes precedence over ESP_LOG_LEVEL_LOCAL.", + "id": "LOG_MASTER_LEVEL", + "name": "LOG_MASTER_LEVEL", + "range": null, + "title": "Enable global master log level", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enabling this option allows dynamic changes to the log level at runtime\n(using esp_log_level_set()), providing the ability to increase or decrease\nthe log level during program execution.\nIf disabled, the log level remains static once set at compile-time and calling\nesp_log_level_set() will have no effect.\nIf binary size is a critical consideration and dynamic log level changes are not needed,\nconsider disabling this option when LOG_TAG_LEVEL_IMPL_NONE=y to minimize program size.", + "id": "LOG_DYNAMIC_LEVEL_CONTROL", + "name": "LOG_DYNAMIC_LEVEL_CONTROL", + "range": null, + "title": "Enable dynamic log level changes at runtime", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "This option disables the ability to set the log level per tag.\nThe ability to change the log level at runtime depends on LOG_DYNAMIC_LEVEL_CONTROL.\nIf LOG_DYNAMIC_LEVEL_CONTROL is disabled, then changing the log level at runtime\nusing `esp_log_level_set()` is not possible.\nThis implementation is suitable for highly constrained environments.", + "id": "LOG_TAG_LEVEL_IMPL_NONE", + "name": "LOG_TAG_LEVEL_IMPL_NONE", + "range": null, + "title": "None", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Select this option to use the linked list-only implementation (no cache) for log level retrieval.\nThis approach searches the linked list of all tags for the log level, which may be slower\nfor a large number of tags but may have lower memory requirements than the CACHE approach.\nThe linked list approach compares the whole strings of log tags for finding the log level.", + "id": "LOG_TAG_LEVEL_IMPL_LINKED_LIST", + "name": "LOG_TAG_LEVEL_IMPL_LINKED_LIST", + "range": null, + "title": "Linked List", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Select this option to use a hybrid mode: cache in combination with the linked list\nfor log tag level checks. This hybrid approach offers a balance between speed and memory usage.\n\nThe cache stores recently accessed log tags and their corresponding log levels, providing\nfaster lookups for frequently used tags. The cache approach compares the tag pointers, which is\nfaster than comparing the whole strings.\n\nFor less frequently used tags, the linked list is used to search for the log level, which may be\nslower for a large number of tags but has lower memory requirements compared to a full cache.\n\nThis hybrid approach aims to improve the efficiency of log level retrieval by combining the benefits\nof both cache and linked list implementations.", + "id": "LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST", + "name": "LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST", + "range": null, + "title": "Cache + Linked List", + "type": "bool" + } + ], + "depends_on": null, + "help": "Choose the per-tag log level implementation for the log library. This functionality is used\nto enable/disable logs for a particular tag at run time. Applicable only for\napplication logs (i.e., not bootloader logs).", + "id": "component-config-log-log-level-level-settings-method-of-tag-level-checks-C:-esp-v6.0-esp-idf-components-log-.-.-Kconfig.level_settings-30", + "name": "LOG_TAG_LEVEL_IMPL", + "title": "Method of tag level checks", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "This option enables the use of a simple array-based cache implementation for storing and\nretrieving log tag levels. There is no additional code that reorders the cache for fast lookups.\nSuitable for projects where memory usage optimization is crucial and the simplicity of implementation\nis preferred.", + "id": "LOG_TAG_LEVEL_CACHE_ARRAY", + "name": "LOG_TAG_LEVEL_CACHE_ARRAY", + "range": null, + "title": "Array", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "This option enables the use of a binary min-heap-based cache implementation for efficient\nstorage and retrieval of log tag levels. It does automatically optimizing cache for fast lookups.\nSuitable for projects where speed of lookup is critical and memory usage can accommodate\nthe overhead of maintaining a binary min-heap structure.", + "id": "LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP", + "name": "LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP", + "range": null, + "title": "Binary Min-Heap", + "type": "bool" + } + ], + "depends_on": "LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST", + "help": "The cache stores recently accessed log tags (address of tag) and their corresponding log levels,\nproviding faster lookups for frequently used tags. Cache size can be configured using the\nLOG_TAG_LEVEL_IMPL_CACHE_SIZE option. The cache approach compares the tag pointers, which is\nfaster than comparing the whole strings.", + "id": "component-config-log-log-level-level-settings-cache-implementation-C:-esp-v6.0-esp-idf-components-log-.-.-Kconfig.level_settings-74", + "name": "LOG_TAG_LEVEL_CACHE_IMPL", + "title": "Cache implementation", + "type": "choice" + }, + { + "children": [], + "depends_on": "LOG_TAG_LEVEL_CACHE_ARRAY || LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP", + "help": "This option sets the size of the cache used for log tag entries. The cache stores recently accessed\nlog tags and their corresponding log levels, which helps improve the efficiency of log level retrieval.\nThe value must be a power of 2 minus 1 (e.g., 1, 3, 7, 15, 31, 63, 127, 255, ...)\nto ensure proper cache behavior. For LOG_TAG_LEVEL_CACHE_ARRAY option the value can be any,\nwithout restrictions.\n\nNote: A larger cache size can improve lookup performance for frequently used log tags but may consume\nmore memory. Conversely, a smaller cache size reduces memory usage but may lead to more frequent cache\nevictions for less frequently used log tags.", + "id": "LOG_TAG_LEVEL_IMPL_CACHE_SIZE", + "name": "LOG_TAG_LEVEL_IMPL_CACHE_SIZE", + "range": null, + "title": "Log Tag Cache Size", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-log-log-level-level-settings-C:-esp-v6.0-esp-idf-components-log-.-.-Kconfig.level_settings-1", + "title": "Level Settings", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-log-log-level-C:-esp-v6.0-esp-idf-components-log-.-Kconfig.level-1", + "title": "Log Level", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Enable ANSI terminal color codes. Logs (info, errors, warnings) will contain color codes.\nIn order to view these, your terminal program must support ANSI color codes.\n\nThis is disabled by default, as colors are added in IDF Monitor. If you want to use new lines\nin the messages or you are using a different terminal program, you may want to enable this option.", + "id": "LOG_COLORS", + "name": "LOG_COLORS", + "range": null, + "title": "Color", + "type": "bool" + }, + { + "children": [], + "depends_on": "LOG_VERSION_2", + "help": "Enables support for color codes in the esp_log() function. If CONFIG_LOG_COLORS is enabled, this option\nis always active. If CONFIG_LOG_COLORS is disabled, this option allows you to still handle color codes\nin specific files by defining ESP_LOG_COLOR_DISABLED as 0 before including esp_log.h.\n\nNote that enabling this option may slightly increase IRAM usage due to additional color handling\nfunctionality. It provides flexibility to manage color output even when CONFIG_LOG_COLORS is turned off.", + "id": "LOG_COLORS_SUPPORT", + "name": "LOG_COLORS_SUPPORT", + "range": null, + "title": "Allow enabling color output at run time", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "LOG_VERSION_2 && ", + "help": null, + "id": "LOG_TIMESTAMP_SOURCE_NONE", + "name": "LOG_TIMESTAMP_SOURCE_NONE", + "range": null, + "title": "None", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_TIMESTAMP_SOURCE_RTOS", + "name": "LOG_TIMESTAMP_SOURCE_RTOS", + "range": null, + "title": "Milliseconds Since Boot", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_TIMESTAMP_SOURCE_SYSTEM", + "name": "LOG_TIMESTAMP_SOURCE_SYSTEM", + "range": null, + "title": "System Time (HH:MM:SS.sss)", + "type": "bool" + }, + { + "children": [], + "depends_on": "LOG_VERSION_2 && ", + "help": null, + "id": "LOG_TIMESTAMP_SOURCE_SYSTEM_FULL", + "name": "LOG_TIMESTAMP_SOURCE_SYSTEM_FULL", + "range": null, + "title": "System Time (YY-MM-DD HH:MM:SS.sss)", + "type": "bool" + }, + { + "children": [], + "depends_on": "LOG_VERSION_2 && ", + "help": null, + "id": "LOG_TIMESTAMP_SOURCE_UNIX", + "name": "LOG_TIMESTAMP_SOURCE_UNIX", + "range": null, + "title": "Unix time in milliseconds", + "type": "bool" + } + ], + "depends_on": null, + "help": "Choose what sort of timestamp is displayed in the log output:\n\n- \"None\" - The log will only contain the actual log messages themselves\n without any time-related information. Avoiding timestamps can help conserve\n processing power and memory. It might useful when you\n perform log analysis or debugging, sometimes it's more straightforward\n to work with logs that lack timestamps, especially if the time of occurrence\n is not critical for understanding the issues.\n\n- \"Milliseconds since boot\" is calculated 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 (HH:MM:SS.sss)\" is taken from POSIX time functions which use the chip's\n RTC and high resolution 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- \"System time (YY-MM-DD HH:MM:SS.sss)\" it is the same as the above,\n but also prints the date as well.\n\n- \"Unix time in milliseconds\" is the same as the two above,\n but in Unix time format and in milliseconds.\n e.g. (1718795571035).\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.", + "id": "component-config-log-format-timestamp-C:-esp-v6.0-esp-idf-components-log-.-Kconfig.format-26", + "name": "LOG_TIMESTAMP_SOURCE", + "title": "Timestamp", + "type": "choice" + }, + { + "children": [], + "depends_on": "LOG_VERSION_2", + "help": "Enables support for timestamp in the esp_log() function.\nIf CONFIG_LOG_TIMESTAMP_SOURCE_NONE, this option allows you to still handle timestamp\nin specific files by defining ESP_LOG_TIMESTAMP_DISABLED as 0 before including esp_log.h.\n\nNote that enabling this option may slightly increase IRAM usage due to additional timestamp handling\nfunctionality. It provides flexibility to manage timestamp output even when\nCONFIG_LOG_TIMESTAMP_SOURCE_NONE.", + "id": "LOG_TIMESTAMP_SUPPORT", + "name": "LOG_TIMESTAMP_SUPPORT", + "range": null, + "title": "Allow enabling timestamp output at run time", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-log-format-C:-esp-v6.0-esp-idf-components-log-.-Kconfig.format-1", + "title": "Format", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "LOG_MODE_TEXT_EN", + "name": "LOG_MODE_TEXT_EN", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LOG_MODE_BINARY_EN", + "name": "LOG_MODE_BINARY_EN", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Enables text-based logging, where log messages are stored in a human-readable format.\nThis mode is useful for development and debugging, as it allows logs to be easily\nread and interpreted without additional processing.", + "id": "LOG_MODE_TEXT", + "name": "LOG_MODE_TEXT", + "range": null, + "title": "Text Log Mode", + "type": "bool" + }, + { + "children": [], + "depends_on": "LOG_VERSION_2 && ", + "help": "Enables binary logging with host-side format string expansion. In this mode, the\nformat argument of ESP_LOGx, ESP_EARLY_LOG, and ESP_DRAM_LOG macros is stored in a\nNOLOAD section, not included in the final binary file. This reduces flash usage by\napproximately 10% - 35%. The esp_log() function uses the binary log handler to output\nmessages. Instead of sending the full log string, the chip transmits only the\naddresses of these strings (if present in the ELF file). If the format string\ncannot be found in the ELF file, the chip sends the entire string. The host-side\nmonitor tool, which has access to the ELF file, reconstructs the log message using\nthe format string.\nThis reduces firmware size by eliminating format strings from\nflash memory and removing the usage of printf-like functions, potentially freeing up\na few kilobytes of space. To further reduce firmware size, wrap string data with ESP_LOG_ATTR_STR.", + "id": "LOG_MODE_BINARY", + "name": "LOG_MODE_BINARY", + "range": null, + "title": "Binary Log Mode", + "type": "bool" + } + ], + "depends_on": null, + "help": null, + "id": "component-config-log-settings-log-mode-C:-esp-v6.0-esp-idf-components-log-.-Kconfig.settings-9", + "name": "LOG_MODE", + "title": "Log Mode", + "type": "choice" + } + ], + "depends_on": null, + "id": "component-config-log-settings-C:-esp-v6.0-esp-idf-components-log-.-Kconfig.settings-1", + "title": "Settings", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LOG_IN_IRAM", + "name": "LOG_IN_IRAM", + "range": null, + "title": "Place logging functions in IRAM", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-log-C:-esp-v6.0-esp-idf-components-log-Kconfig-1", + "title": "Log", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Builds normally if selected. Excludes LwIP from build if unselected, even if it is a\ndependency of a component or application.\nSome applications can switch their IP stacks, e.g., when switching between chip\nand Linux targets (LwIP stack vs. Linux IP stack). Since the LwIP dependency cannot\neasily be excluded based on a Kconfig option, it has to be a dependency in all cases.\nThis switch allows the LwIP stack to be built selectively, even if it is a dependency.", + "id": "LWIP_ENABLE", + "name": "LWIP_ENABLE", + "range": null, + "title": "Enable LwIP stack", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "The default name this device will report to other devices on the network.\nCould be updated at runtime with esp_netif_set_hostname()", + "id": "LWIP_LOCAL_HOSTNAME", + "name": "LWIP_LOCAL_HOSTNAME", + "range": null, + "title": "Local netif hostname", + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": "LWIP tcpip task priority. In case of high throughput, this parameter\ncould be changed up to (configMAX_PRIORITIES-1).", + "id": "LWIP_TCPIP_TASK_PRIO", + "name": "LWIP_TCPIP_TASK_PRIO", + "range": [ + 1, + 24 + ], + "title": "LWIP TCP/IP Task Priority", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "LWIP_TCPIP_CORE_LOCKING", + "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.", + "id": "LWIP_TCPIP_CORE_LOCKING_INPUT", + "name": "LWIP_TCPIP_CORE_LOCKING_INPUT", + "range": null, + "title": "Enable tcpip core locking input", + "type": "bool" + } + ], + "depends_on": null, + "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", + "id": "LWIP_TCPIP_CORE_LOCKING", + "name": "LWIP_TCPIP_CORE_LOCKING", + "range": null, + "title": "Enable tcpip core locking", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "LWIP_CHECK_THREAD_SAFETY", + "name": "LWIP_CHECK_THREAD_SAFETY", + "range": null, + "title": "Checks that lwip API runs in expected context", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If this feature is enabled, standard API such as gethostbyname\nsupport .local addresses by sending one shot multicast mDNS\nquery", + "id": "LWIP_DNS_SUPPORT_MDNS_QUERIES", + "name": "LWIP_DNS_SUPPORT_MDNS_QUERIES", + "range": null, + "title": "Enable mDNS queries in resolving host name", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "LWIP_L2_TO_L3_COPY", + "name": "LWIP_L2_TO_L3_COPY", + "range": null, + "title": "Enable copy between Layer2 and Layer3 packets", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "LWIP_IRAM_OPTIMIZATION", + "name": "LWIP_IRAM_OPTIMIZATION", + "range": null, + "title": "Enable LWIP IRAM optimization", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "LWIP_EXTRA_IRAM_OPTIMIZATION", + "name": "LWIP_EXTRA_IRAM_OPTIMIZATION", + "range": null, + "title": "Enable LWIP IRAM optimization for TCP part", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "LWIP_TIMERS_ONDEMAND", + "name": "LWIP_TIMERS_ONDEMAND", + "range": null, + "title": "Enable LWIP Timers on demand", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "LWIP_ND6", + "help": "This option is used to set the the router flag for the NA packets.\nWhen enabled, the router flag in NA packet will always set to 1,\notherwise, never set router flag for NA packets.", + "id": "LWIP_FORCE_ROUTER_FORWARDING", + "name": "LWIP_FORCE_ROUTER_FORWARDING", + "range": null, + "title": "LWIP Force Router Forwarding Enable/Disable", + "type": "bool" + } + ], + "depends_on": "LWIP_IPV6", + "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.", + "id": "LWIP_ND6", + "name": "LWIP_ND6", + "range": null, + "title": "LWIP NDP6 Enable/Disable", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "The practical maximum limit is\ndetermined by available heap memory at runtime.\n\nSockets 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 253. If using value above 61, update CMakeLists defining\nFD_SETSIZE to the number of sockets used plus the\nexpected open files (minimum of +3 for stdout, stderr and stdin).", + "id": "LWIP_MAX_SOCKETS", + "name": "LWIP_MAX_SOCKETS", + "range": [ + 1, + 253 + ], + "title": "Max number of open sockets", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "This option is deprecated. Do not use this option, use VFS_SUPPORT_SELECT instead.", + "id": "LWIP_USE_ONLY_LWIP_SELECT", + "name": "LWIP_USE_ONLY_LWIP_SELECT", + "range": null, + "title": "Support LWIP socket select() only (DEPRECATED)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "LWIP_SO_LINGER", + "name": "LWIP_SO_LINGER", + "range": null, + "title": "Enable SO_LINGER processing", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "LWIP_SO_REUSE", + "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.", + "id": "LWIP_SO_REUSE_RXTOALL", + "name": "LWIP_SO_REUSE_RXTOALL", + "range": null, + "title": "SO_REUSEADDR copies broadcast/multicast to all matches", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enabling this option allows binding to a port which remains in\nTIME_WAIT.", + "id": "LWIP_SO_REUSE", + "name": "LWIP_SO_REUSE", + "range": null, + "title": "Enable SO_REUSEADDR option", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enabling this option allows checking for available data on a netconn.", + "id": "LWIP_SO_RCVBUF", + "name": "LWIP_SO_RCVBUF", + "range": null, + "title": "Enable SO_RCVBUF option", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enabling this option allows checking for the destination address\nof a received IPv4 Packet.", + "id": "LWIP_NETBUF_RECVINFO", + "name": "LWIP_NETBUF_RECVINFO", + "range": null, + "title": "Enable IP_PKTINFO option", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Set value for Time-To-Live used by transport layers.", + "id": "LWIP_IP_DEFAULT_TTL", + "name": "LWIP_IP_DEFAULT_TTL", + "range": [ + 1, + 255 + ], + "title": "The value for Time-To-Live used by transport layers", + "type": "int" + }, + { + "children": [], + "depends_on": "LWIP_IPV4", + "help": "Enabling this option allows fragmenting outgoing IP4 packets if their size\nexceeds MTU.", + "id": "LWIP_IP4_FRAG", + "name": "LWIP_IP4_FRAG", + "range": null, + "title": "Enable fragment outgoing IP4 packets", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_IPV6", + "help": "Enabling this option allows fragmenting outgoing IP6 packets if their size\nexceeds MTU.", + "id": "LWIP_IP6_FRAG", + "name": "LWIP_IP6_FRAG", + "range": null, + "title": "Enable fragment outgoing IP6 packets", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_IPV4", + "help": "Enabling this option allows reassemblying incoming fragmented IP4 packets.", + "id": "LWIP_IP4_REASSEMBLY", + "name": "LWIP_IP4_REASSEMBLY", + "range": null, + "title": "Enable reassembly incoming fragmented IP4 packets", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_IPV6", + "help": "Enabling this option allows reassemblying incoming fragmented IP6 packets.", + "id": "LWIP_IP6_REASSEMBLY", + "name": "LWIP_IP6_REASSEMBLY", + "range": null, + "title": "Enable reassembly incoming fragmented IP6 packets", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Set the maximum amount of pbufs waiting to be reassembled.", + "id": "LWIP_IP_REASS_MAX_PBUFS", + "name": "LWIP_IP_REASS_MAX_PBUFS", + "range": [ + 10, + 100 + ], + "title": "The maximum amount of pbufs waiting to be reassembled", + "type": "int" + }, + { + "children": [], + "depends_on": "LWIP_IPV6", + "help": "Set the number of duplicate address detection attempts.", + "id": "LWIP_IPV6_DUP_DETECT_ATTEMPTS", + "name": "LWIP_IPV6_DUP_DETECT_ATTEMPTS", + "range": [ + 0, + 7 + ], + "title": "Number of duplicate address detection attempts", + "type": "int" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "LWIP_IPV4_NAPT", + "help": "Enabling this option allows Port Forwarding or Port mapping.", + "id": "LWIP_IPV4_NAPT_PORTMAP", + "name": "LWIP_IPV4_NAPT_PORTMAP", + "range": null, + "title": "Enable NAT Port Mapping", + "type": "bool" + } + ], + "depends_on": "LWIP_IP_FORWARD", + "help": "Enabling this option allows Network Address and Port Translation.", + "id": "LWIP_IPV4_NAPT", + "name": "LWIP_IPV4_NAPT", + "range": null, + "title": "Enable NAT", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enabling this option allows packets forwarding across multiple interfaces.", + "id": "LWIP_IP_FORWARD", + "name": "LWIP_IP_FORWARD", + "range": null, + "title": "Enable IP forwarding", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enabling this option allows LWIP statistics", + "id": "LWIP_STATS", + "name": "LWIP_STATS", + "range": null, + "title": "Enable LWIP statistics", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "LWIP_ESP_GRATUITOUS_ARP", + "help": "Set the timer interval for gratuitous ARP. The default value is 60s", + "id": "LWIP_GARP_TMR_INTERVAL", + "name": "LWIP_GARP_TMR_INTERVAL", + "range": null, + "title": "GARP timer interval(seconds)", + "type": "int" + } + ], + "depends_on": "LWIP_IPV4", + "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.", + "id": "LWIP_ESP_GRATUITOUS_ARP", + "name": "LWIP_ESP_GRATUITOUS_ARP", + "range": null, + "title": "Send gratuitous ARP periodically", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "LWIP_ESP_MLDV6_REPORT", + "help": "Set the timer interval for mldv6 report. The default value is 30s", + "id": "LWIP_MLDV6_TMR_INTERVAL", + "name": "LWIP_MLDV6_TMR_INTERVAL", + "range": null, + "title": "mldv6 report timer interval(seconds)", + "type": "int" + } + ], + "depends_on": "LWIP_IPV6", + "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.", + "id": "LWIP_ESP_MLDV6_REPORT", + "name": "LWIP_ESP_MLDV6_REPORT", + "range": null, + "title": "Send mldv6 report periodically", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "LWIP_TCPIP_RECVMBOX_SIZE", + "name": "LWIP_TCPIP_RECVMBOX_SIZE", + "range": [ + 6, + 64 + ], + "title": "TCPIP task receive mail box size", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "!LWIP_AUTOIP && ", + "help": null, + "id": "LWIP_DHCP_DOES_ARP_CHECK", + "name": "LWIP_DHCP_DOES_ARP_CHECK", + "range": null, + "title": "DHCP provides simple ARP check", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_DHCP_DOES_ACD_CHECK", + "name": "LWIP_DHCP_DOES_ACD_CHECK", + "range": null, + "title": "DHCP provides Address Conflict Detection (ACD)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_DHCP_DOES_NOT_CHECK_OFFERED_IP", + "name": "LWIP_DHCP_DOES_NOT_CHECK_OFFERED_IP", + "range": null, + "title": "DHCP does not detect conflict on the offered IP", + "type": "bool" + } + ], + "depends_on": "LWIP_IPV4", + "help": "Choose the preferred way of DHCP client to check if the offered address\nis available:\n* Using Address Conflict Detection (ACD) module assures that the offered IP address\nis properly probed and announced before binding in DHCP. This conforms to RFC5227,\nbut takes several seconds.\n* Using ARP check, we only send two ARP requests to check for replies. This process\nlasts 1 - 2 seconds.\n* No conflict detection: We directly bind the offered address.", + "id": "component-config-lwip-choose-how-dhcp-validates-offered-ip-C:-esp-v6.0-esp-idf-components-lwip-Kconfig-321", + "name": "LWIP_DHCP_CHECKS_OFFERED_ADDRESS", + "title": "Choose how DHCP validates offered IP", + "type": "choice" + }, + { + "children": [], + "depends_on": "LWIP_IPV4", + "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.", + "id": "LWIP_DHCP_DISABLE_CLIENT_ID", + "name": "LWIP_DHCP_DISABLE_CLIENT_ID", + "range": null, + "title": "DHCP: Disable Use of HW address as client identification", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_IPV4", + "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.", + "id": "LWIP_DHCP_DISABLE_VENDOR_CLASS_ID", + "name": "LWIP_DHCP_DISABLE_VENDOR_CLASS_ID", + "range": null, + "title": "DHCP: Disable Use of vendor class identification", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_IPV4", + "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.", + "id": "LWIP_DHCP_RESTORE_LAST_IP", + "name": "LWIP_DHCP_RESTORE_LAST_IP", + "range": null, + "title": "DHCP: Restore last IP obtained from DHCP server", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_IPV4", + "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.", + "id": "LWIP_DHCP_OPTIONS_LEN", + "name": "LWIP_DHCP_OPTIONS_LEN", + "range": [ + 69, + 255 + ], + "title": "DHCP total option length", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Number of clients that may store data in client_data member array of struct netif.", + "id": "LWIP_NUM_NETIF_CLIENT_DATA", + "name": "LWIP_NUM_NETIF_CLIENT_DATA", + "range": [ + 0, + 256 + ], + "title": "Number of clients store data in netif", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Set DHCP coarse interval in seconds.\nA higher value will be less precise but cost less power consumption.", + "id": "LWIP_DHCP_COARSE_TIMER_SECS", + "name": "LWIP_DHCP_COARSE_TIMER_SECS", + "range": [ + 1, + 10 + ], + "title": "DHCP coarse timer interval(s)", + "type": "int" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "LWIP_DHCPS", + "help": "When enabled, the DHCP server parses client hostname (DHCP option 12)\nand makes it available via IP_EVENT_ASSIGNED_IP_TO_CLIENT. This adds\na small amount of RAM usage per lease to store the hostname.", + "id": "LWIP_DHCPS_REPORT_CLIENT_HOSTNAME", + "name": "LWIP_DHCPS_REPORT_CLIENT_HOSTNAME", + "range": null, + "title": "DHCPS: Report client hostname in assigned-IP event", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_DHCPS", + "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.", + "id": "LWIP_DHCPS_LEASE_UNIT", + "name": "LWIP_DHCPS_LEASE_UNIT", + "range": [ + 1, + 3600 + ], + "title": "Multiplier for lease time, in seconds", + "type": "int" + }, + { + "children": [], + "depends_on": "LWIP_DHCPS", + "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.", + "id": "LWIP_DHCPS_MAX_STATION_NUM", + "name": "LWIP_DHCPS_MAX_STATION_NUM", + "range": [ + 1, + 64 + ], + "title": "Maximum number of stations", + "type": "int" + } + ], + "depends_on": "LWIP_IPV4", + "help": "Enabling this option allows the device to run the DHCP server\n(to dynamically assign IPv4 addresses to clients).", + "id": "LWIP_DHCPS", + "name": "LWIP_DHCPS", + "range": null, + "title": "DHCPS: Enable IPv4 Dynamic Host Configuration Protocol Server (DHCPS)", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_DHCPS_REPORT_CLIENT_HOSTNAME", + "help": "Maximum number of bytes stored per-client for DHCP option 12 (hostname),\nincluding the terminating null when used in esp-netif events. Longer hostnames\nwill be truncated.", + "id": "LWIP_DHCPS_MAX_HOSTNAME_LEN", + "name": "LWIP_DHCPS_MAX_HOSTNAME_LEN", + "range": [ + 1, + 255 + ], + "title": "Maximum client hostname length stored by DHCPS", + "type": "int" + }, + { + "children": [], + "depends_on": "LWIP_DHCPS", + "help": "Enabling this option allows DHCP server to support temporary static ARP entries\nfor DHCP Client. This will help the DHCP server to send the DHCP OFFER and DHCP ACK using IP unicast.", + "id": "LWIP_DHCPS_STATIC_ENTRIES", + "name": "LWIP_DHCPS_STATIC_ENTRIES", + "range": null, + "title": "Enable ARP static entries", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-lwip-dhcp-server-C:-esp-v6.0-esp-idf-components-lwip-Kconfig-398", + "title": "DHCP server", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "LWIP_AUTOIP", + "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.)", + "id": "LWIP_AUTOIP_TRIES", + "name": "LWIP_AUTOIP_TRIES", + "range": null, + "title": "DHCP Probes before self-assigning IPv4 LL address", + "type": "int" + }, + { + "children": [], + "depends_on": "LWIP_AUTOIP", + "help": "If the AUTOIP functionality detects this many IP conflicts while\nself-assigning an address, it will go into a rate limited mode.", + "id": "LWIP_AUTOIP_MAX_CONFLICTS", + "name": "LWIP_AUTOIP_MAX_CONFLICTS", + "range": null, + "title": "Max IP conflicts before rate limiting", + "type": "int" + }, + { + "children": [], + "depends_on": "LWIP_AUTOIP", + "help": "If rate limiting self-assignment requests, wait this long between\neach request.", + "id": "LWIP_AUTOIP_RATE_LIMIT_INTERVAL", + "name": "LWIP_AUTOIP_RATE_LIMIT_INTERVAL", + "range": null, + "title": "Rate limited interval (seconds)", + "type": "int" + } + ], + "depends_on": "LWIP_IPV4", + "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.", + "id": "LWIP_AUTOIP", + "is_menuconfig": true, + "name": "LWIP_AUTOIP", + "range": null, + "title": "Enable IPV4 Link-Local Addressing (AUTOIP)", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": "Enable IPv4 stack. If you want to use IPv6 only TCP/IP stack, disable this.", + "id": "LWIP_IPV4", + "name": "LWIP_IPV4", + "range": null, + "title": "Enable IPv4", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "LWIP_IPV6", + "help": "Enabling this option allows the devices to IPV6 stateless address autoconfiguration (SLAAC).\n\nSee RFC 4862.", + "id": "LWIP_IPV6_AUTOCONFIG", + "name": "LWIP_IPV6_AUTOCONFIG", + "range": null, + "title": "Enable IPV6 stateless address autoconfiguration (SLAAC)", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_IPV6", + "help": "The maximum number of IPv6 addresses on each interface. Any additional\naddresses will be discarded.", + "id": "LWIP_IPV6_NUM_ADDRESSES", + "name": "LWIP_IPV6_NUM_ADDRESSES", + "range": null, + "title": "Number of IPv6 addresses on each network interface", + "type": "int" + }, + { + "children": [], + "depends_on": "LWIP_IPV6", + "help": "Forwarding IPv6 packets between interfaces is only required when acting as\na router.", + "id": "LWIP_IPV6_FORWARD", + "name": "LWIP_IPV6_FORWARD", + "range": null, + "title": "Enable IPv6 forwarding between interfaces", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enable IPv6 function. If not use IPv6 function, set this option to n.\nIf disabling LWIP_IPV6 then some other components (asio) will\nno longer be available.", + "id": "LWIP_IPV6", + "name": "LWIP_IPV6", + "range": null, + "title": "Enable IPv6", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_IPV6_AUTOCONFIG", + "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.", + "id": "LWIP_IPV6_RDNSS_MAX_DNS_SERVERS", + "name": "LWIP_IPV6_RDNSS_MAX_DNS_SERVERS", + "range": null, + "title": "Use IPv6 Router Advertisement Recursive DNS Server Option", + "type": "int" + }, + { + "children": [], + "depends_on": "LWIP_IPV6_AUTOCONFIG", + "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.", + "id": "LWIP_IPV6_DHCP6", + "name": "LWIP_IPV6_DHCP6", + "range": null, + "title": "Enable DHCPv6 stateless address autoconfiguration", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable callbacks when the network interface is up/down and addresses are changed.", + "id": "LWIP_NETIF_STATUS_CALLBACK", + "name": "LWIP_NETIF_STATUS_CALLBACK", + "range": null, + "title": "Enable status callback for network interfaces", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable callbacks when the physical network link is up/down.", + "id": "LWIP_NETIF_LINK_CALLBACK", + "name": "LWIP_NETIF_LINK_CALLBACK", + "range": null, + "title": "Enable link callback for network interfaces", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "LWIP_NETIF_LOOPBACK", + "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.", + "id": "LWIP_LOOPBACK_MAX_PBUFS", + "name": "LWIP_LOOPBACK_MAX_PBUFS", + "range": [ + 0, + 16 + ], + "title": "Max queued loopback packets per interface", + "type": "int" + } + ], + "depends_on": null, + "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", + "id": "LWIP_NETIF_LOOPBACK", + "is_menuconfig": true, + "name": "LWIP_NETIF_LOOPBACK", + "range": null, + "title": "Support per-interface loopback", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "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.", + "id": "LWIP_MAX_ACTIVE_TCP", + "name": "LWIP_MAX_ACTIVE_TCP", + "range": [ + 1, + 1024 + ], + "title": "Maximum active TCP Connections", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "LWIP_MAX_LISTENING_TCP", + "name": "LWIP_MAX_LISTENING_TCP", + "range": [ + 1, + 1024 + ], + "title": "Maximum listening TCP Connections", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "LWIP_TCP_HIGH_SPEED_RETRANSMISSION", + "name": "LWIP_TCP_HIGH_SPEED_RETRANSMISSION", + "range": null, + "title": "TCP high speed retransmissions", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Set maximum number of retransmissions of data segments.", + "id": "LWIP_TCP_MAXRTX", + "name": "LWIP_TCP_MAXRTX", + "range": [ + 3, + 12 + ], + "title": "Maximum number of retransmissions of data segments", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Set maximum number of retransmissions of SYN segments.", + "id": "LWIP_TCP_SYNMAXRTX", + "name": "LWIP_TCP_SYNMAXRTX", + "range": [ + 3, + 12 + ], + "title": "Maximum number of retransmissions of SYN segments", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "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", + "id": "LWIP_TCP_MSS", + "name": "LWIP_TCP_MSS", + "range": [ + 536, + 1460 + ], + "title": "Maximum Segment Size (MSS)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "LWIP_TCP_TMR_INTERVAL", + "name": "LWIP_TCP_TMR_INTERVAL", + "range": null, + "title": "TCP timer interval(ms)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Set maximum segment lifetime in milliseconds.", + "id": "LWIP_TCP_MSL", + "name": "LWIP_TCP_MSL", + "range": null, + "title": "Maximum segment lifetime (MSL)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Set maximum segment lifetime in milliseconds.", + "id": "LWIP_TCP_FIN_WAIT_TIMEOUT", + "name": "LWIP_TCP_FIN_WAIT_TIMEOUT", + "range": null, + "title": "Maximum FIN segment lifetime", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "LWIP_TCP_SND_BUF_DEFAULT", + "name": "LWIP_TCP_SND_BUF_DEFAULT", + "range": [ + 2440, + 65535 + ], + "title": "Default send buffer size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "LWIP_TCP_WND_DEFAULT", + "name": "LWIP_TCP_WND_DEFAULT", + "range": [ + 2440, + 65535 + ], + "title": "Default receive window size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "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 receive 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.", + "id": "LWIP_TCP_RECVMBOX_SIZE", + "name": "LWIP_TCP_RECVMBOX_SIZE", + "range": [ + 6, + 64 + ], + "title": "Default TCP receive mail box size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Set TCP accept mail box size. Generally bigger value means supporting larger backlogs\nbut more memory. The recommended value is 6, but applications can set it to a lower value\nif listening servers are meant to have a smaller backlog.\n\nTCP accept mail box is a per socket mail box, when the application listens for connections\nwith a given listening TCP socket. If the mailbox is full, LWIP will send a RST packet and\nthe client will fail to connect.", + "id": "LWIP_TCP_ACCEPTMBOX_SIZE", + "name": "LWIP_TCP_ACCEPTMBOX_SIZE", + "range": [ + 1, + 64 + ], + "title": "Default TCP accept mail box size", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "LWIP_TCP_QUEUE_OOSEQ", + "help": "The timeout value is TCP_OOSEQ_TIMEOUT * RTO.", + "id": "LWIP_TCP_OOSEQ_TIMEOUT", + "name": "LWIP_TCP_OOSEQ_TIMEOUT", + "range": [ + 1, + 30 + ], + "title": "Timeout for each pbuf queued in TCP OOSEQ, in RTOs.", + "type": "int" + }, + { + "children": [], + "depends_on": "LWIP_TCP_QUEUE_OOSEQ", + "help": "If LWIP_TCP_OOSEQ_MAX_PBUFS = 0, TCP will not control the number of OOSEQ pbufs.\n\nIn a poor network environment, many out-of-order tcp pbufs will be received.\nThese out-of-order pbufs will be cached in the TCP out-of-order queue which will\ncause Wi-Fi/Ethernet fail to release RX buffer in time.\nIt is possible that all RX buffers for MAC layer are used by OOSEQ.\n\nControl the number of out-of-order pbufs to ensure\nthat the MAC layer has enough RX buffer to receive packets.\n\nIn the Wi-Fi scenario, recommended OOSEQ PBUFS Range:\n0 <= TCP_OOSEQ_MAX_PBUFS <= CONFIG_ESP_WIFI_DYNAMIC_RX_BUFFER_NUM/(MAX_TCP_NUMBER + 1)\n\nIn the Ethernet scenario,recommended Ethernet OOSEQ PBUFS Range:\n0 <= TCP_OOSEQ_MAX_PBUFS <= CONFIG_ETH_DMA_RX_BUFFER_NUM/(MAX_TCP_NUMBER + 1)\n\nWithin the recommended value range, the larger the value, the better the performance.\n\nMAX_TCP_NUMBER represent Maximum number of TCP connections in Wi-Fi(STA+SoftAP) and Ethernet scenario.", + "id": "LWIP_TCP_OOSEQ_MAX_PBUFS", + "name": "LWIP_TCP_OOSEQ_MAX_PBUFS", + "range": [ + 0, + 12 + ], + "title": "The maximum number of pbufs queued on OOSEQ per pcb", + "type": "int" + }, + { + "children": [], + "depends_on": "LWIP_TCP_QUEUE_OOSEQ", + "help": "TCP will support sending selective acknowledgements (SACKs).", + "id": "LWIP_TCP_SACK_OUT", + "name": "LWIP_TCP_SACK_OUT", + "range": null, + "title": "Support sending selective acknowledgements", + "type": "bool" + } + ], + "depends_on": null, + "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.", + "id": "LWIP_TCP_QUEUE_OOSEQ", + "name": "LWIP_TCP_QUEUE_OOSEQ", + "range": null, + "title": "Queue incoming out-of-order segments", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_TCP_OVERSIZE_MSS", + "name": "LWIP_TCP_OVERSIZE_MSS", + "range": null, + "title": "MSS", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_TCP_OVERSIZE_QUARTER_MSS", + "name": "LWIP_TCP_OVERSIZE_QUARTER_MSS", + "range": null, + "title": "25% MSS", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_TCP_OVERSIZE_DISABLE", + "name": "LWIP_TCP_OVERSIZE_DISABLE", + "range": null, + "title": "Disabled", + "type": "bool" + } + ], + "depends_on": null, + "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.", + "id": "component-config-lwip-tcp-pre-allocate-transmit-pbuf-size-C:-esp-v6.0-esp-idf-components-lwip-Kconfig-789", + "name": "LWIP_TCP_OVERSIZE", + "title": "Pre-allocate transmit PBUF size", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "LWIP_WND_SCALE", + "help": "Enable this feature to support TCP window scaling.", + "id": "LWIP_TCP_RCV_SCALE", + "name": "LWIP_TCP_RCV_SCALE", + "range": null, + "title": "Set TCP receiving window scaling factor", + "type": "int" + } + ], + "depends_on": "SPIRAM_TRY_ALLOCATE_WIFI_LWIP && !SPIRAM_IGNORE_NOTFOUND", + "help": "Enable this feature to support TCP window scaling.", + "id": "LWIP_WND_SCALE", + "name": "LWIP_WND_SCALE", + "range": null, + "title": "Support TCP window scale", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Set default TCP rto time for a reasonable initial rto.\nIn bad network environment, recommend set value of rto time to 1500.", + "id": "LWIP_TCP_RTO_TIME", + "name": "LWIP_TCP_RTO_TIME", + "range": null, + "title": "Default TCP rto time", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-lwip-tcp-C:-esp-v6.0-esp-idf-components-lwip-Kconfig-588", + "title": "TCP", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "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.", + "id": "LWIP_MAX_UDP_PCBS", + "name": "LWIP_MAX_UDP_PCBS", + "range": [ + 1, + 1024 + ], + "title": "Maximum active UDP control blocks", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "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 receive 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.", + "id": "LWIP_UDP_RECVMBOX_SIZE", + "name": "LWIP_UDP_RECVMBOX_SIZE", + "range": [ + 6, + 64 + ], + "title": "Default UDP receive mail box size", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-lwip-udp-C:-esp-v6.0-esp-idf-components-lwip-Kconfig-838", + "title": "UDP", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Enable checksum checking for received IP messages", + "id": "LWIP_CHECKSUM_CHECK_IP", + "name": "LWIP_CHECKSUM_CHECK_IP", + "range": null, + "title": "Enable LWIP IP checksums", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable checksum checking for received UDP messages", + "id": "LWIP_CHECKSUM_CHECK_UDP", + "name": "LWIP_CHECKSUM_CHECK_UDP", + "range": null, + "title": "Enable LWIP UDP checksums", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable checksum checking for received ICMP messages", + "id": "LWIP_CHECKSUM_CHECK_ICMP", + "name": "LWIP_CHECKSUM_CHECK_ICMP", + "range": null, + "title": "Enable LWIP ICMP checksums", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-lwip-checksums-C:-esp-v6.0-esp-idf-components-lwip-Kconfig-869", + "title": "Checksums", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "LWIP_TCPIP_TASK_STACK_SIZE", + "name": "LWIP_TCPIP_TASK_STACK_SIZE", + "range": [ + 2048, + 65536 + ], + "title": "TCP/IP Task Stack Size", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY", + "name": "LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY", + "range": null, + "title": "No affinity", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_TCPIP_TASK_AFFINITY_CPU0", + "name": "LWIP_TCPIP_TASK_AFFINITY_CPU0", + "range": null, + "title": "CPU0", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_UNICORE && ", + "help": null, + "id": "LWIP_TCPIP_TASK_AFFINITY_CPU1", + "name": "LWIP_TCPIP_TASK_AFFINITY_CPU1", + "range": null, + "title": "CPU1", + "type": "bool" + } + ], + "depends_on": null, + "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.", + "id": "component-config-lwip-tcp-ip-task-affinity-C:-esp-v6.0-esp-idf-components-lwip-Kconfig-902", + "name": "LWIP_TCPIP_TASK_AFFINITY", + "title": "TCP/IP task affinity", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LWIP_TCPIP_TASK_AFFINITY", + "name": "LWIP_TCPIP_TASK_AFFINITY", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": "LWIP_IPV6", + "help": "Config max number of IPv6 packets to queue during MAC resolution.", + "id": "LWIP_IPV6_MEMP_NUM_ND6_QUEUE", + "name": "LWIP_IPV6_MEMP_NUM_ND6_QUEUE", + "range": [ + 3, + 20 + ], + "title": "Max number of IPv6 packets to queue during MAC resolution", + "type": "int" + }, + { + "children": [], + "depends_on": "LWIP_IPV6", + "help": "Config max number of entries in IPv6 neighbor cache", + "id": "LWIP_IPV6_ND6_NUM_NEIGHBORS", + "name": "LWIP_IPV6_ND6_NUM_NEIGHBORS", + "range": [ + 3, + 10 + ], + "title": "Max number of entries in IPv6 neighbor cache", + "type": "int" + }, + { + "children": [], + "depends_on": "LWIP_IPV6", + "help": "Maximum number of entries in IPv6 on-link prefixes cache", + "id": "LWIP_IPV6_ND6_NUM_PREFIXES", + "name": "LWIP_IPV6_ND6_NUM_PREFIXES", + "range": null, + "title": "Max number of entries in IPv6 on-link prefixes cache", + "type": "int" + }, + { + "children": [], + "depends_on": "LWIP_IPV6", + "help": "Maximum number of entries in IPv6 default routers cache", + "id": "LWIP_IPV6_ND6_NUM_ROUTERS", + "name": "LWIP_IPV6_ND6_NUM_ROUTERS", + "range": null, + "title": "Max number of entries in IPv6 default routers cache", + "type": "int" + }, + { + "children": [], + "depends_on": "LWIP_IPV6", + "help": "Maximum number of entries in IPv6 destinations cache", + "id": "LWIP_IPV6_ND6_NUM_DESTINATIONS", + "name": "LWIP_IPV6_ND6_NUM_DESTINATIONS", + "range": null, + "title": "Max number of entries in IPv6 destinations cache", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "LWIP_IPV6_ND6_ROUTE_INFO_OPTION_SUPPORT", + "help": "Maximum number of entries in IPv6 route information options cache", + "id": "LWIP_IPV6_ND6_NUM_ROUTE_INFO", + "name": "LWIP_IPV6_ND6_NUM_ROUTE_INFO", + "range": null, + "title": "Max number of entries in IPv6 route information options cache", + "type": "int" + } + ], + "depends_on": "LWIP_ND6", + "help": "Enable route information option (RIO) support in IPV6 ND6", + "id": "LWIP_IPV6_ND6_ROUTE_INFO_OPTION_SUPPORT", + "name": "LWIP_IPV6_ND6_ROUTE_INFO_OPTION_SUPPORT", + "range": null, + "title": "Enable IPV6 ND6 route information option support", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "LWIP_PPP_SUPPORT && LWIP_IPV4", + "help": "Enable IPCP protocol in PPP negotiations, which assigns IPv4 addresses to the PPP client,\nas well as IPv4 DNS servers.\nYou can disable this if your modem supports IPv6 only.", + "id": "LWIP_PPP_ENABLE_IPV4", + "name": "LWIP_PPP_ENABLE_IPV4", + "range": null, + "title": "Enable IPV4 support for PPP connections (IPCP)", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_PPP_SUPPORT && LWIP_IPV6", + "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.", + "id": "LWIP_PPP_ENABLE_IPV6", + "name": "LWIP_PPP_ENABLE_IPV6", + "range": null, + "title": "Enable IPV6 support for PPP connections (IPV6CP)", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_PPP_SUPPORT", + "help": "Enable to set a callback which is called on change of the internal PPP state machine.", + "id": "LWIP_PPP_NOTIFY_PHASE_SUPPORT", + "name": "LWIP_PPP_NOTIFY_PHASE_SUPPORT", + "range": null, + "title": "Enable Notify Phase Callback", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_PPP_SUPPORT", + "help": "Enable Password Authentication Protocol (PAP) support", + "id": "LWIP_PPP_PAP_SUPPORT", + "name": "LWIP_PPP_PAP_SUPPORT", + "range": null, + "title": "Enable PAP support", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_PPP_SUPPORT", + "help": "Enable Challenge Handshake Authentication Protocol (CHAP) support", + "id": "LWIP_PPP_CHAP_SUPPORT", + "name": "LWIP_PPP_CHAP_SUPPORT", + "range": null, + "title": "Enable CHAP support", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_PPP_SUPPORT", + "help": "Enable Microsoft version of the Challenge-Handshake Authentication Protocol (MSCHAP) support", + "id": "LWIP_PPP_MSCHAP_SUPPORT", + "name": "LWIP_PPP_MSCHAP_SUPPORT", + "range": null, + "title": "Enable MSCHAP support", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_PPP_SUPPORT", + "help": "Enable Microsoft Point-to-Point Encryption (MPPE) support", + "id": "LWIP_PPP_MPPE_SUPPORT", + "name": "LWIP_PPP_MPPE_SUPPORT", + "range": null, + "title": "Enable MPPE support", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_PPP_SUPPORT", + "help": "Enable to use PPP server", + "id": "LWIP_PPP_SERVER_SUPPORT", + "name": "LWIP_PPP_SERVER_SUPPORT", + "range": null, + "title": "Enable PPP server support", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_PPP_SUPPORT", + "help": "Enable support for VJ header compression.\nPlease disable this if you're using NAPT on PPP interface,\nsince the compressed IP header might not be correctly interpreted\nin NAT causing the compressed packet to be dropped.", + "id": "LWIP_PPP_VJ_HEADER_COMPRESSION", + "name": "LWIP_PPP_VJ_HEADER_COMPRESSION", + "range": null, + "title": "Enable VJ IP Header compression", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "LWIP_ENABLE_LCP_ECHO", + "help": "Interval in seconds between keepalive LCP echo requests, 0 to disable.", + "id": "LWIP_LCP_ECHOINTERVAL", + "name": "LWIP_LCP_ECHOINTERVAL", + "range": null, + "title": "Echo interval (s)", + "type": "int" + }, + { + "children": [], + "depends_on": "LWIP_ENABLE_LCP_ECHO", + "help": "Number of consecutive unanswered echo requests before failure is indicated.", + "id": "LWIP_LCP_MAXECHOFAILS", + "name": "LWIP_LCP_MAXECHOFAILS", + "range": null, + "title": "Maximum echo failures", + "type": "int" + } + ], + "depends_on": "LWIP_PPP_SUPPORT", + "help": "Enable LCP echo keepalive requests", + "id": "LWIP_ENABLE_LCP_ECHO", + "name": "LWIP_ENABLE_LCP_ECHO", + "range": null, + "title": "Enable LCP ECHO", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_PPP_SUPPORT", + "help": "Enable PPP debug log output", + "id": "LWIP_PPP_DEBUG_ON", + "name": "LWIP_PPP_DEBUG_ON", + "range": null, + "title": "Enable PPP debug log output", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_PPP_SUPPORT && !LWIP_PPP_MPPE_SUPPORT && !LWIP_PPP_MSCHAP_SUPPORT", + "help": "This option uses mbedTLS crypto functions (instead of internal PolarSSL\nimplementation) for PPP authentication modes (PAP, CHAP, etc.).\nYou can use this option to address symbol duplication issues, since\nthe internal functions are not namespaced (e.g. md5_init()).", + "id": "LWIP_USE_EXTERNAL_MBEDTLS", + "name": "LWIP_USE_EXTERNAL_MBEDTLS", + "range": null, + "title": "Use mbedTLS instead of internal polarSSL", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enable PPP stack. Now only PPP over serial is possible.", + "id": "LWIP_PPP_SUPPORT", + "is_menuconfig": true, + "name": "LWIP_PPP_SUPPORT", + "range": null, + "title": "Enable PPP support", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "LWIP_SLIP_SUPPORT", + "help": "Enable SLIP debug log output", + "id": "LWIP_SLIP_DEBUG_ON", + "name": "LWIP_SLIP_DEBUG_ON", + "range": null, + "title": "Enable SLIP debug log output", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enable SLIP stack. Now only SLIP over serial is possible.\n\nSLIP over serial support is experimental and unsupported.", + "id": "LWIP_SLIP_SUPPORT", + "is_menuconfig": true, + "name": "LWIP_SLIP_SUPPORT", + "range": null, + "title": "Enable SLIP support (new/experimental)", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Enable ICMP module for check network stability", + "id": "LWIP_ICMP", + "name": "LWIP_ICMP", + "range": null, + "title": "ICMP: Enable ICMP", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_ICMP6 || LWIP_ICMP", + "help": null, + "id": "LWIP_MULTICAST_PING", + "name": "LWIP_MULTICAST_PING", + "range": null, + "title": "Respond to multicast pings", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_ICMP", + "help": null, + "id": "LWIP_BROADCAST_PING", + "name": "LWIP_BROADCAST_PING", + "range": null, + "title": "Respond to broadcast pings", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-lwip-icmp-C:-esp-v6.0-esp-idf-components-lwip-Kconfig-1111", + "title": "ICMP", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "The maximum number of simultaneously active LWIP\nRAW protocol control blocks. The practical maximum\nlimit is determined by available heap memory at runtime.", + "id": "LWIP_MAX_RAW_PCBS", + "name": "LWIP_MAX_RAW_PCBS", + "range": [ + 1, + 1024 + ], + "title": "Maximum LWIP RAW PCBs", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-lwip-lwip-raw-api-C:-esp-v6.0-esp-idf-components-lwip-Kconfig-1131", + "title": "LWIP RAW API", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "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.", + "id": "LWIP_SNTP_MAX_SERVERS", + "name": "LWIP_SNTP_MAX_SERVERS", + "range": [ + 1, + 16 + ], + "title": "Maximum number of NTP servers", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "LWIP_DHCP_GET_NTP_SRV", + "help": "Set maximum number of NTP servers acquired via DHCP-offer.\nShould be less or equal to \"Maximum number of NTP servers\", any extra servers would be just ignored.", + "id": "LWIP_DHCP_MAX_NTP_SERVERS", + "name": "LWIP_DHCP_MAX_NTP_SERVERS", + "range": null, + "title": "Maximum number of NTP servers acquired via DHCP", + "type": "int" + } + ], + "depends_on": null, + "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.)", + "id": "LWIP_DHCP_GET_NTP_SRV", + "name": "LWIP_DHCP_GET_NTP_SRV", + "range": null, + "title": "Request NTP servers from DHCP", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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).", + "id": "LWIP_SNTP_UPDATE_DELAY", + "name": "LWIP_SNTP_UPDATE_DELAY", + "range": [ + 15000, + 4294967295 + ], + "title": "Request interval to update time (ms)", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "LWIP_SNTP_STARTUP_DELAY", + "help": "RFC 4330 recommends a startup delay before sending the initial request.\nLWIP calculates this delay to a random number of milliseconds between 0 and this value.", + "id": "LWIP_SNTP_MAXIMUM_STARTUP_DELAY", + "name": "LWIP_SNTP_MAXIMUM_STARTUP_DELAY", + "range": [ + 100, + 300000 + ], + "title": "Maximum startup delay (ms)", + "type": "int" + } + ], + "depends_on": null, + "help": "It is recommended (RFC 4330) to delay the initial request after by a random timeout from 1 to 5 minutes\nto reduce potential load of NTP servers after simultaneous power-up of many devices.\nThis option disables this initial delay. Please use this option with care, it could improve\na single device responsiveness but might cause peaks on the network after reset.\nAnother option to address responsiveness of devices while using the initial random delay\nis to adjust LWIP_SNTP_MAXIMUM_STARTUP_DELAY.", + "id": "LWIP_SNTP_STARTUP_DELAY", + "name": "LWIP_SNTP_STARTUP_DELAY", + "range": null, + "title": "Enable SNTP startup delay", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-lwip-sntp-C:-esp-v6.0-esp-idf-components-lwip-Kconfig-1144", + "title": "SNTP", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Maximum number of IP addresses that can be returned by DNS queries for a single host.", + "id": "LWIP_DNS_MAX_HOST_IP", + "name": "LWIP_DNS_MAX_HOST_IP", + "range": null, + "title": "Maximum number of IP addresses per host", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Set maximum number of DNS servers.\nIf fallback DNS servers are supported,\nthe number of DNS servers needs to be greater than or equal to 3.", + "id": "LWIP_DNS_MAX_SERVERS", + "name": "LWIP_DNS_MAX_SERVERS", + "range": [ + 1, + 4 + ], + "title": "Maximum number of DNS servers", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "LWIP_FALLBACK_DNS_SERVER_SUPPORT", + "help": "This option allows you to config dns fallback server address.", + "id": "LWIP_FALLBACK_DNS_SERVER_ADDRESS", + "name": "LWIP_FALLBACK_DNS_SERVER_ADDRESS", + "range": null, + "title": "DNS fallback server address", + "type": "string" + } + ], + "depends_on": "LWIP_DNS_MAX_SERVERS >= 3", + "help": "Enable this feature to support DNS fallback server.", + "id": "LWIP_FALLBACK_DNS_SERVER_SUPPORT", + "name": "LWIP_FALLBACK_DNS_SERVER_SUPPORT", + "range": null, + "title": "Enable DNS fallback server support", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This option allows collecting DNS server settings per netif using\nconfigurable callback function.\nIt's typically used with CONFIG_ESP_NETIF_SET_DNS_PER_DEFAULT_NETIF\nwhich configures a callback to collect the DNS info on esp_netif layer.", + "id": "LWIP_DNS_SETSERVER_WITH_NETIF", + "name": "LWIP_DNS_SETSERVER_WITH_NETIF", + "range": null, + "title": "Enable DNS server settings with netif", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_IPV4 && LWIP_IPV6", + "help": "Use esp_getaddrinfo() for DNS lookups instead of lwip_getaddrinfo().\nThis function correctly handles the AF_UNSPEC flag for resolving\nboth IPv4 and IPv6 addresses. Available only when both IPv4 and IPv6\nare enabled.", + "id": "LWIP_USE_ESP_GETADDRINFO", + "name": "LWIP_USE_ESP_GETADDRINFO", + "range": null, + "title": "Enable esp_getaddrinfo() instead of lwip_getaddrinfo()", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-lwip-dns-C:-esp-v6.0-esp-idf-components-lwip-Kconfig-1203", + "title": "DNS", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": "Set maximum number of ports a bridge can consists of.", + "id": "LWIP_BRIDGEIF_MAX_PORTS", + "name": "LWIP_BRIDGEIF_MAX_PORTS", + "range": [ + 1, + 63 + ], + "title": "Maximum number of bridge ports", + "type": "int" + }, + { + "children": [], + "depends_on": "!COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE", + "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.", + "id": "LWIP_ESP_LWIP_ASSERT", + "name": "LWIP_ESP_LWIP_ASSERT", + "range": null, + "title": "Enable LWIP ASSERT checks", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_HOOK_TCP_ISN_NONE", + "name": "LWIP_HOOK_TCP_ISN_NONE", + "range": null, + "title": "No hook declared", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_HOOK_TCP_ISN_DEFAULT", + "name": "LWIP_HOOK_TCP_ISN_DEFAULT", + "range": null, + "title": "Default implementation", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_HOOK_TCP_ISN_CUSTOM", + "name": "LWIP_HOOK_TCP_ISN_CUSTOM", + "range": null, + "title": "Custom implementation", + "type": "bool" + } + ], + "depends_on": null, + "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.", + "id": "component-config-lwip-hooks-tcp-isn-hook-C:-esp-v6.0-esp-idf-components-lwip-Kconfig-1275", + "name": "LWIP_HOOK_TCP_ISN", + "title": "TCP ISN Hook", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_HOOK_IP6_ROUTE_NONE", + "name": "LWIP_HOOK_IP6_ROUTE_NONE", + "range": null, + "title": "No hook declared", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_HOOK_IP6_ROUTE_DEFAULT", + "name": "LWIP_HOOK_IP6_ROUTE_DEFAULT", + "range": null, + "title": "Default (weak) implementation", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_HOOK_IP6_ROUTE_CUSTOM", + "name": "LWIP_HOOK_IP6_ROUTE_CUSTOM", + "range": null, + "title": "Custom implementation", + "type": "bool" + } + ], + "depends_on": "LWIP_IPV6", + "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.", + "id": "component-config-lwip-hooks-ipv6-route-hook-C:-esp-v6.0-esp-idf-components-lwip-Kconfig-1301", + "name": "LWIP_HOOK_IP6_ROUTE", + "title": "IPv6 route Hook", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_HOOK_ND6_GET_GW_NONE", + "name": "LWIP_HOOK_ND6_GET_GW_NONE", + "range": null, + "title": "No hook declared", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_HOOK_ND6_GET_GW_DEFAULT", + "name": "LWIP_HOOK_ND6_GET_GW_DEFAULT", + "range": null, + "title": "Default (weak) implementation", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_HOOK_ND6_GET_GW_CUSTOM", + "name": "LWIP_HOOK_ND6_GET_GW_CUSTOM", + "range": null, + "title": "Custom implementation", + "type": "bool" + } + ], + "depends_on": "LWIP_IPV6", + "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.", + "id": "component-config-lwip-hooks-ipv6-get-gateway-hook-C:-esp-v6.0-esp-idf-components-lwip-Kconfig-1321", + "name": "LWIP_HOOK_ND6_GET_GW", + "title": "IPv6 get gateway Hook", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_HOOK_IP6_SELECT_SRC_ADDR_NONE", + "name": "LWIP_HOOK_IP6_SELECT_SRC_ADDR_NONE", + "range": null, + "title": "No hook declared", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_HOOK_IP6_SELECT_SRC_ADDR_DEFAULT", + "name": "LWIP_HOOK_IP6_SELECT_SRC_ADDR_DEFAULT", + "range": null, + "title": "Default (weak) implementation", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_HOOK_IP6_SELECT_SRC_ADDR_CUSTOM", + "name": "LWIP_HOOK_IP6_SELECT_SRC_ADDR_CUSTOM", + "range": null, + "title": "Custom implementation", + "type": "bool" + } + ], + "depends_on": "LWIP_IPV6", + "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.", + "id": "component-config-lwip-hooks-ipv6-source-address-selection-hook-C:-esp-v6.0-esp-idf-components-lwip-Kconfig-1341", + "name": "LWIP_HOOK_IP6_SELECT_SRC_ADDR", + "title": "IPv6 source address selection Hook", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_HOOK_DHCP_EXTRA_OPTION_NONE", + "name": "LWIP_HOOK_DHCP_EXTRA_OPTION_NONE", + "range": null, + "title": "No hook declared", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_HOOK_DHCP_EXTRA_OPTION_DEFAULT", + "name": "LWIP_HOOK_DHCP_EXTRA_OPTION_DEFAULT", + "range": null, + "title": "Default (weak) implementation", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_HOOK_DHCP_EXTRA_OPTION_CUSTOM", + "name": "LWIP_HOOK_DHCP_EXTRA_OPTION_CUSTOM", + "range": null, + "title": "Custom implementation", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enables custom hook to receive and parse extra DHCP options.\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.", + "id": "component-config-lwip-hooks-dhcp-extra-option-hook-C:-esp-v6.0-esp-idf-components-lwip-Kconfig-1361", + "name": "LWIP_HOOK_DHCP_EXTRA_OPTION", + "title": "DHCP extra option hook", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_HOOK_NETCONN_EXT_RESOLVE_NONE", + "name": "LWIP_HOOK_NETCONN_EXT_RESOLVE_NONE", + "range": null, + "title": "No hook declared", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_HOOK_NETCONN_EXT_RESOLVE_DEFAULT", + "name": "LWIP_HOOK_NETCONN_EXT_RESOLVE_DEFAULT", + "range": null, + "title": "Default (weak) implementation", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_HOOK_NETCONN_EXT_RESOLVE_CUSTOM", + "name": "LWIP_HOOK_NETCONN_EXT_RESOLVE_CUSTOM", + "range": null, + "title": "Custom implementation", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enables custom DNS resolve hook (without callback).\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.", + "id": "component-config-lwip-hooks-netconn-external-resolve-hook-C:-esp-v6.0-esp-idf-components-lwip-Kconfig-1380", + "name": "LWIP_HOOK_NETCONN_EXTERNAL_RESOLVE", + "title": "Netconn external resolve Hook", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "This hidden option helps configure the DNS external resolve\nhook for external components like OpenThread. It ensures that\n`LWIP_HOOK_DNS_EXT_RESOLVE_CUSTOM` is selected without directly\nadding a dependency in the choice construct.", + "id": "LWIP_HOOK_DNS_EXTERNAL_RESOLVE_SELECT_CUSTOM", + "name": "LWIP_HOOK_DNS_EXTERNAL_RESOLVE_SELECT_CUSTOM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_HOOK_DNS_EXT_RESOLVE_NONE", + "name": "LWIP_HOOK_DNS_EXT_RESOLVE_NONE", + "range": null, + "title": "No hook declared", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_HOOK_DNS_EXT_RESOLVE_CUSTOM", + "name": "LWIP_HOOK_DNS_EXT_RESOLVE_CUSTOM", + "range": null, + "title": "Custom implementation", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enables custom DNS resolve hook (with callback).\nSetting this to \"custom\" provides hook's declaration\nonly and expects the application to implement it.", + "id": "component-config-lwip-hooks-dns-external-resolve-hook-C:-esp-v6.0-esp-idf-components-lwip-Kconfig-1408", + "name": "LWIP_HOOK_DNS_EXTERNAL_RESOLVE", + "title": "DNS external resolve Hook", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_HOOK_IP6_INPUT_NONE", + "name": "LWIP_HOOK_IP6_INPUT_NONE", + "range": null, + "title": "No hook declared", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_HOOK_IP6_INPUT_DEFAULT", + "name": "LWIP_HOOK_IP6_INPUT_DEFAULT", + "range": null, + "title": "Default (weak) implementation", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_HOOK_IP6_INPUT_CUSTOM", + "name": "LWIP_HOOK_IP6_INPUT_CUSTOM", + "range": null, + "title": "Custom implementation", + "type": "bool" + } + ], + "depends_on": "LWIP_IPV6", + "help": "Enables custom IPv6 packet input.\nSetting this to \"default\" provides weak IDF implementation,\nwhich drops all incoming IPv6 traffic if the interface has no link local address.\n(this default implementation is \"weak\" and could be still overwritten\nin the application if some additional IPv6 input packet filtering is needed)\nSetting this to \"none\" removes this default filter and conforms to the lwIP\nimplementation (which accepts multicasts even if the interface has no link local address)\nSetting this to \"custom\" provides hook's declaration\nonly and expects the application to implement it.", + "id": "component-config-lwip-hooks-ipv6-packet-input-C:-esp-v6.0-esp-idf-components-lwip-Kconfig-1423", + "name": "LWIP_HOOK_IP6_INPUT", + "title": "IPv6 packet input", + "type": "choice" + } + ], + "depends_on": null, + "id": "component-config-lwip-hooks-C:-esp-v6.0-esp-idf-components-lwip-Kconfig-1273", + "title": "Hooks", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "LWIP_DEBUG", + "help": "Enabling this option routes all enabled LWIP debugs through ESP_LOGD.", + "id": "LWIP_DEBUG_ESP_LOG", + "name": "LWIP_DEBUG_ESP_LOG", + "range": null, + "title": "Route LWIP debugs through ESP_LOG interface", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_DEBUG", + "help": null, + "id": "LWIP_NETIF_DEBUG", + "name": "LWIP_NETIF_DEBUG", + "range": null, + "title": "Enable netif debug messages", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_DEBUG", + "help": null, + "id": "LWIP_PBUF_DEBUG", + "name": "LWIP_PBUF_DEBUG", + "range": null, + "title": "Enable pbuf debug messages", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_DEBUG", + "help": null, + "id": "LWIP_ETHARP_DEBUG", + "name": "LWIP_ETHARP_DEBUG", + "range": null, + "title": "Enable etharp debug messages", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_DEBUG", + "help": null, + "id": "LWIP_API_LIB_DEBUG", + "name": "LWIP_API_LIB_DEBUG", + "range": null, + "title": "Enable api lib debug messages", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_DEBUG", + "help": null, + "id": "LWIP_SOCKETS_DEBUG", + "name": "LWIP_SOCKETS_DEBUG", + "range": null, + "title": "Enable socket debug messages", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_DEBUG", + "help": null, + "id": "LWIP_IP_DEBUG", + "name": "LWIP_IP_DEBUG", + "range": null, + "title": "Enable IP debug messages", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_DEBUG && LWIP_ICMP", + "help": null, + "id": "LWIP_ICMP_DEBUG", + "name": "LWIP_ICMP_DEBUG", + "range": null, + "title": "Enable ICMP debug messages", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_DEBUG", + "help": null, + "id": "LWIP_DHCP_STATE_DEBUG", + "name": "LWIP_DHCP_STATE_DEBUG", + "range": null, + "title": "Enable DHCP state tracking", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_DEBUG", + "help": null, + "id": "LWIP_DHCP_DEBUG", + "name": "LWIP_DHCP_DEBUG", + "range": null, + "title": "Enable DHCP debug messages", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_DEBUG", + "help": null, + "id": "LWIP_IP6_DEBUG", + "name": "LWIP_IP6_DEBUG", + "range": null, + "title": "Enable IP6 debug messages", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_DEBUG", + "help": null, + "id": "LWIP_ICMP6_DEBUG", + "name": "LWIP_ICMP6_DEBUG", + "range": null, + "title": "Enable ICMP6 debug messages", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_DEBUG", + "help": null, + "id": "LWIP_TCP_DEBUG", + "name": "LWIP_TCP_DEBUG", + "range": null, + "title": "Enable TCP debug messages", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_DEBUG", + "help": null, + "id": "LWIP_UDP_DEBUG", + "name": "LWIP_UDP_DEBUG", + "range": null, + "title": "Enable UDP debug messages", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_DEBUG", + "help": null, + "id": "LWIP_SNTP_DEBUG", + "name": "LWIP_SNTP_DEBUG", + "range": null, + "title": "Enable SNTP debug messages", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_DEBUG", + "help": null, + "id": "LWIP_DNS_DEBUG", + "name": "LWIP_DNS_DEBUG", + "range": null, + "title": "Enable DNS debug messages", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_DEBUG && LWIP_IPV4_NAPT", + "help": null, + "id": "LWIP_NAPT_DEBUG", + "name": "LWIP_NAPT_DEBUG", + "range": null, + "title": "Enable NAPT debug messages", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_DEBUG", + "help": null, + "id": "LWIP_BRIDGEIF_DEBUG", + "name": "LWIP_BRIDGEIF_DEBUG", + "range": null, + "title": "Enable bridge generic debug messages", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_DEBUG", + "help": null, + "id": "LWIP_BRIDGEIF_FDB_DEBUG", + "name": "LWIP_BRIDGEIF_FDB_DEBUG", + "range": null, + "title": "Enable bridge FDB debug messages", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_DEBUG", + "help": null, + "id": "LWIP_BRIDGEIF_FW_DEBUG", + "name": "LWIP_BRIDGEIF_FW_DEBUG", + "range": null, + "title": "Enable bridge forwarding debug messages", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enabling this option allows different kinds of lwIP debug output.\n\nAll lwIP debug features increase the size of the final binary.", + "id": "LWIP_DEBUG", + "is_menuconfig": true, + "name": "LWIP_DEBUG", + "range": null, + "title": "Enable LWIP Debug", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-lwip-C:-esp-v6.0-esp-idf-components-lwip-Kconfig-1", + "title": "LWIP", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "MBEDTLS_VER_4_X_SUPPORT", + "name": "MBEDTLS_VER_4_X_SUPPORT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_COMPILER_OPTIMIZATION_NONE", + "name": "MBEDTLS_COMPILER_OPTIMIZATION_NONE", + "range": null, + "title": "No optimization", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_COMPILER_OPTIMIZATION_SIZE", + "name": "MBEDTLS_COMPILER_OPTIMIZATION_SIZE", + "range": null, + "title": "Optimize for size (-Os)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_COMPILER_OPTIMIZATION_PERF", + "name": "MBEDTLS_COMPILER_OPTIMIZATION_PERF", + "range": null, + "title": "Optimize for performance (-O2)", + "type": "bool" + } + ], + "depends_on": null, + "help": "This option allows you to select the compiler optimization level for mbedTLS.\nThe default is set to the optimization level used by the rest of the ESP-IDF project.", + "id": "component-config-mbedtls-core-configuration-compiler-optimization-level-C:-esp-v6.0-esp-idf-components-mbedtls-Kconfig-9", + "name": "MBEDTLS_COMPILER_OPTIMIZATION", + "title": "Compiler optimization level", + "type": "choice" + }, + { + "children": [], + "depends_on": "(VFS_SUPPORT_IO && VFS_SUPPORT_DIR) || IDF_TARGET_LINUX", + "help": "This option enables functions in mbedTLS that use the filesystem.\nIt uses the default filesystem support for the target,\nwhich is added through vfs component for ESP32 based targets or by\nthe host system when the target is Linux.", + "id": "MBEDTLS_FS_IO", + "name": "MBEDTLS_FS_IO", + "range": null, + "title": "Enable functions that use the filesystem", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_THREADING_C", + "help": "Enable threading alt to allow your own alternate threading implementation.", + "id": "MBEDTLS_THREADING_ALT", + "name": "MBEDTLS_THREADING_ALT", + "range": null, + "title": "Enable threading alternate implementation", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_THREADING_C", + "help": "Enable the pthread wrapper layer for the threading layer.", + "id": "MBEDTLS_THREADING_PTHREAD", + "name": "MBEDTLS_THREADING_PTHREAD", + "range": null, + "title": "Enable threading pthread implementation", + "type": "bool" + } + ], + "depends_on": null, + "help": "If you do intend to use contexts between threads, you will need to enable\nthis layer to prevent race conditions.", + "id": "MBEDTLS_THREADING_C", + "name": "MBEDTLS_THREADING_C", + "range": null, + "title": "Enable the threading abstraction layer", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enables mbedtls_strerror() for converting error codes to error strings.\nDisabling this config can save some code/rodata size as the error\nstring conversion implementation is replaced with an empty stub.", + "id": "MBEDTLS_ERROR_STRINGS", + "name": "MBEDTLS_ERROR_STRINGS", + "range": null, + "title": "Enable error code to error string conversion", + "type": "bool" + }, + { + "children": [], + "depends_on": "!MBEDTLS_ERROR_STRINGS", + "help": "This option enables a dummy error function to make use of mbedtls_strerror()\nwhen MBEDTLS_ERROR_STRINGS is disabled. This is useful for applications\nthat use mbedtls_strerror() but do not need the actual error strings.\nThis option can be used to save code size when MBEDTLS_ERROR_STRINGS is disabled.", + "id": "MBEDTLS_ERROR_STRERROR_DUMMY", + "name": "MBEDTLS_ERROR_STRERROR_DUMMY", + "range": null, + "title": "Enable a dummy error function to make use of mbedtls_strerror()", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable version information functions.", + "id": "MBEDTLS_VERSION_C", + "name": "MBEDTLS_VERSION_C", + "range": null, + "title": "Enable version information", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_HAVE_TIME", + "help": "Enabling this config will provide users with a function\n\"mbedtls_platform_set_time()\" that allows to set an alternative\ntime function pointer.", + "id": "MBEDTLS_PLATFORM_TIME_ALT", + "name": "MBEDTLS_PLATFORM_TIME_ALT", + "range": null, + "title": "Enable mbedtls time support: platform-specific", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_HAVE_TIME", + "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.", + "id": "MBEDTLS_HAVE_TIME_DATE", + "name": "MBEDTLS_HAVE_TIME_DATE", + "range": null, + "title": "Enable mbedtls certificate expiry check", + "type": "bool" + } + ], + "depends_on": "!ESP_TIME_FUNCS_USE_NONE", + "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 timekeeping\nfunctions.", + "id": "MBEDTLS_HAVE_TIME", + "name": "MBEDTLS_HAVE_TIME", + "range": null, + "title": "Enable mbedtls time support", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_INTERNAL_MEM_ALLOC", + "name": "MBEDTLS_INTERNAL_MEM_ALLOC", + "range": null, + "title": "Internal memory", + "type": "bool" + }, + { + "children": [], + "depends_on": "(SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC) && ", + "help": null, + "id": "MBEDTLS_EXTERNAL_MEM_ALLOC", + "name": "MBEDTLS_EXTERNAL_MEM_ALLOC", + "range": null, + "title": "External SPIRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_DEFAULT_MEM_ALLOC", + "name": "MBEDTLS_DEFAULT_MEM_ALLOC", + "range": null, + "title": "Default alloc mode", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_CUSTOM_MEM_ALLOC", + "name": "MBEDTLS_CUSTOM_MEM_ALLOC", + "range": null, + "title": "Custom alloc mode", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP32_IRAM_AS_8BIT_ACCESSIBLE_MEMORY && ", + "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.", + "id": "MBEDTLS_IRAM_8BIT_MEM_ALLOC", + "name": "MBEDTLS_IRAM_8BIT_MEM_ALLOC", + "range": null, + "title": "Internal IRAM", + "type": "bool" + } + ], + "depends_on": null, + "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() behavior in ESP-IDF\n- Custom allocation mode, by overwriting calloc()/free()\n using 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.", + "id": "component-config-mbedtls-core-configuration-memory-allocation-strategy-C:-esp-v6.0-esp-idf-components-mbedtls-Kconfig-131", + "name": "MBEDTLS_MEM_ALLOC_MODE", + "title": "Memory allocation strategy", + "type": "choice" + }, + { + "children": [], + "depends_on": "!MBEDTLS_ASYMMETRIC_CONTENT_LEN", + "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).", + "id": "MBEDTLS_SSL_MAX_CONTENT_LEN", + "name": "MBEDTLS_SSL_MAX_CONTENT_LEN", + "range": null, + "title": "TLS maximum message content length", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_ASYMMETRIC_CONTENT_LEN", + "help": "This defines maximum incoming fragment length, overriding default\nmaximum content length (MBEDTLS_SSL_MAX_CONTENT_LEN).", + "id": "MBEDTLS_SSL_IN_CONTENT_LEN", + "name": "MBEDTLS_SSL_IN_CONTENT_LEN", + "range": [ + 512, + 16384 + ], + "title": "TLS maximum incoming fragment length", + "type": "int" + }, + { + "children": [], + "depends_on": "MBEDTLS_ASYMMETRIC_CONTENT_LEN", + "help": "This defines maximum outgoing fragment length, overriding default\nmaximum content length (MBEDTLS_SSL_MAX_CONTENT_LEN).", + "id": "MBEDTLS_SSL_OUT_CONTENT_LEN", + "name": "MBEDTLS_SSL_OUT_CONTENT_LEN", + "range": [ + 512, + 16384 + ], + "title": "TLS maximum outgoing fragment length", + "type": "int" + } + ], + "depends_on": null, + "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.", + "id": "MBEDTLS_ASYMMETRIC_CONTENT_LEN", + "name": "MBEDTLS_ASYMMETRIC_CONTENT_LEN", + "range": null, + "title": "Asymmetric in/out fragment length", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_DYNAMIC_FREE_CONFIG_DATA", + "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.", + "id": "MBEDTLS_DYNAMIC_FREE_CA_CERT", + "name": "MBEDTLS_DYNAMIC_FREE_CA_CERT", + "range": null, + "title": "Free SSL CA certificate after its usage", + "type": "bool" + } + ], + "depends_on": "MBEDTLS_DYNAMIC_BUFFER", + "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\nBecause all certificate, private key and DHM data are freed so users should register\ncertificate and private key to ssl config object again.", + "id": "MBEDTLS_DYNAMIC_FREE_CONFIG_DATA", + "name": "MBEDTLS_DYNAMIC_FREE_CONFIG_DATA", + "range": null, + "title": "Free private key and DHM data after its usage", + "type": "bool" + } + ], + "depends_on": "!IDF_TARGET_LINUX && !MBEDTLS_SSL_PROTO_DTLS && !MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH", + "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.", + "id": "MBEDTLS_DYNAMIC_BUFFER", + "name": "MBEDTLS_DYNAMIC_BUFFER", + "range": null, + "title": "Using dynamic TX/RX buffer", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable mbedTLS version features.\nThis option allows Allow run-time checking of compile-time enabled features.\nDisabling this option will save some code size.", + "id": "MBEDTLS_VERSION_FEATURES", + "name": "MBEDTLS_VERSION_FEATURES", + "range": null, + "title": "Enable mbedTLS version features", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_DEBUG_LEVEL_WARN", + "name": "MBEDTLS_DEBUG_LEVEL_WARN", + "range": null, + "title": "Warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_DEBUG_LEVEL_INFO", + "name": "MBEDTLS_DEBUG_LEVEL_INFO", + "range": null, + "title": "Info", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_DEBUG_LEVEL_DEBUG", + "name": "MBEDTLS_DEBUG_LEVEL_DEBUG", + "range": null, + "title": "Debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_DEBUG_LEVEL_VERBOSE", + "name": "MBEDTLS_DEBUG_LEVEL_VERBOSE", + "range": null, + "title": "Verbose", + "type": "bool" + } + ], + "depends_on": "MBEDTLS_DEBUG", + "help": "Set mbedTLS debugging level", + "id": "component-config-mbedtls-core-configuration-enable-mbedtls-debugging-set-mbedtls-debugging-level-C:-esp-v6.0-esp-idf-components-mbedtls-Kconfig-285", + "name": "MBEDTLS_DEBUG_LEVEL", + "title": "Set mbedTLS debugging level", + "type": "choice" + } + ], + "depends_on": null, + "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.", + "id": "MBEDTLS_DEBUG", + "name": "MBEDTLS_DEBUG", + "range": null, + "title": "Enable mbedTLS debugging", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MBEDTLS_DEBUG_LEVEL", + "name": "MBEDTLS_DEBUG_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Enable mbedTLS self-test functions.", + "id": "MBEDTLS_SELF_TEST", + "name": "MBEDTLS_SELF_TEST", + "range": null, + "title": "Enable mbedTLS self-test", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-mbedtls-core-configuration-C:-esp-v6.0-esp-idf-components-mbedtls-Kconfig-3", + "title": "Core Configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Enable X.509 certificate support.", + "id": "MBEDTLS_X509_USE_C", + "name": "MBEDTLS_X509_USE_C", + "range": null, + "title": "Enable X.509 certificate support", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "MBEDTLS_PEM_PARSE_C", + "name": "MBEDTLS_PEM_PARSE_C", + "range": null, + "title": "Read & Parse PEM formatted certificates", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable writing of PEM formatted certificates.\n\nIf writing certificate data only in DER format, disabling this\noption will save some code size.", + "id": "MBEDTLS_PEM_WRITE_C", + "name": "MBEDTLS_PEM_WRITE_C", + "range": null, + "title": "Write PEM formatted certificates", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_ASN1_PARSE_C && MBEDTLS_PK_C", + "help": "Enable generic public key parsing functions.", + "id": "MBEDTLS_PK_PARSE_C", + "name": "MBEDTLS_PK_PARSE_C", + "range": null, + "title": "Enables generic public key parsing functions", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_PK_C && MBEDTLS_ASN1_WRITE_C", + "help": "Enable generic public key writing functions.", + "id": "MBEDTLS_PK_WRITE_C", + "name": "MBEDTLS_PK_WRITE_C", + "range": null, + "title": "Enables generic public key writing functions", + "type": "bool" + } + ], + "depends_on": "MBEDTLS_MD_C && (MBEDTLS_RSA_C || MBEDTLS_ECP_C)", + "help": "Enable support for generic public key layer.", + "id": "MBEDTLS_PK_C", + "name": "MBEDTLS_PK_C", + "range": null, + "title": "Enable generic public key layer", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Removes mbedtls_x509_*_info(), as well as mbedtls_debug_print_crt() and other\nfunctions/constants only used by these functions.\nThis will save some code size.", + "id": "MBEDTLS_X509_REMOVE_INFO", + "name": "MBEDTLS_X509_REMOVE_INFO", + "range": null, + "title": "Remove X.509 debug info", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Support for parsing X.509 Certificate Revocation Lists.", + "id": "MBEDTLS_X509_CRL_PARSE_C", + "name": "MBEDTLS_X509_CRL_PARSE_C", + "range": null, + "title": "X.509 CRL parsing", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_X509_USE_C", + "help": "Enable X.509 certificate parsing.\nThis is required for TLS and DTLS.", + "id": "MBEDTLS_X509_CRT_PARSE_C", + "name": "MBEDTLS_X509_CRT_PARSE_C", + "range": null, + "title": "Enable X.509 certificate parsing", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Support for parsing X.509 Certificate Signing Requests", + "id": "MBEDTLS_X509_CSR_PARSE_C", + "name": "MBEDTLS_X509_CSR_PARSE_C", + "range": null, + "title": "X.509 CSR parsing", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_X509_CREATE_C", + "help": "Support for writing X.509 certificates", + "id": "MBEDTLS_X509_CRT_WRITE_C", + "name": "MBEDTLS_X509_CRT_WRITE_C", + "range": null, + "title": "X.509 certificate writing", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_X509_CREATE_C", + "help": "Support for writing X.509 CSRs", + "id": "MBEDTLS_X509_CSR_WRITE_C", + "name": "MBEDTLS_X509_CSR_WRITE_C", + "range": null, + "title": "X.509 CSR writing", + "type": "bool" + } + ], + "depends_on": "MBEDTLS_BIGNUM_C && MBEDTLS_PK_WRITE_C && MBEDTLS_MD_C", + "help": "Support for creating X.509 certificates and CSRs.", + "id": "MBEDTLS_X509_CREATE_C", + "name": "MBEDTLS_X509_CREATE_C", + "range": null, + "title": "X.509 certificate creation", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_X509_CRL_PARSE_C || MBEDTLS_X509_CSR_PARSE_C || MBEDTLS_X509_CRT_PARSE_C", + "help": "Support for parsing X.509 certificates with RSASSA-PSS signatures.", + "id": "MBEDTLS_X509_RSASSA_PSS_SUPPORT", + "name": "MBEDTLS_X509_RSASSA_PSS_SUPPORT", + "range": null, + "title": "X.509 PSS support", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "MBEDTLS_X509_TRUSTED_CERT_CALLBACK", + "name": "MBEDTLS_X509_TRUSTED_CERT_CALLBACK", + "range": null, + "title": "Enable trusted certificate callbacks", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable ASN.1 parsing functions.", + "id": "MBEDTLS_ASN1_PARSE_C", + "name": "MBEDTLS_ASN1_PARSE_C", + "range": null, + "title": "Enable ASN.1 parsing", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable ASN.1 writing functions.", + "id": "MBEDTLS_ASN1_WRITE_C", + "name": "MBEDTLS_ASN1_WRITE_C", + "range": null, + "title": "Enable ASN.1 writing", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL", + "name": "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL", + "range": null, + "title": "Use the full default certificate bundle", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Use only the most common certificates from the default bundles, reducing the size with 50%,\nwhile still having around 99% coverage.", + "id": "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN", + "name": "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN", + "range": null, + "title": "Use only the most common certificates from the default bundles", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE", + "name": "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE", + "range": null, + "title": "Do not use the default certificate bundle", + "type": "bool" + } + ], + "depends_on": "MBEDTLS_CERTIFICATE_BUNDLE", + "help": null, + "id": "component-config-mbedtls-certificates-enable-trusted-root-certificate-bundle-certificate-bundle-configuration-default-certificate-bundle-options-C:-esp-v6.0-esp-idf-components-mbedtls-Kconfig-456", + "name": "MBEDTLS_DEFAULT_CERTIFICATE_BUNDLE", + "title": "Default certificate bundle options", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE && MBEDTLS_CERTIFICATE_BUNDLE", + "help": "Name of the custom certificate directory or file. This path is evaluated\nrelative to the project root directory.", + "id": "MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE_PATH", + "name": "MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE_PATH", + "range": null, + "title": "Custom certificate bundle path", + "type": "string" + } + ], + "depends_on": "MBEDTLS_CERTIFICATE_BUNDLE && MBEDTLS_CERTIFICATE_BUNDLE", + "help": null, + "id": "MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE", + "name": "MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE", + "range": null, + "title": "Add custom certificates to the default bundle", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_CERTIFICATE_BUNDLE && !MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE && MBEDTLS_CERTIFICATE_BUNDLE", + "help": "Include the deprecated list of root certificates in the bundle.\nThis list gets updated when a certificate is removed from the Mozilla's\nNSS root certificate store. This config can be enabled if you would like\nto ensure that none of the certificates that were deployed in the product\nare affected because of the update to bundle. In turn, enabling this\nsetting keeps expired, retracted certificates in the bundle and it may\npose a security risk.\n- Deprecated cert list may grow based based on sync with upstream bundle\n- Deprecated certs would be removed in ESP-IDF (next) major release", + "id": "MBEDTLS_CERTIFICATE_BUNDLE_DEPRECATED_LIST", + "name": "MBEDTLS_CERTIFICATE_BUNDLE_DEPRECATED_LIST", + "range": null, + "title": "Add deprecated root certificates", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_CERTIFICATE_BUNDLE && MBEDTLS_CERTIFICATE_BUNDLE", + "help": null, + "id": "MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS", + "name": "MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS", + "range": null, + "title": "Maximum no of certificates allowed in certificate bundle", + "type": "int" + } + ], + "depends_on": "MBEDTLS_CERTIFICATE_BUNDLE", + "id": "component-config-mbedtls-certificates-enable-trusted-root-certificate-bundle-certificate-bundle-configuration-C:-esp-v6.0-esp-idf-components-mbedtls-Kconfig-454", + "title": "Certificate Bundle Configuration", + "type": "menu" + } + ], + "depends_on": null, + "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.", + "id": "MBEDTLS_CERTIFICATE_BUNDLE", + "name": "MBEDTLS_CERTIFICATE_BUNDLE", + "range": null, + "title": "Enable trusted root certificate bundle", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This options allows weak certificate verification by skipping the hostname verification.\nIt is not recommended to use this option.", + "id": "MBEDTLS_ALLOW_WEAK_CERTIFICATE_VERIFICATION", + "name": "MBEDTLS_ALLOW_WEAK_CERTIFICATE_VERIFICATION", + "range": null, + "title": "Allow weak certificate verification", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_CERTIFICATE_BUNDLE", + "help": "Enable support for cross-signed certificate verification in the certificate bundle.\nThis feature uses an internal callback to verify the cross-signed certificates.\nThis feature is kept disabled by default as enabling this feature increases\nheap usage by approximately 700 bytes.", + "id": "MBEDTLS_CERTIFICATE_BUNDLE_CROSS_SIGNED_VERIFY", + "name": "MBEDTLS_CERTIFICATE_BUNDLE_CROSS_SIGNED_VERIFY", + "range": null, + "title": "Support cross-signed certificate verification in certificate bundle", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-mbedtls-certificates-C:-esp-v6.0-esp-idf-components-mbedtls-Kconfig-316", + "title": "Certificates", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_TLS_ENABLED && MBEDTLS_TLS_ENABLED", + "help": null, + "id": "MBEDTLS_SSL_PROTO_TLS1_2", + "name": "MBEDTLS_SSL_PROTO_TLS1_2", + "range": null, + "title": "Support TLS 1.2 protocol", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_SSL_PROTO_TLS1_3 && MBEDTLS_SSL_PROTO_TLS1_3 && MBEDTLS_TLS_ENABLED", + "help": null, + "id": "MBEDTLS_SSL_TLS1_3_COMPATIBILITY_MODE", + "name": "MBEDTLS_SSL_TLS1_3_COMPATIBILITY_MODE", + "range": null, + "title": "TLS 1.3 middlebox compatibility mode", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_SSL_PROTO_TLS1_3 && MBEDTLS_SSL_PROTO_TLS1_3 && MBEDTLS_TLS_ENABLED", + "help": null, + "id": "MBEDTLS_SSL_TLS1_3_KEXM_PSK", + "name": "MBEDTLS_SSL_TLS1_3_KEXM_PSK", + "range": null, + "title": "TLS 1.3 PSK key exchange mode", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_SSL_PROTO_TLS1_3 && MBEDTLS_SSL_PROTO_TLS1_3 && MBEDTLS_TLS_ENABLED", + "help": null, + "id": "MBEDTLS_SSL_TLS1_3_KEXM_EPHEMERAL", + "name": "MBEDTLS_SSL_TLS1_3_KEXM_EPHEMERAL", + "range": null, + "title": "TLS 1.3 ephemeral key exchange mode", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_SSL_PROTO_TLS1_3 && MBEDTLS_SSL_PROTO_TLS1_3 && MBEDTLS_TLS_ENABLED", + "help": null, + "id": "MBEDTLS_SSL_TLS1_3_KEXM_PSK_EPHEMERAL", + "name": "MBEDTLS_SSL_TLS1_3_KEXM_PSK_EPHEMERAL", + "range": null, + "title": "TLS 1.3 PSK ephemeral key exchange mode", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_SSL_PROTO_TLS1_3 && MBEDTLS_CLIENT_SSL_SESSION_TICKETS && (MBEDTLS_SSL_TLS1_3_KEXM_PSK || MBEDTLS_SSL_TLS1_3_KEXM_EPHEMER) && MBEDTLS_SSL_PROTO_TLS1_3 && MBEDTLS_TLS_ENABLED", + "help": "Enable support for TLS 1.3 early data (0-RTT).", + "id": "MBEDTLS_SSL_EARLY_DATA", + "name": "MBEDTLS_SSL_EARLY_DATA", + "range": null, + "title": "TLS 1.3 early data", + "type": "bool" + } + ], + "depends_on": "MBEDTLS_SSL_PROTO_TLS1_3 && MBEDTLS_TLS_ENABLED", + "id": "component-config-mbedtls-enable-tls-protocol-support-tls-protocol-configuration-support-tls-1-3-protocol-tls-1-3-configuration-C:-esp-v6.0-esp-idf-components-mbedtls-Kconfig-550", + "title": "TLS 1.3 Configuration", + "type": "menu" + } + ], + "depends_on": "MBEDTLS_TLS_ENABLED && MBEDTLS_TLS_ENABLED", + "help": null, + "id": "MBEDTLS_SSL_PROTO_TLS1_3", + "name": "MBEDTLS_SSL_PROTO_TLS1_3", + "range": null, + "title": "Support TLS 1.3 protocol", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_TLS_ENABLED && MBEDTLS_TLS_ENABLED", + "help": "Provisions for GM/T SSL 1.1 support", + "id": "MBEDTLS_SSL_PROTO_GMTSSL1_1", + "name": "MBEDTLS_SSL_PROTO_GMTSSL1_1", + "range": null, + "title": "Support GM/T SSL 1.1 protocol", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_TLS_ENABLED", + "help": null, + "id": "MBEDTLS_TLS_SERVER", + "name": "MBEDTLS_TLS_SERVER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_TLS_ENABLED", + "help": null, + "id": "MBEDTLS_TLS_CLIENT", + "name": "MBEDTLS_TLS_CLIENT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_TLS_SERVER_AND_CLIENT", + "name": "MBEDTLS_TLS_SERVER_AND_CLIENT", + "range": null, + "title": "Server & Client", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_TLS_SERVER_ONLY", + "name": "MBEDTLS_TLS_SERVER_ONLY", + "range": null, + "title": "Server", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_TLS_CLIENT_ONLY", + "name": "MBEDTLS_TLS_CLIENT_ONLY", + "range": null, + "title": "Client", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_TLS_DISABLED", + "name": "MBEDTLS_TLS_DISABLED", + "range": null, + "title": "None", + "type": "bool" + } + ], + "depends_on": "MBEDTLS_TLS_ENABLED", + "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.", + "id": "component-config-mbedtls-enable-tls-protocol-support-tls-protocol-configuration-tls-protocol-role-C:-esp-v6.0-esp-idf-components-mbedtls-Kconfig-595", + "name": "MBEDTLS_TLS_MODE", + "title": "TLS Protocol Role", + "type": "choice" + }, + { + "children": [], + "depends_on": "(MBEDTLS_SSL_PROTO_TLS1_3 || MBEDTLS_SSL_DTLS_CONNECTION_ID) && MBEDTLS_TLS_ENABLED", + "help": "Controls the use of record plaintext padding in TLS 1.3 and\nwhen using 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:\nA value of 1 means that no padding will be used for outgoing records.\nOn systems lacking division instructions, a power of two should be preferred.", + "id": "MBEDTLS_SSL_CID_PADDING_GRANULARITY", + "name": "MBEDTLS_SSL_CID_PADDING_GRANULARITY", + "range": null, + "title": "Record plaintext padding", + "type": "int" + }, + { + "children": [], + "depends_on": "MBEDTLS_TLS_ENABLED", + "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.", + "id": "MBEDTLS_SSL_KEEP_PEER_CERTIFICATE", + "name": "MBEDTLS_SSL_KEEP_PEER_CERTIFICATE", + "range": null, + "title": "Keep peer certificate after handshake completion", + "type": "bool" + }, + { + "children": [], + "depends_on": "(MBEDTLS_GCM_C || MBEDTLS_CCM_C || MBEDTLS_CHACHAPOLY_C) && MBEDTLS_TLS_ENABLED", + "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 and RAM size.", + "id": "MBEDTLS_SSL_CONTEXT_SERIALIZATION", + "name": "MBEDTLS_SSL_CONTEXT_SERIALIZATION", + "range": null, + "title": "Enable serialization of the TLS context structures", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_TLS_ENABLED", + "help": "Enable simple SSL session cache implementation.", + "id": "MBEDTLS_SSL_CACHE_C", + "name": "MBEDTLS_SSL_CACHE_C", + "range": null, + "title": "Enable SSL session cache", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_TLS_ENABLED", + "help": "Enable all TLS alert messages in case of encountered errors as per RFC.\nIf disabled, Mbed TLS can still communicate with other servers, only debugging of failures is harder.\nThe advantage of not sending alert messages, is that no information is given about reasons for failures\nthus preventing adversaries of gaining intel.", + "id": "MBEDTLS_SSL_ALL_ALERT_MESSAGES", + "name": "MBEDTLS_SSL_ALL_ALERT_MESSAGES", + "range": null, + "title": "Enable all TLS alert messages", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_PSK_MODES && MBEDTLS_TLS_ENABLED && MBEDTLS_TLS_ENABLED", + "help": "Enable to support symmetric key PSK (pre-shared-key) TLS key exchange modes.", + "id": "MBEDTLS_KEY_EXCHANGE_PSK", + "name": "MBEDTLS_KEY_EXCHANGE_PSK", + "range": null, + "title": "Enable PSK based ciphersuite modes", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_PSK_MODES && MBEDTLS_ECDH_C && MBEDTLS_TLS_ENABLED && MBEDTLS_TLS_ENABLED", + "help": "Enable to support Elliptic-Curve-Diffie-Hellman PSK (pre-shared-key) TLS authentication modes.", + "id": "MBEDTLS_KEY_EXCHANGE_ECDHE_PSK", + "name": "MBEDTLS_KEY_EXCHANGE_ECDHE_PSK", + "range": null, + "title": "Enable ECDHE-PSK based ciphersuite modes", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_PSK_MODES && MBEDTLS_TLS_ENABLED && MBEDTLS_TLS_ENABLED", + "help": "Enable to support RSA PSK (pre-shared-key) TLS authentication modes.", + "id": "MBEDTLS_KEY_EXCHANGE_RSA_PSK", + "name": "MBEDTLS_KEY_EXCHANGE_RSA_PSK", + "range": null, + "title": "Enable RSA-PSK based ciphersuite modes", + "type": "bool" + } + ], + "depends_on": "MBEDTLS_TLS_ENABLED && MBEDTLS_TLS_ENABLED", + "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.", + "id": "MBEDTLS_PSK_MODES", + "name": "MBEDTLS_PSK_MODES", + "range": null, + "title": "Enable pre-shared-key ciphersuites", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_TLS_ENABLED && MBEDTLS_TLS_ENABLED", + "help": "Enable to support ciphersuites with prefix TLS-RSA-WITH-", + "id": "MBEDTLS_KEY_EXCHANGE_RSA", + "name": "MBEDTLS_KEY_EXCHANGE_RSA", + "range": null, + "title": "Enable RSA-only based ciphersuite modes", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE && MBEDTLS_ECDH_C && MBEDTLS_TLS_ENABLED && MBEDTLS_TLS_ENABLED", + "help": "Enable to support ciphersuites with prefix TLS-ECDHE-RSA-WITH-", + "id": "MBEDTLS_KEY_EXCHANGE_ECDHE_RSA", + "name": "MBEDTLS_KEY_EXCHANGE_ECDHE_RSA", + "range": null, + "title": "Enable ECDHE-RSA based ciphersuite modes", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE && MBEDTLS_ECDH_C && MBEDTLS_ECDSA_C && MBEDTLS_TLS_ENABLED && MBEDTLS_TLS_ENABLED", + "help": "Enable to support ciphersuites with prefix TLS-ECDHE-ECDSA-WITH-", + "id": "MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA", + "name": "MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA", + "range": null, + "title": "Enable ECDHE-ECDSA based ciphersuite modes", + "type": "bool" + } + ], + "depends_on": "MBEDTLS_ECP_C && MBEDTLS_TLS_ENABLED && MBEDTLS_TLS_ENABLED", + "help": "Enable to show Elliptic Curve based ciphersuite mode options.\nDisabling all Elliptic Curve ciphersuites saves code size and\ncan give slightly faster TLS handshakes, provided the server supports\nRSA-only ciphersuite modes.", + "id": "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE", + "name": "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE", + "range": null, + "title": "Support Elliptic Curve based ciphersuites", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECJPAKE_C && MBEDTLS_ECP_DP_SECP256R1_ENABLED && MBEDTLS_TLS_ENABLED && MBEDTLS_TLS_ENABLED", + "help": "Enable to support ciphersuites with prefix TLS-ECJPAKE-WITH-", + "id": "MBEDTLS_KEY_EXCHANGE_ECJPAKE", + "name": "MBEDTLS_KEY_EXCHANGE_ECJPAKE", + "range": null, + "title": "Enable ECJPAKE based ciphersuite modes", + "type": "bool" + } + ], + "depends_on": "MBEDTLS_TLS_ENABLED && MBEDTLS_TLS_ENABLED", + "id": "component-config-mbedtls-enable-tls-protocol-support-tls-protocol-configuration-tls-key-exchange-configuration-C:-esp-v6.0-esp-idf-components-mbedtls-Kconfig-672", + "title": "TLS Key Exchange Configuration", + "type": "menu" + }, + { + "children": [], + "depends_on": "MBEDTLS_X509_CRT_PARSE_C && MBEDTLS_TLS_ENABLED", + "help": "Enable support for RFC 6066 server name indication (SNI).", + "id": "MBEDTLS_SSL_SERVER_NAME_INDICATION", + "name": "MBEDTLS_SSL_SERVER_NAME_INDICATION", + "range": null, + "title": "Enable server name indication", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_TLS_ENABLED && MBEDTLS_TLS_ENABLED", + "help": "Disabling this option will save some code size if it is not needed.", + "id": "MBEDTLS_SSL_ALPN", + "name": "MBEDTLS_SSL_ALPN", + "range": null, + "title": "Support ALPN (Application Layer Protocol Negotiation)", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_TLS_ENABLED", + "help": "Enable support for the TLS max fragment length extension.", + "id": "MBEDTLS_SSL_MAX_FRAGMENT_LENGTH", + "name": "MBEDTLS_SSL_MAX_FRAGMENT_LENGTH", + "range": null, + "title": "Enable support for TLS max fragment length extension", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_SSL_PROTO_TLS1_3 && MBEDTLS_TLS_ENABLED", + "help": "Enable support for record size limit in TLS 1.3.", + "id": "MBEDTLS_SSL_RECORD_SIZE_LIMIT", + "name": "MBEDTLS_SSL_RECORD_SIZE_LIMIT", + "range": null, + "title": "Enable support for record size limit", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_TLS_ENABLED", + "help": "This enables the SSL buffer to be resized automatically\nbased on the negotiated maximum fragment length in each direction.", + "id": "MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH", + "name": "MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH", + "range": null, + "title": "Variable SSL buffer length", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_TLS_ENABLED && MBEDTLS_SSL_PROTO_TLS1_2 && MBEDTLS_TLS_ENABLED", + "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.", + "id": "MBEDTLS_SSL_RENEGOTIATION", + "name": "MBEDTLS_SSL_RENEGOTIATION", + "range": null, + "title": "Support TLS renegotiation", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_TLS_ENABLED && MBEDTLS_TLS_ENABLED", + "help": "Client support for RFC 5077 session tickets. See mbedTLS documentation for more details.\nDisabling this option will save some code size.", + "id": "MBEDTLS_CLIENT_SSL_SESSION_TICKETS", + "name": "MBEDTLS_CLIENT_SSL_SESSION_TICKETS", + "range": null, + "title": "TLS: Client Support for RFC 5077 SSL session tickets", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_TLS_ENABLED && (MBEDTLS_GCM_C || MBEDTLS_CCM_C || MBEDTLS_CHACHAPOLY_C) && MBEDTLS_TLS_ENABLED", + "help": "Server support for RFC 5077 session tickets. See mbedTLS documentation for more details.\nDisabling this option will save some code size.", + "id": "MBEDTLS_SERVER_SSL_SESSION_TICKETS", + "name": "MBEDTLS_SERVER_SSL_SESSION_TICKETS", + "range": null, + "title": "TLS: Server Support for RFC 5077 SSL session tickets", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_TLS_ENABLED && MBEDTLS_TLS_ENABLED", + "help": "Enable shared symmetric keys export for TLS sessions using mbedtls_ssl_export_keying_material()\nafter SSL handshake. The process for deriving the keys is specified in RFC 5705 for TLS 1.2\nand in RFC 8446, Section 7.5, for TLS 1.3.", + "id": "MBEDTLS_SSL_KEYING_MATERIAL_EXPORT", + "name": "MBEDTLS_SSL_KEYING_MATERIAL_EXPORT", + "range": null, + "title": "Enable keying material export", + "type": "bool" + } + ], + "depends_on": "MBEDTLS_TLS_ENABLED", + "id": "component-config-mbedtls-enable-tls-protocol-support-tls-protocol-configuration-C:-esp-v6.0-esp-idf-components-mbedtls-Kconfig-537", + "title": "TLS Protocol Configuration", + "type": "menu" + } + ], + "depends_on": null, + "help": "Enable support for the TLS protocol, which is used for secure communication\nover networks. This option is required for most secure network protocols,\nincluding HTTPS, FTPS, and others.\n\nIf you do not need TLS support, you can disable this option to save code size.", + "id": "MBEDTLS_TLS_ENABLED", + "name": "MBEDTLS_TLS_ENABLED", + "range": null, + "title": "Enable TLS protocol support", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_SSL_PROTO_DTLS", + "help": "Enable basic DTLS cookie implementation for hello verification.", + "id": "MBEDTLS_SSL_COOKIE_C", + "name": "MBEDTLS_SSL_COOKIE_C", + "range": null, + "title": "Enable SSL session cookie", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_SSL_DTLS_CONNECTION_ID && MBEDTLS_SSL_PROTO_DTLS", + "help": "Maximum length of CIDs used for incoming DTLS messages", + "id": "MBEDTLS_SSL_CID_IN_LEN_MAX", + "name": "MBEDTLS_SSL_CID_IN_LEN_MAX", + "range": null, + "title": "Maximum length of CIDs used for incoming DTLS messages", + "type": "int" + }, + { + "children": [], + "depends_on": "MBEDTLS_SSL_DTLS_CONNECTION_ID && MBEDTLS_SSL_PROTO_DTLS", + "help": "Maximum length of CIDs used for outgoing DTLS messages", + "id": "MBEDTLS_SSL_CID_OUT_LEN_MAX", + "name": "MBEDTLS_SSL_CID_OUT_LEN_MAX", + "range": null, + "title": "Maximum length of CIDs used for outgoing DTLS messages", + "type": "int" + } + ], + "depends_on": "MBEDTLS_SSL_PROTO_DTLS", + "help": "Enable support for the DTLS Connection ID extension which allows to\nidentify DTLS connections across changes in the underlying transport.", + "id": "MBEDTLS_SSL_DTLS_CONNECTION_ID", + "name": "MBEDTLS_SSL_DTLS_CONNECTION_ID", + "range": null, + "title": "Support for the DTLS Connection ID extension", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_SSL_PROTO_DTLS", + "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.", + "id": "MBEDTLS_SSL_DTLS_SRTP", + "name": "MBEDTLS_SSL_DTLS_SRTP", + "range": null, + "title": "Enable support for negotiation of DTLS-SRTP (RFC 5764)", + "type": "bool" + } + ], + "depends_on": "MBEDTLS_SSL_PROTO_DTLS", + "id": "component-config-mbedtls-support-dtls-protocol-all-versions--dtls-based-configurations-C:-esp-v6.0-esp-idf-components-mbedtls-Kconfig-818", + "title": "DTLS-based configurations", + "type": "menu" + } + ], + "depends_on": "MBEDTLS_SSL_PROTO_TLS1_2", + "help": "Requires TLS 1.2 to be enabled for DTLS 1.2", + "id": "MBEDTLS_SSL_PROTO_DTLS", + "name": "MBEDTLS_SSL_PROTO_DTLS", + "range": null, + "title": "Support DTLS protocol (all versions)", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "MBEDTLS_AES_C", + "name": "MBEDTLS_AES_C", + "range": null, + "title": "AES block cipher", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MBEDTLS_CAMELLIA_C", + "name": "MBEDTLS_CAMELLIA_C", + "range": null, + "title": "Camellia block cipher", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MBEDTLS_ARIA_C", + "name": "MBEDTLS_ARIA_C", + "range": null, + "title": "ARIA block cipher", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_CAMELLIA_C", + "help": "Reduces ROM usage of the Camellia implementation", + "id": "MBEDTLS_CAMELLIA_SMALL_MEMORY", + "name": "MBEDTLS_CAMELLIA_SMALL_MEMORY", + "range": null, + "title": "Use small memory implementation of Camellia", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "MBEDTLS_DES_C", + "name": "MBEDTLS_DES_C", + "range": null, + "title": "DES block cipher (legacy, insecure)", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_AES_C || MBEDTLS_CAMELLIA_C", + "help": "Enable Counter with CBC-MAC (CCM) modes for AES and/or Camellia ciphers.\n\nDisabling this option saves some code size.", + "id": "MBEDTLS_CCM_C", + "name": "MBEDTLS_CCM_C", + "range": null, + "title": "CCM (Counter with CBC-MAC) block cipher modes", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_AES_C || MBEDTLS_CAMELLIA_C", + "help": "Enable Cipher Block Chaining (CBC) modes for AES and/or Camellia ciphers.", + "id": "MBEDTLS_CIPHER_MODE_CBC", + "name": "MBEDTLS_CIPHER_MODE_CBC", + "range": null, + "title": "CBC (Cipher Block Chaining) block cipher modes", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_AES_C || MBEDTLS_CAMELLIA_C", + "help": "Enable Cipher Feedback (CFB) modes for AES and/or Camellia ciphers.", + "id": "MBEDTLS_CIPHER_MODE_CFB", + "name": "MBEDTLS_CIPHER_MODE_CFB", + "range": null, + "title": "CFB (Cipher Feedback) block cipher modes", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_AES_C || MBEDTLS_CAMELLIA_C", + "help": "Enable Counter (CTR) modes for AES and/or Camellia ciphers.", + "id": "MBEDTLS_CIPHER_MODE_CTR", + "name": "MBEDTLS_CIPHER_MODE_CTR", + "range": null, + "title": "CTR (Counter) block cipher modes", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_AES_C || MBEDTLS_CAMELLIA_C", + "help": "Enable Output Feedback (OFB) modes for AES and/or Camellia ciphers.", + "id": "MBEDTLS_CIPHER_MODE_OFB", + "name": "MBEDTLS_CIPHER_MODE_OFB", + "range": null, + "title": "OFB (Output Feedback) block cipher modes", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_AES_C || MBEDTLS_CAMELLIA_C", + "help": "Enable XEX Tweakable Block Cipher with Ciphertext Stealing (XTS) modes\nfor AES and/or Camellia ciphers.", + "id": "MBEDTLS_CIPHER_MODE_XTS", + "name": "MBEDTLS_CIPHER_MODE_XTS", + "range": null, + "title": "XTS (XEX Tweakable Block Cipher with Ciphertext Stealing) block cipher modes", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_AES_C || MBEDTLS_CAMELLIA_C || MBEDTLS_ARIA_C", + "help": "Enable Galois/Counter Mode for AES and/or Camellia ciphers.\n\nThis option is generally faster than CCM.", + "id": "MBEDTLS_GCM_C", + "name": "MBEDTLS_GCM_C", + "range": null, + "title": "GCM (Galois/Counter) block cipher modes", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_AES_C", + "help": "Enable NIST key wrapping and key wrapping padding.", + "id": "MBEDTLS_NIST_KW_C", + "name": "MBEDTLS_NIST_KW_C", + "range": null, + "title": "NIST key wrapping (KW) and KW padding (KWP)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Store the AES tables in ROM instead of generating them at runtime.\nUsing precomputed ROM tables reduces RAM usage, but increases\nflash usage.", + "id": "MBEDTLS_AES_ROM_TABLES", + "name": "MBEDTLS_AES_ROM_TABLES", + "range": null, + "title": "Store AES tables in ROM", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Use fewer AES tables to reduce ROM/RAM usage.\nUsing fewer tables increases the time taken to generate the tables\nat runtime, but reduces ROM/RAM usage.", + "id": "MBEDTLS_AES_FEWER_TABLES", + "name": "MBEDTLS_AES_FEWER_TABLES", + "range": null, + "title": "Use fewer AES tables", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Only support 128-bit AES keys.\nThis reduces code size, but disables support for 192-bit and\n256-bit AES keys.", + "id": "MBEDTLS_AES_ONLY_128_BIT_KEY_LENGTH", + "name": "MBEDTLS_AES_ONLY_128_BIT_KEY_LENGTH", + "range": null, + "title": "Only support 128-bit AES keys", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_AES_C || MBEDTLS_DES_C", + "help": "Enable the CMAC (Cipher-based Message Authentication Code) mode for\nblock ciphers.", + "id": "MBEDTLS_CMAC_C", + "name": "MBEDTLS_CMAC_C", + "range": null, + "title": "Enable CMAC mode for block ciphers", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-mbedtls-symmetric-ciphers-C:-esp-v6.0-esp-idf-components-mbedtls-Kconfig-860", + "title": "Symmetric Ciphers", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Enable support for multiple precision integer (bignum) operations.\n\nThis is required for RSA, DSA, DHM, ECDH and ECDSA.\n\nIf you don't need any of these algorithms, you can disable this option\nto save code size.", + "id": "MBEDTLS_BIGNUM_C", + "name": "MBEDTLS_BIGNUM_C", + "range": null, + "title": "Enable multiple precision integer (bignum) support", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable RSA. Needed to use RSA-xxx TLS ciphersuites.", + "id": "MBEDTLS_RSA_C", + "name": "MBEDTLS_RSA_C", + "range": null, + "title": "RSA public key cryptosystem", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MBEDTLS_ECP_C", + "name": "MBEDTLS_ECP_C", + "range": null, + "title": "Enable Elliptic Curve Ciphers(ECC) support", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "Enable support for SECP256R1 Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_SECP256R1_ENABLED", + "name": "MBEDTLS_ECP_DP_SECP256R1_ENABLED", + "range": null, + "title": "Enable SECP256R1 curve", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "Enable support for SECP384R1 Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_SECP384R1_ENABLED", + "name": "MBEDTLS_ECP_DP_SECP384R1_ENABLED", + "range": null, + "title": "Enable SECP384R1 curve", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "Enable support for SECP521R1 Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_SECP521R1_ENABLED", + "name": "MBEDTLS_ECP_DP_SECP521R1_ENABLED", + "range": null, + "title": "Enable SECP521R1 curve", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "Enable support for SECP256K1 Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_SECP256K1_ENABLED", + "name": "MBEDTLS_ECP_DP_SECP256K1_ENABLED", + "range": null, + "title": "Enable SECP256K1 curve", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "support for DP Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_BP256R1_ENABLED", + "name": "MBEDTLS_ECP_DP_BP256R1_ENABLED", + "range": null, + "title": "Enable BP256R1 curve", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "support for DP Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_BP384R1_ENABLED", + "name": "MBEDTLS_ECP_DP_BP384R1_ENABLED", + "range": null, + "title": "Enable BP384R1 curve", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "support for DP Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_BP512R1_ENABLED", + "name": "MBEDTLS_ECP_DP_BP512R1_ENABLED", + "range": null, + "title": "Enable BP512R1 curve", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "Enable support for CURVE25519 Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_CURVE25519_ENABLED", + "name": "MBEDTLS_ECP_DP_CURVE25519_ENABLED", + "range": null, + "title": "Enable CURVE25519 curve", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-mbedtls-asymmetric-ciphers-supported-curves-C:-esp-v6.0-esp-idf-components-mbedtls-Kconfig-1005", + "title": "Supported Curves", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_ECP_C && MBEDTLS_ECP_C", + "help": "NIST 'modulo p' optimisations increase Elliptic Curve operation performance.\n\nDisabling this option saves some code size.", + "id": "MBEDTLS_ECP_NIST_OPTIM", + "name": "MBEDTLS_ECP_NIST_OPTIM", + "range": null, + "title": "NIST 'modulo p' optimisations", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C && MBEDTLS_ECP_C", + "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.\nEnabling this configuration option increases the flash footprint\n(about 29KB if all Elliptic Curve selected) in the application binary.", + "id": "MBEDTLS_ECP_FIXED_POINT_OPTIM", + "name": "MBEDTLS_ECP_FIXED_POINT_OPTIM", + "range": null, + "title": "Enable fixed-point multiplication optimisations", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECDH_C && MBEDTLS_ECP_RESTARTABLE && MBEDTLS_ECP_C", + "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.", + "id": "MBEDTLS_ECDH_LEGACY_CONTEXT", + "name": "MBEDTLS_ECDH_LEGACY_CONTEXT", + "range": null, + "title": "Use a backward compatible ECDH context (Experimental)", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C && MBEDTLS_ECP_C", + "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.", + "id": "MBEDTLS_DHM_C", + "name": "MBEDTLS_DHM_C", + "range": null, + "title": "Diffie-Hellman-Merkle key exchange (DHM)", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C && MBEDTLS_ECP_C", + "help": "Enable ECDH. Needed to use ECDHE-xxx TLS ciphersuites.", + "id": "MBEDTLS_ECDH_C", + "name": "MBEDTLS_ECDH_C", + "range": null, + "title": "Elliptic Curve Diffie-Hellman (ECDH)", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C && MBEDTLS_ECP_C", + "help": "Enable ECJPAKE. Needed to use ECJPAKE-xxx TLS ciphersuites.", + "id": "MBEDTLS_ECJPAKE_C", + "name": "MBEDTLS_ECJPAKE_C", + "range": null, + "title": "Elliptic curve J-PAKE", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECDH_C && MBEDTLS_ECP_C && MBEDTLS_ECP_C", + "help": "Enable ECDSA. Needed to use ECDSA-xxx TLS ciphersuites.", + "id": "MBEDTLS_ECDSA_C", + "name": "MBEDTLS_ECDSA_C", + "range": null, + "title": "Elliptic Curve DSA", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C && MBEDTLS_ECP_C", + "help": "Enhance support for reading EC keys using variants of SEC1 not allowed by\nRFC 5915 and RFC 5480.", + "id": "MBEDTLS_PK_PARSE_EC_EXTENDED", + "name": "MBEDTLS_PK_PARSE_EC_EXTENDED", + "range": null, + "title": "Enhance support for reading EC keys", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C && MBEDTLS_ECP_C", + "help": "Enable the support for parsing public keys of type Short Weierstrass\n(MBEDTLS_ECP_DP_SECP_XXX and MBEDTLS_ECP_DP_BP_XXX) which are using the\ncompressed point format. This parsing is done through ECP module's functions.\ndepends on MBEDTLS_ECP_C", + "id": "MBEDTLS_PK_PARSE_EC_COMPRESSED", + "name": "MBEDTLS_PK_PARSE_EC_COMPRESSED", + "range": null, + "title": "Enable the support for parsing public keys of type Short Weierstrass", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "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.", + "id": "MBEDTLS_ECDSA_DETERMINISTIC", + "name": "MBEDTLS_ECDSA_DETERMINISTIC", + "range": null, + "title": "Enable deterministic ECDSA", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C && MBEDTLS_ECP_C", + "help": "Enable \"non-blocking\" ECC operations that can return early and be resumed.", + "id": "MBEDTLS_ECP_RESTARTABLE", + "name": "MBEDTLS_ECP_RESTARTABLE", + "range": null, + "title": "Enable mbedTLS ecp restartable", + "type": "bool" + } + ], + "depends_on": "MBEDTLS_ECP_C", + "id": "component-config-mbedtls-asymmetric-ciphers-elliptic-curve-ciphers-configuration-C:-esp-v6.0-esp-idf-components-mbedtls-Kconfig-1063", + "title": "Elliptic Curve Ciphers Configuration", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-mbedtls-asymmetric-ciphers-C:-esp-v6.0-esp-idf-components-mbedtls-Kconfig-983", + "title": "Asymmetric Ciphers", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Enable the RIPEMD-160 hash algorithm.", + "id": "MBEDTLS_RIPEMD160_C", + "name": "MBEDTLS_RIPEMD160_C", + "range": null, + "title": "Enable RIPEMD-160 hash algorithm", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_MD5_C || MBEDTLS_RIPEMD160_C || MBEDTLS_SHA1_C || MBEDTLS_SHA224_C || MBEDTLS_SHA256_C || MBEDTLS_SHA384_C || MBEDTLS_SHA512_C", + "help": "Enable generic layer for message digest algorithms.", + "id": "MBEDTLS_MD_C", + "name": "MBEDTLS_MD_C", + "range": null, + "title": "Enable message digest support", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enables support for MD5.\nThis module is required for TLS 1.2 depending on the handshake parameters.\nFurther, it is used for checking MD5-signed certificates, and for PBKDF1\nwhen decrypting PEM-encoded encrypted keys.\nMD5 is considered a weak message digest and its use constitutes\na security risk. If possible, consider stronger message digests\nsuch as SHA-256 (part of the SHA-2 family).", + "id": "MBEDTLS_MD5_C", + "name": "MBEDTLS_MD5_C", + "range": null, + "title": "Enable the MD5 cryptographic hash algorithm", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enabling MBEDTLS_SHA1_C adds support for SHA-1.\nSHA-1 is considered a weak message digest and its use constitutes\na security risk.\nDisabling this configuration option could impact TLS 1.2 / Wi-Fi Enterprise compatibility\nwith certain older certificates that rely on SHA-1 for digital signatures.\nBefore proceeding, ensure that all your certificates are using stronger hash algorithms,\nsuch as SHA-256 (part of the SHA-2 family).\nIf you're using older certificates or if you're unsure about the impact on your product,\nplease consider testing the changes in a controlled environment for individual features\nlike OTA updates, cloud connectivity, secure local control, etc.", + "id": "MBEDTLS_SHA1_C", + "name": "MBEDTLS_SHA1_C", + "range": null, + "title": "Enable the SHA-1 cryptographic hash algorithm", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable MBEDTLS_SHA224_C adds support for SHA-224.", + "id": "MBEDTLS_SHA224_C", + "name": "MBEDTLS_SHA224_C", + "range": null, + "title": "Enable the SHA-224 cryptographic hash algorithm", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable MBEDTLS_SHA256_C adds support for SHA-256.", + "id": "MBEDTLS_SHA256_C", + "name": "MBEDTLS_SHA256_C", + "range": null, + "title": "Enable the SHA-256 cryptographic hash algorithm", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable MBEDTLS_SHA384_C adds support for SHA-384.", + "id": "MBEDTLS_SHA384_C", + "name": "MBEDTLS_SHA384_C", + "range": null, + "title": "Enable the SHA-384 cryptographic hash algorithm", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable MBEDTLS_SHA512_C adds support for SHA-512.", + "id": "MBEDTLS_SHA512_C", + "name": "MBEDTLS_SHA512_C", + "range": null, + "title": "Enable the SHA-384 and SHA-512 cryptographic hash algorithms", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enabling MBEDTLS_SHA3_C adds support for SHA3.\nEnabling this configuration option increases the flash footprint\nby almost 4KB.", + "id": "MBEDTLS_SHA3_C", + "name": "MBEDTLS_SHA3_C", + "range": null, + "title": "Enable the SHA3 cryptographic hash algorithm", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Use ROM MD5 in mbedTLS.", + "id": "MBEDTLS_ROM_MD5", + "name": "MBEDTLS_ROM_MD5", + "range": null, + "title": "Use MD5 implementation in ROM", + "type": "bool" + }, + { + "children": [], + "depends_on": "!MBEDTLS_HARDWARE_SHA && MBEDTLS_SHA256_C", + "help": "Enable a smaller implementation of SHA-256 that has lower ROM footprint\nbut is slower than the default implementation.", + "id": "MBEDTLS_SHA256_SMALLER", + "name": "MBEDTLS_SHA256_SMALLER", + "range": null, + "title": "Enable SHA-256 smaller implementation", + "type": "bool" + }, + { + "children": [], + "depends_on": "!MBEDTLS_HARDWARE_SHA && MBEDTLS_SHA512_C", + "help": "Enable a smaller implementation of SHA-512 that has lower ROM footprint\nbut is slower than the default implementation.", + "id": "MBEDTLS_SHA512_SMALLER", + "name": "MBEDTLS_SHA512_SMALLER", + "range": null, + "title": "Enable SHA-512 smaller implementation", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-mbedtls-hash-functions-C:-esp-v6.0-esp-idf-components-mbedtls-Kconfig-1164", + "title": "Hash functions", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SOC_ECDSA_SUPPORTED", + "help": "Enable hardware accelerated ECDSA peripheral to verify signature\non curve SECP192R1 and SECP256R1 in mbedTLS.\nNote that SECP192R1 support is disabled by default.", + "id": "MBEDTLS_HARDWARE_ECDSA_VERIFY", + "name": "MBEDTLS_HARDWARE_ECDSA_VERIFY", + "range": null, + "title": "Enable ECDSA signature verification using on-chip ECDSA peripheral", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_HARDWARE_ECDSA_SIGN && IDF_TARGET_ESP32H2", + "help": "The ECDSA peripheral before ESP32-H2 v1.2 does not offer constant time ECDSA sign operation.\nThis time can be observed through power profiling of the device,\nmaking the ECDSA private key vulnerable to side-channel timing attacks.\nThis countermeasure masks the real ECDSA sign operation\nunder dummy sign operations to add randomness in the generated power signature.\nIt is highly recommended to also enable Secure Boot for the device\nin addition to this countermeasure so that only trusted software can execute on the device.\nThis countermeasure can be safely disabled for ESP32-H2 v1.2 and above.", + "id": "MBEDTLS_HARDWARE_ECDSA_SIGN_MASKING_CM", + "name": "MBEDTLS_HARDWARE_ECDSA_SIGN_MASKING_CM", + "range": null, + "title": "Mask original ECDSA sign operation under dummy sign operations", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_HARDWARE_ECDSA_SIGN && IDF_TARGET_ESP32H2", + "help": "This option adds a delay after the actual ECDSA signature operation\nso that the entire operation appears to be constant\u00a0 time for the software.\nThis fix helps in protecting the device only in case of remote timing attack\non the ECDSA private key.\nFor e.g., When an interface is exposed by the device to perform ECDSA signature\nof an arbitrary message.\nThe signature time would appear to be constant to the external entity after enabling\nthis option.\nThis countermeasure can be safely disabled for ESP32-H2 v1.2 and above.", + "id": "MBEDTLS_HARDWARE_ECDSA_SIGN_CONSTANT_TIME_CM", + "name": "MBEDTLS_HARDWARE_ECDSA_SIGN_CONSTANT_TIME_CM", + "range": null, + "title": "Make ECDSA signature operation pseudo constant time for software", + "type": "bool" + } + ], + "depends_on": "MBEDTLS_HARDWARE_ECDSA_SIGN && IDF_TARGET_ESP32H2", + "id": "component-config-mbedtls-hardware-acceleration-enable-software-countermeasure-for-ecdsa-signing-using-on-chip-ecdsa-peripheral-C:-esp-v6.0-esp-idf-components-mbedtls-Kconfig-1271", + "title": "Enable Software Countermeasure for ECDSA signing using on-chip ECDSA peripheral", + "type": "menu" + }, + { + "children": [], + "depends_on": "SOC_ECDSA_SUPPORTED", + "help": "Enable hardware accelerated ECDSA peripheral to sign data\non curve SECP192R1 and SECP256R1 in mbedTLS.\nNote that SECP192R1 support is disabled by default.\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 utility handles it internally\nbut care needs to be taken while burning using esp_efuse APIs", + "id": "MBEDTLS_HARDWARE_ECDSA_SIGN", + "name": "MBEDTLS_HARDWARE_ECDSA_SIGN", + "range": null, + "title": "Enable ECDSA signing using on-chip ECDSA peripheral", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_ENABLE_TEE", + "help": null, + "id": "MBEDTLS_TEE_SEC_STG_ECDSA_SIGN", + "name": "MBEDTLS_TEE_SEC_STG_ECDSA_SIGN", + "range": null, + "title": "Enable ECDSA signing using TEE secure storage", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_HARDWARE_ECC", + "help": "Fallback to software implementation of ECC point multiplication and point verification\nfor curves not supported in hardware.", + "id": "MBEDTLS_ECC_OTHER_CURVES_SOFT_FALLBACK", + "name": "MBEDTLS_ECC_OTHER_CURVES_SOFT_FALLBACK", + "range": null, + "title": "Fallback to software implementation for curves not supported in hardware", + "type": "bool" + } + ], + "depends_on": "SOC_ECC_SUPPORTED", + "help": "Enable hardware accelerated ECC point multiplication and point verification for points\non curve SECP192R1 and SECP256R1 in mbedTLS\nNote that SECP192R1 support is disabled by default.", + "id": "MBEDTLS_HARDWARE_ECC", + "name": "MBEDTLS_HARDWARE_ECC", + "range": null, + "title": "Enable hardware ECC acceleration", + "type": "bool" + }, + { + "children": [], + "depends_on": "!SPIRAM_CACHE_WORKAROUND_STRATEGY_DUPLDST && SOC_SHA_SUPPORTED", + "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.", + "id": "MBEDTLS_HARDWARE_SHA", + "name": "MBEDTLS_HARDWARE_SHA", + "range": null, + "title": "Enable hardware SHA acceleration", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_HARDWARE_MPI", + "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.", + "id": "MBEDTLS_LARGE_KEY_SOFTWARE_MPI", + "name": "MBEDTLS_LARGE_KEY_SOFTWARE_MPI", + "range": null, + "title": "Fallback to software implementation for larger MPI values", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_MPI_USE_INTERRUPT", + "help": "This config helps to set the interrupt priority level for the MPI peripheral.\nValue 0 (default) means that there is no preference regarding the interrupt\npriority level and any level from 1 to 3 can be selected (based on the availability).\nNote: Higher value indicates high interrupt priority.", + "id": "MBEDTLS_MPI_INTERRUPT_LEVEL", + "name": "MBEDTLS_MPI_INTERRUPT_LEVEL", + "range": null, + "title": "MPI hardware interrupt level", + "type": "int" + } + ], + "depends_on": "!IDF_TARGET_ESP32 && MBEDTLS_HARDWARE_MPI", + "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.", + "id": "MBEDTLS_MPI_USE_INTERRUPT", + "name": "MBEDTLS_MPI_USE_INTERRUPT", + "range": null, + "title": "Use interrupt for MPI exp-mod operations", + "type": "bool" + } + ], + "depends_on": "!SPIRAM_CACHE_WORKAROUND_STRATEGY_DUPLDST && SOC_MPI_SUPPORTED && MBEDTLS_BIGNUM_C", + "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.", + "id": "MBEDTLS_HARDWARE_MPI", + "name": "MBEDTLS_HARDWARE_MPI", + "range": null, + "title": "Enable hardware MPI (bignum) acceleration", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_HARDWARE_AES", + "help": "Enable software fallback for AES.\nThis option is used to fallback to software implementation of AES if the\nhardware AES does not support the requested operation.", + "id": "MBEDTLS_AES_SOFT_FALLBACK", + "name": "MBEDTLS_AES_SOFT_FALLBACK", + "range": null, + "title": "Enable software fallback for AES", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_AES_SUPPORT_GCM && MBEDTLS_HARDWARE_AES", + "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.", + "id": "MBEDTLS_HARDWARE_GCM", + "name": "MBEDTLS_HARDWARE_GCM", + "range": null, + "title": "Enable partially hardware accelerated GCM", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_HARDWARE_AES", + "help": "Enable this config to support fallback to software definitions for a non-AES\ncipher GCM operation as we support hardware acceleration only for AES cipher.\nSome of the non-AES ciphers used in a GCM operation are DES, ARIA, CAMELLIA,\nCHACHA20.\n\nIf this config is disabled, performing a non-AES cipher GCM operation with\nthe config MBEDTLS_HARDWARE_AES enabled will result in calculation of an\nAES-GCM operation instead for the given input values and thus could lead\nto failure in certificate validation which would ultimately lead to a SSL\nhandshake failure.\n\nThis config being by-default enabled leads to an increase in binary size\nfootprint of ~2.5KB.\nIn case you are sure that your use case (for example, client and server\nsettings in case of a TLS handshake) would not involve any GCM\noperations using a non-AES cipher, you can safely disable this config,\nleading to reduction in binary size footprint.", + "id": "MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER", + "name": "MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER", + "range": null, + "title": "Enable support for non-AES ciphers in GCM operation", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_AES_USE_INTERRUPT", + "help": "This config helps to set the interrupt priority level for the AES peripheral.\nValue 0 (default) means that there is no preference regarding the interrupt\npriority level and any level from 1 to 3 can be selected (based on the availability).\nNote: Higher value indicates high interrupt priority.", + "id": "MBEDTLS_AES_INTERRUPT_LEVEL", + "name": "MBEDTLS_AES_INTERRUPT_LEVEL", + "range": null, + "title": "AES hardware interrupt level", + "type": "int" + } + ], + "depends_on": "!IDF_TARGET_ESP32 && MBEDTLS_HARDWARE_AES", + "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.", + "id": "MBEDTLS_AES_USE_INTERRUPT", + "name": "MBEDTLS_AES_USE_INTERRUPT", + "range": null, + "title": "Use interrupt for long AES operations", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC_STRENGTH_LOW", + "name": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC_STRENGTH_LOW", + "range": null, + "title": "Low", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC_STRENGTH_MEDIUM", + "name": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC_STRENGTH_MEDIUM", + "range": null, + "title": "Medium", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC_STRENGTH_HIGH", + "name": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC_STRENGTH_HIGH", + "range": null, + "title": "High", + "type": "bool" + } + ], + "depends_on": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC", + "help": "The strength of the pseudo rounds functions can be configured to low, medium and high.\nYou can configure the strength of the pseudo rounds functions according to your use cases,\nfor example, increasing the strength would provide higher security but would slow down the\nhardware AES encryption/decryption operations.", + "id": "component-config-mbedtls-hardware-acceleration-enable-hardware-aes-acceleration-enable-aes-hardware-s-pseudo-round-function-strength-of-the-pseudo-rounds-function-C:-esp-v6.0-esp-idf-components-mbedtls-Kconfig-1486", + "name": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC_STRENGTH", + "title": "Strength of the pseudo rounds function", + "type": "choice" + } + ], + "depends_on": "SOC_AES_SUPPORT_PSEUDO_ROUND_FUNCTION && MBEDTLS_HARDWARE_AES", + "help": "Enables the pseudo round function of the AES peripheral.\nEnabling this would impact the performance of the AES operations.\nFor more info regarding the performance impact, please checkout\nthe pseudo round function section of the security guide.", + "id": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC", + "name": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC", + "range": null, + "title": "Enable AES hardware's pseudo round function", + "type": "bool" + } + ], + "depends_on": "!SPIRAM_CACHE_WORKAROUND_STRATEGY_DUPLDST && SOC_AES_SUPPORTED", + "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.", + "id": "MBEDTLS_HARDWARE_AES", + "name": "MBEDTLS_HARDWARE_AES", + "range": null, + "title": "Enable hardware AES acceleration", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC_STRENGTH", + "name": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC_STRENGTH", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "MBEDTLS_HARDWARE_AES && SOC_AES_SUPPORT_DMA", + "help": "This option enables dynamically switching between the hardware\nAES peripheral's block and DMA modes based on the length of the input data,\nthus, significantly speeding up the AES operations with shorter data lengths.\nFor example, NVS encryption/decryption operations, TLS communication, etc.\nwith smaller data lengths.\n\nIt is enabled by default due to the significant performance impact but note that\nit also increases the binary size by ~1.2 KB as it pulls in the peripheral's block\nmode code as well.", + "id": "MBEDTLS_AES_HW_SMALL_DATA_LEN_OPTIM", + "name": "MBEDTLS_AES_HW_SMALL_DATA_LEN_OPTIM", + "range": null, + "title": "Enable performance optimisation for the small data length hardware AES operations", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This option enables hardware acceleration for ECDSA sign function, only\nwhen using ATECC608A cryptoauth chip.", + "id": "MBEDTLS_ATCA_HW_ECDSA_SIGN", + "name": "MBEDTLS_ATCA_HW_ECDSA_SIGN", + "range": null, + "title": "Enable hardware ECDSA sign acceleration when using ATECC608A", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This option enables hardware acceleration for ECDSA sign function, only\nwhen using ATECC608A cryptoauth chip.", + "id": "MBEDTLS_ATCA_HW_ECDSA_VERIFY", + "name": "MBEDTLS_ATCA_HW_ECDSA_VERIFY", + "range": null, + "title": "Enable hardware ECDSA verify acceleration when using ATECC608A", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_DIG_SIGN_SUPPORTED", + "help": "Enable hardware accelerated digital signature peripheral for RSA digital signature generation.", + "id": "MBEDTLS_HARDWARE_RSA_DS_PERIPHERAL", + "name": "MBEDTLS_HARDWARE_RSA_DS_PERIPHERAL", + "range": null, + "title": "Enable hardware RSA digital signature peripheral acceleration", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-mbedtls-hardware-acceleration-C:-esp-v6.0-esp-idf-components-mbedtls-Kconfig-1261", + "title": "Hardware Acceleration", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_SHA256_C", + "help": "Force SHA-256 to be used for the entropy pool if both SHA-256 and SHA-512 are\nenabled. On 32-bit architectures, SHA-256 can be faster than SHA-512", + "id": "MBEDTLS_ENTROPY_FORCE_SHA256", + "name": "MBEDTLS_ENTROPY_FORCE_SHA256", + "range": null, + "title": "Force SHA-256 for entropy", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_AES_C", + "help": "Enable CTR_DRBG (CTR mode Deterministic Random Bit Generator).\nThe CTR_DRBG generator uses AES-256 by default.", + "id": "MBEDTLS_CTR_DRBG_C", + "name": "MBEDTLS_CTR_DRBG_C", + "range": null, + "title": "Enable CTR_DRBG", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_MD_C", + "help": "Enable HMAC_DRBG (HMAC mode Deterministic Random Bit Generator).", + "id": "MBEDTLS_HMAC_DRBG_C", + "name": "MBEDTLS_HMAC_DRBG_C", + "range": null, + "title": "Enable HMAC_DRBG", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-mbedtls-entropy-and-random-number-generation-C:-esp-v6.0-esp-idf-components-mbedtls-Kconfig-1549", + "title": "Entropy and Random Number Generation", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Enable Base64 encoding and decoding functions. This is required for PEM support.", + "id": "MBEDTLS_BASE64_C", + "name": "MBEDTLS_BASE64_C", + "range": null, + "title": "Enable Base64 encoding/decoding", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable support for PKCS#5 functions.", + "id": "MBEDTLS_PKCS5_C", + "name": "MBEDTLS_PKCS5_C", + "range": null, + "title": "Enable PKCS#5 functions", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ASN1_PARSE_C && MBEDTLS_PK_PARSE_C && MBEDTLS_X509_CRT_PARSE_C && MBEDTLS_X509_CRL_PARSE_C && MBEDTLS_BIGNUM_C && MBEDTLS_MD_C", + "help": "Enable PKCS number 7 core for using PKCS number 7-formatted signatures.", + "id": "MBEDTLS_PKCS7_C", + "name": "MBEDTLS_PKCS7_C", + "range": null, + "title": "Enable PKCS number 7", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_RSA_C", + "help": "Enable support for PKCS#1 v1.5 operations.", + "id": "MBEDTLS_PKCS1_V15", + "name": "MBEDTLS_PKCS1_V15", + "range": null, + "title": "Enable PKCS#1 v1.5 padding", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_RSA_C && MBEDTLS_MD_C", + "help": "Enable support for PKCS#1 v2.1 operations.", + "id": "MBEDTLS_PKCS1_V21", + "name": "MBEDTLS_PKCS1_V21", + "range": null, + "title": "Enable PKCS#1 v2.1 padding", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-mbedtls-encoding-decoding-C:-esp-v6.0-esp-idf-components-mbedtls-Kconfig-1574", + "title": "Encoding/Decoding", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_CHACHA20_C", + "help": "Enable support for ChaCha20-Poly1305 AEAD algorithm.", + "id": "MBEDTLS_CHACHAPOLY_C", + "name": "MBEDTLS_CHACHAPOLY_C", + "range": null, + "title": "ChaCha20-Poly1305 AEAD algorithm", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable support for Chacha20 stream cipher.", + "id": "MBEDTLS_CHACHA20_C", + "name": "MBEDTLS_CHACHA20_C", + "range": null, + "title": "Chacha20 stream cipher", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-mbedtls-stream-cipher-C:-esp-v6.0-esp-idf-components-mbedtls-Kconfig-1611", + "title": "Stream Cipher", + "type": "menu" + }, + { + "children": [], + "depends_on": "ESP_ROM_HAS_MBEDTLS_CRYPTO_LIB && !MBEDTLS_VER_4_X_SUPPORT", + "help": "Enable this flag to use mbedtls crypto algorithm from ROM instead of ESP-IDF\nin case of a bootloader build.\nSimilar to the MBEDTLS_USE_CRYPTO_ROM_IMPL config but enables usage of the\nmbedtls crypto algorithm from ROM for the bootloader build.", + "id": "MBEDTLS_USE_CRYPTO_ROM_IMPL_BOOTLOADER", + "name": "MBEDTLS_USE_CRYPTO_ROM_IMPL_BOOTLOADER", + "range": null, + "title": "Use ROM implementation of the crypto algorithm in the bootloader", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_ROM_HAS_MBEDTLS_CRYPTO_LIB && !MBEDTLS_VER_4_X_SUPPORT", + "help": "Enable this flag to use mbedtls crypto algorithm from ROM instead of ESP-IDF.\n\nThis configuration option saves flash footprint in the application binary.\nNote that the version of mbedtls crypto algorithm library in ROM(ECO1~ECO3) is v2.16.12,\nand the version of mbedtls crypto algorithm library in ROM(ECO4) is v3.6.0.\nWe have done the security analysis of the mbedtls revision in ROM (ECO1~ECO4)\nand ensured that affected symbols have been patched (removed). If in the future\nmbedtls revisions there are security issues that also affects the version in\nROM (ECO1~ECO4) then we shall patch the relevant symbols. This would increase\nthe flash footprint and hence care must be taken to keep some reserved space\nfor the application binary in flash layout.", + "id": "MBEDTLS_USE_CRYPTO_ROM_IMPL", + "name": "MBEDTLS_USE_CRYPTO_ROM_IMPL", + "range": null, + "title": "Use ROM implementation of the crypto algorithm", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-mbedtls-C:-esp-v6.0-esp-idf-components-mbedtls-Kconfig-1", + "title": "mbedTLS", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SECURE_FLASH_ENC_ENABLED || SOC_HMAC_SUPPORTED", + "help": "This option enables encryption for NVS. When enabled, XTS-AES is used to encrypt\nthe complete NVS data, except the page headers. It requires XTS encryption keys\nto be stored in an encrypted partition (enabling flash encryption is mandatory here)\nor to be derived from an HMAC key burnt in eFuse.", + "id": "NVS_ENCRYPTION", + "name": "NVS_ENCRYPTION", + "range": null, + "title": "Enable NVS encryption", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_ENC_ENABLED", + "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.", + "id": "NVS_COMPATIBLE_PRE_V4_3_ENCRYPTION_FLAG", + "name": "NVS_COMPATIBLE_PRE_V4_3_ENCRYPTION_FLAG", + "range": null, + "title": "NVS partition encrypted flag compatible with ESP-IDF before v4.3", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This option switches error checking type between assertions (y) or return codes (n).", + "id": "NVS_ASSERT_ERROR_CHECK", + "name": "NVS_ASSERT_ERROR_CHECK", + "range": null, + "title": "Use assertions for error checking", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enabling this option will switch the nvs_set() family of functions to the legacy mode:\nwhen called repeatedly with the same key but different data type, the existing value\nin the NVS remains active and the new value is just stored, actually not accessible through\ncorresponding nvs_get() call for the key given. Use this option only when your application\nrelies on such NVS API behaviour.", + "id": "NVS_LEGACY_DUP_KEYS_COMPATIBILITY", + "name": "NVS_LEGACY_DUP_KEYS_COMPATIBILITY", + "range": null, + "title": "Enable legacy nvs_set function behavior when same key is reused with different data types", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM && (SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC)", + "help": "Enabling this option lets NVS library try to allocate page cache and key hash list in SPIRAM\ninstead of internal RAM. It can help applications using large nvs partitions or large number\nof keys to save heap space in internal RAM. SPIRAM heap allocation negatively impacts speed\nof NVS operations as the CPU accesses NVS cache via SPI instead of direct access to the internal RAM.", + "id": "NVS_ALLOCATE_CACHE_IN_SPIRAM", + "name": "NVS_ALLOCATE_CACHE_IN_SPIRAM", + "range": null, + "title": "Prefers allocation of in-memory cache structures in SPI connected PSRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This option enforces internal use of Block Device Layer instead ESP_Partition.", + "id": "NVS_BDL_STACK", + "name": "NVS_BDL_STACK", + "range": null, + "title": "Run NVS on BDL instead of ESP_Partition", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-nvs-C:-esp-v6.0-esp-idf-components-nvs_flash-Kconfig-1", + "title": "NVS", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "SECURE_FLASH_ENC_ENABLED && ", + "help": "Protect the NVS Encryption Keys using Flash Encryption\nRequires a separate 'nvs_keys' partition (which will be encrypted by flash encryption)\nfor storing the NVS encryption keys", + "id": "NVS_SEC_KEY_PROTECT_USING_FLASH_ENC", + "name": "NVS_SEC_KEY_PROTECT_USING_FLASH_ENC", + "range": null, + "title": "Using Flash Encryption", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_HMAC_SUPPORTED && ", + "help": "Derive and protect the NVS Encryption Keys using the HMAC peripheral\nRequires the specified eFuse block (NVS_SEC_HMAC_EFUSE_KEY_ID or the v2 API argument)\nto be empty or pre-written with a key with the purpose ESP_EFUSE_KEY_PURPOSE_HMAC_UP", + "id": "NVS_SEC_KEY_PROTECT_USING_HMAC", + "name": "NVS_SEC_KEY_PROTECT_USING_HMAC", + "range": null, + "title": "Using HMAC peripheral", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Select this option if key derivation/protection is handled by\na custom implementation, and not by the nvs_sec_provider component.", + "id": "NVS_SEC_KEY_PROTECT_NONE", + "name": "NVS_SEC_KEY_PROTECT_NONE", + "range": null, + "title": "None", + "type": "bool" + } + ], + "depends_on": "NVS_ENCRYPTION", + "help": "This choice defines the default NVS encryption keys protection scheme;\nwhich will be used for the default NVS partition.\nUsers can use the corresponding scheme registration APIs to register other\nschemes for the default as well as other NVS partitions.", + "id": "component-config-nvs-security-provider-nvs-encryption-key-protection-scheme-C:-esp-v6.0-esp-idf-components-nvs_sec_provider-Kconfig-4", + "name": "NVS_SEC_KEY_PROTECTION_SCHEME", + "title": "NVS Encryption: Key Protection Scheme", + "type": "choice" + }, + { + "children": [], + "depends_on": "NVS_SEC_KEY_PROTECT_USING_HMAC", + "help": "eFuse block key ID storing the HMAC key for deriving the NVS encryption keys\n\nNote: The eFuse block key ID required by the HMAC scheme\n(CONFIG_NVS_SEC_KEY_PROTECT_USING_HMAC) is set using this config when the default\nNVS partition is initialized with nvs_flash_init(). The eFuse block key ID can\nalso be set at runtime by passing the appropriate value to the NVS security scheme\nregistration APIs.", + "id": "NVS_SEC_HMAC_EFUSE_KEY_ID", + "name": "NVS_SEC_HMAC_EFUSE_KEY_ID", + "range": null, + "title": "eFuse key ID storing the HMAC key", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-nvs-security-provider-C:-esp-v6.0-esp-idf-components-nvs_sec_provider-Kconfig-1", + "title": "NVS Security Provider", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": "The OpenThread task name.", + "id": "OPENTHREAD_TASK_NAME", + "name": "OPENTHREAD_TASK_NAME", + "range": null, + "title": "OpenThread task name", + "type": "string" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": "The size in bytes of OpenThread task.", + "id": "OPENTHREAD_TASK_SIZE", + "name": "OPENTHREAD_TASK_SIZE", + "range": null, + "title": "Size of OpenThread task", + "type": "int" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": "The priority of OpenThread task.", + "id": "OPENTHREAD_TASK_PRIORITY", + "name": "OPENTHREAD_TASK_PRIORITY", + "range": null, + "title": "Priority of OpenThread task", + "type": "int" + } + ], + "depends_on": "OPENTHREAD_ENABLED", + "id": "component-config-openthread-openthread-thread-task-parameters-C:-esp-v6.0-esp-idf-components-openthread-Kconfig-9", + "title": "Thread Task Parameters", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": "The OpenThread package name.", + "id": "OPENTHREAD_PACKAGE_NAME", + "name": "OPENTHREAD_PACKAGE_NAME", + "range": null, + "title": "OpenThread package name", + "type": "string" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": "The OpenThread platform information.", + "id": "OPENTHREAD_PLATFORM_INFO", + "name": "OPENTHREAD_PLATFORM_INFO", + "range": null, + "title": "platform information", + "type": "string" + } + ], + "depends_on": "OPENTHREAD_ENABLED", + "id": "component-config-openthread-openthread-thread-version-message-C:-esp-v6.0-esp-idf-components-openthread-Kconfig-31", + "title": "Thread Version Message", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "(ESP_CONSOLE_UART_DEFAULT || ESP_CONSOLE_UART_CUSTOM) && ", + "help": null, + "id": "OPENTHREAD_CONSOLE_TYPE_UART", + "name": "OPENTHREAD_CONSOLE_TYPE_UART", + "range": null, + "title": "OpenThread console type UART", + "type": "bool" + }, + { + "children": [], + "depends_on": "(ESP_CONSOLE_USB_SERIAL_JTAG || ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG) && ", + "help": null, + "id": "OPENTHREAD_CONSOLE_TYPE_USB_SERIAL_JTAG", + "name": "OPENTHREAD_CONSOLE_TYPE_USB_SERIAL_JTAG", + "range": null, + "title": "OpenThread console type USB Serial/JTAG Controller", + "type": "bool" + } + ], + "depends_on": "OPENTHREAD_CONSOLE_ENABLE && OPENTHREAD_ENABLED", + "help": "Select OpenThread console type", + "id": "component-config-openthread-openthread-thread-console-enable-openthread-console-openthread-console-type-C:-esp-v6.0-esp-idf-components-openthread-Kconfig-57", + "name": "OPENTHREAD_CONSOLE_TYPE", + "title": "OpenThread console type", + "type": "choice" + } + ], + "depends_on": "OPENTHREAD_ENABLED", + "help": "Enable the OpenThread-specific console provided by the SDK. This only controls whether\nthe SDK sets up a dedicated console for OpenThread. Even if disabled, the default\nESP-IDF console (if initialized elsewhere) can still be used independently.", + "id": "OPENTHREAD_CONSOLE_ENABLE", + "name": "OPENTHREAD_CONSOLE_ENABLE", + "range": null, + "title": "Enable OpenThread console", + "type": "bool" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": "Select this option to enable Command-Line Interface in OpenThread.", + "id": "OPENTHREAD_CLI", + "name": "OPENTHREAD_CLI", + "range": null, + "title": "Enable Openthread Command-Line Interface", + "type": "bool" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": "A prefix string used before a Thread CLI command, allowing the ESP console to identify\nit and delegate the remaining command to the OpenThread callback for processing.", + "id": "OPENTHREAD_CONSOLE_COMMAND_PREFIX", + "name": "OPENTHREAD_CONSOLE_COMMAND_PREFIX", + "range": null, + "title": "The prefix of the openthread CLI command registered on the esp console", + "type": "string" + } + ], + "depends_on": "OPENTHREAD_ENABLED", + "id": "component-config-openthread-openthread-thread-console-C:-esp-v6.0-esp-idf-components-openthread-Kconfig-47", + "title": "Thread Console", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": null, + "id": "OPENTHREAD_NETWORK_NAME", + "name": "OPENTHREAD_NETWORK_NAME", + "range": null, + "title": "OpenThread network name", + "type": "string" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": "A string in the format \"
/\", where `
` is an IPv6\naddress and `` is a prefix length. For example \"fd00:db8:a0:0::/64\"", + "id": "OPENTHREAD_MESH_LOCAL_PREFIX", + "name": "OPENTHREAD_MESH_LOCAL_PREFIX", + "range": null, + "title": "OpenThread mesh local prefix, format
/", + "type": "string" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": null, + "id": "OPENTHREAD_NETWORK_CHANNEL", + "name": "OPENTHREAD_NETWORK_CHANNEL", + "range": null, + "title": "OpenThread network channel", + "type": "int" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": null, + "id": "OPENTHREAD_NETWORK_PANID", + "name": "OPENTHREAD_NETWORK_PANID", + "range": null, + "title": "OpenThread network pan id", + "type": "hex" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": "The OpenThread network extended pan id in hex string format", + "id": "OPENTHREAD_NETWORK_EXTPANID", + "name": "OPENTHREAD_NETWORK_EXTPANID", + "range": null, + "title": "OpenThread extended pan id", + "type": "string" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": "The OpenThread network network key in hex string format", + "id": "OPENTHREAD_NETWORK_MASTERKEY", + "name": "OPENTHREAD_NETWORK_MASTERKEY", + "range": null, + "title": "OpenThread network key", + "type": "string" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": "The OpenThread pre-shared commissioner key in hex string format", + "id": "OPENTHREAD_NETWORK_PSKC", + "name": "OPENTHREAD_NETWORK_PSKC", + "range": null, + "title": "OpenThread pre-shared commissioner key", + "type": "string" + } + ], + "depends_on": "OPENTHREAD_ENABLED", + "id": "component-config-openthread-openthread-thread-core-features-thread-operational-dataset-C:-esp-v6.0-esp-idf-components-openthread-Kconfig-89", + "title": "Thread Operational Dataset", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Select this to enable Full Thread Device which can act as router and leader in a Thread network.", + "id": "OPENTHREAD_FTD", + "name": "OPENTHREAD_FTD", + "range": null, + "title": "Full Thread Device", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "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.", + "id": "OPENTHREAD_MTD", + "name": "OPENTHREAD_MTD", + "range": null, + "title": "Minimal Thread Device", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "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.", + "id": "OPENTHREAD_RADIO", + "name": "OPENTHREAD_RADIO", + "range": null, + "title": "Radio Only Device", + "type": "bool" + } + ], + "depends_on": "OPENTHREAD_ENABLED", + "help": "OpenThread can be configured to different device types (FTD, MTD, Radio)", + "id": "component-config-openthread-openthread-thread-core-features-thread-device-type-C:-esp-v6.0-esp-idf-components-openthread-Kconfig-130", + "name": "OPENTHREAD_DEVICE_TYPE", + "title": "Thread device type", + "type": "choice" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "OPENTHREAD_RADIO_TREL && (EXAMPLE_CONNECT_WIFI || EXAMPLE_CONNECT_ETHERNET) && OPENTHREAD_ENABLED", + "help": "Configure the port number of TREL service.", + "id": "OPENTHREAD_TREL_PORT", + "name": "OPENTHREAD_TREL_PORT", + "range": null, + "title": "The port of openthread trel service", + "type": "int" + }, + { + "children": [], + "depends_on": "OPENTHREAD_RADIO_TREL && (EXAMPLE_CONNECT_WIFI || EXAMPLE_CONNECT_ETHERNET) && OPENTHREAD_ENABLED", + "help": "Configure the receive buffer size of TREL service.", + "id": "OPENTHREAD_TREL_BUFFER_SIZE", + "name": "OPENTHREAD_TREL_BUFFER_SIZE", + "range": null, + "title": "The receive buffer size of openthread trel", + "type": "int" + } + ], + "depends_on": "(EXAMPLE_CONNECT_WIFI || EXAMPLE_CONNECT_ETHERNET) && OPENTHREAD_ENABLED", + "help": "Select this option to enable Thread Radio Encapsulation Link.", + "id": "OPENTHREAD_RADIO_TREL", + "name": "OPENTHREAD_RADIO_TREL", + "range": null, + "title": "Enable Thread Radio Encapsulation Link (TREL)", + "type": "bool" + } + ], + "depends_on": "(EXAMPLE_CONNECT_WIFI || EXAMPLE_CONNECT_ETHERNET) && OPENTHREAD_ENABLED", + "id": "component-config-openthread-openthread-thread-core-features-thread-trel-radio-link-C:-esp-v6.0-esp-idf-components-openthread-Kconfig-155", + "title": "Thread Trel Radio Link", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Select this to use the native 15.4 radio.", + "id": "OPENTHREAD_RADIO_NATIVE", + "name": "OPENTHREAD_RADIO_NATIVE", + "range": null, + "title": "Native 15.4 radio", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Select this to connect to a Radio Co-Processor via UART.", + "id": "OPENTHREAD_RADIO_SPINEL_UART", + "name": "OPENTHREAD_RADIO_SPINEL_UART", + "range": null, + "title": "Connect via UART", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Select this to connect to a Radio Co-Processor via SPI.", + "id": "OPENTHREAD_RADIO_SPINEL_SPI", + "name": "OPENTHREAD_RADIO_SPINEL_SPI", + "range": null, + "title": "Connect via SPI", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Select this to disable the Thread radio based on 15.4 link.", + "id": "OPENTHREAD_RADIO_154_NONE", + "name": "OPENTHREAD_RADIO_154_NONE", + "range": null, + "title": "Disable the Thread radio based on 15.4 link", + "type": "bool" + } + ], + "depends_on": "OPENTHREAD_ENABLED", + "help": "Configure how OpenThread connects to the 15.4 radio", + "id": "component-config-openthread-openthread-thread-core-features-thread-15-4-radio-link-config-the-thread-radio-type-with-15-4-link-C:-esp-v6.0-esp-idf-components-openthread-Kconfig-181", + "name": "OPENTHREAD_RADIO_TYPE", + "title": "Config the Thread radio type with 15.4 link", + "type": "choice" + } + ], + "depends_on": "OPENTHREAD_ENABLED", + "id": "component-config-openthread-openthread-thread-core-features-thread-15-4-radio-link-C:-esp-v6.0-esp-idf-components-openthread-Kconfig-180", + "title": "Thread 15.4 Radio Link", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Select this to enable UART connection to host.", + "id": "OPENTHREAD_RCP_UART", + "name": "OPENTHREAD_RCP_UART", + "range": null, + "title": "UART RCP", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Select this to enable SPI connection to host.", + "id": "OPENTHREAD_RCP_SPI", + "name": "OPENTHREAD_RCP_SPI", + "range": null, + "title": "SPI RCP", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG && !OPENTHREAD_CONSOLE_TYPE_USB_SERIAL_JTAG && ", + "help": "Select this to enable connection to host over USB JTAG serial.", + "id": "OPENTHREAD_RCP_USB_SERIAL_JTAG", + "name": "OPENTHREAD_RCP_USB_SERIAL_JTAG", + "range": null, + "title": "USB RCP", + "type": "bool" + } + ], + "depends_on": "OPENTHREAD_RADIO && OPENTHREAD_ENABLED", + "help": null, + "id": "component-config-openthread-openthread-thread-core-features-thread-radio-co-processor-feature-the-rcp-transport-type-C:-esp-v6.0-esp-idf-components-openthread-Kconfig-214", + "name": "OPENTHREAD_RCP_TRANSPORT", + "title": "The RCP transport type", + "type": "choice" + }, + { + "children": [], + "depends_on": "OPENTHREAD_RADIO && OPENTHREAD_ENABLED", + "help": "Select this to enable OpenThread NCP vendor commands.", + "id": "OPENTHREAD_NCP_VENDOR_HOOK", + "name": "OPENTHREAD_NCP_VENDOR_HOOK", + "range": null, + "title": "Enable vendor command for RCP", + "type": "bool" + }, + { + "children": [], + "depends_on": "OPENTHREAD_RADIO && OPENTHREAD_ENABLED", + "help": "Select this to enable sending console commands to OpenThread RCP via Spinel.", + "id": "OPENTHREAD_RCP_SPINEL_CONSOLE", + "name": "OPENTHREAD_RCP_SPINEL_CONSOLE", + "range": null, + "title": "Enable RCP console via Spinel", + "type": "bool" + } + ], + "depends_on": "OPENTHREAD_RADIO && OPENTHREAD_ENABLED", + "id": "component-config-openthread-openthread-thread-core-features-thread-radio-co-processor-feature-C:-esp-v6.0-esp-idf-components-openthread-Kconfig-211", + "title": "Thread Radio Co-Processor Feature", + "type": "menu" + }, + { + "children": [], + "depends_on": "OPENTHREAD_FTD && OPENTHREAD_ENABLED", + "help": "Select this option to enable border router features in OpenThread.", + "id": "OPENTHREAD_BORDER_ROUTER", + "name": "OPENTHREAD_BORDER_ROUTER", + "range": null, + "title": "Enable Border Router", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "OPENTHREAD_COMMISSIONER && OPENTHREAD_ENABLED", + "help": null, + "id": "OPENTHREAD_COMM_MAX_JOINER_ENTRIES", + "name": "OPENTHREAD_COMM_MAX_JOINER_ENTRIES", + "range": null, + "title": "The size of max commissioning joiner entries", + "type": "int" + } + ], + "depends_on": "OPENTHREAD_COMMISSIONER && OPENTHREAD_ENABLED", + "id": "component-config-openthread-openthread-thread-core-features-enable-commissioner-commissioner-configurations-C:-esp-v6.0-esp-idf-components-openthread-Kconfig-265", + "title": "Commissioner Configurations", + "type": "menu" + } + ], + "depends_on": "OPENTHREAD_ENABLED", + "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\nwith the Thread commissioning protocol and shares the network parameter with the joining device\nupon success.", + "id": "OPENTHREAD_COMMISSIONER", + "name": "OPENTHREAD_COMMISSIONER", + "range": null, + "title": "Enable Commissioner", + "type": "bool" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": "Select this option to enable Joiner in OpenThread. This allows a device to join the\nThread network with a pre-shared key using the Thread commissioning protocol.", + "id": "OPENTHREAD_JOINER", + "name": "OPENTHREAD_JOINER", + "range": null, + "title": "Enable Joiner", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "OPENTHREAD_SRP_CLIENT && OPENTHREAD_ENABLED", + "help": "Set the max buffer size of service entries in the SRP client service pool.", + "id": "OPENTHREAD_SRP_CLIENT_MAX_SERVICES", + "name": "OPENTHREAD_SRP_CLIENT_MAX_SERVICES", + "range": null, + "title": "Specifies number of service entries in the SRP client service pool", + "type": "int" + } + ], + "depends_on": "OPENTHREAD_SRP_CLIENT && OPENTHREAD_ENABLED", + "id": "component-config-openthread-openthread-thread-core-features-enable-srp-client-srp-client-configurations-C:-esp-v6.0-esp-idf-components-openthread-Kconfig-285", + "title": "SRP Client Configurations", + "type": "menu" + } + ], + "depends_on": "OPENTHREAD_ENABLED", + "help": "Select this option to enable SRP Client in OpenThread.\nThis allows a device to register SRP services to SRP Server.", + "id": "OPENTHREAD_SRP_CLIENT", + "name": "OPENTHREAD_SRP_CLIENT", + "range": null, + "title": "Enable SRP Client", + "type": "bool" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": "Select this option to enable DNS Client in OpenThread.", + "id": "OPENTHREAD_DNS_CLIENT", + "name": "OPENTHREAD_DNS_CLIENT", + "range": null, + "title": "Enable DNS Client", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "OPENTHREAD_DNS64_CLIENT && OPENTHREAD_ENABLED", + "help": "Set the DNS server IPv4 address.", + "id": "OPENTHREAD_DNS_SERVER_ADDR", + "name": "OPENTHREAD_DNS_SERVER_ADDR", + "range": null, + "title": "DNS server address (IPv4)", + "type": "string" + } + ], + "depends_on": "OPENTHREAD_DNS64_CLIENT && OPENTHREAD_ENABLED", + "id": "component-config-openthread-openthread-thread-core-features-enable-dns64-client-dns64-client-configurations-C:-esp-v6.0-esp-idf-components-openthread-Kconfig-307", + "title": "DNS64 Client Configurations", + "type": "menu" + } + ], + "depends_on": "LWIP_IPV4 && OPENTHREAD_ENABLED", + "help": "Select this option to acquire NAT64 address from dns servers.", + "id": "OPENTHREAD_DNS64_CLIENT", + "name": "OPENTHREAD_DNS64_CLIENT", + "range": null, + "title": "Enable DNS64 Client", + "type": "bool" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": "Select this option to enable timing optimization for link metrics / CSL features.", + "id": "OPENTHREAD_TIMING_OPTIMIZATION", + "name": "OPENTHREAD_TIMING_OPTIMIZATION", + "range": null, + "title": "Enable timing optimization", + "type": "bool" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": "Select this option to enable link metrics feature", + "id": "OPENTHREAD_LINK_METRICS", + "name": "OPENTHREAD_LINK_METRICS", + "range": null, + "title": "Enable link metrics feature", + "type": "bool" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": "Select this option to enable border agent feature", + "id": "OPENTHREAD_BORDER_AGENT_ENABLE", + "name": "OPENTHREAD_BORDER_AGENT_ENABLE", + "range": null, + "title": "Enable border agent feature", + "type": "bool" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": "Select this option to enable mac filter feature", + "id": "OPENTHREAD_MACFILTER_ENABLE", + "name": "OPENTHREAD_MACFILTER_ENABLE", + "range": null, + "title": "Enable mac filter feature", + "type": "bool" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": "Select this option to enable CSL feature", + "id": "OPENTHREAD_CSL_ENABLE", + "name": "OPENTHREAD_CSL_ENABLE", + "range": null, + "title": "Enable CSL feature", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": "The current accuracy of the clock used for scheduling CSL operations", + "id": "OPENTHREAD_CSL_ACCURACY", + "name": "OPENTHREAD_CSL_ACCURACY", + "range": null, + "title": "The current CSL rx/tx scheduling drift, in units of \u00b1 ppm", + "type": "int" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": "The fixed uncertainty of the Device for scheduling CSL Transmissions in units of 10 microseconds.", + "id": "OPENTHREAD_CSL_UNCERTAIN", + "name": "OPENTHREAD_CSL_UNCERTAIN", + "range": null, + "title": "The CSL Uncertainty in units of 10 us.", + "type": "int" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": "Select this option to set rx on when sleep in CSL feature, only for debug", + "id": "OPENTHREAD_CSL_DEBUG_ENABLE", + "name": "OPENTHREAD_CSL_DEBUG_ENABLE", + "range": null, + "title": "Enable CSL debug", + "type": "bool" + } + ], + "depends_on": "OPENTHREAD_ENABLED", + "id": "component-config-openthread-openthread-thread-core-features-csl-configurations-C:-esp-v6.0-esp-idf-components-openthread-Kconfig-350", + "title": "CSL Configurations", + "type": "menu" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": "Select this option to enable time synchronization feature, the devices in the same Thread network could\nsync to the same network time.", + "id": "OPENTHREAD_TIME_SYNC", + "name": "OPENTHREAD_TIME_SYNC", + "range": null, + "title": "Enable the time synchronization service feature", + "type": "bool" + }, + { + "children": [], + "depends_on": "(OPENTHREAD_FTD || OPENTHREAD_MTD) && OPENTHREAD_ENABLED", + "help": "Select this option to enable the radio statistics feature, you can use radio\ncommand to print some radio Statistics information.", + "id": "OPENTHREAD_RADIO_STATS_ENABLE", + "name": "OPENTHREAD_RADIO_STATS_ENABLE", + "range": null, + "title": "Enable Radio Statistics feature", + "type": "bool" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": "Select this option to enable OpenThread radio capability rx on when idle.\nDo not support this feature when SW coexistence is enabled.", + "id": "OPENTHREAD_RX_ON_WHEN_IDLE", + "name": "OPENTHREAD_RX_ON_WHEN_IDLE", + "range": null, + "title": "Enable OpenThread radio capability rx on when idle", + "type": "bool" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": "Select this option to enable Diag in OpenThread. This will enable diag mode and a series of diag\ncommands in the OpenThread command line. These commands allow users to manipulate low-level\nfeatures of the storage and 15.4 radio.", + "id": "OPENTHREAD_DIAG", + "name": "OPENTHREAD_DIAG", + "range": null, + "title": "Enable diag", + "type": "bool" + }, + { + "children": [], + "depends_on": "OPENTHREAD_MTD && OPENTHREAD_ENABLED", + "help": "Select this option to enable \"Periodic Parent Search\" function for MTD. This checks the average\nRSS to its current parent every periodically and starts a parent search process if the average\nRSS is below OPENTHREAD_PARENT_SEARCH_RSS_THRESHOLD. This feature is always enabled for FTDs.", + "id": "OPENTHREAD_PARENT_SEARCH_MTD", + "name": "OPENTHREAD_PARENT_SEARCH_MTD", + "range": null, + "title": "Enable Parent Search", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "(OPENTHREAD_PARENT_SEARCH_MTD || OPENTHREAD_FTD) && OPENTHREAD_ENABLED", + "help": null, + "id": "OPENTHREAD_PARENT_SEARCH_CHECK_INTERVAL_MINS", + "name": "OPENTHREAD_PARENT_SEARCH_CHECK_INTERVAL_MINS", + "range": null, + "title": "The interval in minutes for a child to check the trigger condition to perform a parent search", + "type": "int" + }, + { + "children": [], + "depends_on": "(OPENTHREAD_PARENT_SEARCH_MTD || OPENTHREAD_FTD) && OPENTHREAD_ENABLED", + "help": null, + "id": "OPENTHREAD_PARENT_SEARCH_BACKOFF_INTERVAL_MINS", + "name": "OPENTHREAD_PARENT_SEARCH_BACKOFF_INTERVAL_MINS", + "range": null, + "title": "The backoff interval in minutes for a child to not perform a parent search after triggering one", + "type": "int" + }, + { + "children": [], + "depends_on": "(OPENTHREAD_PARENT_SEARCH_MTD || OPENTHREAD_FTD) && OPENTHREAD_ENABLED", + "help": null, + "id": "OPENTHREAD_PARENT_SEARCH_RSS_THRESHOLD", + "name": "OPENTHREAD_PARENT_SEARCH_RSS_THRESHOLD", + "range": null, + "title": "The RSS threshold used to trigger a parent search", + "type": "int" + }, + { + "children": [], + "depends_on": "(OPENTHREAD_PARENT_SEARCH_MTD || OPENTHREAD_FTD) && OPENTHREAD_ENABLED", + "help": null, + "id": "OPENTHREAD_PARENT_SEARCH_RESELECT_TIMEOUT_MINS", + "name": "OPENTHREAD_PARENT_SEARCH_RESELECT_TIMEOUT_MINS", + "range": null, + "title": "The parent reselect timeout duration in minutes used on FTD child devices", + "type": "int" + }, + { + "children": [], + "depends_on": "(OPENTHREAD_PARENT_SEARCH_MTD || OPENTHREAD_FTD) && OPENTHREAD_ENABLED", + "help": null, + "id": "OPENTHREAD_PARENT_SEARCH_RSS_MARGIN", + "name": "OPENTHREAD_PARENT_SEARCH_RSS_MARGIN", + "range": null, + "title": "The RSS margin over the current parent RSS used on FTD child devices", + "type": "int" + } + ], + "depends_on": "(OPENTHREAD_PARENT_SEARCH_MTD || OPENTHREAD_FTD) && OPENTHREAD_ENABLED", + "id": "component-config-openthread-openthread-thread-core-features-parent-search-configurations-C:-esp-v6.0-esp-idf-components-openthread-Kconfig-410", + "title": "Parent Search Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "(SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC) && OPENTHREAD_ENABLED", + "help": "Select this option to allocate buffer from PSRAM for Thread", + "id": "OPENTHREAD_PLATFORM_MALLOC_CAP_SPIRAM", + "name": "OPENTHREAD_PLATFORM_MALLOC_CAP_SPIRAM", + "range": null, + "title": "Allocate memory from PSRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "(SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC) && OPENTHREAD_ENABLED", + "help": "If enabled, the message pool is managed by platform defined logic.", + "id": "OPENTHREAD_PLATFORM_MSGPOOL_MANAGEMENT", + "name": "OPENTHREAD_PLATFORM_MSGPOOL_MANAGEMENT", + "range": null, + "title": "Allocate message pool buffer from PSRAM", + "type": "bool" + } + ], + "depends_on": "(SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC) && OPENTHREAD_ENABLED", + "id": "component-config-openthread-openthread-thread-core-features-thread-memory-allocation-C:-esp-v6.0-esp-idf-components-openthread-Kconfig-429", + "title": "Thread Memory Allocation", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "(OPENTHREAD_FTD || OPENTHREAD_MTD) && OPENTHREAD_ENABLED", + "help": null, + "id": "OPENTHREAD_ADDRESS_QUERY_TIMEOUT", + "name": "OPENTHREAD_ADDRESS_QUERY_TIMEOUT", + "range": null, + "title": "Timeout (in seconds) for a address notification response after sending an address query.", + "type": "int" + }, + { + "children": [], + "depends_on": "(OPENTHREAD_FTD || OPENTHREAD_MTD) && OPENTHREAD_ENABLED", + "help": null, + "id": "OPENTHREAD_ADDRESS_QUERY_RETRY_DELAY", + "name": "OPENTHREAD_ADDRESS_QUERY_RETRY_DELAY", + "range": null, + "title": "Initial retry delay for address query (in seconds).", + "type": "int" + }, + { + "children": [], + "depends_on": "(OPENTHREAD_FTD || OPENTHREAD_MTD) && OPENTHREAD_ENABLED", + "help": null, + "id": "OPENTHREAD_ADDRESS_QUERY_MAX_RETRY_DELAY", + "name": "OPENTHREAD_ADDRESS_QUERY_MAX_RETRY_DELAY", + "range": null, + "title": "Maximum retry delay for address query (in seconds).", + "type": "int" + } + ], + "depends_on": "OPENTHREAD_ENABLED", + "id": "component-config-openthread-openthread-thread-core-features-openthread-stack-parameters-thread-address-query-config-C:-esp-v6.0-esp-idf-components-openthread-Kconfig-446", + "title": "Thread Address Query Config", + "type": "menu" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": null, + "id": "OPENTHREAD_PREFERRED_CHANNEL_MASK", + "name": "OPENTHREAD_PREFERRED_CHANNEL_MASK", + "range": null, + "title": "Preferred channel mask", + "type": "hex" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": null, + "id": "OPENTHREAD_SUPPORTED_CHANNEL_MASK", + "name": "OPENTHREAD_SUPPORTED_CHANNEL_MASK", + "range": null, + "title": "Supported channel mask", + "type": "hex" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": null, + "id": "OPENTHREAD_NUM_MESSAGE_BUFFERS", + "name": "OPENTHREAD_NUM_MESSAGE_BUFFERS", + "range": null, + "title": "The number of openthread message buffers", + "type": "int" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": "The device's XTAL accuracy, in ppm.", + "id": "OPENTHREAD_XTAL_ACCURACY", + "name": "OPENTHREAD_XTAL_ACCURACY", + "range": null, + "title": "The accuracy of the XTAL", + "type": "int" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": "The device's bus latency, in us.", + "id": "OPENTHREAD_BUS_LATENCY", + "name": "OPENTHREAD_BUS_LATENCY", + "range": null, + "title": "The bus latency between host and radio chip", + "type": "int" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": null, + "id": "OPENTHREAD_MLE_MAX_CHILDREN", + "name": "OPENTHREAD_MLE_MAX_CHILDREN", + "range": null, + "title": "The size of max MLE children entries", + "type": "int" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": null, + "id": "OPENTHREAD_TMF_ADDR_CACHE_ENTRIES", + "name": "OPENTHREAD_TMF_ADDR_CACHE_ENTRIES", + "range": null, + "title": "The size of max TMF address cache entries", + "type": "int" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": "Set the OpenThread UART buffer size.", + "id": "OPENTHREAD_UART_BUFFER_SIZE", + "name": "OPENTHREAD_UART_BUFFER_SIZE", + "range": null, + "title": "The uart received buffer size of openthread", + "type": "int" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": "The maximum number of backoffs the CSMA-CA algorithm will attempt before declaring a channel access\nfailure.", + "id": "OPENTHREAD_MAC_MAX_CSMA_BACKOFFS_DIRECT", + "name": "OPENTHREAD_MAC_MAX_CSMA_BACKOFFS_DIRECT", + "range": null, + "title": "Maximum backoffs times before declaring a channel access failure.", + "type": "int" + } + ], + "depends_on": "OPENTHREAD_ENABLED", + "id": "component-config-openthread-openthread-thread-core-features-openthread-stack-parameters-C:-esp-v6.0-esp-idf-components-openthread-Kconfig-444", + "title": "OpenThread Stack Parameters", + "type": "menu" + } + ], + "depends_on": "OPENTHREAD_ENABLED", + "id": "component-config-openthread-openthread-thread-core-features-C:-esp-v6.0-esp-idf-components-openthread-Kconfig-86", + "title": "Thread Core Features", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED", + "help": "Select this option to enable dynamic log level control for OpenThread", + "id": "OPENTHREAD_LOG_LEVEL_DYNAMIC", + "name": "OPENTHREAD_LOG_LEVEL_DYNAMIC", + "range": null, + "title": "Enable dynamic log level control", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "OPENTHREAD_LOG_LEVEL_NONE", + "name": "OPENTHREAD_LOG_LEVEL_NONE", + "range": null, + "title": "No logs", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "OPENTHREAD_LOG_LEVEL_CRIT", + "name": "OPENTHREAD_LOG_LEVEL_CRIT", + "range": null, + "title": "Error logs", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "OPENTHREAD_LOG_LEVEL_WARN", + "name": "OPENTHREAD_LOG_LEVEL_WARN", + "range": null, + "title": "Warning logs", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "OPENTHREAD_LOG_LEVEL_NOTE", + "name": "OPENTHREAD_LOG_LEVEL_NOTE", + "range": null, + "title": "Notice logs", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "OPENTHREAD_LOG_LEVEL_INFO", + "name": "OPENTHREAD_LOG_LEVEL_INFO", + "range": null, + "title": "Info logs", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "OPENTHREAD_LOG_LEVEL_DEBG", + "name": "OPENTHREAD_LOG_LEVEL_DEBG", + "range": null, + "title": "Debug logs", + "type": "bool" + } + ], + "depends_on": "!OPENTHREAD_LOG_LEVEL_DYNAMIC && OPENTHREAD_ENABLED", + "help": "Select OpenThread log level.", + "id": "component-config-openthread-openthread-thread-log-openthread-log-verbosity-C:-esp-v6.0-esp-idf-components-openthread-Kconfig-520", + "name": "OPENTHREAD_LOG_LEVEL", + "title": "OpenThread log verbosity", + "type": "choice" + }, + { + "children": [], + "depends_on": "!OPENTHREAD_LOG_LEVEL_DYNAMIC && OPENTHREAD_ENABLED", + "help": null, + "id": "OPENTHREAD_LOG_LEVEL", + "name": "OPENTHREAD_LOG_LEVEL", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": "OPENTHREAD_ENABLED", + "id": "component-config-openthread-openthread-thread-log-C:-esp-v6.0-esp-idf-components-openthread-Kconfig-512", + "title": "Thread Log", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "OPENTHREAD_HEADER_CUSTOM && OPENTHREAD_HEADER_CUSTOM && OPENTHREAD_ENABLED", + "help": "Please use relative paths with respect to the project folder.", + "id": "OPENTHREAD_CUSTOM_HEADER_PATH", + "name": "OPENTHREAD_CUSTOM_HEADER_PATH", + "range": null, + "title": "Path of custom header file", + "type": "string" + }, + { + "children": [], + "depends_on": "OPENTHREAD_HEADER_CUSTOM && OPENTHREAD_HEADER_CUSTOM && OPENTHREAD_ENABLED", + "help": "Name of custom header file.", + "id": "OPENTHREAD_CUSTOM_HEADER_FILE_NAME", + "name": "OPENTHREAD_CUSTOM_HEADER_FILE_NAME", + "range": null, + "title": "Name of custom header file", + "type": "string" + } + ], + "depends_on": "OPENTHREAD_HEADER_CUSTOM && OPENTHREAD_ENABLED", + "id": "component-config-openthread-openthread-thread-extensioned-features-use-a-header-file-defined-by-customer-openthread-custom-header-config-C:-esp-v6.0-esp-idf-components-openthread-Kconfig-567", + "title": "OpenThread Custom Header Config", + "type": "menu" + } + ], + "depends_on": "OPENTHREAD_ENABLED", + "help": "This option allows users to tailor the values of openthread macros according to their requirements.\nThe openthread submodule contains numerous macros, each with a default value set. In the Kconfig of\nESP openthread, users can set specific openthread parameters, which will be applied for certain\nopenthread macros in the openthread-core-esp32x-xxx-config.h file. During compilation, the values\nspecified in openthread-core-esp32x-xxx-config.h will replace the default settings in the openthread\nsubmodule. However, Kconfig does not cover all openthread macros, particularly those typically\nusing default values. For such macros, users can enable the OPENTHREAD_HEADER_CUSTOM option in the\nKconfig and provide a custom header file. Macros defined in the custom header file will have the\nhighest priority.", + "id": "OPENTHREAD_HEADER_CUSTOM", + "name": "OPENTHREAD_HEADER_CUSTOM", + "range": null, + "title": "Use a header file defined by customer", + "type": "bool" + } + ], + "depends_on": "OPENTHREAD_ENABLED", + "id": "component-config-openthread-openthread-thread-extensioned-features-C:-esp-v6.0-esp-idf-components-openthread-Kconfig-552", + "title": "Thread Extensioned Features", + "type": "menu" + } + ], + "depends_on": null, + "help": "Select this option to enable OpenThread and show the submenu with OpenThread configuration choices.", + "id": "OPENTHREAD_ENABLED", + "name": "OPENTHREAD_ENABLED", + "range": null, + "title": "OpenThread", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Select this option to enable the OpenThread Radio Spinel for external protocol stack, such as Zigbee.", + "id": "OPENTHREAD_SPINEL_ONLY", + "name": "OPENTHREAD_SPINEL_ONLY", + "range": null, + "title": "Enable OpenThread External Radio Spinel feature", + "type": "bool" + }, + { + "children": [], + "depends_on": "OPENTHREAD_ENABLED || OPENTHREAD_SPINEL_ONLY", + "help": null, + "id": "OPENTHREAD_SPINEL_RX_FRAME_BUFFER_SIZE", + "name": "OPENTHREAD_SPINEL_RX_FRAME_BUFFER_SIZE", + "range": null, + "title": "The size of openthread spinel rx frame buffer", + "type": "int" + }, + { + "children": [], + "depends_on": "OPENTHREAD_SPINEL_ONLY", + "help": "The maximum number of backoffs the CSMA-CA algorithm will attempt before declaring a channel access\nfailure.", + "id": "OPENTHREAD_SPINEL_MAC_MAX_CSMA_BACKOFFS_DIRECT", + "name": "OPENTHREAD_SPINEL_MAC_MAX_CSMA_BACKOFFS_DIRECT", + "range": null, + "title": "Maximum backoffs times before declaring a channel access failure.", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-openthread-openthread-spinel-C:-esp-v6.0-esp-idf-components-openthread-Kconfig-586", + "title": "OpenThread Spinel", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "OPENTHREAD_DEBUG && OPENTHREAD_RADIO_NATIVE && IEEE802154_DEBUG", + "help": "When enabled, this option triggers the printing of 802.15.4 MAC layer debug\ninformation whenever an OpenThread assert occurs. This can help developers\nanalyze unexpected failures by providing additional MAC layer context.", + "id": "OPENTHREAD_DUMP_MAC_ON_ASSERT", + "name": "OPENTHREAD_DUMP_MAC_ON_ASSERT", + "range": null, + "title": "Dump 802.15.4 MAC debug info on OpenThread assert", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enable additional debugging support for ESP OpenThread integration.\nThis includes various diagnostic tools and logs to help track down\nissues in OpenThread networking or system integration", + "id": "OPENTHREAD_DEBUG", + "is_menuconfig": true, + "name": "OPENTHREAD_DEBUG", + "range": null, + "title": "Enable ESP OpenThread Debug", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-openthread-C:-esp-v6.0-esp-idf-components-openthread-Kconfig-1", + "title": "OpenThread", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Enable support of security version 0.\nThis version provides no encryption or authentication and should\nnot be used in production. Use only for development and testing.\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.", + "id": "ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_0", + "name": "ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_0", + "range": null, + "title": "Support protocomm security version 0 (no security)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable support of security version 1.\nSecurity version 2 (SRP6a + AES-GCM) is recommended over this\nversion for new designs.\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.", + "id": "ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_1", + "name": "ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_1", + "range": null, + "title": "Support protocomm security version 1 (Curve25519 key exchange + AES-CTR encryption/decryption)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_2", + "name": "ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_2", + "range": null, + "title": "Support protocomm security version 2 (SRP6a-based key exchange + AES-GCM encryption/decryption)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable support of security patch version. This is a hidden config option\nkept for external components like \"network_provisioning\" to find out if\nprotocomm component support security patch version. This config option\nalso indicates availability of a new API `protocomm_get_sec_version`.\nPlease refer to Protocomm documentation in ESP-IDF Programming guide for\nmore details.", + "id": "ESP_PROTOCOMM_SUPPORT_SECURITY_PATCH_VERSION", + "name": "ESP_PROTOCOMM_SUPPORT_SECURITY_PATCH_VERSION", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_ENABLED", + "help": "Keep BT on after calling protocomm_ble_stop", + "id": "ESP_PROTOCOMM_KEEP_BLE_ON_AFTER_BLE_STOP", + "name": "ESP_PROTOCOMM_KEEP_BLE_ON_AFTER_BLE_STOP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_PROTOCOMM_KEEP_BLE_ON_AFTER_BLE_STOP", + "help": "Terminate connection after calling protocomm_ble_stop", + "id": "ESP_PROTOCOMM_DISCONNECT_AFTER_BLE_STOP", + "name": "ESP_PROTOCOMM_DISCONNECT_AFTER_BLE_STOP", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-protocomm-C:-esp-v6.0-esp-idf-components-protocomm-Kconfig-1", + "title": "Protocomm", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Priority used to create new tasks with default pthread parameters.", + "id": "PTHREAD_TASK_PRIO_DEFAULT", + "name": "PTHREAD_TASK_PRIO_DEFAULT", + "range": [ + 0, + 255 + ], + "title": "Default task priority", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Stack size used to create new tasks with default pthread parameters.", + "id": "PTHREAD_TASK_STACK_SIZE_DEFAULT", + "name": "PTHREAD_TASK_STACK_SIZE_DEFAULT", + "range": null, + "title": "Default task stack size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Minimum allowed pthread stack size set in attributes passed to pthread_create", + "id": "PTHREAD_STACK_MIN", + "name": "PTHREAD_STACK_MIN", + "range": null, + "title": "Minimum allowed pthread stack size", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "PTHREAD_DEFAULT_CORE_NO_AFFINITY", + "name": "PTHREAD_DEFAULT_CORE_NO_AFFINITY", + "range": null, + "title": "No affinity", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "PTHREAD_DEFAULT_CORE_0", + "name": "PTHREAD_DEFAULT_CORE_0", + "range": null, + "title": "Core 0", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "PTHREAD_DEFAULT_CORE_1", + "name": "PTHREAD_DEFAULT_CORE_1", + "range": null, + "title": "Core 1", + "type": "bool" + } + ], + "depends_on": "!FREERTOS_UNICORE", + "help": "The default core to which pthreads are pinned.", + "id": "component-config-pthreads-default-pthread-core-affinity-C:-esp-v6.0-esp-idf-components-pthread-Kconfig-22", + "name": "PTHREAD_TASK_CORE_DEFAULT", + "title": "Default pthread core affinity", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "PTHREAD_TASK_CORE_DEFAULT", + "name": "PTHREAD_TASK_CORE_DEFAULT", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "The default name of pthreads.", + "id": "PTHREAD_TASK_NAME_DEFAULT", + "name": "PTHREAD_TASK_NAME_DEFAULT", + "range": null, + "title": "Default name of pthreads", + "type": "string" + } + ], + "depends_on": null, + "id": "component-config-pthreads-C:-esp-v6.0-esp-idf-components-pthread-Kconfig-1", + "title": "PThreads", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Enable SDIO support.\nDisabling this will skip SDIO-specific initialization steps", + "id": "SD_ENABLE_SDIO_SUPPORT", + "name": "SD_ENABLE_SDIO_SUPPORT", + "range": null, + "title": "Enable SDIO support", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-sd-protocol-layer-configuration-C:-esp-v6.0-esp-idf-components-sdmmc-Kconfig-1", + "title": "SD Protocol Layer Configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "SOC_MMU_PAGE_SIZE_8KB_SUPPORTED", + "help": null, + "id": "MMU_PAGE_SIZE_8KB", + "name": "MMU_PAGE_SIZE_8KB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MMU_PAGE_SIZE_16KB", + "name": "MMU_PAGE_SIZE_16KB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MMU_PAGE_SIZE_32KB", + "name": "MMU_PAGE_SIZE_32KB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MMU_PAGE_SIZE_64KB", + "name": "MMU_PAGE_SIZE_64KB", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MMU_PAGE_MODE", + "name": "MMU_PAGE_MODE", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MMU_PAGE_SIZE", + "name": "MMU_PAGE_SIZE", + "range": null, + "title": null, + "type": "hex" + } + ], + "depends_on": null, + "id": "component-config-soc-settings-mmu-config-C:-esp-v6.0-esp-idf-components-soc-Kconfig-5", + "title": "MMU Config", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-soc-settings-C:-esp-v6.0-esp-idf-components-soc-Kconfig-1", + "title": "SoC Settings", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "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.", + "id": "SPI_FLASH_BROWNOUT_RESET_XMC", + "name": "SPI_FLASH_BROWNOUT_RESET_XMC", + "range": null, + "title": "Enable sending reset when brownout for XMC flash chips", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "When brownout happens during flash erase/write operations,\nsend reset command to stop the flash operations to improve stability.", + "id": "SPI_FLASH_BROWNOUT_RESET", + "name": "SPI_FLASH_BROWNOUT_RESET", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "id": "component-config-main-flash-configuration-spi-flash-behavior-when-brownout-C:-esp-v6.0-esp-idf-components-spi_flash-Kconfig-4", + "title": "SPI Flash behavior when brownout", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This is a helper config for HPM. Invisible for users.", + "id": "SPI_FLASH_UNDER_HIGH_FREQ", + "name": "SPI_FLASH_UNDER_HIGH_FREQ", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_HPM_ENA", + "name": "SPI_FLASH_HPM_ENA", + "range": null, + "title": "Enable", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_HPM_AUTO", + "name": "SPI_FLASH_HPM_AUTO", + "range": null, + "title": "Auto (Not recommended)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_HPM_DIS", + "name": "SPI_FLASH_HPM_DIS", + "range": null, + "title": "Disabled", + "type": "bool" + } + ], + "depends_on": "(IDF_TARGET_ESP32S3 || IDF_TARGET_ESP32P4 || IDF_TARGET_ESP32C5) && !ESPTOOLPY_OCT_FLASH && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Whether the High Performance Mode of Flash is enabled. As an optional feature, user needs to manually\nenable this option as a confirmation. To be back-compatible with earlier IDF version, this option is\nautomatically enabled with warning when Flash running > 80Mhz.", + "id": "component-config-main-flash-configuration-optional-and-experimental-features-read-docs-first--high-performance-mode-read-docs-first-80mhz--C:-esp-v6.0-esp-idf-components-spi_flash-Kconfig-36", + "name": "SPI_FLASH_HPM", + "title": "High Performance Mode (READ DOCS FIRST, > 80MHz)", + "type": "choice" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This option is invisible, and will be selected automatically\nwhen ``ESPTOOLPY_FLASHFREQ_120M`` is selected.", + "id": "SPI_FLASH_HPM_ON", + "name": "SPI_FLASH_HPM_ON", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_HPM_DC_AUTO", + "name": "SPI_FLASH_HPM_DC_AUTO", + "range": null, + "title": "Auto (Enable when bootloader support enabled (BOOTLOADER_FLASH_DC_AWARE))", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_HPM_DC_DISABLE", + "name": "SPI_FLASH_HPM_DC_DISABLE", + "range": null, + "title": "Disable (READ DOCS FIRST)", + "type": "bool" + } + ], + "depends_on": "SPI_FLASH_HPM_ON && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This feature needs your bootloader to be compiled DC-aware (BOOTLOADER_FLASH_DC_AWARE=y). Otherwise the\nchip will not be able to boot after a reset.", + "id": "component-config-main-flash-configuration-optional-and-experimental-features-read-docs-first--support-hpm-using-dc-read-docs-first--C:-esp-v6.0-esp-idf-components-spi_flash-Kconfig-65", + "name": "SPI_FLASH_HPM_DC", + "title": "Support HPM using DC (READ DOCS FIRST)", + "type": "choice" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This is a helper config for HPM. Whether HPM-DC is enabled is also determined by bootloader.\nInvisible for users.", + "id": "SPI_FLASH_HPM_DC_ON", + "name": "SPI_FLASH_HPM_DC_ON", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND && !SPI_FLASH_ROM_IMPL && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This option is disabled by default because it is supported only\nfor specific flash chips and for specific Espressif chips.\nTo evaluate if you can use this feature refer to\n`Optional Features for Flash` > `Auto Suspend & Resume` of the `ESP-IDF Programming Guide`.\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\nIf you are using an official Espressif module, please contact Espressif Business support\nto check if the module has the flash that support this feature installed.\nAlso refer to `Concurrency Constraints for Flash on SPI1` > `Flash Auto Suspend Feature`\nbefore enabling this option.", + "id": "SPI_FLASH_AUTO_SUSPEND", + "name": "SPI_FLASH_AUTO_SUSPEND", + "range": null, + "title": "Auto suspend long erase/write operations (READ DOCS FIRST)", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This config is used for setting Tsus parameter. Tsus means CS# high to next command after\nsuspend. You can refer to the chapter of AC CHARACTERISTICS of flash datasheet.", + "id": "SPI_FLASH_SUSPEND_TSUS_VAL_US", + "name": "SPI_FLASH_SUSPEND_TSUS_VAL_US", + "range": [ + 20, + 100 + ], + "title": "SPI flash tSUS value (refer to chapter AC CHARACTERISTICS)", + "type": "int" + }, + { + "children": [], + "depends_on": "SOC_SPI_MEM_SUPPORT_TSUS_TRES_SEPERATE_CTR && !ESP32P4_SELECTS_REV_LESS_V3 && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This config is used for setting Trs parameter. Trs means CS Latency Between Resume And Next Suspend.\nYou can refer to the chapter of AC CHARACTERISTICS of flash datasheet.\nFor high-performance scenarios, some flash chips allow this set value to be smaller than the\ngiven value in the datasheet without causing errors in the flash state machine.\nWhen you have any related needs, please contact espressif business team.", + "id": "SPI_FLASH_SUSPEND_TRS_VAL_US", + "name": "SPI_FLASH_SUSPEND_TRS_VAL_US", + "range": null, + "title": "SPI flash tRS value (refer to chapter AC CHARACTERISTICS)", + "type": "int" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "XMC-C series is regarded as not qualified for the Suspend feature, since its specification\nhas a tRS >= 1ms restriction. We strongly do not suggest using it for the Suspend feature.\nHowever, if your product in field has enabled this feature, you may still enable this\nconfig option to keep the legacy behavior.\n\nFor new users, DO NOT enable this config.", + "id": "SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND", + "name": "SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND", + "range": null, + "title": "Enable XMC-C series flash chip suspend feature anyway", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Flash suspend has a defect on ESP32C6 until v0.2 and ESP32H2 until v1.2. If you already use suspend\nfeature for mass production, you can enable this for bypassing check after knowing the risk.\nBut if you are new users, or developing new applications, or producing a new batch,\nplease DO NOT enable this config option.\n\nFor more information, please refer to errata or connect to Espressif business support team.", + "id": "SPI_FLASH_FORCE_ENABLE_C6_H2_SUSPEND", + "name": "SPI_FLASH_FORCE_ENABLE_C6_H2_SUSPEND", + "range": null, + "title": "Enable chip suspend feature on c6 or h2 anyway (DO NOT ENABLE FOR NEW USERS OR APPLICATIONS)", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPI_FLASH_AUTO_SUSPEND && FREERTOS_UNICORE && IDF_EXPERIMENTAL_FEATURES && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Enable this config will disable auto-resume from hardware. Thus the software will resume the chip\nafter any higher priority task/interrupt which suspend the chip. The benefit is that the suspend-resume\nwill not disturb the higher priority task and interrupt.\n\nThis currently is only valid on single core chip.", + "id": "SPI_FLASH_SOFTWARE_RESUME", + "name": "SPI_FLASH_SOFTWARE_RESUME", + "range": null, + "title": "Resume flash program/erase form suspend state by software control", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPI_FLASH_AUTO_SUSPEND && FREERTOS_UNICORE && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Disable freertos task scheduler when CONFIG_SPI_FLASH_AUTO_SUSPEND is enabled.\nThus only interrupt can trigger a suspend. When SPI_FLASH_AUTO_SUSPEND is enabled,\ndefault behavior is not disable the task scheduler, so both interrupt and high priority\ntask can suspend the erase/program operation. When this option is enabled, task\nscheduler is disabled, only interrupt can suspend erase/program operation.", + "id": "SPI_FLASH_DISABLE_SCHEDULER_IN_SUSPEND", + "name": "SPI_FLASH_DISABLE_SCHEDULER_IN_SUSPEND", + "range": null, + "title": "Disable task scheduler when suspend is enabled when SPI1 operation is ongoing", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPI_FLASH_AUTO_SUSPEND && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Majority flash supports to use flash register to judge if flash suspend status is\ndone or not. So enable this config, the behavior would use flash register WIP bit to judge\nwhether suspend is valid instead of waiting for a specific long time, which can save a\nlot of time and benefit for performance improvement.", + "id": "SPI_FLASH_AUTO_CHECK_SUSPEND_STATUS", + "name": "SPI_FLASH_AUTO_CHECK_SUSPEND_STATUS", + "range": null, + "title": "Check flash status automatically after flash suspend", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "When disabled, certain functions in `spi_flash` component will be placed into Flash memory\ninstead of IRAM. Disabling this option will save almost 10KB of IRAM depending on which\nfunctions are used.\n\nWhen enabled, these functions will be placed in internal RAM, with better performance.\n\nFor more information please refer to programming guide.", + "id": "SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM", + "name": "SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM", + "range": null, + "title": "Place spi_flash operation functions into IRAM", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "id": "component-config-main-flash-configuration-optional-and-experimental-features-read-docs-first--C:-esp-v6.0-esp-idf-components-spi_flash-Kconfig-26", + "title": "Optional and Experimental Features (READ DOCS FIRST)", + "type": "menu" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "id": "component-config-main-flash-configuration-C:-esp-v6.0-esp-idf-components-spi_flash-Kconfig-1", + "title": "Main Flash configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "SPI_FLASH_VERIFY_WRITE && !APP_BUILD_TYPE_PURE_RAM_APP", + "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.", + "id": "SPI_FLASH_LOG_FAILED_WRITE", + "name": "SPI_FLASH_LOG_FAILED_WRITE", + "range": null, + "title": "Log errors if verification fails", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPI_FLASH_VERIFY_WRITE && !APP_BUILD_TYPE_PURE_RAM_APP", + "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.", + "id": "SPI_FLASH_WARN_SETTING_ZERO_TO_ONE", + "name": "SPI_FLASH_WARN_SETTING_ZERO_TO_ONE", + "range": null, + "title": "Log warning if writing zero bits to ones", + "type": "bool" + } + ], + "depends_on": "!SPI_FLASH_ROM_IMPL && !APP_BUILD_TYPE_PURE_RAM_APP", + "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\nThis will slightly influence the write performance.", + "id": "SPI_FLASH_VERIFY_WRITE", + "name": "SPI_FLASH_VERIFY_WRITE", + "range": null, + "title": "Verify SPI flash writes", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "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.", + "id": "SPI_FLASH_ENABLE_COUNTERS", + "name": "SPI_FLASH_ENABLE_COUNTERS", + "range": null, + "title": "Enable operation counters", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_ROM_HAS_SPI_FLASH && !ESPTOOLPY_OCT_FLASH && !APP_BUILD_TYPE_PURE_RAM_APP", + "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)", + "id": "SPI_FLASH_ROM_IMPL", + "name": "SPI_FLASH_ROM_IMPL", + "range": null, + "title": "Use esp_flash implementation in ROM", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_DANGEROUS_WRITE_ABORTS", + "name": "SPI_FLASH_DANGEROUS_WRITE_ABORTS", + "range": null, + "title": "Aborts", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_DANGEROUS_WRITE_FAILS", + "name": "SPI_FLASH_DANGEROUS_WRITE_FAILS", + "range": null, + "title": "Fails", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_DANGEROUS_WRITE_ALLOWED", + "name": "SPI_FLASH_DANGEROUS_WRITE_ALLOWED", + "range": null, + "title": "Allowed", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "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.", + "id": "component-config-spi-flash-driver-writing-to-dangerous-flash-regions-C:-esp-v6.0-esp-idf-components-spi_flash-Kconfig-264", + "name": "SPI_FLASH_DANGEROUS_WRITE", + "title": "Writing to dangerous flash regions", + "type": "choice" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32 && !APP_BUILD_TYPE_PURE_RAM_APP", + "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.", + "id": "SPI_FLASH_SHARE_SPI1_BUS", + "name": "SPI_FLASH_SHARE_SPI1_BUS", + "range": null, + "title": "Support other devices attached to SPI1 bus", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "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.", + "id": "SPI_FLASH_BYPASS_BLOCK_ERASE", + "name": "SPI_FLASH_BYPASS_BLOCK_ERASE", + "range": null, + "title": "Bypass a block erase and always do sector erase", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "SPI_FLASH_YIELD_DURING_ERASE && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "If a duration of one erase command is large\nthen it will yield CPUs after finishing a current command.", + "id": "SPI_FLASH_ERASE_YIELD_DURATION_MS", + "name": "SPI_FLASH_ERASE_YIELD_DURATION_MS", + "range": null, + "title": "Duration of erasing to yield CPUs (ms)", + "type": "int" + }, + { + "children": [], + "depends_on": "SPI_FLASH_YIELD_DURING_ERASE && !APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Defines how many ticks will be before returning to continue a erasing.", + "id": "SPI_FLASH_ERASE_YIELD_TICKS", + "name": "SPI_FLASH_ERASE_YIELD_TICKS", + "range": null, + "title": "CPU release time (tick) for an erase operation", + "type": "int" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "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 documentation\nunder section `OS Function`.", + "id": "SPI_FLASH_YIELD_DURING_ERASE", + "name": "SPI_FLASH_YIELD_DURING_ERASE", + "range": null, + "title": "Enables yield operation during flash erase", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "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.", + "id": "SPI_FLASH_WRITE_CHUNK_SIZE", + "name": "SPI_FLASH_WRITE_CHUNK_SIZE", + "range": [ + 256, + 8192 + ], + "title": "Flash write chunk size", + "type": "int" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "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.", + "id": "SPI_FLASH_SIZE_OVERRIDE", + "name": "SPI_FLASH_SIZE_OVERRIDE", + "range": null, + "title": "Override flash size in bootloader header by ESPTOOLPY_FLASHSIZE", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "This option is helpful if you are using a flash chip whose timeout is quite large or unpredictable.", + "id": "SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED", + "name": "SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED", + "range": null, + "title": "Flash timeout checkout disabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "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.", + "id": "SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST", + "name": "SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST", + "range": null, + "title": "Override default chip driver list", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "SPI_FLASH_VENDOR_XMC_SUPPORT_ENABLED", + "name": "SPI_FLASH_VENDOR_XMC_SUPPORT_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED", + "name": "SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "SPI_FLASH_VENDOR_ISSI_SUPPORT_ENABLED", + "name": "SPI_FLASH_VENDOR_ISSI_SUPPORT_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "SPI_FLASH_VENDOR_MXIC_SUPPORT_ENABLED", + "name": "SPI_FLASH_VENDOR_MXIC_SUPPORT_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": null, + "id": "SPI_FLASH_VENDOR_WINBOND_SUPPORT_ENABLED", + "name": "SPI_FLASH_VENDOR_WINBOND_SUPPORT_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "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.", + "id": "SPI_FLASH_SUPPORT_ISSI_CHIP", + "name": "SPI_FLASH_SUPPORT_ISSI_CHIP", + "range": null, + "title": "ISSI", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "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.", + "id": "SPI_FLASH_SUPPORT_MXIC_CHIP", + "name": "SPI_FLASH_SUPPORT_MXIC_CHIP", + "range": null, + "title": "MXIC", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "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.", + "id": "SPI_FLASH_SUPPORT_GD_CHIP", + "name": "SPI_FLASH_SUPPORT_GD_CHIP", + "range": null, + "title": "GigaDevice", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "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.", + "id": "SPI_FLASH_SUPPORT_WINBOND_CHIP", + "name": "SPI_FLASH_SUPPORT_WINBOND_CHIP", + "range": null, + "title": "Winbond", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "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.", + "id": "SPI_FLASH_SUPPORT_BOYA_CHIP", + "name": "SPI_FLASH_SUPPORT_BOYA_CHIP", + "range": null, + "title": "BOYA", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "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.", + "id": "SPI_FLASH_SUPPORT_TH_CHIP", + "name": "SPI_FLASH_SUPPORT_TH_CHIP", + "range": null, + "title": "TH", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32S3 && !APP_BUILD_TYPE_PURE_RAM_APP", + "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.", + "id": "SPI_FLASH_SUPPORT_MXIC_OPI_CHIP", + "name": "SPI_FLASH_SUPPORT_MXIC_OPI_CHIP", + "range": null, + "title": "mxic (opi)", + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "id": "component-config-spi-flash-driver-auto-detect-flash-chips-C:-esp-v6.0-esp-idf-components-spi_flash-Kconfig-375", + "title": "Auto-detect flash chips", + "type": "menu" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "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.", + "id": "SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE", + "name": "SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE", + "range": null, + "title": "Enable encrypted partition read/write operations", + "type": "bool" + }, + { + "children": [], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "help": "Enable frequency limit workaround for encrypted flash writes on ESP32-C5 at 240MHz default CPU frequency.\nThis is an internal configuration, automatically set based on target chip and CPU frequency.", + "id": "SPI_FLASH_FREQ_LIMIT_C5_240MHZ", + "name": "SPI_FLASH_FREQ_LIMIT_C5_240MHZ", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", + "id": "component-config-spi-flash-driver-C:-esp-v6.0-esp-idf-components-spi_flash-Kconfig-194", + "title": "SPI Flash driver", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Define maximum number of partitions that can be mounted.", + "id": "SPIFFS_MAX_PARTITIONS", + "name": "SPIFFS_MAX_PARTITIONS", + "range": [ + 1, + 10 + ], + "title": "Maximum Number of Partitions", + "type": "int" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "SPIFFS_CACHE", + "help": "Enables memory write caching for file descriptors in hydrogen.", + "id": "SPIFFS_CACHE_WR", + "name": "SPIFFS_CACHE_WR", + "range": null, + "title": "Enable SPIFFS Write Caching", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIFFS_CACHE", + "help": "Enable/disable statistics on caching. Debug/test purpose only.", + "id": "SPIFFS_CACHE_STATS", + "name": "SPIFFS_CACHE_STATS", + "range": null, + "title": "Enable SPIFFS Cache Statistics", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enables/disable memory read caching of nucleus file system\noperations.", + "id": "SPIFFS_CACHE", + "name": "SPIFFS_CACHE", + "range": null, + "title": "Enable SPIFFS Cache", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-spiffs-configuration-spiffs-cache-configuration-C:-esp-v6.0-esp-idf-components-spiffs-Kconfig-10", + "title": "SPIFFS Cache Configuration", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "SPIFFS_PAGE_CHECK", + "name": "SPIFFS_PAGE_CHECK", + "range": null, + "title": "Enable SPIFFS Page Check", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Define maximum number of GC runs to perform to reach desired free pages.", + "id": "SPIFFS_GC_MAX_RUNS", + "name": "SPIFFS_GC_MAX_RUNS", + "range": [ + 1, + 10000 + ], + "title": "Set Maximum GC Runs", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Enable/disable statistics on gc. Debug/test purpose only.", + "id": "SPIFFS_GC_STATS", + "name": "SPIFFS_GC_STATS", + "range": null, + "title": "Enable SPIFFS GC Statistics", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "SPIFFS_PAGE_SIZE", + "name": "SPIFFS_PAGE_SIZE", + "range": [ + 256, + 1024 + ], + "title": "SPIFFS logical page size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "SPIFFS_OBJ_NAME_LEN", + "name": "SPIFFS_OBJ_NAME_LEN", + "range": [ + 1, + 256 + ], + "title": "Set SPIFFS Maximum Name Length", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "If this option is enabled, symbolic links are taken into account\nduring partition image creation.", + "id": "SPIFFS_FOLLOW_SYMLINKS", + "name": "SPIFFS_FOLLOW_SYMLINKS", + "range": null, + "title": "Enable symbolic links for image creation", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "SPIFFS_USE_MAGIC", + "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.", + "id": "SPIFFS_USE_MAGIC_LENGTH", + "name": "SPIFFS_USE_MAGIC_LENGTH", + "range": null, + "title": "Enable SPIFFS Filesystem Length Magic", + "type": "bool" + } + ], + "depends_on": null, + "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.", + "id": "SPIFFS_USE_MAGIC", + "name": "SPIFFS_USE_MAGIC", + "range": null, + "title": "Enable SPIFFS Filesystem Magic", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "SPIFFS_META_LENGTH", + "name": "SPIFFS_META_LENGTH", + "range": null, + "title": "Size of per-file metadata field", + "type": "int" + }, + { + "children": [], + "depends_on": "SPIFFS_META_LENGTH >= 4", + "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.", + "id": "SPIFFS_USE_MTIME", + "name": "SPIFFS_USE_MTIME", + "range": null, + "title": "Save file modification time", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIFFS_META_LENGTH >= 8", + "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.", + "id": "SPIFFS_MTIME_WIDE_64_BITS", + "name": "SPIFFS_MTIME_WIDE_64_BITS", + "range": null, + "title": "The time field occupies 64 bits in the image instead of 32 bits", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Enabling this option will print general debug messages to the console.", + "id": "SPIFFS_DBG", + "name": "SPIFFS_DBG", + "range": null, + "title": "Enable general SPIFFS debug", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enabling this option will print API debug messages to the console.", + "id": "SPIFFS_API_DBG", + "name": "SPIFFS_API_DBG", + "range": null, + "title": "Enable SPIFFS API debug", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enabling this option will print GC debug messages to the console.", + "id": "SPIFFS_GC_DBG", + "name": "SPIFFS_GC_DBG", + "range": null, + "title": "Enable SPIFFS Garbage Cleaner debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIFFS_CACHE", + "help": "Enabling this option will print cache debug messages to the console.", + "id": "SPIFFS_CACHE_DBG", + "name": "SPIFFS_CACHE_DBG", + "range": null, + "title": "Enable SPIFFS Cache debug", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enabling this option will print Filesystem Check debug messages\nto the console.", + "id": "SPIFFS_CHECK_DBG", + "name": "SPIFFS_CHECK_DBG", + "range": null, + "title": "Enable SPIFFS Filesystem Check debug", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this option to enable SPIFFS_vis function in the API.", + "id": "SPIFFS_TEST_VISUALISATION", + "name": "SPIFFS_TEST_VISUALISATION", + "range": null, + "title": "Enable SPIFFS Filesystem Visualization", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-spiffs-configuration-debug-configuration-C:-esp-v6.0-esp-idf-components-spiffs-Kconfig-139", + "title": "Debug Configuration", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-spiffs-configuration-C:-esp-v6.0-esp-idf-components-spiffs-Kconfig-1", + "title": "SPIFFS Configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "WS_TRANSPORT", + "help": "Size of the buffer used for constructing the HTTP Upgrade request during connect", + "id": "WS_BUFFER_SIZE", + "name": "WS_BUFFER_SIZE", + "range": null, + "title": "Websocket transport buffer size", + "type": "int" + }, + { + "children": [], + "depends_on": "WS_TRANSPORT", + "help": "If enable this option, websocket transport buffer will be freed after connection\nsucceed to save more heap.", + "id": "WS_DYNAMIC_BUFFER", + "name": "WS_DYNAMIC_BUFFER", + "range": null, + "title": "Using dynamic websocket transport buffer", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enable support for creating websocket transport.", + "id": "WS_TRANSPORT", + "name": "WS_TRANSPORT", + "range": null, + "title": "Enable Websocket Transport", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-tcp-transport-websocket-C:-esp-v6.0-esp-idf-components-tcp_transport-Kconfig-3", + "title": "Websocket", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-tcp-transport-C:-esp-v6.0-esp-idf-components-tcp_transport-Kconfig-1", + "title": "TCP Transport", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "SOC_ULP_FSM_SUPPORTED && ", + "help": null, + "id": "ULP_COPROC_TYPE_FSM", + "name": "ULP_COPROC_TYPE_FSM", + "range": null, + "title": "ULP FSM (Finite State Machine)", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_RISCV_COPROC_SUPPORTED && ", + "help": null, + "id": "ULP_COPROC_TYPE_RISCV", + "name": "ULP_COPROC_TYPE_RISCV", + "range": null, + "title": "ULP RISC-V", + "type": "bool" + }, + { + "children": [], + "depends_on": "SOC_LP_CORE_SUPPORTED && ", + "help": null, + "id": "ULP_COPROC_TYPE_LP_CORE", + "name": "ULP_COPROC_TYPE_LP_CORE", + "range": null, + "title": "LP core RISC-V", + "type": "bool" + } + ], + "depends_on": "ULP_COPROC_ENABLED && (SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED)", + "help": "Choose the ULP Coprocessor type: ULP FSM (Finite State Machine) or ULP RISC-V.", + "id": "component-config-ultra-low-power-ulp-co-processor-enable-ultra-low-power-ulp-co-processor-ulp-co-processor-type-C:-esp-v6.0-esp-idf-components-ulp-Kconfig-11", + "name": "ULP_COPROC_TYPE", + "title": "ULP Co-processor type", + "type": "choice" + }, + { + "children": [], + "depends_on": "ULP_COPROC_ENABLED && (SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED)", + "help": "Bytes of memory to reserve for ULP Co-processor firmware & data.\nData is reserved at the beginning of RTC slow memory.", + "id": "ULP_COPROC_RESERVE_MEM", + "name": "ULP_COPROC_RESERVE_MEM", + "range": null, + "title": "RTC slow memory reserved for coprocessor", + "type": "int" + } + ], + "depends_on": "SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED", + "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.", + "id": "ULP_COPROC_ENABLED", + "name": "ULP_COPROC_ENABLED", + "range": null, + "title": "Enable Ultra Low Power (ULP) Co-processor", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ULP_COPROC_TYPE_RISCV && (SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED)", + "help": "Turn on this setting to enabled interrupts on the ULP RISC-V core.", + "id": "ULP_RISCV_INTERRUPT_ENABLE", + "name": "ULP_RISCV_INTERRUPT_ENABLE", + "range": null, + "title": "Enable ULP RISC-V interrupts", + "type": "bool" + }, + { + "children": [], + "depends_on": "ULP_COPROC_TYPE_RISCV && (SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED)", + "help": "The accuracy of the bitbanged UART driver is limited, it is not\nrecommend to increase the value above 19200.", + "id": "ULP_RISCV_UART_BAUDRATE", + "name": "ULP_RISCV_UART_BAUDRATE", + "range": null, + "title": "Baudrate used by the bitbanged ULP RISC-V UART driver", + "type": "int" + }, + { + "children": [], + "depends_on": "ULP_COPROC_TYPE_RISCV && (SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED)", + "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.", + "id": "ULP_RISCV_I2C_RW_TIMEOUT", + "name": "ULP_RISCV_I2C_RW_TIMEOUT", + "range": null, + "title": "Set timeout for ULP RISC-V I2C transaction timeout in ticks.", + "type": "int" + } + ], + "depends_on": "ULP_COPROC_TYPE_RISCV && (SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED)", + "id": "component-config-ultra-low-power-ulp-co-processor-ulp-risc-v-settings-C:-esp-v6.0-esp-idf-components-ulp-Kconfig-43", + "title": "ULP RISC-V Settings", + "type": "menu" + }, + { + "children": [], + "depends_on": "ULP_COPROC_TYPE_LP_CORE && (SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED)", + "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.", + "id": "ULP_SHARED_MEM", + "name": "ULP_SHARED_MEM", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": "ULP_COPROC_TYPE_LP_CORE && ESP_ROM_HAS_LP_ROM && (SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED)", + "help": "Set this option to enable printf functionality from LP ROM. This option\ncan help reduce the LP core binary size by not linking printf functionality\nfrom RAM code.\nNote: For LP ROM prints to work properly, make sure that the LP core boots\nfrom the LP ROM.", + "id": "ULP_ROM_PRINT_ENABLE", + "name": "ULP_ROM_PRINT_ENABLE", + "range": null, + "title": "Enable print utilities from LP ROM", + "type": "bool" + }, + { + "children": [], + "depends_on": "ULP_COPROC_TYPE_LP_CORE && (SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED)", + "help": "Set this option to also trigger a wakeup signal to the HP-CPU when\nthe LP-core encounters an exception.", + "id": "ULP_TRAP_WAKEUP", + "name": "ULP_TRAP_WAKEUP", + "range": null, + "title": "Enable wakeup of HP-CPU when LP-core encounters an exception", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ULP_COPROC_TYPE_LP_CORE && SOC_ULP_LP_UART_SUPPORTED && (SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED)", + "help": "Set this option to enable panic handler functionality. If this option is\nenabled then the LP Core will output a panic dump over LP UART,\nsimilar to what the main core does. Output depends on LP UART already being\ninitialized and configured.\nDisabling this option will reduce the LP core binary size by not\nlinking in panic handler functionality.", + "id": "ULP_PANIC_OUTPUT_ENABLE", + "name": "ULP_PANIC_OUTPUT_ENABLE", + "range": null, + "title": "Enable panic handler which outputs over LP UART", + "type": "bool" + }, + { + "children": [], + "depends_on": "ULP_COPROC_TYPE_LP_CORE && (SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED)", + "help": "Set this option to route lp_core_printf to the console HP-UART.\nThis allows you to easily view print outputs from the LP core, without\nhaving to connect to the LP-UART. This option comes with the following\nlimitations:\n\n1. There is no mutual exclusion between the HP-Core and the LP-Core accessing\nthe HP-UART, which means that if both cores are logging heavily the output\nstrings might get mangled together.\n2. The HP-UART can only work while the HP-Core is running, which means that\nif the HP-Core is in deep sleep, the LP-Core will not be able to print to the\nconsole HP-UART.\n\nDue to these limitations it is only recommended to use this option for easy debugging.\nFor more serious use-cases you should use the LP-UART.", + "id": "ULP_HP_UART_CONSOLE_PRINT", + "name": "ULP_HP_UART_CONSOLE_PRINT", + "range": null, + "title": "Route lp_core_printf to the console HP-UART", + "type": "bool" + }, + { + "children": [], + "depends_on": "ULP_COPROC_TYPE_LP_CORE && (SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED)", + "help": "Enable this feature to avoid resetting LP core in sleep mode when debugger is attached,\notherwise configured HW breakpoints and dcsr.ebreak* bits will be missed.\nThis is a workaround until it will be fixed in HW.", + "id": "ULP_NORESET_UNDER_DEBUG", + "name": "ULP_NORESET_UNDER_DEBUG", + "range": null, + "title": "Avoid resetting LP core when debugger is attached", + "type": "bool" + } + ], + "depends_on": "SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED", + "id": "component-config-ultra-low-power-ulp-co-processor-ulp-debugging-options-C:-esp-v6.0-esp-idf-components-ulp-Kconfig-104", + "title": "ULP Debugging Options", + "type": "menu" + } + ], + "depends_on": "SOC_ULP_SUPPORTED || SOC_RISCV_COPROC_SUPPORTED || SOC_LP_CORE_SUPPORTED", + "id": "component-config-ultra-low-power-ulp-co-processor-C:-esp-v6.0-esp-idf-components-ulp-Kconfig-1", + "title": "Ultra Low Power (ULP) Co-processor", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "If not set, assertions on float arguments will not be available.", + "id": "UNITY_ENABLE_FLOAT", + "name": "UNITY_ENABLE_FLOAT", + "range": null, + "title": "Support for float type", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If not set, assertions on double arguments will not be available.", + "id": "UNITY_ENABLE_DOUBLE", + "name": "UNITY_ENABLE_DOUBLE", + "range": null, + "title": "Support for double type", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "UNITY_ENABLE_64BIT", + "name": "UNITY_ENABLE_64BIT", + "range": null, + "title": "Support for 64-bit integer types", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If set, Unity will colorize test results using console escape sequences.", + "id": "UNITY_ENABLE_COLOR", + "name": "UNITY_ENABLE_COLOR", + "range": null, + "title": "Colorize test output", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "UNITY_ENABLE_IDF_TEST_RUNNER", + "name": "UNITY_ENABLE_IDF_TEST_RUNNER", + "range": null, + "title": "Include ESP-IDF test registration/running helpers", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "UNITY_ENABLE_FIXTURE", + "name": "UNITY_ENABLE_FIXTURE", + "range": null, + "title": "Include Unity test fixture", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "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.", + "id": "UNITY_ENABLE_BACKTRACE_ON_FAIL", + "name": "UNITY_ENABLE_BACKTRACE_ON_FAIL", + "range": null, + "title": "Print a backtrace when a unit test fails", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-unity-unit-testing-library-C:-esp-v6.0-esp-idf-components-unity-Kconfig-1", + "title": "Unity unit testing library", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "VFS_SUPPORT_IO", + "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.", + "id": "VFS_SUPPORT_DIR", + "name": "VFS_SUPPORT_DIR", + "range": null, + "title": "Provide directory related functions", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "VFS_SUPPORT_SELECT", + "help": "Select() related functions might produce an inconveniently 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.", + "id": "VFS_SUPPRESS_SELECT_DEBUG_OUTPUT", + "name": "VFS_SUPPRESS_SELECT_DEBUG_OUTPUT", + "range": null, + "title": "Suppress select() related debug outputs", + "type": "bool" + }, + { + "children": [], + "depends_on": "VFS_SUPPORT_SELECT", + "help": "If enabled, VFS driver select() callback function will be placed in IRAM.", + "id": "VFS_SELECT_IN_RAM", + "name": "VFS_SELECT_IN_RAM", + "range": null, + "title": "Make VFS driver select() callbacks IRAM-safe", + "type": "bool" + } + ], + "depends_on": "VFS_SUPPORT_IO && !LWIP_USE_ONLY_LWIP_SELECT", + "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.", + "id": "VFS_SUPPORT_SELECT", + "name": "VFS_SUPPORT_SELECT", + "range": null, + "title": "Provide select function", + "type": "bool" + }, + { + "children": [], + "depends_on": "VFS_SUPPORT_IO", + "help": "Disabling this option can save memory when the support for termios.h is not required.", + "id": "VFS_SUPPORT_TERMIOS", + "name": "VFS_SUPPORT_TERMIOS", + "range": null, + "title": "Provide termios.h functions", + "type": "bool" + }, + { + "children": [], + "depends_on": "VFS_SUPPORT_IO", + "help": "Define maximum number of virtual filesystems that can be registered.", + "id": "VFS_MAX_COUNT", + "name": "VFS_MAX_COUNT", + "range": [ + 1, + 20 + ], + "title": "Maximum Number of Virtual Filesystems", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "VFS_SUPPORT_IO", + "help": "Define maximum number of host filesystem mount points.", + "id": "VFS_SEMIHOSTFS_MAX_MOUNT_POINTS", + "name": "VFS_SEMIHOSTFS_MAX_MOUNT_POINTS", + "range": null, + "title": "Host FS: Maximum number of the host filesystem mount points", + "type": "int" + } + ], + "depends_on": "VFS_SUPPORT_IO", + "id": "component-config-virtual-file-system-provide-basic-i-o-functions-host-file-system-i-o-semihosting--C:-esp-v6.0-esp-idf-components-vfs-Kconfig-90", + "title": "Host File System I/O (Semihosting)", + "type": "menu" + }, + { + "children": [], + "depends_on": "VFS_SUPPORT_IO", + "help": "If enabled, /dev/null VFS will be automatically initialized at startup.", + "id": "VFS_INITIALIZE_DEV_NULL", + "name": "VFS_INITIALIZE_DEV_NULL", + "range": null, + "title": "Initialize /dev/null VFS", + "type": "bool" + } + ], + "depends_on": null, + "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.", + "id": "VFS_SUPPORT_IO", + "name": "VFS_SUPPORT_IO", + "range": null, + "title": "Provide basic I/O functions", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-virtual-file-system-C:-esp-v6.0-esp-idf-components-vfs-Kconfig-1", + "title": "Virtual file system", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "WL_SECTOR_SIZE_512", + "name": "WL_SECTOR_SIZE_512", + "range": null, + "title": "512", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "WL_SECTOR_SIZE_4096", + "name": "WL_SECTOR_SIZE_4096", + "range": null, + "title": "4096", + "type": "bool" + } + ], + "depends_on": null, + "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).", + "id": "component-config-wear-levelling-wear-levelling-library-sector-size-C:-esp-v6.0-esp-idf-components-wear_levelling-Kconfig-3", + "name": "WL_SECTOR_SIZE", + "title": "Wear Levelling library sector size", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "WL_SECTOR_SIZE", + "name": "WL_SECTOR_SIZE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "WL_SECTOR_MODE_PERF", + "name": "WL_SECTOR_MODE_PERF", + "range": null, + "title": "Performance", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "WL_SECTOR_MODE_SAFE", + "name": "WL_SECTOR_MODE_SAFE", + "range": null, + "title": "Safety", + "type": "bool" + } + ], + "depends_on": "WL_SECTOR_SIZE_512", + "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.", + "id": "component-config-wear-levelling-sector-store-mode-C:-esp-v6.0-esp-idf-components-wear_levelling-Kconfig-32", + "name": "WL_SECTOR_MODE", + "title": "Sector store mode", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "WL_SECTOR_MODE", + "name": "WL_SECTOR_MODE", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-wear-levelling-C:-esp-v6.0-esp-idf-components-wear_levelling-Kconfig-1", + "title": "Wear Levelling", + "type": "menu" + }, + { + "children": [], + "depends_on": "\"${IDF_BUILD_V2}\"", + "id": "component-config-configuration-for-components-not-included-in-the-build-C:-esp-v6.0-esp-idf-Kconfig-744", + "title": "Configuration for components not included in the build", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-C:-esp-v6.0-esp-idf-Kconfig-734", + "title": "Component config", + "type": "menu" + }, + { + "children": [], + "depends_on": "\"${IDF_BUILD_V2}\"", + "id": "project-configuration-for-components-not-included-in-the-build-C:-esp-v6.0-esp-idf-Kconfig-751", + "title": "Project configuration for components not included in the build", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "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\nCurrent experimental feature list:\n\n- CONFIG_ESPTOOLPY_FLASHFREQ_120M && CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_DTR\n- CONFIG_SPIRAM_SPEED_120M && CONFIG_SPIRAM_MODE_OCT\n- CONFIG_BOOTLOADER_CACHE_32BIT_ADDR_QUAD_FLASH\n- CONFIG_ESP_WIFI_EAP_TLS1_3\n- CONFIG_ESP_WIFI_ENABLE_ROAMING_APP\n- CONFIG_USB_HOST_EXT_PORT_RESET_ATTEMPTS\n- CONFIG_GDMA_ENABLE_WEIGHTED_ARBITRATION\n- CONFIG_I3C_MASTER_ENABLED", + "id": "IDF_EXPERIMENTAL_FEATURES", + "name": "IDF_EXPERIMENTAL_FEATURES", + "range": null, + "title": "Make experimental features visible", + "type": "bool" + } +] \ No newline at end of file diff --git a/build/config/sdkconfig.cmake b/build/config/sdkconfig.cmake new file mode 100644 index 0000000..069577a --- /dev/null +++ b/build/config/sdkconfig.cmake @@ -0,0 +1,1460 @@ +# +# Automatically generated file. DO NOT EDIT. +# Espressif IoT Development Framework (ESP-IDF) Configuration cmake include file +# +set(CONFIG_SOC_CAPS_ECO_VER_MAX "301") +set(CONFIG_SOC_ADC_SUPPORTED "y") +set(CONFIG_SOC_DAC_SUPPORTED "y") +set(CONFIG_SOC_UART_SUPPORTED "y") +set(CONFIG_SOC_MCPWM_SUPPORTED "y") +set(CONFIG_SOC_GPTIMER_SUPPORTED "y") +set(CONFIG_SOC_SDMMC_HOST_SUPPORTED "y") +set(CONFIG_SOC_BT_SUPPORTED "y") +set(CONFIG_SOC_PCNT_SUPPORTED "y") +set(CONFIG_SOC_PHY_SUPPORTED "y") +set(CONFIG_SOC_WIFI_SUPPORTED "y") +set(CONFIG_SOC_SDIO_SLAVE_SUPPORTED "y") +set(CONFIG_SOC_TWAI_SUPPORTED "y") +set(CONFIG_SOC_EFUSE_SUPPORTED "y") +set(CONFIG_SOC_EMAC_SUPPORTED "y") +set(CONFIG_SOC_ULP_SUPPORTED "y") +set(CONFIG_SOC_CCOMP_TIMER_SUPPORTED "y") +set(CONFIG_SOC_RTC_FAST_MEM_SUPPORTED "y") +set(CONFIG_SOC_RTC_SLOW_MEM_SUPPORTED "y") +set(CONFIG_SOC_RTC_MEM_SUPPORTED "y") +set(CONFIG_SOC_RTC_TIMER_V1_SUPPORTED "y") +set(CONFIG_SOC_I2S_SUPPORTED "y") +set(CONFIG_SOC_I2S_I80_LCD_SUPPORTED "y") +set(CONFIG_SOC_LCD_I80_SUPPORTED "y") +set(CONFIG_SOC_RMT_SUPPORTED "y") +set(CONFIG_SOC_SDM_SUPPORTED "y") +set(CONFIG_SOC_GPSPI_SUPPORTED "y") +set(CONFIG_SOC_LEDC_SUPPORTED "y") +set(CONFIG_SOC_I2C_SUPPORTED "y") +set(CONFIG_SOC_SUPPORT_COEXISTENCE "y") +set(CONFIG_SOC_AES_SUPPORTED "y") +set(CONFIG_SOC_MPI_SUPPORTED "y") +set(CONFIG_SOC_SHA_SUPPORTED "y") +set(CONFIG_SOC_FLASH_ENC_SUPPORTED "y") +set(CONFIG_SOC_SECURE_BOOT_SUPPORTED "y") +set(CONFIG_SOC_TOUCH_SENSOR_SUPPORTED "y") +set(CONFIG_SOC_BOD_SUPPORTED "y") +set(CONFIG_SOC_ULP_FSM_SUPPORTED "y") +set(CONFIG_SOC_CLK_TREE_SUPPORTED "y") +set(CONFIG_SOC_MPU_SUPPORTED "y") +set(CONFIG_SOC_WDT_SUPPORTED "y") +set(CONFIG_SOC_SPI_FLASH_SUPPORTED "y") +set(CONFIG_SOC_RNG_SUPPORTED "y") +set(CONFIG_SOC_LIGHT_SLEEP_SUPPORTED "y") +set(CONFIG_SOC_DEEP_SLEEP_SUPPORTED "y") +set(CONFIG_SOC_LP_PERIPH_SHARE_INTERRUPT "y") +set(CONFIG_SOC_PM_SUPPORTED "y") +set(CONFIG_SOC_DPORT_WORKAROUND_DIS_INTERRUPT_LVL "5") +set(CONFIG_SOC_XTAL_SUPPORT_26M "y") +set(CONFIG_SOC_XTAL_SUPPORT_40M "y") +set(CONFIG_SOC_ADC_RTC_CTRL_SUPPORTED "y") +set(CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED "y") +set(CONFIG_SOC_ADC_DMA_SUPPORTED "y") +set(CONFIG_SOC_ADC_PERIPH_NUM "2") +set(CONFIG_SOC_ADC_MAX_CHANNEL_NUM "10") +set(CONFIG_SOC_ADC_ATTEN_NUM "4") +set(CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM "2") +set(CONFIG_SOC_ADC_PATT_LEN_MAX "16") +set(CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH "9") +set(CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH "12") +set(CONFIG_SOC_ADC_DIGI_RESULT_BYTES "2") +set(CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV "4") +set(CONFIG_SOC_ADC_DIGI_MONITOR_NUM "0") +set(CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH "2000000") +set(CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW "20000") +set(CONFIG_SOC_ADC_RTC_MIN_BITWIDTH "9") +set(CONFIG_SOC_ADC_RTC_MAX_BITWIDTH "12") +set(CONFIG_SOC_ADC_SHARED_POWER "y") +set(CONFIG_SOC_BROWNOUT_RESET_SUPPORTED "y") +set(CONFIG_SOC_SHARED_IDCACHE_SUPPORTED "y") +set(CONFIG_SOC_IDCACHE_PER_CORE "y") +set(CONFIG_SOC_CPU_CORES_NUM "2") +set(CONFIG_SOC_CPU_INTR_NUM "32") +set(CONFIG_SOC_CPU_HAS_FPU "y") +set(CONFIG_SOC_HP_CPU_HAS_MULTIPLE_CORES "y") +set(CONFIG_SOC_CPU_BREAKPOINTS_NUM "2") +set(CONFIG_SOC_CPU_WATCHPOINTS_NUM "2") +set(CONFIG_SOC_CPU_WATCHPOINT_MAX_REGION_SIZE "0x40") +set(CONFIG_SOC_DAC_CHAN_NUM "2") +set(CONFIG_SOC_DAC_RESOLUTION "8") +set(CONFIG_SOC_DAC_DMA_16BIT_ALIGN "y") +set(CONFIG_SOC_GPIO_PORT "1") +set(CONFIG_SOC_GPIO_PIN_COUNT "40") +set(CONFIG_SOC_GPIO_VALID_GPIO_MASK "0xffffffffff") +set(CONFIG_SOC_GPIO_IN_RANGE_MAX "39") +set(CONFIG_SOC_GPIO_OUT_RANGE_MAX "33") +set(CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK "0xef0fea") +set(CONFIG_SOC_GPIO_CLOCKOUT_BY_IO_MUX "y") +set(CONFIG_SOC_GPIO_CLOCKOUT_CHANNEL_NUM "3") +set(CONFIG_SOC_I2C_NUM "2") +set(CONFIG_SOC_HP_I2C_NUM "2") +set(CONFIG_SOC_I2C_SUPPORT_APB "y") +set(CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR "y") +set(CONFIG_SOC_I2C_SUPPORT_SLAVE "y") +set(CONFIG_SOC_I2C_STOP_INDEPENDENT "y") +set(CONFIG_SOC_I2S_HW_VERSION_1 "y") +set(CONFIG_SOC_I2S_SUPPORTS_APLL "y") +set(CONFIG_SOC_I2S_SUPPORTS_PDM "y") +set(CONFIG_SOC_I2S_SUPPORTS_PDM_TX "y") +set(CONFIG_SOC_I2S_SUPPORTS_PCM2PDM "y") +set(CONFIG_SOC_I2S_SUPPORTS_PDM_RX "y") +set(CONFIG_SOC_I2S_SUPPORTS_PDM2PCM "y") +set(CONFIG_SOC_I2S_PDM_MAX_TX_LINES "1") +set(CONFIG_SOC_I2S_PDM_MAX_RX_LINES "1") +set(CONFIG_SOC_LEDC_HAS_TIMER_SPECIFIC_MUX "y") +set(CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK "y") +set(CONFIG_SOC_LEDC_SUPPORT_REF_TICK "y") +set(CONFIG_SOC_LEDC_SUPPORT_HS_MODE "y") +set(CONFIG_SOC_LEDC_TIMER_NUM "4") +set(CONFIG_SOC_LEDC_CHANNEL_NUM "8") +set(CONFIG_SOC_LEDC_TIMER_BIT_WIDTH "20") +set(CONFIG_SOC_MMU_PERIPH_NUM "2") +set(CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM "3") +set(CONFIG_SOC_MPU_MIN_REGION_SIZE "0x20000000") +set(CONFIG_SOC_MPU_REGIONS_MAX_NUM "8") +set(CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL "64") +set(CONFIG_SOC_RTCIO_PIN_COUNT "18") +set(CONFIG_SOC_RTCIO_INPUT_OUTPUT_SUPPORTED "y") +set(CONFIG_SOC_RTCIO_HOLD_SUPPORTED "y") +set(CONFIG_SOC_RTCIO_WAKE_SUPPORTED "y") +set(CONFIG_SOC_SPI_HD_BOTH_INOUT_SUPPORTED "y") +set(CONFIG_SOC_SPI_AS_CS_SUPPORTED "y") +set(CONFIG_SOC_SPI_PERIPH_NUM "3") +set(CONFIG_SOC_SPI_DMA_CHAN_NUM "2") +set(CONFIG_SOC_SPI_MAX_CS_NUM "3") +set(CONFIG_SOC_SPI_SUPPORT_CLK_APB "y") +set(CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE "64") +set(CONFIG_SOC_SPI_MAX_PRE_DIVIDER "8192") +set(CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED "y") +set(CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED "y") +set(CONFIG_SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED "y") +set(CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED "y") +set(CONFIG_SOC_LP_TIMER_BIT_WIDTH_LO "32") +set(CONFIG_SOC_LP_TIMER_BIT_WIDTH_HI "16") +set(CONFIG_SOC_TOUCH_SENSOR_VERSION "1") +set(CONFIG_SOC_TOUCH_MIN_CHAN_ID "0") +set(CONFIG_SOC_TOUCH_MAX_CHAN_ID "9") +set(CONFIG_SOC_TOUCH_SUPPORT_SLEEP_WAKEUP "y") +set(CONFIG_SOC_TOUCH_SAMPLE_CFG_NUM "1") +set(CONFIG_SOC_TWAI_CONTROLLER_NUM "1") +set(CONFIG_SOC_TWAI_MASK_FILTER_NUM "1") +set(CONFIG_SOC_UART_NUM "3") +set(CONFIG_SOC_UART_HP_NUM "3") +set(CONFIG_SOC_UART_SUPPORT_APB_CLK "y") +set(CONFIG_SOC_UART_SUPPORT_REF_TICK "y") +set(CONFIG_SOC_UART_FIFO_LEN "128") +set(CONFIG_SOC_UART_BITRATE_MAX "5000000") +set(CONFIG_SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE "y") +set(CONFIG_SOC_SPIRAM_SUPPORTED "y") +set(CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE "y") +set(CONFIG_SOC_SHA_SUPPORT_PARALLEL_ENG "y") +set(CONFIG_SOC_SHA_ENDIANNESS_BE "y") +set(CONFIG_SOC_SHA_SUPPORT_SHA1 "y") +set(CONFIG_SOC_SHA_SUPPORT_SHA256 "y") +set(CONFIG_SOC_SHA_SUPPORT_SHA384 "y") +set(CONFIG_SOC_SHA_SUPPORT_SHA512 "y") +set(CONFIG_SOC_MPI_MEM_BLOCKS_NUM "4") +set(CONFIG_SOC_MPI_OPERATIONS_NUM "1") +set(CONFIG_SOC_RSA_MAX_BIT_LEN "4096") +set(CONFIG_SOC_AES_SUPPORT_AES_128 "y") +set(CONFIG_SOC_AES_SUPPORT_AES_192 "y") +set(CONFIG_SOC_AES_SUPPORT_AES_256 "y") +set(CONFIG_SOC_SECURE_BOOT_V1 "y") +set(CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS "1") +set(CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX "32") +set(CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE "21") +set(CONFIG_SOC_PM_SUPPORT_EXT0_WAKEUP "y") +set(CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP "y") +set(CONFIG_SOC_PM_SUPPORT_EXT_WAKEUP "y") +set(CONFIG_SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP "y") +set(CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD "y") +set(CONFIG_SOC_PM_SUPPORT_RTC_FAST_MEM_PD "y") +set(CONFIG_SOC_PM_SUPPORT_RTC_SLOW_MEM_PD "y") +set(CONFIG_SOC_PM_SUPPORT_RC_FAST_PD "y") +set(CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD "y") +set(CONFIG_SOC_PM_SUPPORT_MODEM_PD "y") +set(CONFIG_SOC_CONFIGURABLE_VDDSDIO_SUPPORTED "y") +set(CONFIG_SOC_PM_MODEM_PD_BY_SW "y") +set(CONFIG_SOC_CLK_APLL_SUPPORTED "y") +set(CONFIG_SOC_CLK_RC_FAST_D256_SUPPORTED "y") +set(CONFIG_SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256 "y") +set(CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION "y") +set(CONFIG_SOC_CLK_XTAL32K_SUPPORTED "y") +set(CONFIG_SOC_CLK_LP_FAST_SUPPORT_XTAL_D4 "y") +set(CONFIG_SOC_SDMMC_USE_IOMUX "y") +set(CONFIG_SOC_SDMMC_NUM_SLOTS "2") +set(CONFIG_SOC_SDMMC_DATA_WIDTH_MAX "8") +set(CONFIG_SOC_WIFI_WAPI_SUPPORT "y") +set(CONFIG_SOC_WIFI_CSI_SUPPORT "y") +set(CONFIG_SOC_WIFI_MESH_SUPPORT "y") +set(CONFIG_SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW "y") +set(CONFIG_SOC_WIFI_NAN_SUPPORT "y") +set(CONFIG_SOC_BLE_SUPPORTED "y") +set(CONFIG_SOC_BLE_MESH_SUPPORTED "y") +set(CONFIG_SOC_BT_CLASSIC_SUPPORTED "y") +set(CONFIG_SOC_BLUFI_SUPPORTED "y") +set(CONFIG_SOC_BT_H2C_ENC_KEY_CTRL_ENH_VSC_SUPPORTED "y") +set(CONFIG_SOC_BLE_MULTI_CONN_OPTIMIZATION "y") +set(CONFIG_SOC_ULP_HAS_ADC "y") +set(CONFIG_SOC_PHY_COMBO_MODULE "y") +set(CONFIG_SOC_EMAC_RMII_CLK_OUT_INTERNAL_LOOPBACK "y") +set(CONFIG_IDF_CMAKE "y") +set(CONFIG_IDF_TOOLCHAIN "gcc") +set(CONFIG_IDF_TOOLCHAIN_GCC "y") +set(CONFIG_IDF_TARGET_ARCH_XTENSA "y") +set(CONFIG_IDF_TARGET_ARCH "xtensa") +set(CONFIG_IDF_TARGET "esp32") +set(CONFIG_IDF_INIT_VERSION "6.0.0") +set(CONFIG_IDF_TARGET_ESP32 "y") +set(CONFIG_IDF_FIRMWARE_CHIP_ID "0x0") +set(CONFIG_APP_BUILD_TYPE_APP_2NDBOOT "y") +set(CONFIG_APP_BUILD_TYPE_RAM "") +set(CONFIG_APP_BUILD_GENERATE_BINARIES "y") +set(CONFIG_APP_BUILD_BOOTLOADER "y") +set(CONFIG_APP_BUILD_USE_FLASH_SECTIONS "y") +set(CONFIG_APP_REPRODUCIBLE_BUILD "") +set(CONFIG_APP_NO_BLOBS "") +set(CONFIG_APP_COMPATIBLE_PRE_V2_1_BOOTLOADERS "") +set(CONFIG_APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS "") +set(CONFIG_BOOTLOADER_COMPILE_TIME_DATE "y") +set(CONFIG_BOOTLOADER_PROJECT_VER "1") +set(CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE "") +set(CONFIG_BOOTLOADER_OFFSET_IN_FLASH "0x1000") +set(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE "y") +set(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG "") +set(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF "") +set(CONFIG_BOOTLOADER_LOG_VERSION_1 "y") +set(CONFIG_BOOTLOADER_LOG_VERSION "1") +set(CONFIG_BOOTLOADER_LOG_LEVEL_NONE "") +set(CONFIG_BOOTLOADER_LOG_LEVEL_ERROR "") +set(CONFIG_BOOTLOADER_LOG_LEVEL_WARN "") +set(CONFIG_BOOTLOADER_LOG_LEVEL_INFO "y") +set(CONFIG_BOOTLOADER_LOG_LEVEL_DEBUG "") +set(CONFIG_BOOTLOADER_LOG_LEVEL_VERBOSE "") +set(CONFIG_BOOTLOADER_LOG_LEVEL "3") +set(CONFIG_BOOTLOADER_LOG_COLORS "") +set(CONFIG_BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS "y") +set(CONFIG_BOOTLOADER_LOG_MODE_TEXT_EN "y") +set(CONFIG_BOOTLOADER_LOG_MODE_TEXT "y") +set(CONFIG_BOOTLOADER_CPU_CLK_FREQ_MHZ "80") +set(CONFIG_BOOTLOADER_FLASH_DC_AWARE "") +set(CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT "y") +set(CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_8V "") +set(CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V "y") +set(CONFIG_BOOTLOADER_FACTORY_RESET "") +set(CONFIG_BOOTLOADER_APP_TEST "") +set(CONFIG_BOOTLOADER_REGION_PROTECTION_ENABLE "y") +set(CONFIG_BOOTLOADER_WDT_ENABLE "y") +set(CONFIG_BOOTLOADER_WDT_DISABLE_IN_USER_CODE "") +set(CONFIG_BOOTLOADER_WDT_TIME_MS "9000") +set(CONFIG_BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP "") +set(CONFIG_BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON "") +set(CONFIG_BOOTLOADER_SKIP_VALIDATE_ALWAYS "") +set(CONFIG_BOOTLOADER_RESERVE_RTC_SIZE "0x0") +set(CONFIG_BOOTLOADER_CUSTOM_RESERVE_RTC "") +set(CONFIG_SECURE_BOOT_V1_SUPPORTED "y") +set(CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT "") +set(CONFIG_SECURE_BOOT "") +set(CONFIG_SECURE_FLASH_ENC_ENABLED "") +set(CONFIG_APP_COMPILE_TIME_DATE "y") +set(CONFIG_APP_EXCLUDE_PROJECT_VER_VAR "") +set(CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR "") +set(CONFIG_APP_PROJECT_VER_FROM_CONFIG "") +set(CONFIG_APP_RETRIEVE_LEN_ELF_SHA "9") +set(CONFIG_ESP_ROM_HAS_CRC_LE "y") +set(CONFIG_ESP_ROM_HAS_CRC_BE "y") +set(CONFIG_ESP_ROM_HAS_MZ_CRC32 "y") +set(CONFIG_ESP_ROM_HAS_JPEG_DECODE "y") +set(CONFIG_ESP_ROM_HAS_UART_BUF_SWITCH "y") +set(CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND "y") +set(CONFIG_ESP_ROM_HAS_NEWLIB "y") +set(CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT "y") +set(CONFIG_ESP_ROM_HAS_NEWLIB_32BIT_TIME "y") +set(CONFIG_ESP_ROM_HAS_SW_FLOAT "y") +set(CONFIG_ESP_ROM_USB_OTG_NUM "-1") +set(CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM "-1") +set(CONFIG_ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB "y") +set(CONFIG_ESP_ROM_HAS_OUTPUT_PUTC_FUNC "y") +set(CONFIG_ESPTOOLPY_NO_STUB "") +set(CONFIG_ESPTOOLPY_FLASHMODE_QIO "") +set(CONFIG_ESPTOOLPY_FLASHMODE_QOUT "") +set(CONFIG_ESPTOOLPY_FLASHMODE_DIO "y") +set(CONFIG_ESPTOOLPY_FLASHMODE_DOUT "") +set(CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR "y") +set(CONFIG_ESPTOOLPY_FLASHMODE "dio") +set(CONFIG_ESPTOOLPY_FLASHFREQ_80M "") +set(CONFIG_ESPTOOLPY_FLASHFREQ_40M "y") +set(CONFIG_ESPTOOLPY_FLASHFREQ_26M "") +set(CONFIG_ESPTOOLPY_FLASHFREQ_20M "") +set(CONFIG_ESPTOOLPY_FLASHFREQ "40m") +set(CONFIG_ESPTOOLPY_FLASHSIZE_1MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_2MB "y") +set(CONFIG_ESPTOOLPY_FLASHSIZE_4MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_8MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_16MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_32MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_64MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_128MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE "2MB") +set(CONFIG_ESPTOOLPY_HEADER_FLASHSIZE_UPDATE "") +set(CONFIG_ESPTOOLPY_BEFORE_RESET "y") +set(CONFIG_ESPTOOLPY_BEFORE_NORESET "") +set(CONFIG_ESPTOOLPY_BEFORE "default-reset") +set(CONFIG_ESPTOOLPY_AFTER_RESET "y") +set(CONFIG_ESPTOOLPY_AFTER_NORESET "") +set(CONFIG_ESPTOOLPY_AFTER "hard-reset") +set(CONFIG_ESPTOOLPY_MONITOR_BAUD "115200") +set(CONFIG_PARTITION_TABLE_SINGLE_APP "") +set(CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE "") +set(CONFIG_PARTITION_TABLE_TWO_OTA "") +set(CONFIG_PARTITION_TABLE_TWO_OTA_LARGE "") +set(CONFIG_PARTITION_TABLE_CUSTOM "y") +set(CONFIG_PARTITION_TABLE_CUSTOM_FILENAME "partitions.csv") +set(CONFIG_PARTITION_TABLE_FILENAME "partitions.csv") +set(CONFIG_PARTITION_TABLE_OFFSET "0x8000") +set(CONFIG_PARTITION_TABLE_MD5 "y") +set(CONFIG_COMPILER_OPTIMIZATION_DEBUG "y") +set(CONFIG_COMPILER_OPTIMIZATION_SIZE "") +set(CONFIG_COMPILER_OPTIMIZATION_PERF "") +set(CONFIG_COMPILER_OPTIMIZATION_NONE "") +set(CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE "y") +set(CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT "") +set(CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE "") +set(CONFIG_COMPILER_ASSERT_NDEBUG_EVALUATE "") +set(CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB "y") +set(CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL "2") +set(CONFIG_COMPILER_OPTIMIZATION_CHECKS_SILENT "") +set(CONFIG_COMPILER_HIDE_PATHS_MACROS "y") +set(CONFIG_COMPILER_CXX_EXCEPTIONS "") +set(CONFIG_COMPILER_CXX_RTTI "") +set(CONFIG_COMPILER_STACK_CHECK_MODE_NONE "y") +set(CONFIG_COMPILER_STACK_CHECK_MODE_NORM "") +set(CONFIG_COMPILER_STACK_CHECK_MODE_STRONG "") +set(CONFIG_COMPILER_STACK_CHECK_MODE_ALL "") +set(CONFIG_COMPILER_NO_MERGE_CONSTANTS "") +set(CONFIG_COMPILER_WARN_WRITE_STRINGS "") +set(CONFIG_COMPILER_DISABLE_DEFAULT_ERRORS "") +set(CONFIG_COMPILER_DISABLE_GCC12_WARNINGS "") +set(CONFIG_COMPILER_DISABLE_GCC13_WARNINGS "") +set(CONFIG_COMPILER_DISABLE_GCC14_WARNINGS "") +set(CONFIG_COMPILER_DISABLE_GCC15_WARNINGS "") +set(CONFIG_COMPILER_DUMP_RTL_FILES "") +set(CONFIG_COMPILER_RT_LIB_GCCLIB "y") +set(CONFIG_COMPILER_RT_LIB_NAME "gcc") +set(CONFIG_COMPILER_ORPHAN_SECTIONS_ERROR "y") +set(CONFIG_COMPILER_ORPHAN_SECTIONS_WARNING "") +set(CONFIG_COMPILER_ORPHAN_SECTIONS_PLACE "") +set(CONFIG_COMPILER_STATIC_ANALYZER "") +set(CONFIG_COMPILER_CXX_GLIBCXX_CONSTEXPR_NO_CHANGE "y") +set(CONFIG_COMPILER_CXX_GLIBCXX_CONSTEXPR_COLD_CONSTEXPR "") +set(CONFIG_COMPILER_CXX_GLIBCXX_CONSTEXPR_COLD "") +set(CONFIG_BT_ENABLED "") +set(CONFIG_BLE_LOG_ENABLED "") +set(CONFIG_BT_BLE_LOG_SPI_OUT_ENABLED "") +set(CONFIG_BT_BLE_LOG_UHCI_OUT_ENABLED "") +set(CONFIG_BT_LE_USED_MEM_STATISTICS_ENABLED "") +set(CONFIG_CONSOLE_SORTED_HELP "") +set(CONFIG_TWAI_ISR_IN_IRAM_LEGACY "") +set(CONFIG_TWAI_SUPPRESS_DEPRECATE_WARN "") +set(CONFIG_TWAI_SKIP_LEGACY_CONFLICT_CHECK "") +set(CONFIG_I2C_SUPPRESS_DEPRECATE_WARN "") +set(CONFIG_I2C_SKIP_LEGACY_CONFLICT_CHECK "") +set(CONFIG_TOUCH_SUPPRESS_DEPRECATE_WARN "") +set(CONFIG_TOUCH_SKIP_LEGACY_CONFLICT_CHECK "") +set(CONFIG_EFUSE_CUSTOM_TABLE "") +set(CONFIG_EFUSE_VIRTUAL "") +set(CONFIG_EFUSE_CODE_SCHEME_COMPAT_NONE "") +set(CONFIG_EFUSE_CODE_SCHEME_COMPAT_3_4 "y") +set(CONFIG_EFUSE_CODE_SCHEME_COMPAT_REPEAT "") +set(CONFIG_EFUSE_MAX_BLK_LEN "192") +set(CONFIG_ESP_TLS_USING_MBEDTLS "y") +set(CONFIG_ESP_TLS_CUSTOM_STACK "") +set(CONFIG_ESP_TLS_USE_SECURE_ELEMENT "") +set(CONFIG_ESP_TLS_CLIENT_SESSION_TICKETS "") +set(CONFIG_ESP_TLS_SERVER_SESSION_TICKETS "") +set(CONFIG_ESP_TLS_SERVER_CERT_SELECT_HOOK "") +set(CONFIG_ESP_TLS_SERVER_MIN_AUTH_MODE_OPTIONAL "") +set(CONFIG_ESP_TLS_PSK_VERIFICATION "") +set(CONFIG_ESP_TLS_INSECURE "") +set(CONFIG_ESP_TLS_DYN_BUF_STRATEGY_SUPPORTED "y") +set(CONFIG_ADC_ONESHOT_CTRL_FUNC_IN_IRAM "") +set(CONFIG_ADC_CONTINUOUS_ISR_IRAM_SAFE "") +set(CONFIG_ADC_CALI_EFUSE_TP_ENABLE "y") +set(CONFIG_ADC_CALI_EFUSE_VREF_ENABLE "y") +set(CONFIG_ADC_CALI_LUT_ENABLE "y") +set(CONFIG_ADC_DISABLE_DAC_OUTPUT "y") +set(CONFIG_ADC_ENABLE_DEBUG_LOG "") +set(CONFIG_ESP_COEX_ENABLED "y") +set(CONFIG_ESP_COEX_GPIO_DEBUG "") +set(CONFIG_ESP_ERR_TO_NAME_LOOKUP "y") +set(CONFIG_DAC_CTRL_FUNC_IN_IRAM "") +set(CONFIG_DAC_ISR_IRAM_SAFE "") +set(CONFIG_DAC_ENABLE_DEBUG_LOG "") +set(CONFIG_DAC_DMA_AUTO_16BIT_ALIGN "y") +set(CONFIG_GPIO_CTRL_FUNC_IN_IRAM "") +set(CONFIG_GPTIMER_ISR_HANDLER_IN_IRAM "y") +set(CONFIG_GPTIMER_CTRL_FUNC_IN_IRAM "") +set(CONFIG_GPTIMER_ISR_CACHE_SAFE "") +set(CONFIG_GPTIMER_OBJ_CACHE_SAFE "y") +set(CONFIG_GPTIMER_ENABLE_DEBUG_LOG "") +set(CONFIG_I2C_ISR_IRAM_SAFE "") +set(CONFIG_I2C_ENABLE_DEBUG_LOG "") +set(CONFIG_I2C_MASTER_ISR_HANDLER_IN_IRAM "y") +set(CONFIG_I2S_ISR_IRAM_SAFE "") +set(CONFIG_I2S_CTRL_FUNC_IN_IRAM "") +set(CONFIG_I2S_ENABLE_DEBUG_LOG "") +set(CONFIG_I3C_MASTER_ISR_CACHE_SAFE "") +set(CONFIG_I3C_MASTER_ENABLE_DEBUG_LOG "") +set(CONFIG_I3C_MASTER_ISR_HANDLER_IN_IRAM "") +set(CONFIG_LEDC_CTRL_FUNC_IN_IRAM "") +set(CONFIG_MCPWM_ISR_HANDLER_IN_IRAM "y") +set(CONFIG_MCPWM_ISR_CACHE_SAFE "") +set(CONFIG_MCPWM_CTRL_FUNC_IN_IRAM "") +set(CONFIG_MCPWM_OBJ_CACHE_SAFE "y") +set(CONFIG_MCPWM_ENABLE_DEBUG_LOG "") +set(CONFIG_PCNT_CTRL_FUNC_IN_IRAM "") +set(CONFIG_PCNT_ISR_IRAM_SAFE "") +set(CONFIG_PCNT_ENABLE_DEBUG_LOG "") +set(CONFIG_RMT_ENCODER_FUNC_IN_IRAM "y") +set(CONFIG_RMT_TX_ISR_HANDLER_IN_IRAM "y") +set(CONFIG_RMT_RX_ISR_HANDLER_IN_IRAM "y") +set(CONFIG_RMT_RECV_FUNC_IN_IRAM "") +set(CONFIG_RMT_TX_ISR_CACHE_SAFE "") +set(CONFIG_RMT_RX_ISR_CACHE_SAFE "") +set(CONFIG_RMT_OBJ_CACHE_SAFE "y") +set(CONFIG_RMT_ENABLE_DEBUG_LOG "") +set(CONFIG_RMT_ISR_IRAM_SAFE "") +set(CONFIG_SDM_CTRL_FUNC_IN_IRAM "") +set(CONFIG_SDM_ENABLE_DEBUG_LOG "") +set(CONFIG_SD_HOST_SDMMC_ISR_CACHE_SAFE "") +set(CONFIG_SPI_MASTER_ISR_IN_IRAM "y") +set(CONFIG_SPI_SLAVE_IN_IRAM "") +set(CONFIG_SPI_SLAVE_ISR_IN_IRAM "y") +set(CONFIG_TOUCH_CTRL_FUNC_IN_IRAM "") +set(CONFIG_TOUCH_ISR_IRAM_SAFE "") +set(CONFIG_TOUCH_ENABLE_DEBUG_LOG "") +set(CONFIG_TOUCH_SKIP_FSM_CHECK "") +set(CONFIG_TWAI_ISR_IN_IRAM "") +set(CONFIG_TWAI_IO_FUNC_IN_IRAM "") +set(CONFIG_TWAI_ISR_CACHE_SAFE "") +set(CONFIG_TWAI_ENABLE_DEBUG_LOG "") +set(CONFIG_UART_ISR_IN_IRAM "") +set(CONFIG_UHCI_ISR_HANDLER_IN_IRAM "") +set(CONFIG_UHCI_ISR_CACHE_SAFE "") +set(CONFIG_UHCI_ENABLE_DEBUG_LOG "") +set(CONFIG_ETH_ENABLED "y") +set(CONFIG_ETH_USE_ESP32_EMAC "y") +set(CONFIG_ETH_DMA_BUFFER_SIZE "512") +set(CONFIG_ETH_DMA_RX_BUFFER_NUM "10") +set(CONFIG_ETH_DMA_TX_BUFFER_NUM "10") +set(CONFIG_ETH_IRAM_OPTIMIZATION "") +set(CONFIG_ETH_USE_SPI_ETHERNET "y") +set(CONFIG_ETH_USE_OPENETH "") +set(CONFIG_ETH_TRANSMIT_MUTEX "") +set(CONFIG_ESP_EVENT_LOOP_PROFILING "") +set(CONFIG_ESP_EVENT_POST_FROM_ISR "y") +set(CONFIG_ESP_EVENT_POST_FROM_IRAM_ISR "y") +set(CONFIG_ESP_GDBSTUB_ENABLED "y") +set(CONFIG_ESP_SYSTEM_GDBSTUB_RUNTIME "") +set(CONFIG_ESP_GDBSTUB_SUPPORT_TASKS "y") +set(CONFIG_ESP_GDBSTUB_MAX_TASKS "32") +set(CONFIG_ESPHID_TASK_SIZE_BT "2048") +set(CONFIG_ESPHID_TASK_SIZE_BLE "4096") +set(CONFIG_ESP_HTTP_CLIENT_ENABLE_HTTPS "y") +set(CONFIG_ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH "") +set(CONFIG_ESP_HTTP_CLIENT_ENABLE_DIGEST_AUTH "") +set(CONFIG_ESP_HTTP_CLIENT_ENABLE_CUSTOM_TRANSPORT "") +set(CONFIG_ESP_HTTP_CLIENT_ENABLE_GET_CONTENT_RANGE "") +set(CONFIG_ESP_HTTP_CLIENT_EVENT_POST_TIMEOUT "2000") +set(CONFIG_HTTPD_MAX_REQ_HDR_LEN "1024") +set(CONFIG_HTTPD_MAX_URI_LEN "512") +set(CONFIG_HTTPD_ERR_RESP_NO_DELAY "y") +set(CONFIG_HTTPD_PURGE_BUF_LEN "32") +set(CONFIG_HTTPD_LOG_PURGE_DATA "") +set(CONFIG_HTTPD_WS_SUPPORT "") +set(CONFIG_HTTPD_QUEUE_WORK_BLOCKING "") +set(CONFIG_HTTPD_SERVER_EVENT_POST_TIMEOUT "2000") +set(CONFIG_ESP_HTTPS_OTA_DECRYPT_CB "") +set(CONFIG_ESP_HTTPS_OTA_ALLOW_HTTP "") +set(CONFIG_ESP_HTTPS_OTA_EVENT_POST_TIMEOUT "2000") +set(CONFIG_ESP_HTTPS_OTA_ENABLE_PARTIAL_DOWNLOAD "") +set(CONFIG_ESP_HTTPS_SERVER_ENABLE "") +set(CONFIG_ESP_HTTPS_SERVER_EVENT_POST_TIMEOUT "2000") +set(CONFIG_ESP_HTTPS_SERVER_CERT_SELECT_HOOK "") +set(CONFIG_ESP_HW_SUPPORT_FUNC_IN_IRAM "y") +set(CONFIG_ESP32_REV_MIN_0 "y") +set(CONFIG_ESP32_REV_MIN_1 "") +set(CONFIG_ESP32_REV_MIN_1_1 "") +set(CONFIG_ESP32_REV_MIN_2 "") +set(CONFIG_ESP32_REV_MIN_3 "") +set(CONFIG_ESP32_REV_MIN_3_1 "") +set(CONFIG_ESP32_REV_MIN "0") +set(CONFIG_ESP32_REV_MIN_FULL "0") +set(CONFIG_ESP_REV_MIN_FULL "0") +set(CONFIG_ESP32_REV_MAX_FULL "399") +set(CONFIG_ESP_REV_MAX_FULL "399") +set(CONFIG_ESP_EFUSE_BLOCK_REV_MIN_FULL "0") +set(CONFIG_ESP_EFUSE_BLOCK_REV_MAX_FULL "99") +set(CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA "y") +set(CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP "y") +set(CONFIG_ESP_MAC_ADDR_UNIVERSE_BT "y") +set(CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH "y") +set(CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR "y") +set(CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES "4") +set(CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_TWO "") +set(CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR "y") +set(CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES "4") +set(CONFIG_ESP_MAC_IGNORE_MAC_CRC_ERROR "") +set(CONFIG_ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC "") +set(CONFIG_ESP_SLEEP_POWER_DOWN_FLASH "") +set(CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND "y") +set(CONFIG_ESP_SLEEP_MSPI_NEED_ALL_IO_PU "") +set(CONFIG_ESP_SLEEP_RTC_BUS_ISO_WORKAROUND "y") +set(CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND "") +set(CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY "2000") +set(CONFIG_ESP_SLEEP_CACHE_SAFE_ASSERTION "") +set(CONFIG_ESP_SLEEP_DEBUG "") +set(CONFIG_ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS "y") +set(CONFIG_RTC_CLK_SRC_INT_RC "y") +set(CONFIG_RTC_CLK_SRC_EXT_CRYS "") +set(CONFIG_RTC_CLK_SRC_EXT_OSC "") +set(CONFIG_RTC_CLK_SRC_INT_8MD256 "") +set(CONFIG_RTC_CLK_CAL_CYCLES "1024") +set(CONFIG_RTC_CLK_FUNC_IN_IRAM "y") +set(CONFIG_RTC_TIME_FUNC_IN_IRAM "y") +set(CONFIG_ESP_PERIPH_CTRL_FUNC_IN_IRAM "y") +set(CONFIG_ESP_REGI2C_CTRL_FUNC_IN_IRAM "y") +set(CONFIG_XTAL_FREQ_26 "") +set(CONFIG_XTAL_FREQ_32 "") +set(CONFIG_XTAL_FREQ_40 "y") +set(CONFIG_XTAL_FREQ_AUTO "") +set(CONFIG_XTAL_FREQ "40") +set(CONFIG_ESP_BROWNOUT_DET "y") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_0 "y") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_1 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_2 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_3 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_4 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_5 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_6 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7 "") +set(CONFIG_ESP_BROWNOUT_DET_LVL "0") +set(CONFIG_ESP_BROWNOUT_USE_INTR "y") +set(CONFIG_ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM "y") +set(CONFIG_ESP_INTR_IN_IRAM "y") +set(CONFIG_LCD_ENABLE_DEBUG_LOG "") +set(CONFIG_LIBC_NEWLIB "") +set(CONFIG_LIBC_PICOLIBC "y") +set(CONFIG_LIBC_PICOLIBC_NEWLIB_COMPATIBILITY "y") +set(CONFIG_LIBC_MISC_IN_IRAM "y") +set(CONFIG_LIBC_LOCKS_PLACE_IN_IRAM "y") +set(CONFIG_LIBC_STDOUT_LINE_ENDING_CRLF "y") +set(CONFIG_LIBC_STDOUT_LINE_ENDING_LF "") +set(CONFIG_LIBC_STDOUT_LINE_ENDING_CR "") +set(CONFIG_LIBC_STDIN_LINE_ENDING_CRLF "") +set(CONFIG_LIBC_STDIN_LINE_ENDING_LF "") +set(CONFIG_LIBC_STDIN_LINE_ENDING_CR "y") +set(CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT "y") +set(CONFIG_LIBC_TIME_SYSCALL_USE_RTC "") +set(CONFIG_LIBC_TIME_SYSCALL_USE_HRT "") +set(CONFIG_LIBC_TIME_SYSCALL_USE_NONE "") +set(CONFIG_LIBC_ASSERT_BUFFER_SIZE "200") +set(CONFIG_ESP_NETIF_LOST_IP_TIMER_ENABLE "y") +set(CONFIG_ESP_NETIF_IP_LOST_TIMER_INTERVAL "120") +set(CONFIG_ESP_NETIF_PROVIDE_CUSTOM_IMPLEMENTATION "") +set(CONFIG_ESP_NETIF_TCPIP_LWIP "y") +set(CONFIG_ESP_NETIF_LOOPBACK "") +set(CONFIG_ESP_NETIF_USES_TCPIP_WITH_BSD_API "y") +set(CONFIG_ESP_NETIF_REPORT_DATA_TRAFFIC "y") +set(CONFIG_ESP_NETIF_RECEIVE_REPORT_ERRORS "y") +set(CONFIG_ESP_NETIF_L2_TAP "") +set(CONFIG_ESP_NETIF_BRIDGE_EN "") +set(CONFIG_ESP_NETIF_SET_DNS_PER_DEFAULT_NETIF "") +set(CONFIG_ESP_PHY_ENABLED "y") +set(CONFIG_ESP_PHY_CALIBRATION_AND_DATA_STORAGE "y") +set(CONFIG_ESP_PHY_INIT_DATA_IN_PARTITION "") +set(CONFIG_ESP_PHY_MAX_WIFI_TX_POWER "20") +set(CONFIG_ESP_PHY_MAX_TX_POWER "20") +set(CONFIG_ESP_PHY_REDUCE_TX_POWER "") +set(CONFIG_ESP_PHY_ENABLE_CERT_TEST "") +set(CONFIG_ESP_PHY_RF_CAL_PARTIAL "y") +set(CONFIG_ESP_PHY_RF_CAL_NONE "") +set(CONFIG_ESP_PHY_RF_CAL_FULL "") +set(CONFIG_ESP_PHY_CALIBRATION_MODE "0") +set(CONFIG_ESP_PHY_PLL_TRACK_PERIOD_MS "1000") +set(CONFIG_ESP_PHY_PLL_TRACK_DEBUG "") +set(CONFIG_ESP_PHY_RECORD_USED_TIME "") +set(CONFIG_ESP_PHY_IRAM_OPT "y") +set(CONFIG_ESP_PHY_DEBUG "") +set(CONFIG_PM_SLEEP_FUNC_IN_IRAM "") +set(CONFIG_PM_ENABLE "") +set(CONFIG_PM_SLP_IRAM_OPT "") +set(CONFIG_SPIRAM "") +set(CONFIG_RINGBUF_IN_IRAM "") +set(CONFIG_RINGBUF_PLACE_ISR_FUNCTIONS_INTO_FLASH "") +set(CONFIG_ESP_ROM_PRINT_IN_IRAM "y") +set(CONFIG_ESP_CONSOLE_UART_DEFAULT "y") +set(CONFIG_ESP_CONSOLE_UART_CUSTOM "") +set(CONFIG_ESP_CONSOLE_NONE "") +set(CONFIG_ESP_CONSOLE_UART "y") +set(CONFIG_ESP_CONSOLE_UART_NUM "0") +set(CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM "0") +set(CONFIG_ESP_CONSOLE_UART_BAUDRATE "115200") +set(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_80 "") +set(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160 "y") +set(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240 "") +set(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ "160") +set(CONFIG_ESP32_USE_FIXED_STATIC_RAM_SIZE "") +set(CONFIG_ESP_SYSTEM_ESP32_SRAM1_REGION_AS_IRAM "") +set(CONFIG_ESP32_TRAX "") +set(CONFIG_ESP32_TRACEMEM_RESERVE_DRAM "0x0") +set(CONFIG_ESP_SYSTEM_IN_IRAM "y") +set(CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT "") +set(CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT "y") +set(CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT "") +set(CONFIG_ESP_SYSTEM_PANIC_GDBSTUB "") +set(CONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS "0") +set(CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE "32") +set(CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE "2304") +set(CONFIG_ESP_MAIN_TASK_STACK_SIZE "3584") +set(CONFIG_ESP_MAIN_TASK_AFFINITY_CPU0 "y") +set(CONFIG_ESP_MAIN_TASK_AFFINITY_CPU1 "") +set(CONFIG_ESP_MAIN_TASK_AFFINITY_NO_AFFINITY "") +set(CONFIG_ESP_MAIN_TASK_AFFINITY "0x0") +set(CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE "2048") +set(CONFIG_ESP_INT_WDT "y") +set(CONFIG_ESP_INT_WDT_TIMEOUT_MS "300") +set(CONFIG_ESP_INT_WDT_CHECK_CPU1 "y") +set(CONFIG_ESP_TASK_WDT_EN "y") +set(CONFIG_ESP_TASK_WDT_INIT "y") +set(CONFIG_ESP_TASK_WDT_PANIC "") +set(CONFIG_ESP_TASK_WDT_TIMEOUT_S "5") +set(CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0 "y") +set(CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1 "y") +set(CONFIG_ESP_PANIC_HANDLER_IRAM "") +set(CONFIG_ESP_DEBUG_STUBS_ENABLE "") +set(CONFIG_ESP_DEBUG_OCDAWARE "y") +set(CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_5 "") +set(CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4 "y") +set(CONFIG_ESP32_DISABLE_BASIC_ROM_CONSOLE "") +set(CONFIG_ESP_IPC_ENABLE "y") +set(CONFIG_ESP_IPC_TASK_STACK_SIZE "1024") +set(CONFIG_ESP_IPC_USES_CALLERS_PRIORITY "y") +set(CONFIG_ESP_IPC_ISR_ENABLE "y") +set(CONFIG_ESP_TIMER_IN_IRAM "y") +set(CONFIG_ESP_TIMER_PROFILING "") +set(CONFIG_ESP_TIME_FUNCS_USE_RTC_TIMER "y") +set(CONFIG_ESP_TIME_FUNCS_USE_ESP_TIMER "y") +set(CONFIG_ESP_TIMER_TASK_STACK_SIZE "3584") +set(CONFIG_ESP_TIMER_INTERRUPT_LEVEL "1") +set(CONFIG_ESP_TIMER_SHOW_EXPERIMENTAL "") +set(CONFIG_ESP_TIMER_TASK_AFFINITY "0x0") +set(CONFIG_ESP_TIMER_TASK_AFFINITY_CPU0 "y") +set(CONFIG_ESP_TIMER_ISR_AFFINITY_CPU0 "y") +set(CONFIG_ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD "") +set(CONFIG_ESP_TIMER_IMPL_TG0_LAC "y") +set(CONFIG_ESP_TRACE_LIB_EXTERNAL "") +set(CONFIG_ESP_TRACE_LIB_NONE "y") +set(CONFIG_ESP_TRACE_LIB_NAME "none") +set(CONFIG_ESP_TRACE_TRANSPORT_APPTRACE "") +set(CONFIG_ESP_TRACE_TRANSPORT_NONE "y") +set(CONFIG_ESP_TRACE_TRANSPORT_NAME "none") +set(CONFIG_ESP_WIFI_ENABLED "y") +set(CONFIG_ESP_WIFI_STATIC_RX_BUFFER_NUM "10") +set(CONFIG_ESP_WIFI_DYNAMIC_RX_BUFFER_NUM "32") +set(CONFIG_ESP_WIFI_STATIC_TX_BUFFER "") +set(CONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER "y") +set(CONFIG_ESP_WIFI_TX_BUFFER_TYPE "1") +set(CONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER_NUM "32") +set(CONFIG_ESP_WIFI_STATIC_RX_MGMT_BUFFER "y") +set(CONFIG_ESP_WIFI_DYNAMIC_RX_MGMT_BUFFER "") +set(CONFIG_ESP_WIFI_DYNAMIC_RX_MGMT_BUF "0") +set(CONFIG_ESP_WIFI_RX_MGMT_BUF_NUM_DEF "5") +set(CONFIG_ESP_WIFI_CSI_ENABLED "") +set(CONFIG_ESP_WIFI_AMPDU_TX_ENABLED "y") +set(CONFIG_ESP_WIFI_TX_BA_WIN "6") +set(CONFIG_ESP_WIFI_AMPDU_RX_ENABLED "y") +set(CONFIG_ESP_WIFI_RX_BA_WIN "6") +set(CONFIG_ESP_WIFI_NVS_ENABLED "y") +set(CONFIG_ESP_WIFI_TASK_PINNED_TO_CORE_0 "y") +set(CONFIG_ESP_WIFI_TASK_PINNED_TO_CORE_1 "") +set(CONFIG_ESP_WIFI_SOFTAP_BEACON_MAX_LEN "752") +set(CONFIG_ESP_WIFI_MGMT_SBUF_NUM "32") +set(CONFIG_ESP_WIFI_IRAM_OPT "y") +set(CONFIG_ESP_WIFI_EXTRA_IRAM_OPT "") +set(CONFIG_ESP_WIFI_RX_IRAM_OPT "y") +set(CONFIG_ESP_WIFI_ENABLE_WPA3_SAE "y") +set(CONFIG_ESP_WIFI_ENABLE_SAE_H2E "y") +set(CONFIG_ESP_WIFI_ENABLE_SAE_PK "y") +set(CONFIG_ESP_WIFI_SOFTAP_SAE_SUPPORT "y") +set(CONFIG_ESP_WIFI_ENABLE_WPA3_OWE_STA "y") +set(CONFIG_ESP_WIFI_WPA3_COMPATIBLE_SUPPORT "y") +set(CONFIG_ESP_WIFI_SLP_IRAM_OPT "") +set(CONFIG_ESP_WIFI_SLP_DEFAULT_MIN_ACTIVE_TIME "50") +set(CONFIG_ESP_WIFI_BSS_MAX_IDLE_SUPPORT "") +set(CONFIG_ESP_WIFI_SLP_DEFAULT_MAX_ACTIVE_TIME "10") +set(CONFIG_ESP_WIFI_SLP_DEFAULT_WAIT_BROADCAST_DATA_TIME "15") +set(CONFIG_ESP_WIFI_STA_DISCONNECTED_PM_ENABLE "y") +set(CONFIG_ESP_WIFI_GMAC_SUPPORT "y") +set(CONFIG_ESP_WIFI_SOFTAP_SUPPORT "y") +set(CONFIG_ESP_WIFI_SLP_BEACON_LOST_OPT "") +set(CONFIG_ESP_WIFI_ESPNOW_MAX_ENCRYPT_NUM "7") +set(CONFIG_ESP_WIFI_NAN_SYNC_ENABLE "") +set(CONFIG_ESP_WIFI_MBEDTLS_CRYPTO "y") +set(CONFIG_ESP_WIFI_MBEDTLS_TLS_CLIENT "y") +set(CONFIG_ESP_WIFI_WAPI_PSK "") +set(CONFIG_ESP_WIFI_11KV_SUPPORT "") +set(CONFIG_ESP_WIFI_MBO_SUPPORT "") +set(CONFIG_ESP_WIFI_DPP_SUPPORT "") +set(CONFIG_ESP_WIFI_11R_SUPPORT "") +set(CONFIG_ESP_WIFI_WPS_SOFTAP_REGISTRAR "") +set(CONFIG_ESP_WIFI_WPS_STRICT "") +set(CONFIG_ESP_WIFI_WPS_PASSPHRASE "") +set(CONFIG_ESP_WIFI_WPS_RECONNECT_ON_FAIL "") +set(CONFIG_ESP_WIFI_DEBUG_PRINT "") +set(CONFIG_ESP_WIFI_ENTERPRISE_SUPPORT "y") +set(CONFIG_ESP_WIFI_ENT_FREE_DYNAMIC_BUFFER "") +set(CONFIG_ESP_COREDUMP_ENABLE_TO_FLASH "") +set(CONFIG_ESP_COREDUMP_ENABLE_TO_UART "") +set(CONFIG_ESP_COREDUMP_ENABLE_TO_NONE "y") +set(CONFIG_FATFS_VOLUME_COUNT "2") +set(CONFIG_FATFS_LFN_NONE "") +set(CONFIG_FATFS_LFN_HEAP "y") +set(CONFIG_FATFS_LFN_STACK "") +set(CONFIG_FATFS_SECTOR_512 "") +set(CONFIG_FATFS_SECTOR_4096 "y") +set(CONFIG_FATFS_CODEPAGE_DYNAMIC "") +set(CONFIG_FATFS_CODEPAGE_437 "y") +set(CONFIG_FATFS_CODEPAGE_720 "") +set(CONFIG_FATFS_CODEPAGE_737 "") +set(CONFIG_FATFS_CODEPAGE_771 "") +set(CONFIG_FATFS_CODEPAGE_775 "") +set(CONFIG_FATFS_CODEPAGE_850 "") +set(CONFIG_FATFS_CODEPAGE_852 "") +set(CONFIG_FATFS_CODEPAGE_855 "") +set(CONFIG_FATFS_CODEPAGE_857 "") +set(CONFIG_FATFS_CODEPAGE_860 "") +set(CONFIG_FATFS_CODEPAGE_861 "") +set(CONFIG_FATFS_CODEPAGE_862 "") +set(CONFIG_FATFS_CODEPAGE_863 "") +set(CONFIG_FATFS_CODEPAGE_864 "") +set(CONFIG_FATFS_CODEPAGE_865 "") +set(CONFIG_FATFS_CODEPAGE_866 "") +set(CONFIG_FATFS_CODEPAGE_869 "") +set(CONFIG_FATFS_CODEPAGE_932 "") +set(CONFIG_FATFS_CODEPAGE_936 "") +set(CONFIG_FATFS_CODEPAGE_949 "") +set(CONFIG_FATFS_CODEPAGE_950 "") +set(CONFIG_FATFS_CODEPAGE "437") +set(CONFIG_FATFS_MAX_LFN "255") +set(CONFIG_FATFS_API_ENCODING_ANSI_OEM "y") +set(CONFIG_FATFS_API_ENCODING_UTF_8 "") +set(CONFIG_FATFS_FS_LOCK "0") +set(CONFIG_FATFS_TIMEOUT_MS "10000") +set(CONFIG_FATFS_PER_FILE_CACHE "y") +set(CONFIG_FATFS_USE_FASTSEEK "") +set(CONFIG_FATFS_USE_STRFUNC_NONE "y") +set(CONFIG_FATFS_USE_STRFUNC_WITHOUT_CRLF_CONV "") +set(CONFIG_FATFS_USE_STRFUNC_WITH_CRLF_CONV "") +set(CONFIG_FATFS_VFS_FSTAT_BLKSIZE "0") +set(CONFIG_FATFS_IMMEDIATE_FSYNC "") +set(CONFIG_FATFS_USE_LABEL "") +set(CONFIG_FATFS_LINK_LOCK "y") +set(CONFIG_FATFS_USE_DYN_BUFFERS "y") +set(CONFIG_FATFS_DONT_TRUST_FREE_CLUSTER_CNT "0") +set(CONFIG_FATFS_DONT_TRUST_LAST_ALLOC "0") +set(CONFIG_FREERTOS_SMP "") +set(CONFIG_FREERTOS_UNICORE "") +set(CONFIG_FREERTOS_HZ "100") +set(CONFIG_FREERTOS_CHECK_STACKOVERFLOW_NONE "") +set(CONFIG_FREERTOS_CHECK_STACKOVERFLOW_PTRVAL "") +set(CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY "y") +set(CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS "1") +set(CONFIG_FREERTOS_IDLE_TASK_STACKSIZE "1536") +set(CONFIG_FREERTOS_USE_IDLE_HOOK "") +set(CONFIG_FREERTOS_USE_TICK_HOOK "") +set(CONFIG_FREERTOS_MAX_TASK_NAME_LEN "16") +set(CONFIG_FREERTOS_ENABLE_BACKWARD_COMPATIBILITY "") +set(CONFIG_FREERTOS_USE_TIMERS "y") +set(CONFIG_FREERTOS_TIMER_SERVICE_TASK_NAME "Tmr Svc") +set(CONFIG_FREERTOS_TIMER_TASK_AFFINITY_CPU0 "") +set(CONFIG_FREERTOS_TIMER_TASK_AFFINITY_CPU1 "") +set(CONFIG_FREERTOS_TIMER_TASK_NO_AFFINITY "y") +set(CONFIG_FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY "0x7fffffff") +set(CONFIG_FREERTOS_TIMER_TASK_PRIORITY "1") +set(CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH "2048") +set(CONFIG_FREERTOS_TIMER_QUEUE_LENGTH "10") +set(CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE "0") +set(CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES "1") +set(CONFIG_FREERTOS_USE_TRACE_FACILITY "") +set(CONFIG_FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES "") +set(CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS "") +set(CONFIG_FREERTOS_USE_APPLICATION_TASK_TAG "") +set(CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER "y") +set(CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK "") +set(CONFIG_FREERTOS_TLSP_DELETION_CALLBACKS "y") +set(CONFIG_FREERTOS_TASK_PRE_DELETION_HOOK "") +set(CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER "y") +set(CONFIG_FREERTOS_ISR_STACKSIZE "1536") +set(CONFIG_FREERTOS_INTERRUPT_BACKTRACE "y") +set(CONFIG_FREERTOS_FPU_IN_ISR "") +set(CONFIG_FREERTOS_TICK_SUPPORT_CORETIMER "y") +set(CONFIG_FREERTOS_CORETIMER_0 "y") +set(CONFIG_FREERTOS_CORETIMER_1 "") +set(CONFIG_FREERTOS_SYSTICK_USES_CCOUNT "y") +set(CONFIG_FREERTOS_IN_IRAM "") +set(CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE "") +set(CONFIG_FREERTOS_PORT "y") +set(CONFIG_FREERTOS_NO_AFFINITY "0x7fffffff") +set(CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION "y") +set(CONFIG_FREERTOS_DEBUG_OCDAWARE "y") +set(CONFIG_FREERTOS_NUMBER_OF_CORES "2") +set(CONFIG_HAL_ASSERTION_EQUALS_SYSTEM "y") +set(CONFIG_HAL_ASSERTION_DISABLE "") +set(CONFIG_HAL_ASSERTION_SILENT "") +set(CONFIG_HAL_ASSERTION_ENABLE "") +set(CONFIG_HAL_DEFAULT_ASSERTION_LEVEL "2") +set(CONFIG_HAL_GPIO_USE_ROM_IMPL "y") +set(CONFIG_HEAP_HAS_EXEC_HEAP "y") +set(CONFIG_HEAP_POISONING_DISABLED "y") +set(CONFIG_HEAP_POISONING_LIGHT "") +set(CONFIG_HEAP_POISONING_COMPREHENSIVE "") +set(CONFIG_HEAP_TRACING_OFF "y") +set(CONFIG_HEAP_TRACING_STANDALONE "") +set(CONFIG_HEAP_TRACING_TOHOST "") +set(CONFIG_HEAP_USE_HOOKS "") +set(CONFIG_HEAP_TASK_TRACKING "") +set(CONFIG_HEAP_ABORT_WHEN_ALLOCATION_FAILS "") +set(CONFIG_HEAP_PLACE_FUNCTION_INTO_FLASH "") +set(CONFIG_LOG_VERSION_1 "y") +set(CONFIG_LOG_VERSION_2 "") +set(CONFIG_LOG_VERSION "1") +set(CONFIG_LOG_DEFAULT_LEVEL_NONE "") +set(CONFIG_LOG_DEFAULT_LEVEL_ERROR "") +set(CONFIG_LOG_DEFAULT_LEVEL_WARN "") +set(CONFIG_LOG_DEFAULT_LEVEL_INFO "y") +set(CONFIG_LOG_DEFAULT_LEVEL_DEBUG "") +set(CONFIG_LOG_DEFAULT_LEVEL_VERBOSE "") +set(CONFIG_LOG_DEFAULT_LEVEL "3") +set(CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT "y") +set(CONFIG_LOG_MAXIMUM_LEVEL_DEBUG "") +set(CONFIG_LOG_MAXIMUM_LEVEL_VERBOSE "") +set(CONFIG_LOG_MAXIMUM_LEVEL "3") +set(CONFIG_LOG_MASTER_LEVEL "") +set(CONFIG_LOG_DYNAMIC_LEVEL_CONTROL "y") +set(CONFIG_LOG_TAG_LEVEL_IMPL_NONE "") +set(CONFIG_LOG_TAG_LEVEL_IMPL_LINKED_LIST "") +set(CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST "y") +set(CONFIG_LOG_TAG_LEVEL_CACHE_ARRAY "") +set(CONFIG_LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP "y") +set(CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_SIZE "31") +set(CONFIG_LOG_COLORS "") +set(CONFIG_LOG_TIMESTAMP_SOURCE_RTOS "y") +set(CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM "") +set(CONFIG_LOG_MODE_TEXT_EN "y") +set(CONFIG_LOG_MODE_TEXT "y") +set(CONFIG_LOG_IN_IRAM "y") +set(CONFIG_LWIP_ENABLE "y") +set(CONFIG_LWIP_LOCAL_HOSTNAME "espressif") +set(CONFIG_LWIP_TCPIP_TASK_PRIO "18") +set(CONFIG_LWIP_TCPIP_CORE_LOCKING "") +set(CONFIG_LWIP_CHECK_THREAD_SAFETY "") +set(CONFIG_LWIP_DNS_SUPPORT_MDNS_QUERIES "y") +set(CONFIG_LWIP_L2_TO_L3_COPY "") +set(CONFIG_LWIP_IRAM_OPTIMIZATION "") +set(CONFIG_LWIP_EXTRA_IRAM_OPTIMIZATION "") +set(CONFIG_LWIP_TIMERS_ONDEMAND "y") +set(CONFIG_LWIP_ND6 "y") +set(CONFIG_LWIP_FORCE_ROUTER_FORWARDING "") +set(CONFIG_LWIP_MAX_SOCKETS "10") +set(CONFIG_LWIP_USE_ONLY_LWIP_SELECT "") +set(CONFIG_LWIP_SO_LINGER "") +set(CONFIG_LWIP_SO_REUSE "y") +set(CONFIG_LWIP_SO_REUSE_RXTOALL "y") +set(CONFIG_LWIP_SO_RCVBUF "") +set(CONFIG_LWIP_NETBUF_RECVINFO "") +set(CONFIG_LWIP_IP_DEFAULT_TTL "64") +set(CONFIG_LWIP_IP4_FRAG "y") +set(CONFIG_LWIP_IP6_FRAG "y") +set(CONFIG_LWIP_IP4_REASSEMBLY "") +set(CONFIG_LWIP_IP6_REASSEMBLY "") +set(CONFIG_LWIP_IP_REASS_MAX_PBUFS "10") +set(CONFIG_LWIP_IPV6_DUP_DETECT_ATTEMPTS "1") +set(CONFIG_LWIP_IP_FORWARD "") +set(CONFIG_LWIP_STATS "") +set(CONFIG_LWIP_ESP_GRATUITOUS_ARP "y") +set(CONFIG_LWIP_GARP_TMR_INTERVAL "60") +set(CONFIG_LWIP_ESP_MLDV6_REPORT "y") +set(CONFIG_LWIP_MLDV6_TMR_INTERVAL "40") +set(CONFIG_LWIP_TCPIP_RECVMBOX_SIZE "32") +set(CONFIG_LWIP_DHCP_DOES_ARP_CHECK "y") +set(CONFIG_LWIP_DHCP_DOES_ACD_CHECK "") +set(CONFIG_LWIP_DHCP_DOES_NOT_CHECK_OFFERED_IP "") +set(CONFIG_LWIP_DHCP_DISABLE_CLIENT_ID "") +set(CONFIG_LWIP_DHCP_DISABLE_VENDOR_CLASS_ID "y") +set(CONFIG_LWIP_DHCP_RESTORE_LAST_IP "") +set(CONFIG_LWIP_DHCP_OPTIONS_LEN "69") +set(CONFIG_LWIP_NUM_NETIF_CLIENT_DATA "0") +set(CONFIG_LWIP_DHCP_COARSE_TIMER_SECS "1") +set(CONFIG_LWIP_DHCPS "y") +set(CONFIG_LWIP_DHCPS_REPORT_CLIENT_HOSTNAME "y") +set(CONFIG_LWIP_DHCPS_LEASE_UNIT "60") +set(CONFIG_LWIP_DHCPS_MAX_STATION_NUM "8") +set(CONFIG_LWIP_DHCPS_MAX_HOSTNAME_LEN "64") +set(CONFIG_LWIP_DHCPS_STATIC_ENTRIES "y") +set(CONFIG_LWIP_AUTOIP "") +set(CONFIG_LWIP_IPV4 "y") +set(CONFIG_LWIP_IPV6 "y") +set(CONFIG_LWIP_IPV6_AUTOCONFIG "") +set(CONFIG_LWIP_IPV6_NUM_ADDRESSES "3") +set(CONFIG_LWIP_IPV6_FORWARD "") +set(CONFIG_LWIP_NETIF_STATUS_CALLBACK "") +set(CONFIG_LWIP_NETIF_LINK_CALLBACK "") +set(CONFIG_LWIP_NETIF_LOOPBACK "y") +set(CONFIG_LWIP_LOOPBACK_MAX_PBUFS "8") +set(CONFIG_LWIP_MAX_ACTIVE_TCP "16") +set(CONFIG_LWIP_MAX_LISTENING_TCP "16") +set(CONFIG_LWIP_TCP_HIGH_SPEED_RETRANSMISSION "y") +set(CONFIG_LWIP_TCP_MAXRTX "12") +set(CONFIG_LWIP_TCP_SYNMAXRTX "12") +set(CONFIG_LWIP_TCP_MSS "1440") +set(CONFIG_LWIP_TCP_TMR_INTERVAL "250") +set(CONFIG_LWIP_TCP_MSL "60000") +set(CONFIG_LWIP_TCP_FIN_WAIT_TIMEOUT "20000") +set(CONFIG_LWIP_TCP_SND_BUF_DEFAULT "5760") +set(CONFIG_LWIP_TCP_WND_DEFAULT "5760") +set(CONFIG_LWIP_TCP_RECVMBOX_SIZE "6") +set(CONFIG_LWIP_TCP_ACCEPTMBOX_SIZE "6") +set(CONFIG_LWIP_TCP_QUEUE_OOSEQ "y") +set(CONFIG_LWIP_TCP_OOSEQ_TIMEOUT "6") +set(CONFIG_LWIP_TCP_OOSEQ_MAX_PBUFS "4") +set(CONFIG_LWIP_TCP_SACK_OUT "") +set(CONFIG_LWIP_TCP_OVERSIZE_MSS "y") +set(CONFIG_LWIP_TCP_OVERSIZE_QUARTER_MSS "") +set(CONFIG_LWIP_TCP_OVERSIZE_DISABLE "") +set(CONFIG_LWIP_TCP_RTO_TIME "1500") +set(CONFIG_LWIP_MAX_UDP_PCBS "16") +set(CONFIG_LWIP_UDP_RECVMBOX_SIZE "6") +set(CONFIG_LWIP_CHECKSUM_CHECK_IP "") +set(CONFIG_LWIP_CHECKSUM_CHECK_UDP "") +set(CONFIG_LWIP_CHECKSUM_CHECK_ICMP "y") +set(CONFIG_LWIP_TCPIP_TASK_STACK_SIZE "3072") +set(CONFIG_LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY "y") +set(CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU0 "") +set(CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU1 "") +set(CONFIG_LWIP_TCPIP_TASK_AFFINITY "0x7fffffff") +set(CONFIG_LWIP_IPV6_MEMP_NUM_ND6_QUEUE "3") +set(CONFIG_LWIP_IPV6_ND6_NUM_NEIGHBORS "5") +set(CONFIG_LWIP_IPV6_ND6_NUM_PREFIXES "5") +set(CONFIG_LWIP_IPV6_ND6_NUM_ROUTERS "3") +set(CONFIG_LWIP_IPV6_ND6_NUM_DESTINATIONS "10") +set(CONFIG_LWIP_IPV6_ND6_ROUTE_INFO_OPTION_SUPPORT "") +set(CONFIG_LWIP_PPP_SUPPORT "") +set(CONFIG_LWIP_SLIP_SUPPORT "") +set(CONFIG_LWIP_ICMP "y") +set(CONFIG_LWIP_MULTICAST_PING "") +set(CONFIG_LWIP_BROADCAST_PING "") +set(CONFIG_LWIP_MAX_RAW_PCBS "16") +set(CONFIG_LWIP_SNTP_MAX_SERVERS "1") +set(CONFIG_LWIP_DHCP_GET_NTP_SRV "") +set(CONFIG_LWIP_SNTP_UPDATE_DELAY "3600000") +set(CONFIG_LWIP_SNTP_STARTUP_DELAY "y") +set(CONFIG_LWIP_SNTP_MAXIMUM_STARTUP_DELAY "5000") +set(CONFIG_LWIP_DNS_MAX_HOST_IP "1") +set(CONFIG_LWIP_DNS_MAX_SERVERS "3") +set(CONFIG_LWIP_FALLBACK_DNS_SERVER_SUPPORT "") +set(CONFIG_LWIP_DNS_SETSERVER_WITH_NETIF "") +set(CONFIG_LWIP_USE_ESP_GETADDRINFO "") +set(CONFIG_LWIP_BRIDGEIF_MAX_PORTS "7") +set(CONFIG_LWIP_ESP_LWIP_ASSERT "y") +set(CONFIG_LWIP_HOOK_TCP_ISN_NONE "") +set(CONFIG_LWIP_HOOK_TCP_ISN_DEFAULT "y") +set(CONFIG_LWIP_HOOK_TCP_ISN_CUSTOM "") +set(CONFIG_LWIP_HOOK_IP6_ROUTE_NONE "y") +set(CONFIG_LWIP_HOOK_IP6_ROUTE_DEFAULT "") +set(CONFIG_LWIP_HOOK_IP6_ROUTE_CUSTOM "") +set(CONFIG_LWIP_HOOK_ND6_GET_GW_NONE "y") +set(CONFIG_LWIP_HOOK_ND6_GET_GW_DEFAULT "") +set(CONFIG_LWIP_HOOK_ND6_GET_GW_CUSTOM "") +set(CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_NONE "y") +set(CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_DEFAULT "") +set(CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_CUSTOM "") +set(CONFIG_LWIP_HOOK_DHCP_EXTRA_OPTION_NONE "y") +set(CONFIG_LWIP_HOOK_DHCP_EXTRA_OPTION_DEFAULT "") +set(CONFIG_LWIP_HOOK_DHCP_EXTRA_OPTION_CUSTOM "") +set(CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_NONE "y") +set(CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_DEFAULT "") +set(CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_CUSTOM "") +set(CONFIG_LWIP_HOOK_DNS_EXT_RESOLVE_NONE "y") +set(CONFIG_LWIP_HOOK_DNS_EXT_RESOLVE_CUSTOM "") +set(CONFIG_LWIP_HOOK_IP6_INPUT_NONE "") +set(CONFIG_LWIP_HOOK_IP6_INPUT_DEFAULT "y") +set(CONFIG_LWIP_HOOK_IP6_INPUT_CUSTOM "") +set(CONFIG_LWIP_DEBUG "") +set(CONFIG_MBEDTLS_VER_4_X_SUPPORT "y") +set(CONFIG_MBEDTLS_COMPILER_OPTIMIZATION_NONE "") +set(CONFIG_MBEDTLS_COMPILER_OPTIMIZATION_SIZE "y") +set(CONFIG_MBEDTLS_COMPILER_OPTIMIZATION_PERF "") +set(CONFIG_MBEDTLS_FS_IO "y") +set(CONFIG_MBEDTLS_THREADING_C "y") +set(CONFIG_MBEDTLS_THREADING_ALT "") +set(CONFIG_MBEDTLS_THREADING_PTHREAD "y") +set(CONFIG_MBEDTLS_ERROR_STRINGS "y") +set(CONFIG_MBEDTLS_VERSION_C "y") +set(CONFIG_MBEDTLS_HAVE_TIME "y") +set(CONFIG_MBEDTLS_PLATFORM_TIME_ALT "") +set(CONFIG_MBEDTLS_HAVE_TIME_DATE "") +set(CONFIG_MBEDTLS_INTERNAL_MEM_ALLOC "y") +set(CONFIG_MBEDTLS_DEFAULT_MEM_ALLOC "") +set(CONFIG_MBEDTLS_CUSTOM_MEM_ALLOC "") +set(CONFIG_MBEDTLS_ASYMMETRIC_CONTENT_LEN "y") +set(CONFIG_MBEDTLS_SSL_IN_CONTENT_LEN "16384") +set(CONFIG_MBEDTLS_SSL_OUT_CONTENT_LEN "4096") +set(CONFIG_MBEDTLS_DYNAMIC_BUFFER "") +set(CONFIG_MBEDTLS_VERSION_FEATURES "") +set(CONFIG_MBEDTLS_DEBUG "") +set(CONFIG_MBEDTLS_SELF_TEST "y") +set(CONFIG_MBEDTLS_X509_USE_C "y") +set(CONFIG_MBEDTLS_PEM_PARSE_C "y") +set(CONFIG_MBEDTLS_PEM_WRITE_C "y") +set(CONFIG_MBEDTLS_PK_C "y") +set(CONFIG_MBEDTLS_PK_PARSE_C "y") +set(CONFIG_MBEDTLS_PK_WRITE_C "y") +set(CONFIG_MBEDTLS_X509_REMOVE_INFO "") +set(CONFIG_MBEDTLS_X509_CRL_PARSE_C "y") +set(CONFIG_MBEDTLS_X509_CRT_PARSE_C "y") +set(CONFIG_MBEDTLS_X509_CSR_PARSE_C "y") +set(CONFIG_MBEDTLS_X509_CREATE_C "") +set(CONFIG_MBEDTLS_X509_RSASSA_PSS_SUPPORT "y") +set(CONFIG_MBEDTLS_X509_TRUSTED_CERT_CALLBACK "") +set(CONFIG_MBEDTLS_ASN1_PARSE_C "y") +set(CONFIG_MBEDTLS_ASN1_WRITE_C "y") +set(CONFIG_MBEDTLS_CERTIFICATE_BUNDLE "y") +set(CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL "y") +set(CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN "") +set(CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE "") +set(CONFIG_MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE "") +set(CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEPRECATED_LIST "") +set(CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS "200") +set(CONFIG_MBEDTLS_ALLOW_WEAK_CERTIFICATE_VERIFICATION "") +set(CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_CROSS_SIGNED_VERIFY "") +set(CONFIG_MBEDTLS_TLS_ENABLED "y") +set(CONFIG_MBEDTLS_SSL_PROTO_TLS1_2 "y") +set(CONFIG_MBEDTLS_SSL_PROTO_TLS1_3 "") +set(CONFIG_MBEDTLS_SSL_PROTO_GMTSSL1_1 "") +set(CONFIG_MBEDTLS_TLS_SERVER "y") +set(CONFIG_MBEDTLS_TLS_CLIENT "y") +set(CONFIG_MBEDTLS_TLS_SERVER_AND_CLIENT "y") +set(CONFIG_MBEDTLS_TLS_SERVER_ONLY "") +set(CONFIG_MBEDTLS_TLS_CLIENT_ONLY "") +set(CONFIG_MBEDTLS_TLS_DISABLED "") +set(CONFIG_MBEDTLS_SSL_KEEP_PEER_CERTIFICATE "") +set(CONFIG_MBEDTLS_SSL_CONTEXT_SERIALIZATION "") +set(CONFIG_MBEDTLS_SSL_CACHE_C "y") +set(CONFIG_MBEDTLS_SSL_ALL_ALERT_MESSAGES "y") +set(CONFIG_MBEDTLS_PSK_MODES "") +set(CONFIG_MBEDTLS_KEY_EXCHANGE_RSA "y") +set(CONFIG_MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE "y") +set(CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_RSA "y") +set(CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA "y") +set(CONFIG_MBEDTLS_SSL_SERVER_NAME_INDICATION "y") +set(CONFIG_MBEDTLS_SSL_ALPN "y") +set(CONFIG_MBEDTLS_SSL_MAX_FRAGMENT_LENGTH "y") +set(CONFIG_MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH "") +set(CONFIG_MBEDTLS_SSL_RENEGOTIATION "y") +set(CONFIG_MBEDTLS_CLIENT_SSL_SESSION_TICKETS "y") +set(CONFIG_MBEDTLS_SERVER_SSL_SESSION_TICKETS "y") +set(CONFIG_MBEDTLS_SSL_KEYING_MATERIAL_EXPORT "") +set(CONFIG_MBEDTLS_SSL_PROTO_DTLS "") +set(CONFIG_MBEDTLS_AES_C "y") +set(CONFIG_MBEDTLS_CAMELLIA_C "") +set(CONFIG_MBEDTLS_ARIA_C "") +set(CONFIG_MBEDTLS_DES_C "") +set(CONFIG_MBEDTLS_CCM_C "y") +set(CONFIG_MBEDTLS_CIPHER_MODE_CBC "y") +set(CONFIG_MBEDTLS_CIPHER_MODE_CFB "y") +set(CONFIG_MBEDTLS_CIPHER_MODE_CTR "y") +set(CONFIG_MBEDTLS_CIPHER_MODE_OFB "y") +set(CONFIG_MBEDTLS_CIPHER_MODE_XTS "y") +set(CONFIG_MBEDTLS_GCM_C "y") +set(CONFIG_MBEDTLS_NIST_KW_C "") +set(CONFIG_MBEDTLS_AES_ROM_TABLES "y") +set(CONFIG_MBEDTLS_AES_FEWER_TABLES "") +set(CONFIG_MBEDTLS_AES_ONLY_128_BIT_KEY_LENGTH "") +set(CONFIG_MBEDTLS_CMAC_C "y") +set(CONFIG_MBEDTLS_BIGNUM_C "y") +set(CONFIG_MBEDTLS_RSA_C "y") +set(CONFIG_MBEDTLS_ECP_C "y") +set(CONFIG_MBEDTLS_ECP_DP_SECP256R1_ENABLED "y") +set(CONFIG_MBEDTLS_ECP_DP_SECP384R1_ENABLED "y") +set(CONFIG_MBEDTLS_ECP_DP_SECP521R1_ENABLED "y") +set(CONFIG_MBEDTLS_ECP_DP_SECP256K1_ENABLED "y") +set(CONFIG_MBEDTLS_ECP_DP_BP256R1_ENABLED "y") +set(CONFIG_MBEDTLS_ECP_DP_BP384R1_ENABLED "y") +set(CONFIG_MBEDTLS_ECP_DP_BP512R1_ENABLED "y") +set(CONFIG_MBEDTLS_ECP_DP_CURVE25519_ENABLED "y") +set(CONFIG_MBEDTLS_ECP_NIST_OPTIM "y") +set(CONFIG_MBEDTLS_ECP_FIXED_POINT_OPTIM "") +set(CONFIG_MBEDTLS_DHM_C "") +set(CONFIG_MBEDTLS_ECDH_C "y") +set(CONFIG_MBEDTLS_ECJPAKE_C "") +set(CONFIG_MBEDTLS_ECDSA_C "y") +set(CONFIG_MBEDTLS_PK_PARSE_EC_EXTENDED "y") +set(CONFIG_MBEDTLS_PK_PARSE_EC_COMPRESSED "y") +set(CONFIG_MBEDTLS_ECDSA_DETERMINISTIC "y") +set(CONFIG_MBEDTLS_ECP_RESTARTABLE "") +set(CONFIG_MBEDTLS_RIPEMD160_C "") +set(CONFIG_MBEDTLS_MD_C "y") +set(CONFIG_MBEDTLS_MD5_C "y") +set(CONFIG_MBEDTLS_SHA1_C "y") +set(CONFIG_MBEDTLS_SHA224_C "") +set(CONFIG_MBEDTLS_SHA256_C "y") +set(CONFIG_MBEDTLS_SHA384_C "y") +set(CONFIG_MBEDTLS_SHA512_C "y") +set(CONFIG_MBEDTLS_SHA3_C "") +set(CONFIG_MBEDTLS_ROM_MD5 "y") +set(CONFIG_MBEDTLS_HARDWARE_SHA "y") +set(CONFIG_MBEDTLS_HARDWARE_MPI "y") +set(CONFIG_MBEDTLS_LARGE_KEY_SOFTWARE_MPI "y") +set(CONFIG_MBEDTLS_HARDWARE_AES "y") +set(CONFIG_MBEDTLS_AES_SOFT_FALLBACK "") +set(CONFIG_MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER "y") +set(CONFIG_MBEDTLS_ATCA_HW_ECDSA_SIGN "") +set(CONFIG_MBEDTLS_ATCA_HW_ECDSA_VERIFY "") +set(CONFIG_MBEDTLS_ENTROPY_FORCE_SHA256 "") +set(CONFIG_MBEDTLS_CTR_DRBG_C "y") +set(CONFIG_MBEDTLS_HMAC_DRBG_C "y") +set(CONFIG_MBEDTLS_BASE64_C "y") +set(CONFIG_MBEDTLS_PKCS5_C "y") +set(CONFIG_MBEDTLS_PKCS7_C "y") +set(CONFIG_MBEDTLS_PKCS1_V15 "y") +set(CONFIG_MBEDTLS_PKCS1_V21 "y") +set(CONFIG_MBEDTLS_CHACHA20_C "") +set(CONFIG_NVS_ASSERT_ERROR_CHECK "") +set(CONFIG_NVS_LEGACY_DUP_KEYS_COMPATIBILITY "") +set(CONFIG_NVS_BDL_STACK "") +set(CONFIG_OPENTHREAD_ENABLED "") +set(CONFIG_OPENTHREAD_SPINEL_ONLY "") +set(CONFIG_OPENTHREAD_DEBUG "") +set(CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_0 "") +set(CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_1 "") +set(CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_2 "y") +set(CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_PATCH_VERSION "y") +set(CONFIG_PTHREAD_TASK_PRIO_DEFAULT "5") +set(CONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT "3072") +set(CONFIG_PTHREAD_STACK_MIN "768") +set(CONFIG_PTHREAD_DEFAULT_CORE_NO_AFFINITY "y") +set(CONFIG_PTHREAD_DEFAULT_CORE_0 "") +set(CONFIG_PTHREAD_DEFAULT_CORE_1 "") +set(CONFIG_PTHREAD_TASK_CORE_DEFAULT "-1") +set(CONFIG_PTHREAD_TASK_NAME_DEFAULT "pthread") +set(CONFIG_SD_ENABLE_SDIO_SUPPORT "y") +set(CONFIG_MMU_PAGE_SIZE_64KB "y") +set(CONFIG_MMU_PAGE_MODE "64KB") +set(CONFIG_MMU_PAGE_SIZE "0x10000") +set(CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC "y") +set(CONFIG_SPI_FLASH_BROWNOUT_RESET "y") +set(CONFIG_SPI_FLASH_SUSPEND_TSUS_VAL_US "50") +set(CONFIG_SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND "") +set(CONFIG_SPI_FLASH_FORCE_ENABLE_C6_H2_SUSPEND "") +set(CONFIG_SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM "y") +set(CONFIG_SPI_FLASH_VERIFY_WRITE "") +set(CONFIG_SPI_FLASH_ENABLE_COUNTERS "") +set(CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS "y") +set(CONFIG_SPI_FLASH_DANGEROUS_WRITE_FAILS "") +set(CONFIG_SPI_FLASH_DANGEROUS_WRITE_ALLOWED "") +set(CONFIG_SPI_FLASH_SHARE_SPI1_BUS "") +set(CONFIG_SPI_FLASH_BYPASS_BLOCK_ERASE "") +set(CONFIG_SPI_FLASH_YIELD_DURING_ERASE "y") +set(CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS "20") +set(CONFIG_SPI_FLASH_ERASE_YIELD_TICKS "1") +set(CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE "8192") +set(CONFIG_SPI_FLASH_SIZE_OVERRIDE "") +set(CONFIG_SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED "") +set(CONFIG_SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST "") +set(CONFIG_SPI_FLASH_VENDOR_XMC_SUPPORT_ENABLED "y") +set(CONFIG_SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED "y") +set(CONFIG_SPI_FLASH_VENDOR_ISSI_SUPPORT_ENABLED "y") +set(CONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORT_ENABLED "y") +set(CONFIG_SPI_FLASH_VENDOR_WINBOND_SUPPORT_ENABLED "y") +set(CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP "y") +set(CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP "y") +set(CONFIG_SPI_FLASH_SUPPORT_GD_CHIP "y") +set(CONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP "y") +set(CONFIG_SPI_FLASH_SUPPORT_BOYA_CHIP "") +set(CONFIG_SPI_FLASH_SUPPORT_TH_CHIP "") +set(CONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE "y") +set(CONFIG_SPIFFS_MAX_PARTITIONS "3") +set(CONFIG_SPIFFS_CACHE "y") +set(CONFIG_SPIFFS_CACHE_WR "y") +set(CONFIG_SPIFFS_CACHE_STATS "") +set(CONFIG_SPIFFS_PAGE_CHECK "y") +set(CONFIG_SPIFFS_GC_MAX_RUNS "10") +set(CONFIG_SPIFFS_GC_STATS "") +set(CONFIG_SPIFFS_PAGE_SIZE "256") +set(CONFIG_SPIFFS_OBJ_NAME_LEN "32") +set(CONFIG_SPIFFS_FOLLOW_SYMLINKS "") +set(CONFIG_SPIFFS_USE_MAGIC "y") +set(CONFIG_SPIFFS_USE_MAGIC_LENGTH "y") +set(CONFIG_SPIFFS_META_LENGTH "4") +set(CONFIG_SPIFFS_USE_MTIME "y") +set(CONFIG_SPIFFS_DBG "") +set(CONFIG_SPIFFS_API_DBG "") +set(CONFIG_SPIFFS_GC_DBG "") +set(CONFIG_SPIFFS_CACHE_DBG "") +set(CONFIG_SPIFFS_CHECK_DBG "") +set(CONFIG_SPIFFS_TEST_VISUALISATION "") +set(CONFIG_WS_TRANSPORT "y") +set(CONFIG_WS_BUFFER_SIZE "1024") +set(CONFIG_WS_DYNAMIC_BUFFER "") +set(CONFIG_ULP_COPROC_ENABLED "") +set(CONFIG_UNITY_ENABLE_FLOAT "y") +set(CONFIG_UNITY_ENABLE_DOUBLE "y") +set(CONFIG_UNITY_ENABLE_64BIT "") +set(CONFIG_UNITY_ENABLE_COLOR "") +set(CONFIG_UNITY_ENABLE_IDF_TEST_RUNNER "y") +set(CONFIG_UNITY_ENABLE_FIXTURE "") +set(CONFIG_UNITY_ENABLE_BACKTRACE_ON_FAIL "") +set(CONFIG_VFS_SUPPORT_IO "y") +set(CONFIG_VFS_SUPPORT_DIR "y") +set(CONFIG_VFS_SUPPORT_SELECT "y") +set(CONFIG_VFS_SUPPRESS_SELECT_DEBUG_OUTPUT "y") +set(CONFIG_VFS_SELECT_IN_RAM "") +set(CONFIG_VFS_SUPPORT_TERMIOS "") +set(CONFIG_VFS_MAX_COUNT "8") +set(CONFIG_VFS_SEMIHOSTFS_MAX_MOUNT_POINTS "1") +set(CONFIG_VFS_INITIALIZE_DEV_NULL "y") +set(CONFIG_WL_SECTOR_SIZE_512 "") +set(CONFIG_WL_SECTOR_SIZE_4096 "y") +set(CONFIG_WL_SECTOR_SIZE "4096") +set(CONFIG_IDF_EXPERIMENTAL_FEATURES "") +set(CONFIGS_LIST CONFIG_SOC_CAPS_ECO_VER_MAX;CONFIG_SOC_ADC_SUPPORTED;CONFIG_SOC_DAC_SUPPORTED;CONFIG_SOC_UART_SUPPORTED;CONFIG_SOC_MCPWM_SUPPORTED;CONFIG_SOC_GPTIMER_SUPPORTED;CONFIG_SOC_SDMMC_HOST_SUPPORTED;CONFIG_SOC_BT_SUPPORTED;CONFIG_SOC_PCNT_SUPPORTED;CONFIG_SOC_PHY_SUPPORTED;CONFIG_SOC_WIFI_SUPPORTED;CONFIG_SOC_SDIO_SLAVE_SUPPORTED;CONFIG_SOC_TWAI_SUPPORTED;CONFIG_SOC_EFUSE_SUPPORTED;CONFIG_SOC_EMAC_SUPPORTED;CONFIG_SOC_ULP_SUPPORTED;CONFIG_SOC_CCOMP_TIMER_SUPPORTED;CONFIG_SOC_RTC_FAST_MEM_SUPPORTED;CONFIG_SOC_RTC_SLOW_MEM_SUPPORTED;CONFIG_SOC_RTC_MEM_SUPPORTED;CONFIG_SOC_RTC_TIMER_V1_SUPPORTED;CONFIG_SOC_I2S_SUPPORTED;CONFIG_SOC_I2S_I80_LCD_SUPPORTED;CONFIG_SOC_LCD_I80_SUPPORTED;CONFIG_SOC_RMT_SUPPORTED;CONFIG_SOC_SDM_SUPPORTED;CONFIG_SOC_GPSPI_SUPPORTED;CONFIG_SOC_LEDC_SUPPORTED;CONFIG_SOC_I2C_SUPPORTED;CONFIG_SOC_SUPPORT_COEXISTENCE;CONFIG_SOC_AES_SUPPORTED;CONFIG_SOC_MPI_SUPPORTED;CONFIG_SOC_SHA_SUPPORTED;CONFIG_SOC_FLASH_ENC_SUPPORTED;CONFIG_SOC_SECURE_BOOT_SUPPORTED;CONFIG_SOC_TOUCH_SENSOR_SUPPORTED;CONFIG_SOC_BOD_SUPPORTED;CONFIG_SOC_ULP_FSM_SUPPORTED;CONFIG_SOC_CLK_TREE_SUPPORTED;CONFIG_SOC_MPU_SUPPORTED;CONFIG_SOC_WDT_SUPPORTED;CONFIG_SOC_SPI_FLASH_SUPPORTED;CONFIG_SOC_RNG_SUPPORTED;CONFIG_SOC_LIGHT_SLEEP_SUPPORTED;CONFIG_SOC_DEEP_SLEEP_SUPPORTED;CONFIG_SOC_LP_PERIPH_SHARE_INTERRUPT;CONFIG_SOC_PM_SUPPORTED;CONFIG_SOC_DPORT_WORKAROUND_DIS_INTERRUPT_LVL;CONFIG_SOC_XTAL_SUPPORT_26M;CONFIG_SOC_XTAL_SUPPORT_40M;CONFIG_SOC_ADC_RTC_CTRL_SUPPORTED;CONFIG_SOC_ADC_DIG_CTRL_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_MONITOR_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_SHARED_POWER;CONFIG_SOC_BROWNOUT_RESET_SUPPORTED;CONFIG_SOC_SHARED_IDCACHE_SUPPORTED;CONFIG_SOC_IDCACHE_PER_CORE;CONFIG_SOC_CPU_CORES_NUM;CONFIG_SOC_CPU_INTR_NUM;CONFIG_SOC_CPU_HAS_FPU;CONFIG_SOC_HP_CPU_HAS_MULTIPLE_CORES;CONFIG_SOC_CPU_BREAKPOINTS_NUM;CONFIG_SOC_CPU_WATCHPOINTS_NUM;CONFIG_SOC_CPU_WATCHPOINT_MAX_REGION_SIZE;CONFIG_SOC_DAC_CHAN_NUM;CONFIG_SOC_DAC_RESOLUTION;CONFIG_SOC_DAC_DMA_16BIT_ALIGN;CONFIG_SOC_GPIO_PORT;CONFIG_SOC_GPIO_PIN_COUNT;CONFIG_SOC_GPIO_VALID_GPIO_MASK;CONFIG_SOC_GPIO_IN_RANGE_MAX;CONFIG_SOC_GPIO_OUT_RANGE_MAX;CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK;CONFIG_SOC_GPIO_CLOCKOUT_BY_IO_MUX;CONFIG_SOC_GPIO_CLOCKOUT_CHANNEL_NUM;CONFIG_SOC_I2C_NUM;CONFIG_SOC_HP_I2C_NUM;CONFIG_SOC_I2C_SUPPORT_APB;CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR;CONFIG_SOC_I2C_SUPPORT_SLAVE;CONFIG_SOC_I2C_STOP_INDEPENDENT;CONFIG_SOC_I2S_HW_VERSION_1;CONFIG_SOC_I2S_SUPPORTS_APLL;CONFIG_SOC_I2S_SUPPORTS_PDM;CONFIG_SOC_I2S_SUPPORTS_PDM_TX;CONFIG_SOC_I2S_SUPPORTS_PCM2PDM;CONFIG_SOC_I2S_SUPPORTS_PDM_RX;CONFIG_SOC_I2S_SUPPORTS_PDM2PCM;CONFIG_SOC_I2S_PDM_MAX_TX_LINES;CONFIG_SOC_I2S_PDM_MAX_RX_LINES;CONFIG_SOC_LEDC_HAS_TIMER_SPECIFIC_MUX;CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK;CONFIG_SOC_LEDC_SUPPORT_REF_TICK;CONFIG_SOC_LEDC_SUPPORT_HS_MODE;CONFIG_SOC_LEDC_TIMER_NUM;CONFIG_SOC_LEDC_CHANNEL_NUM;CONFIG_SOC_LEDC_TIMER_BIT_WIDTH;CONFIG_SOC_MMU_PERIPH_NUM;CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM;CONFIG_SOC_MPU_MIN_REGION_SIZE;CONFIG_SOC_MPU_REGIONS_MAX_NUM;CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL;CONFIG_SOC_RTCIO_PIN_COUNT;CONFIG_SOC_RTCIO_INPUT_OUTPUT_SUPPORTED;CONFIG_SOC_RTCIO_HOLD_SUPPORTED;CONFIG_SOC_RTCIO_WAKE_SUPPORTED;CONFIG_SOC_SPI_HD_BOTH_INOUT_SUPPORTED;CONFIG_SOC_SPI_AS_CS_SUPPORTED;CONFIG_SOC_SPI_PERIPH_NUM;CONFIG_SOC_SPI_DMA_CHAN_NUM;CONFIG_SOC_SPI_MAX_CS_NUM;CONFIG_SOC_SPI_SUPPORT_CLK_APB;CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE;CONFIG_SOC_SPI_MAX_PRE_DIVIDER;CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED;CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED;CONFIG_SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED;CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED;CONFIG_SOC_LP_TIMER_BIT_WIDTH_LO;CONFIG_SOC_LP_TIMER_BIT_WIDTH_HI;CONFIG_SOC_TOUCH_SENSOR_VERSION;CONFIG_SOC_TOUCH_MIN_CHAN_ID;CONFIG_SOC_TOUCH_MAX_CHAN_ID;CONFIG_SOC_TOUCH_SUPPORT_SLEEP_WAKEUP;CONFIG_SOC_TOUCH_SAMPLE_CFG_NUM;CONFIG_SOC_TWAI_CONTROLLER_NUM;CONFIG_SOC_TWAI_MASK_FILTER_NUM;CONFIG_SOC_UART_NUM;CONFIG_SOC_UART_HP_NUM;CONFIG_SOC_UART_SUPPORT_APB_CLK;CONFIG_SOC_UART_SUPPORT_REF_TICK;CONFIG_SOC_UART_FIFO_LEN;CONFIG_SOC_UART_BITRATE_MAX;CONFIG_SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE;CONFIG_SOC_SPIRAM_SUPPORTED;CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE;CONFIG_SOC_SHA_SUPPORT_PARALLEL_ENG;CONFIG_SOC_SHA_ENDIANNESS_BE;CONFIG_SOC_SHA_SUPPORT_SHA1;CONFIG_SOC_SHA_SUPPORT_SHA256;CONFIG_SOC_SHA_SUPPORT_SHA384;CONFIG_SOC_SHA_SUPPORT_SHA512;CONFIG_SOC_MPI_MEM_BLOCKS_NUM;CONFIG_SOC_MPI_OPERATIONS_NUM;CONFIG_SOC_RSA_MAX_BIT_LEN;CONFIG_SOC_AES_SUPPORT_AES_128;CONFIG_SOC_AES_SUPPORT_AES_192;CONFIG_SOC_AES_SUPPORT_AES_256;CONFIG_SOC_SECURE_BOOT_V1;CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS;CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX;CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE;CONFIG_SOC_PM_SUPPORT_EXT0_WAKEUP;CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP;CONFIG_SOC_PM_SUPPORT_EXT_WAKEUP;CONFIG_SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP;CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD;CONFIG_SOC_PM_SUPPORT_RTC_FAST_MEM_PD;CONFIG_SOC_PM_SUPPORT_RTC_SLOW_MEM_PD;CONFIG_SOC_PM_SUPPORT_RC_FAST_PD;CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD;CONFIG_SOC_PM_SUPPORT_MODEM_PD;CONFIG_SOC_CONFIGURABLE_VDDSDIO_SUPPORTED;CONFIG_SOC_PM_MODEM_PD_BY_SW;CONFIG_SOC_CLK_APLL_SUPPORTED;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_CLK_LP_FAST_SUPPORT_XTAL_D4;CONFIG_SOC_SDMMC_USE_IOMUX;CONFIG_SOC_SDMMC_NUM_SLOTS;CONFIG_SOC_SDMMC_DATA_WIDTH_MAX;CONFIG_SOC_WIFI_WAPI_SUPPORT;CONFIG_SOC_WIFI_CSI_SUPPORT;CONFIG_SOC_WIFI_MESH_SUPPORT;CONFIG_SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW;CONFIG_SOC_WIFI_NAN_SUPPORT;CONFIG_SOC_BLE_SUPPORTED;CONFIG_SOC_BLE_MESH_SUPPORTED;CONFIG_SOC_BT_CLASSIC_SUPPORTED;CONFIG_SOC_BLUFI_SUPPORTED;CONFIG_SOC_BT_H2C_ENC_KEY_CTRL_ENH_VSC_SUPPORTED;CONFIG_SOC_BLE_MULTI_CONN_OPTIMIZATION;CONFIG_SOC_ULP_HAS_ADC;CONFIG_SOC_PHY_COMBO_MODULE;CONFIG_SOC_EMAC_RMII_CLK_OUT_INTERNAL_LOOPBACK;CONFIG_IDF_CMAKE;CONFIG_IDF_TOOLCHAIN;CONFIG_IDF_TOOLCHAIN_GCC;CONFIG_IDF_TARGET_ARCH_XTENSA;CONFIG_IDF_TARGET_ARCH;CONFIG_IDF_TARGET;CONFIG_IDF_INIT_VERSION;CONFIG_IDF_TARGET_ESP32;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_ESP32_NO_BLOBS;CONFIG_APP_COMPATIBLE_PRE_V2_1_BOOTLOADERS;CONFIG_ESP32_COMPATIBLE_PRE_V2_1_BOOTLOADERS;CONFIG_APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS;CONFIG_ESP32_COMPATIBLE_PRE_V3_1_BOOTLOADERS;CONFIG_BOOTLOADER_COMPILE_TIME_DATE;CONFIG_BOOTLOADER_PROJECT_VER;CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE;CONFIG_APP_ROLLBACK_ENABLE;CONFIG_BOOTLOADER_OFFSET_IN_FLASH;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_NONE;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF;CONFIG_BOOTLOADER_LOG_VERSION_1;CONFIG_BOOTLOADER_LOG_VERSION;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_LOG_COLORS;CONFIG_BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS;CONFIG_BOOTLOADER_LOG_MODE_TEXT_EN;CONFIG_BOOTLOADER_LOG_MODE_TEXT;CONFIG_BOOTLOADER_CPU_CLK_FREQ_MHZ;CONFIG_BOOTLOADER_FLASH_DC_AWARE;CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT;CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_8V;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_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_SECURE_BOOT_V1_SUPPORTED;CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT;CONFIG_SECURE_BOOT;CONFIG_SECURE_FLASH_ENC_ENABLED;CONFIG_FLASH_ENCRYPTION_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_HAS_UART_BUF_SWITCH;CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND;CONFIG_ESP_ROM_HAS_NEWLIB;CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT;CONFIG_ESP_ROM_HAS_NEWLIB_32BIT_TIME;CONFIG_ESP_ROM_HAS_SW_FLOAT;CONFIG_ESP_ROM_USB_OTG_NUM;CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM;CONFIG_ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB;CONFIG_ESP_ROM_HAS_OUTPUT_PUTC_FUNC;CONFIG_ESPTOOLPY_NO_STUB;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_80M;CONFIG_ESPTOOLPY_FLASHFREQ_40M;CONFIG_ESPTOOLPY_FLASHFREQ_26M;CONFIG_ESPTOOLPY_FLASHFREQ_20M;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_TWO_OTA_LARGE;CONFIG_PARTITION_TABLE_CUSTOM;CONFIG_PARTITION_TABLE_CUSTOM_FILENAME;CONFIG_PARTITION_TABLE_FILENAME;CONFIG_PARTITION_TABLE_OFFSET;CONFIG_PARTITION_TABLE_MD5;CONFIG_COMPILER_OPTIMIZATION_DEBUG;CONFIG_OPTIMIZATION_LEVEL_DEBUG;CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG;CONFIG_COMPILER_OPTIMIZATION_DEFAULT;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_ASSERT_NDEBUG_EVALUATE;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_NO_MERGE_CONSTANTS;CONFIG_COMPILER_WARN_WRITE_STRINGS;CONFIG_WARN_WRITE_STRINGS;CONFIG_COMPILER_DISABLE_DEFAULT_ERRORS;CONFIG_COMPILER_DISABLE_GCC12_WARNINGS;CONFIG_COMPILER_DISABLE_GCC13_WARNINGS;CONFIG_COMPILER_DISABLE_GCC14_WARNINGS;CONFIG_COMPILER_DISABLE_GCC15_WARNINGS;CONFIG_COMPILER_DUMP_RTL_FILES;CONFIG_COMPILER_RT_LIB_GCCLIB;CONFIG_COMPILER_RT_LIB_NAME;CONFIG_COMPILER_ORPHAN_SECTIONS_ERROR;CONFIG_COMPILER_ORPHAN_SECTIONS_WARNING;CONFIG_COMPILER_ORPHAN_SECTIONS_PLACE;CONFIG_COMPILER_STATIC_ANALYZER;CONFIG_COMPILER_CXX_GLIBCXX_CONSTEXPR_NO_CHANGE;CONFIG_COMPILER_CXX_GLIBCXX_CONSTEXPR_COLD_CONSTEXPR;CONFIG_COMPILER_CXX_GLIBCXX_CONSTEXPR_COLD;CONFIG_BT_ENABLED;CONFIG_BLE_LOG_ENABLED;CONFIG_BT_BLE_LOG_SPI_OUT_ENABLED;CONFIG_BT_BLE_LOG_UHCI_OUT_ENABLED;CONFIG_BT_LE_USED_MEM_STATISTICS_ENABLED;CONFIG_CONSOLE_SORTED_HELP;CONFIG_TWAI_ISR_IN_IRAM_LEGACY;CONFIG_TWAI_SUPPRESS_DEPRECATE_WARN;CONFIG_TWAI_SKIP_LEGACY_CONFLICT_CHECK;CONFIG_I2C_SUPPRESS_DEPRECATE_WARN;CONFIG_I2C_SKIP_LEGACY_CONFLICT_CHECK;CONFIG_TOUCH_SUPPRESS_DEPRECATE_WARN;CONFIG_TOUCH_SKIP_LEGACY_CONFLICT_CHECK;CONFIG_EFUSE_CUSTOM_TABLE;CONFIG_EFUSE_VIRTUAL;CONFIG_EFUSE_CODE_SCHEME_COMPAT_NONE;CONFIG_EFUSE_CODE_SCHEME_COMPAT_3_4;CONFIG_EFUSE_CODE_SCHEME_COMPAT_REPEAT;CONFIG_EFUSE_MAX_BLK_LEN;CONFIG_ESP_TLS_USING_MBEDTLS;CONFIG_ESP_TLS_CUSTOM_STACK;CONFIG_ESP_TLS_USE_SECURE_ELEMENT;CONFIG_ESP_TLS_CLIENT_SESSION_TICKETS;CONFIG_ESP_TLS_SERVER_SESSION_TICKETS;CONFIG_ESP_TLS_SERVER_CERT_SELECT_HOOK;CONFIG_ESP_TLS_SERVER_MIN_AUTH_MODE_OPTIONAL;CONFIG_ESP_TLS_PSK_VERIFICATION;CONFIG_ESP_TLS_INSECURE;CONFIG_ESP_TLS_DYN_BUF_STRATEGY_SUPPORTED;CONFIG_ADC_ONESHOT_CTRL_FUNC_IN_IRAM;CONFIG_ADC_CONTINUOUS_ISR_IRAM_SAFE;CONFIG_ADC_CALI_EFUSE_TP_ENABLE;CONFIG_ADC_CAL_EFUSE_TP_ENABLE;CONFIG_ADC_CALI_EFUSE_VREF_ENABLE;CONFIG_ADC_CAL_EFUSE_VREF_ENABLE;CONFIG_ADC_CALI_LUT_ENABLE;CONFIG_ADC_CAL_LUT_ENABLE;CONFIG_ADC_DISABLE_DAC_OUTPUT;CONFIG_ADC_DISABLE_DAC;CONFIG_ADC_ENABLE_DEBUG_LOG;CONFIG_ESP_COEX_ENABLED;CONFIG_ESP_COEX_GPIO_DEBUG;CONFIG_ESP_ERR_TO_NAME_LOOKUP;CONFIG_DAC_CTRL_FUNC_IN_IRAM;CONFIG_DAC_ISR_IRAM_SAFE;CONFIG_DAC_ENABLE_DEBUG_LOG;CONFIG_DAC_DMA_AUTO_16BIT_ALIGN;CONFIG_GPIO_CTRL_FUNC_IN_IRAM;CONFIG_GPTIMER_ISR_HANDLER_IN_IRAM;CONFIG_GPTIMER_CTRL_FUNC_IN_IRAM;CONFIG_GPTIMER_ISR_CACHE_SAFE;CONFIG_GPTIMER_ISR_IRAM_SAFE;CONFIG_GPTIMER_OBJ_CACHE_SAFE;CONFIG_GPTIMER_ENABLE_DEBUG_LOG;CONFIG_I2C_ISR_IRAM_SAFE;CONFIG_I2C_ENABLE_DEBUG_LOG;CONFIG_I2C_MASTER_ISR_HANDLER_IN_IRAM;CONFIG_I2S_ISR_IRAM_SAFE;CONFIG_I2S_CTRL_FUNC_IN_IRAM;CONFIG_I2S_ENABLE_DEBUG_LOG;CONFIG_I3C_MASTER_ISR_CACHE_SAFE;CONFIG_I3C_MASTER_ENABLE_DEBUG_LOG;CONFIG_I3C_MASTER_ISR_HANDLER_IN_IRAM;CONFIG_LEDC_CTRL_FUNC_IN_IRAM;CONFIG_MCPWM_ISR_HANDLER_IN_IRAM;CONFIG_MCPWM_ISR_CACHE_SAFE;CONFIG_MCPWM_ISR_IRAM_SAFE;CONFIG_MCPWM_CTRL_FUNC_IN_IRAM;CONFIG_MCPWM_OBJ_CACHE_SAFE;CONFIG_MCPWM_ENABLE_DEBUG_LOG;CONFIG_PCNT_CTRL_FUNC_IN_IRAM;CONFIG_PCNT_ISR_IRAM_SAFE;CONFIG_PCNT_ENABLE_DEBUG_LOG;CONFIG_RMT_ENCODER_FUNC_IN_IRAM;CONFIG_RMT_TX_ISR_HANDLER_IN_IRAM;CONFIG_RMT_RX_ISR_HANDLER_IN_IRAM;CONFIG_RMT_RECV_FUNC_IN_IRAM;CONFIG_RMT_TX_ISR_CACHE_SAFE;CONFIG_RMT_RX_ISR_CACHE_SAFE;CONFIG_RMT_OBJ_CACHE_SAFE;CONFIG_RMT_ENABLE_DEBUG_LOG;CONFIG_RMT_ISR_IRAM_SAFE;CONFIG_SDM_CTRL_FUNC_IN_IRAM;CONFIG_SDM_ENABLE_DEBUG_LOG;CONFIG_SD_HOST_SDMMC_ISR_CACHE_SAFE;CONFIG_SPI_MASTER_ISR_IN_IRAM;CONFIG_SPI_SLAVE_IN_IRAM;CONFIG_SPI_SLAVE_ISR_IN_IRAM;CONFIG_TOUCH_CTRL_FUNC_IN_IRAM;CONFIG_TOUCH_ISR_IRAM_SAFE;CONFIG_TOUCH_ENABLE_DEBUG_LOG;CONFIG_TOUCH_SKIP_FSM_CHECK;CONFIG_TWAI_ISR_IN_IRAM;CONFIG_TWAI_IO_FUNC_IN_IRAM;CONFIG_TWAI_ISR_CACHE_SAFE;CONFIG_TWAI_ENABLE_DEBUG_LOG;CONFIG_UART_ISR_IN_IRAM;CONFIG_UHCI_ISR_HANDLER_IN_IRAM;CONFIG_UHCI_ISR_CACHE_SAFE;CONFIG_UHCI_ENABLE_DEBUG_LOG;CONFIG_ETH_ENABLED;CONFIG_ETH_USE_ESP32_EMAC;CONFIG_ETH_DMA_BUFFER_SIZE;CONFIG_ETH_DMA_RX_BUFFER_NUM;CONFIG_ETH_DMA_TX_BUFFER_NUM;CONFIG_ETH_IRAM_OPTIMIZATION;CONFIG_ETH_USE_SPI_ETHERNET;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_GDBSTUB_ENABLED;CONFIG_ESP_SYSTEM_GDBSTUB_RUNTIME;CONFIG_ESP_GDBSTUB_SUPPORT_TASKS;CONFIG_GDBSTUB_SUPPORT_TASKS;CONFIG_ESP_GDBSTUB_MAX_TASKS;CONFIG_GDBSTUB_MAX_TASKS;CONFIG_ESPHID_TASK_SIZE_BT;CONFIG_ESPHID_TASK_SIZE_BLE;CONFIG_ESP_HTTP_CLIENT_ENABLE_HTTPS;CONFIG_ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH;CONFIG_ESP_HTTP_CLIENT_ENABLE_DIGEST_AUTH;CONFIG_ESP_HTTP_CLIENT_ENABLE_CUSTOM_TRANSPORT;CONFIG_ESP_HTTP_CLIENT_ENABLE_GET_CONTENT_RANGE;CONFIG_ESP_HTTP_CLIENT_EVENT_POST_TIMEOUT;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_HTTPD_SERVER_EVENT_POST_TIMEOUT;CONFIG_ESP_HTTPS_OTA_DECRYPT_CB;CONFIG_ESP_HTTPS_OTA_ALLOW_HTTP;CONFIG_OTA_ALLOW_HTTP;CONFIG_ESP_HTTPS_OTA_EVENT_POST_TIMEOUT;CONFIG_ESP_HTTPS_OTA_ENABLE_PARTIAL_DOWNLOAD;CONFIG_ESP_HTTPS_SERVER_ENABLE;CONFIG_ESP_HTTPS_SERVER_EVENT_POST_TIMEOUT;CONFIG_ESP_HTTPS_SERVER_CERT_SELECT_HOOK;CONFIG_ESP_HW_SUPPORT_FUNC_IN_IRAM;CONFIG_ESP32_REV_MIN_0;CONFIG_ESP32_REV_MIN_1;CONFIG_ESP32_REV_MIN_1_1;CONFIG_ESP32_REV_MIN_2;CONFIG_ESP32_REV_MIN_3;CONFIG_ESP32_REV_MIN_3_1;CONFIG_ESP32_REV_MIN;CONFIG_ESP32_REV_MIN_FULL;CONFIG_ESP_REV_MIN_FULL;CONFIG_ESP32_REV_MAX_FULL;CONFIG_ESP_REV_MAX_FULL;CONFIG_ESP_EFUSE_BLOCK_REV_MIN_FULL;CONFIG_ESP_EFUSE_BLOCK_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_ESP_MAC_UNIVERSAL_MAC_ADDRESSES;CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_TWO;CONFIG_TWO_UNIVERSAL_MAC_ADDRESS;CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR;CONFIG_FOUR_UNIVERSAL_MAC_ADDRESS;CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES;CONFIG_NUMBER_OF_UNIVERSAL_MAC_ADDRESS;CONFIG_ESP_MAC_IGNORE_MAC_CRC_ERROR;CONFIG_ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC;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_WAIT_FLASH_READY_EXTRA_DELAY;CONFIG_ESP32_DEEP_SLEEP_WAKEUP_DELAY;CONFIG_ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY;CONFIG_ESP_SLEEP_CACHE_SAFE_ASSERTION;CONFIG_ESP_SLEEP_DEBUG;CONFIG_ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS;CONFIG_RTC_CLK_SRC_INT_RC;CONFIG_ESP32_RTC_CLK_SRC_INT_RC;CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_RC;CONFIG_RTC_CLK_SRC_EXT_CRYS;CONFIG_ESP32_RTC_CLK_SRC_EXT_CRYS;CONFIG_ESP32_RTC_CLOCK_SOURCE_EXTERNAL_CRYSTAL;CONFIG_RTC_CLK_SRC_EXT_OSC;CONFIG_ESP32_RTC_CLK_SRC_EXT_OSC;CONFIG_ESP32_RTC_CLOCK_SOURCE_EXTERNAL_OSC;CONFIG_RTC_CLK_SRC_INT_8MD256;CONFIG_ESP32_RTC_CLK_SRC_INT_8MD256;CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_8MD256;CONFIG_RTC_CLK_CAL_CYCLES;CONFIG_ESP32_RTC_CLK_CAL_CYCLES;CONFIG_RTC_CLK_FUNC_IN_IRAM;CONFIG_RTC_TIME_FUNC_IN_IRAM;CONFIG_ESP_PERIPH_CTRL_FUNC_IN_IRAM;CONFIG_PERIPH_CTRL_FUNC_IN_IRAM;CONFIG_ESP_REGI2C_CTRL_FUNC_IN_IRAM;CONFIG_XTAL_FREQ_26;CONFIG_ESP32_XTAL_FREQ_26;CONFIG_XTAL_FREQ_32;CONFIG_XTAL_FREQ_40;CONFIG_ESP32_XTAL_FREQ_40;CONFIG_XTAL_FREQ_AUTO;CONFIG_ESP32_XTAL_FREQ_AUTO;CONFIG_XTAL_FREQ;CONFIG_ESP32_XTAL_FREQ;CONFIG_ESP_BROWNOUT_DET;CONFIG_BROWNOUT_DET;CONFIG_ESP32_BROWNOUT_DET;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_0;CONFIG_BROWNOUT_DET_LVL_SEL_0;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_0;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_1;CONFIG_BROWNOUT_DET_LVL_SEL_1;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_1;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_2;CONFIG_BROWNOUT_DET_LVL_SEL_2;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_2;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_3;CONFIG_BROWNOUT_DET_LVL_SEL_3;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_3;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_4;CONFIG_BROWNOUT_DET_LVL_SEL_4;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_4;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_5;CONFIG_BROWNOUT_DET_LVL_SEL_5;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_5;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_6;CONFIG_BROWNOUT_DET_LVL_SEL_6;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_6;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7;CONFIG_BROWNOUT_DET_LVL_SEL_7;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_7;CONFIG_ESP_BROWNOUT_DET_LVL;CONFIG_BROWNOUT_DET_LVL;CONFIG_ESP32_BROWNOUT_DET_LVL;CONFIG_ESP_BROWNOUT_USE_INTR;CONFIG_ESP_SYSTEM_BROWNOUT_INTR;CONFIG_ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM;CONFIG_ESP_INTR_IN_IRAM;CONFIG_LCD_ENABLE_DEBUG_LOG;CONFIG_LIBC_NEWLIB;CONFIG_LIBC_PICOLIBC;CONFIG_LIBC_PICOLIBC_NEWLIB_COMPATIBILITY;CONFIG_LIBC_MISC_IN_IRAM;CONFIG_LIBC_LOCKS_PLACE_IN_IRAM;CONFIG_LIBC_STDOUT_LINE_ENDING_CRLF;CONFIG_NEWLIB_STDOUT_LINE_ENDING_CRLF;CONFIG_LIBC_STDOUT_LINE_ENDING_LF;CONFIG_NEWLIB_STDOUT_LINE_ENDING_LF;CONFIG_LIBC_STDOUT_LINE_ENDING_CR;CONFIG_NEWLIB_STDOUT_LINE_ENDING_CR;CONFIG_LIBC_STDIN_LINE_ENDING_CRLF;CONFIG_NEWLIB_STDIN_LINE_ENDING_CRLF;CONFIG_LIBC_STDIN_LINE_ENDING_LF;CONFIG_NEWLIB_STDIN_LINE_ENDING_LF;CONFIG_LIBC_STDIN_LINE_ENDING_CR;CONFIG_NEWLIB_STDIN_LINE_ENDING_CR;CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT;CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT;CONFIG_ESP32_TIME_SYSCALL_USE_RTC_HRT;CONFIG_ESP32_TIME_SYSCALL_USE_RTC_FRC1;CONFIG_LIBC_TIME_SYSCALL_USE_RTC;CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC;CONFIG_ESP32_TIME_SYSCALL_USE_RTC;CONFIG_LIBC_TIME_SYSCALL_USE_HRT;CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT;CONFIG_ESP32_TIME_SYSCALL_USE_HRT;CONFIG_ESP32_TIME_SYSCALL_USE_FRC1;CONFIG_LIBC_TIME_SYSCALL_USE_NONE;CONFIG_NEWLIB_TIME_SYSCALL_USE_NONE;CONFIG_ESP32_TIME_SYSCALL_USE_NONE;CONFIG_LIBC_ASSERT_BUFFER_SIZE;CONFIG_ESP_NETIF_LOST_IP_TIMER_ENABLE;CONFIG_ESP_NETIF_IP_LOST_TIMER_INTERVAL;CONFIG_ESP_NETIF_PROVIDE_CUSTOM_IMPLEMENTATION;CONFIG_ESP_NETIF_TCPIP_LWIP;CONFIG_ESP_NETIF_LOOPBACK;CONFIG_ESP_NETIF_USES_TCPIP_WITH_BSD_API;CONFIG_ESP_NETIF_REPORT_DATA_TRAFFIC;CONFIG_ESP_NETIF_RECEIVE_REPORT_ERRORS;CONFIG_ESP_NETIF_L2_TAP;CONFIG_ESP_NETIF_BRIDGE_EN;CONFIG_ESP_NETIF_SET_DNS_PER_DEFAULT_NETIF;CONFIG_ESP_PHY_ENABLED;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_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_ESP_PHY_PLL_TRACK_PERIOD_MS;CONFIG_ESP_PHY_PLL_TRACK_DEBUG;CONFIG_ESP_PHY_RECORD_USED_TIME;CONFIG_ESP_PHY_IRAM_OPT;CONFIG_ESP_PHY_DEBUG;CONFIG_PM_SLEEP_FUNC_IN_IRAM;CONFIG_PM_ENABLE;CONFIG_PM_SLP_IRAM_OPT;CONFIG_SPIRAM;CONFIG_SPIRAM_SUPPORT;CONFIG_ESP32_SPIRAM_SUPPORT;CONFIG_RINGBUF_IN_IRAM;CONFIG_RINGBUF_PLACE_ISR_FUNCTIONS_INTO_FLASH;CONFIG_ESP_ROM_PRINT_IN_IRAM;CONFIG_ESP_CONSOLE_UART_DEFAULT;CONFIG_CONSOLE_UART_DEFAULT;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_UART;CONFIG_CONSOLE_UART;CONFIG_ESP_CONSOLE_UART_NUM;CONFIG_CONSOLE_UART_NUM;CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM;CONFIG_ESP_CONSOLE_UART_BAUDRATE;CONFIG_CONSOLE_UART_BAUDRATE;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_80;CONFIG_ESP32_DEFAULT_CPU_FREQ_80;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160;CONFIG_ESP32_DEFAULT_CPU_FREQ_160;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240;CONFIG_ESP32_DEFAULT_CPU_FREQ_240;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ;CONFIG_ESP32_DEFAULT_CPU_FREQ_MHZ;CONFIG_ESP32_USE_FIXED_STATIC_RAM_SIZE;CONFIG_ESP_SYSTEM_ESP32_SRAM1_REGION_AS_IRAM;CONFIG_ESP32_TRAX;CONFIG_ESP32_TRACEMEM_RESERVE_DRAM;CONFIG_TRACEMEM_RESERVE_DRAM;CONFIG_ESP_SYSTEM_IN_IRAM;CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT;CONFIG_ESP32_PANIC_PRINT_HALT;CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT;CONFIG_ESP32_PANIC_PRINT_REBOOT;CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT;CONFIG_ESP32_PANIC_SILENT_REBOOT;CONFIG_ESP_SYSTEM_PANIC_GDBSTUB;CONFIG_ESP32_PANIC_GDBSTUB;CONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS;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_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_TASK_WDT_INIT;CONFIG_TASK_WDT;CONFIG_ESP_TASK_WDT;CONFIG_ESP_TASK_WDT_PANIC;CONFIG_TASK_WDT_PANIC;CONFIG_ESP_TASK_WDT_TIMEOUT_S;CONFIG_TASK_WDT_TIMEOUT_S;CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0;CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0;CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1;CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU1;CONFIG_ESP_PANIC_HANDLER_IRAM;CONFIG_ESP_DEBUG_STUBS_ENABLE;CONFIG_ESP32_DEBUG_STUBS_ENABLE;CONFIG_ESP_DEBUG_OCDAWARE;CONFIG_ESP32_DEBUG_OCDAWARE;CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_5;CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4;CONFIG_ESP32_DISABLE_BASIC_ROM_CONSOLE;CONFIG_DISABLE_BASIC_ROM_CONSOLE;CONFIG_ESP_IPC_ENABLE;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_IN_IRAM;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_CPU0;CONFIG_ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD;CONFIG_ESP_TIMER_IMPL_TG0_LAC;CONFIG_ESP_TRACE_LIB_EXTERNAL;CONFIG_ESP_TRACE_LIB_NONE;CONFIG_ESP_TRACE_LIB_NAME;CONFIG_ESP_TRACE_TRANSPORT_APPTRACE;CONFIG_ESP32_APPTRACE_ENABLE;CONFIG_ESP_TRACE_TRANSPORT_NONE;CONFIG_ESP_TRACE_TRANSPORT_NAME;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_ESP_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_H2E;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_WPA3_COMPATIBLE_SUPPORT;CONFIG_ESP_WIFI_SLP_IRAM_OPT;CONFIG_ESP_WIFI_SLP_DEFAULT_MIN_ACTIVE_TIME;CONFIG_ESP_WIFI_BSS_MAX_IDLE_SUPPORT;CONFIG_ESP_WIFI_SLP_DEFAULT_MAX_ACTIVE_TIME;CONFIG_ESP_WIFI_SLP_DEFAULT_WAIT_BROADCAST_DATA_TIME;CONFIG_ESP_WIFI_STA_DISCONNECTED_PM_ENABLE;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_NAN_SYNC_ENABLE;CONFIG_ESP_WIFI_NAN_ENABLE;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_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_WPS_RECONNECT_ON_FAIL;CONFIG_ESP_WIFI_DEBUG_PRINT;CONFIG_WPA_DEBUG_PRINT;CONFIG_ESP_WIFI_ENTERPRISE_SUPPORT;CONFIG_ESP_WIFI_ENT_FREE_DYNAMIC_BUFFER;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_MAX_LFN;CONFIG_FATFS_API_ENCODING_ANSI_OEM;CONFIG_FATFS_API_ENCODING_UTF_8;CONFIG_FATFS_FS_LOCK;CONFIG_FATFS_TIMEOUT_MS;CONFIG_FATFS_PER_FILE_CACHE;CONFIG_FATFS_USE_FASTSEEK;CONFIG_FATFS_USE_STRFUNC_NONE;CONFIG_FATFS_USE_STRFUNC_WITHOUT_CRLF_CONV;CONFIG_FATFS_USE_STRFUNC_WITH_CRLF_CONV;CONFIG_FATFS_VFS_FSTAT_BLKSIZE;CONFIG_FATFS_IMMEDIATE_FSYNC;CONFIG_FATFS_USE_LABEL;CONFIG_FATFS_LINK_LOCK;CONFIG_FATFS_USE_DYN_BUFFERS;CONFIG_FATFS_DONT_TRUST_FREE_CLUSTER_CNT;CONFIG_FATFS_DONT_TRUST_LAST_ALLOC;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_USE_TIMERS;CONFIG_FREERTOS_TIMER_SERVICE_TASK_NAME;CONFIG_FREERTOS_TIMER_TASK_AFFINITY_CPU0;CONFIG_FREERTOS_TIMER_TASK_AFFINITY_CPU1;CONFIG_FREERTOS_TIMER_TASK_NO_AFFINITY;CONFIG_FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY;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_USE_LIST_DATA_INTEGRITY_CHECK_BYTES;CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS;CONFIG_FREERTOS_USE_APPLICATION_TASK_TAG;CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER;CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK;CONFIG_FREERTOS_TLSP_DELETION_CALLBACKS;CONFIG_FREERTOS_TASK_PRE_DELETION_HOOK;CONFIG_ENABLE_STATIC_TASK_CLEAN_UP_HOOK;CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER;CONFIG_FREERTOS_ISR_STACKSIZE;CONFIG_FREERTOS_INTERRUPT_BACKTRACE;CONFIG_FREERTOS_FPU_IN_ISR;CONFIG_FREERTOS_TICK_SUPPORT_CORETIMER;CONFIG_FREERTOS_CORETIMER_0;CONFIG_FREERTOS_CORETIMER_1;CONFIG_FREERTOS_SYSTICK_USES_CCOUNT;CONFIG_FREERTOS_IN_IRAM;CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE;CONFIG_FREERTOS_PORT;CONFIG_FREERTOS_NO_AFFINITY;CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION;CONFIG_FREERTOS_DEBUG_OCDAWARE;CONFIG_FREERTOS_NUMBER_OF_CORES;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_GPIO_USE_ROM_IMPL;CONFIG_HEAP_HAS_EXEC_HEAP;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_TASK_TRACKING;CONFIG_HEAP_ABORT_WHEN_ALLOCATION_FAILS;CONFIG_HEAP_PLACE_FUNCTION_INTO_FLASH;CONFIG_LOG_VERSION_1;CONFIG_LOG_VERSION_2;CONFIG_LOG_VERSION;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_MASTER_LEVEL;CONFIG_LOG_DYNAMIC_LEVEL_CONTROL;CONFIG_LOG_TAG_LEVEL_IMPL_NONE;CONFIG_LOG_TAG_LEVEL_IMPL_LINKED_LIST;CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST;CONFIG_LOG_TAG_LEVEL_CACHE_ARRAY;CONFIG_LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP;CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_SIZE;CONFIG_LOG_COLORS;CONFIG_LOG_TIMESTAMP_SOURCE_RTOS;CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM;CONFIG_LOG_MODE_TEXT_EN;CONFIG_LOG_MODE_TEXT;CONFIG_LOG_IN_IRAM;CONFIG_LWIP_ENABLE;CONFIG_LWIP_LOCAL_HOSTNAME;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_FORCE_ROUTER_FORWARDING;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_IP_DEFAULT_TTL;CONFIG_LWIP_IP4_FRAG;CONFIG_LWIP_IP6_FRAG;CONFIG_LWIP_IP4_REASSEMBLY;CONFIG_LWIP_IP6_REASSEMBLY;CONFIG_LWIP_IP_REASS_MAX_PBUFS;CONFIG_LWIP_IPV6_DUP_DETECT_ATTEMPTS;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_DOES_ACD_CHECK;CONFIG_LWIP_DHCP_DOES_NOT_CHECK_OFFERED_IP;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_REPORT_CLIENT_HOSTNAME;CONFIG_LWIP_DHCPS_LEASE_UNIT;CONFIG_LWIP_DHCPS_MAX_STATION_NUM;CONFIG_LWIP_DHCPS_MAX_HOSTNAME_LEN;CONFIG_LWIP_DHCPS_STATIC_ENTRIES;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_LINK_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_ACCEPTMBOX_SIZE;CONFIG_LWIP_TCP_QUEUE_OOSEQ;CONFIG_TCP_QUEUE_OOSEQ;CONFIG_LWIP_TCP_OOSEQ_TIMEOUT;CONFIG_LWIP_TCP_OOSEQ_MAX_PBUFS;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_IPV6_MEMP_NUM_ND6_QUEUE;CONFIG_LWIP_IPV6_ND6_NUM_NEIGHBORS;CONFIG_LWIP_IPV6_ND6_NUM_PREFIXES;CONFIG_LWIP_IPV6_ND6_NUM_ROUTERS;CONFIG_LWIP_IPV6_ND6_NUM_DESTINATIONS;CONFIG_LWIP_IPV6_ND6_ROUTE_INFO_OPTION_SUPPORT;CONFIG_LWIP_PPP_SUPPORT;CONFIG_PPP_SUPPORT;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_SNTP_STARTUP_DELAY;CONFIG_LWIP_SNTP_MAXIMUM_STARTUP_DELAY;CONFIG_LWIP_DNS_MAX_HOST_IP;CONFIG_LWIP_DNS_MAX_SERVERS;CONFIG_LWIP_FALLBACK_DNS_SERVER_SUPPORT;CONFIG_LWIP_DNS_SETSERVER_WITH_NETIF;CONFIG_LWIP_USE_ESP_GETADDRINFO;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_DHCP_EXTRA_OPTION_NONE;CONFIG_LWIP_HOOK_DHCP_EXTRA_OPTION_DEFAULT;CONFIG_LWIP_HOOK_DHCP_EXTRA_OPTION_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_DNS_EXT_RESOLVE_NONE;CONFIG_LWIP_HOOK_DNS_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_VER_4_X_SUPPORT;CONFIG_MBEDTLS_COMPILER_OPTIMIZATION_NONE;CONFIG_MBEDTLS_COMPILER_OPTIMIZATION_SIZE;CONFIG_MBEDTLS_COMPILER_OPTIMIZATION_PERF;CONFIG_MBEDTLS_FS_IO;CONFIG_MBEDTLS_THREADING_C;CONFIG_MBEDTLS_THREADING_ALT;CONFIG_MBEDTLS_THREADING_PTHREAD;CONFIG_MBEDTLS_ERROR_STRINGS;CONFIG_MBEDTLS_VERSION_C;CONFIG_MBEDTLS_HAVE_TIME;CONFIG_MBEDTLS_PLATFORM_TIME_ALT;CONFIG_MBEDTLS_HAVE_TIME_DATE;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_VERSION_FEATURES;CONFIG_MBEDTLS_DEBUG;CONFIG_MBEDTLS_SELF_TEST;CONFIG_MBEDTLS_X509_USE_C;CONFIG_MBEDTLS_PEM_PARSE_C;CONFIG_MBEDTLS_PEM_WRITE_C;CONFIG_MBEDTLS_PK_C;CONFIG_MBEDTLS_PK_PARSE_C;CONFIG_MBEDTLS_PK_WRITE_C;CONFIG_MBEDTLS_X509_REMOVE_INFO;CONFIG_MBEDTLS_X509_CRL_PARSE_C;CONFIG_MBEDTLS_X509_CRT_PARSE_C;CONFIG_MBEDTLS_X509_CSR_PARSE_C;CONFIG_MBEDTLS_X509_CREATE_C;CONFIG_MBEDTLS_X509_RSASSA_PSS_SUPPORT;CONFIG_MBEDTLS_X509_TRUSTED_CERT_CALLBACK;CONFIG_MBEDTLS_ASN1_PARSE_C;CONFIG_MBEDTLS_ASN1_WRITE_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_DEPRECATED_LIST;CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS;CONFIG_MBEDTLS_ALLOW_WEAK_CERTIFICATE_VERIFICATION;CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_CROSS_SIGNED_VERIFY;CONFIG_MBEDTLS_TLS_ENABLED;CONFIG_MBEDTLS_SSL_PROTO_TLS1_2;CONFIG_MBEDTLS_SSL_PROTO_TLS1_3;CONFIG_MBEDTLS_SSL_PROTO_GMTSSL1_1;CONFIG_MBEDTLS_TLS_SERVER;CONFIG_MBEDTLS_TLS_CLIENT;CONFIG_MBEDTLS_TLS_SERVER_AND_CLIENT;CONFIG_MBEDTLS_TLS_SERVER_ONLY;CONFIG_MBEDTLS_TLS_CLIENT_ONLY;CONFIG_MBEDTLS_TLS_DISABLED;CONFIG_MBEDTLS_SSL_KEEP_PEER_CERTIFICATE;CONFIG_MBEDTLS_SSL_CONTEXT_SERIALIZATION;CONFIG_MBEDTLS_SSL_CACHE_C;CONFIG_MBEDTLS_SSL_ALL_ALERT_MESSAGES;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_SSL_SERVER_NAME_INDICATION;CONFIG_MBEDTLS_SSL_ALPN;CONFIG_MBEDTLS_SSL_MAX_FRAGMENT_LENGTH;CONFIG_MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH;CONFIG_MBEDTLS_SSL_RENEGOTIATION;CONFIG_MBEDTLS_CLIENT_SSL_SESSION_TICKETS;CONFIG_MBEDTLS_SERVER_SSL_SESSION_TICKETS;CONFIG_MBEDTLS_SSL_KEYING_MATERIAL_EXPORT;CONFIG_MBEDTLS_SSL_PROTO_DTLS;CONFIG_MBEDTLS_AES_C;CONFIG_MBEDTLS_CAMELLIA_C;CONFIG_MBEDTLS_ARIA_C;CONFIG_MBEDTLS_DES_C;CONFIG_MBEDTLS_CCM_C;CONFIG_MBEDTLS_CIPHER_MODE_CBC;CONFIG_MBEDTLS_CIPHER_MODE_CFB;CONFIG_MBEDTLS_CIPHER_MODE_CTR;CONFIG_MBEDTLS_CIPHER_MODE_OFB;CONFIG_MBEDTLS_CIPHER_MODE_XTS;CONFIG_MBEDTLS_GCM_C;CONFIG_MBEDTLS_NIST_KW_C;CONFIG_MBEDTLS_AES_ROM_TABLES;CONFIG_MBEDTLS_AES_FEWER_TABLES;CONFIG_MBEDTLS_AES_ONLY_128_BIT_KEY_LENGTH;CONFIG_MBEDTLS_CMAC_C;CONFIG_MBEDTLS_BIGNUM_C;CONFIG_MBEDTLS_RSA_C;CONFIG_MBEDTLS_ECP_C;CONFIG_MBEDTLS_ECP_DP_SECP256R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP384R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP521R1_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_DHM_C;CONFIG_MBEDTLS_ECDH_C;CONFIG_MBEDTLS_ECJPAKE_C;CONFIG_MBEDTLS_ECDSA_C;CONFIG_MBEDTLS_PK_PARSE_EC_EXTENDED;CONFIG_MBEDTLS_PK_PARSE_EC_COMPRESSED;CONFIG_MBEDTLS_ECDSA_DETERMINISTIC;CONFIG_MBEDTLS_ECP_RESTARTABLE;CONFIG_MBEDTLS_RIPEMD160_C;CONFIG_MBEDTLS_MD_C;CONFIG_MBEDTLS_MD5_C;CONFIG_MBEDTLS_SHA1_C;CONFIG_MBEDTLS_SHA224_C;CONFIG_MBEDTLS_SHA256_C;CONFIG_MBEDTLS_SHA384_C;CONFIG_MBEDTLS_SHA512_C;CONFIG_MBEDTLS_SHA3_C;CONFIG_MBEDTLS_ROM_MD5;CONFIG_MBEDTLS_HARDWARE_SHA;CONFIG_MBEDTLS_HARDWARE_MPI;CONFIG_MBEDTLS_LARGE_KEY_SOFTWARE_MPI;CONFIG_MBEDTLS_HARDWARE_AES;CONFIG_MBEDTLS_AES_SOFT_FALLBACK;CONFIG_MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER;CONFIG_MBEDTLS_ATCA_HW_ECDSA_SIGN;CONFIG_MBEDTLS_ATCA_HW_ECDSA_VERIFY;CONFIG_MBEDTLS_ENTROPY_FORCE_SHA256;CONFIG_MBEDTLS_CTR_DRBG_C;CONFIG_MBEDTLS_HMAC_DRBG_C;CONFIG_MBEDTLS_BASE64_C;CONFIG_MBEDTLS_PKCS5_C;CONFIG_MBEDTLS_PKCS7_C;CONFIG_MBEDTLS_PKCS1_V15;CONFIG_MBEDTLS_PKCS1_V21;CONFIG_MBEDTLS_CHACHA20_C;CONFIG_NVS_ASSERT_ERROR_CHECK;CONFIG_NVS_LEGACY_DUP_KEYS_COMPATIBILITY;CONFIG_NVS_BDL_STACK;CONFIG_OPENTHREAD_ENABLED;CONFIG_OPENTHREAD_SPINEL_ONLY;CONFIG_OPENTHREAD_DEBUG;CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_0;CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_1;CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_2;CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_PATCH_VERSION;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_SD_ENABLE_SDIO_SUPPORT;CONFIG_MMU_PAGE_SIZE_64KB;CONFIG_MMU_PAGE_MODE;CONFIG_MMU_PAGE_SIZE;CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC;CONFIG_SPI_FLASH_BROWNOUT_RESET;CONFIG_SPI_FLASH_SUSPEND_TSUS_VAL_US;CONFIG_SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND;CONFIG_SPI_FLASH_FORCE_ENABLE_C6_H2_SUSPEND;CONFIG_SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM;CONFIG_SPI_FLASH_VERIFY_WRITE;CONFIG_SPI_FLASH_ENABLE_COUNTERS;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_SHARE_SPI1_BUS;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_VENDOR_XMC_SUPPORT_ENABLED;CONFIG_SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED;CONFIG_SPI_FLASH_VENDOR_ISSI_SUPPORT_ENABLED;CONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORT_ENABLED;CONFIG_SPI_FLASH_VENDOR_WINBOND_SUPPORT_ENABLED;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_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_ESP32_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_VFS_SUPPORT_IO;CONFIG_VFS_SUPPORT_DIR;CONFIG_VFS_SUPPORT_SELECT;CONFIG_VFS_SUPPRESS_SELECT_DEBUG_OUTPUT;CONFIG_SUPPRESS_SELECT_DEBUG_OUTPUT;CONFIG_VFS_SELECT_IN_RAM;CONFIG_VFS_SUPPORT_TERMIOS;CONFIG_SUPPORT_TERMIOS;CONFIG_VFS_MAX_COUNT;CONFIG_VFS_SEMIHOSTFS_MAX_MOUNT_POINTS;CONFIG_SEMIHOSTFS_MAX_MOUNT_POINTS;CONFIG_VFS_INITIALIZE_DEV_NULL;CONFIG_WL_SECTOR_SIZE_512;CONFIG_WL_SECTOR_SIZE_4096;CONFIG_WL_SECTOR_SIZE;CONFIG_IDF_EXPERIMENTAL_FEATURES) +# List of deprecated options for backward compatibility +set(CONFIG_APP_BUILD_TYPE_ELF_RAM "") +set(CONFIG_NO_BLOBS "") +set(CONFIG_ESP32_NO_BLOBS "") +set(CONFIG_ESP32_COMPATIBLE_PRE_V2_1_BOOTLOADERS "") +set(CONFIG_ESP32_COMPATIBLE_PRE_V3_1_BOOTLOADERS "") +set(CONFIG_APP_ROLLBACK_ENABLE "") +set(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_NONE "") +set(CONFIG_LOG_BOOTLOADER_LEVEL_NONE "") +set(CONFIG_LOG_BOOTLOADER_LEVEL_ERROR "") +set(CONFIG_LOG_BOOTLOADER_LEVEL_WARN "") +set(CONFIG_LOG_BOOTLOADER_LEVEL_INFO "y") +set(CONFIG_LOG_BOOTLOADER_LEVEL_DEBUG "") +set(CONFIG_LOG_BOOTLOADER_LEVEL_VERBOSE "") +set(CONFIG_LOG_BOOTLOADER_LEVEL "3") +set(CONFIG_FLASH_ENCRYPTION_ENABLED "") +set(CONFIG_FLASHMODE_QIO "") +set(CONFIG_FLASHMODE_QOUT "") +set(CONFIG_FLASHMODE_DIO "y") +set(CONFIG_FLASHMODE_DOUT "") +set(CONFIG_MONITOR_BAUD "115200") +set(CONFIG_OPTIMIZATION_LEVEL_DEBUG "y") +set(CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG "y") +set(CONFIG_COMPILER_OPTIMIZATION_DEFAULT "y") +set(CONFIG_OPTIMIZATION_LEVEL_RELEASE "") +set(CONFIG_COMPILER_OPTIMIZATION_LEVEL_RELEASE "") +set(CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED "y") +set(CONFIG_OPTIMIZATION_ASSERTIONS_SILENT "") +set(CONFIG_OPTIMIZATION_ASSERTIONS_DISABLED "") +set(CONFIG_OPTIMIZATION_ASSERTION_LEVEL "2") +set(CONFIG_CXX_EXCEPTIONS "") +set(CONFIG_STACK_CHECK_NONE "y") +set(CONFIG_STACK_CHECK_NORM "") +set(CONFIG_STACK_CHECK_STRONG "") +set(CONFIG_STACK_CHECK_ALL "") +set(CONFIG_WARN_WRITE_STRINGS "") +set(CONFIG_ADC_CAL_EFUSE_TP_ENABLE "y") +set(CONFIG_ADC_CAL_EFUSE_VREF_ENABLE "y") +set(CONFIG_ADC_CAL_LUT_ENABLE "y") +set(CONFIG_ADC_DISABLE_DAC "y") +set(CONFIG_GPTIMER_ISR_IRAM_SAFE "") +set(CONFIG_MCPWM_ISR_IRAM_SAFE "") +set(CONFIG_EVENT_LOOP_PROFILING "") +set(CONFIG_POST_EVENTS_FROM_ISR "y") +set(CONFIG_POST_EVENTS_FROM_IRAM_ISR "y") +set(CONFIG_GDBSTUB_SUPPORT_TASKS "y") +set(CONFIG_GDBSTUB_MAX_TASKS "32") +set(CONFIG_OTA_ALLOW_HTTP "") +set(CONFIG_TWO_UNIVERSAL_MAC_ADDRESS "") +set(CONFIG_FOUR_UNIVERSAL_MAC_ADDRESS "y") +set(CONFIG_NUMBER_OF_UNIVERSAL_MAC_ADDRESS "4") +set(CONFIG_ESP_SYSTEM_PD_FLASH "") +set(CONFIG_ESP32_DEEP_SLEEP_WAKEUP_DELAY "2000") +set(CONFIG_ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY "2000") +set(CONFIG_ESP32_RTC_CLK_SRC_INT_RC "y") +set(CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_RC "y") +set(CONFIG_ESP32_RTC_CLK_SRC_EXT_CRYS "") +set(CONFIG_ESP32_RTC_CLOCK_SOURCE_EXTERNAL_CRYSTAL "") +set(CONFIG_ESP32_RTC_CLK_SRC_EXT_OSC "") +set(CONFIG_ESP32_RTC_CLOCK_SOURCE_EXTERNAL_OSC "") +set(CONFIG_ESP32_RTC_CLK_SRC_INT_8MD256 "") +set(CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_8MD256 "") +set(CONFIG_ESP32_RTC_CLK_CAL_CYCLES "1024") +set(CONFIG_PERIPH_CTRL_FUNC_IN_IRAM "y") +set(CONFIG_ESP32_XTAL_FREQ_26 "") +set(CONFIG_ESP32_XTAL_FREQ_40 "y") +set(CONFIG_ESP32_XTAL_FREQ_AUTO "") +set(CONFIG_ESP32_XTAL_FREQ "40") +set(CONFIG_BROWNOUT_DET "y") +set(CONFIG_ESP32_BROWNOUT_DET "y") +set(CONFIG_BROWNOUT_DET_LVL_SEL_0 "y") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_0 "y") +set(CONFIG_BROWNOUT_DET_LVL_SEL_1 "") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_1 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_2 "") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_2 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_3 "") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_3 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_4 "") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_4 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_5 "") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_5 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_6 "") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_6 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_7 "") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_7 "") +set(CONFIG_BROWNOUT_DET_LVL "0") +set(CONFIG_ESP32_BROWNOUT_DET_LVL "0") +set(CONFIG_ESP_SYSTEM_BROWNOUT_INTR "y") +set(CONFIG_NEWLIB_STDOUT_LINE_ENDING_CRLF "y") +set(CONFIG_NEWLIB_STDOUT_LINE_ENDING_LF "") +set(CONFIG_NEWLIB_STDOUT_LINE_ENDING_CR "") +set(CONFIG_NEWLIB_STDIN_LINE_ENDING_CRLF "") +set(CONFIG_NEWLIB_STDIN_LINE_ENDING_LF "") +set(CONFIG_NEWLIB_STDIN_LINE_ENDING_CR "y") +set(CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT "y") +set(CONFIG_ESP32_TIME_SYSCALL_USE_RTC_HRT "y") +set(CONFIG_ESP32_TIME_SYSCALL_USE_RTC_FRC1 "y") +set(CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC "") +set(CONFIG_ESP32_TIME_SYSCALL_USE_RTC "") +set(CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT "") +set(CONFIG_ESP32_TIME_SYSCALL_USE_HRT "") +set(CONFIG_ESP32_TIME_SYSCALL_USE_FRC1 "") +set(CONFIG_NEWLIB_TIME_SYSCALL_USE_NONE "") +set(CONFIG_ESP32_TIME_SYSCALL_USE_NONE "") +set(CONFIG_ESP32_PHY_CALIBRATION_AND_DATA_STORAGE "y") +set(CONFIG_ESP32_PHY_INIT_DATA_IN_PARTITION "") +set(CONFIG_ESP32_PHY_MAX_WIFI_TX_POWER "20") +set(CONFIG_ESP32_PHY_MAX_TX_POWER "20") +set(CONFIG_REDUCE_PHY_TX_POWER "") +set(CONFIG_ESP32_REDUCE_PHY_TX_POWER "") +set(CONFIG_SPIRAM_SUPPORT "") +set(CONFIG_ESP32_SPIRAM_SUPPORT "") +set(CONFIG_CONSOLE_UART_DEFAULT "y") +set(CONFIG_CONSOLE_UART_CUSTOM "") +set(CONFIG_CONSOLE_UART_NONE "") +set(CONFIG_ESP_CONSOLE_UART_NONE "") +set(CONFIG_CONSOLE_UART "y") +set(CONFIG_CONSOLE_UART_NUM "0") +set(CONFIG_CONSOLE_UART_BAUDRATE "115200") +set(CONFIG_ESP32_DEFAULT_CPU_FREQ_80 "") +set(CONFIG_ESP32_DEFAULT_CPU_FREQ_160 "y") +set(CONFIG_ESP32_DEFAULT_CPU_FREQ_240 "") +set(CONFIG_ESP32_DEFAULT_CPU_FREQ_MHZ "160") +set(CONFIG_TRACEMEM_RESERVE_DRAM "0x0") +set(CONFIG_ESP32_PANIC_PRINT_HALT "") +set(CONFIG_ESP32_PANIC_PRINT_REBOOT "y") +set(CONFIG_ESP32_PANIC_SILENT_REBOOT "") +set(CONFIG_ESP32_PANIC_GDBSTUB "") +set(CONFIG_SYSTEM_EVENT_QUEUE_SIZE "32") +set(CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE "2304") +set(CONFIG_MAIN_TASK_STACK_SIZE "3584") +set(CONFIG_INT_WDT "y") +set(CONFIG_INT_WDT_TIMEOUT_MS "300") +set(CONFIG_INT_WDT_CHECK_CPU1 "y") +set(CONFIG_TASK_WDT "y") +set(CONFIG_ESP_TASK_WDT "y") +set(CONFIG_TASK_WDT_PANIC "") +set(CONFIG_TASK_WDT_TIMEOUT_S "5") +set(CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0 "y") +set(CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU1 "y") +set(CONFIG_ESP32_DEBUG_STUBS_ENABLE "") +set(CONFIG_ESP32_DEBUG_OCDAWARE "y") +set(CONFIG_DISABLE_BASIC_ROM_CONSOLE "") +set(CONFIG_IPC_TASK_STACK_SIZE "1024") +set(CONFIG_TIMER_TASK_STACK_SIZE "3584") +set(CONFIG_ESP32_APPTRACE_ENABLE "") +set(CONFIG_ESP32_WIFI_ENABLED "y") +set(CONFIG_ESP32_WIFI_STATIC_RX_BUFFER_NUM "10") +set(CONFIG_ESP32_WIFI_DYNAMIC_RX_BUFFER_NUM "32") +set(CONFIG_ESP32_WIFI_STATIC_TX_BUFFER "") +set(CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER "y") +set(CONFIG_ESP32_WIFI_TX_BUFFER_TYPE "1") +set(CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM "32") +set(CONFIG_ESP32_WIFI_CSI_ENABLED "") +set(CONFIG_ESP32_WIFI_AMPDU_TX_ENABLED "y") +set(CONFIG_ESP32_WIFI_TX_BA_WIN "6") +set(CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED "y") +set(CONFIG_ESP32_WIFI_RX_BA_WIN "6") +set(CONFIG_ESP32_WIFI_NVS_ENABLED "y") +set(CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_0 "y") +set(CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_1 "") +set(CONFIG_ESP32_WIFI_SOFTAP_BEACON_MAX_LEN "752") +set(CONFIG_ESP32_WIFI_MGMT_SBUF_NUM "32") +set(CONFIG_ESP32_WIFI_IRAM_OPT "y") +set(CONFIG_ESP32_WIFI_RX_IRAM_OPT "y") +set(CONFIG_ESP32_WIFI_ENABLE_WPA3_SAE "y") +set(CONFIG_ESP32_WIFI_ENABLE_WPA3_OWE_STA "y") +set(CONFIG_ESP_WIFI_NAN_ENABLE "") +set(CONFIG_WPA_MBEDTLS_CRYPTO "y") +set(CONFIG_WPA_MBEDTLS_TLS_CLIENT "y") +set(CONFIG_WPA_WAPI_PSK "") +set(CONFIG_WPA_11KV_SUPPORT "") +set(CONFIG_WPA_MBO_SUPPORT "") +set(CONFIG_WPA_DPP_SUPPORT "") +set(CONFIG_WPA_11R_SUPPORT "") +set(CONFIG_WPA_WPS_SOFTAP_REGISTRAR "") +set(CONFIG_WPA_WPS_STRICT "") +set(CONFIG_WPA_DEBUG_PRINT "") +set(CONFIG_ESP32_ENABLE_COREDUMP_TO_FLASH "") +set(CONFIG_ESP32_ENABLE_COREDUMP_TO_UART "") +set(CONFIG_ESP32_ENABLE_COREDUMP_TO_NONE "y") +set(CONFIG_TIMER_TASK_PRIORITY "1") +set(CONFIG_TIMER_TASK_STACK_DEPTH "2048") +set(CONFIG_TIMER_QUEUE_LENGTH "10") +set(CONFIG_ENABLE_STATIC_TASK_CLEAN_UP_HOOK "") +set(CONFIG_HAL_ASSERTION_SILIENT "") +set(CONFIG_L2_TO_L3_COPY "") +set(CONFIG_ESP_GRATUITOUS_ARP "y") +set(CONFIG_GARP_TMR_INTERVAL "60") +set(CONFIG_TCPIP_RECVMBOX_SIZE "32") +set(CONFIG_TCP_MAXRTX "12") +set(CONFIG_TCP_SYNMAXRTX "12") +set(CONFIG_TCP_MSS "1440") +set(CONFIG_TCP_MSL "60000") +set(CONFIG_TCP_SND_BUF_DEFAULT "5760") +set(CONFIG_TCP_WND_DEFAULT "5760") +set(CONFIG_TCP_RECVMBOX_SIZE "6") +set(CONFIG_TCP_QUEUE_OOSEQ "y") +set(CONFIG_TCP_OVERSIZE_MSS "y") +set(CONFIG_TCP_OVERSIZE_QUARTER_MSS "") +set(CONFIG_TCP_OVERSIZE_DISABLE "") +set(CONFIG_UDP_RECVMBOX_SIZE "6") +set(CONFIG_TCPIP_TASK_STACK_SIZE "3072") +set(CONFIG_TCPIP_TASK_AFFINITY_NO_AFFINITY "y") +set(CONFIG_TCPIP_TASK_AFFINITY_CPU0 "") +set(CONFIG_TCPIP_TASK_AFFINITY_CPU1 "") +set(CONFIG_TCPIP_TASK_AFFINITY "0x7fffffff") +set(CONFIG_PPP_SUPPORT "") +set(CONFIG_ESP32_PTHREAD_TASK_PRIO_DEFAULT "5") +set(CONFIG_ESP32_PTHREAD_TASK_STACK_SIZE_DEFAULT "3072") +set(CONFIG_ESP32_PTHREAD_STACK_MIN "768") +set(CONFIG_ESP32_DEFAULT_PTHREAD_CORE_NO_AFFINITY "y") +set(CONFIG_ESP32_DEFAULT_PTHREAD_CORE_0 "") +set(CONFIG_ESP32_DEFAULT_PTHREAD_CORE_1 "") +set(CONFIG_ESP32_PTHREAD_TASK_CORE_DEFAULT "-1") +set(CONFIG_ESP32_PTHREAD_TASK_NAME_DEFAULT "pthread") +set(CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS "y") +set(CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_FAILS "") +set(CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ALLOWED "") +set(CONFIG_ESP32_ULP_COPROC_ENABLED "") +set(CONFIG_SUPPRESS_SELECT_DEBUG_OUTPUT "y") +set(CONFIG_SUPPORT_TERMIOS "") +set(CONFIG_SEMIHOSTFS_MAX_MOUNT_POINTS "1") diff --git a/build/config/sdkconfig.h b/build/config/sdkconfig.h new file mode 100644 index 0000000..2f6d127 --- /dev/null +++ b/build/config/sdkconfig.h @@ -0,0 +1,871 @@ +/* + * Automatically generated file. DO NOT EDIT. + * Espressif IoT Development Framework (ESP-IDF) 6.0.0 Configuration Header + */ +#pragma once +#define CONFIG_SOC_CAPS_ECO_VER_MAX 301 +#define CONFIG_SOC_ADC_SUPPORTED 1 +#define CONFIG_SOC_DAC_SUPPORTED 1 +#define CONFIG_SOC_UART_SUPPORTED 1 +#define CONFIG_SOC_MCPWM_SUPPORTED 1 +#define CONFIG_SOC_GPTIMER_SUPPORTED 1 +#define CONFIG_SOC_SDMMC_HOST_SUPPORTED 1 +#define CONFIG_SOC_BT_SUPPORTED 1 +#define CONFIG_SOC_PCNT_SUPPORTED 1 +#define CONFIG_SOC_PHY_SUPPORTED 1 +#define CONFIG_SOC_WIFI_SUPPORTED 1 +#define CONFIG_SOC_SDIO_SLAVE_SUPPORTED 1 +#define CONFIG_SOC_TWAI_SUPPORTED 1 +#define CONFIG_SOC_EFUSE_SUPPORTED 1 +#define CONFIG_SOC_EMAC_SUPPORTED 1 +#define CONFIG_SOC_ULP_SUPPORTED 1 +#define CONFIG_SOC_CCOMP_TIMER_SUPPORTED 1 +#define CONFIG_SOC_RTC_FAST_MEM_SUPPORTED 1 +#define CONFIG_SOC_RTC_SLOW_MEM_SUPPORTED 1 +#define CONFIG_SOC_RTC_MEM_SUPPORTED 1 +#define CONFIG_SOC_RTC_TIMER_V1_SUPPORTED 1 +#define CONFIG_SOC_I2S_SUPPORTED 1 +#define CONFIG_SOC_I2S_I80_LCD_SUPPORTED 1 +#define CONFIG_SOC_LCD_I80_SUPPORTED 1 +#define CONFIG_SOC_RMT_SUPPORTED 1 +#define CONFIG_SOC_SDM_SUPPORTED 1 +#define CONFIG_SOC_GPSPI_SUPPORTED 1 +#define CONFIG_SOC_LEDC_SUPPORTED 1 +#define CONFIG_SOC_I2C_SUPPORTED 1 +#define CONFIG_SOC_SUPPORT_COEXISTENCE 1 +#define CONFIG_SOC_AES_SUPPORTED 1 +#define CONFIG_SOC_MPI_SUPPORTED 1 +#define CONFIG_SOC_SHA_SUPPORTED 1 +#define CONFIG_SOC_FLASH_ENC_SUPPORTED 1 +#define CONFIG_SOC_SECURE_BOOT_SUPPORTED 1 +#define CONFIG_SOC_TOUCH_SENSOR_SUPPORTED 1 +#define CONFIG_SOC_BOD_SUPPORTED 1 +#define CONFIG_SOC_ULP_FSM_SUPPORTED 1 +#define CONFIG_SOC_CLK_TREE_SUPPORTED 1 +#define CONFIG_SOC_MPU_SUPPORTED 1 +#define CONFIG_SOC_WDT_SUPPORTED 1 +#define CONFIG_SOC_SPI_FLASH_SUPPORTED 1 +#define CONFIG_SOC_RNG_SUPPORTED 1 +#define CONFIG_SOC_LIGHT_SLEEP_SUPPORTED 1 +#define CONFIG_SOC_DEEP_SLEEP_SUPPORTED 1 +#define CONFIG_SOC_LP_PERIPH_SHARE_INTERRUPT 1 +#define CONFIG_SOC_PM_SUPPORTED 1 +#define CONFIG_SOC_DPORT_WORKAROUND_DIS_INTERRUPT_LVL 5 +#define CONFIG_SOC_XTAL_SUPPORT_26M 1 +#define CONFIG_SOC_XTAL_SUPPORT_40M 1 +#define CONFIG_SOC_ADC_RTC_CTRL_SUPPORTED 1 +#define CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED 1 +#define CONFIG_SOC_ADC_DMA_SUPPORTED 1 +#define CONFIG_SOC_ADC_PERIPH_NUM 2 +#define CONFIG_SOC_ADC_MAX_CHANNEL_NUM 10 +#define CONFIG_SOC_ADC_ATTEN_NUM 4 +#define CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM 2 +#define CONFIG_SOC_ADC_PATT_LEN_MAX 16 +#define CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH 9 +#define CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH 12 +#define CONFIG_SOC_ADC_DIGI_RESULT_BYTES 2 +#define CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV 4 +#define CONFIG_SOC_ADC_DIGI_MONITOR_NUM 0 +#define CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH 2000000 +#define CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW 20000 +#define CONFIG_SOC_ADC_RTC_MIN_BITWIDTH 9 +#define CONFIG_SOC_ADC_RTC_MAX_BITWIDTH 12 +#define CONFIG_SOC_ADC_SHARED_POWER 1 +#define CONFIG_SOC_BROWNOUT_RESET_SUPPORTED 1 +#define CONFIG_SOC_SHARED_IDCACHE_SUPPORTED 1 +#define CONFIG_SOC_IDCACHE_PER_CORE 1 +#define CONFIG_SOC_CPU_CORES_NUM 2 +#define CONFIG_SOC_CPU_INTR_NUM 32 +#define CONFIG_SOC_CPU_HAS_FPU 1 +#define CONFIG_SOC_HP_CPU_HAS_MULTIPLE_CORES 1 +#define CONFIG_SOC_CPU_BREAKPOINTS_NUM 2 +#define CONFIG_SOC_CPU_WATCHPOINTS_NUM 2 +#define CONFIG_SOC_CPU_WATCHPOINT_MAX_REGION_SIZE 0x40 +#define CONFIG_SOC_DAC_CHAN_NUM 2 +#define CONFIG_SOC_DAC_RESOLUTION 8 +#define CONFIG_SOC_DAC_DMA_16BIT_ALIGN 1 +#define CONFIG_SOC_GPIO_PORT 1 +#define CONFIG_SOC_GPIO_PIN_COUNT 40 +#define CONFIG_SOC_GPIO_VALID_GPIO_MASK 0xFFFFFFFFFF +#define CONFIG_SOC_GPIO_IN_RANGE_MAX 39 +#define CONFIG_SOC_GPIO_OUT_RANGE_MAX 33 +#define CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK 0xEF0FEA +#define CONFIG_SOC_GPIO_CLOCKOUT_BY_IO_MUX 1 +#define CONFIG_SOC_GPIO_CLOCKOUT_CHANNEL_NUM 3 +#define CONFIG_SOC_I2C_NUM 2 +#define CONFIG_SOC_HP_I2C_NUM 2 +#define CONFIG_SOC_I2C_SUPPORT_APB 1 +#define CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR 1 +#define CONFIG_SOC_I2C_SUPPORT_SLAVE 1 +#define CONFIG_SOC_I2C_STOP_INDEPENDENT 1 +#define CONFIG_SOC_I2S_HW_VERSION_1 1 +#define CONFIG_SOC_I2S_SUPPORTS_APLL 1 +#define CONFIG_SOC_I2S_SUPPORTS_PDM 1 +#define CONFIG_SOC_I2S_SUPPORTS_PDM_TX 1 +#define CONFIG_SOC_I2S_SUPPORTS_PCM2PDM 1 +#define CONFIG_SOC_I2S_SUPPORTS_PDM_RX 1 +#define CONFIG_SOC_I2S_SUPPORTS_PDM2PCM 1 +#define CONFIG_SOC_I2S_PDM_MAX_TX_LINES 1 +#define CONFIG_SOC_I2S_PDM_MAX_RX_LINES 1 +#define CONFIG_SOC_LEDC_HAS_TIMER_SPECIFIC_MUX 1 +#define CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK 1 +#define CONFIG_SOC_LEDC_SUPPORT_REF_TICK 1 +#define CONFIG_SOC_LEDC_SUPPORT_HS_MODE 1 +#define CONFIG_SOC_LEDC_TIMER_NUM 4 +#define CONFIG_SOC_LEDC_CHANNEL_NUM 8 +#define CONFIG_SOC_LEDC_TIMER_BIT_WIDTH 20 +#define CONFIG_SOC_MMU_PERIPH_NUM 2 +#define CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM 3 +#define CONFIG_SOC_MPU_MIN_REGION_SIZE 0x20000000 +#define CONFIG_SOC_MPU_REGIONS_MAX_NUM 8 +#define CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL 64 +#define CONFIG_SOC_RTCIO_PIN_COUNT 18 +#define CONFIG_SOC_RTCIO_INPUT_OUTPUT_SUPPORTED 1 +#define CONFIG_SOC_RTCIO_HOLD_SUPPORTED 1 +#define CONFIG_SOC_RTCIO_WAKE_SUPPORTED 1 +#define CONFIG_SOC_SPI_HD_BOTH_INOUT_SUPPORTED 1 +#define CONFIG_SOC_SPI_AS_CS_SUPPORTED 1 +#define CONFIG_SOC_SPI_PERIPH_NUM 3 +#define CONFIG_SOC_SPI_DMA_CHAN_NUM 2 +#define CONFIG_SOC_SPI_MAX_CS_NUM 3 +#define CONFIG_SOC_SPI_SUPPORT_CLK_APB 1 +#define CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE 64 +#define CONFIG_SOC_SPI_MAX_PRE_DIVIDER 8192 +#define CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED 1 +#define CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED 1 +#define CONFIG_SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED 1 +#define CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED 1 +#define CONFIG_SOC_LP_TIMER_BIT_WIDTH_LO 32 +#define CONFIG_SOC_LP_TIMER_BIT_WIDTH_HI 16 +#define CONFIG_SOC_TOUCH_SENSOR_VERSION 1 +#define CONFIG_SOC_TOUCH_MIN_CHAN_ID 0 +#define CONFIG_SOC_TOUCH_MAX_CHAN_ID 9 +#define CONFIG_SOC_TOUCH_SUPPORT_SLEEP_WAKEUP 1 +#define CONFIG_SOC_TOUCH_SAMPLE_CFG_NUM 1 +#define CONFIG_SOC_TWAI_CONTROLLER_NUM 1 +#define CONFIG_SOC_TWAI_MASK_FILTER_NUM 1 +#define CONFIG_SOC_UART_NUM 3 +#define CONFIG_SOC_UART_HP_NUM 3 +#define CONFIG_SOC_UART_SUPPORT_APB_CLK 1 +#define CONFIG_SOC_UART_SUPPORT_REF_TICK 1 +#define CONFIG_SOC_UART_FIFO_LEN 128 +#define CONFIG_SOC_UART_BITRATE_MAX 5000000 +#define CONFIG_SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE 1 +#define CONFIG_SOC_SPIRAM_SUPPORTED 1 +#define CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE 1 +#define CONFIG_SOC_SHA_SUPPORT_PARALLEL_ENG 1 +#define CONFIG_SOC_SHA_ENDIANNESS_BE 1 +#define CONFIG_SOC_SHA_SUPPORT_SHA1 1 +#define CONFIG_SOC_SHA_SUPPORT_SHA256 1 +#define CONFIG_SOC_SHA_SUPPORT_SHA384 1 +#define CONFIG_SOC_SHA_SUPPORT_SHA512 1 +#define CONFIG_SOC_MPI_MEM_BLOCKS_NUM 4 +#define CONFIG_SOC_MPI_OPERATIONS_NUM 1 +#define CONFIG_SOC_RSA_MAX_BIT_LEN 4096 +#define CONFIG_SOC_AES_SUPPORT_AES_128 1 +#define CONFIG_SOC_AES_SUPPORT_AES_192 1 +#define CONFIG_SOC_AES_SUPPORT_AES_256 1 +#define CONFIG_SOC_SECURE_BOOT_V1 1 +#define CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS 1 +#define CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX 32 +#define CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE 21 +#define CONFIG_SOC_PM_SUPPORT_EXT0_WAKEUP 1 +#define CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP 1 +#define CONFIG_SOC_PM_SUPPORT_EXT_WAKEUP 1 +#define CONFIG_SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP 1 +#define CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD 1 +#define CONFIG_SOC_PM_SUPPORT_RTC_FAST_MEM_PD 1 +#define CONFIG_SOC_PM_SUPPORT_RTC_SLOW_MEM_PD 1 +#define CONFIG_SOC_PM_SUPPORT_RC_FAST_PD 1 +#define CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD 1 +#define CONFIG_SOC_PM_SUPPORT_MODEM_PD 1 +#define CONFIG_SOC_CONFIGURABLE_VDDSDIO_SUPPORTED 1 +#define CONFIG_SOC_PM_MODEM_PD_BY_SW 1 +#define CONFIG_SOC_CLK_APLL_SUPPORTED 1 +#define CONFIG_SOC_CLK_RC_FAST_D256_SUPPORTED 1 +#define CONFIG_SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256 1 +#define CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION 1 +#define CONFIG_SOC_CLK_XTAL32K_SUPPORTED 1 +#define CONFIG_SOC_CLK_LP_FAST_SUPPORT_XTAL_D4 1 +#define CONFIG_SOC_SDMMC_USE_IOMUX 1 +#define CONFIG_SOC_SDMMC_NUM_SLOTS 2 +#define CONFIG_SOC_SDMMC_DATA_WIDTH_MAX 8 +#define CONFIG_SOC_WIFI_WAPI_SUPPORT 1 +#define CONFIG_SOC_WIFI_CSI_SUPPORT 1 +#define CONFIG_SOC_WIFI_MESH_SUPPORT 1 +#define CONFIG_SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW 1 +#define CONFIG_SOC_WIFI_NAN_SUPPORT 1 +#define CONFIG_SOC_BLE_SUPPORTED 1 +#define CONFIG_SOC_BLE_MESH_SUPPORTED 1 +#define CONFIG_SOC_BT_CLASSIC_SUPPORTED 1 +#define CONFIG_SOC_BLUFI_SUPPORTED 1 +#define CONFIG_SOC_BT_H2C_ENC_KEY_CTRL_ENH_VSC_SUPPORTED 1 +#define CONFIG_SOC_BLE_MULTI_CONN_OPTIMIZATION 1 +#define CONFIG_SOC_ULP_HAS_ADC 1 +#define CONFIG_SOC_PHY_COMBO_MODULE 1 +#define CONFIG_SOC_EMAC_RMII_CLK_OUT_INTERNAL_LOOPBACK 1 +#define CONFIG_IDF_CMAKE 1 +#define CONFIG_IDF_TOOLCHAIN "gcc" +#define CONFIG_IDF_TOOLCHAIN_GCC 1 +#define CONFIG_IDF_TARGET_ARCH_XTENSA 1 +#define CONFIG_IDF_TARGET_ARCH "xtensa" +#define CONFIG_IDF_TARGET "esp32" +#define CONFIG_IDF_INIT_VERSION "6.0.0" +#define CONFIG_IDF_TARGET_ESP32 1 +#define CONFIG_IDF_FIRMWARE_CHIP_ID 0x0000 +#define CONFIG_APP_BUILD_TYPE_APP_2NDBOOT 1 +#define CONFIG_APP_BUILD_GENERATE_BINARIES 1 +#define CONFIG_APP_BUILD_BOOTLOADER 1 +#define CONFIG_APP_BUILD_USE_FLASH_SECTIONS 1 +#define CONFIG_BOOTLOADER_COMPILE_TIME_DATE 1 +#define CONFIG_BOOTLOADER_PROJECT_VER 1 +#define CONFIG_BOOTLOADER_OFFSET_IN_FLASH 0x1000 +#define CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE 1 +#define CONFIG_BOOTLOADER_LOG_VERSION_1 1 +#define CONFIG_BOOTLOADER_LOG_VERSION 1 +#define CONFIG_BOOTLOADER_LOG_LEVEL_INFO 1 +#define CONFIG_BOOTLOADER_LOG_LEVEL 3 +#define CONFIG_BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS 1 +#define CONFIG_BOOTLOADER_LOG_MODE_TEXT_EN 1 +#define CONFIG_BOOTLOADER_LOG_MODE_TEXT 1 +#define CONFIG_BOOTLOADER_CPU_CLK_FREQ_MHZ 80 +#define CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT 1 +#define CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V 1 +#define CONFIG_BOOTLOADER_REGION_PROTECTION_ENABLE 1 +#define CONFIG_BOOTLOADER_WDT_ENABLE 1 +#define CONFIG_BOOTLOADER_WDT_TIME_MS 9000 +#define CONFIG_BOOTLOADER_RESERVE_RTC_SIZE 0x0 +#define CONFIG_SECURE_BOOT_V1_SUPPORTED 1 +#define CONFIG_APP_COMPILE_TIME_DATE 1 +#define CONFIG_APP_RETRIEVE_LEN_ELF_SHA 9 +#define CONFIG_ESP_ROM_HAS_CRC_LE 1 +#define CONFIG_ESP_ROM_HAS_CRC_BE 1 +#define CONFIG_ESP_ROM_HAS_MZ_CRC32 1 +#define CONFIG_ESP_ROM_HAS_JPEG_DECODE 1 +#define CONFIG_ESP_ROM_HAS_UART_BUF_SWITCH 1 +#define CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND 1 +#define CONFIG_ESP_ROM_HAS_NEWLIB 1 +#define CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT 1 +#define CONFIG_ESP_ROM_HAS_NEWLIB_32BIT_TIME 1 +#define CONFIG_ESP_ROM_HAS_SW_FLOAT 1 +#define CONFIG_ESP_ROM_USB_OTG_NUM -1 +#define CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM -1 +#define CONFIG_ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB 1 +#define CONFIG_ESP_ROM_HAS_OUTPUT_PUTC_FUNC 1 +#define CONFIG_ESPTOOLPY_FLASHMODE_DIO 1 +#define CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR 1 +#define CONFIG_ESPTOOLPY_FLASHMODE "dio" +#define CONFIG_ESPTOOLPY_FLASHFREQ_40M 1 +#define CONFIG_ESPTOOLPY_FLASHFREQ "40m" +#define CONFIG_ESPTOOLPY_FLASHSIZE_2MB 1 +#define CONFIG_ESPTOOLPY_FLASHSIZE "2MB" +#define CONFIG_ESPTOOLPY_BEFORE_RESET 1 +#define CONFIG_ESPTOOLPY_BEFORE "default-reset" +#define CONFIG_ESPTOOLPY_AFTER_RESET 1 +#define CONFIG_ESPTOOLPY_AFTER "hard-reset" +#define CONFIG_ESPTOOLPY_MONITOR_BAUD 115200 +#define CONFIG_PARTITION_TABLE_CUSTOM 1 +#define CONFIG_PARTITION_TABLE_CUSTOM_FILENAME "partitions.csv" +#define CONFIG_PARTITION_TABLE_FILENAME "partitions.csv" +#define CONFIG_PARTITION_TABLE_OFFSET 0x8000 +#define CONFIG_PARTITION_TABLE_MD5 1 +#define CONFIG_COMPILER_OPTIMIZATION_DEBUG 1 +#define CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE 1 +#define CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB 1 +#define CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL 2 +#define CONFIG_COMPILER_HIDE_PATHS_MACROS 1 +#define CONFIG_COMPILER_STACK_CHECK_MODE_NONE 1 +#define CONFIG_COMPILER_RT_LIB_GCCLIB 1 +#define CONFIG_COMPILER_RT_LIB_NAME "gcc" +#define CONFIG_COMPILER_ORPHAN_SECTIONS_ERROR 1 +#define CONFIG_COMPILER_CXX_GLIBCXX_CONSTEXPR_NO_CHANGE 1 +#define CONFIG_EFUSE_CODE_SCHEME_COMPAT_3_4 1 +#define CONFIG_EFUSE_MAX_BLK_LEN 192 +#define CONFIG_ESP_TLS_USING_MBEDTLS 1 +#define CONFIG_ESP_TLS_DYN_BUF_STRATEGY_SUPPORTED 1 +#define CONFIG_ADC_CALI_EFUSE_TP_ENABLE 1 +#define CONFIG_ADC_CALI_EFUSE_VREF_ENABLE 1 +#define CONFIG_ADC_CALI_LUT_ENABLE 1 +#define CONFIG_ADC_DISABLE_DAC_OUTPUT 1 +#define CONFIG_ESP_COEX_ENABLED 1 +#define CONFIG_ESP_ERR_TO_NAME_LOOKUP 1 +#define CONFIG_DAC_DMA_AUTO_16BIT_ALIGN 1 +#define CONFIG_GPTIMER_ISR_HANDLER_IN_IRAM 1 +#define CONFIG_GPTIMER_OBJ_CACHE_SAFE 1 +#define CONFIG_I2C_MASTER_ISR_HANDLER_IN_IRAM 1 +#define CONFIG_MCPWM_ISR_HANDLER_IN_IRAM 1 +#define CONFIG_MCPWM_OBJ_CACHE_SAFE 1 +#define CONFIG_RMT_ENCODER_FUNC_IN_IRAM 1 +#define CONFIG_RMT_TX_ISR_HANDLER_IN_IRAM 1 +#define CONFIG_RMT_RX_ISR_HANDLER_IN_IRAM 1 +#define CONFIG_RMT_OBJ_CACHE_SAFE 1 +#define CONFIG_SPI_MASTER_ISR_IN_IRAM 1 +#define CONFIG_SPI_SLAVE_ISR_IN_IRAM 1 +#define CONFIG_ETH_ENABLED 1 +#define CONFIG_ETH_USE_ESP32_EMAC 1 +#define CONFIG_ETH_DMA_BUFFER_SIZE 512 +#define CONFIG_ETH_DMA_RX_BUFFER_NUM 10 +#define CONFIG_ETH_DMA_TX_BUFFER_NUM 10 +#define CONFIG_ETH_USE_SPI_ETHERNET 1 +#define CONFIG_ESP_EVENT_POST_FROM_ISR 1 +#define CONFIG_ESP_EVENT_POST_FROM_IRAM_ISR 1 +#define CONFIG_ESP_GDBSTUB_ENABLED 1 +#define CONFIG_ESP_GDBSTUB_SUPPORT_TASKS 1 +#define CONFIG_ESP_GDBSTUB_MAX_TASKS 32 +#define CONFIG_ESPHID_TASK_SIZE_BT 2048 +#define CONFIG_ESPHID_TASK_SIZE_BLE 4096 +#define CONFIG_ESP_HTTP_CLIENT_ENABLE_HTTPS 1 +#define CONFIG_ESP_HTTP_CLIENT_EVENT_POST_TIMEOUT 2000 +#define CONFIG_HTTPD_MAX_REQ_HDR_LEN 1024 +#define CONFIG_HTTPD_MAX_URI_LEN 512 +#define CONFIG_HTTPD_ERR_RESP_NO_DELAY 1 +#define CONFIG_HTTPD_PURGE_BUF_LEN 32 +#define CONFIG_HTTPD_SERVER_EVENT_POST_TIMEOUT 2000 +#define CONFIG_ESP_HTTPS_OTA_EVENT_POST_TIMEOUT 2000 +#define CONFIG_ESP_HTTPS_SERVER_EVENT_POST_TIMEOUT 2000 +#define CONFIG_ESP_HW_SUPPORT_FUNC_IN_IRAM 1 +#define CONFIG_ESP32_REV_MIN_0 1 +#define CONFIG_ESP32_REV_MIN 0 +#define CONFIG_ESP32_REV_MIN_FULL 0 +#define CONFIG_ESP_REV_MIN_FULL 0 +#define CONFIG_ESP32_REV_MAX_FULL 399 +#define CONFIG_ESP_REV_MAX_FULL 399 +#define CONFIG_ESP_EFUSE_BLOCK_REV_MIN_FULL 0 +#define CONFIG_ESP_EFUSE_BLOCK_REV_MAX_FULL 99 +#define CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA 1 +#define CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP 1 +#define CONFIG_ESP_MAC_ADDR_UNIVERSE_BT 1 +#define CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH 1 +#define CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR 1 +#define CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES 4 +#define CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR 1 +#define CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES 4 +#define CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND 1 +#define CONFIG_ESP_SLEEP_RTC_BUS_ISO_WORKAROUND 1 +#define CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY 2000 +#define CONFIG_ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS 1 +#define CONFIG_RTC_CLK_SRC_INT_RC 1 +#define CONFIG_RTC_CLK_CAL_CYCLES 1024 +#define CONFIG_RTC_CLK_FUNC_IN_IRAM 1 +#define CONFIG_RTC_TIME_FUNC_IN_IRAM 1 +#define CONFIG_ESP_PERIPH_CTRL_FUNC_IN_IRAM 1 +#define CONFIG_ESP_REGI2C_CTRL_FUNC_IN_IRAM 1 +#define CONFIG_XTAL_FREQ_40 1 +#define CONFIG_XTAL_FREQ 40 +#define CONFIG_ESP_BROWNOUT_DET 1 +#define CONFIG_ESP_BROWNOUT_DET_LVL_SEL_0 1 +#define CONFIG_ESP_BROWNOUT_DET_LVL 0 +#define CONFIG_ESP_BROWNOUT_USE_INTR 1 +#define CONFIG_ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM 1 +#define CONFIG_ESP_INTR_IN_IRAM 1 +#define CONFIG_LIBC_PICOLIBC 1 +#define CONFIG_LIBC_PICOLIBC_NEWLIB_COMPATIBILITY 1 +#define CONFIG_LIBC_MISC_IN_IRAM 1 +#define CONFIG_LIBC_LOCKS_PLACE_IN_IRAM 1 +#define CONFIG_LIBC_STDOUT_LINE_ENDING_CRLF 1 +#define CONFIG_LIBC_STDIN_LINE_ENDING_CR 1 +#define CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT 1 +#define CONFIG_LIBC_ASSERT_BUFFER_SIZE 200 +#define CONFIG_ESP_NETIF_LOST_IP_TIMER_ENABLE 1 +#define CONFIG_ESP_NETIF_IP_LOST_TIMER_INTERVAL 120 +#define CONFIG_ESP_NETIF_TCPIP_LWIP 1 +#define CONFIG_ESP_NETIF_USES_TCPIP_WITH_BSD_API 1 +#define CONFIG_ESP_NETIF_REPORT_DATA_TRAFFIC 1 +#define CONFIG_ESP_NETIF_RECEIVE_REPORT_ERRORS 1 +#define CONFIG_ESP_PHY_ENABLED 1 +#define CONFIG_ESP_PHY_CALIBRATION_AND_DATA_STORAGE 1 +#define CONFIG_ESP_PHY_MAX_WIFI_TX_POWER 20 +#define CONFIG_ESP_PHY_MAX_TX_POWER 20 +#define CONFIG_ESP_PHY_RF_CAL_PARTIAL 1 +#define CONFIG_ESP_PHY_CALIBRATION_MODE 0 +#define CONFIG_ESP_PHY_PLL_TRACK_PERIOD_MS 1000 +#define CONFIG_ESP_PHY_IRAM_OPT 1 +#define CONFIG_ESP_ROM_PRINT_IN_IRAM 1 +#define CONFIG_ESP_CONSOLE_UART_DEFAULT 1 +#define CONFIG_ESP_CONSOLE_UART 1 +#define CONFIG_ESP_CONSOLE_UART_NUM 0 +#define CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM 0 +#define CONFIG_ESP_CONSOLE_UART_BAUDRATE 115200 +#define CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160 1 +#define CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ 160 +#define CONFIG_ESP32_TRACEMEM_RESERVE_DRAM 0x0 +#define CONFIG_ESP_SYSTEM_IN_IRAM 1 +#define CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT 1 +#define CONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS 0 +#define CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE 32 +#define CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE 2304 +#define CONFIG_ESP_MAIN_TASK_STACK_SIZE 3584 +#define CONFIG_ESP_MAIN_TASK_AFFINITY_CPU0 1 +#define CONFIG_ESP_MAIN_TASK_AFFINITY 0x0 +#define CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE 2048 +#define CONFIG_ESP_INT_WDT 1 +#define CONFIG_ESP_INT_WDT_TIMEOUT_MS 300 +#define CONFIG_ESP_INT_WDT_CHECK_CPU1 1 +#define CONFIG_ESP_TASK_WDT_EN 1 +#define CONFIG_ESP_TASK_WDT_INIT 1 +#define CONFIG_ESP_TASK_WDT_TIMEOUT_S 5 +#define CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0 1 +#define CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1 1 +#define CONFIG_ESP_DEBUG_OCDAWARE 1 +#define CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4 1 +#define CONFIG_ESP_IPC_ENABLE 1 +#define CONFIG_ESP_IPC_TASK_STACK_SIZE 1024 +#define CONFIG_ESP_IPC_USES_CALLERS_PRIORITY 1 +#define CONFIG_ESP_IPC_ISR_ENABLE 1 +#define CONFIG_ESP_TIMER_IN_IRAM 1 +#define CONFIG_ESP_TIME_FUNCS_USE_RTC_TIMER 1 +#define CONFIG_ESP_TIME_FUNCS_USE_ESP_TIMER 1 +#define CONFIG_ESP_TIMER_TASK_STACK_SIZE 3584 +#define CONFIG_ESP_TIMER_INTERRUPT_LEVEL 1 +#define CONFIG_ESP_TIMER_TASK_AFFINITY 0x0 +#define CONFIG_ESP_TIMER_TASK_AFFINITY_CPU0 1 +#define CONFIG_ESP_TIMER_ISR_AFFINITY_CPU0 1 +#define CONFIG_ESP_TIMER_IMPL_TG0_LAC 1 +#define CONFIG_ESP_TRACE_LIB_NONE 1 +#define CONFIG_ESP_TRACE_LIB_NAME "none" +#define CONFIG_ESP_TRACE_TRANSPORT_NONE 1 +#define CONFIG_ESP_TRACE_TRANSPORT_NAME "none" +#define CONFIG_ESP_WIFI_ENABLED 1 +#define CONFIG_ESP_WIFI_STATIC_RX_BUFFER_NUM 10 +#define CONFIG_ESP_WIFI_DYNAMIC_RX_BUFFER_NUM 32 +#define CONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER 1 +#define CONFIG_ESP_WIFI_TX_BUFFER_TYPE 1 +#define CONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER_NUM 32 +#define CONFIG_ESP_WIFI_STATIC_RX_MGMT_BUFFER 1 +#define CONFIG_ESP_WIFI_DYNAMIC_RX_MGMT_BUF 0 +#define CONFIG_ESP_WIFI_RX_MGMT_BUF_NUM_DEF 5 +#define CONFIG_ESP_WIFI_AMPDU_TX_ENABLED 1 +#define CONFIG_ESP_WIFI_TX_BA_WIN 6 +#define CONFIG_ESP_WIFI_AMPDU_RX_ENABLED 1 +#define CONFIG_ESP_WIFI_RX_BA_WIN 6 +#define CONFIG_ESP_WIFI_NVS_ENABLED 1 +#define CONFIG_ESP_WIFI_TASK_PINNED_TO_CORE_0 1 +#define CONFIG_ESP_WIFI_SOFTAP_BEACON_MAX_LEN 752 +#define CONFIG_ESP_WIFI_MGMT_SBUF_NUM 32 +#define CONFIG_ESP_WIFI_IRAM_OPT 1 +#define CONFIG_ESP_WIFI_RX_IRAM_OPT 1 +#define CONFIG_ESP_WIFI_ENABLE_WPA3_SAE 1 +#define CONFIG_ESP_WIFI_ENABLE_SAE_H2E 1 +#define CONFIG_ESP_WIFI_ENABLE_SAE_PK 1 +#define CONFIG_ESP_WIFI_SOFTAP_SAE_SUPPORT 1 +#define CONFIG_ESP_WIFI_ENABLE_WPA3_OWE_STA 1 +#define CONFIG_ESP_WIFI_WPA3_COMPATIBLE_SUPPORT 1 +#define CONFIG_ESP_WIFI_SLP_DEFAULT_MIN_ACTIVE_TIME 50 +#define CONFIG_ESP_WIFI_SLP_DEFAULT_MAX_ACTIVE_TIME 10 +#define CONFIG_ESP_WIFI_SLP_DEFAULT_WAIT_BROADCAST_DATA_TIME 15 +#define CONFIG_ESP_WIFI_STA_DISCONNECTED_PM_ENABLE 1 +#define CONFIG_ESP_WIFI_GMAC_SUPPORT 1 +#define CONFIG_ESP_WIFI_SOFTAP_SUPPORT 1 +#define CONFIG_ESP_WIFI_ESPNOW_MAX_ENCRYPT_NUM 7 +#define CONFIG_ESP_WIFI_MBEDTLS_CRYPTO 1 +#define CONFIG_ESP_WIFI_MBEDTLS_TLS_CLIENT 1 +#define CONFIG_ESP_WIFI_ENTERPRISE_SUPPORT 1 +#define CONFIG_ESP_COREDUMP_ENABLE_TO_NONE 1 +#define CONFIG_FATFS_VOLUME_COUNT 2 +#define CONFIG_FATFS_LFN_HEAP 1 +#define CONFIG_FATFS_SECTOR_4096 1 +#define CONFIG_FATFS_CODEPAGE_437 1 +#define CONFIG_FATFS_CODEPAGE 437 +#define CONFIG_FATFS_MAX_LFN 255 +#define CONFIG_FATFS_API_ENCODING_ANSI_OEM 1 +#define CONFIG_FATFS_FS_LOCK 0 +#define CONFIG_FATFS_TIMEOUT_MS 10000 +#define CONFIG_FATFS_PER_FILE_CACHE 1 +#define CONFIG_FATFS_USE_STRFUNC_NONE 1 +#define CONFIG_FATFS_VFS_FSTAT_BLKSIZE 0 +#define CONFIG_FATFS_LINK_LOCK 1 +#define CONFIG_FATFS_USE_DYN_BUFFERS 1 +#define CONFIG_FATFS_DONT_TRUST_FREE_CLUSTER_CNT 0 +#define CONFIG_FATFS_DONT_TRUST_LAST_ALLOC 0 +#define CONFIG_FREERTOS_HZ 100 +#define CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY 1 +#define CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS 1 +#define CONFIG_FREERTOS_IDLE_TASK_STACKSIZE 1536 +#define CONFIG_FREERTOS_MAX_TASK_NAME_LEN 16 +#define CONFIG_FREERTOS_USE_TIMERS 1 +#define CONFIG_FREERTOS_TIMER_SERVICE_TASK_NAME "Tmr Svc" +#define CONFIG_FREERTOS_TIMER_TASK_NO_AFFINITY 1 +#define CONFIG_FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY 0x7FFFFFFF +#define CONFIG_FREERTOS_TIMER_TASK_PRIORITY 1 +#define CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH 2048 +#define CONFIG_FREERTOS_TIMER_QUEUE_LENGTH 10 +#define CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE 0 +#define CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES 1 +#define CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER 1 +#define CONFIG_FREERTOS_TLSP_DELETION_CALLBACKS 1 +#define CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER 1 +#define CONFIG_FREERTOS_ISR_STACKSIZE 1536 +#define CONFIG_FREERTOS_INTERRUPT_BACKTRACE 1 +#define CONFIG_FREERTOS_TICK_SUPPORT_CORETIMER 1 +#define CONFIG_FREERTOS_CORETIMER_0 1 +#define CONFIG_FREERTOS_SYSTICK_USES_CCOUNT 1 +#define CONFIG_FREERTOS_PORT 1 +#define CONFIG_FREERTOS_NO_AFFINITY 0x7FFFFFFF +#define CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION 1 +#define CONFIG_FREERTOS_DEBUG_OCDAWARE 1 +#define CONFIG_FREERTOS_NUMBER_OF_CORES 2 +#define CONFIG_HAL_ASSERTION_EQUALS_SYSTEM 1 +#define CONFIG_HAL_DEFAULT_ASSERTION_LEVEL 2 +#define CONFIG_HAL_GPIO_USE_ROM_IMPL 1 +#define CONFIG_HEAP_HAS_EXEC_HEAP 1 +#define CONFIG_HEAP_POISONING_DISABLED 1 +#define CONFIG_HEAP_TRACING_OFF 1 +#define CONFIG_LOG_VERSION_1 1 +#define CONFIG_LOG_VERSION 1 +#define CONFIG_LOG_DEFAULT_LEVEL_INFO 1 +#define CONFIG_LOG_DEFAULT_LEVEL 3 +#define CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT 1 +#define CONFIG_LOG_MAXIMUM_LEVEL 3 +#define CONFIG_LOG_DYNAMIC_LEVEL_CONTROL 1 +#define CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST 1 +#define CONFIG_LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP 1 +#define CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_SIZE 31 +#define CONFIG_LOG_TIMESTAMP_SOURCE_RTOS 1 +#define CONFIG_LOG_MODE_TEXT_EN 1 +#define CONFIG_LOG_MODE_TEXT 1 +#define CONFIG_LOG_IN_IRAM 1 +#define CONFIG_LWIP_ENABLE 1 +#define CONFIG_LWIP_LOCAL_HOSTNAME "espressif" +#define CONFIG_LWIP_TCPIP_TASK_PRIO 18 +#define CONFIG_LWIP_DNS_SUPPORT_MDNS_QUERIES 1 +#define CONFIG_LWIP_TIMERS_ONDEMAND 1 +#define CONFIG_LWIP_ND6 1 +#define CONFIG_LWIP_MAX_SOCKETS 10 +#define CONFIG_LWIP_SO_REUSE 1 +#define CONFIG_LWIP_SO_REUSE_RXTOALL 1 +#define CONFIG_LWIP_IP_DEFAULT_TTL 64 +#define CONFIG_LWIP_IP4_FRAG 1 +#define CONFIG_LWIP_IP6_FRAG 1 +#define CONFIG_LWIP_IP_REASS_MAX_PBUFS 10 +#define CONFIG_LWIP_IPV6_DUP_DETECT_ATTEMPTS 1 +#define CONFIG_LWIP_ESP_GRATUITOUS_ARP 1 +#define CONFIG_LWIP_GARP_TMR_INTERVAL 60 +#define CONFIG_LWIP_ESP_MLDV6_REPORT 1 +#define CONFIG_LWIP_MLDV6_TMR_INTERVAL 40 +#define CONFIG_LWIP_TCPIP_RECVMBOX_SIZE 32 +#define CONFIG_LWIP_DHCP_DOES_ARP_CHECK 1 +#define CONFIG_LWIP_DHCP_DISABLE_VENDOR_CLASS_ID 1 +#define CONFIG_LWIP_DHCP_OPTIONS_LEN 69 +#define CONFIG_LWIP_NUM_NETIF_CLIENT_DATA 0 +#define CONFIG_LWIP_DHCP_COARSE_TIMER_SECS 1 +#define CONFIG_LWIP_DHCPS 1 +#define CONFIG_LWIP_DHCPS_REPORT_CLIENT_HOSTNAME 1 +#define CONFIG_LWIP_DHCPS_LEASE_UNIT 60 +#define CONFIG_LWIP_DHCPS_MAX_STATION_NUM 8 +#define CONFIG_LWIP_DHCPS_MAX_HOSTNAME_LEN 64 +#define CONFIG_LWIP_DHCPS_STATIC_ENTRIES 1 +#define CONFIG_LWIP_IPV4 1 +#define CONFIG_LWIP_IPV6 1 +#define CONFIG_LWIP_IPV6_NUM_ADDRESSES 3 +#define CONFIG_LWIP_NETIF_LOOPBACK 1 +#define CONFIG_LWIP_LOOPBACK_MAX_PBUFS 8 +#define CONFIG_LWIP_MAX_ACTIVE_TCP 16 +#define CONFIG_LWIP_MAX_LISTENING_TCP 16 +#define CONFIG_LWIP_TCP_HIGH_SPEED_RETRANSMISSION 1 +#define CONFIG_LWIP_TCP_MAXRTX 12 +#define CONFIG_LWIP_TCP_SYNMAXRTX 12 +#define CONFIG_LWIP_TCP_MSS 1440 +#define CONFIG_LWIP_TCP_TMR_INTERVAL 250 +#define CONFIG_LWIP_TCP_MSL 60000 +#define CONFIG_LWIP_TCP_FIN_WAIT_TIMEOUT 20000 +#define CONFIG_LWIP_TCP_SND_BUF_DEFAULT 5760 +#define CONFIG_LWIP_TCP_WND_DEFAULT 5760 +#define CONFIG_LWIP_TCP_RECVMBOX_SIZE 6 +#define CONFIG_LWIP_TCP_ACCEPTMBOX_SIZE 6 +#define CONFIG_LWIP_TCP_QUEUE_OOSEQ 1 +#define CONFIG_LWIP_TCP_OOSEQ_TIMEOUT 6 +#define CONFIG_LWIP_TCP_OOSEQ_MAX_PBUFS 4 +#define CONFIG_LWIP_TCP_OVERSIZE_MSS 1 +#define CONFIG_LWIP_TCP_RTO_TIME 1500 +#define CONFIG_LWIP_MAX_UDP_PCBS 16 +#define CONFIG_LWIP_UDP_RECVMBOX_SIZE 6 +#define CONFIG_LWIP_CHECKSUM_CHECK_ICMP 1 +#define CONFIG_LWIP_TCPIP_TASK_STACK_SIZE 3072 +#define CONFIG_LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY 1 +#define CONFIG_LWIP_TCPIP_TASK_AFFINITY 0x7FFFFFFF +#define CONFIG_LWIP_IPV6_MEMP_NUM_ND6_QUEUE 3 +#define CONFIG_LWIP_IPV6_ND6_NUM_NEIGHBORS 5 +#define CONFIG_LWIP_IPV6_ND6_NUM_PREFIXES 5 +#define CONFIG_LWIP_IPV6_ND6_NUM_ROUTERS 3 +#define CONFIG_LWIP_IPV6_ND6_NUM_DESTINATIONS 10 +#define CONFIG_LWIP_ICMP 1 +#define CONFIG_LWIP_MAX_RAW_PCBS 16 +#define CONFIG_LWIP_SNTP_MAX_SERVERS 1 +#define CONFIG_LWIP_SNTP_UPDATE_DELAY 3600000 +#define CONFIG_LWIP_SNTP_STARTUP_DELAY 1 +#define CONFIG_LWIP_SNTP_MAXIMUM_STARTUP_DELAY 5000 +#define CONFIG_LWIP_DNS_MAX_HOST_IP 1 +#define CONFIG_LWIP_DNS_MAX_SERVERS 3 +#define CONFIG_LWIP_BRIDGEIF_MAX_PORTS 7 +#define CONFIG_LWIP_ESP_LWIP_ASSERT 1 +#define CONFIG_LWIP_HOOK_TCP_ISN_DEFAULT 1 +#define CONFIG_LWIP_HOOK_IP6_ROUTE_NONE 1 +#define CONFIG_LWIP_HOOK_ND6_GET_GW_NONE 1 +#define CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_NONE 1 +#define CONFIG_LWIP_HOOK_DHCP_EXTRA_OPTION_NONE 1 +#define CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_NONE 1 +#define CONFIG_LWIP_HOOK_DNS_EXT_RESOLVE_NONE 1 +#define CONFIG_LWIP_HOOK_IP6_INPUT_DEFAULT 1 +#define CONFIG_MBEDTLS_VER_4_X_SUPPORT 1 +#define CONFIG_MBEDTLS_COMPILER_OPTIMIZATION_SIZE 1 +#define CONFIG_MBEDTLS_FS_IO 1 +#define CONFIG_MBEDTLS_THREADING_C 1 +#define CONFIG_MBEDTLS_THREADING_PTHREAD 1 +#define CONFIG_MBEDTLS_ERROR_STRINGS 1 +#define CONFIG_MBEDTLS_VERSION_C 1 +#define CONFIG_MBEDTLS_HAVE_TIME 1 +#define CONFIG_MBEDTLS_INTERNAL_MEM_ALLOC 1 +#define CONFIG_MBEDTLS_ASYMMETRIC_CONTENT_LEN 1 +#define CONFIG_MBEDTLS_SSL_IN_CONTENT_LEN 16384 +#define CONFIG_MBEDTLS_SSL_OUT_CONTENT_LEN 4096 +#define CONFIG_MBEDTLS_SELF_TEST 1 +#define CONFIG_MBEDTLS_X509_USE_C 1 +#define CONFIG_MBEDTLS_PEM_PARSE_C 1 +#define CONFIG_MBEDTLS_PEM_WRITE_C 1 +#define CONFIG_MBEDTLS_PK_C 1 +#define CONFIG_MBEDTLS_PK_PARSE_C 1 +#define CONFIG_MBEDTLS_PK_WRITE_C 1 +#define CONFIG_MBEDTLS_X509_CRL_PARSE_C 1 +#define CONFIG_MBEDTLS_X509_CRT_PARSE_C 1 +#define CONFIG_MBEDTLS_X509_CSR_PARSE_C 1 +#define CONFIG_MBEDTLS_X509_RSASSA_PSS_SUPPORT 1 +#define CONFIG_MBEDTLS_ASN1_PARSE_C 1 +#define CONFIG_MBEDTLS_ASN1_WRITE_C 1 +#define CONFIG_MBEDTLS_CERTIFICATE_BUNDLE 1 +#define CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL 1 +#define CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS 200 +#define CONFIG_MBEDTLS_TLS_ENABLED 1 +#define CONFIG_MBEDTLS_SSL_PROTO_TLS1_2 1 +#define CONFIG_MBEDTLS_TLS_SERVER 1 +#define CONFIG_MBEDTLS_TLS_CLIENT 1 +#define CONFIG_MBEDTLS_TLS_SERVER_AND_CLIENT 1 +#define CONFIG_MBEDTLS_SSL_CACHE_C 1 +#define CONFIG_MBEDTLS_SSL_ALL_ALERT_MESSAGES 1 +#define CONFIG_MBEDTLS_KEY_EXCHANGE_RSA 1 +#define CONFIG_MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE 1 +#define CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_RSA 1 +#define CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA 1 +#define CONFIG_MBEDTLS_SSL_SERVER_NAME_INDICATION 1 +#define CONFIG_MBEDTLS_SSL_ALPN 1 +#define CONFIG_MBEDTLS_SSL_MAX_FRAGMENT_LENGTH 1 +#define CONFIG_MBEDTLS_SSL_RENEGOTIATION 1 +#define CONFIG_MBEDTLS_CLIENT_SSL_SESSION_TICKETS 1 +#define CONFIG_MBEDTLS_SERVER_SSL_SESSION_TICKETS 1 +#define CONFIG_MBEDTLS_AES_C 1 +#define CONFIG_MBEDTLS_CCM_C 1 +#define CONFIG_MBEDTLS_CIPHER_MODE_CBC 1 +#define CONFIG_MBEDTLS_CIPHER_MODE_CFB 1 +#define CONFIG_MBEDTLS_CIPHER_MODE_CTR 1 +#define CONFIG_MBEDTLS_CIPHER_MODE_OFB 1 +#define CONFIG_MBEDTLS_CIPHER_MODE_XTS 1 +#define CONFIG_MBEDTLS_GCM_C 1 +#define CONFIG_MBEDTLS_AES_ROM_TABLES 1 +#define CONFIG_MBEDTLS_CMAC_C 1 +#define CONFIG_MBEDTLS_BIGNUM_C 1 +#define CONFIG_MBEDTLS_RSA_C 1 +#define CONFIG_MBEDTLS_ECP_C 1 +#define CONFIG_MBEDTLS_ECP_DP_SECP256R1_ENABLED 1 +#define CONFIG_MBEDTLS_ECP_DP_SECP384R1_ENABLED 1 +#define CONFIG_MBEDTLS_ECP_DP_SECP521R1_ENABLED 1 +#define CONFIG_MBEDTLS_ECP_DP_SECP256K1_ENABLED 1 +#define CONFIG_MBEDTLS_ECP_DP_BP256R1_ENABLED 1 +#define CONFIG_MBEDTLS_ECP_DP_BP384R1_ENABLED 1 +#define CONFIG_MBEDTLS_ECP_DP_BP512R1_ENABLED 1 +#define CONFIG_MBEDTLS_ECP_DP_CURVE25519_ENABLED 1 +#define CONFIG_MBEDTLS_ECP_NIST_OPTIM 1 +#define CONFIG_MBEDTLS_ECDH_C 1 +#define CONFIG_MBEDTLS_ECDSA_C 1 +#define CONFIG_MBEDTLS_PK_PARSE_EC_EXTENDED 1 +#define CONFIG_MBEDTLS_PK_PARSE_EC_COMPRESSED 1 +#define CONFIG_MBEDTLS_ECDSA_DETERMINISTIC 1 +#define CONFIG_MBEDTLS_MD_C 1 +#define CONFIG_MBEDTLS_MD5_C 1 +#define CONFIG_MBEDTLS_SHA1_C 1 +#define CONFIG_MBEDTLS_SHA256_C 1 +#define CONFIG_MBEDTLS_SHA384_C 1 +#define CONFIG_MBEDTLS_SHA512_C 1 +#define CONFIG_MBEDTLS_ROM_MD5 1 +#define CONFIG_MBEDTLS_HARDWARE_SHA 1 +#define CONFIG_MBEDTLS_HARDWARE_MPI 1 +#define CONFIG_MBEDTLS_LARGE_KEY_SOFTWARE_MPI 1 +#define CONFIG_MBEDTLS_HARDWARE_AES 1 +#define CONFIG_MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER 1 +#define CONFIG_MBEDTLS_CTR_DRBG_C 1 +#define CONFIG_MBEDTLS_HMAC_DRBG_C 1 +#define CONFIG_MBEDTLS_BASE64_C 1 +#define CONFIG_MBEDTLS_PKCS5_C 1 +#define CONFIG_MBEDTLS_PKCS7_C 1 +#define CONFIG_MBEDTLS_PKCS1_V15 1 +#define CONFIG_MBEDTLS_PKCS1_V21 1 +#define CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_2 1 +#define CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_PATCH_VERSION 1 +#define CONFIG_PTHREAD_TASK_PRIO_DEFAULT 5 +#define CONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT 3072 +#define CONFIG_PTHREAD_STACK_MIN 768 +#define CONFIG_PTHREAD_DEFAULT_CORE_NO_AFFINITY 1 +#define CONFIG_PTHREAD_TASK_CORE_DEFAULT -1 +#define CONFIG_PTHREAD_TASK_NAME_DEFAULT "pthread" +#define CONFIG_SD_ENABLE_SDIO_SUPPORT 1 +#define CONFIG_MMU_PAGE_SIZE_64KB 1 +#define CONFIG_MMU_PAGE_MODE "64KB" +#define CONFIG_MMU_PAGE_SIZE 0x10000 +#define CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC 1 +#define CONFIG_SPI_FLASH_BROWNOUT_RESET 1 +#define CONFIG_SPI_FLASH_SUSPEND_TSUS_VAL_US 50 +#define CONFIG_SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM 1 +#define CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS 1 +#define CONFIG_SPI_FLASH_YIELD_DURING_ERASE 1 +#define CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS 20 +#define CONFIG_SPI_FLASH_ERASE_YIELD_TICKS 1 +#define CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE 8192 +#define CONFIG_SPI_FLASH_VENDOR_XMC_SUPPORT_ENABLED 1 +#define CONFIG_SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED 1 +#define CONFIG_SPI_FLASH_VENDOR_ISSI_SUPPORT_ENABLED 1 +#define CONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORT_ENABLED 1 +#define CONFIG_SPI_FLASH_VENDOR_WINBOND_SUPPORT_ENABLED 1 +#define CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP 1 +#define CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP 1 +#define CONFIG_SPI_FLASH_SUPPORT_GD_CHIP 1 +#define CONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP 1 +#define CONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE 1 +#define CONFIG_SPIFFS_MAX_PARTITIONS 3 +#define CONFIG_SPIFFS_CACHE 1 +#define CONFIG_SPIFFS_CACHE_WR 1 +#define CONFIG_SPIFFS_PAGE_CHECK 1 +#define CONFIG_SPIFFS_GC_MAX_RUNS 10 +#define CONFIG_SPIFFS_PAGE_SIZE 256 +#define CONFIG_SPIFFS_OBJ_NAME_LEN 32 +#define CONFIG_SPIFFS_USE_MAGIC 1 +#define CONFIG_SPIFFS_USE_MAGIC_LENGTH 1 +#define CONFIG_SPIFFS_META_LENGTH 4 +#define CONFIG_SPIFFS_USE_MTIME 1 +#define CONFIG_WS_TRANSPORT 1 +#define CONFIG_WS_BUFFER_SIZE 1024 +#define CONFIG_UNITY_ENABLE_FLOAT 1 +#define CONFIG_UNITY_ENABLE_DOUBLE 1 +#define CONFIG_UNITY_ENABLE_IDF_TEST_RUNNER 1 +#define CONFIG_VFS_SUPPORT_IO 1 +#define CONFIG_VFS_SUPPORT_DIR 1 +#define CONFIG_VFS_SUPPORT_SELECT 1 +#define CONFIG_VFS_SUPPRESS_SELECT_DEBUG_OUTPUT 1 +#define CONFIG_VFS_MAX_COUNT 8 +#define CONFIG_VFS_SEMIHOSTFS_MAX_MOUNT_POINTS 1 +#define CONFIG_VFS_INITIALIZE_DEV_NULL 1 +#define CONFIG_WL_SECTOR_SIZE_4096 1 +#define CONFIG_WL_SECTOR_SIZE 4096 + +/* List of deprecated options */ +#define CONFIG_ADC_CAL_EFUSE_TP_ENABLE CONFIG_ADC_CALI_EFUSE_TP_ENABLE +#define CONFIG_ADC_CAL_EFUSE_VREF_ENABLE CONFIG_ADC_CALI_EFUSE_VREF_ENABLE +#define CONFIG_ADC_CAL_LUT_ENABLE CONFIG_ADC_CALI_LUT_ENABLE +#define CONFIG_ADC_DISABLE_DAC CONFIG_ADC_DISABLE_DAC_OUTPUT +#define CONFIG_BROWNOUT_DET CONFIG_ESP_BROWNOUT_DET +#define CONFIG_BROWNOUT_DET_LVL CONFIG_ESP_BROWNOUT_DET_LVL +#define CONFIG_BROWNOUT_DET_LVL_SEL_0 CONFIG_ESP_BROWNOUT_DET_LVL_SEL_0 +#define CONFIG_COMPILER_OPTIMIZATION_DEFAULT CONFIG_COMPILER_OPTIMIZATION_DEBUG +#define CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG CONFIG_COMPILER_OPTIMIZATION_DEBUG +#define CONFIG_CONSOLE_UART CONFIG_ESP_CONSOLE_UART +#define CONFIG_CONSOLE_UART_BAUDRATE CONFIG_ESP_CONSOLE_UART_BAUDRATE +#define CONFIG_CONSOLE_UART_DEFAULT CONFIG_ESP_CONSOLE_UART_DEFAULT +#define CONFIG_CONSOLE_UART_NUM CONFIG_ESP_CONSOLE_UART_NUM +#define CONFIG_ESP32_BROWNOUT_DET CONFIG_ESP_BROWNOUT_DET +#define CONFIG_ESP32_BROWNOUT_DET_LVL CONFIG_ESP_BROWNOUT_DET_LVL +#define CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_0 CONFIG_ESP_BROWNOUT_DET_LVL_SEL_0 +#define CONFIG_ESP32_DEBUG_OCDAWARE CONFIG_ESP_DEBUG_OCDAWARE +#define CONFIG_ESP32_DEEP_SLEEP_WAKEUP_DELAY CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY +#define CONFIG_ESP32_DEFAULT_CPU_FREQ_160 CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160 +#define CONFIG_ESP32_DEFAULT_CPU_FREQ_MHZ CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ +#define CONFIG_ESP32_DEFAULT_PTHREAD_CORE_NO_AFFINITY CONFIG_PTHREAD_DEFAULT_CORE_NO_AFFINITY +#define CONFIG_ESP32_ENABLE_COREDUMP_TO_NONE CONFIG_ESP_COREDUMP_ENABLE_TO_NONE +#define CONFIG_ESP32_PANIC_PRINT_REBOOT CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT +#define CONFIG_ESP32_PHY_CALIBRATION_AND_DATA_STORAGE CONFIG_ESP_PHY_CALIBRATION_AND_DATA_STORAGE +#define CONFIG_ESP32_PHY_MAX_TX_POWER CONFIG_ESP_PHY_MAX_TX_POWER +#define CONFIG_ESP32_PHY_MAX_WIFI_TX_POWER CONFIG_ESP_PHY_MAX_WIFI_TX_POWER +#define CONFIG_ESP32_PTHREAD_STACK_MIN CONFIG_PTHREAD_STACK_MIN +#define CONFIG_ESP32_PTHREAD_TASK_CORE_DEFAULT CONFIG_PTHREAD_TASK_CORE_DEFAULT +#define CONFIG_ESP32_PTHREAD_TASK_NAME_DEFAULT CONFIG_PTHREAD_TASK_NAME_DEFAULT +#define CONFIG_ESP32_PTHREAD_TASK_PRIO_DEFAULT CONFIG_PTHREAD_TASK_PRIO_DEFAULT +#define CONFIG_ESP32_PTHREAD_TASK_STACK_SIZE_DEFAULT CONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT +#define CONFIG_ESP32_RTC_CLK_CAL_CYCLES CONFIG_RTC_CLK_CAL_CYCLES +#define CONFIG_ESP32_RTC_CLK_SRC_INT_RC CONFIG_RTC_CLK_SRC_INT_RC +#define CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_RC CONFIG_RTC_CLK_SRC_INT_RC +#define CONFIG_ESP32_TIME_SYSCALL_USE_RTC_FRC1 CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT +#define CONFIG_ESP32_TIME_SYSCALL_USE_RTC_HRT CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT +#define CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED CONFIG_ESP_WIFI_AMPDU_RX_ENABLED +#define CONFIG_ESP32_WIFI_AMPDU_TX_ENABLED CONFIG_ESP_WIFI_AMPDU_TX_ENABLED +#define CONFIG_ESP32_WIFI_DYNAMIC_RX_BUFFER_NUM CONFIG_ESP_WIFI_DYNAMIC_RX_BUFFER_NUM +#define CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER CONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER +#define CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM CONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER_NUM +#define CONFIG_ESP32_WIFI_ENABLED CONFIG_ESP_WIFI_ENABLED +#define CONFIG_ESP32_WIFI_ENABLE_WPA3_OWE_STA CONFIG_ESP_WIFI_ENABLE_WPA3_OWE_STA +#define CONFIG_ESP32_WIFI_ENABLE_WPA3_SAE CONFIG_ESP_WIFI_ENABLE_WPA3_SAE +#define CONFIG_ESP32_WIFI_IRAM_OPT CONFIG_ESP_WIFI_IRAM_OPT +#define CONFIG_ESP32_WIFI_MGMT_SBUF_NUM CONFIG_ESP_WIFI_MGMT_SBUF_NUM +#define CONFIG_ESP32_WIFI_NVS_ENABLED CONFIG_ESP_WIFI_NVS_ENABLED +#define CONFIG_ESP32_WIFI_RX_BA_WIN CONFIG_ESP_WIFI_RX_BA_WIN +#define CONFIG_ESP32_WIFI_RX_IRAM_OPT CONFIG_ESP_WIFI_RX_IRAM_OPT +#define CONFIG_ESP32_WIFI_SOFTAP_BEACON_MAX_LEN CONFIG_ESP_WIFI_SOFTAP_BEACON_MAX_LEN +#define CONFIG_ESP32_WIFI_STATIC_RX_BUFFER_NUM CONFIG_ESP_WIFI_STATIC_RX_BUFFER_NUM +#define CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_0 CONFIG_ESP_WIFI_TASK_PINNED_TO_CORE_0 +#define CONFIG_ESP32_WIFI_TX_BA_WIN CONFIG_ESP_WIFI_TX_BA_WIN +#define CONFIG_ESP32_WIFI_TX_BUFFER_TYPE CONFIG_ESP_WIFI_TX_BUFFER_TYPE +#define CONFIG_ESP32_XTAL_FREQ CONFIG_XTAL_FREQ +#define CONFIG_ESP32_XTAL_FREQ_40 CONFIG_XTAL_FREQ_40 +#define CONFIG_ESP_GRATUITOUS_ARP CONFIG_LWIP_ESP_GRATUITOUS_ARP +#define CONFIG_ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY +#define CONFIG_ESP_SYSTEM_BROWNOUT_INTR CONFIG_ESP_BROWNOUT_USE_INTR +#define CONFIG_ESP_TASK_WDT CONFIG_ESP_TASK_WDT_INIT +#define CONFIG_FLASHMODE_DIO CONFIG_ESPTOOLPY_FLASHMODE_DIO +#define CONFIG_FOUR_UNIVERSAL_MAC_ADDRESS CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR +#define CONFIG_GARP_TMR_INTERVAL CONFIG_LWIP_GARP_TMR_INTERVAL +#define CONFIG_GDBSTUB_MAX_TASKS CONFIG_ESP_GDBSTUB_MAX_TASKS +#define CONFIG_GDBSTUB_SUPPORT_TASKS CONFIG_ESP_GDBSTUB_SUPPORT_TASKS +#define CONFIG_INT_WDT CONFIG_ESP_INT_WDT +#define CONFIG_INT_WDT_CHECK_CPU1 CONFIG_ESP_INT_WDT_CHECK_CPU1 +#define CONFIG_INT_WDT_TIMEOUT_MS CONFIG_ESP_INT_WDT_TIMEOUT_MS +#define CONFIG_IPC_TASK_STACK_SIZE CONFIG_ESP_IPC_TASK_STACK_SIZE +#define CONFIG_LOG_BOOTLOADER_LEVEL CONFIG_BOOTLOADER_LOG_LEVEL +#define CONFIG_LOG_BOOTLOADER_LEVEL_INFO CONFIG_BOOTLOADER_LOG_LEVEL_INFO +#define CONFIG_MAIN_TASK_STACK_SIZE CONFIG_ESP_MAIN_TASK_STACK_SIZE +#define CONFIG_MONITOR_BAUD CONFIG_ESPTOOLPY_MONITOR_BAUD +#define CONFIG_NEWLIB_STDIN_LINE_ENDING_CR CONFIG_LIBC_STDIN_LINE_ENDING_CR +#define CONFIG_NEWLIB_STDOUT_LINE_ENDING_CRLF CONFIG_LIBC_STDOUT_LINE_ENDING_CRLF +#define CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT +#define CONFIG_NUMBER_OF_UNIVERSAL_MAC_ADDRESS CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES +#define CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE +#define CONFIG_OPTIMIZATION_ASSERTION_LEVEL CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL +#define CONFIG_OPTIMIZATION_LEVEL_DEBUG CONFIG_COMPILER_OPTIMIZATION_DEBUG +#define CONFIG_PERIPH_CTRL_FUNC_IN_IRAM CONFIG_ESP_PERIPH_CTRL_FUNC_IN_IRAM +#define CONFIG_POST_EVENTS_FROM_IRAM_ISR CONFIG_ESP_EVENT_POST_FROM_IRAM_ISR +#define CONFIG_POST_EVENTS_FROM_ISR CONFIG_ESP_EVENT_POST_FROM_ISR +#define CONFIG_SEMIHOSTFS_MAX_MOUNT_POINTS CONFIG_VFS_SEMIHOSTFS_MAX_MOUNT_POINTS +#define CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS +#define CONFIG_STACK_CHECK_NONE CONFIG_COMPILER_STACK_CHECK_MODE_NONE +#define CONFIG_SUPPRESS_SELECT_DEBUG_OUTPUT CONFIG_VFS_SUPPRESS_SELECT_DEBUG_OUTPUT +#define CONFIG_SYSTEM_EVENT_QUEUE_SIZE CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE +#define CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE +#define CONFIG_TASK_WDT CONFIG_ESP_TASK_WDT_INIT +#define CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0 CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0 +#define CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU1 CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1 +#define CONFIG_TASK_WDT_TIMEOUT_S CONFIG_ESP_TASK_WDT_TIMEOUT_S +#define CONFIG_TCPIP_RECVMBOX_SIZE CONFIG_LWIP_TCPIP_RECVMBOX_SIZE +#define CONFIG_TCPIP_TASK_AFFINITY CONFIG_LWIP_TCPIP_TASK_AFFINITY +#define CONFIG_TCPIP_TASK_AFFINITY_NO_AFFINITY CONFIG_LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY +#define CONFIG_TCPIP_TASK_STACK_SIZE CONFIG_LWIP_TCPIP_TASK_STACK_SIZE +#define CONFIG_TCP_MAXRTX CONFIG_LWIP_TCP_MAXRTX +#define CONFIG_TCP_MSL CONFIG_LWIP_TCP_MSL +#define CONFIG_TCP_MSS CONFIG_LWIP_TCP_MSS +#define CONFIG_TCP_OVERSIZE_MSS CONFIG_LWIP_TCP_OVERSIZE_MSS +#define CONFIG_TCP_QUEUE_OOSEQ CONFIG_LWIP_TCP_QUEUE_OOSEQ +#define CONFIG_TCP_RECVMBOX_SIZE CONFIG_LWIP_TCP_RECVMBOX_SIZE +#define CONFIG_TCP_SND_BUF_DEFAULT CONFIG_LWIP_TCP_SND_BUF_DEFAULT +#define CONFIG_TCP_SYNMAXRTX CONFIG_LWIP_TCP_SYNMAXRTX +#define CONFIG_TCP_WND_DEFAULT CONFIG_LWIP_TCP_WND_DEFAULT +#define CONFIG_TIMER_QUEUE_LENGTH CONFIG_FREERTOS_TIMER_QUEUE_LENGTH +#define CONFIG_TIMER_TASK_PRIORITY CONFIG_FREERTOS_TIMER_TASK_PRIORITY +#define CONFIG_TIMER_TASK_STACK_DEPTH CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH +#define CONFIG_TIMER_TASK_STACK_SIZE CONFIG_ESP_TIMER_TASK_STACK_SIZE +#define CONFIG_TRACEMEM_RESERVE_DRAM CONFIG_ESP32_TRACEMEM_RESERVE_DRAM +#define CONFIG_UDP_RECVMBOX_SIZE CONFIG_LWIP_UDP_RECVMBOX_SIZE +#define CONFIG_WPA_MBEDTLS_CRYPTO CONFIG_ESP_WIFI_MBEDTLS_CRYPTO +#define CONFIG_WPA_MBEDTLS_TLS_CLIENT CONFIG_ESP_WIFI_MBEDTLS_TLS_CLIENT diff --git a/build/config/sdkconfig.json b/build/config/sdkconfig.json new file mode 100644 index 0000000..b033ff9 --- /dev/null +++ b/build/config/sdkconfig.json @@ -0,0 +1,1233 @@ +{ + "ADC_CALI_EFUSE_TP_ENABLE": true, + "ADC_CALI_EFUSE_VREF_ENABLE": true, + "ADC_CALI_LUT_ENABLE": true, + "ADC_CONTINUOUS_ISR_IRAM_SAFE": false, + "ADC_DISABLE_DAC_OUTPUT": true, + "ADC_ENABLE_DEBUG_LOG": false, + "ADC_ONESHOT_CTRL_FUNC_IN_IRAM": false, + "APP_BUILD_BOOTLOADER": true, + "APP_BUILD_GENERATE_BINARIES": true, + "APP_BUILD_TYPE_APP_2NDBOOT": true, + "APP_BUILD_TYPE_RAM": false, + "APP_BUILD_USE_FLASH_SECTIONS": true, + "APP_COMPATIBLE_PRE_V2_1_BOOTLOADERS": false, + "APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS": false, + "APP_COMPILE_TIME_DATE": true, + "APP_EXCLUDE_PROJECT_NAME_VAR": false, + "APP_EXCLUDE_PROJECT_VER_VAR": false, + "APP_NO_BLOBS": false, + "APP_PROJECT_VER_FROM_CONFIG": false, + "APP_REPRODUCIBLE_BUILD": false, + "APP_RETRIEVE_LEN_ELF_SHA": 9, + "BLE_LOG_ENABLED": false, + "BOOTLOADER_APP_ROLLBACK_ENABLE": false, + "BOOTLOADER_APP_TEST": false, + "BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG": false, + "BOOTLOADER_COMPILER_OPTIMIZATION_PERF": false, + "BOOTLOADER_COMPILER_OPTIMIZATION_SIZE": true, + "BOOTLOADER_COMPILE_TIME_DATE": true, + "BOOTLOADER_CPU_CLK_FREQ_MHZ": 80, + "BOOTLOADER_CUSTOM_RESERVE_RTC": false, + "BOOTLOADER_FACTORY_RESET": false, + "BOOTLOADER_FLASH_DC_AWARE": false, + "BOOTLOADER_FLASH_XMC_SUPPORT": true, + "BOOTLOADER_LOG_COLORS": false, + "BOOTLOADER_LOG_LEVEL": 3, + "BOOTLOADER_LOG_LEVEL_DEBUG": false, + "BOOTLOADER_LOG_LEVEL_ERROR": false, + "BOOTLOADER_LOG_LEVEL_INFO": true, + "BOOTLOADER_LOG_LEVEL_NONE": false, + "BOOTLOADER_LOG_LEVEL_VERBOSE": false, + "BOOTLOADER_LOG_LEVEL_WARN": false, + "BOOTLOADER_LOG_MODE_TEXT": true, + "BOOTLOADER_LOG_MODE_TEXT_EN": true, + "BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS": true, + "BOOTLOADER_LOG_VERSION": 1, + "BOOTLOADER_LOG_VERSION_1": true, + "BOOTLOADER_OFFSET_IN_FLASH": 4096, + "BOOTLOADER_PROJECT_VER": 1, + "BOOTLOADER_REGION_PROTECTION_ENABLE": true, + "BOOTLOADER_RESERVE_RTC_SIZE": 0, + "BOOTLOADER_SKIP_VALIDATE_ALWAYS": false, + "BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP": false, + "BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON": false, + "BOOTLOADER_VDDSDIO_BOOST_1_8V": false, + "BOOTLOADER_VDDSDIO_BOOST_1_9V": true, + "BOOTLOADER_WDT_DISABLE_IN_USER_CODE": false, + "BOOTLOADER_WDT_ENABLE": true, + "BOOTLOADER_WDT_TIME_MS": 9000, + "BT_BLE_LOG_SPI_OUT_ENABLED": false, + "BT_BLE_LOG_UHCI_OUT_ENABLED": false, + "BT_ENABLED": false, + "BT_LE_USED_MEM_STATISTICS_ENABLED": false, + "COMPILER_ASSERT_NDEBUG_EVALUATE": false, + "COMPILER_CXX_EXCEPTIONS": false, + "COMPILER_CXX_GLIBCXX_CONSTEXPR_COLD": false, + "COMPILER_CXX_GLIBCXX_CONSTEXPR_COLD_CONSTEXPR": false, + "COMPILER_CXX_GLIBCXX_CONSTEXPR_NO_CHANGE": true, + "COMPILER_CXX_RTTI": false, + "COMPILER_DISABLE_DEFAULT_ERRORS": false, + "COMPILER_DISABLE_GCC12_WARNINGS": false, + "COMPILER_DISABLE_GCC13_WARNINGS": false, + "COMPILER_DISABLE_GCC14_WARNINGS": false, + "COMPILER_DISABLE_GCC15_WARNINGS": false, + "COMPILER_DUMP_RTL_FILES": false, + "COMPILER_FLOAT_LIB_FROM_GCCLIB": true, + "COMPILER_HIDE_PATHS_MACROS": true, + "COMPILER_NO_MERGE_CONSTANTS": false, + "COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE": false, + "COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE": true, + "COMPILER_OPTIMIZATION_ASSERTIONS_SILENT": false, + "COMPILER_OPTIMIZATION_ASSERTION_LEVEL": 2, + "COMPILER_OPTIMIZATION_CHECKS_SILENT": false, + "COMPILER_OPTIMIZATION_DEBUG": true, + "COMPILER_OPTIMIZATION_NONE": false, + "COMPILER_OPTIMIZATION_PERF": false, + "COMPILER_OPTIMIZATION_SIZE": false, + "COMPILER_ORPHAN_SECTIONS_ERROR": true, + "COMPILER_ORPHAN_SECTIONS_PLACE": false, + "COMPILER_ORPHAN_SECTIONS_WARNING": false, + "COMPILER_RT_LIB_GCCLIB": true, + "COMPILER_RT_LIB_NAME": "gcc", + "COMPILER_STACK_CHECK_MODE_ALL": false, + "COMPILER_STACK_CHECK_MODE_NONE": true, + "COMPILER_STACK_CHECK_MODE_NORM": false, + "COMPILER_STACK_CHECK_MODE_STRONG": false, + "COMPILER_STATIC_ANALYZER": false, + "COMPILER_WARN_WRITE_STRINGS": false, + "CONSOLE_SORTED_HELP": false, + "DAC_CTRL_FUNC_IN_IRAM": false, + "DAC_DMA_AUTO_16BIT_ALIGN": true, + "DAC_ENABLE_DEBUG_LOG": false, + "DAC_ISR_IRAM_SAFE": false, + "EFUSE_CODE_SCHEME_COMPAT_3_4": true, + "EFUSE_CODE_SCHEME_COMPAT_NONE": false, + "EFUSE_CODE_SCHEME_COMPAT_REPEAT": false, + "EFUSE_CUSTOM_TABLE": false, + "EFUSE_MAX_BLK_LEN": 192, + "EFUSE_VIRTUAL": false, + "ESP32_DISABLE_BASIC_ROM_CONSOLE": false, + "ESP32_REV_MAX_FULL": 399, + "ESP32_REV_MIN": 0, + "ESP32_REV_MIN_0": true, + "ESP32_REV_MIN_1": false, + "ESP32_REV_MIN_1_1": false, + "ESP32_REV_MIN_2": false, + "ESP32_REV_MIN_3": false, + "ESP32_REV_MIN_3_1": false, + "ESP32_REV_MIN_FULL": 0, + "ESP32_TRACEMEM_RESERVE_DRAM": 0, + "ESP32_TRAX": false, + "ESP32_UNIVERSAL_MAC_ADDRESSES": 4, + "ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR": true, + "ESP32_UNIVERSAL_MAC_ADDRESSES_TWO": false, + "ESP32_USE_FIXED_STATIC_RAM_SIZE": false, + "ESPHID_TASK_SIZE_BLE": 4096, + "ESPHID_TASK_SIZE_BT": 2048, + "ESPTOOLPY_AFTER": "hard-reset", + "ESPTOOLPY_AFTER_NORESET": false, + "ESPTOOLPY_AFTER_RESET": true, + "ESPTOOLPY_BEFORE": "default-reset", + "ESPTOOLPY_BEFORE_NORESET": false, + "ESPTOOLPY_BEFORE_RESET": true, + "ESPTOOLPY_FLASHFREQ": "40m", + "ESPTOOLPY_FLASHFREQ_20M": false, + "ESPTOOLPY_FLASHFREQ_26M": false, + "ESPTOOLPY_FLASHFREQ_40M": true, + "ESPTOOLPY_FLASHFREQ_80M": false, + "ESPTOOLPY_FLASHMODE": "dio", + "ESPTOOLPY_FLASHMODE_DIO": true, + "ESPTOOLPY_FLASHMODE_DOUT": false, + "ESPTOOLPY_FLASHMODE_QIO": false, + "ESPTOOLPY_FLASHMODE_QOUT": false, + "ESPTOOLPY_FLASHSIZE": "2MB", + "ESPTOOLPY_FLASHSIZE_128MB": false, + "ESPTOOLPY_FLASHSIZE_16MB": false, + "ESPTOOLPY_FLASHSIZE_1MB": false, + "ESPTOOLPY_FLASHSIZE_2MB": true, + "ESPTOOLPY_FLASHSIZE_32MB": false, + "ESPTOOLPY_FLASHSIZE_4MB": false, + "ESPTOOLPY_FLASHSIZE_64MB": false, + "ESPTOOLPY_FLASHSIZE_8MB": false, + "ESPTOOLPY_FLASH_SAMPLE_MODE_STR": true, + "ESPTOOLPY_HEADER_FLASHSIZE_UPDATE": false, + "ESPTOOLPY_MONITOR_BAUD": 115200, + "ESPTOOLPY_NO_STUB": false, + "ESP_BROWNOUT_DET": true, + "ESP_BROWNOUT_DET_LVL": 0, + "ESP_BROWNOUT_DET_LVL_SEL_0": true, + "ESP_BROWNOUT_DET_LVL_SEL_1": false, + "ESP_BROWNOUT_DET_LVL_SEL_2": false, + "ESP_BROWNOUT_DET_LVL_SEL_3": false, + "ESP_BROWNOUT_DET_LVL_SEL_4": false, + "ESP_BROWNOUT_DET_LVL_SEL_5": false, + "ESP_BROWNOUT_DET_LVL_SEL_6": false, + "ESP_BROWNOUT_DET_LVL_SEL_7": false, + "ESP_BROWNOUT_USE_INTR": true, + "ESP_COEX_ENABLED": true, + "ESP_COEX_GPIO_DEBUG": false, + "ESP_CONSOLE_NONE": false, + "ESP_CONSOLE_ROM_SERIAL_PORT_NUM": 0, + "ESP_CONSOLE_UART": true, + "ESP_CONSOLE_UART_BAUDRATE": 115200, + "ESP_CONSOLE_UART_CUSTOM": false, + "ESP_CONSOLE_UART_DEFAULT": true, + "ESP_CONSOLE_UART_NUM": 0, + "ESP_COREDUMP_ENABLE_TO_FLASH": false, + "ESP_COREDUMP_ENABLE_TO_NONE": true, + "ESP_COREDUMP_ENABLE_TO_UART": false, + "ESP_DEBUG_OCDAWARE": true, + "ESP_DEBUG_STUBS_ENABLE": false, + "ESP_DEFAULT_CPU_FREQ_MHZ": 160, + "ESP_DEFAULT_CPU_FREQ_MHZ_160": true, + "ESP_DEFAULT_CPU_FREQ_MHZ_240": false, + "ESP_DEFAULT_CPU_FREQ_MHZ_80": false, + "ESP_EFUSE_BLOCK_REV_MAX_FULL": 99, + "ESP_EFUSE_BLOCK_REV_MIN_FULL": 0, + "ESP_ERR_TO_NAME_LOOKUP": true, + "ESP_EVENT_LOOP_PROFILING": false, + "ESP_EVENT_POST_FROM_IRAM_ISR": true, + "ESP_EVENT_POST_FROM_ISR": true, + "ESP_GDBSTUB_ENABLED": true, + "ESP_GDBSTUB_MAX_TASKS": 32, + "ESP_GDBSTUB_SUPPORT_TASKS": true, + "ESP_HTTPS_OTA_ALLOW_HTTP": false, + "ESP_HTTPS_OTA_DECRYPT_CB": false, + "ESP_HTTPS_OTA_ENABLE_PARTIAL_DOWNLOAD": false, + "ESP_HTTPS_OTA_EVENT_POST_TIMEOUT": 2000, + "ESP_HTTPS_SERVER_CERT_SELECT_HOOK": false, + "ESP_HTTPS_SERVER_ENABLE": false, + "ESP_HTTPS_SERVER_EVENT_POST_TIMEOUT": 2000, + "ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH": false, + "ESP_HTTP_CLIENT_ENABLE_CUSTOM_TRANSPORT": false, + "ESP_HTTP_CLIENT_ENABLE_DIGEST_AUTH": false, + "ESP_HTTP_CLIENT_ENABLE_GET_CONTENT_RANGE": false, + "ESP_HTTP_CLIENT_ENABLE_HTTPS": true, + "ESP_HTTP_CLIENT_EVENT_POST_TIMEOUT": 2000, + "ESP_HW_SUPPORT_FUNC_IN_IRAM": true, + "ESP_INTR_IN_IRAM": true, + "ESP_INT_WDT": true, + "ESP_INT_WDT_CHECK_CPU1": true, + "ESP_INT_WDT_TIMEOUT_MS": 300, + "ESP_IPC_ENABLE": true, + "ESP_IPC_ISR_ENABLE": true, + "ESP_IPC_TASK_STACK_SIZE": 1024, + "ESP_IPC_USES_CALLERS_PRIORITY": true, + "ESP_MAC_ADDR_UNIVERSE_BT": true, + "ESP_MAC_ADDR_UNIVERSE_ETH": true, + "ESP_MAC_ADDR_UNIVERSE_WIFI_AP": true, + "ESP_MAC_ADDR_UNIVERSE_WIFI_STA": true, + "ESP_MAC_IGNORE_MAC_CRC_ERROR": false, + "ESP_MAC_UNIVERSAL_MAC_ADDRESSES": 4, + "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR": true, + "ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC": false, + "ESP_MAIN_TASK_AFFINITY": 0, + "ESP_MAIN_TASK_AFFINITY_CPU0": true, + "ESP_MAIN_TASK_AFFINITY_CPU1": false, + "ESP_MAIN_TASK_AFFINITY_NO_AFFINITY": false, + "ESP_MAIN_TASK_STACK_SIZE": 3584, + "ESP_MINIMAL_SHARED_STACK_SIZE": 2048, + "ESP_NETIF_BRIDGE_EN": false, + "ESP_NETIF_IP_LOST_TIMER_INTERVAL": 120, + "ESP_NETIF_L2_TAP": false, + "ESP_NETIF_LOOPBACK": false, + "ESP_NETIF_LOST_IP_TIMER_ENABLE": true, + "ESP_NETIF_PROVIDE_CUSTOM_IMPLEMENTATION": false, + "ESP_NETIF_RECEIVE_REPORT_ERRORS": true, + "ESP_NETIF_REPORT_DATA_TRAFFIC": true, + "ESP_NETIF_SET_DNS_PER_DEFAULT_NETIF": false, + "ESP_NETIF_TCPIP_LWIP": true, + "ESP_NETIF_USES_TCPIP_WITH_BSD_API": true, + "ESP_PANIC_HANDLER_IRAM": false, + "ESP_PERIPH_CTRL_FUNC_IN_IRAM": true, + "ESP_PHY_CALIBRATION_AND_DATA_STORAGE": true, + "ESP_PHY_CALIBRATION_MODE": 0, + "ESP_PHY_DEBUG": false, + "ESP_PHY_ENABLED": true, + "ESP_PHY_ENABLE_CERT_TEST": false, + "ESP_PHY_INIT_DATA_IN_PARTITION": false, + "ESP_PHY_IRAM_OPT": true, + "ESP_PHY_MAX_TX_POWER": 20, + "ESP_PHY_MAX_WIFI_TX_POWER": 20, + "ESP_PHY_PLL_TRACK_DEBUG": false, + "ESP_PHY_PLL_TRACK_PERIOD_MS": 1000, + "ESP_PHY_RECORD_USED_TIME": false, + "ESP_PHY_REDUCE_TX_POWER": false, + "ESP_PHY_RF_CAL_FULL": false, + "ESP_PHY_RF_CAL_NONE": false, + "ESP_PHY_RF_CAL_PARTIAL": true, + "ESP_PROTOCOMM_SUPPORT_SECURITY_PATCH_VERSION": true, + "ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_0": false, + "ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_1": false, + "ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_2": true, + "ESP_REGI2C_CTRL_FUNC_IN_IRAM": true, + "ESP_REV_MAX_FULL": 399, + "ESP_REV_MIN_FULL": 0, + "ESP_ROM_HAS_CRC_BE": true, + "ESP_ROM_HAS_CRC_LE": true, + "ESP_ROM_HAS_JPEG_DECODE": true, + "ESP_ROM_HAS_MZ_CRC32": true, + "ESP_ROM_HAS_NEWLIB": true, + "ESP_ROM_HAS_NEWLIB_32BIT_TIME": true, + "ESP_ROM_HAS_NEWLIB_NANO_FORMAT": true, + "ESP_ROM_HAS_OUTPUT_PUTC_FUNC": true, + "ESP_ROM_HAS_SW_FLOAT": true, + "ESP_ROM_HAS_UART_BUF_SWITCH": true, + "ESP_ROM_NEEDS_SWSETUP_WORKAROUND": true, + "ESP_ROM_PRINT_IN_IRAM": true, + "ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB": true, + "ESP_ROM_USB_OTG_NUM": -1, + "ESP_ROM_USB_SERIAL_DEVICE_NUM": -1, + "ESP_SLEEP_CACHE_SAFE_ASSERTION": false, + "ESP_SLEEP_DEBUG": false, + "ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND": true, + "ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS": true, + "ESP_SLEEP_GPIO_RESET_WORKAROUND": false, + "ESP_SLEEP_MSPI_NEED_ALL_IO_PU": false, + "ESP_SLEEP_POWER_DOWN_FLASH": false, + "ESP_SLEEP_RTC_BUS_ISO_WORKAROUND": true, + "ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY": 2000, + "ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM": true, + "ESP_SYSTEM_CHECK_INT_LEVEL_4": true, + "ESP_SYSTEM_CHECK_INT_LEVEL_5": false, + "ESP_SYSTEM_ESP32_SRAM1_REGION_AS_IRAM": false, + "ESP_SYSTEM_EVENT_QUEUE_SIZE": 32, + "ESP_SYSTEM_EVENT_TASK_STACK_SIZE": 2304, + "ESP_SYSTEM_GDBSTUB_RUNTIME": false, + "ESP_SYSTEM_IN_IRAM": true, + "ESP_SYSTEM_PANIC_GDBSTUB": false, + "ESP_SYSTEM_PANIC_PRINT_HALT": false, + "ESP_SYSTEM_PANIC_PRINT_REBOOT": true, + "ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS": 0, + "ESP_SYSTEM_PANIC_SILENT_REBOOT": false, + "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0": true, + "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1": true, + "ESP_TASK_WDT_EN": true, + "ESP_TASK_WDT_INIT": true, + "ESP_TASK_WDT_PANIC": false, + "ESP_TASK_WDT_TIMEOUT_S": 5, + "ESP_TIMER_IMPL_TG0_LAC": true, + "ESP_TIMER_INTERRUPT_LEVEL": 1, + "ESP_TIMER_IN_IRAM": true, + "ESP_TIMER_ISR_AFFINITY_CPU0": true, + "ESP_TIMER_PROFILING": false, + "ESP_TIMER_SHOW_EXPERIMENTAL": false, + "ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD": false, + "ESP_TIMER_TASK_AFFINITY": 0, + "ESP_TIMER_TASK_AFFINITY_CPU0": true, + "ESP_TIMER_TASK_STACK_SIZE": 3584, + "ESP_TIME_FUNCS_USE_ESP_TIMER": true, + "ESP_TIME_FUNCS_USE_RTC_TIMER": true, + "ESP_TLS_CLIENT_SESSION_TICKETS": false, + "ESP_TLS_CUSTOM_STACK": false, + "ESP_TLS_DYN_BUF_STRATEGY_SUPPORTED": true, + "ESP_TLS_INSECURE": false, + "ESP_TLS_PSK_VERIFICATION": false, + "ESP_TLS_SERVER_CERT_SELECT_HOOK": false, + "ESP_TLS_SERVER_MIN_AUTH_MODE_OPTIONAL": false, + "ESP_TLS_SERVER_SESSION_TICKETS": false, + "ESP_TLS_USE_SECURE_ELEMENT": false, + "ESP_TLS_USING_MBEDTLS": true, + "ESP_TRACE_LIB_EXTERNAL": false, + "ESP_TRACE_LIB_NAME": "none", + "ESP_TRACE_LIB_NONE": true, + "ESP_TRACE_TRANSPORT_APPTRACE": false, + "ESP_TRACE_TRANSPORT_NAME": "none", + "ESP_TRACE_TRANSPORT_NONE": true, + "ESP_WIFI_11KV_SUPPORT": false, + "ESP_WIFI_11R_SUPPORT": false, + "ESP_WIFI_AMPDU_RX_ENABLED": true, + "ESP_WIFI_AMPDU_TX_ENABLED": true, + "ESP_WIFI_BSS_MAX_IDLE_SUPPORT": false, + "ESP_WIFI_CSI_ENABLED": false, + "ESP_WIFI_DEBUG_PRINT": false, + "ESP_WIFI_DPP_SUPPORT": false, + "ESP_WIFI_DYNAMIC_RX_BUFFER_NUM": 32, + "ESP_WIFI_DYNAMIC_RX_MGMT_BUF": 0, + "ESP_WIFI_DYNAMIC_RX_MGMT_BUFFER": false, + "ESP_WIFI_DYNAMIC_TX_BUFFER": true, + "ESP_WIFI_DYNAMIC_TX_BUFFER_NUM": 32, + "ESP_WIFI_ENABLED": true, + "ESP_WIFI_ENABLE_SAE_H2E": true, + "ESP_WIFI_ENABLE_SAE_PK": true, + "ESP_WIFI_ENABLE_WPA3_OWE_STA": true, + "ESP_WIFI_ENABLE_WPA3_SAE": true, + "ESP_WIFI_ENTERPRISE_SUPPORT": true, + "ESP_WIFI_ENT_FREE_DYNAMIC_BUFFER": false, + "ESP_WIFI_ESPNOW_MAX_ENCRYPT_NUM": 7, + "ESP_WIFI_EXTRA_IRAM_OPT": false, + "ESP_WIFI_GMAC_SUPPORT": true, + "ESP_WIFI_IRAM_OPT": true, + "ESP_WIFI_MBEDTLS_CRYPTO": true, + "ESP_WIFI_MBEDTLS_TLS_CLIENT": true, + "ESP_WIFI_MBO_SUPPORT": false, + "ESP_WIFI_MGMT_SBUF_NUM": 32, + "ESP_WIFI_NAN_SYNC_ENABLE": false, + "ESP_WIFI_NVS_ENABLED": true, + "ESP_WIFI_RX_BA_WIN": 6, + "ESP_WIFI_RX_IRAM_OPT": true, + "ESP_WIFI_RX_MGMT_BUF_NUM_DEF": 5, + "ESP_WIFI_SLP_BEACON_LOST_OPT": false, + "ESP_WIFI_SLP_DEFAULT_MAX_ACTIVE_TIME": 10, + "ESP_WIFI_SLP_DEFAULT_MIN_ACTIVE_TIME": 50, + "ESP_WIFI_SLP_DEFAULT_WAIT_BROADCAST_DATA_TIME": 15, + "ESP_WIFI_SLP_IRAM_OPT": false, + "ESP_WIFI_SOFTAP_BEACON_MAX_LEN": 752, + "ESP_WIFI_SOFTAP_SAE_SUPPORT": true, + "ESP_WIFI_SOFTAP_SUPPORT": true, + "ESP_WIFI_STATIC_RX_BUFFER_NUM": 10, + "ESP_WIFI_STATIC_RX_MGMT_BUFFER": true, + "ESP_WIFI_STATIC_TX_BUFFER": false, + "ESP_WIFI_STA_DISCONNECTED_PM_ENABLE": true, + "ESP_WIFI_TASK_PINNED_TO_CORE_0": true, + "ESP_WIFI_TASK_PINNED_TO_CORE_1": false, + "ESP_WIFI_TX_BA_WIN": 6, + "ESP_WIFI_TX_BUFFER_TYPE": 1, + "ESP_WIFI_WAPI_PSK": false, + "ESP_WIFI_WPA3_COMPATIBLE_SUPPORT": true, + "ESP_WIFI_WPS_PASSPHRASE": false, + "ESP_WIFI_WPS_RECONNECT_ON_FAIL": false, + "ESP_WIFI_WPS_SOFTAP_REGISTRAR": false, + "ESP_WIFI_WPS_STRICT": false, + "ETH_DMA_BUFFER_SIZE": 512, + "ETH_DMA_RX_BUFFER_NUM": 10, + "ETH_DMA_TX_BUFFER_NUM": 10, + "ETH_ENABLED": true, + "ETH_IRAM_OPTIMIZATION": false, + "ETH_TRANSMIT_MUTEX": false, + "ETH_USE_ESP32_EMAC": true, + "ETH_USE_OPENETH": false, + "ETH_USE_SPI_ETHERNET": true, + "FATFS_API_ENCODING_ANSI_OEM": true, + "FATFS_API_ENCODING_UTF_8": false, + "FATFS_CODEPAGE": 437, + "FATFS_CODEPAGE_437": true, + "FATFS_CODEPAGE_720": false, + "FATFS_CODEPAGE_737": false, + "FATFS_CODEPAGE_771": false, + "FATFS_CODEPAGE_775": false, + "FATFS_CODEPAGE_850": false, + "FATFS_CODEPAGE_852": false, + "FATFS_CODEPAGE_855": false, + "FATFS_CODEPAGE_857": false, + "FATFS_CODEPAGE_860": false, + "FATFS_CODEPAGE_861": false, + "FATFS_CODEPAGE_862": false, + "FATFS_CODEPAGE_863": false, + "FATFS_CODEPAGE_864": false, + "FATFS_CODEPAGE_865": false, + "FATFS_CODEPAGE_866": false, + "FATFS_CODEPAGE_869": false, + "FATFS_CODEPAGE_932": false, + "FATFS_CODEPAGE_936": false, + "FATFS_CODEPAGE_949": false, + "FATFS_CODEPAGE_950": false, + "FATFS_CODEPAGE_DYNAMIC": false, + "FATFS_DONT_TRUST_FREE_CLUSTER_CNT": 0, + "FATFS_DONT_TRUST_LAST_ALLOC": 0, + "FATFS_FS_LOCK": 0, + "FATFS_IMMEDIATE_FSYNC": false, + "FATFS_LFN_HEAP": true, + "FATFS_LFN_NONE": false, + "FATFS_LFN_STACK": false, + "FATFS_LINK_LOCK": true, + "FATFS_MAX_LFN": 255, + "FATFS_PER_FILE_CACHE": true, + "FATFS_SECTOR_4096": true, + "FATFS_SECTOR_512": false, + "FATFS_TIMEOUT_MS": 10000, + "FATFS_USE_DYN_BUFFERS": true, + "FATFS_USE_FASTSEEK": false, + "FATFS_USE_LABEL": false, + "FATFS_USE_STRFUNC_NONE": true, + "FATFS_USE_STRFUNC_WITHOUT_CRLF_CONV": false, + "FATFS_USE_STRFUNC_WITH_CRLF_CONV": false, + "FATFS_VFS_FSTAT_BLKSIZE": 0, + "FATFS_VOLUME_COUNT": 2, + "FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER": true, + "FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE": false, + "FREERTOS_CHECK_STACKOVERFLOW_CANARY": true, + "FREERTOS_CHECK_STACKOVERFLOW_NONE": false, + "FREERTOS_CHECK_STACKOVERFLOW_PTRVAL": false, + "FREERTOS_CORETIMER_0": true, + "FREERTOS_CORETIMER_1": false, + "FREERTOS_DEBUG_OCDAWARE": true, + "FREERTOS_ENABLE_BACKWARD_COMPATIBILITY": false, + "FREERTOS_FPU_IN_ISR": false, + "FREERTOS_GENERATE_RUN_TIME_STATS": false, + "FREERTOS_HZ": 100, + "FREERTOS_IDLE_TASK_STACKSIZE": 1536, + "FREERTOS_INTERRUPT_BACKTRACE": true, + "FREERTOS_IN_IRAM": false, + "FREERTOS_ISR_STACKSIZE": 1536, + "FREERTOS_MAX_TASK_NAME_LEN": 16, + "FREERTOS_NO_AFFINITY": 2147483647, + "FREERTOS_NUMBER_OF_CORES": 2, + "FREERTOS_PORT": true, + "FREERTOS_QUEUE_REGISTRY_SIZE": 0, + "FREERTOS_SMP": false, + "FREERTOS_SUPPORT_STATIC_ALLOCATION": true, + "FREERTOS_SYSTICK_USES_CCOUNT": true, + "FREERTOS_TASK_FUNCTION_WRAPPER": true, + "FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES": 1, + "FREERTOS_TASK_PRE_DELETION_HOOK": false, + "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS": 1, + "FREERTOS_TICK_SUPPORT_CORETIMER": true, + "FREERTOS_TIMER_QUEUE_LENGTH": 10, + "FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY": 2147483647, + "FREERTOS_TIMER_SERVICE_TASK_NAME": "Tmr Svc", + "FREERTOS_TIMER_TASK_AFFINITY_CPU0": false, + "FREERTOS_TIMER_TASK_AFFINITY_CPU1": false, + "FREERTOS_TIMER_TASK_NO_AFFINITY": true, + "FREERTOS_TIMER_TASK_PRIORITY": 1, + "FREERTOS_TIMER_TASK_STACK_DEPTH": 2048, + "FREERTOS_TLSP_DELETION_CALLBACKS": true, + "FREERTOS_UNICORE": false, + "FREERTOS_USE_APPLICATION_TASK_TAG": false, + "FREERTOS_USE_IDLE_HOOK": false, + "FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES": false, + "FREERTOS_USE_TICK_HOOK": false, + "FREERTOS_USE_TIMERS": true, + "FREERTOS_USE_TRACE_FACILITY": false, + "FREERTOS_WATCHPOINT_END_OF_STACK": false, + "GPIO_CTRL_FUNC_IN_IRAM": false, + "GPTIMER_CTRL_FUNC_IN_IRAM": false, + "GPTIMER_ENABLE_DEBUG_LOG": false, + "GPTIMER_ISR_CACHE_SAFE": false, + "GPTIMER_ISR_HANDLER_IN_IRAM": true, + "GPTIMER_OBJ_CACHE_SAFE": true, + "HAL_ASSERTION_DISABLE": false, + "HAL_ASSERTION_ENABLE": false, + "HAL_ASSERTION_EQUALS_SYSTEM": true, + "HAL_ASSERTION_SILENT": false, + "HAL_DEFAULT_ASSERTION_LEVEL": 2, + "HAL_GPIO_USE_ROM_IMPL": true, + "HEAP_ABORT_WHEN_ALLOCATION_FAILS": false, + "HEAP_HAS_EXEC_HEAP": true, + "HEAP_PLACE_FUNCTION_INTO_FLASH": false, + "HEAP_POISONING_COMPREHENSIVE": false, + "HEAP_POISONING_DISABLED": true, + "HEAP_POISONING_LIGHT": false, + "HEAP_TASK_TRACKING": false, + "HEAP_TRACING_OFF": true, + "HEAP_TRACING_STANDALONE": false, + "HEAP_TRACING_TOHOST": false, + "HEAP_USE_HOOKS": false, + "HTTPD_ERR_RESP_NO_DELAY": true, + "HTTPD_LOG_PURGE_DATA": false, + "HTTPD_MAX_REQ_HDR_LEN": 1024, + "HTTPD_MAX_URI_LEN": 512, + "HTTPD_PURGE_BUF_LEN": 32, + "HTTPD_QUEUE_WORK_BLOCKING": false, + "HTTPD_SERVER_EVENT_POST_TIMEOUT": 2000, + "HTTPD_WS_SUPPORT": false, + "I2C_ENABLE_DEBUG_LOG": false, + "I2C_ISR_IRAM_SAFE": false, + "I2C_MASTER_ISR_HANDLER_IN_IRAM": true, + "I2C_SKIP_LEGACY_CONFLICT_CHECK": false, + "I2C_SUPPRESS_DEPRECATE_WARN": false, + "I2S_CTRL_FUNC_IN_IRAM": false, + "I2S_ENABLE_DEBUG_LOG": false, + "I2S_ISR_IRAM_SAFE": false, + "I3C_MASTER_ENABLE_DEBUG_LOG": false, + "I3C_MASTER_ISR_CACHE_SAFE": false, + "I3C_MASTER_ISR_HANDLER_IN_IRAM": false, + "IDF_CMAKE": true, + "IDF_EXPERIMENTAL_FEATURES": false, + "IDF_FIRMWARE_CHIP_ID": 0, + "IDF_INIT_VERSION": "6.0.0", + "IDF_TARGET": "esp32", + "IDF_TARGET_ARCH": "xtensa", + "IDF_TARGET_ARCH_XTENSA": true, + "IDF_TARGET_ESP32": true, + "IDF_TOOLCHAIN": "gcc", + "IDF_TOOLCHAIN_GCC": true, + "LCD_ENABLE_DEBUG_LOG": false, + "LEDC_CTRL_FUNC_IN_IRAM": false, + "LIBC_ASSERT_BUFFER_SIZE": 200, + "LIBC_LOCKS_PLACE_IN_IRAM": true, + "LIBC_MISC_IN_IRAM": true, + "LIBC_NEWLIB": false, + "LIBC_PICOLIBC": true, + "LIBC_PICOLIBC_NEWLIB_COMPATIBILITY": true, + "LIBC_STDIN_LINE_ENDING_CR": true, + "LIBC_STDIN_LINE_ENDING_CRLF": false, + "LIBC_STDIN_LINE_ENDING_LF": false, + "LIBC_STDOUT_LINE_ENDING_CR": false, + "LIBC_STDOUT_LINE_ENDING_CRLF": true, + "LIBC_STDOUT_LINE_ENDING_LF": false, + "LIBC_TIME_SYSCALL_USE_HRT": false, + "LIBC_TIME_SYSCALL_USE_NONE": false, + "LIBC_TIME_SYSCALL_USE_RTC": false, + "LIBC_TIME_SYSCALL_USE_RTC_HRT": true, + "LOG_COLORS": false, + "LOG_DEFAULT_LEVEL": 3, + "LOG_DEFAULT_LEVEL_DEBUG": false, + "LOG_DEFAULT_LEVEL_ERROR": false, + "LOG_DEFAULT_LEVEL_INFO": true, + "LOG_DEFAULT_LEVEL_NONE": false, + "LOG_DEFAULT_LEVEL_VERBOSE": false, + "LOG_DEFAULT_LEVEL_WARN": false, + "LOG_DYNAMIC_LEVEL_CONTROL": true, + "LOG_IN_IRAM": true, + "LOG_MASTER_LEVEL": false, + "LOG_MAXIMUM_EQUALS_DEFAULT": true, + "LOG_MAXIMUM_LEVEL": 3, + "LOG_MAXIMUM_LEVEL_DEBUG": false, + "LOG_MAXIMUM_LEVEL_VERBOSE": false, + "LOG_MODE_TEXT": true, + "LOG_MODE_TEXT_EN": true, + "LOG_TAG_LEVEL_CACHE_ARRAY": false, + "LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP": true, + "LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST": true, + "LOG_TAG_LEVEL_IMPL_CACHE_SIZE": 31, + "LOG_TAG_LEVEL_IMPL_LINKED_LIST": false, + "LOG_TAG_LEVEL_IMPL_NONE": false, + "LOG_TIMESTAMP_SOURCE_RTOS": true, + "LOG_TIMESTAMP_SOURCE_SYSTEM": false, + "LOG_VERSION": 1, + "LOG_VERSION_1": true, + "LOG_VERSION_2": false, + "LWIP_AUTOIP": false, + "LWIP_BRIDGEIF_MAX_PORTS": 7, + "LWIP_BROADCAST_PING": false, + "LWIP_CHECKSUM_CHECK_ICMP": true, + "LWIP_CHECKSUM_CHECK_IP": false, + "LWIP_CHECKSUM_CHECK_UDP": false, + "LWIP_CHECK_THREAD_SAFETY": false, + "LWIP_DEBUG": false, + "LWIP_DHCPS": true, + "LWIP_DHCPS_LEASE_UNIT": 60, + "LWIP_DHCPS_MAX_HOSTNAME_LEN": 64, + "LWIP_DHCPS_MAX_STATION_NUM": 8, + "LWIP_DHCPS_REPORT_CLIENT_HOSTNAME": true, + "LWIP_DHCPS_STATIC_ENTRIES": true, + "LWIP_DHCP_COARSE_TIMER_SECS": 1, + "LWIP_DHCP_DISABLE_CLIENT_ID": false, + "LWIP_DHCP_DISABLE_VENDOR_CLASS_ID": true, + "LWIP_DHCP_DOES_ACD_CHECK": false, + "LWIP_DHCP_DOES_ARP_CHECK": true, + "LWIP_DHCP_DOES_NOT_CHECK_OFFERED_IP": false, + "LWIP_DHCP_GET_NTP_SRV": false, + "LWIP_DHCP_OPTIONS_LEN": 69, + "LWIP_DHCP_RESTORE_LAST_IP": false, + "LWIP_DNS_MAX_HOST_IP": 1, + "LWIP_DNS_MAX_SERVERS": 3, + "LWIP_DNS_SETSERVER_WITH_NETIF": false, + "LWIP_DNS_SUPPORT_MDNS_QUERIES": true, + "LWIP_ENABLE": true, + "LWIP_ESP_GRATUITOUS_ARP": true, + "LWIP_ESP_LWIP_ASSERT": true, + "LWIP_ESP_MLDV6_REPORT": true, + "LWIP_EXTRA_IRAM_OPTIMIZATION": false, + "LWIP_FALLBACK_DNS_SERVER_SUPPORT": false, + "LWIP_FORCE_ROUTER_FORWARDING": false, + "LWIP_GARP_TMR_INTERVAL": 60, + "LWIP_HOOK_DHCP_EXTRA_OPTION_CUSTOM": false, + "LWIP_HOOK_DHCP_EXTRA_OPTION_DEFAULT": false, + "LWIP_HOOK_DHCP_EXTRA_OPTION_NONE": true, + "LWIP_HOOK_DNS_EXT_RESOLVE_CUSTOM": false, + "LWIP_HOOK_DNS_EXT_RESOLVE_NONE": true, + "LWIP_HOOK_IP6_INPUT_CUSTOM": false, + "LWIP_HOOK_IP6_INPUT_DEFAULT": true, + "LWIP_HOOK_IP6_INPUT_NONE": false, + "LWIP_HOOK_IP6_ROUTE_CUSTOM": false, + "LWIP_HOOK_IP6_ROUTE_DEFAULT": false, + "LWIP_HOOK_IP6_ROUTE_NONE": true, + "LWIP_HOOK_IP6_SELECT_SRC_ADDR_CUSTOM": false, + "LWIP_HOOK_IP6_SELECT_SRC_ADDR_DEFAULT": false, + "LWIP_HOOK_IP6_SELECT_SRC_ADDR_NONE": true, + "LWIP_HOOK_ND6_GET_GW_CUSTOM": false, + "LWIP_HOOK_ND6_GET_GW_DEFAULT": false, + "LWIP_HOOK_ND6_GET_GW_NONE": true, + "LWIP_HOOK_NETCONN_EXT_RESOLVE_CUSTOM": false, + "LWIP_HOOK_NETCONN_EXT_RESOLVE_DEFAULT": false, + "LWIP_HOOK_NETCONN_EXT_RESOLVE_NONE": true, + "LWIP_HOOK_TCP_ISN_CUSTOM": false, + "LWIP_HOOK_TCP_ISN_DEFAULT": true, + "LWIP_HOOK_TCP_ISN_NONE": false, + "LWIP_ICMP": true, + "LWIP_IP4_FRAG": true, + "LWIP_IP4_REASSEMBLY": false, + "LWIP_IP6_FRAG": true, + "LWIP_IP6_REASSEMBLY": false, + "LWIP_IPV4": true, + "LWIP_IPV6": true, + "LWIP_IPV6_AUTOCONFIG": false, + "LWIP_IPV6_DUP_DETECT_ATTEMPTS": 1, + "LWIP_IPV6_FORWARD": false, + "LWIP_IPV6_MEMP_NUM_ND6_QUEUE": 3, + "LWIP_IPV6_ND6_NUM_DESTINATIONS": 10, + "LWIP_IPV6_ND6_NUM_NEIGHBORS": 5, + "LWIP_IPV6_ND6_NUM_PREFIXES": 5, + "LWIP_IPV6_ND6_NUM_ROUTERS": 3, + "LWIP_IPV6_ND6_ROUTE_INFO_OPTION_SUPPORT": false, + "LWIP_IPV6_NUM_ADDRESSES": 3, + "LWIP_IP_DEFAULT_TTL": 64, + "LWIP_IP_FORWARD": false, + "LWIP_IP_REASS_MAX_PBUFS": 10, + "LWIP_IRAM_OPTIMIZATION": false, + "LWIP_L2_TO_L3_COPY": false, + "LWIP_LOCAL_HOSTNAME": "espressif", + "LWIP_LOOPBACK_MAX_PBUFS": 8, + "LWIP_MAX_ACTIVE_TCP": 16, + "LWIP_MAX_LISTENING_TCP": 16, + "LWIP_MAX_RAW_PCBS": 16, + "LWIP_MAX_SOCKETS": 10, + "LWIP_MAX_UDP_PCBS": 16, + "LWIP_MLDV6_TMR_INTERVAL": 40, + "LWIP_MULTICAST_PING": false, + "LWIP_ND6": true, + "LWIP_NETBUF_RECVINFO": false, + "LWIP_NETIF_LINK_CALLBACK": false, + "LWIP_NETIF_LOOPBACK": true, + "LWIP_NETIF_STATUS_CALLBACK": false, + "LWIP_NUM_NETIF_CLIENT_DATA": 0, + "LWIP_PPP_SUPPORT": false, + "LWIP_SLIP_SUPPORT": false, + "LWIP_SNTP_MAXIMUM_STARTUP_DELAY": 5000, + "LWIP_SNTP_MAX_SERVERS": 1, + "LWIP_SNTP_STARTUP_DELAY": true, + "LWIP_SNTP_UPDATE_DELAY": 3600000, + "LWIP_SO_LINGER": false, + "LWIP_SO_RCVBUF": false, + "LWIP_SO_REUSE": true, + "LWIP_SO_REUSE_RXTOALL": true, + "LWIP_STATS": false, + "LWIP_TCPIP_CORE_LOCKING": false, + "LWIP_TCPIP_RECVMBOX_SIZE": 32, + "LWIP_TCPIP_TASK_AFFINITY": 2147483647, + "LWIP_TCPIP_TASK_AFFINITY_CPU0": false, + "LWIP_TCPIP_TASK_AFFINITY_CPU1": false, + "LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY": true, + "LWIP_TCPIP_TASK_PRIO": 18, + "LWIP_TCPIP_TASK_STACK_SIZE": 3072, + "LWIP_TCP_ACCEPTMBOX_SIZE": 6, + "LWIP_TCP_FIN_WAIT_TIMEOUT": 20000, + "LWIP_TCP_HIGH_SPEED_RETRANSMISSION": true, + "LWIP_TCP_MAXRTX": 12, + "LWIP_TCP_MSL": 60000, + "LWIP_TCP_MSS": 1440, + "LWIP_TCP_OOSEQ_MAX_PBUFS": 4, + "LWIP_TCP_OOSEQ_TIMEOUT": 6, + "LWIP_TCP_OVERSIZE_DISABLE": false, + "LWIP_TCP_OVERSIZE_MSS": true, + "LWIP_TCP_OVERSIZE_QUARTER_MSS": false, + "LWIP_TCP_QUEUE_OOSEQ": true, + "LWIP_TCP_RECVMBOX_SIZE": 6, + "LWIP_TCP_RTO_TIME": 1500, + "LWIP_TCP_SACK_OUT": false, + "LWIP_TCP_SND_BUF_DEFAULT": 5760, + "LWIP_TCP_SYNMAXRTX": 12, + "LWIP_TCP_TMR_INTERVAL": 250, + "LWIP_TCP_WND_DEFAULT": 5760, + "LWIP_TIMERS_ONDEMAND": true, + "LWIP_UDP_RECVMBOX_SIZE": 6, + "LWIP_USE_ESP_GETADDRINFO": false, + "LWIP_USE_ONLY_LWIP_SELECT": false, + "MBEDTLS_AES_C": true, + "MBEDTLS_AES_FEWER_TABLES": false, + "MBEDTLS_AES_ONLY_128_BIT_KEY_LENGTH": false, + "MBEDTLS_AES_ROM_TABLES": true, + "MBEDTLS_AES_SOFT_FALLBACK": false, + "MBEDTLS_ALLOW_WEAK_CERTIFICATE_VERIFICATION": false, + "MBEDTLS_ARIA_C": false, + "MBEDTLS_ASN1_PARSE_C": true, + "MBEDTLS_ASN1_WRITE_C": true, + "MBEDTLS_ASYMMETRIC_CONTENT_LEN": true, + "MBEDTLS_ATCA_HW_ECDSA_SIGN": false, + "MBEDTLS_ATCA_HW_ECDSA_VERIFY": false, + "MBEDTLS_BASE64_C": true, + "MBEDTLS_BIGNUM_C": true, + "MBEDTLS_CAMELLIA_C": false, + "MBEDTLS_CCM_C": true, + "MBEDTLS_CERTIFICATE_BUNDLE": true, + "MBEDTLS_CERTIFICATE_BUNDLE_CROSS_SIGNED_VERIFY": false, + "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN": false, + "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL": true, + "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE": false, + "MBEDTLS_CERTIFICATE_BUNDLE_DEPRECATED_LIST": false, + "MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS": 200, + "MBEDTLS_CHACHA20_C": false, + "MBEDTLS_CIPHER_MODE_CBC": true, + "MBEDTLS_CIPHER_MODE_CFB": true, + "MBEDTLS_CIPHER_MODE_CTR": true, + "MBEDTLS_CIPHER_MODE_OFB": true, + "MBEDTLS_CIPHER_MODE_XTS": true, + "MBEDTLS_CLIENT_SSL_SESSION_TICKETS": true, + "MBEDTLS_CMAC_C": true, + "MBEDTLS_COMPILER_OPTIMIZATION_NONE": false, + "MBEDTLS_COMPILER_OPTIMIZATION_PERF": false, + "MBEDTLS_COMPILER_OPTIMIZATION_SIZE": true, + "MBEDTLS_CTR_DRBG_C": true, + "MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE": false, + "MBEDTLS_CUSTOM_MEM_ALLOC": false, + "MBEDTLS_DEBUG": false, + "MBEDTLS_DEFAULT_MEM_ALLOC": false, + "MBEDTLS_DES_C": false, + "MBEDTLS_DHM_C": false, + "MBEDTLS_DYNAMIC_BUFFER": false, + "MBEDTLS_ECDH_C": true, + "MBEDTLS_ECDSA_C": true, + "MBEDTLS_ECDSA_DETERMINISTIC": true, + "MBEDTLS_ECJPAKE_C": false, + "MBEDTLS_ECP_C": true, + "MBEDTLS_ECP_DP_BP256R1_ENABLED": true, + "MBEDTLS_ECP_DP_BP384R1_ENABLED": true, + "MBEDTLS_ECP_DP_BP512R1_ENABLED": true, + "MBEDTLS_ECP_DP_CURVE25519_ENABLED": true, + "MBEDTLS_ECP_DP_SECP256K1_ENABLED": true, + "MBEDTLS_ECP_DP_SECP256R1_ENABLED": true, + "MBEDTLS_ECP_DP_SECP384R1_ENABLED": true, + "MBEDTLS_ECP_DP_SECP521R1_ENABLED": true, + "MBEDTLS_ECP_FIXED_POINT_OPTIM": false, + "MBEDTLS_ECP_NIST_OPTIM": true, + "MBEDTLS_ECP_RESTARTABLE": false, + "MBEDTLS_ENTROPY_FORCE_SHA256": false, + "MBEDTLS_ERROR_STRINGS": true, + "MBEDTLS_FS_IO": true, + "MBEDTLS_GCM_C": true, + "MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER": true, + "MBEDTLS_HARDWARE_AES": true, + "MBEDTLS_HARDWARE_MPI": true, + "MBEDTLS_HARDWARE_SHA": true, + "MBEDTLS_HAVE_TIME": true, + "MBEDTLS_HAVE_TIME_DATE": false, + "MBEDTLS_HMAC_DRBG_C": true, + "MBEDTLS_INTERNAL_MEM_ALLOC": true, + "MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA": true, + "MBEDTLS_KEY_EXCHANGE_ECDHE_RSA": true, + "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE": true, + "MBEDTLS_KEY_EXCHANGE_RSA": true, + "MBEDTLS_LARGE_KEY_SOFTWARE_MPI": true, + "MBEDTLS_MD5_C": true, + "MBEDTLS_MD_C": true, + "MBEDTLS_NIST_KW_C": false, + "MBEDTLS_PEM_PARSE_C": true, + "MBEDTLS_PEM_WRITE_C": true, + "MBEDTLS_PKCS1_V15": true, + "MBEDTLS_PKCS1_V21": true, + "MBEDTLS_PKCS5_C": true, + "MBEDTLS_PKCS7_C": true, + "MBEDTLS_PK_C": true, + "MBEDTLS_PK_PARSE_C": true, + "MBEDTLS_PK_PARSE_EC_COMPRESSED": true, + "MBEDTLS_PK_PARSE_EC_EXTENDED": true, + "MBEDTLS_PK_WRITE_C": true, + "MBEDTLS_PLATFORM_TIME_ALT": false, + "MBEDTLS_PSK_MODES": false, + "MBEDTLS_RIPEMD160_C": false, + "MBEDTLS_ROM_MD5": true, + "MBEDTLS_RSA_C": true, + "MBEDTLS_SELF_TEST": true, + "MBEDTLS_SERVER_SSL_SESSION_TICKETS": true, + "MBEDTLS_SHA1_C": true, + "MBEDTLS_SHA224_C": false, + "MBEDTLS_SHA256_C": true, + "MBEDTLS_SHA384_C": true, + "MBEDTLS_SHA3_C": false, + "MBEDTLS_SHA512_C": true, + "MBEDTLS_SSL_ALL_ALERT_MESSAGES": true, + "MBEDTLS_SSL_ALPN": true, + "MBEDTLS_SSL_CACHE_C": true, + "MBEDTLS_SSL_CONTEXT_SERIALIZATION": false, + "MBEDTLS_SSL_IN_CONTENT_LEN": 16384, + "MBEDTLS_SSL_KEEP_PEER_CERTIFICATE": false, + "MBEDTLS_SSL_KEYING_MATERIAL_EXPORT": false, + "MBEDTLS_SSL_MAX_FRAGMENT_LENGTH": true, + "MBEDTLS_SSL_OUT_CONTENT_LEN": 4096, + "MBEDTLS_SSL_PROTO_DTLS": false, + "MBEDTLS_SSL_PROTO_GMTSSL1_1": false, + "MBEDTLS_SSL_PROTO_TLS1_2": true, + "MBEDTLS_SSL_PROTO_TLS1_3": false, + "MBEDTLS_SSL_RENEGOTIATION": true, + "MBEDTLS_SSL_SERVER_NAME_INDICATION": true, + "MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH": false, + "MBEDTLS_THREADING_ALT": false, + "MBEDTLS_THREADING_C": true, + "MBEDTLS_THREADING_PTHREAD": true, + "MBEDTLS_TLS_CLIENT": true, + "MBEDTLS_TLS_CLIENT_ONLY": false, + "MBEDTLS_TLS_DISABLED": false, + "MBEDTLS_TLS_ENABLED": true, + "MBEDTLS_TLS_SERVER": true, + "MBEDTLS_TLS_SERVER_AND_CLIENT": true, + "MBEDTLS_TLS_SERVER_ONLY": false, + "MBEDTLS_VERSION_C": true, + "MBEDTLS_VERSION_FEATURES": false, + "MBEDTLS_VER_4_X_SUPPORT": true, + "MBEDTLS_X509_CREATE_C": false, + "MBEDTLS_X509_CRL_PARSE_C": true, + "MBEDTLS_X509_CRT_PARSE_C": true, + "MBEDTLS_X509_CSR_PARSE_C": true, + "MBEDTLS_X509_REMOVE_INFO": false, + "MBEDTLS_X509_RSASSA_PSS_SUPPORT": true, + "MBEDTLS_X509_TRUSTED_CERT_CALLBACK": false, + "MBEDTLS_X509_USE_C": true, + "MCPWM_CTRL_FUNC_IN_IRAM": false, + "MCPWM_ENABLE_DEBUG_LOG": false, + "MCPWM_ISR_CACHE_SAFE": false, + "MCPWM_ISR_HANDLER_IN_IRAM": true, + "MCPWM_OBJ_CACHE_SAFE": true, + "MMU_PAGE_MODE": "64KB", + "MMU_PAGE_SIZE": 65536, + "MMU_PAGE_SIZE_64KB": true, + "NVS_ASSERT_ERROR_CHECK": false, + "NVS_BDL_STACK": false, + "NVS_LEGACY_DUP_KEYS_COMPATIBILITY": false, + "OPENTHREAD_DEBUG": false, + "OPENTHREAD_ENABLED": false, + "OPENTHREAD_SPINEL_ONLY": false, + "PARTITION_TABLE_CUSTOM": true, + "PARTITION_TABLE_CUSTOM_FILENAME": "partitions.csv", + "PARTITION_TABLE_FILENAME": "partitions.csv", + "PARTITION_TABLE_MD5": true, + "PARTITION_TABLE_OFFSET": 32768, + "PARTITION_TABLE_SINGLE_APP": false, + "PARTITION_TABLE_SINGLE_APP_LARGE": false, + "PARTITION_TABLE_TWO_OTA": false, + "PARTITION_TABLE_TWO_OTA_LARGE": false, + "PCNT_CTRL_FUNC_IN_IRAM": false, + "PCNT_ENABLE_DEBUG_LOG": false, + "PCNT_ISR_IRAM_SAFE": false, + "PM_ENABLE": false, + "PM_SLEEP_FUNC_IN_IRAM": false, + "PM_SLP_IRAM_OPT": false, + "PTHREAD_DEFAULT_CORE_0": false, + "PTHREAD_DEFAULT_CORE_1": false, + "PTHREAD_DEFAULT_CORE_NO_AFFINITY": true, + "PTHREAD_STACK_MIN": 768, + "PTHREAD_TASK_CORE_DEFAULT": -1, + "PTHREAD_TASK_NAME_DEFAULT": "pthread", + "PTHREAD_TASK_PRIO_DEFAULT": 5, + "PTHREAD_TASK_STACK_SIZE_DEFAULT": 3072, + "RINGBUF_IN_IRAM": false, + "RINGBUF_PLACE_ISR_FUNCTIONS_INTO_FLASH": false, + "RMT_ENABLE_DEBUG_LOG": false, + "RMT_ENCODER_FUNC_IN_IRAM": true, + "RMT_ISR_IRAM_SAFE": false, + "RMT_OBJ_CACHE_SAFE": true, + "RMT_RECV_FUNC_IN_IRAM": false, + "RMT_RX_ISR_CACHE_SAFE": false, + "RMT_RX_ISR_HANDLER_IN_IRAM": true, + "RMT_TX_ISR_CACHE_SAFE": false, + "RMT_TX_ISR_HANDLER_IN_IRAM": true, + "RTC_CLK_CAL_CYCLES": 1024, + "RTC_CLK_FUNC_IN_IRAM": true, + "RTC_CLK_SRC_EXT_CRYS": false, + "RTC_CLK_SRC_EXT_OSC": false, + "RTC_CLK_SRC_INT_8MD256": false, + "RTC_CLK_SRC_INT_RC": true, + "RTC_TIME_FUNC_IN_IRAM": true, + "SDM_CTRL_FUNC_IN_IRAM": false, + "SDM_ENABLE_DEBUG_LOG": false, + "SD_ENABLE_SDIO_SUPPORT": true, + "SD_HOST_SDMMC_ISR_CACHE_SAFE": false, + "SECURE_BOOT": false, + "SECURE_BOOT_V1_SUPPORTED": true, + "SECURE_FLASH_ENC_ENABLED": false, + "SECURE_SIGNED_APPS_NO_SECURE_BOOT": false, + "SOC_ADC_ATTEN_NUM": 4, + "SOC_ADC_DIGI_CONTROLLER_NUM": 2, + "SOC_ADC_DIGI_DATA_BYTES_PER_CONV": 4, + "SOC_ADC_DIGI_MAX_BITWIDTH": 12, + "SOC_ADC_DIGI_MIN_BITWIDTH": 9, + "SOC_ADC_DIGI_MONITOR_NUM": 0, + "SOC_ADC_DIGI_RESULT_BYTES": 2, + "SOC_ADC_DIG_CTRL_SUPPORTED": true, + "SOC_ADC_DMA_SUPPORTED": true, + "SOC_ADC_MAX_CHANNEL_NUM": 10, + "SOC_ADC_PATT_LEN_MAX": 16, + "SOC_ADC_PERIPH_NUM": 2, + "SOC_ADC_RTC_CTRL_SUPPORTED": true, + "SOC_ADC_RTC_MAX_BITWIDTH": 12, + "SOC_ADC_RTC_MIN_BITWIDTH": 9, + "SOC_ADC_SAMPLE_FREQ_THRES_HIGH": 2000000, + "SOC_ADC_SAMPLE_FREQ_THRES_LOW": 20000, + "SOC_ADC_SHARED_POWER": true, + "SOC_ADC_SUPPORTED": true, + "SOC_AES_SUPPORTED": true, + "SOC_AES_SUPPORT_AES_128": true, + "SOC_AES_SUPPORT_AES_192": true, + "SOC_AES_SUPPORT_AES_256": true, + "SOC_BLE_MESH_SUPPORTED": true, + "SOC_BLE_MULTI_CONN_OPTIMIZATION": true, + "SOC_BLE_SUPPORTED": true, + "SOC_BLUFI_SUPPORTED": true, + "SOC_BOD_SUPPORTED": true, + "SOC_BROWNOUT_RESET_SUPPORTED": true, + "SOC_BT_CLASSIC_SUPPORTED": true, + "SOC_BT_H2C_ENC_KEY_CTRL_ENH_VSC_SUPPORTED": true, + "SOC_BT_SUPPORTED": true, + "SOC_CAPS_ECO_VER_MAX": 301, + "SOC_CCOMP_TIMER_SUPPORTED": true, + "SOC_CLK_APLL_SUPPORTED": true, + "SOC_CLK_LP_FAST_SUPPORT_XTAL_D4": true, + "SOC_CLK_RC_FAST_D256_SUPPORTED": true, + "SOC_CLK_RC_FAST_SUPPORT_CALIBRATION": true, + "SOC_CLK_TREE_SUPPORTED": true, + "SOC_CLK_XTAL32K_SUPPORTED": true, + "SOC_CONFIGURABLE_VDDSDIO_SUPPORTED": true, + "SOC_CPU_BREAKPOINTS_NUM": 2, + "SOC_CPU_CORES_NUM": 2, + "SOC_CPU_HAS_FPU": true, + "SOC_CPU_INTR_NUM": 32, + "SOC_CPU_WATCHPOINTS_NUM": 2, + "SOC_CPU_WATCHPOINT_MAX_REGION_SIZE": 64, + "SOC_DAC_CHAN_NUM": 2, + "SOC_DAC_DMA_16BIT_ALIGN": true, + "SOC_DAC_RESOLUTION": 8, + "SOC_DAC_SUPPORTED": true, + "SOC_DEEP_SLEEP_SUPPORTED": true, + "SOC_DPORT_WORKAROUND_DIS_INTERRUPT_LVL": 5, + "SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS": 1, + "SOC_EFUSE_SUPPORTED": true, + "SOC_EMAC_RMII_CLK_OUT_INTERNAL_LOOPBACK": true, + "SOC_EMAC_SUPPORTED": true, + "SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX": 32, + "SOC_FLASH_ENC_SUPPORTED": true, + "SOC_GPIO_CLOCKOUT_BY_IO_MUX": true, + "SOC_GPIO_CLOCKOUT_CHANNEL_NUM": 3, + "SOC_GPIO_IN_RANGE_MAX": 39, + "SOC_GPIO_OUT_RANGE_MAX": 33, + "SOC_GPIO_PIN_COUNT": 40, + "SOC_GPIO_PORT": 1, + "SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK": 15667178, + "SOC_GPIO_VALID_GPIO_MASK": 1099511627775, + "SOC_GPSPI_SUPPORTED": true, + "SOC_GPTIMER_SUPPORTED": true, + "SOC_HP_CPU_HAS_MULTIPLE_CORES": true, + "SOC_HP_I2C_NUM": 2, + "SOC_I2C_NUM": 2, + "SOC_I2C_STOP_INDEPENDENT": true, + "SOC_I2C_SUPPORTED": true, + "SOC_I2C_SUPPORT_10BIT_ADDR": true, + "SOC_I2C_SUPPORT_APB": true, + "SOC_I2C_SUPPORT_SLAVE": true, + "SOC_I2S_HW_VERSION_1": true, + "SOC_I2S_I80_LCD_SUPPORTED": true, + "SOC_I2S_PDM_MAX_RX_LINES": 1, + "SOC_I2S_PDM_MAX_TX_LINES": 1, + "SOC_I2S_SUPPORTED": true, + "SOC_I2S_SUPPORTS_APLL": true, + "SOC_I2S_SUPPORTS_PCM2PDM": true, + "SOC_I2S_SUPPORTS_PDM": true, + "SOC_I2S_SUPPORTS_PDM2PCM": true, + "SOC_I2S_SUPPORTS_PDM_RX": true, + "SOC_I2S_SUPPORTS_PDM_TX": true, + "SOC_IDCACHE_PER_CORE": true, + "SOC_LCD_I80_SUPPORTED": true, + "SOC_LEDC_CHANNEL_NUM": 8, + "SOC_LEDC_HAS_TIMER_SPECIFIC_MUX": true, + "SOC_LEDC_SUPPORTED": true, + "SOC_LEDC_SUPPORT_APB_CLOCK": true, + "SOC_LEDC_SUPPORT_HS_MODE": true, + "SOC_LEDC_SUPPORT_REF_TICK": true, + "SOC_LEDC_TIMER_BIT_WIDTH": 20, + "SOC_LEDC_TIMER_NUM": 4, + "SOC_LIGHT_SLEEP_SUPPORTED": true, + "SOC_LP_PERIPH_SHARE_INTERRUPT": true, + "SOC_LP_TIMER_BIT_WIDTH_HI": 16, + "SOC_LP_TIMER_BIT_WIDTH_LO": 32, + "SOC_MCPWM_SUPPORTED": true, + "SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED": true, + "SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED": true, + "SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED": true, + "SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED": true, + "SOC_MMU_LINEAR_ADDRESS_REGION_NUM": 3, + "SOC_MMU_PERIPH_NUM": 2, + "SOC_MPI_MEM_BLOCKS_NUM": 4, + "SOC_MPI_OPERATIONS_NUM": 1, + "SOC_MPI_SUPPORTED": true, + "SOC_MPU_MIN_REGION_SIZE": 536870912, + "SOC_MPU_REGIONS_MAX_NUM": 8, + "SOC_MPU_SUPPORTED": true, + "SOC_PCNT_SUPPORTED": true, + "SOC_PHY_COMBO_MODULE": true, + "SOC_PHY_DIG_REGS_MEM_SIZE": 21, + "SOC_PHY_SUPPORTED": true, + "SOC_PM_MODEM_PD_BY_SW": true, + "SOC_PM_SUPPORTED": true, + "SOC_PM_SUPPORT_EXT0_WAKEUP": true, + "SOC_PM_SUPPORT_EXT1_WAKEUP": true, + "SOC_PM_SUPPORT_EXT_WAKEUP": true, + "SOC_PM_SUPPORT_MODEM_PD": true, + "SOC_PM_SUPPORT_RC_FAST_PD": true, + "SOC_PM_SUPPORT_RTC_FAST_MEM_PD": true, + "SOC_PM_SUPPORT_RTC_PERIPH_PD": true, + "SOC_PM_SUPPORT_RTC_SLOW_MEM_PD": true, + "SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP": true, + "SOC_PM_SUPPORT_VDDSDIO_PD": true, + "SOC_RMT_MEM_WORDS_PER_CHANNEL": 64, + "SOC_RMT_SUPPORTED": true, + "SOC_RNG_SUPPORTED": true, + "SOC_RSA_MAX_BIT_LEN": 4096, + "SOC_RTCIO_HOLD_SUPPORTED": true, + "SOC_RTCIO_INPUT_OUTPUT_SUPPORTED": true, + "SOC_RTCIO_PIN_COUNT": 18, + "SOC_RTCIO_WAKE_SUPPORTED": true, + "SOC_RTC_FAST_MEM_SUPPORTED": true, + "SOC_RTC_MEM_SUPPORTED": true, + "SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256": true, + "SOC_RTC_SLOW_MEM_SUPPORTED": true, + "SOC_RTC_TIMER_V1_SUPPORTED": true, + "SOC_SDIO_SLAVE_SUPPORTED": true, + "SOC_SDMMC_DATA_WIDTH_MAX": 8, + "SOC_SDMMC_HOST_SUPPORTED": true, + "SOC_SDMMC_NUM_SLOTS": 2, + "SOC_SDMMC_USE_IOMUX": true, + "SOC_SDM_SUPPORTED": true, + "SOC_SECURE_BOOT_SUPPORTED": true, + "SOC_SECURE_BOOT_V1": true, + "SOC_SHARED_IDCACHE_SUPPORTED": true, + "SOC_SHA_ENDIANNESS_BE": true, + "SOC_SHA_SUPPORTED": true, + "SOC_SHA_SUPPORT_PARALLEL_ENG": true, + "SOC_SHA_SUPPORT_SHA1": true, + "SOC_SHA_SUPPORT_SHA256": true, + "SOC_SHA_SUPPORT_SHA384": true, + "SOC_SHA_SUPPORT_SHA512": true, + "SOC_SPIRAM_SUPPORTED": true, + "SOC_SPI_AS_CS_SUPPORTED": true, + "SOC_SPI_DMA_CHAN_NUM": 2, + "SOC_SPI_FLASH_SUPPORTED": true, + "SOC_SPI_HD_BOTH_INOUT_SUPPORTED": true, + "SOC_SPI_MAXIMUM_BUFFER_SIZE": 64, + "SOC_SPI_MAX_CS_NUM": 3, + "SOC_SPI_MAX_PRE_DIVIDER": 8192, + "SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE": true, + "SOC_SPI_PERIPH_NUM": 3, + "SOC_SPI_SUPPORT_CLK_APB": true, + "SOC_SUPPORT_COEXISTENCE": true, + "SOC_TOUCH_MAX_CHAN_ID": 9, + "SOC_TOUCH_MIN_CHAN_ID": 0, + "SOC_TOUCH_SAMPLE_CFG_NUM": 1, + "SOC_TOUCH_SENSOR_SUPPORTED": true, + "SOC_TOUCH_SENSOR_VERSION": 1, + "SOC_TOUCH_SUPPORT_SLEEP_WAKEUP": true, + "SOC_TWAI_CONTROLLER_NUM": 1, + "SOC_TWAI_MASK_FILTER_NUM": 1, + "SOC_TWAI_SUPPORTED": true, + "SOC_UART_BITRATE_MAX": 5000000, + "SOC_UART_FIFO_LEN": 128, + "SOC_UART_HP_NUM": 3, + "SOC_UART_NUM": 3, + "SOC_UART_SUPPORTED": true, + "SOC_UART_SUPPORT_APB_CLK": true, + "SOC_UART_SUPPORT_REF_TICK": true, + "SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE": true, + "SOC_ULP_FSM_SUPPORTED": true, + "SOC_ULP_HAS_ADC": true, + "SOC_ULP_SUPPORTED": true, + "SOC_WDT_SUPPORTED": true, + "SOC_WIFI_CSI_SUPPORT": true, + "SOC_WIFI_MESH_SUPPORT": true, + "SOC_WIFI_NAN_SUPPORT": true, + "SOC_WIFI_SUPPORTED": true, + "SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW": true, + "SOC_WIFI_WAPI_SUPPORT": true, + "SOC_XTAL_SUPPORT_26M": true, + "SOC_XTAL_SUPPORT_40M": true, + "SPIFFS_API_DBG": false, + "SPIFFS_CACHE": true, + "SPIFFS_CACHE_DBG": false, + "SPIFFS_CACHE_STATS": false, + "SPIFFS_CACHE_WR": true, + "SPIFFS_CHECK_DBG": false, + "SPIFFS_DBG": false, + "SPIFFS_FOLLOW_SYMLINKS": false, + "SPIFFS_GC_DBG": false, + "SPIFFS_GC_MAX_RUNS": 10, + "SPIFFS_GC_STATS": false, + "SPIFFS_MAX_PARTITIONS": 3, + "SPIFFS_META_LENGTH": 4, + "SPIFFS_OBJ_NAME_LEN": 32, + "SPIFFS_PAGE_CHECK": true, + "SPIFFS_PAGE_SIZE": 256, + "SPIFFS_TEST_VISUALISATION": false, + "SPIFFS_USE_MAGIC": true, + "SPIFFS_USE_MAGIC_LENGTH": true, + "SPIFFS_USE_MTIME": true, + "SPIRAM": false, + "SPI_FLASH_BROWNOUT_RESET": true, + "SPI_FLASH_BROWNOUT_RESET_XMC": true, + "SPI_FLASH_BYPASS_BLOCK_ERASE": false, + "SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED": false, + "SPI_FLASH_DANGEROUS_WRITE_ABORTS": true, + "SPI_FLASH_DANGEROUS_WRITE_ALLOWED": false, + "SPI_FLASH_DANGEROUS_WRITE_FAILS": false, + "SPI_FLASH_ENABLE_COUNTERS": false, + "SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE": true, + "SPI_FLASH_ERASE_YIELD_DURATION_MS": 20, + "SPI_FLASH_ERASE_YIELD_TICKS": 1, + "SPI_FLASH_FORCE_ENABLE_C6_H2_SUSPEND": false, + "SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND": false, + "SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST": false, + "SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM": true, + "SPI_FLASH_SHARE_SPI1_BUS": false, + "SPI_FLASH_SIZE_OVERRIDE": false, + "SPI_FLASH_SUPPORT_BOYA_CHIP": false, + "SPI_FLASH_SUPPORT_GD_CHIP": true, + "SPI_FLASH_SUPPORT_ISSI_CHIP": true, + "SPI_FLASH_SUPPORT_MXIC_CHIP": true, + "SPI_FLASH_SUPPORT_TH_CHIP": false, + "SPI_FLASH_SUPPORT_WINBOND_CHIP": true, + "SPI_FLASH_SUSPEND_TSUS_VAL_US": 50, + "SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED": true, + "SPI_FLASH_VENDOR_ISSI_SUPPORT_ENABLED": true, + "SPI_FLASH_VENDOR_MXIC_SUPPORT_ENABLED": true, + "SPI_FLASH_VENDOR_WINBOND_SUPPORT_ENABLED": true, + "SPI_FLASH_VENDOR_XMC_SUPPORT_ENABLED": true, + "SPI_FLASH_VERIFY_WRITE": false, + "SPI_FLASH_WRITE_CHUNK_SIZE": 8192, + "SPI_FLASH_YIELD_DURING_ERASE": true, + "SPI_MASTER_ISR_IN_IRAM": true, + "SPI_SLAVE_IN_IRAM": false, + "SPI_SLAVE_ISR_IN_IRAM": true, + "TOUCH_CTRL_FUNC_IN_IRAM": false, + "TOUCH_ENABLE_DEBUG_LOG": false, + "TOUCH_ISR_IRAM_SAFE": false, + "TOUCH_SKIP_FSM_CHECK": false, + "TOUCH_SKIP_LEGACY_CONFLICT_CHECK": false, + "TOUCH_SUPPRESS_DEPRECATE_WARN": false, + "TWAI_ENABLE_DEBUG_LOG": false, + "TWAI_IO_FUNC_IN_IRAM": false, + "TWAI_ISR_CACHE_SAFE": false, + "TWAI_ISR_IN_IRAM": false, + "TWAI_ISR_IN_IRAM_LEGACY": false, + "TWAI_SKIP_LEGACY_CONFLICT_CHECK": false, + "TWAI_SUPPRESS_DEPRECATE_WARN": false, + "UART_ISR_IN_IRAM": false, + "UHCI_ENABLE_DEBUG_LOG": false, + "UHCI_ISR_CACHE_SAFE": false, + "UHCI_ISR_HANDLER_IN_IRAM": false, + "ULP_COPROC_ENABLED": false, + "UNITY_ENABLE_64BIT": false, + "UNITY_ENABLE_BACKTRACE_ON_FAIL": false, + "UNITY_ENABLE_COLOR": false, + "UNITY_ENABLE_DOUBLE": true, + "UNITY_ENABLE_FIXTURE": false, + "UNITY_ENABLE_FLOAT": true, + "UNITY_ENABLE_IDF_TEST_RUNNER": true, + "VFS_INITIALIZE_DEV_NULL": true, + "VFS_MAX_COUNT": 8, + "VFS_SELECT_IN_RAM": false, + "VFS_SEMIHOSTFS_MAX_MOUNT_POINTS": 1, + "VFS_SUPPORT_DIR": true, + "VFS_SUPPORT_IO": true, + "VFS_SUPPORT_SELECT": true, + "VFS_SUPPORT_TERMIOS": false, + "VFS_SUPPRESS_SELECT_DEBUG_OUTPUT": true, + "WL_SECTOR_SIZE": 4096, + "WL_SECTOR_SIZE_4096": true, + "WL_SECTOR_SIZE_512": false, + "WS_BUFFER_SIZE": 1024, + "WS_DYNAMIC_BUFFER": false, + "WS_TRANSPORT": true, + "XTAL_FREQ": 40, + "XTAL_FREQ_26": false, + "XTAL_FREQ_32": false, + "XTAL_FREQ_40": true, + "XTAL_FREQ_AUTO": false +} \ No newline at end of file diff --git a/build/esp-idf/app_trace/cmake_install.cmake b/build/esp-idf/app_trace/cmake_install.cmake new file mode 100644 index 0000000..c5753b8 --- /dev/null +++ b/build/esp-idf/app_trace/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/app_trace + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/app_trace/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj b/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj new file mode 100644 index 0000000..20be01a Binary files /dev/null and b/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj differ diff --git a/build/esp-idf/app_update/cmake_install.cmake b/build/esp-idf/app_update/cmake_install.cmake new file mode 100644 index 0000000..98545ae --- /dev/null +++ b/build/esp-idf/app_update/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/app_update + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/app_update/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/app_update/libapp_update.a b/build/esp-idf/app_update/libapp_update.a new file mode 100644 index 0000000..b4aee8f Binary files /dev/null and b/build/esp-idf/app_update/libapp_update.a differ diff --git a/build/esp-idf/bootloader/bootloader-flash_args.in b/build/esp-idf/bootloader/bootloader-flash_args.in new file mode 100644 index 0000000..618bacd --- /dev/null +++ b/build/esp-idf/bootloader/bootloader-flash_args.in @@ -0,0 +1,2 @@ +--flash-mode dio --flash-freq 40m --flash-size 2MB +0x1000 bootloader/bootloader.bin \ No newline at end of file diff --git a/build/esp-idf/bootloader/cmake_install.cmake b/build/esp-idf/bootloader/cmake_install.cmake new file mode 100644 index 0000000..a26a6dd --- /dev/null +++ b/build/esp-idf/bootloader/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/bootloader + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/bootloader/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj new file mode 100644 index 0000000..8359854 Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj differ diff --git a/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32.c.obj new file mode 100644 index 0000000..f662f65 Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32.c.obj differ diff --git a/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj new file mode 100644 index 0000000..70d8370 Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj differ diff --git a/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj new file mode 100644 index 0000000..136fff8 Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj differ diff --git a/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj new file mode 100644 index 0000000..5040409 Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj differ diff --git a/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj new file mode 100644 index 0000000..4989caf Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj differ diff --git a/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj new file mode 100644 index 0000000..b4ebe50 Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj differ diff --git a/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj new file mode 100644 index 0000000..c771505 Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj differ diff --git a/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj new file mode 100644 index 0000000..5f5ca3b Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj differ diff --git a/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32.c.obj new file mode 100644 index 0000000..0d28abd Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32.c.obj differ diff --git a/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_sha.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_sha.c.obj new file mode 100644 index 0000000..84a91ab Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_sha.c.obj differ diff --git a/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj new file mode 100644 index 0000000..7e6a782 Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj differ diff --git a/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/secure_boot_secure_features.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/secure_boot_secure_features.c.obj new file mode 100644 index 0000000..2c25434 Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/secure_boot_secure_features.c.obj differ diff --git a/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj new file mode 100644 index 0000000..6d0f7ff Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj differ diff --git a/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj new file mode 100644 index 0000000..cf3b2a6 Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj differ diff --git a/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj new file mode 100644 index 0000000..a64e125 Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj differ diff --git a/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj new file mode 100644 index 0000000..2d0980d Binary files /dev/null and b/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj differ diff --git a/build/esp-idf/bootloader_support/cmake_install.cmake b/build/esp-idf/bootloader_support/cmake_install.cmake new file mode 100644 index 0000000..7a35b53 --- /dev/null +++ b/build/esp-idf/bootloader_support/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/bootloader_support + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/bootloader_support/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/bootloader_support/libbootloader_support.a b/build/esp-idf/bootloader_support/libbootloader_support.a new file mode 100644 index 0000000..98fca79 Binary files /dev/null and b/build/esp-idf/bootloader_support/libbootloader_support.a differ diff --git a/build/esp-idf/bt/cmake_install.cmake b/build/esp-idf/bt/cmake_install.cmake new file mode 100644 index 0000000..bb8d055 --- /dev/null +++ b/build/esp-idf/bt/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/bt + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/bt/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/cmake_install.cmake b/build/esp-idf/cmake_install.cmake new file mode 100644 index 0000000..f5be85a --- /dev/null +++ b/build/esp-idf/cmake_install.cmake @@ -0,0 +1,720 @@ +# Install script for directory: C:/esp/v6.0/esp-idf + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/xtensa/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_stdio/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_dma/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_gpspi/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_clock/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_mspi/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_blockdev/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_security/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/bootloader/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esptool_py/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/partition_table/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_app_format/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_bootloader_format/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/app_update/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_partition/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/efuse/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_security/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_gpio/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_uart/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_pm/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_mm/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_dma/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_timg/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_wdt/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_i2s/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ana_conv/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_rtc_timer/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/bootloader_support/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/spi_flash/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_usb_cdc_rom_console/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_common/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_rom/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/hal/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/log/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/heap/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/soc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_gpio/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_usb/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_pmu/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_touch_sens/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hw_support/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/freertos/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_libc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/pthread/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/cxx/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_timer/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_ringbuf/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_psram/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_uart/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_gptimer/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/app_trace/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_event/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/nvs_sec_provider/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/nvs_flash/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_phy/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_usb_serial_jtag/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/vfs/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/lwip/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_netif_stack/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_netif/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/wpa_supplicant/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_coex/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_wifi/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_spi/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_gdbstub/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/bt/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/unity/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/cmock/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/console/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_i2c/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_twai/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/driver/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/http_parser/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp-tls/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_i2s/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_adc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ana_cmpr/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_ana_cmpr/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_bitscrambler/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_cam/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_isp/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_cam/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_dac/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_i2c/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_i3c/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_jpeg/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_jpeg/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ledc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_ledc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_mcpwm/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_mcpwm/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_parlio/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_parlio/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_pcnt/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_pcnt/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ppa/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_ppa/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_rmt/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_rmt/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/sdmmc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sd_intf/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdio/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdm/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdmmc/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdspi/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_touch_sens/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_tsens/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_twai/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_eth/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ieee802154/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_lcd/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hid/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/tcp_transport/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_http_client/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_http_server/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_https_ota/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_https_server/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_lcd/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/protobuf-c/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/protocomm/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_local_ctrl/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_trace/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/espcoredump/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/wear_levelling/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/fatfs/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/idf_test/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/ieee802154/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/openthread/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/perfmon/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/rt/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/spiffs/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/ulp/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/main/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/cmock/CMakeFiles/__idf_cmock.dir/CMock/src/cmock.c.obj b/build/esp-idf/cmock/CMakeFiles/__idf_cmock.dir/CMock/src/cmock.c.obj new file mode 100644 index 0000000..14329ca Binary files /dev/null and b/build/esp-idf/cmock/CMakeFiles/__idf_cmock.dir/CMock/src/cmock.c.obj differ diff --git a/build/esp-idf/cmock/cmake_install.cmake b/build/esp-idf/cmock/cmake_install.cmake new file mode 100644 index 0000000..8be524b --- /dev/null +++ b/build/esp-idf/cmock/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/cmock + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/cmock/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/cmock/libcmock.a b/build/esp-idf/cmock/libcmock.a new file mode 100644 index 0000000..724e6bc Binary files /dev/null and b/build/esp-idf/cmock/libcmock.a differ diff --git a/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj b/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj new file mode 100644 index 0000000..117e14e Binary files /dev/null and b/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj differ diff --git a/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj b/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj new file mode 100644 index 0000000..a04e4f9 Binary files /dev/null and b/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj differ diff --git a/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj b/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj new file mode 100644 index 0000000..e391466 Binary files /dev/null and b/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj differ diff --git a/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj b/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj new file mode 100644 index 0000000..cb13b80 Binary files /dev/null and b/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj differ diff --git a/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj b/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj new file mode 100644 index 0000000..d112a45 Binary files /dev/null and b/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj differ diff --git a/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj b/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj new file mode 100644 index 0000000..faf2c83 Binary files /dev/null and b/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj differ diff --git a/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj b/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj new file mode 100644 index 0000000..15a5b10 Binary files /dev/null and b/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj differ diff --git a/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj b/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj new file mode 100644 index 0000000..ae48e48 Binary files /dev/null and b/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj differ diff --git a/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj b/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj new file mode 100644 index 0000000..eb5a2ab Binary files /dev/null and b/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj differ diff --git a/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj b/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj new file mode 100644 index 0000000..8055aa7 Binary files /dev/null and b/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj differ diff --git a/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj b/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj new file mode 100644 index 0000000..c771a7c Binary files /dev/null and b/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj differ diff --git a/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj b/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj new file mode 100644 index 0000000..836b5cd Binary files /dev/null and b/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj differ diff --git a/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj b/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj new file mode 100644 index 0000000..c81816b Binary files /dev/null and b/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj differ diff --git a/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj b/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj new file mode 100644 index 0000000..fce3bc6 Binary files /dev/null and b/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj differ diff --git a/build/esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj b/build/esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj new file mode 100644 index 0000000..a65a592 Binary files /dev/null and b/build/esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj differ diff --git a/build/esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_common.c.obj b/build/esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_common.c.obj new file mode 100644 index 0000000..3a58d12 Binary files /dev/null and b/build/esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_common.c.obj differ diff --git a/build/esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl_chip.c.obj b/build/esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl_chip.c.obj new file mode 100644 index 0000000..18185ad Binary files /dev/null and b/build/esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl_chip.c.obj differ diff --git a/build/esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl_internal.c.obj b/build/esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl_internal.c.obj new file mode 100644 index 0000000..b367f10 Binary files /dev/null and b/build/esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl_internal.c.obj differ diff --git a/build/esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj b/build/esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj new file mode 100644 index 0000000..eed0658 Binary files /dev/null and b/build/esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj differ diff --git a/build/esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj b/build/esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj new file mode 100644 index 0000000..39acaa8 Binary files /dev/null and b/build/esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj differ diff --git a/build/esp-idf/console/cmake_install.cmake b/build/esp-idf/console/cmake_install.cmake new file mode 100644 index 0000000..f2f9585 --- /dev/null +++ b/build/esp-idf/console/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/console + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/console/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/console/libconsole.a b/build/esp-idf/console/libconsole.a new file mode 100644 index 0000000..a7efc5b Binary files /dev/null and b/build/esp-idf/console/libconsole.a differ diff --git a/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj b/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj new file mode 100644 index 0000000..4b14038 Binary files /dev/null and b/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj differ diff --git a/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj b/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj new file mode 100644 index 0000000..2ec5f42 Binary files /dev/null and b/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj differ diff --git a/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_init.cpp.obj b/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_init.cpp.obj new file mode 100644 index 0000000..8c6c4f5 Binary files /dev/null and b/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_init.cpp.obj differ diff --git a/build/esp-idf/cxx/cmake_install.cmake b/build/esp-idf/cxx/cmake_install.cmake new file mode 100644 index 0000000..08aeecb --- /dev/null +++ b/build/esp-idf/cxx/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/cxx + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/cxx/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/cxx/libcxx.a b/build/esp-idf/cxx/libcxx.a new file mode 100644 index 0000000..033f1b8 Binary files /dev/null and b/build/esp-idf/cxx/libcxx.a differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.c.obj new file mode 100644 index 0000000..14ff8d7 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/esp32/touch_sensor.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/esp32/touch_sensor.c.obj new file mode 100644 index 0000000..4f5241d Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/esp32/touch_sensor.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/touch_sensor_common.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/touch_sensor_common.c.obj new file mode 100644 index 0000000..b5fa71e Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/touch_sensor_common.c.obj differ diff --git a/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj new file mode 100644 index 0000000..04030c7 Binary files /dev/null and b/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj differ diff --git a/build/esp-idf/driver/cmake_install.cmake b/build/esp-idf/driver/cmake_install.cmake new file mode 100644 index 0000000..3b596d7 --- /dev/null +++ b/build/esp-idf/driver/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/driver + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/driver/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/driver/libdriver.a b/build/esp-idf/driver/libdriver.a new file mode 100644 index 0000000..38e68ce Binary files /dev/null and b/build/esp-idf/driver/libdriver.a differ diff --git a/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_fields.c.obj b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_fields.c.obj new file mode 100644 index 0000000..1e655eb Binary files /dev/null and b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_fields.c.obj differ diff --git a/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj new file mode 100644 index 0000000..d9b1e3f Binary files /dev/null and b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj differ diff --git a/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_utility.c.obj b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_utility.c.obj new file mode 100644 index 0000000..70e1a55 Binary files /dev/null and b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_utility.c.obj differ diff --git a/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/without_key_purposes/three_key_blocks/esp_efuse_api_key.c.obj b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/without_key_purposes/three_key_blocks/esp_efuse_api_key.c.obj new file mode 100644 index 0000000..806c7dc Binary files /dev/null and b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/without_key_purposes/three_key_blocks/esp_efuse_api_key.c.obj differ diff --git a/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj new file mode 100644 index 0000000..1050179 Binary files /dev/null and b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj differ diff --git a/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj new file mode 100644 index 0000000..ba32155 Binary files /dev/null and b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj differ diff --git a/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_startup.c.obj b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_startup.c.obj new file mode 100644 index 0000000..394c249 Binary files /dev/null and b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_startup.c.obj differ diff --git a/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj new file mode 100644 index 0000000..f544f3e Binary files /dev/null and b/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj differ diff --git a/build/esp-idf/efuse/cmake_install.cmake b/build/esp-idf/efuse/cmake_install.cmake new file mode 100644 index 0000000..345599d --- /dev/null +++ b/build/esp-idf/efuse/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/efuse + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/efuse/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/efuse/libefuse.a b/build/esp-idf/efuse/libefuse.a new file mode 100644 index 0000000..fe2da2d Binary files /dev/null and b/build/esp-idf/efuse/libefuse.a differ diff --git a/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto/esp_tls_crypto.c.obj b/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto/esp_tls_crypto.c.obj new file mode 100644 index 0000000..4f1b0a0 Binary files /dev/null and b/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto/esp_tls_crypto.c.obj differ diff --git a/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj b/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj new file mode 100644 index 0000000..a5d0d81 Binary files /dev/null and b/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj differ diff --git a/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_error_capture.c.obj b/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_error_capture.c.obj new file mode 100644 index 0000000..e87f3b5 Binary files /dev/null and b/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_error_capture.c.obj differ diff --git a/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj b/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj new file mode 100644 index 0000000..feaf31a Binary files /dev/null and b/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj differ diff --git a/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_platform_port.c.obj b/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_platform_port.c.obj new file mode 100644 index 0000000..53782b8 Binary files /dev/null and b/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_platform_port.c.obj differ diff --git a/build/esp-idf/esp-tls/cmake_install.cmake b/build/esp-idf/esp-tls/cmake_install.cmake new file mode 100644 index 0000000..922d809 --- /dev/null +++ b/build/esp-idf/esp-tls/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp-tls + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp-tls/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp-tls/libesp-tls.a b/build/esp-idf/esp-tls/libesp-tls.a new file mode 100644 index 0000000..a8e8529 Binary files /dev/null and b/build/esp-idf/esp-tls/libesp-tls.a differ diff --git a/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali.c.obj b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali.c.obj new file mode 100644 index 0000000..12e494c Binary files /dev/null and b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali.c.obj differ diff --git a/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali_curve_fitting.c.obj b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali_curve_fitting.c.obj new file mode 100644 index 0000000..802261a Binary files /dev/null and b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali_curve_fitting.c.obj differ diff --git a/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_common.c.obj b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_common.c.obj new file mode 100644 index 0000000..55bdd3d Binary files /dev/null and b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_common.c.obj differ diff --git a/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_continuous.c.obj b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_continuous.c.obj new file mode 100644 index 0000000..9ca2e89 Binary files /dev/null and b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_continuous.c.obj differ diff --git a/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_oneshot.c.obj b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_oneshot.c.obj new file mode 100644 index 0000000..cb81c12 Binary files /dev/null and b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_oneshot.c.obj differ diff --git a/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32/adc_cali_line_fitting.c.obj b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32/adc_cali_line_fitting.c.obj new file mode 100644 index 0000000..e612f73 Binary files /dev/null and b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32/adc_cali_line_fitting.c.obj differ diff --git a/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32/adc_dma.c.obj b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32/adc_dma.c.obj new file mode 100644 index 0000000..b62ac1a Binary files /dev/null and b/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32/adc_dma.c.obj differ diff --git a/build/esp-idf/esp_adc/cmake_install.cmake b/build/esp-idf/esp_adc/cmake_install.cmake new file mode 100644 index 0000000..5dc0597 --- /dev/null +++ b/build/esp-idf/esp_adc/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_adc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_adc/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_adc/libesp_adc.a b/build/esp-idf/esp_adc/libesp_adc.a new file mode 100644 index 0000000..91ec1b1 Binary files /dev/null and b/build/esp-idf/esp_adc/libesp_adc.a differ diff --git a/build/esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj b/build/esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj new file mode 100644 index 0000000..d0b060e Binary files /dev/null and b/build/esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj differ diff --git a/build/esp-idf/esp_app_format/cmake_install.cmake b/build/esp-idf/esp_app_format/cmake_install.cmake new file mode 100644 index 0000000..5b9b84e --- /dev/null +++ b/build/esp-idf/esp_app_format/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_app_format + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_app_format/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_app_format/libesp_app_format.a b/build/esp-idf/esp_app_format/libesp_app_format.a new file mode 100644 index 0000000..addd08e Binary files /dev/null and b/build/esp-idf/esp_app_format/libesp_app_format.a differ diff --git a/build/esp-idf/esp_blockdev/cmake_install.cmake b/build/esp-idf/esp_blockdev/cmake_install.cmake new file mode 100644 index 0000000..de68de8 --- /dev/null +++ b/build/esp-idf/esp_blockdev/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_blockdev + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_blockdev/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj b/build/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj new file mode 100644 index 0000000..361ea45 Binary files /dev/null and b/build/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj differ diff --git a/build/esp-idf/esp_bootloader_format/cmake_install.cmake b/build/esp-idf/esp_bootloader_format/cmake_install.cmake new file mode 100644 index 0000000..551640b --- /dev/null +++ b/build/esp-idf/esp_bootloader_format/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_bootloader_format + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_bootloader_format/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_bootloader_format/libesp_bootloader_format.a b/build/esp-idf/esp_bootloader_format/libesp_bootloader_format.a new file mode 100644 index 0000000..3bc8008 Binary files /dev/null and b/build/esp-idf/esp_bootloader_format/libesp_bootloader_format.a differ diff --git a/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/esp32/esp_coex_adapter.c.obj b/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/esp32/esp_coex_adapter.c.obj new file mode 100644 index 0000000..e0bc486 Binary files /dev/null and b/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/esp32/esp_coex_adapter.c.obj differ diff --git a/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug.c.obj b/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug.c.obj new file mode 100644 index 0000000..19205eb Binary files /dev/null and b/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug.c.obj differ diff --git a/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug_diagram.c.obj b/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug_diagram.c.obj new file mode 100644 index 0000000..ad81213 Binary files /dev/null and b/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug_diagram.c.obj differ diff --git a/build/esp-idf/esp_coex/cmake_install.cmake b/build/esp-idf/esp_coex/cmake_install.cmake new file mode 100644 index 0000000..616c9ad --- /dev/null +++ b/build/esp-idf/esp_coex/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_coex + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_coex/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_coex/libesp_coex.a b/build/esp-idf/esp_coex/libesp_coex.a new file mode 100644 index 0000000..cbefe17 Binary files /dev/null and b/build/esp-idf/esp_coex/libesp_coex.a differ diff --git a/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj b/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj new file mode 100644 index 0000000..b5be7fb Binary files /dev/null and b/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj differ diff --git a/build/esp-idf/esp_common/cmake_install.cmake b/build/esp-idf/esp_common/cmake_install.cmake new file mode 100644 index 0000000..171c980 --- /dev/null +++ b/build/esp-idf/esp_common/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_common + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_common/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_common/libesp_common.a b/build/esp-idf/esp_common/libesp_common.a new file mode 100644 index 0000000..7a3e26a Binary files /dev/null and b/build/esp-idf/esp_common/libesp_common.a differ diff --git a/build/esp-idf/esp_driver_ana_cmpr/cmake_install.cmake b/build/esp-idf/esp_driver_ana_cmpr/cmake_install.cmake new file mode 100644 index 0000000..4c23641 --- /dev/null +++ b/build/esp-idf/esp_driver_ana_cmpr/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_driver_ana_cmpr + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_ana_cmpr/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_driver_bitscrambler/cmake_install.cmake b/build/esp-idf/esp_driver_bitscrambler/cmake_install.cmake new file mode 100644 index 0000000..b758f33 --- /dev/null +++ b/build/esp-idf/esp_driver_bitscrambler/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_driver_bitscrambler + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_bitscrambler/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/dvp_share_ctrl.c.obj b/build/esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/dvp_share_ctrl.c.obj new file mode 100644 index 0000000..b49eae3 Binary files /dev/null and b/build/esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/dvp_share_ctrl.c.obj differ diff --git a/build/esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/esp_cam_ctlr.c.obj b/build/esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/esp_cam_ctlr.c.obj new file mode 100644 index 0000000..b7208c0 Binary files /dev/null and b/build/esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/esp_cam_ctlr.c.obj differ diff --git a/build/esp-idf/esp_driver_cam/cmake_install.cmake b/build/esp-idf/esp_driver_cam/cmake_install.cmake new file mode 100644 index 0000000..69fb59e --- /dev/null +++ b/build/esp-idf/esp_driver_cam/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_driver_cam + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_cam/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_driver_cam/libesp_driver_cam.a b/build/esp-idf/esp_driver_cam/libesp_driver_cam.a new file mode 100644 index 0000000..2fe1322 Binary files /dev/null and b/build/esp-idf/esp_driver_cam/libesp_driver_cam.a differ diff --git a/build/esp-idf/esp_driver_dac/CMakeFiles/__idf_esp_driver_dac.dir/dac_common.c.obj b/build/esp-idf/esp_driver_dac/CMakeFiles/__idf_esp_driver_dac.dir/dac_common.c.obj new file mode 100644 index 0000000..06dac9f Binary files /dev/null and b/build/esp-idf/esp_driver_dac/CMakeFiles/__idf_esp_driver_dac.dir/dac_common.c.obj differ diff --git a/build/esp-idf/esp_driver_dac/CMakeFiles/__idf_esp_driver_dac.dir/dac_continuous.c.obj b/build/esp-idf/esp_driver_dac/CMakeFiles/__idf_esp_driver_dac.dir/dac_continuous.c.obj new file mode 100644 index 0000000..af0c2dc Binary files /dev/null and b/build/esp-idf/esp_driver_dac/CMakeFiles/__idf_esp_driver_dac.dir/dac_continuous.c.obj differ diff --git a/build/esp-idf/esp_driver_dac/CMakeFiles/__idf_esp_driver_dac.dir/dac_cosine.c.obj b/build/esp-idf/esp_driver_dac/CMakeFiles/__idf_esp_driver_dac.dir/dac_cosine.c.obj new file mode 100644 index 0000000..a18bd51 Binary files /dev/null and b/build/esp-idf/esp_driver_dac/CMakeFiles/__idf_esp_driver_dac.dir/dac_cosine.c.obj differ diff --git a/build/esp-idf/esp_driver_dac/CMakeFiles/__idf_esp_driver_dac.dir/dac_oneshot.c.obj b/build/esp-idf/esp_driver_dac/CMakeFiles/__idf_esp_driver_dac.dir/dac_oneshot.c.obj new file mode 100644 index 0000000..3a53aeb Binary files /dev/null and b/build/esp-idf/esp_driver_dac/CMakeFiles/__idf_esp_driver_dac.dir/dac_oneshot.c.obj differ diff --git a/build/esp-idf/esp_driver_dac/CMakeFiles/__idf_esp_driver_dac.dir/esp32/dac_dma.c.obj b/build/esp-idf/esp_driver_dac/CMakeFiles/__idf_esp_driver_dac.dir/esp32/dac_dma.c.obj new file mode 100644 index 0000000..7a028a4 Binary files /dev/null and b/build/esp-idf/esp_driver_dac/CMakeFiles/__idf_esp_driver_dac.dir/esp32/dac_dma.c.obj differ diff --git a/build/esp-idf/esp_driver_dac/cmake_install.cmake b/build/esp-idf/esp_driver_dac/cmake_install.cmake new file mode 100644 index 0000000..d92ef40 --- /dev/null +++ b/build/esp-idf/esp_driver_dac/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_driver_dac + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_dac/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_driver_dac/libesp_driver_dac.a b/build/esp-idf/esp_driver_dac/libesp_driver_dac.a new file mode 100644 index 0000000..472ca77 Binary files /dev/null and b/build/esp-idf/esp_driver_dac/libesp_driver_dac.a differ diff --git a/build/esp-idf/esp_driver_dma/CMakeFiles/__idf_esp_driver_dma.dir/src/esp_dma_utils.c.obj b/build/esp-idf/esp_driver_dma/CMakeFiles/__idf_esp_driver_dma.dir/src/esp_dma_utils.c.obj new file mode 100644 index 0000000..894a48a Binary files /dev/null and b/build/esp-idf/esp_driver_dma/CMakeFiles/__idf_esp_driver_dma.dir/src/esp_dma_utils.c.obj differ diff --git a/build/esp-idf/esp_driver_dma/CMakeFiles/__idf_esp_driver_dma.dir/src/gdma_link.c.obj b/build/esp-idf/esp_driver_dma/CMakeFiles/__idf_esp_driver_dma.dir/src/gdma_link.c.obj new file mode 100644 index 0000000..584d609 Binary files /dev/null and b/build/esp-idf/esp_driver_dma/CMakeFiles/__idf_esp_driver_dma.dir/src/gdma_link.c.obj differ diff --git a/build/esp-idf/esp_driver_dma/cmake_install.cmake b/build/esp-idf/esp_driver_dma/cmake_install.cmake new file mode 100644 index 0000000..b1970da --- /dev/null +++ b/build/esp-idf/esp_driver_dma/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_driver_dma + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_dma/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_driver_dma/libesp_driver_dma.a b/build/esp-idf/esp_driver_dma/libesp_driver_dma.a new file mode 100644 index 0000000..fb6e2ea Binary files /dev/null and b/build/esp-idf/esp_driver_dma/libesp_driver_dma.a differ diff --git a/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio.c.obj b/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio.c.obj new file mode 100644 index 0000000..e6b635d Binary files /dev/null and b/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio.c.obj differ diff --git a/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_glitch_filter_ops.c.obj b/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_glitch_filter_ops.c.obj new file mode 100644 index 0000000..7e77f96 Binary files /dev/null and b/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_glitch_filter_ops.c.obj differ diff --git a/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/rtc_io.c.obj b/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/rtc_io.c.obj new file mode 100644 index 0000000..53c0880 Binary files /dev/null and b/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/rtc_io.c.obj differ diff --git a/build/esp-idf/esp_driver_gpio/cmake_install.cmake b/build/esp-idf/esp_driver_gpio/cmake_install.cmake new file mode 100644 index 0000000..98277b8 --- /dev/null +++ b/build/esp-idf/esp_driver_gpio/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_driver_gpio + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_gpio/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_driver_gpio/libesp_driver_gpio.a b/build/esp-idf/esp_driver_gpio/libesp_driver_gpio.a new file mode 100644 index 0000000..9feda1a Binary files /dev/null and b/build/esp-idf/esp_driver_gpio/libesp_driver_gpio.a differ diff --git a/build/esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer.c.obj b/build/esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer.c.obj new file mode 100644 index 0000000..87fcce7 Binary files /dev/null and b/build/esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer.c.obj differ diff --git a/build/esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_common.c.obj b/build/esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_common.c.obj new file mode 100644 index 0000000..1f96973 Binary files /dev/null and b/build/esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_common.c.obj differ diff --git a/build/esp-idf/esp_driver_gptimer/cmake_install.cmake b/build/esp-idf/esp_driver_gptimer/cmake_install.cmake new file mode 100644 index 0000000..aad1557 --- /dev/null +++ b/build/esp-idf/esp_driver_gptimer/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_driver_gptimer + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_gptimer/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a b/build/esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a new file mode 100644 index 0000000..da0d4cb Binary files /dev/null and b/build/esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a differ diff --git a/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_common.c.obj b/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_common.c.obj new file mode 100644 index 0000000..16f731b Binary files /dev/null and b/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_common.c.obj differ diff --git a/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_master.c.obj b/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_master.c.obj new file mode 100644 index 0000000..d070319 Binary files /dev/null and b/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_master.c.obj differ diff --git a/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_slave.c.obj b/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_slave.c.obj new file mode 100644 index 0000000..a7ccfdb Binary files /dev/null and b/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_slave.c.obj differ diff --git a/build/esp-idf/esp_driver_i2c/cmake_install.cmake b/build/esp-idf/esp_driver_i2c/cmake_install.cmake new file mode 100644 index 0000000..13ca5b3 --- /dev/null +++ b/build/esp-idf/esp_driver_i2c/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_driver_i2c + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_i2c/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_driver_i2c/libesp_driver_i2c.a b/build/esp-idf/esp_driver_i2c/libesp_driver_i2c.a new file mode 100644 index 0000000..6a9b837 Binary files /dev/null and b/build/esp-idf/esp_driver_i2c/libesp_driver_i2c.a differ diff --git a/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_common.c.obj b/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_common.c.obj new file mode 100644 index 0000000..7e545ba Binary files /dev/null and b/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_common.c.obj differ diff --git a/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_pdm.c.obj b/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_pdm.c.obj new file mode 100644 index 0000000..74f0b06 Binary files /dev/null and b/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_pdm.c.obj differ diff --git a/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_platform.c.obj b/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_platform.c.obj new file mode 100644 index 0000000..bee0bc9 Binary files /dev/null and b/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_platform.c.obj differ diff --git a/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_std.c.obj b/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_std.c.obj new file mode 100644 index 0000000..561a654 Binary files /dev/null and b/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_std.c.obj differ diff --git a/build/esp-idf/esp_driver_i2s/cmake_install.cmake b/build/esp-idf/esp_driver_i2s/cmake_install.cmake new file mode 100644 index 0000000..9f47968 --- /dev/null +++ b/build/esp-idf/esp_driver_i2s/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_driver_i2s + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_i2s/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_driver_i2s/libesp_driver_i2s.a b/build/esp-idf/esp_driver_i2s/libesp_driver_i2s.a new file mode 100644 index 0000000..cbb9faa Binary files /dev/null and b/build/esp-idf/esp_driver_i2s/libesp_driver_i2s.a differ diff --git a/build/esp-idf/esp_driver_i3c/cmake_install.cmake b/build/esp-idf/esp_driver_i3c/cmake_install.cmake new file mode 100644 index 0000000..61ac169 --- /dev/null +++ b/build/esp-idf/esp_driver_i3c/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_driver_i3c + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_i3c/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_driver_isp/cmake_install.cmake b/build/esp-idf/esp_driver_isp/cmake_install.cmake new file mode 100644 index 0000000..b5524b3 --- /dev/null +++ b/build/esp-idf/esp_driver_isp/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_driver_isp + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_isp/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_driver_jpeg/cmake_install.cmake b/build/esp-idf/esp_driver_jpeg/cmake_install.cmake new file mode 100644 index 0000000..44e6a58 --- /dev/null +++ b/build/esp-idf/esp_driver_jpeg/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_driver_jpeg + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_jpeg/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir/src/ledc.c.obj b/build/esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir/src/ledc.c.obj new file mode 100644 index 0000000..ce0faf6 Binary files /dev/null and b/build/esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir/src/ledc.c.obj differ diff --git a/build/esp-idf/esp_driver_ledc/cmake_install.cmake b/build/esp-idf/esp_driver_ledc/cmake_install.cmake new file mode 100644 index 0000000..aade631 --- /dev/null +++ b/build/esp-idf/esp_driver_ledc/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_driver_ledc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_ledc/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_driver_ledc/libesp_driver_ledc.a b/build/esp-idf/esp_driver_ledc/libesp_driver_ledc.a new file mode 100644 index 0000000..3975f0c Binary files /dev/null and b/build/esp-idf/esp_driver_ledc/libesp_driver_ledc.a differ diff --git a/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cap.c.obj b/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cap.c.obj new file mode 100644 index 0000000..b9ede09 Binary files /dev/null and b/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cap.c.obj differ diff --git a/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cmpr.c.obj b/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cmpr.c.obj new file mode 100644 index 0000000..2085522 Binary files /dev/null and b/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cmpr.c.obj differ diff --git a/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_com.c.obj b/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_com.c.obj new file mode 100644 index 0000000..2b0c8aa Binary files /dev/null and b/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_com.c.obj differ diff --git a/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_fault.c.obj b/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_fault.c.obj new file mode 100644 index 0000000..203be77 Binary files /dev/null and b/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_fault.c.obj differ diff --git a/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_gen.c.obj b/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_gen.c.obj new file mode 100644 index 0000000..657b503 Binary files /dev/null and b/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_gen.c.obj differ diff --git a/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_oper.c.obj b/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_oper.c.obj new file mode 100644 index 0000000..ddb3726 Binary files /dev/null and b/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_oper.c.obj differ diff --git a/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_sync.c.obj b/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_sync.c.obj new file mode 100644 index 0000000..6794ed4 Binary files /dev/null and b/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_sync.c.obj differ diff --git a/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_timer.c.obj b/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_timer.c.obj new file mode 100644 index 0000000..b464e38 Binary files /dev/null and b/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_timer.c.obj differ diff --git a/build/esp-idf/esp_driver_mcpwm/cmake_install.cmake b/build/esp-idf/esp_driver_mcpwm/cmake_install.cmake new file mode 100644 index 0000000..8b0a19f --- /dev/null +++ b/build/esp-idf/esp_driver_mcpwm/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_driver_mcpwm + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_mcpwm/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a b/build/esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a new file mode 100644 index 0000000..e22c35d Binary files /dev/null and b/build/esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a differ diff --git a/build/esp-idf/esp_driver_parlio/cmake_install.cmake b/build/esp-idf/esp_driver_parlio/cmake_install.cmake new file mode 100644 index 0000000..cd80ffb --- /dev/null +++ b/build/esp-idf/esp_driver_parlio/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_driver_parlio + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_parlio/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_driver_pcnt/CMakeFiles/__idf_esp_driver_pcnt.dir/src/pulse_cnt.c.obj b/build/esp-idf/esp_driver_pcnt/CMakeFiles/__idf_esp_driver_pcnt.dir/src/pulse_cnt.c.obj new file mode 100644 index 0000000..394d8ab Binary files /dev/null and b/build/esp-idf/esp_driver_pcnt/CMakeFiles/__idf_esp_driver_pcnt.dir/src/pulse_cnt.c.obj differ diff --git a/build/esp-idf/esp_driver_pcnt/cmake_install.cmake b/build/esp-idf/esp_driver_pcnt/cmake_install.cmake new file mode 100644 index 0000000..3df56b8 --- /dev/null +++ b/build/esp-idf/esp_driver_pcnt/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_driver_pcnt + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_pcnt/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a b/build/esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a new file mode 100644 index 0000000..6f8db56 Binary files /dev/null and b/build/esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a differ diff --git a/build/esp-idf/esp_driver_ppa/cmake_install.cmake b/build/esp-idf/esp_driver_ppa/cmake_install.cmake new file mode 100644 index 0000000..67447cc --- /dev/null +++ b/build/esp-idf/esp_driver_ppa/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_driver_ppa + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_ppa/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_common.c.obj b/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_common.c.obj new file mode 100644 index 0000000..3e18403 Binary files /dev/null and b/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_common.c.obj differ diff --git a/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder.c.obj b/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder.c.obj new file mode 100644 index 0000000..471266d Binary files /dev/null and b/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder.c.obj differ diff --git a/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_bytes.c.obj b/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_bytes.c.obj new file mode 100644 index 0000000..90c63e9 Binary files /dev/null and b/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_bytes.c.obj differ diff --git a/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_copy.c.obj b/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_copy.c.obj new file mode 100644 index 0000000..830b42e Binary files /dev/null and b/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_copy.c.obj differ diff --git a/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_simple.c.obj b/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_simple.c.obj new file mode 100644 index 0000000..8a3aaa3 Binary files /dev/null and b/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_simple.c.obj differ diff --git a/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_rx.c.obj b/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_rx.c.obj new file mode 100644 index 0000000..d219322 Binary files /dev/null and b/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_rx.c.obj differ diff --git a/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_tx.c.obj b/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_tx.c.obj new file mode 100644 index 0000000..f5262f2 Binary files /dev/null and b/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_tx.c.obj differ diff --git a/build/esp-idf/esp_driver_rmt/cmake_install.cmake b/build/esp-idf/esp_driver_rmt/cmake_install.cmake new file mode 100644 index 0000000..064aff2 --- /dev/null +++ b/build/esp-idf/esp_driver_rmt/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_driver_rmt + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_rmt/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_driver_rmt/libesp_driver_rmt.a b/build/esp-idf/esp_driver_rmt/libesp_driver_rmt.a new file mode 100644 index 0000000..605b5c1 Binary files /dev/null and b/build/esp-idf/esp_driver_rmt/libesp_driver_rmt.a differ diff --git a/build/esp-idf/esp_driver_sd_intf/CMakeFiles/__idf_esp_driver_sd_intf.dir/sd_host.c.obj b/build/esp-idf/esp_driver_sd_intf/CMakeFiles/__idf_esp_driver_sd_intf.dir/sd_host.c.obj new file mode 100644 index 0000000..364f6e1 Binary files /dev/null and b/build/esp-idf/esp_driver_sd_intf/CMakeFiles/__idf_esp_driver_sd_intf.dir/sd_host.c.obj differ diff --git a/build/esp-idf/esp_driver_sd_intf/cmake_install.cmake b/build/esp-idf/esp_driver_sd_intf/cmake_install.cmake new file mode 100644 index 0000000..5494628 --- /dev/null +++ b/build/esp-idf/esp_driver_sd_intf/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_driver_sd_intf + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sd_intf/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_driver_sd_intf/libesp_driver_sd_intf.a b/build/esp-idf/esp_driver_sd_intf/libesp_driver_sd_intf.a new file mode 100644 index 0000000..d09e66d Binary files /dev/null and b/build/esp-idf/esp_driver_sd_intf/libesp_driver_sd_intf.a differ diff --git a/build/esp-idf/esp_driver_sdio/CMakeFiles/__idf_esp_driver_sdio.dir/src/sdio_slave.c.obj b/build/esp-idf/esp_driver_sdio/CMakeFiles/__idf_esp_driver_sdio.dir/src/sdio_slave.c.obj new file mode 100644 index 0000000..dababe9 Binary files /dev/null and b/build/esp-idf/esp_driver_sdio/CMakeFiles/__idf_esp_driver_sdio.dir/src/sdio_slave.c.obj differ diff --git a/build/esp-idf/esp_driver_sdio/cmake_install.cmake b/build/esp-idf/esp_driver_sdio/cmake_install.cmake new file mode 100644 index 0000000..cbdf635 --- /dev/null +++ b/build/esp-idf/esp_driver_sdio/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_driver_sdio + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdio/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_driver_sdio/libesp_driver_sdio.a b/build/esp-idf/esp_driver_sdio/libesp_driver_sdio.a new file mode 100644 index 0000000..6f42579 Binary files /dev/null and b/build/esp-idf/esp_driver_sdio/libesp_driver_sdio.a differ diff --git a/build/esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir/src/sdm.c.obj b/build/esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir/src/sdm.c.obj new file mode 100644 index 0000000..d27524d Binary files /dev/null and b/build/esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir/src/sdm.c.obj differ diff --git a/build/esp-idf/esp_driver_sdm/cmake_install.cmake b/build/esp-idf/esp_driver_sdm/cmake_install.cmake new file mode 100644 index 0000000..ac0f8ed --- /dev/null +++ b/build/esp-idf/esp_driver_sdm/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_driver_sdm + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdm/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_driver_sdm/libesp_driver_sdm.a b/build/esp-idf/esp_driver_sdm/libesp_driver_sdm.a new file mode 100644 index 0000000..25c2a4c Binary files /dev/null and b/build/esp-idf/esp_driver_sdm/libesp_driver_sdm.a differ diff --git a/build/esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/legacy/src/sdmmc_host.c.obj b/build/esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/legacy/src/sdmmc_host.c.obj new file mode 100644 index 0000000..a1b5a54 Binary files /dev/null and b/build/esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/legacy/src/sdmmc_host.c.obj differ diff --git a/build/esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/legacy/src/sdmmc_transaction.c.obj b/build/esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/legacy/src/sdmmc_transaction.c.obj new file mode 100644 index 0000000..4f9326f Binary files /dev/null and b/build/esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/legacy/src/sdmmc_transaction.c.obj differ diff --git a/build/esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/src/sd_host_sdmmc.c.obj b/build/esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/src/sd_host_sdmmc.c.obj new file mode 100644 index 0000000..44d93d9 Binary files /dev/null and b/build/esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/src/sd_host_sdmmc.c.obj differ diff --git a/build/esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/src/sd_trans_sdmmc.c.obj b/build/esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/src/sd_trans_sdmmc.c.obj new file mode 100644 index 0000000..8cc92ae Binary files /dev/null and b/build/esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/src/sd_trans_sdmmc.c.obj differ diff --git a/build/esp-idf/esp_driver_sdmmc/cmake_install.cmake b/build/esp-idf/esp_driver_sdmmc/cmake_install.cmake new file mode 100644 index 0000000..7d6f53b --- /dev/null +++ b/build/esp-idf/esp_driver_sdmmc/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_driver_sdmmc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdmmc/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a b/build/esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a new file mode 100644 index 0000000..c07b8d2 Binary files /dev/null and b/build/esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a differ diff --git a/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_crc.c.obj b/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_crc.c.obj new file mode 100644 index 0000000..c9220ca Binary files /dev/null and b/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_crc.c.obj differ diff --git a/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_host.c.obj b/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_host.c.obj new file mode 100644 index 0000000..2f8aa8f Binary files /dev/null and b/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_host.c.obj differ diff --git a/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_transaction.c.obj b/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_transaction.c.obj new file mode 100644 index 0000000..d4043e9 Binary files /dev/null and b/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_transaction.c.obj differ diff --git a/build/esp-idf/esp_driver_sdspi/cmake_install.cmake b/build/esp-idf/esp_driver_sdspi/cmake_install.cmake new file mode 100644 index 0000000..c06da33 --- /dev/null +++ b/build/esp-idf/esp_driver_sdspi/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_driver_sdspi + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdspi/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a b/build/esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a new file mode 100644 index 0000000..552cd05 Binary files /dev/null and b/build/esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a differ diff --git a/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_common.c.obj b/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_common.c.obj new file mode 100644 index 0000000..40bb150 Binary files /dev/null and b/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_common.c.obj differ diff --git a/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_dma.c.obj b/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_dma.c.obj new file mode 100644 index 0000000..d75d391 Binary files /dev/null and b/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_dma.c.obj differ diff --git a/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_master.c.obj b/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_master.c.obj new file mode 100644 index 0000000..0d0addb Binary files /dev/null and b/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_master.c.obj differ diff --git a/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave.c.obj b/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave.c.obj new file mode 100644 index 0000000..5287c6d Binary files /dev/null and b/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave.c.obj differ diff --git a/build/esp-idf/esp_driver_spi/cmake_install.cmake b/build/esp-idf/esp_driver_spi/cmake_install.cmake new file mode 100644 index 0000000..6d36535 --- /dev/null +++ b/build/esp-idf/esp_driver_spi/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_driver_spi + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_spi/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_driver_spi/libesp_driver_spi.a b/build/esp-idf/esp_driver_spi/libesp_driver_spi.a new file mode 100644 index 0000000..199465b Binary files /dev/null and b/build/esp-idf/esp_driver_spi/libesp_driver_spi.a differ diff --git a/build/esp-idf/esp_driver_touch_sens/CMakeFiles/__idf_esp_driver_touch_sens.dir/common/touch_sens_common.c.obj b/build/esp-idf/esp_driver_touch_sens/CMakeFiles/__idf_esp_driver_touch_sens.dir/common/touch_sens_common.c.obj new file mode 100644 index 0000000..0fb99ee Binary files /dev/null and b/build/esp-idf/esp_driver_touch_sens/CMakeFiles/__idf_esp_driver_touch_sens.dir/common/touch_sens_common.c.obj differ diff --git a/build/esp-idf/esp_driver_touch_sens/CMakeFiles/__idf_esp_driver_touch_sens.dir/hw_ver1/touch_version_specific.c.obj b/build/esp-idf/esp_driver_touch_sens/CMakeFiles/__idf_esp_driver_touch_sens.dir/hw_ver1/touch_version_specific.c.obj new file mode 100644 index 0000000..871fcff Binary files /dev/null and b/build/esp-idf/esp_driver_touch_sens/CMakeFiles/__idf_esp_driver_touch_sens.dir/hw_ver1/touch_version_specific.c.obj differ diff --git a/build/esp-idf/esp_driver_touch_sens/cmake_install.cmake b/build/esp-idf/esp_driver_touch_sens/cmake_install.cmake new file mode 100644 index 0000000..9985323 --- /dev/null +++ b/build/esp-idf/esp_driver_touch_sens/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_driver_touch_sens + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_touch_sens/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a b/build/esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a new file mode 100644 index 0000000..e7f1c78 Binary files /dev/null and b/build/esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a differ diff --git a/build/esp-idf/esp_driver_tsens/cmake_install.cmake b/build/esp-idf/esp_driver_tsens/cmake_install.cmake new file mode 100644 index 0000000..fc8c17a --- /dev/null +++ b/build/esp-idf/esp_driver_tsens/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_driver_tsens + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_tsens/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir/esp_twai.c.obj b/build/esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir/esp_twai.c.obj new file mode 100644 index 0000000..8d75e28 Binary files /dev/null and b/build/esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir/esp_twai.c.obj differ diff --git a/build/esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir/esp_twai_onchip.c.obj b/build/esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir/esp_twai_onchip.c.obj new file mode 100644 index 0000000..a5682b7 Binary files /dev/null and b/build/esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir/esp_twai_onchip.c.obj differ diff --git a/build/esp-idf/esp_driver_twai/cmake_install.cmake b/build/esp-idf/esp_driver_twai/cmake_install.cmake new file mode 100644 index 0000000..12f2514 --- /dev/null +++ b/build/esp-idf/esp_driver_twai/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_driver_twai + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_twai/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_driver_twai/libesp_driver_twai.a b/build/esp-idf/esp_driver_twai/libesp_driver_twai.a new file mode 100644 index 0000000..185f416 Binary files /dev/null and b/build/esp-idf/esp_driver_twai/libesp_driver_twai.a differ diff --git a/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart.c.obj b/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart.c.obj new file mode 100644 index 0000000..c896657 Binary files /dev/null and b/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart.c.obj differ diff --git a/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_vfs.c.obj b/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_vfs.c.obj new file mode 100644 index 0000000..d6393e5 Binary files /dev/null and b/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_vfs.c.obj differ diff --git a/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_wakeup.c.obj b/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_wakeup.c.obj new file mode 100644 index 0000000..c9f2f15 Binary files /dev/null and b/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_wakeup.c.obj differ diff --git a/build/esp-idf/esp_driver_uart/cmake_install.cmake b/build/esp-idf/esp_driver_uart/cmake_install.cmake new file mode 100644 index 0000000..cf0a72b --- /dev/null +++ b/build/esp-idf/esp_driver_uart/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_driver_uart + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_uart/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_driver_uart/libesp_driver_uart.a b/build/esp-idf/esp_driver_uart/libesp_driver_uart.a new file mode 100644 index 0000000..7d70f93 Binary files /dev/null and b/build/esp-idf/esp_driver_uart/libesp_driver_uart.a differ diff --git a/build/esp-idf/esp_driver_usb_serial_jtag/cmake_install.cmake b/build/esp-idf/esp_driver_usb_serial_jtag/cmake_install.cmake new file mode 100644 index 0000000..33f62f9 --- /dev/null +++ b/build/esp-idf/esp_driver_usb_serial_jtag/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_usb_serial_jtag/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj b/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj new file mode 100644 index 0000000..2544ed3 Binary files /dev/null and b/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj differ diff --git a/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj b/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj new file mode 100644 index 0000000..04d4c19 Binary files /dev/null and b/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj differ diff --git a/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/mac/esp_eth_mac_esp.c.obj b/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/mac/esp_eth_mac_esp.c.obj new file mode 100644 index 0000000..4f6e59f Binary files /dev/null and b/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/mac/esp_eth_mac_esp.c.obj differ diff --git a/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/mac/esp_eth_mac_esp_dma.c.obj b/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/mac/esp_eth_mac_esp_dma.c.obj new file mode 100644 index 0000000..5bc5fc9 Binary files /dev/null and b/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/mac/esp_eth_mac_esp_dma.c.obj differ diff --git a/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/mac/esp_eth_mac_esp_gpio.c.obj b/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/mac/esp_eth_mac_esp_gpio.c.obj new file mode 100644 index 0000000..e6efb1a Binary files /dev/null and b/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/mac/esp_eth_mac_esp_gpio.c.obj differ diff --git a/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/phy/esp_eth_phy_802_3.c.obj b/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/phy/esp_eth_phy_802_3.c.obj new file mode 100644 index 0000000..c81fc7a Binary files /dev/null and b/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/phy/esp_eth_phy_802_3.c.obj differ diff --git a/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/phy/esp_eth_phy_generic.c.obj b/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/phy/esp_eth_phy_generic.c.obj new file mode 100644 index 0000000..89fd647 Binary files /dev/null and b/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/phy/esp_eth_phy_generic.c.obj differ diff --git a/build/esp-idf/esp_eth/cmake_install.cmake b/build/esp-idf/esp_eth/cmake_install.cmake new file mode 100644 index 0000000..41ca534 --- /dev/null +++ b/build/esp-idf/esp_eth/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_eth + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_eth/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_eth/libesp_eth.a b/build/esp-idf/esp_eth/libesp_eth.a new file mode 100644 index 0000000..5330723 Binary files /dev/null and b/build/esp-idf/esp_eth/libesp_eth.a differ diff --git a/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj b/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj new file mode 100644 index 0000000..a460fd9 Binary files /dev/null and b/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj differ diff --git a/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj b/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj new file mode 100644 index 0000000..122fd8d Binary files /dev/null and b/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj differ diff --git a/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj b/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj new file mode 100644 index 0000000..fab6843 Binary files /dev/null and b/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj differ diff --git a/build/esp-idf/esp_event/cmake_install.cmake b/build/esp-idf/esp_event/cmake_install.cmake new file mode 100644 index 0000000..781ac8f --- /dev/null +++ b/build/esp-idf/esp_event/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_event + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_event/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_event/libesp_event.a b/build/esp-idf/esp_event/libesp_event.a new file mode 100644 index 0000000..7ae2213 Binary files /dev/null and b/build/esp-idf/esp_event/libesp_event.a differ diff --git a/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj b/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj new file mode 100644 index 0000000..c96fb83 Binary files /dev/null and b/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj differ diff --git a/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub_transport.c.obj b/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub_transport.c.obj new file mode 100644 index 0000000..a69f090 Binary files /dev/null and b/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub_transport.c.obj differ diff --git a/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj b/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj new file mode 100644 index 0000000..c6582a9 Binary files /dev/null and b/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj differ diff --git a/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/gdbstub-entry.S.obj b/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/gdbstub-entry.S.obj new file mode 100644 index 0000000..c4dd505 Binary files /dev/null and b/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/gdbstub-entry.S.obj differ diff --git a/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/gdbstub_xtensa.c.obj b/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/gdbstub_xtensa.c.obj new file mode 100644 index 0000000..a08ec0f Binary files /dev/null and b/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/gdbstub_xtensa.c.obj differ diff --git a/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/xt_debugexception.S.obj b/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/xt_debugexception.S.obj new file mode 100644 index 0000000..9b5bfc6 Binary files /dev/null and b/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/xt_debugexception.S.obj differ diff --git a/build/esp-idf/esp_gdbstub/cmake_install.cmake b/build/esp-idf/esp_gdbstub/cmake_install.cmake new file mode 100644 index 0000000..f49a383 --- /dev/null +++ b/build/esp-idf/esp_gdbstub/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_gdbstub + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_gdbstub/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_gdbstub/libesp_gdbstub.a b/build/esp-idf/esp_gdbstub/libesp_gdbstub.a new file mode 100644 index 0000000..043945b Binary files /dev/null and b/build/esp-idf/esp_gdbstub/libesp_gdbstub.a differ diff --git a/build/esp-idf/esp_hal_ana_cmpr/cmake_install.cmake b/build/esp-idf/esp_hal_ana_cmpr/cmake_install.cmake new file mode 100644 index 0000000..07c57b0 --- /dev/null +++ b/build/esp-idf/esp_hal_ana_cmpr/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hal_ana_cmpr + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ana_cmpr/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_hal.c.obj b/build/esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_hal.c.obj new file mode 100644 index 0000000..f773170 Binary files /dev/null and b/build/esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_hal.c.obj differ diff --git a/build/esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_hal_common.c.obj b/build/esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_hal_common.c.obj new file mode 100644 index 0000000..2b1366d Binary files /dev/null and b/build/esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_hal_common.c.obj differ diff --git a/build/esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_oneshot_hal.c.obj b/build/esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_oneshot_hal.c.obj new file mode 100644 index 0000000..ac18e2f Binary files /dev/null and b/build/esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_oneshot_hal.c.obj differ diff --git a/build/esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/esp32/adc_periph.c.obj b/build/esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/esp32/adc_periph.c.obj new file mode 100644 index 0000000..ae0b2c2 Binary files /dev/null and b/build/esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/esp32/adc_periph.c.obj differ diff --git a/build/esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/esp32/dac_periph.c.obj b/build/esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/esp32/dac_periph.c.obj new file mode 100644 index 0000000..f8fef29 Binary files /dev/null and b/build/esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/esp32/dac_periph.c.obj differ diff --git a/build/esp-idf/esp_hal_ana_conv/cmake_install.cmake b/build/esp-idf/esp_hal_ana_conv/cmake_install.cmake new file mode 100644 index 0000000..00b7021 --- /dev/null +++ b/build/esp-idf/esp_hal_ana_conv/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hal_ana_conv + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ana_conv/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a b/build/esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a new file mode 100644 index 0000000..7761db2 Binary files /dev/null and b/build/esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a differ diff --git a/build/esp-idf/esp_hal_cam/cmake_install.cmake b/build/esp-idf/esp_hal_cam/cmake_install.cmake new file mode 100644 index 0000000..3762f87 --- /dev/null +++ b/build/esp-idf/esp_hal_cam/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hal_cam + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_cam/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_hal_clock/CMakeFiles/__idf_esp_hal_clock.dir/esp32/clk_tree_hal.c.obj b/build/esp-idf/esp_hal_clock/CMakeFiles/__idf_esp_hal_clock.dir/esp32/clk_tree_hal.c.obj new file mode 100644 index 0000000..fd7dd4e Binary files /dev/null and b/build/esp-idf/esp_hal_clock/CMakeFiles/__idf_esp_hal_clock.dir/esp32/clk_tree_hal.c.obj differ diff --git a/build/esp-idf/esp_hal_clock/cmake_install.cmake b/build/esp-idf/esp_hal_clock/cmake_install.cmake new file mode 100644 index 0000000..fe69cf5 --- /dev/null +++ b/build/esp-idf/esp_hal_clock/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hal_clock + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_clock/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_hal_clock/libesp_hal_clock.a b/build/esp-idf/esp_hal_clock/libesp_hal_clock.a new file mode 100644 index 0000000..d464479 Binary files /dev/null and b/build/esp-idf/esp_hal_clock/libesp_hal_clock.a differ diff --git a/build/esp-idf/esp_hal_dma/cmake_install.cmake b/build/esp-idf/esp_hal_dma/cmake_install.cmake new file mode 100644 index 0000000..3b03f1e --- /dev/null +++ b/build/esp-idf/esp_hal_dma/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hal_dma + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_dma/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/esp32/rtc_io_periph.c.obj b/build/esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/esp32/rtc_io_periph.c.obj new file mode 100644 index 0000000..2a69d67 Binary files /dev/null and b/build/esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/esp32/rtc_io_periph.c.obj differ diff --git a/build/esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/esp32/sdm_periph.c.obj b/build/esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/esp32/sdm_periph.c.obj new file mode 100644 index 0000000..35fe018 Binary files /dev/null and b/build/esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/esp32/sdm_periph.c.obj differ diff --git a/build/esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/gpio_hal.c.obj b/build/esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/gpio_hal.c.obj new file mode 100644 index 0000000..6191670 Binary files /dev/null and b/build/esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/gpio_hal.c.obj differ diff --git a/build/esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/rtc_io_hal.c.obj b/build/esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/rtc_io_hal.c.obj new file mode 100644 index 0000000..48e141e Binary files /dev/null and b/build/esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/rtc_io_hal.c.obj differ diff --git a/build/esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/sdm_hal.c.obj b/build/esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/sdm_hal.c.obj new file mode 100644 index 0000000..cea8849 Binary files /dev/null and b/build/esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/sdm_hal.c.obj differ diff --git a/build/esp-idf/esp_hal_gpio/cmake_install.cmake b/build/esp-idf/esp_hal_gpio/cmake_install.cmake new file mode 100644 index 0000000..a593745 --- /dev/null +++ b/build/esp-idf/esp_hal_gpio/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hal_gpio + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_gpio/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_hal_gpio/libesp_hal_gpio.a b/build/esp-idf/esp_hal_gpio/libesp_hal_gpio.a new file mode 100644 index 0000000..a66555a Binary files /dev/null and b/build/esp-idf/esp_hal_gpio/libesp_hal_gpio.a differ diff --git a/build/esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/esp32/spi_periph.c.obj b/build/esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/esp32/spi_periph.c.obj new file mode 100644 index 0000000..d5f0f4b Binary files /dev/null and b/build/esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/esp32/spi_periph.c.obj differ diff --git a/build/esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_hal.c.obj b/build/esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_hal.c.obj new file mode 100644 index 0000000..80194c4 Binary files /dev/null and b/build/esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_hal.c.obj differ diff --git a/build/esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_hal_iram.c.obj b/build/esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_hal_iram.c.obj new file mode 100644 index 0000000..8d3123a Binary files /dev/null and b/build/esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_hal_iram.c.obj differ diff --git a/build/esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_slave_hal.c.obj b/build/esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_slave_hal.c.obj new file mode 100644 index 0000000..e04fb7d Binary files /dev/null and b/build/esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_slave_hal.c.obj differ diff --git a/build/esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_slave_hal_iram.c.obj b/build/esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_slave_hal_iram.c.obj new file mode 100644 index 0000000..31f09c6 Binary files /dev/null and b/build/esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_slave_hal_iram.c.obj differ diff --git a/build/esp-idf/esp_hal_gpspi/cmake_install.cmake b/build/esp-idf/esp_hal_gpspi/cmake_install.cmake new file mode 100644 index 0000000..c237e02 --- /dev/null +++ b/build/esp-idf/esp_hal_gpspi/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hal_gpspi + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_gpspi/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a b/build/esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a new file mode 100644 index 0000000..be12930 Binary files /dev/null and b/build/esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a differ diff --git a/build/esp-idf/esp_hal_i2c/CMakeFiles/__idf_esp_hal_i2c.dir/esp32/i2c_periph.c.obj b/build/esp-idf/esp_hal_i2c/CMakeFiles/__idf_esp_hal_i2c.dir/esp32/i2c_periph.c.obj new file mode 100644 index 0000000..9015a87 Binary files /dev/null and b/build/esp-idf/esp_hal_i2c/CMakeFiles/__idf_esp_hal_i2c.dir/esp32/i2c_periph.c.obj differ diff --git a/build/esp-idf/esp_hal_i2c/CMakeFiles/__idf_esp_hal_i2c.dir/i2c_hal.c.obj b/build/esp-idf/esp_hal_i2c/CMakeFiles/__idf_esp_hal_i2c.dir/i2c_hal.c.obj new file mode 100644 index 0000000..d7345bf Binary files /dev/null and b/build/esp-idf/esp_hal_i2c/CMakeFiles/__idf_esp_hal_i2c.dir/i2c_hal.c.obj differ diff --git a/build/esp-idf/esp_hal_i2c/CMakeFiles/__idf_esp_hal_i2c.dir/i2c_hal_iram.c.obj b/build/esp-idf/esp_hal_i2c/CMakeFiles/__idf_esp_hal_i2c.dir/i2c_hal_iram.c.obj new file mode 100644 index 0000000..696dbdf Binary files /dev/null and b/build/esp-idf/esp_hal_i2c/CMakeFiles/__idf_esp_hal_i2c.dir/i2c_hal_iram.c.obj differ diff --git a/build/esp-idf/esp_hal_i2c/cmake_install.cmake b/build/esp-idf/esp_hal_i2c/cmake_install.cmake new file mode 100644 index 0000000..4dad558 --- /dev/null +++ b/build/esp-idf/esp_hal_i2c/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hal_i2c + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_i2c/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_hal_i2c/libesp_hal_i2c.a b/build/esp-idf/esp_hal_i2c/libesp_hal_i2c.a new file mode 100644 index 0000000..f138484 Binary files /dev/null and b/build/esp-idf/esp_hal_i2c/libesp_hal_i2c.a differ diff --git a/build/esp-idf/esp_hal_i2s/CMakeFiles/__idf_esp_hal_i2s.dir/esp32/i2s_periph.c.obj b/build/esp-idf/esp_hal_i2s/CMakeFiles/__idf_esp_hal_i2s.dir/esp32/i2s_periph.c.obj new file mode 100644 index 0000000..2a3abc4 Binary files /dev/null and b/build/esp-idf/esp_hal_i2s/CMakeFiles/__idf_esp_hal_i2s.dir/esp32/i2s_periph.c.obj differ diff --git a/build/esp-idf/esp_hal_i2s/CMakeFiles/__idf_esp_hal_i2s.dir/i2s_hal.c.obj b/build/esp-idf/esp_hal_i2s/CMakeFiles/__idf_esp_hal_i2s.dir/i2s_hal.c.obj new file mode 100644 index 0000000..a37f17b Binary files /dev/null and b/build/esp-idf/esp_hal_i2s/CMakeFiles/__idf_esp_hal_i2s.dir/i2s_hal.c.obj differ diff --git a/build/esp-idf/esp_hal_i2s/cmake_install.cmake b/build/esp-idf/esp_hal_i2s/cmake_install.cmake new file mode 100644 index 0000000..b30f57d --- /dev/null +++ b/build/esp-idf/esp_hal_i2s/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hal_i2s + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_i2s/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_hal_i2s/libesp_hal_i2s.a b/build/esp-idf/esp_hal_i2s/libesp_hal_i2s.a new file mode 100644 index 0000000..c4e43bd Binary files /dev/null and b/build/esp-idf/esp_hal_i2s/libesp_hal_i2s.a differ diff --git a/build/esp-idf/esp_hal_ieee802154/cmake_install.cmake b/build/esp-idf/esp_hal_ieee802154/cmake_install.cmake new file mode 100644 index 0000000..549cc8f --- /dev/null +++ b/build/esp-idf/esp_hal_ieee802154/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hal_ieee802154 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ieee802154/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_hal_jpeg/cmake_install.cmake b/build/esp-idf/esp_hal_jpeg/cmake_install.cmake new file mode 100644 index 0000000..185cdf7 --- /dev/null +++ b/build/esp-idf/esp_hal_jpeg/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hal_jpeg + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_jpeg/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_hal_lcd/CMakeFiles/__idf_esp_hal_lcd.dir/esp32/lcd_periph.c.obj b/build/esp-idf/esp_hal_lcd/CMakeFiles/__idf_esp_hal_lcd.dir/esp32/lcd_periph.c.obj new file mode 100644 index 0000000..8258b06 Binary files /dev/null and b/build/esp-idf/esp_hal_lcd/CMakeFiles/__idf_esp_hal_lcd.dir/esp32/lcd_periph.c.obj differ diff --git a/build/esp-idf/esp_hal_lcd/cmake_install.cmake b/build/esp-idf/esp_hal_lcd/cmake_install.cmake new file mode 100644 index 0000000..1b1f62a --- /dev/null +++ b/build/esp-idf/esp_hal_lcd/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hal_lcd + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_lcd/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_hal_lcd/libesp_hal_lcd.a b/build/esp-idf/esp_hal_lcd/libesp_hal_lcd.a new file mode 100644 index 0000000..e16ae1a Binary files /dev/null and b/build/esp-idf/esp_hal_lcd/libesp_hal_lcd.a differ diff --git a/build/esp-idf/esp_hal_ledc/CMakeFiles/__idf_esp_hal_ledc.dir/esp32/ledc_periph.c.obj b/build/esp-idf/esp_hal_ledc/CMakeFiles/__idf_esp_hal_ledc.dir/esp32/ledc_periph.c.obj new file mode 100644 index 0000000..6ff81c9 Binary files /dev/null and b/build/esp-idf/esp_hal_ledc/CMakeFiles/__idf_esp_hal_ledc.dir/esp32/ledc_periph.c.obj differ diff --git a/build/esp-idf/esp_hal_ledc/CMakeFiles/__idf_esp_hal_ledc.dir/ledc_hal.c.obj b/build/esp-idf/esp_hal_ledc/CMakeFiles/__idf_esp_hal_ledc.dir/ledc_hal.c.obj new file mode 100644 index 0000000..6e23f03 Binary files /dev/null and b/build/esp-idf/esp_hal_ledc/CMakeFiles/__idf_esp_hal_ledc.dir/ledc_hal.c.obj differ diff --git a/build/esp-idf/esp_hal_ledc/CMakeFiles/__idf_esp_hal_ledc.dir/ledc_hal_iram.c.obj b/build/esp-idf/esp_hal_ledc/CMakeFiles/__idf_esp_hal_ledc.dir/ledc_hal_iram.c.obj new file mode 100644 index 0000000..3438662 Binary files /dev/null and b/build/esp-idf/esp_hal_ledc/CMakeFiles/__idf_esp_hal_ledc.dir/ledc_hal_iram.c.obj differ diff --git a/build/esp-idf/esp_hal_ledc/cmake_install.cmake b/build/esp-idf/esp_hal_ledc/cmake_install.cmake new file mode 100644 index 0000000..2ff7f84 --- /dev/null +++ b/build/esp-idf/esp_hal_ledc/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hal_ledc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ledc/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_hal_ledc/libesp_hal_ledc.a b/build/esp-idf/esp_hal_ledc/libesp_hal_ledc.a new file mode 100644 index 0000000..476abe4 Binary files /dev/null and b/build/esp-idf/esp_hal_ledc/libesp_hal_ledc.a differ diff --git a/build/esp-idf/esp_hal_mcpwm/CMakeFiles/__idf_esp_hal_mcpwm.dir/esp32/mcpwm_periph.c.obj b/build/esp-idf/esp_hal_mcpwm/CMakeFiles/__idf_esp_hal_mcpwm.dir/esp32/mcpwm_periph.c.obj new file mode 100644 index 0000000..abd7030 Binary files /dev/null and b/build/esp-idf/esp_hal_mcpwm/CMakeFiles/__idf_esp_hal_mcpwm.dir/esp32/mcpwm_periph.c.obj differ diff --git a/build/esp-idf/esp_hal_mcpwm/CMakeFiles/__idf_esp_hal_mcpwm.dir/mcpwm_hal.c.obj b/build/esp-idf/esp_hal_mcpwm/CMakeFiles/__idf_esp_hal_mcpwm.dir/mcpwm_hal.c.obj new file mode 100644 index 0000000..7cb4462 Binary files /dev/null and b/build/esp-idf/esp_hal_mcpwm/CMakeFiles/__idf_esp_hal_mcpwm.dir/mcpwm_hal.c.obj differ diff --git a/build/esp-idf/esp_hal_mcpwm/cmake_install.cmake b/build/esp-idf/esp_hal_mcpwm/cmake_install.cmake new file mode 100644 index 0000000..bfc227f --- /dev/null +++ b/build/esp-idf/esp_hal_mcpwm/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hal_mcpwm + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_mcpwm/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_hal_mcpwm/libesp_hal_mcpwm.a b/build/esp-idf/esp_hal_mcpwm/libesp_hal_mcpwm.a new file mode 100644 index 0000000..9529e69 Binary files /dev/null and b/build/esp-idf/esp_hal_mcpwm/libesp_hal_mcpwm.a differ diff --git a/build/esp-idf/esp_hal_mspi/CMakeFiles/__idf_esp_hal_mspi.dir/spi_flash_encrypt_hal_iram.c.obj b/build/esp-idf/esp_hal_mspi/CMakeFiles/__idf_esp_hal_mspi.dir/spi_flash_encrypt_hal_iram.c.obj new file mode 100644 index 0000000..3d90c69 Binary files /dev/null and b/build/esp-idf/esp_hal_mspi/CMakeFiles/__idf_esp_hal_mspi.dir/spi_flash_encrypt_hal_iram.c.obj differ diff --git a/build/esp-idf/esp_hal_mspi/CMakeFiles/__idf_esp_hal_mspi.dir/spi_flash_hal.c.obj b/build/esp-idf/esp_hal_mspi/CMakeFiles/__idf_esp_hal_mspi.dir/spi_flash_hal.c.obj new file mode 100644 index 0000000..9f3802f Binary files /dev/null and b/build/esp-idf/esp_hal_mspi/CMakeFiles/__idf_esp_hal_mspi.dir/spi_flash_hal.c.obj differ diff --git a/build/esp-idf/esp_hal_mspi/CMakeFiles/__idf_esp_hal_mspi.dir/spi_flash_hal_iram.c.obj b/build/esp-idf/esp_hal_mspi/CMakeFiles/__idf_esp_hal_mspi.dir/spi_flash_hal_iram.c.obj new file mode 100644 index 0000000..8acce4f Binary files /dev/null and b/build/esp-idf/esp_hal_mspi/CMakeFiles/__idf_esp_hal_mspi.dir/spi_flash_hal_iram.c.obj differ diff --git a/build/esp-idf/esp_hal_mspi/cmake_install.cmake b/build/esp-idf/esp_hal_mspi/cmake_install.cmake new file mode 100644 index 0000000..15df577 --- /dev/null +++ b/build/esp-idf/esp_hal_mspi/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hal_mspi + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_mspi/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_hal_mspi/libesp_hal_mspi.a b/build/esp-idf/esp_hal_mspi/libesp_hal_mspi.a new file mode 100644 index 0000000..4f65715 Binary files /dev/null and b/build/esp-idf/esp_hal_mspi/libesp_hal_mspi.a differ diff --git a/build/esp-idf/esp_hal_parlio/cmake_install.cmake b/build/esp-idf/esp_hal_parlio/cmake_install.cmake new file mode 100644 index 0000000..59bdbe9 --- /dev/null +++ b/build/esp-idf/esp_hal_parlio/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hal_parlio + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_parlio/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_hal_pcnt/CMakeFiles/__idf_esp_hal_pcnt.dir/esp32/pcnt_periph.c.obj b/build/esp-idf/esp_hal_pcnt/CMakeFiles/__idf_esp_hal_pcnt.dir/esp32/pcnt_periph.c.obj new file mode 100644 index 0000000..b1ab1a9 Binary files /dev/null and b/build/esp-idf/esp_hal_pcnt/CMakeFiles/__idf_esp_hal_pcnt.dir/esp32/pcnt_periph.c.obj differ diff --git a/build/esp-idf/esp_hal_pcnt/CMakeFiles/__idf_esp_hal_pcnt.dir/pcnt_hal.c.obj b/build/esp-idf/esp_hal_pcnt/CMakeFiles/__idf_esp_hal_pcnt.dir/pcnt_hal.c.obj new file mode 100644 index 0000000..2fd341f Binary files /dev/null and b/build/esp-idf/esp_hal_pcnt/CMakeFiles/__idf_esp_hal_pcnt.dir/pcnt_hal.c.obj differ diff --git a/build/esp-idf/esp_hal_pcnt/cmake_install.cmake b/build/esp-idf/esp_hal_pcnt/cmake_install.cmake new file mode 100644 index 0000000..1f9d601 --- /dev/null +++ b/build/esp-idf/esp_hal_pcnt/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hal_pcnt + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_pcnt/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_hal_pcnt/libesp_hal_pcnt.a b/build/esp-idf/esp_hal_pcnt/libesp_hal_pcnt.a new file mode 100644 index 0000000..4bd782b Binary files /dev/null and b/build/esp-idf/esp_hal_pcnt/libesp_hal_pcnt.a differ diff --git a/build/esp-idf/esp_hal_pmu/cmake_install.cmake b/build/esp-idf/esp_hal_pmu/cmake_install.cmake new file mode 100644 index 0000000..f802fa8 --- /dev/null +++ b/build/esp-idf/esp_hal_pmu/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hal_pmu + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_pmu/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_hal_ppa/cmake_install.cmake b/build/esp-idf/esp_hal_ppa/cmake_install.cmake new file mode 100644 index 0000000..2792cb4 --- /dev/null +++ b/build/esp-idf/esp_hal_ppa/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hal_ppa + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ppa/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_hal_rmt/CMakeFiles/__idf_esp_hal_rmt.dir/esp32/rmt_periph.c.obj b/build/esp-idf/esp_hal_rmt/CMakeFiles/__idf_esp_hal_rmt.dir/esp32/rmt_periph.c.obj new file mode 100644 index 0000000..e5d1cf2 Binary files /dev/null and b/build/esp-idf/esp_hal_rmt/CMakeFiles/__idf_esp_hal_rmt.dir/esp32/rmt_periph.c.obj differ diff --git a/build/esp-idf/esp_hal_rmt/CMakeFiles/__idf_esp_hal_rmt.dir/rmt_hal.c.obj b/build/esp-idf/esp_hal_rmt/CMakeFiles/__idf_esp_hal_rmt.dir/rmt_hal.c.obj new file mode 100644 index 0000000..00051e3 Binary files /dev/null and b/build/esp-idf/esp_hal_rmt/CMakeFiles/__idf_esp_hal_rmt.dir/rmt_hal.c.obj differ diff --git a/build/esp-idf/esp_hal_rmt/cmake_install.cmake b/build/esp-idf/esp_hal_rmt/cmake_install.cmake new file mode 100644 index 0000000..653ff8f --- /dev/null +++ b/build/esp-idf/esp_hal_rmt/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hal_rmt + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_rmt/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_hal_rmt/libesp_hal_rmt.a b/build/esp-idf/esp_hal_rmt/libesp_hal_rmt.a new file mode 100644 index 0000000..fdcf5fc Binary files /dev/null and b/build/esp-idf/esp_hal_rmt/libesp_hal_rmt.a differ diff --git a/build/esp-idf/esp_hal_rtc_timer/cmake_install.cmake b/build/esp-idf/esp_hal_rtc_timer/cmake_install.cmake new file mode 100644 index 0000000..81b48cc --- /dev/null +++ b/build/esp-idf/esp_hal_rtc_timer/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_rtc_timer/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_hal_security/CMakeFiles/__idf_esp_hal_security.dir/aes_hal.c.obj b/build/esp-idf/esp_hal_security/CMakeFiles/__idf_esp_hal_security.dir/aes_hal.c.obj new file mode 100644 index 0000000..44af5c9 Binary files /dev/null and b/build/esp-idf/esp_hal_security/CMakeFiles/__idf_esp_hal_security.dir/aes_hal.c.obj differ diff --git a/build/esp-idf/esp_hal_security/CMakeFiles/__idf_esp_hal_security.dir/mpi_hal.c.obj b/build/esp-idf/esp_hal_security/CMakeFiles/__idf_esp_hal_security.dir/mpi_hal.c.obj new file mode 100644 index 0000000..6479441 Binary files /dev/null and b/build/esp-idf/esp_hal_security/CMakeFiles/__idf_esp_hal_security.dir/mpi_hal.c.obj differ diff --git a/build/esp-idf/esp_hal_security/CMakeFiles/__idf_esp_hal_security.dir/mpu_hal.c.obj b/build/esp-idf/esp_hal_security/CMakeFiles/__idf_esp_hal_security.dir/mpu_hal.c.obj new file mode 100644 index 0000000..71f375e Binary files /dev/null and b/build/esp-idf/esp_hal_security/CMakeFiles/__idf_esp_hal_security.dir/mpu_hal.c.obj differ diff --git a/build/esp-idf/esp_hal_security/CMakeFiles/__idf_esp_hal_security.dir/sha_hal.c.obj b/build/esp-idf/esp_hal_security/CMakeFiles/__idf_esp_hal_security.dir/sha_hal.c.obj new file mode 100644 index 0000000..c79858b Binary files /dev/null and b/build/esp-idf/esp_hal_security/CMakeFiles/__idf_esp_hal_security.dir/sha_hal.c.obj differ diff --git a/build/esp-idf/esp_hal_security/cmake_install.cmake b/build/esp-idf/esp_hal_security/cmake_install.cmake new file mode 100644 index 0000000..73a2037 --- /dev/null +++ b/build/esp-idf/esp_hal_security/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hal_security + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_security/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_hal_security/libesp_hal_security.a b/build/esp-idf/esp_hal_security/libesp_hal_security.a new file mode 100644 index 0000000..3c8bbae Binary files /dev/null and b/build/esp-idf/esp_hal_security/libesp_hal_security.a differ diff --git a/build/esp-idf/esp_hal_timg/CMakeFiles/__idf_esp_hal_timg.dir/esp32/timer_periph.c.obj b/build/esp-idf/esp_hal_timg/CMakeFiles/__idf_esp_hal_timg.dir/esp32/timer_periph.c.obj new file mode 100644 index 0000000..89569d3 Binary files /dev/null and b/build/esp-idf/esp_hal_timg/CMakeFiles/__idf_esp_hal_timg.dir/esp32/timer_periph.c.obj differ diff --git a/build/esp-idf/esp_hal_timg/CMakeFiles/__idf_esp_hal_timg.dir/timer_hal.c.obj b/build/esp-idf/esp_hal_timg/CMakeFiles/__idf_esp_hal_timg.dir/timer_hal.c.obj new file mode 100644 index 0000000..3ec602b Binary files /dev/null and b/build/esp-idf/esp_hal_timg/CMakeFiles/__idf_esp_hal_timg.dir/timer_hal.c.obj differ diff --git a/build/esp-idf/esp_hal_timg/cmake_install.cmake b/build/esp-idf/esp_hal_timg/cmake_install.cmake new file mode 100644 index 0000000..8727cd2 --- /dev/null +++ b/build/esp-idf/esp_hal_timg/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hal_timg + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_timg/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_hal_timg/libesp_hal_timg.a b/build/esp-idf/esp_hal_timg/libesp_hal_timg.a new file mode 100644 index 0000000..3669b2d Binary files /dev/null and b/build/esp-idf/esp_hal_timg/libesp_hal_timg.a differ diff --git a/build/esp-idf/esp_hal_touch_sens/CMakeFiles/__idf_esp_hal_touch_sens.dir/esp32/touch_sensor_legacy_hal.c.obj b/build/esp-idf/esp_hal_touch_sens/CMakeFiles/__idf_esp_hal_touch_sens.dir/esp32/touch_sensor_legacy_hal.c.obj new file mode 100644 index 0000000..9cd1397 Binary files /dev/null and b/build/esp-idf/esp_hal_touch_sens/CMakeFiles/__idf_esp_hal_touch_sens.dir/esp32/touch_sensor_legacy_hal.c.obj differ diff --git a/build/esp-idf/esp_hal_touch_sens/CMakeFiles/__idf_esp_hal_touch_sens.dir/esp32/touch_sensor_periph.c.obj b/build/esp-idf/esp_hal_touch_sens/CMakeFiles/__idf_esp_hal_touch_sens.dir/esp32/touch_sensor_periph.c.obj new file mode 100644 index 0000000..c6b43bd Binary files /dev/null and b/build/esp-idf/esp_hal_touch_sens/CMakeFiles/__idf_esp_hal_touch_sens.dir/esp32/touch_sensor_periph.c.obj differ diff --git a/build/esp-idf/esp_hal_touch_sens/CMakeFiles/__idf_esp_hal_touch_sens.dir/touch_sens_hal.c.obj b/build/esp-idf/esp_hal_touch_sens/CMakeFiles/__idf_esp_hal_touch_sens.dir/touch_sens_hal.c.obj new file mode 100644 index 0000000..aa2e0e4 Binary files /dev/null and b/build/esp-idf/esp_hal_touch_sens/CMakeFiles/__idf_esp_hal_touch_sens.dir/touch_sens_hal.c.obj differ diff --git a/build/esp-idf/esp_hal_touch_sens/CMakeFiles/__idf_esp_hal_touch_sens.dir/touch_sensor_legacy_hal.c.obj b/build/esp-idf/esp_hal_touch_sens/CMakeFiles/__idf_esp_hal_touch_sens.dir/touch_sensor_legacy_hal.c.obj new file mode 100644 index 0000000..dbd87e9 Binary files /dev/null and b/build/esp-idf/esp_hal_touch_sens/CMakeFiles/__idf_esp_hal_touch_sens.dir/touch_sensor_legacy_hal.c.obj differ diff --git a/build/esp-idf/esp_hal_touch_sens/cmake_install.cmake b/build/esp-idf/esp_hal_touch_sens/cmake_install.cmake new file mode 100644 index 0000000..feddd62 --- /dev/null +++ b/build/esp-idf/esp_hal_touch_sens/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hal_touch_sens + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_touch_sens/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a b/build/esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a new file mode 100644 index 0000000..e331b5d Binary files /dev/null and b/build/esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a differ diff --git a/build/esp-idf/esp_hal_twai/CMakeFiles/__idf_esp_hal_twai.dir/esp32/twai_periph.c.obj b/build/esp-idf/esp_hal_twai/CMakeFiles/__idf_esp_hal_twai.dir/esp32/twai_periph.c.obj new file mode 100644 index 0000000..64aa6ee Binary files /dev/null and b/build/esp-idf/esp_hal_twai/CMakeFiles/__idf_esp_hal_twai.dir/esp32/twai_periph.c.obj differ diff --git a/build/esp-idf/esp_hal_twai/CMakeFiles/__idf_esp_hal_twai.dir/twai_hal_v1.c.obj b/build/esp-idf/esp_hal_twai/CMakeFiles/__idf_esp_hal_twai.dir/twai_hal_v1.c.obj new file mode 100644 index 0000000..8227a75 Binary files /dev/null and b/build/esp-idf/esp_hal_twai/CMakeFiles/__idf_esp_hal_twai.dir/twai_hal_v1.c.obj differ diff --git a/build/esp-idf/esp_hal_twai/cmake_install.cmake b/build/esp-idf/esp_hal_twai/cmake_install.cmake new file mode 100644 index 0000000..fcf9484 --- /dev/null +++ b/build/esp-idf/esp_hal_twai/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hal_twai + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_twai/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_hal_twai/libesp_hal_twai.a b/build/esp-idf/esp_hal_twai/libesp_hal_twai.a new file mode 100644 index 0000000..45e3511 Binary files /dev/null and b/build/esp-idf/esp_hal_twai/libesp_hal_twai.a differ diff --git a/build/esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/esp32/uart_periph.c.obj b/build/esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/esp32/uart_periph.c.obj new file mode 100644 index 0000000..5e5741f Binary files /dev/null and b/build/esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/esp32/uart_periph.c.obj differ diff --git a/build/esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/uart_hal.c.obj b/build/esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/uart_hal.c.obj new file mode 100644 index 0000000..302cdc9 Binary files /dev/null and b/build/esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/uart_hal.c.obj differ diff --git a/build/esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/uart_hal_iram.c.obj b/build/esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/uart_hal_iram.c.obj new file mode 100644 index 0000000..ad605e1 Binary files /dev/null and b/build/esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/uart_hal_iram.c.obj differ diff --git a/build/esp-idf/esp_hal_uart/cmake_install.cmake b/build/esp-idf/esp_hal_uart/cmake_install.cmake new file mode 100644 index 0000000..9576b44 --- /dev/null +++ b/build/esp-idf/esp_hal_uart/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hal_uart + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_uart/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_hal_uart/libesp_hal_uart.a b/build/esp-idf/esp_hal_uart/libesp_hal_uart.a new file mode 100644 index 0000000..c6b88b2 Binary files /dev/null and b/build/esp-idf/esp_hal_uart/libesp_hal_uart.a differ diff --git a/build/esp-idf/esp_hal_usb/cmake_install.cmake b/build/esp-idf/esp_hal_usb/cmake_install.cmake new file mode 100644 index 0000000..18cadd9 --- /dev/null +++ b/build/esp-idf/esp_hal_usb/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hal_usb + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_usb/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_hal_wdt/CMakeFiles/__idf_esp_hal_wdt.dir/esp32/mwdt_periph.c.obj b/build/esp-idf/esp_hal_wdt/CMakeFiles/__idf_esp_hal_wdt.dir/esp32/mwdt_periph.c.obj new file mode 100644 index 0000000..80517f9 Binary files /dev/null and b/build/esp-idf/esp_hal_wdt/CMakeFiles/__idf_esp_hal_wdt.dir/esp32/mwdt_periph.c.obj differ diff --git a/build/esp-idf/esp_hal_wdt/CMakeFiles/__idf_esp_hal_wdt.dir/wdt_hal_iram.c.obj b/build/esp-idf/esp_hal_wdt/CMakeFiles/__idf_esp_hal_wdt.dir/wdt_hal_iram.c.obj new file mode 100644 index 0000000..0cdd8bd Binary files /dev/null and b/build/esp-idf/esp_hal_wdt/CMakeFiles/__idf_esp_hal_wdt.dir/wdt_hal_iram.c.obj differ diff --git a/build/esp-idf/esp_hal_wdt/cmake_install.cmake b/build/esp-idf/esp_hal_wdt/cmake_install.cmake new file mode 100644 index 0000000..fc21824 --- /dev/null +++ b/build/esp-idf/esp_hal_wdt/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hal_wdt + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_wdt/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_hal_wdt/libesp_hal_wdt.a b/build/esp-idf/esp_hal_wdt/libesp_hal_wdt.a new file mode 100644 index 0000000..ce49b17 Binary files /dev/null and b/build/esp-idf/esp_hal_wdt/libesp_hal_wdt.a differ diff --git a/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hid_common.c.obj b/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hid_common.c.obj new file mode 100644 index 0000000..e4b99b3 Binary files /dev/null and b/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hid_common.c.obj differ diff --git a/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidd.c.obj b/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidd.c.obj new file mode 100644 index 0000000..263c99b Binary files /dev/null and b/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidd.c.obj differ diff --git a/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidh.c.obj b/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidh.c.obj new file mode 100644 index 0000000..f364d20 Binary files /dev/null and b/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidh.c.obj differ diff --git a/build/esp-idf/esp_hid/cmake_install.cmake b/build/esp-idf/esp_hid/cmake_install.cmake new file mode 100644 index 0000000..4b9d4db --- /dev/null +++ b/build/esp-idf/esp_hid/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hid + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hid/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_hid/libesp_hid.a b/build/esp-idf/esp_hid/libesp_hid.a new file mode 100644 index 0000000..d7b872a Binary files /dev/null and b/build/esp-idf/esp_hid/libesp_hid.a differ diff --git a/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj b/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj new file mode 100644 index 0000000..47b12eb Binary files /dev/null and b/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj differ diff --git a/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj b/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj new file mode 100644 index 0000000..62a3dda Binary files /dev/null and b/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj differ diff --git a/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj b/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj new file mode 100644 index 0000000..1cd5795 Binary files /dev/null and b/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj differ diff --git a/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj b/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj new file mode 100644 index 0000000..a9ba790 Binary files /dev/null and b/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj differ diff --git a/build/esp-idf/esp_http_client/cmake_install.cmake b/build/esp-idf/esp_http_client/cmake_install.cmake new file mode 100644 index 0000000..8095936 --- /dev/null +++ b/build/esp-idf/esp_http_client/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_http_client + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_http_client/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_http_client/libesp_http_client.a b/build/esp-idf/esp_http_client/libesp_http_client.a new file mode 100644 index 0000000..5102604 Binary files /dev/null and b/build/esp-idf/esp_http_client/libesp_http_client.a differ diff --git a/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj b/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj new file mode 100644 index 0000000..5434791 Binary files /dev/null and b/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj differ diff --git a/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj b/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj new file mode 100644 index 0000000..7643982 Binary files /dev/null and b/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj differ diff --git a/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj b/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj new file mode 100644 index 0000000..8abeffd Binary files /dev/null and b/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj differ diff --git a/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj b/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj new file mode 100644 index 0000000..e859077 Binary files /dev/null and b/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj differ diff --git a/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj b/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj new file mode 100644 index 0000000..cb87e2c Binary files /dev/null and b/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj differ diff --git a/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws.c.obj b/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws.c.obj new file mode 100644 index 0000000..95e654d Binary files /dev/null and b/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws.c.obj differ diff --git a/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj b/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj new file mode 100644 index 0000000..e04f8a1 Binary files /dev/null and b/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj differ diff --git a/build/esp-idf/esp_http_server/cmake_install.cmake b/build/esp-idf/esp_http_server/cmake_install.cmake new file mode 100644 index 0000000..ae181e8 --- /dev/null +++ b/build/esp-idf/esp_http_server/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_http_server + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_http_server/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_http_server/libesp_http_server.a b/build/esp-idf/esp_http_server/libesp_http_server.a new file mode 100644 index 0000000..4724a9f Binary files /dev/null and b/build/esp-idf/esp_http_server/libesp_http_server.a differ diff --git a/build/esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj b/build/esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj new file mode 100644 index 0000000..43b7902 Binary files /dev/null and b/build/esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj differ diff --git a/build/esp-idf/esp_https_ota/cmake_install.cmake b/build/esp-idf/esp_https_ota/cmake_install.cmake new file mode 100644 index 0000000..a07086a --- /dev/null +++ b/build/esp-idf/esp_https_ota/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_https_ota + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_https_ota/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_https_ota/libesp_https_ota.a b/build/esp-idf/esp_https_ota/libesp_https_ota.a new file mode 100644 index 0000000..5d02a5a Binary files /dev/null and b/build/esp-idf/esp_https_ota/libesp_https_ota.a differ diff --git a/build/esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir/src/https_server.c.obj b/build/esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir/src/https_server.c.obj new file mode 100644 index 0000000..07f4ff7 Binary files /dev/null and b/build/esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir/src/https_server.c.obj differ diff --git a/build/esp-idf/esp_https_server/cmake_install.cmake b/build/esp-idf/esp_https_server/cmake_install.cmake new file mode 100644 index 0000000..8f0824f --- /dev/null +++ b/build/esp-idf/esp_https_server/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_https_server + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_https_server/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_https_server/libesp_https_server.a b/build/esp-idf/esp_https_server/libesp_https_server.a new file mode 100644 index 0000000..7bdbaba Binary files /dev/null and b/build/esp-idf/esp_https_server/libesp_https_server.a differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj new file mode 100644 index 0000000..f44cdb0 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj new file mode 100644 index 0000000..10e7169 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_utils.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_utils.c.obj new file mode 100644 index 0000000..a7510a0 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_utils.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj new file mode 100644 index 0000000..0333609 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj new file mode 100644 index 0000000..a6e4bd1 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clock_output.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clock_output.c.obj new file mode 100644 index 0000000..9e5b45c Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clock_output.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_gpio_reserve.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_gpio_reserve.c.obj new file mode 100644 index 0000000..fd0d2f6 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_gpio_reserve.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj new file mode 100644 index 0000000..221e2b8 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj new file mode 100644 index 0000000..7d139bd Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj new file mode 100644 index 0000000..4cdcaaf Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj new file mode 100644 index 0000000..9757283 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning/mspi_timing_tuning.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning/mspi_timing_tuning.c.obj new file mode 100644 index 0000000..c2f25a4 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning/mspi_timing_tuning.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj new file mode 100644 index 0000000..3110d5a Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cache_sram_mmu.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cache_sram_mmu.c.obj new file mode 100644 index 0000000..97947d3 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cache_sram_mmu.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/chip_info.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/chip_info.c.obj new file mode 100644 index 0000000..ac20235 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/chip_info.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cpu_region_protect.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cpu_region_protect.c.obj new file mode 100644 index 0000000..792f31b Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cpu_region_protect.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/esp_clk_tree.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/esp_clk_tree.c.obj new file mode 100644 index 0000000..a41c396 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/esp_clk_tree.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/esp_cpu_intr.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/esp_cpu_intr.c.obj new file mode 100644 index 0000000..e3a0270 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/esp_cpu_intr.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/io_mux.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/io_mux.c.obj new file mode 100644 index 0000000..175a2da Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/io_mux.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk.c.obj new file mode 100644 index 0000000..2091992 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk_init.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk_init.c.obj new file mode 100644 index 0000000..b84ef2f Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk_init.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_init.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_init.c.obj new file mode 100644 index 0000000..26b724a Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_init.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_sleep.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_sleep.c.obj new file mode 100644 index 0000000..63cb2dc Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_sleep.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_time.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_time.c.obj new file mode 100644 index 0000000..184dbac Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_time.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/sar_periph_ctrl.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/sar_periph_ctrl.c.obj new file mode 100644 index 0000000..88b3af8 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/sar_periph_ctrl.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_clk_tree_common.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_clk_tree_common.c.obj new file mode 100644 index 0000000..51f462e Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_clk_tree_common.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/power_supply/brownout.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/power_supply/brownout.c.obj new file mode 100644 index 0000000..08f45f7 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/power_supply/brownout.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj new file mode 100644 index 0000000..fc7c0c4 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj new file mode 100644 index 0000000..6fdf097 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj new file mode 100644 index 0000000..2bbdb9c Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_wdt.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_wdt.c.obj new file mode 100644 index 0000000..1e3f7b7 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_wdt.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_tsens_ctrl.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_tsens_ctrl.c.obj new file mode 100644 index 0000000..2f8eb71 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_tsens_ctrl.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_console.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_console.c.obj new file mode 100644 index 0000000..934ec01 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_console.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_event.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_event.c.obj new file mode 100644 index 0000000..4126b8b Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_event.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj new file mode 100644 index 0000000..e96e637 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modem.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modem.c.obj new file mode 100644 index 0000000..0d78082 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modem.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj new file mode 100644 index 0000000..34e7cc9 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_mspi.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_mspi.c.obj new file mode 100644 index 0000000..794a006 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_mspi.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_uart.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_uart.c.obj new file mode 100644 index 0000000..eb61317 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_uart.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_usb.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_usb.c.obj new file mode 100644 index 0000000..d351934 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_usb.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj new file mode 100644 index 0000000..3056816 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_bus_lock.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_bus_lock.c.obj new file mode 100644 index 0000000..f1a5650 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_bus_lock.c.obj differ diff --git a/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_share_hw_ctrl.c.obj b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_share_hw_ctrl.c.obj new file mode 100644 index 0000000..707b6b0 Binary files /dev/null and b/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_share_hw_ctrl.c.obj differ diff --git a/build/esp-idf/esp_hw_support/cmake_install.cmake b/build/esp-idf/esp_hw_support/cmake_install.cmake new file mode 100644 index 0000000..f21b9c4 --- /dev/null +++ b/build/esp-idf/esp_hw_support/cmake_install.cmake @@ -0,0 +1,55 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hw_support + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hw_support/port/esp32/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hw_support/lowpower/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hw_support/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_hw_support/libesp_hw_support.a b/build/esp-idf/esp_hw_support/libesp_hw_support.a new file mode 100644 index 0000000..d7c6aa0 Binary files /dev/null and b/build/esp-idf/esp_hw_support/libesp_hw_support.a differ diff --git a/build/esp-idf/esp_hw_support/lowpower/cmake_install.cmake b/build/esp-idf/esp_hw_support/lowpower/cmake_install.cmake new file mode 100644 index 0000000..4653d9c --- /dev/null +++ b/build/esp-idf/esp_hw_support/lowpower/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hw_support/lowpower + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hw_support/lowpower/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_hw_support/port/esp32/cmake_install.cmake b/build/esp-idf/esp_hw_support/port/esp32/cmake_install.cmake new file mode 100644 index 0000000..c2fa398 --- /dev/null +++ b/build/esp-idf/esp_hw_support/port/esp32/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hw_support/port/esp32/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c/esp_lcd_panel_io_i2c.c.obj b/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c/esp_lcd_panel_io_i2c.c.obj new file mode 100644 index 0000000..10c26bd Binary files /dev/null and b/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c/esp_lcd_panel_io_i2c.c.obj differ diff --git a/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i80/esp_lcd_panel_io_i2s.c.obj b/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i80/esp_lcd_panel_io_i2s.c.obj new file mode 100644 index 0000000..9e8b560 Binary files /dev/null and b/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i80/esp_lcd_panel_io_i2s.c.obj differ diff --git a/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/spi/esp_lcd_panel_io_spi.c.obj b/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/spi/esp_lcd_panel_io_spi.c.obj new file mode 100644 index 0000000..3442339 Binary files /dev/null and b/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/spi/esp_lcd_panel_io_spi.c.obj differ diff --git a/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_common.c.obj b/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_common.c.obj new file mode 100644 index 0000000..1ea88eb Binary files /dev/null and b/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_common.c.obj differ diff --git a/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io.c.obj b/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io.c.obj new file mode 100644 index 0000000..d579ec6 Binary files /dev/null and b/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io.c.obj differ diff --git a/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ops.c.obj b/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ops.c.obj new file mode 100644 index 0000000..8fdf987 Binary files /dev/null and b/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ops.c.obj differ diff --git a/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ssd1306.c.obj b/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ssd1306.c.obj new file mode 100644 index 0000000..c89f971 Binary files /dev/null and b/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ssd1306.c.obj differ diff --git a/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_st7789.c.obj b/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_st7789.c.obj new file mode 100644 index 0000000..8ec3021 Binary files /dev/null and b/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_st7789.c.obj differ diff --git a/build/esp-idf/esp_lcd/cmake_install.cmake b/build/esp-idf/esp_lcd/cmake_install.cmake new file mode 100644 index 0000000..e41efe5 --- /dev/null +++ b/build/esp-idf/esp_lcd/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_lcd + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_lcd/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_lcd/libesp_lcd.a b/build/esp-idf/esp_lcd/libesp_lcd.a new file mode 100644 index 0000000..9c0104c Binary files /dev/null and b/build/esp-idf/esp_lcd/libesp_lcd.a differ diff --git a/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/abort.c.obj b/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/abort.c.obj new file mode 100644 index 0000000..a1dd272 Binary files /dev/null and b/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/abort.c.obj differ diff --git a/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/assert.c.obj b/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/assert.c.obj new file mode 100644 index 0000000..2c8c775 Binary files /dev/null and b/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/assert.c.obj differ diff --git a/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/getentropy.c.obj b/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/getentropy.c.obj new file mode 100644 index 0000000..933df7b Binary files /dev/null and b/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/getentropy.c.obj differ diff --git a/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/heap.c.obj b/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/heap.c.obj new file mode 100644 index 0000000..cd89ed4 Binary files /dev/null and b/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/heap.c.obj differ diff --git a/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/init.c.obj b/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/init.c.obj new file mode 100644 index 0000000..9421670 Binary files /dev/null and b/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/init.c.obj differ diff --git a/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/locks.c.obj b/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/locks.c.obj new file mode 100644 index 0000000..6cff3bf Binary files /dev/null and b/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/locks.c.obj differ diff --git a/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/picolibc/errno.c.obj b/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/picolibc/errno.c.obj new file mode 100644 index 0000000..bc3b101 Binary files /dev/null and b/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/picolibc/errno.c.obj differ diff --git a/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/picolibc/getreent.c.obj b/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/picolibc/getreent.c.obj new file mode 100644 index 0000000..6cf6d9e Binary files /dev/null and b/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/picolibc/getreent.c.obj differ diff --git a/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/picolibc/open_memstream.c.obj b/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/picolibc/open_memstream.c.obj new file mode 100644 index 0000000..b83e82b Binary files /dev/null and b/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/picolibc/open_memstream.c.obj differ diff --git a/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/picolibc/picolibc_init.c.obj b/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/picolibc/picolibc_init.c.obj new file mode 100644 index 0000000..19eb414 Binary files /dev/null and b/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/picolibc/picolibc_init.c.obj differ diff --git a/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/picolibc/rand.c.obj b/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/picolibc/rand.c.obj new file mode 100644 index 0000000..c758b17 Binary files /dev/null and b/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/picolibc/rand.c.obj differ diff --git a/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/poll.c.obj b/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/poll.c.obj new file mode 100644 index 0000000..3149885 Binary files /dev/null and b/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/poll.c.obj differ diff --git a/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/port/esp_time_impl.c.obj b/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/port/esp_time_impl.c.obj new file mode 100644 index 0000000..af23649 Binary files /dev/null and b/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/port/esp_time_impl.c.obj differ diff --git a/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/pthread.c.obj b/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/pthread.c.obj new file mode 100644 index 0000000..e9b33d7 Binary files /dev/null and b/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/pthread.c.obj differ diff --git a/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/random.c.obj b/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/random.c.obj new file mode 100644 index 0000000..8d91c87 Binary files /dev/null and b/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/random.c.obj differ diff --git a/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/realpath.c.obj b/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/realpath.c.obj new file mode 100644 index 0000000..778689f Binary files /dev/null and b/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/realpath.c.obj differ diff --git a/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/reent_syscalls.c.obj b/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/reent_syscalls.c.obj new file mode 100644 index 0000000..f7f8f59 Binary files /dev/null and b/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/reent_syscalls.c.obj differ diff --git a/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/scandir.c.obj b/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/scandir.c.obj new file mode 100644 index 0000000..5415617 Binary files /dev/null and b/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/scandir.c.obj differ diff --git a/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/stdatomic.c.obj b/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/stdatomic.c.obj new file mode 100644 index 0000000..514d97a Binary files /dev/null and b/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/stdatomic.c.obj differ diff --git a/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/syscalls.c.obj b/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/syscalls.c.obj new file mode 100644 index 0000000..ab2a5d4 Binary files /dev/null and b/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/syscalls.c.obj differ diff --git a/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/sysconf.c.obj b/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/sysconf.c.obj new file mode 100644 index 0000000..0c2a010 Binary files /dev/null and b/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/sysconf.c.obj differ diff --git a/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/termios.c.obj b/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/termios.c.obj new file mode 100644 index 0000000..f7d321d Binary files /dev/null and b/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/termios.c.obj differ diff --git a/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/time.c.obj b/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/time.c.obj new file mode 100644 index 0000000..e10b6e4 Binary files /dev/null and b/build/esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/time.c.obj differ diff --git a/build/esp-idf/esp_libc/cmake_install.cmake b/build/esp-idf/esp_libc/cmake_install.cmake new file mode 100644 index 0000000..708df28 --- /dev/null +++ b/build/esp-idf/esp_libc/cmake_install.cmake @@ -0,0 +1,50 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_libc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_libc/src/port/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_libc/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_libc/libesp_libc.a b/build/esp-idf/esp_libc/libesp_libc.a new file mode 100644 index 0000000..7ec8873 Binary files /dev/null and b/build/esp-idf/esp_libc/libesp_libc.a differ diff --git a/build/esp-idf/esp_libc/src/port/cmake_install.cmake b/build/esp-idf/esp_libc/src/port/cmake_install.cmake new file mode 100644 index 0000000..2fcdb9c --- /dev/null +++ b/build/esp-idf/esp_libc/src/port/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_libc/src/port + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_libc/src/port/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c/esp_local_ctrl.pb-c.c.obj b/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c/esp_local_ctrl.pb-c.c.obj new file mode 100644 index 0000000..e56d547 Binary files /dev/null and b/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c/esp_local_ctrl.pb-c.c.obj differ diff --git a/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj b/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj new file mode 100644 index 0000000..24e9467 Binary files /dev/null and b/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj differ diff --git a/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj b/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj new file mode 100644 index 0000000..8d2813a Binary files /dev/null and b/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj differ diff --git a/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_httpd.c.obj b/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_httpd.c.obj new file mode 100644 index 0000000..ea7fd71 Binary files /dev/null and b/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_httpd.c.obj differ diff --git a/build/esp-idf/esp_local_ctrl/cmake_install.cmake b/build/esp-idf/esp_local_ctrl/cmake_install.cmake new file mode 100644 index 0000000..669823f --- /dev/null +++ b/build/esp-idf/esp_local_ctrl/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_local_ctrl + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_local_ctrl/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_local_ctrl/libesp_local_ctrl.a b/build/esp-idf/esp_local_ctrl/libesp_local_ctrl.a new file mode 100644 index 0000000..2729ea5 Binary files /dev/null and b/build/esp-idf/esp_local_ctrl/libesp_local_ctrl.a differ diff --git a/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/cache_esp32.c.obj b/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/cache_esp32.c.obj new file mode 100644 index 0000000..350516d Binary files /dev/null and b/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/cache_esp32.c.obj differ diff --git a/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache_msync.c.obj b/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache_msync.c.obj new file mode 100644 index 0000000..571e4fe Binary files /dev/null and b/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache_msync.c.obj differ diff --git a/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache_utils.c.obj b/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache_utils.c.obj new file mode 100644 index 0000000..bdcbb4c Binary files /dev/null and b/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache_utils.c.obj differ diff --git a/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_mmu_map.c.obj b/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_mmu_map.c.obj new file mode 100644 index 0000000..a116fdb Binary files /dev/null and b/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_mmu_map.c.obj differ diff --git a/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/heap_align_hw.c.obj b/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/heap_align_hw.c.obj new file mode 100644 index 0000000..3a0887b Binary files /dev/null and b/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/heap_align_hw.c.obj differ diff --git a/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32/ext_mem_layout.c.obj b/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32/ext_mem_layout.c.obj new file mode 100644 index 0000000..7277c67 Binary files /dev/null and b/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32/ext_mem_layout.c.obj differ diff --git a/build/esp-idf/esp_mm/cmake_install.cmake b/build/esp-idf/esp_mm/cmake_install.cmake new file mode 100644 index 0000000..a2a0163 --- /dev/null +++ b/build/esp-idf/esp_mm/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_mm + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_mm/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_mm/libesp_mm.a b/build/esp-idf/esp_mm/libesp_mm.a new file mode 100644 index 0000000..c78f045 Binary files /dev/null and b/build/esp-idf/esp_mm/libesp_mm.a differ diff --git a/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj b/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj new file mode 100644 index 0000000..20a6f44 Binary files /dev/null and b/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj differ diff --git a/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj b/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj new file mode 100644 index 0000000..c3f6440 Binary files /dev/null and b/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj differ diff --git a/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj b/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj new file mode 100644 index 0000000..775188e Binary files /dev/null and b/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj differ diff --git a/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj b/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj new file mode 100644 index 0000000..550372a Binary files /dev/null and b/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj differ diff --git a/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj b/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj new file mode 100644 index 0000000..8894a37 Binary files /dev/null and b/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj differ diff --git a/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sntp.c.obj b/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sntp.c.obj new file mode 100644 index 0000000..a4a294e Binary files /dev/null and b/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sntp.c.obj differ diff --git a/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/esp_pbuf_ref.c.obj b/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/esp_pbuf_ref.c.obj new file mode 100644 index 0000000..5821059 Binary files /dev/null and b/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/esp_pbuf_ref.c.obj differ diff --git a/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/ethernetif.c.obj b/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/ethernetif.c.obj new file mode 100644 index 0000000..9d3547c Binary files /dev/null and b/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/ethernetif.c.obj differ diff --git a/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/wlanif.c.obj b/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/wlanif.c.obj new file mode 100644 index 0000000..2dd8ca2 Binary files /dev/null and b/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/wlanif.c.obj differ diff --git a/build/esp-idf/esp_netif/cmake_install.cmake b/build/esp-idf/esp_netif/cmake_install.cmake new file mode 100644 index 0000000..40b7176 --- /dev/null +++ b/build/esp-idf/esp_netif/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_netif + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_netif/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_netif/libesp_netif.a b/build/esp-idf/esp_netif/libesp_netif.a new file mode 100644 index 0000000..fde0871 Binary files /dev/null and b/build/esp-idf/esp_netif/libesp_netif.a differ diff --git a/build/esp-idf/esp_netif_stack/cmake_install.cmake b/build/esp-idf/esp_netif_stack/cmake_install.cmake new file mode 100644 index 0000000..13a02ed --- /dev/null +++ b/build/esp-idf/esp_netif_stack/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_netif_stack + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_netif_stack/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj b/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj new file mode 100644 index 0000000..59123cc Binary files /dev/null and b/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj differ diff --git a/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj b/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj new file mode 100644 index 0000000..0bdab45 Binary files /dev/null and b/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj differ diff --git a/build/esp-idf/esp_partition/cmake_install.cmake b/build/esp-idf/esp_partition/cmake_install.cmake new file mode 100644 index 0000000..ea2b585 --- /dev/null +++ b/build/esp-idf/esp_partition/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_partition + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_partition/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_partition/libesp_partition.a b/build/esp-idf/esp_partition/libesp_partition.a new file mode 100644 index 0000000..a036a68 Binary files /dev/null and b/build/esp-idf/esp_partition/libesp_partition.a differ diff --git a/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/esp32/phy_init_data.c.obj b/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/esp32/phy_init_data.c.obj new file mode 100644 index 0000000..978a4c0 Binary files /dev/null and b/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/esp32/phy_init_data.c.obj differ diff --git a/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/btbb_init.c.obj b/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/btbb_init.c.obj new file mode 100644 index 0000000..42d9729 Binary files /dev/null and b/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/btbb_init.c.obj differ diff --git a/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj b/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj new file mode 100644 index 0000000..d568d93 Binary files /dev/null and b/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj differ diff --git a/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_common.c.obj b/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_common.c.obj new file mode 100644 index 0000000..12a108d Binary files /dev/null and b/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_common.c.obj differ diff --git a/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init.c.obj b/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init.c.obj new file mode 100644 index 0000000..4cbb691 Binary files /dev/null and b/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init.c.obj differ diff --git a/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_override.c.obj b/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_override.c.obj new file mode 100644 index 0000000..4bec303 Binary files /dev/null and b/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_override.c.obj differ diff --git a/build/esp-idf/esp_phy/cmake_install.cmake b/build/esp-idf/esp_phy/cmake_install.cmake new file mode 100644 index 0000000..4154a75 --- /dev/null +++ b/build/esp-idf/esp_phy/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_phy + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_phy/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_phy/libesp_phy.a b/build/esp-idf/esp_phy/libesp_phy.a new file mode 100644 index 0000000..020f61f Binary files /dev/null and b/build/esp-idf/esp_phy/libesp_phy.a differ diff --git a/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj b/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj new file mode 100644 index 0000000..f1731b5 Binary files /dev/null and b/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj differ diff --git a/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj b/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj new file mode 100644 index 0000000..a1dd050 Binary files /dev/null and b/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj differ diff --git a/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj b/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj new file mode 100644 index 0000000..05a03e8 Binary files /dev/null and b/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj differ diff --git a/build/esp-idf/esp_pm/cmake_install.cmake b/build/esp-idf/esp_pm/cmake_install.cmake new file mode 100644 index 0000000..fe9acc6 --- /dev/null +++ b/build/esp-idf/esp_pm/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_pm + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_pm/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_pm/libesp_pm.a b/build/esp-idf/esp_pm/libesp_pm.a new file mode 100644 index 0000000..6d79791 Binary files /dev/null and b/build/esp-idf/esp_pm/libesp_pm.a differ diff --git a/build/esp-idf/esp_psram/CMakeFiles/__idf_esp_psram.dir/system_layer/esp_psram_mspi.c.obj b/build/esp-idf/esp_psram/CMakeFiles/__idf_esp_psram.dir/system_layer/esp_psram_mspi.c.obj new file mode 100644 index 0000000..665bb5a Binary files /dev/null and b/build/esp-idf/esp_psram/CMakeFiles/__idf_esp_psram.dir/system_layer/esp_psram_mspi.c.obj differ diff --git a/build/esp-idf/esp_psram/cmake_install.cmake b/build/esp-idf/esp_psram/cmake_install.cmake new file mode 100644 index 0000000..9b54c44 --- /dev/null +++ b/build/esp-idf/esp_psram/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_psram + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_psram/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_psram/libesp_psram.a b/build/esp-idf/esp_psram/libesp_psram.a new file mode 100644 index 0000000..1acfd86 Binary files /dev/null and b/build/esp-idf/esp_psram/libesp_psram.a differ diff --git a/build/esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj b/build/esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj new file mode 100644 index 0000000..8b79006 Binary files /dev/null and b/build/esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj differ diff --git a/build/esp-idf/esp_ringbuf/cmake_install.cmake b/build/esp-idf/esp_ringbuf/cmake_install.cmake new file mode 100644 index 0000000..2995a84 --- /dev/null +++ b/build/esp-idf/esp_ringbuf/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_ringbuf + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_ringbuf/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_ringbuf/libesp_ringbuf.a b/build/esp-idf/esp_ringbuf/libesp_ringbuf.a new file mode 100644 index 0000000..668f481 Binary files /dev/null and b/build/esp-idf/esp_ringbuf/libesp_ringbuf.a differ diff --git a/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj new file mode 100644 index 0000000..0c16912 Binary files /dev/null and b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj differ diff --git a/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj new file mode 100644 index 0000000..ee4cde5 Binary files /dev/null and b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj differ diff --git a/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj new file mode 100644 index 0000000..3dc8ab9 Binary files /dev/null and b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj differ diff --git a/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj new file mode 100644 index 0000000..99bf34b Binary files /dev/null and b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj differ diff --git a/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj new file mode 100644 index 0000000..92b6fc1 Binary files /dev/null and b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj differ diff --git a/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_serial_output.c.obj b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_serial_output.c.obj new file mode 100644 index 0000000..e266736 Binary files /dev/null and b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_serial_output.c.obj differ diff --git a/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj new file mode 100644 index 0000000..c8659d0 Binary files /dev/null and b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj differ diff --git a/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj new file mode 100644 index 0000000..60edddb Binary files /dev/null and b/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj differ diff --git a/build/esp-idf/esp_rom/cmake_install.cmake b/build/esp-idf/esp_rom/cmake_install.cmake new file mode 100644 index 0000000..ff60522 --- /dev/null +++ b/build/esp-idf/esp_rom/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_rom + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_rom/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_rom/libesp_rom.a b/build/esp-idf/esp_rom/libesp_rom.a new file mode 100644 index 0000000..e8e2d48 Binary files /dev/null and b/build/esp-idf/esp_rom/libesp_rom.a differ diff --git a/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_lock.c.obj b/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_lock.c.obj new file mode 100644 index 0000000..008b2a5 Binary files /dev/null and b/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_lock.c.obj differ diff --git a/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_periph_clk.c.obj b/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_periph_clk.c.obj new file mode 100644 index 0000000..b2a68fd Binary files /dev/null and b/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_periph_clk.c.obj differ diff --git a/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/init.c.obj b/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/init.c.obj new file mode 100644 index 0000000..701ac8c Binary files /dev/null and b/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/init.c.obj differ diff --git a/build/esp-idf/esp_security/cmake_install.cmake b/build/esp-idf/esp_security/cmake_install.cmake new file mode 100644 index 0000000..ece9558 --- /dev/null +++ b/build/esp-idf/esp_security/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_security + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_security/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_security/libesp_security.a b/build/esp-idf/esp_security/libesp_security.a new file mode 100644 index 0000000..c1aadaa Binary files /dev/null and b/build/esp-idf/esp_security/libesp_security.a differ diff --git a/build/esp-idf/esp_stdio/CMakeFiles/__idf_esp_stdio.dir/stdio_simple.c.obj b/build/esp-idf/esp_stdio/CMakeFiles/__idf_esp_stdio.dir/stdio_simple.c.obj new file mode 100644 index 0000000..86e30a1 Binary files /dev/null and b/build/esp-idf/esp_stdio/CMakeFiles/__idf_esp_stdio.dir/stdio_simple.c.obj differ diff --git a/build/esp-idf/esp_stdio/CMakeFiles/__idf_esp_stdio.dir/stdio_syscalls_simple.c.obj b/build/esp-idf/esp_stdio/CMakeFiles/__idf_esp_stdio.dir/stdio_syscalls_simple.c.obj new file mode 100644 index 0000000..a3662e2 Binary files /dev/null and b/build/esp-idf/esp_stdio/CMakeFiles/__idf_esp_stdio.dir/stdio_syscalls_simple.c.obj differ diff --git a/build/esp-idf/esp_stdio/CMakeFiles/__idf_esp_stdio.dir/stdio_vfs.c.obj b/build/esp-idf/esp_stdio/CMakeFiles/__idf_esp_stdio.dir/stdio_vfs.c.obj new file mode 100644 index 0000000..f8dc0f6 Binary files /dev/null and b/build/esp-idf/esp_stdio/CMakeFiles/__idf_esp_stdio.dir/stdio_vfs.c.obj differ diff --git a/build/esp-idf/esp_stdio/cmake_install.cmake b/build/esp-idf/esp_stdio/cmake_install.cmake new file mode 100644 index 0000000..09f5cde --- /dev/null +++ b/build/esp-idf/esp_stdio/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_stdio + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_stdio/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_stdio/libesp_stdio.a b/build/esp-idf/esp_stdio/libesp_stdio.a new file mode 100644 index 0000000..d5bcf68 Binary files /dev/null and b/build/esp-idf/esp_stdio/libesp_stdio.a differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj new file mode 100644 index 0000000..0896e07 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj new file mode 100644 index 0000000..0a703ac Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj new file mode 100644 index 0000000..c34bdc3 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj new file mode 100644 index 0000000..621f754 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj new file mode 100644 index 0000000..fe77098 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj new file mode 100644 index 0000000..4bcc21f Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj new file mode 100644 index 0000000..79087f1 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers.c.obj new file mode 100644 index 0000000..76fa092 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers_asm.S.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers_asm.S.obj new file mode 100644 index 0000000..b612a4b Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers_asm.S.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_stubs.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_stubs.c.obj new file mode 100644 index 0000000..baf2a08 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_stubs.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_handler.S.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_handler.S.obj new file mode 100644 index 0000000..2e9e5c6 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_handler.S.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_port.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_port.c.obj new file mode 100644 index 0000000..286f104 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_port.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_routines.S.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_routines.S.obj new file mode 100644 index 0000000..520557e Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_routines.S.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack.c.obj new file mode 100644 index 0000000..901ec82 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack_asm.S.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack_asm.S.obj new file mode 100644 index 0000000..cbcdc6a Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack_asm.S.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_arch.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_arch.c.obj new file mode 100644 index 0000000..5c5b256 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_arch.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_handler_asm.S.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_handler_asm.S.obj new file mode 100644 index 0000000..2762832 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_handler_asm.S.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/trax.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/trax.c.obj new file mode 100644 index 0000000..f36f062 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/trax.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj new file mode 100644 index 0000000..bd2cfca Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_ipc_isr.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_ipc_isr.c.obj new file mode 100644 index 0000000..fe6afdc Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_ipc_isr.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_system_chip.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_system_chip.c.obj new file mode 100644 index 0000000..1744169 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_system_chip.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/image_process.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/image_process.c.obj new file mode 100644 index 0000000..3685c17 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/image_process.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj new file mode 100644 index 0000000..104d0e3 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/cache_err_int.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/cache_err_int.c.obj new file mode 100644 index 0000000..c0da951 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/cache_err_int.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/clk.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/clk.c.obj new file mode 100644 index 0000000..1a47dcb Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/clk.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/highint_hdl.S.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/highint_hdl.S.obj new file mode 100644 index 0000000..eae0f5e Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/highint_hdl.S.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/reset_reason.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/reset_reason.c.obj new file mode 100644 index 0000000..0690cfe Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/reset_reason.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/system_internal.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/system_internal.c.obj new file mode 100644 index 0000000..ad4a499 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/system_internal.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj new file mode 100644 index 0000000..b158bd2 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj new file mode 100644 index 0000000..5bae3ec Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup_funcs.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup_funcs.c.obj new file mode 100644 index 0000000..321784a Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup_funcs.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj new file mode 100644 index 0000000..7057143 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt.c.obj new file mode 100644 index 0000000..3b05c53 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt_impl_timergroup.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt_impl_timergroup.c.obj new file mode 100644 index 0000000..e1a304e Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt_impl_timergroup.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj new file mode 100644 index 0000000..eef74d0 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj differ diff --git a/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj new file mode 100644 index 0000000..9aa4045 Binary files /dev/null and b/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj differ diff --git a/build/esp-idf/esp_system/cmake_install.cmake b/build/esp-idf/esp_system/cmake_install.cmake new file mode 100644 index 0000000..3afa032 --- /dev/null +++ b/build/esp-idf/esp_system/cmake_install.cmake @@ -0,0 +1,50 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_system + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/port/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_system/ld/memory.ld b/build/esp-idf/esp_system/ld/memory.ld new file mode 100644 index 0000000..91011ec --- /dev/null +++ b/build/esp-idf/esp_system/ld/memory.ld @@ -0,0 +1,175 @@ +/* + * SPDX-FileCopyrightText: 2021 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ +/* ESP32 Linker Script Memory Layout + + This file describes the memory layout (memory blocks) as virtual + memory addresses. + + esp32.project.ld contains output sections to link compiler output + into these memory blocks. + + *** + + This linker script is passed through the C preprocessor to include + configuration options. + + Please use preprocessor features sparingly! Restrict + to simple macros with numeric values, and/or #if/#endif blocks. +*/ +/* + + * Automatically generated file. DO NOT EDIT. + + * Espressif IoT Development Framework (ESP-IDF) 6.0.0 Configuration Header + + */ + +/* List of deprecated options */ +/* + * SPDX-FileCopyrightText: 2021-2024 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ +/* CPU instruction prefetch padding size for flash mmap scenario */ +/* Copy from esp_secure_boot.h */ +/* + * PMP region granularity size + * Software may determine the PMP granularity by writing zero to pmp0cfg, then writing all ones + * to pmpaddr0, then reading back pmpaddr0. If G is the index of the least-significant bit set, + * the PMP granularity is 2^G+2 bytes. + */ +/* CPU instruction prefetch padding size for memory protection scenario */ +/* Memory alignment size for PMS */ + /* rtc timer data (s_rtc_timer_retain_mem, see esp_clk.c files). For rtc_timer_data_in_rtc_mem section. */ +/* If BT is not built at all */ +MEMORY +{ + /* All these values assume the flash cache is on, and have the blocks this uses subtracted from the length + of the various regions. The 'data access port' dram/drom regions map to the same iram/irom regions but + are connected to the data port of the CPU and eg allow bytewise access. */ + /* IRAM for PRO cpu. Not sure if happy with this, this is MMU area... */ + iram0_0_seg (RX) : org = 0x40080000, len = 0x20000 + 0x0 + /* Even though the segment name is iram, it is actually mapped to flash + */ + iram0_2_seg (RX) : org = 0x400D0020, len = 0x330000-0x20 + /* + (0x20 offset above is a convenience for the app binary image generation. + Flash cache has 64KB pages. The .bin file which is flashed to the chip + has a 0x18 byte file header, and each segment has a 0x08 byte segment + header. Setting this offset makes it simple to meet the flash cache MMU's + constraint that (paddr % 64KB == vaddr % 64KB).) + */ + /* Shared data RAM, excluding memory reserved for ROM bss/data/stack. + + Enabling Bluetooth & Trace Memory features in menuconfig will decrease + the amount of RAM available. + + Note: Length of this section *should* be 0x50000, and this extra DRAM is available + in heap at runtime. However due to static ROM memory usage at this 176KB mark, the + additional static memory temporarily cannot be used. + */ + dram0_0_seg (RW) : org = 0x3FFB0000 + 0, + len = 0x2c200 - 0 + /* Flash mapped constant data */ + drom0_0_seg (R) : org = 0x3F400020, len = 0x400000-0x20 + /* (See iram0_2_seg for meaning of 0x20 offset in the above.) */ +/** + * RTC Memory Layout for ESP32 + * + * ESP32 has two separate RTC memory regions: + * 1. RTC FAST Memory: 8KB, accessible by PRO_CPU only + * 2. RTC SLOW Memory: 8KB, accessible by both CPUs and ULP coprocessor + * + * ==================== RTC FAST Memory ==================== + * Size: 8KB (0x2000) + * IRAM View: 0x400C0000 - 0x400C2000 (executable) + * DRAM View: 0x3FF80000 - 0x3FF82000 (data access) + * + * +-----------------------------+ 0x400C2000 / 0x3FF82000 (RTC FAST memory end) + * | rtc_fast_reserved_seg | + * | (ESP_BOOTLOADER_RESERVE_RTC)| + * |- - - - - - - - - - - - - - -| + * | bootloader_data_rtc_mem | s_bootloader_retain_mem + * +-----------------------------+ 0x400C2000 - ESP_BOOTLOADER_RESERVE_RTC + * | rtc_iram_seg / | + * | rtc_data_seg | + * | .rtc.text | RTC wake stub code + * |- - - - - - - - - - - - - - -| + * | .rtc.data / .rtc.rodata | (when CONFIG_ESP32_RTCDATA_IN_FAST_MEM) + * |- - - - - - - - - - - - - - -| + * | .rtc.bss | + * +-----------------------------+ 0x400C0000 / 0x3FF80000 (RTC FAST memory start) + * + * ==================== RTC SLOW Memory ==================== + * Size: 8KB (0x2000) + * Address: 0x50000000 - 0x50002000 + * + * +-----------------------------+ 0x50002000 (RTC SLOW memory end) + * | rtc_slow_reserved_seg | + * | (RESERVE_RTC_MEM = 24) | + * |- - - - - - - - - - - - - - -| + * | rtc_timer_data_in_rtc_mem | s_rtc_timer_retain_mem (24 bytes) + * | (RTC_TIMER_RESERVE_RTC) | + * +-----------------------------+ 0x50002000 - RESERVE_RTC_MEM + * | rtc_slow_seg | + * |- - - - - - - - - - - - - - -| + * | .rtc.data / .rtc.rodata | (when !CONFIG_ESP32_RTCDATA_IN_FAST_MEM) + * | .rtc.bss | + * +-----------------------------+ 0x50000000 + CONFIG_ULP_COPROC_RESERVE_MEM (if ULP enabled) + * | ULP Coprocessor Reserve | (Optional, CONFIG_ULP_COPROC_RESERVE_MEM) + * | (code + data) | + * +-----------------------------+ 0x50000000 (RTC SLOW memory start) + * + * ESP_BOOTLOADER_RESERVE_RTC = ALIGN_UP(CONFIG_BOOTLOADER_RESERVE_RTC_SIZE, 8) + * RESERVE_RTC_MEM = RTC_TIMER_RESERVE_RTC (24 bytes) for ESP32 + * + * Note: RTC data can be placed in either FAST or SLOW memory based on + * CONFIG_ESP32_RTCDATA_IN_FAST_MEM configuration option. + */ + /* RTC fast memory (executable). Persists over deep sleep. */ + rtc_iram_seg(RWX) : org = 0x400C0000, len = 0x2000 - 0 + /* RTC fast memory (same block as above, rtc_iram_seg), viewed from data bus */ + rtc_data_seg(RW) : org = 0x3ff80000, len = 0x2000 - 0 + /* We reduced the size of rtc_iram_seg and rtc_data_seg by ESP_BOOTLOADER_RESERVE_RTC value. + It reserves the amount of RTC fast memory that we use for this memory segment. + This segment is intended for keeping bootloader rtc data (s_bootloader_retain_mem, when a Kconfig option is on). + The aim of this is to keep data that will not be moved around and have a fixed address. + org = 0x3ff80000 + 0x2000 - ESP_BOOTLOADER_RESERVE_RTC == SOC_RTC_DRAM_HIGH - sizeof(rtc_retain_mem_t) + */ + rtc_fast_reserved_seg(RW) : org = 0x3ff80000 + 0x2000 - 0, len = 0 + /* RTC slow memory (data accessible). Persists over deep sleep. + + Start of RTC slow memory is reserved for ULP co-processor code + data, if enabled. + */ + rtc_slow_seg(RW) : org = 0x50000000, len = 0x2000 - ((24)) + /* We reduced the size of rtc_slow_seg by RESERVE_RTC_MEM value. + It reserves the amount of RTC slow memory that we use for this memory segment. + This segment is intended for keeping rtc timer data (s_rtc_timer_retain_mem, see esp_clk.c files). + The aim of this is to keep data that will not be moved around and have a fixed address. + org = 0x50000000 + 0x2000 - RESERVE_RTC_MEM + */ + rtc_slow_reserved_seg(RW) : org = 0x50000000 + 0x2000 - ((24)), len = ((24)) + /* external memory */ + extern_ram_seg(RW) : org = 0x3F800000, + len = 0x400000 +} +_heap_start = _heap_low_start; +_sram1_iram_start = 0x400A0000; +_sram1_iram_len = ( _iram_end > _sram1_iram_start) ? (_iram_end - _sram1_iram_start) : 0; +_heap_end = ALIGN(0x40000000 - _sram1_iram_len - 3, 4); +_data_seg_org = ORIGIN(rtc_data_seg); +/* The lines below define location alias for .rtc.data section based on Kconfig option. + When the option is not defined then use slow memory segment + else the data will be placed in fast memory segment */ +REGION_ALIAS("rtc_data_location", rtc_slow_seg ); + REGION_ALIAS("default_code_seg", iram0_2_seg); + REGION_ALIAS("default_rodata_seg", drom0_0_seg); +/** + * If rodata default segment is placed in `drom0_0_seg`, then flash's first rodata section must + * also be first in the segment. + */ + ASSERT(_rodata_start == ORIGIN(default_rodata_seg), + ".flash.appdesc section must be placed at the beginning of the rodata segment.") diff --git a/build/esp-idf/esp_system/ld/sections.ld b/build/esp-idf/esp_system/ld/sections.ld new file mode 100644 index 0000000..7bb2930 --- /dev/null +++ b/build/esp-idf/esp_system/ld/sections.ld @@ -0,0 +1,938 @@ +/* Automatically generated file; DO NOT EDIT */ +/* Espressif IoT Development Framework Linker Script */ +/* Generated from: C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\esp_system\ld\sections.ld.in */ + +/* + * SPDX-FileCopyrightText: 2021 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ +/* + * SPDX-FileCopyrightText: 2021-2024 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ +/* + + * Automatically generated file. DO NOT EDIT. + + * Espressif IoT Development Framework (ESP-IDF) 6.0.0 Configuration Header + + */ + +/* List of deprecated options */ +/* CPU instruction prefetch padding size for flash mmap scenario */ +/* Copy from esp_secure_boot.h */ +/* + * PMP region granularity size + * Software may determine the PMP granularity by writing zero to pmp0cfg, then writing all ones + * to pmpaddr0, then reading back pmpaddr0. If G is the index of the least-significant bit set, + * the PMP granularity is 2^G+2 bytes. + */ +/* CPU instruction prefetch padding size for memory protection scenario */ +/* Memory alignment size for PMS */ + /* rtc timer data (s_rtc_timer_retain_mem, see esp_clk.c files). For rtc_timer_data_in_rtc_mem section. */ +/* Default entry point */ +ENTRY(call_start_cpu0); +SECTIONS +{ + /** + * RTC fast memory holds RTC wake stub code, + * including from any source file named rtc_wake_stub*.c + */ + .rtc.text : + { + + . = ALIGN(4); + _rtc_text_start = ABSOLUTE(.); + *(.rtc.literal .rtc.text .rtc.text.*) + *rtc_wake_stub*.*(.literal .text .literal.* .text.*) + _rtc_text_end = ABSOLUTE(.); + } > rtc_iram_seg + /** + * This section is required to skip rtc.text area because rtc_iram_seg and + * rtc_data_seg are reflect the same address space on different buses. + */ + .rtc.dummy : + { + _rtc_dummy_start = ABSOLUTE(.); + _rtc_fast_start = ABSOLUTE(.); + . = SIZEOF(.rtc.text); + _rtc_dummy_end = ABSOLUTE(.); + } > rtc_data_seg + /** + * This section located in RTC FAST Memory area. + * It holds data marked with RTC_FAST_ATTR attribute. + * See the file "esp_attr.h" for more information. + */ + .rtc.force_fast : + { + + . = ALIGN(4); + _rtc_force_fast_start = ABSOLUTE(.); + *(.rtc.force_fast .rtc.force_fast.*) + + . = ALIGN(4); + _rtc_force_fast_end = ABSOLUTE(.); + } > rtc_data_seg + /** + * RTC data section holds RTC wake stub + * data/rodata, including from any source file + * named rtc_wake_stub*.c and the data marked with + * RTC_DATA_ATTR, RTC_RODATA_ATTR attributes. + * The memory location of the data is dependent on + * CONFIG_ESP32_RTCDATA_IN_FAST_MEM option. + */ + .rtc.data : + { + _rtc_data_start = ABSOLUTE(.); + *(.rtc.data .rtc.data.*) + *(.rtc.rodata .rtc.rodata.*) + *rtc_wake_stub*.*(.data .rodata .data.* .rodata.*) + _rtc_data_end = ABSOLUTE(.); + } > rtc_data_location + /* RTC bss, from any source file named rtc_wake_stub*.c */ + .rtc.bss (NOLOAD) : + { + _rtc_bss_start = ABSOLUTE(.); + *rtc_wake_stub*.*(.bss .bss.*) + *rtc_wake_stub*.*(COMMON) + *(.rtc.bss) + _rtc_bss_end = ABSOLUTE(.); + } > rtc_data_location + /** + * This section holds data that should not be initialized at power up + * and will be retained during deep sleep. + * User data marked with RTC_NOINIT_ATTR will be placed + * into this section. See the file "esp_attr.h" for more information. + * The memory location of the data is dependent on + * CONFIG_ESP32_RTCDATA_IN_FAST_MEM option. + */ + .rtc_noinit (NOLOAD): + { + + . = ALIGN(4); + _rtc_noinit_start = ABSOLUTE(.); + *(.rtc_noinit .rtc_noinit.*) + + . = ALIGN(4); + _rtc_noinit_end = ABSOLUTE(.); + } > rtc_data_location + /** + * This section located in RTC SLOW Memory area. + * It holds data marked with RTC_SLOW_ATTR attribute. + * See the file "esp_attr.h" for more information. + */ + .rtc.force_slow : + { + + . = ALIGN(4); + _rtc_force_slow_start = ABSOLUTE(.); + *(.rtc.force_slow .rtc.force_slow.*) + + . = ALIGN(4); + _rtc_force_slow_end = ABSOLUTE(.); + } > rtc_slow_seg + /** + * This section holds RTC FAST data that should have fixed addresses. + * The data are not initialized at power-up and are retained during deep + * sleep. + */ + .rtc_fast_reserved (NOLOAD): + { + + . = ALIGN(4); + _rtc_fast_reserved_start = ABSOLUTE(.); + /** + * New data can only be added here to ensure existing data are not moved. + * Because data have adhered to the end of the segment and code is relied + * on it. + * >> put new data here << + */ + KEEP(*(.bootloader_data_rtc_mem .bootloader_data_rtc_mem.*)) + _rtc_fast_reserved_end = ABSOLUTE(.); + } > rtc_fast_reserved_seg + _rtc_fast_reserved_length = _rtc_fast_reserved_end - _rtc_fast_reserved_start; + ASSERT((_rtc_fast_reserved_length <= LENGTH(rtc_fast_reserved_seg)), + "RTC FAST reserved segment data does not fit.") + /** + * This section holds RTC SLOW data that should have fixed addresses. + * The data are not initialized at power-up and are retained during deep + * sleep. + */ + .rtc_slow_reserved (NOLOAD): + { + + . = ALIGN(4); + _rtc_slow_reserved_start = ABSOLUTE(.); + /** + * New data can only be added here to ensure existing data are not moved. + * Because data have adhered to the end of the segment and code is relied + * on it. + * >> put new data here << + */ + *(.rtc_timer_data_in_rtc_mem .rtc_timer_data_in_rtc_mem.*) + _rtc_slow_reserved_end = ABSOLUTE(.); + } > rtc_slow_reserved_seg + _rtc_slow_reserved_length = _rtc_slow_reserved_end - _rtc_slow_reserved_start; + _rtc_reserved_length = _rtc_slow_reserved_length; + ASSERT((_rtc_slow_reserved_length <= LENGTH(rtc_slow_reserved_seg)), + "RTC SLOW reserved segment data does not fit.") + /* Get size of rtc slow data based on rtc_data_location alias */ + _rtc_slow_length = (ORIGIN(rtc_slow_seg) == ORIGIN(rtc_data_location)) + ? (_rtc_force_slow_end - _rtc_data_start) + : (_rtc_force_slow_end - _rtc_force_slow_start); + _rtc_fast_length = (ORIGIN(rtc_slow_seg) == ORIGIN(rtc_data_location)) + ? (_rtc_force_fast_end - _rtc_fast_start) + : (_rtc_noinit_end - _rtc_fast_start); + ASSERT((_rtc_slow_length <= LENGTH(rtc_slow_seg)), + "RTC_SLOW segment data does not fit.") + ASSERT((_rtc_fast_length <= LENGTH(rtc_data_seg)), + "RTC_FAST segment data does not fit.") + /* Send .iram0 code to iram */ + .iram0.vectors : + { + _iram_start = ABSOLUTE(.); + /* Vectors go to IRAM */ + _vector_table = ABSOLUTE(.); + . = 0x0; + KEEP(*(.WindowVectors.text)); + . = 0x180; + KEEP(*(.Level2InterruptVector.text)); + . = 0x1c0; + KEEP(*(.Level3InterruptVector.text)); + . = 0x200; + KEEP(*(.Level4InterruptVector.text)); + . = 0x240; + KEEP(*(.Level5InterruptVector.text)); + . = 0x280; + KEEP(*(.DebugExceptionVector.text)); + . = 0x2c0; + KEEP(*(.NMIExceptionVector.text)); + . = 0x300; + KEEP(*(.KernelExceptionVector.text)); + . = 0x340; + KEEP(*(.UserExceptionVector.text)); + . = 0x3C0; + KEEP(*(.DoubleExceptionVector.text)); + . = 0x400; + KEEP(*(._invalid_pc_placeholder.text)); + *(.*Vector.literal) + } > iram0_0_seg + .iram0.text : + { + /* Code marked as running out of IRAM */ + _iram_text_start = ABSOLUTE(.); + *(.iram1 .iram1.*) + *libesp_driver_gptimer.a:gptimer.*(.literal.gptimer_default_isr .text.gptimer_default_isr) + *libesp_driver_i2c.a:i2c_master.*(.literal.i2c_master_isr_handler_default .text.i2c_master_isr_handler_default) + *libesp_driver_mcpwm.a:mcpwm_cap.*(.literal.mcpwm_capture_default_isr .text.mcpwm_capture_default_isr) + *libesp_driver_mcpwm.a:mcpwm_cmpr.*(.literal.mcpwm_comparator_default_isr .text.mcpwm_comparator_default_isr) + *libesp_driver_mcpwm.a:mcpwm_fault.*(.literal.mcpwm_gpio_fault_default_isr .text.mcpwm_gpio_fault_default_isr) + *libesp_driver_mcpwm.a:mcpwm_oper.*(.literal.mcpwm_operator_default_isr .text.mcpwm_operator_default_isr) + *libesp_driver_mcpwm.a:mcpwm_timer.*(.literal.mcpwm_timer_default_isr .text.mcpwm_timer_default_isr) + *libesp_driver_rmt.a:rmt_encoder.*(.literal.rmt_encoder_reset .text.rmt_encoder_reset) + *libesp_driver_rmt.a:rmt_rx.*(.literal.rmt_isr_handle_rx_done .text.rmt_isr_handle_rx_done) + *libesp_driver_rmt.a:rmt_rx.*(.literal.rmt_rx_default_isr .text.rmt_rx_default_isr) + *libesp_driver_rmt.a:rmt_tx.*(.literal.rmt_encode_check_result .text.rmt_encode_check_result) + *libesp_driver_rmt.a:rmt_tx.*(.literal.rmt_isr_handle_tx_done .text.rmt_isr_handle_tx_done) + *libesp_driver_rmt.a:rmt_tx.*(.literal.rmt_isr_handle_tx_threshold .text.rmt_isr_handle_tx_threshold) + *libesp_driver_rmt.a:rmt_tx.*(.literal.rmt_tx_default_isr .text.rmt_tx_default_isr) + *libesp_driver_rmt.a:rmt_tx.*(.literal.rmt_tx_do_transaction .text.rmt_tx_do_transaction) + *libesp_driver_rmt.a:rmt_tx.*(.literal.rmt_tx_mark_eof .text.rmt_tx_mark_eof) + *libesp_event.a:default_event_loop.*(.literal.esp_event_isr_post .text.esp_event_isr_post) + *libesp_event.a:esp_event.*(.literal.esp_event_isr_post_to .text.esp_event_isr_post_to) + *libesp_hal_gpio.a:gpio_hal.*(.literal.gpio_hal_isolate_in_sleep .text.gpio_hal_isolate_in_sleep) + *libesp_hal_gpspi.a:spi_hal_iram.*(.literal .literal.* .text .text.*) + *libesp_hal_gpspi.a:spi_slave_hal_iram.*(.literal .literal.* .text .text.*) + *libesp_hal_i2c.a:i2c_hal_iram.*(.literal .literal.* .text .text.*) + *libesp_hal_ledc.a:ledc_hal_iram.*(.literal .literal.* .text .text.*) + *libesp_hal_mspi.a:spi_flash_encrypt_hal_iram.*(.literal .literal.* .text .text.*) + *libesp_hal_mspi.a:spi_flash_hal_iram.*(.literal .literal.* .text .text.*) + *libesp_hal_timg.a:timer_hal.*(.literal.timer_hal_capture_and_get_counter_value .text.timer_hal_capture_and_get_counter_value) + *libesp_hal_wdt.a:wdt_hal_iram.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:clk_utils.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:cpu.*(.literal.esp_cpu_compare_and_set .text.esp_cpu_compare_and_set) + *libesp_hw_support.a:cpu.*(.literal.esp_cpu_reset .text.esp_cpu_reset) + *libesp_hw_support.a:cpu.*(.literal.esp_cpu_stall .text.esp_cpu_stall) + *libesp_hw_support.a:cpu.*(.literal.esp_cpu_unstall .text.esp_cpu_unstall) + *libesp_hw_support.a:cpu.*(.literal.esp_cpu_wait_for_intr .text.esp_cpu_wait_for_intr) + *libesp_hw_support.a:esp_clk_tree.*(.literal.esp_clk_tree_enable_power .text.esp_clk_tree_enable_power) + *libesp_hw_support.a:esp_clk_tree.*(.literal.esp_clk_tree_enable_src .text.esp_clk_tree_enable_src) + *libesp_hw_support.a:esp_clk_tree.*(.literal.esp_clk_tree_is_power_on .text.esp_clk_tree_is_power_on) + *libesp_hw_support.a:esp_memory_utils.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:mspi_timing_tuning.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:periph_ctrl.*(.literal.periph_module_reset .text.periph_module_reset) + *libesp_hw_support.a:periph_ctrl.*(.literal.periph_rcc_acquire_enter .text.periph_rcc_acquire_enter) + *libesp_hw_support.a:periph_ctrl.*(.literal.periph_rcc_acquire_exit .text.periph_rcc_acquire_exit) + *libesp_hw_support.a:periph_ctrl.*(.literal.periph_rcc_enter .text.periph_rcc_enter) + *libesp_hw_support.a:periph_ctrl.*(.literal.periph_rcc_exit .text.periph_rcc_exit) + *libesp_hw_support.a:periph_ctrl.*(.literal.periph_rcc_release_enter .text.periph_rcc_release_enter) + *libesp_hw_support.a:periph_ctrl.*(.literal.periph_rcc_release_exit .text.periph_rcc_release_exit) + *libesp_hw_support.a:periph_ctrl.*(.literal.wifi_module_disable .text.wifi_module_disable) + *libesp_hw_support.a:periph_ctrl.*(.literal.wifi_module_enable .text.wifi_module_enable) + *libesp_hw_support.a:regi2c_ctrl.*(.literal.regi2c_ctrl_read_reg .text.regi2c_ctrl_read_reg) + *libesp_hw_support.a:regi2c_ctrl.*(.literal.regi2c_ctrl_read_reg_mask .text.regi2c_ctrl_read_reg_mask) + *libesp_hw_support.a:regi2c_ctrl.*(.literal.regi2c_ctrl_write_reg .text.regi2c_ctrl_write_reg) + *libesp_hw_support.a:regi2c_ctrl.*(.literal.regi2c_ctrl_write_reg_mask .text.regi2c_ctrl_write_reg_mask) + *libesp_hw_support.a:regi2c_ctrl.*(.literal.regi2c_enter_critical .text.regi2c_enter_critical) + *libesp_hw_support.a:regi2c_ctrl.*(.literal.regi2c_exit_critical .text.regi2c_exit_critical) + *libesp_hw_support.a:rtc_clk.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:rtc_init.*(.literal.rtc_vddsdio_get_config .text.rtc_vddsdio_get_config) + *libesp_hw_support.a:rtc_init.*(.literal.rtc_vddsdio_set_config .text.rtc_vddsdio_set_config) + *libesp_hw_support.a:rtc_sleep.*(.literal.rtc_sleep_pd .text.rtc_sleep_pd) + *libesp_hw_support.a:rtc_sleep.*(.literal.rtc_sleep_start .text.rtc_sleep_start) + *libesp_hw_support.a:rtc_time.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:rtc_wdt.*(.literal .literal.* .text .text.*) + *libesp_libc.a:abort.*(.literal .literal.* .text .text.*) + *libesp_libc.a:assert.*(.literal .literal.* .text .text.*) + *libesp_libc.a:heap.*(.literal .literal.* .text .text.*) + *libesp_libc.a:stdatomic.*(.literal .literal.* .text .text.*) + *libesp_mm.a:cache_esp32.*(.literal .literal.* .text .text.*) + *libesp_mm.a:esp_cache_msync.*(.literal .literal.* .text .text.*) + *libesp_mm.a:esp_cache_utils.*(.literal .literal.* .text .text.*) + *libesp_ringbuf.a:ringbuf.*(.literal.prvAcquireItemNoSplit .text.prvAcquireItemNoSplit) + *libesp_ringbuf.a:ringbuf.*(.literal.prvCheckItemAvail .text.prvCheckItemAvail) + *libesp_ringbuf.a:ringbuf.*(.literal.prvCheckItemFitsByteBuffer .text.prvCheckItemFitsByteBuffer) + *libesp_ringbuf.a:ringbuf.*(.literal.prvCheckItemFitsDefault .text.prvCheckItemFitsDefault) + *libesp_ringbuf.a:ringbuf.*(.literal.prvCopyItemAllowSplit .text.prvCopyItemAllowSplit) + *libesp_ringbuf.a:ringbuf.*(.literal.prvCopyItemByteBuf .text.prvCopyItemByteBuf) + *libesp_ringbuf.a:ringbuf.*(.literal.prvCopyItemNoSplit .text.prvCopyItemNoSplit) + *libesp_ringbuf.a:ringbuf.*(.literal.prvGetItemByteBuf .text.prvGetItemByteBuf) + *libesp_ringbuf.a:ringbuf.*(.literal.prvGetItemDefault .text.prvGetItemDefault) + *libesp_ringbuf.a:ringbuf.*(.literal.prvReceiveGenericFromISR .text.prvReceiveGenericFromISR) + *libesp_ringbuf.a:ringbuf.*(.literal.prvReturnItemByteBuf .text.prvReturnItemByteBuf) + *libesp_ringbuf.a:ringbuf.*(.literal.prvReturnItemDefault .text.prvReturnItemDefault) + *libesp_ringbuf.a:ringbuf.*(.literal.prvSendItemDoneNoSplit .text.prvSendItemDoneNoSplit) + *libesp_ringbuf.a:ringbuf.*(.literal.vRingbufferReturnItemFromISR .text.vRingbufferReturnItemFromISR) + *libesp_ringbuf.a:ringbuf.*(.literal.xRingbufferReceiveFromISR .text.xRingbufferReceiveFromISR) + *libesp_ringbuf.a:ringbuf.*(.literal.xRingbufferReceiveSplitFromISR .text.xRingbufferReceiveSplitFromISR) + *libesp_ringbuf.a:ringbuf.*(.literal.xRingbufferReceiveUpToFromISR .text.xRingbufferReceiveUpToFromISR) + *libesp_ringbuf.a:ringbuf.*(.literal.xRingbufferSendFromISR .text.xRingbufferSendFromISR) + *libesp_rom.a:esp_rom_print.*(.literal .literal.* .text .text.*) + *libesp_rom.a:esp_rom_spiflash.*(.literal .literal.* .text .text.*) + *libesp_rom.a:esp_rom_sys.*(.literal .literal.* .text .text.*) + *libesp_system.a:esp_err.*(.literal .literal.* .text .text.*) + *libesp_system.a:esp_system_chip.*(.literal.esp_restart_noos_dig .text.esp_restart_noos_dig) + *libesp_system.a:esp_system_chip.*(.literal.esp_system_abort .text.esp_system_abort) + *libesp_system.a:freertos_hooks.*(.literal.esp_vApplicationTickHook .text.esp_vApplicationTickHook) + *libesp_system.a:image_process.*(.literal .literal.* .text .text.*) + *libesp_system.a:panic.*(.literal.panic_abort .text.panic_abort) + *libesp_system.a:reset_reason.*(.literal.esp_reset_reason_set_hint .text.esp_reset_reason_set_hint) + *libesp_system.a:system_internal.*(.literal.esp_restart_noos .text.esp_restart_noos) + *libesp_system.a:system_internal.*(.literal.esp_system_reset_modules_on_exit .text.esp_system_reset_modules_on_exit) + *libesp_system.a:system_time.*(.literal.esp_system_get_time .text.esp_system_get_time) + *libesp_system.a:system_time.*(.literal.esp_system_get_time_resolution .text.esp_system_get_time_resolution) + *libesp_system.a:ubsan.*(.literal .literal.* .text .text.*) + *libesp_wifi.a:esp_adapter.*(.literal.coex_pti_get_wrapper .text.coex_pti_get_wrapper) + *libesp_wifi.a:wifi_netif.*(.literal.wifi_sta_receive .text.wifi_sta_receive) + *libesp_wifi.a:wifi_netif.*(.literal.wifi_transmit_wrap .text.wifi_transmit_wrap) + *libfreertos.a:event_groups.*(.literal.xEventGroupGetBitsFromISR .text.xEventGroupGetBitsFromISR) + *libfreertos.a:list.*(.literal.uxListRemove .text.uxListRemove) + *libfreertos.a:list.*(.literal.vListInsertEnd .text.vListInsertEnd) + *libfreertos.a:port.*(.literal.vPortAssertIfInISR .text.vPortAssertIfInISR) + *libfreertos.a:port.*(.literal.vPortExitCritical .text.vPortExitCritical) + *libfreertos.a:port.*(.literal.vPortSetStackWatchpoint .text.vPortSetStackWatchpoint) + *libfreertos.a:port.*(.literal.vPortYieldOtherCore .text.vPortYieldOtherCore) + *libfreertos.a:port.*(.literal.xPortEnterCriticalTimeout .text.xPortEnterCriticalTimeout) + *libfreertos.a:port.*(.literal.xPortInIsrContext .text.xPortInIsrContext) + *libfreertos.a:port.*(.literal.xPortInterruptedFromISRContext .text.xPortInterruptedFromISRContext) + *libfreertos.a:port.*(.literal.xPortStartScheduler .text.xPortStartScheduler) + *libfreertos.a:port_systick.*(.literal .literal.* .text .text.*) + *libfreertos.a:portasm.*(.literal .literal.* .text .text.*) + *libfreertos.a:queue.*(.literal.prvCopyDataFromQueue .text.prvCopyDataFromQueue) + *libfreertos.a:queue.*(.literal.prvCopyDataToQueue .text.prvCopyDataToQueue) + *libfreertos.a:queue.*(.literal.prvNotifyQueueSetContainer .text.prvNotifyQueueSetContainer) + *libfreertos.a:queue.*(.literal.uxQueueMessagesWaitingFromISR .text.uxQueueMessagesWaitingFromISR) + *libfreertos.a:queue.*(.literal.xQueueGenericSendFromISR .text.xQueueGenericSendFromISR) + *libfreertos.a:queue.*(.literal.xQueueGetMutexHolderFromISR .text.xQueueGetMutexHolderFromISR) + *libfreertos.a:queue.*(.literal.xQueueGiveFromISR .text.xQueueGiveFromISR) + *libfreertos.a:queue.*(.literal.xQueueIsQueueEmptyFromISR .text.xQueueIsQueueEmptyFromISR) + *libfreertos.a:queue.*(.literal.xQueueIsQueueFullFromISR .text.xQueueIsQueueFullFromISR) + *libfreertos.a:queue.*(.literal.xQueuePeekFromISR .text.xQueuePeekFromISR) + *libfreertos.a:queue.*(.literal.xQueueReceiveFromISR .text.xQueueReceiveFromISR) + *libfreertos.a:queue.*(.literal.xQueueSelectFromSetFromISR .text.xQueueSelectFromSetFromISR) + *libfreertos.a:stream_buffer.*(.literal.prvBytesInBuffer .text.prvBytesInBuffer) + *libfreertos.a:stream_buffer.*(.literal.prvReadMessageFromBuffer .text.prvReadMessageFromBuffer) + *libfreertos.a:stream_buffer.*(.literal.prvWriteMessageToBuffer .text.prvWriteMessageToBuffer) + *libfreertos.a:stream_buffer.*(.literal.xStreamBufferReceiveCompletedFromISR .text.xStreamBufferReceiveCompletedFromISR) + *libfreertos.a:stream_buffer.*(.literal.xStreamBufferReceiveFromISR .text.xStreamBufferReceiveFromISR) + *libfreertos.a:stream_buffer.*(.literal.xStreamBufferSendCompletedFromISR .text.xStreamBufferSendCompletedFromISR) + *libfreertos.a:stream_buffer.*(.literal.xStreamBufferSendFromISR .text.xStreamBufferSendFromISR) + *libfreertos.a:tasks.*(.literal.prvCheckTaskCanBeScheduledSMP .text.prvCheckTaskCanBeScheduledSMP) + *libfreertos.a:tasks.*(.literal.prvIsYieldRequiredSMP .text.prvIsYieldRequiredSMP) + *libfreertos.a:tasks.*(.literal.prvResetNextTaskUnblockTime .text.prvResetNextTaskUnblockTime) + *libfreertos.a:tasks.*(.literal.prvSelectHighestPriorityTaskSMP .text.prvSelectHighestPriorityTaskSMP) + *libfreertos.a:tasks.*(.literal.prvTaskIsTaskSuspended .text.prvTaskIsTaskSuspended) + *libfreertos.a:tasks.*(.literal.uxTaskPriorityGetFromISR .text.uxTaskPriorityGetFromISR) + *libfreertos.a:tasks.*(.literal.vTaskGenericNotifyGiveFromISR .text.vTaskGenericNotifyGiveFromISR) + *libfreertos.a:tasks.*(.literal.vTaskGetSnapshot .text.vTaskGetSnapshot) + *libfreertos.a:tasks.*(.literal.vTaskSwitchContext .text.vTaskSwitchContext) + *libfreertos.a:tasks.*(.literal.xTaskGenericNotifyFromISR .text.xTaskGenericNotifyFromISR) + *libfreertos.a:tasks.*(.literal.xTaskGetSchedulerState .text.xTaskGetSchedulerState) + *libfreertos.a:tasks.*(.literal.xTaskGetTickCount .text.xTaskGetTickCount) + *libfreertos.a:tasks.*(.literal.xTaskGetTickCountFromISR .text.xTaskGetTickCountFromISR) + *libfreertos.a:tasks.*(.literal.xTaskIncrementTick .text.xTaskIncrementTick) + *libfreertos.a:tasks.*(.literal.xTaskIncrementTickOtherCores .text.xTaskIncrementTickOtherCores) + *libfreertos.a:tasks.*(.literal.xTaskRemoveFromEventList .text.xTaskRemoveFromEventList) + *libfreertos.a:tasks.*(.literal.xTaskResumeFromISR .text.xTaskResumeFromISR) + *libfreertos.a:timers.*(.literal.xTimerGenericCommand .text.xTimerGenericCommand) + *libfreertos.a:timers.*(.literal.xTimerPendFunctionCallFromISR .text.xTimerPendFunctionCallFromISR) + *libgcc.a:lib2funcs.*(.literal .literal.* .text .text.*) + *libgcov.a:(.literal .literal.* .text .text.*) + *libhal.a:cache_hal_esp32.*(.literal .literal.* .text .text.*) + *libhal.a:mmu_hal.*(.literal .literal.* .text .text.*) + *libheap.a:multi_heap.*(.literal.assert_valid_block .text.assert_valid_block) + *libheap.a:multi_heap.*(.literal.multi_heap_aligned_alloc_impl .text.multi_heap_aligned_alloc_impl) + *libheap.a:multi_heap.*(.literal.multi_heap_aligned_alloc_impl_offs .text.multi_heap_aligned_alloc_impl_offs) + *libheap.a:multi_heap.*(.literal.multi_heap_aligned_alloc_offs .text.multi_heap_aligned_alloc_offs) + *libheap.a:multi_heap.*(.literal.multi_heap_free_impl .text.multi_heap_free_impl) + *libheap.a:multi_heap.*(.literal.multi_heap_get_allocated_size_impl .text.multi_heap_get_allocated_size_impl) + *libheap.a:multi_heap.*(.literal.multi_heap_get_block_address_impl .text.multi_heap_get_block_address_impl) + *libheap.a:multi_heap.*(.literal.multi_heap_get_first_block .text.multi_heap_get_first_block) + *libheap.a:multi_heap.*(.literal.multi_heap_get_full_block_size .text.multi_heap_get_full_block_size) + *libheap.a:multi_heap.*(.literal.multi_heap_get_next_block .text.multi_heap_get_next_block) + *libheap.a:multi_heap.*(.literal.multi_heap_internal_lock .text.multi_heap_internal_lock) + *libheap.a:multi_heap.*(.literal.multi_heap_internal_unlock .text.multi_heap_internal_unlock) + *libheap.a:multi_heap.*(.literal.multi_heap_is_free .text.multi_heap_is_free) + *libheap.a:multi_heap.*(.literal.multi_heap_malloc_impl .text.multi_heap_malloc_impl) + *libheap.a:multi_heap.*(.literal.multi_heap_realloc_impl .text.multi_heap_realloc_impl) + *libheap.a:multi_heap.*(.literal.multi_heap_set_lock .text.multi_heap_set_lock) + *libheap.a:tlsf.*(.literal.tlsf_alloc_overhead .text.tlsf_alloc_overhead) + *libheap.a:tlsf.*(.literal.tlsf_block_size .text.tlsf_block_size) + *libheap.a:tlsf.*(.literal.tlsf_free .text.tlsf_free) + *libheap.a:tlsf.*(.literal.tlsf_get_pool .text.tlsf_get_pool) + *libheap.a:tlsf.*(.literal.tlsf_malloc .text.tlsf_malloc) + *libheap.a:tlsf.*(.literal.tlsf_memalign .text.tlsf_memalign) + *libheap.a:tlsf.*(.literal.tlsf_memalign_offs .text.tlsf_memalign_offs) + *libheap.a:tlsf.*(.literal.tlsf_realloc .text.tlsf_realloc) + *libheap.a:tlsf.*(.literal.tlsf_size .text.tlsf_size) + *liblog.a:log.*(.literal .literal.* .text .text.*) + *liblog.a:log_format_text.*(.literal .literal.* .text .text.*) + *liblog.a:log_lock.*(.literal .literal.* .text .text.*) + *liblog.a:log_print.*(.literal .literal.* .text .text.*) + *liblog.a:log_timestamp.*(.literal.esp_log_early_timestamp .text.esp_log_early_timestamp) + *liblog.a:log_timestamp.*(.literal.esp_log_timestamp .text.esp_log_timestamp) + *liblog.a:log_timestamp_common.*(.literal .literal.* .text .text.*) + *liblog.a:log_write.*(.literal.esp_log_write .text.esp_log_write) + *liblog.a:log_write.*(.literal.esp_log_writev .text.esp_log_writev) + *liblog.a:tag_log_level.*(.literal.esp_log_level_get_timeout .text.esp_log_level_get_timeout) + *liblog.a:util.*(.literal .literal.* .text .text.*) + *libnet80211.a:(.wifi0iram .wifi0iram.*) + *libnet80211.a:(.wifirxiram .wifirxiram.*) + *libnet80211.a:(.wifislprxiram .wifislprxiram.*) + *libpp.a:(.wifi0iram .wifi0iram.*) + *libpp.a:(.wifiorslpiram .wifiorslpiram.*) + *libpp.a:(.wifirxiram .wifirxiram.*) + *libpp.a:(.wifislprxiram .wifislprxiram.*) + *librtc.a:(.literal .literal.* .text .text.*) + *libsoc.a:lldesc.*(.literal .literal.* .text .text.*) + *libspi_flash.a:esp_flash_api.*(.literal.check_chip_pointer_default .text.check_chip_pointer_default) + *libspi_flash.a:esp_flash_api.*(.literal.detect_spi_flash_chip .text.detect_spi_flash_chip) + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_chip_driver_initialized .text.esp_flash_chip_driver_initialized) + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_erase_chip .text.esp_flash_erase_chip) + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_erase_region .text.esp_flash_erase_region) + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_get_chip_write_protect .text.esp_flash_get_chip_write_protect) + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_get_io_mode .text.esp_flash_get_io_mode) + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_get_physical_size .text.esp_flash_get_physical_size) + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_get_protected_region .text.esp_flash_get_protected_region) + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_get_size .text.esp_flash_get_size) + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_init .text.esp_flash_init) + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_init_main .text.esp_flash_init_main) + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_is_quad_mode .text.esp_flash_is_quad_mode) + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_read .text.esp_flash_read) + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_read_encrypted .text.esp_flash_read_encrypted) + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_set_chip_write_protect .text.esp_flash_set_chip_write_protect) + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_set_io_mode .text.esp_flash_set_io_mode) + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_set_protected_region .text.esp_flash_set_protected_region) + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_write .text.esp_flash_write) + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_write_encrypted .text.esp_flash_write_encrypted) + *libspi_flash.a:esp_flash_api.*(.literal.flash_end_flush_cache .text.flash_end_flush_cache) + *libspi_flash.a:esp_flash_api.*(.literal.read_unique_id .text.read_unique_id) + *libspi_flash.a:esp_flash_api.*(.literal.spiflash_end_default .text.spiflash_end_default) + *libspi_flash.a:esp_flash_api.*(.literal.spiflash_start_core .text.spiflash_start_core) + *libspi_flash.a:esp_flash_api.*(.literal.spiflash_start_default .text.spiflash_start_default) + *libspi_flash.a:flash_brownout_hook.*(.literal .literal.* .text .text.*) + *libspi_flash.a:memspi_host_driver.*(.literal .literal.* .text .text.*) + *libspi_flash.a:spi_flash_chip_boya.*(.literal .literal.* .text .text.*) + *libspi_flash.a:spi_flash_chip_gd.*(.literal .literal.* .text .text.*) + *libspi_flash.a:spi_flash_chip_generic.*(.literal .literal.* .text .text.*) + *libspi_flash.a:spi_flash_chip_issi.*(.literal .literal.* .text .text.*) + *libspi_flash.a:spi_flash_chip_mxic.*(.literal .literal.* .text .text.*) + *libspi_flash.a:spi_flash_chip_th.*(.literal .literal.* .text .text.*) + *libspi_flash.a:spi_flash_chip_winbond.*(.literal .literal.* .text .text.*) + *libspi_flash.a:spi_flash_os_func_app.*(.literal.delay_us .text.delay_us) + *libspi_flash.a:spi_flash_os_func_app.*(.literal.get_buffer_malloc .text.get_buffer_malloc) + *libspi_flash.a:spi_flash_os_func_app.*(.literal.main_flash_op_status .text.main_flash_op_status) + *libspi_flash.a:spi_flash_os_func_app.*(.literal.main_flash_region_protected .text.main_flash_region_protected) + *libspi_flash.a:spi_flash_os_func_app.*(.literal.release_buffer_malloc .text.release_buffer_malloc) + *libspi_flash.a:spi_flash_os_func_app.*(.literal.spi23_end .text.spi23_end) + *libspi_flash.a:spi_flash_os_func_app.*(.literal.spi23_start .text.spi23_start) + *libspi_flash.a:spi_flash_os_func_app.*(.literal.spi_flash_os_check_yield .text.spi_flash_os_check_yield) + *libspi_flash.a:spi_flash_os_func_app.*(.literal.spi_flash_os_yield .text.spi_flash_os_yield) + *libspi_flash.a:spi_flash_os_func_noos.*(.literal.delay_us .text.delay_us) + *libspi_flash.a:spi_flash_os_func_noos.*(.literal.esp_flash_app_disable_os_functions .text.esp_flash_app_disable_os_functions) + *libspi_flash.a:spi_flash_os_func_noos.*(.literal.get_temp_buffer_not_supported .text.get_temp_buffer_not_supported) + *libspi_flash.a:spi_flash_wrap.*(.literal .literal.* .text .text.*) + *libxt_hal.a:(.literal .literal.* .text .text.*) + *libxtensa.a:(EXCLUDE_FILE(*libxtensa.a:xt_trax.* *libxtensa.a:xtensa_intr.*) .literal EXCLUDE_FILE(*libxtensa.a:xt_trax.* *libxtensa.a:xtensa_intr.*) .literal.* EXCLUDE_FILE(*libxtensa.a:xt_trax.* *libxtensa.a:xtensa_intr.*) .text EXCLUDE_FILE(*libxtensa.a:xt_trax.* *libxtensa.a:xtensa_intr.*) .text.*) + } > iram0_0_seg + .dram0.data : + { + _data_start = ABSOLUTE(.); + *(.gnu.linkonce.d.*) + *(.data1) + *(.sdata) + *(.sdata.*) + *(.gnu.linkonce.s.*) + *(.gnu.linkonce.s2.*) + *(.jcr) + *(.data .data.*) + *(.dram1 .dram1.*) + *libesp_driver_rmt.a:rmt_tx.*(.rodata.rmt_isr_handle_tx_done .rodata.rmt_isr_handle_tx_done.str1.4 .sdata2.rmt_isr_handle_tx_done .srodata.rmt_isr_handle_tx_done) + *libesp_hal_gpio.a:gpio_hal.*(.rodata.gpio_hal_isolate_in_sleep .rodata.gpio_hal_isolate_in_sleep.str1.4 .sdata2.gpio_hal_isolate_in_sleep .srodata.gpio_hal_isolate_in_sleep) + *libesp_hal_gpspi.a:spi_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hal_gpspi.a:spi_slave_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hal_i2c.a:i2c_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hal_ledc.a:ledc_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hal_mspi.a:spi_flash_encrypt_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hal_mspi.a:spi_flash_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hal_wdt.a:wdt_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hw_support.a:clk_utils.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hw_support.a:cpu.*(.rodata.esp_cpu_stall .rodata.esp_cpu_stall.str1.4 .sdata2.esp_cpu_stall .srodata.esp_cpu_stall) + *libesp_hw_support.a:esp_memory_utils.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hw_support.a:mspi_timing_tuning.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hw_support.a:rtc_clk.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_libc.a:abort.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_libc.a:assert.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_libc.a:heap.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_libc.a:stdatomic.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_mm.a:cache_esp32.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_mm.a:esp_cache_msync.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_mm.a:esp_cache_utils.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_rom.a:esp_rom_print.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_rom.a:esp_rom_spiflash.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_rom.a:esp_rom_sys.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_system.a:esp_err.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_system.a:image_process.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_system.a:reset_reason.*(.rodata.esp_reset_reason_set_hint .rodata.esp_reset_reason_set_hint.str1.4 .sdata2.esp_reset_reason_set_hint .srodata.esp_reset_reason_set_hint) + *libesp_system.a:ubsan.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libgcov.a:(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libhal.a:cache_hal_esp32.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libhal.a:mmu_hal.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libheap.a:multi_heap.*(.rodata.assert_valid_block .rodata.assert_valid_block.str1.4 .sdata2.assert_valid_block .srodata.assert_valid_block) + *libheap.a:multi_heap.*(.rodata.multi_heap_get_first_block .rodata.multi_heap_get_first_block.str1.4 .sdata2.multi_heap_get_first_block .srodata.multi_heap_get_first_block) + *libheap.a:multi_heap.*(.rodata.multi_heap_get_next_block .rodata.multi_heap_get_next_block.str1.4 .sdata2.multi_heap_get_next_block .srodata.multi_heap_get_next_block) + *libheap.a:tlsf.*(.rodata.tlsf_free .rodata.tlsf_free.str1.4 .sdata2.tlsf_free .srodata.tlsf_free) + *libheap.a:tlsf.*(.rodata.tlsf_malloc .rodata.tlsf_malloc.str1.4 .sdata2.tlsf_malloc .srodata.tlsf_malloc) + *libheap.a:tlsf.*(.rodata.tlsf_memalign_offs .rodata.tlsf_memalign_offs.str1.4 .sdata2.tlsf_memalign_offs .srodata.tlsf_memalign_offs) + *libheap.a:tlsf.*(.rodata.tlsf_realloc .rodata.tlsf_realloc.str1.4 .sdata2.tlsf_realloc .srodata.tlsf_realloc) + *liblog.a:log.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *liblog.a:log_format_text.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *liblog.a:log_lock.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *liblog.a:log_print.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *liblog.a:log_timestamp_common.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *liblog.a:util.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libphy.a:(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libsoc.a:lldesc.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:flash_brownout_hook.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:memspi_host_driver.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:spi_flash_chip_boya.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:spi_flash_chip_gd.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:spi_flash_chip_generic.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:spi_flash_chip_issi.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:spi_flash_chip_mxic.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:spi_flash_chip_th.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:spi_flash_chip_winbond.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:spi_flash_os_func_app.*(.rodata.spi_flash_os_check_yield .rodata.spi_flash_os_check_yield.str1.4 .sdata2.spi_flash_os_check_yield .srodata.spi_flash_os_check_yield) + *libspi_flash.a:spi_flash_wrap.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + _data_end = ABSOLUTE(.); + } > dram0_0_seg + /** + * This section holds data that won't be initialised when startup. + * This section locates in External RAM region. + */ + .ext_ram_noinit (NOLOAD) : + { + _ext_ram_noinit_start = ABSOLUTE(.); + *(.ext_ram_noinit*) + + . = ALIGN(4); + _ext_ram_noinit_end = ABSOLUTE(.); + } > extern_ram_seg + /** + * This section holds data that should not be initialized at power up. + * The section located in Internal SRAM memory region. The macro _NOINIT + * can be used as attribute to place data into this section. + * See the "esp_attr.h" file for more information. + */ + .noinit (NOLOAD): + { + + . = ALIGN(4); + _noinit_start = ABSOLUTE(.); + *(.noinit .noinit.*) + + . = ALIGN(4); + _noinit_end = ABSOLUTE(.); + } > dram0_0_seg + /* External Memory BSS. (Variables with EXT_RAM_BSS_ATTR attribute). */ + .ext_ram.bss (NOLOAD) : + { + + . = ALIGN(4); + _ext_ram_bss_start = ABSOLUTE(.); + + . = ALIGN(4); + _ext_ram_bss_end = ABSOLUTE(.); + } > extern_ram_seg + /* Shared RAM */ + .dram0.bss (NOLOAD) : + { + + . = ALIGN(8); + _bss_start = ABSOLUTE(.); + /** + * ldgen places all bss-related data to mapping[dram0_bss] + * (See components/esp_system/app.lf). + */ + *(.bss .bss.*) + *(.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) + *(.ext_ram.bss .ext_ram.bss.*) + *(COMMON) + + . = ALIGN(8); + _bss_end = ABSOLUTE(.); + } > dram0_0_seg + ASSERT(((_bss_end - ORIGIN(dram0_0_seg)) <= LENGTH(dram0_0_seg)), + "DRAM segment data does not fit.") + .flash.appdesc : ALIGN(0x10) + { + /** + * Mark flash.rodata start. + * This can be used for mmu driver to maintain virtual address + */ + _rodata_reserved_start = ABSOLUTE(.); + _rodata_start = ABSOLUTE(.); + /* !DO NOT PUT ANYTHING BEFORE THIS! */ + /* Should be the first. App version info. */ + *(.rodata_desc .rodata_desc.*) + /* Should be the second. Custom app version info. */ + *(.rodata_custom_desc .rodata_custom_desc.*) + /** + * Create an empty gap within this section. Thanks to this, the end of this + * section will match .flah.rodata's begin address. Thus, both sections + * will be merged when creating the final bin image. + */ + . = ALIGN(ALIGNOF(.flash.rodata)); + } > default_rodata_seg + ASSERT((ADDR(.flash.rodata) == ADDR(.flash.appdesc) + SIZEOF(.flash.appdesc)), "The gap between .flash.appdesc and .flash.rodata must not exist to produce the final bin image.") + .flash.rodata : ALIGN(0x10) + { + _flash_rodata_start = ABSOLUTE(.); + _esp_trace_encoder_array_start = ABSOLUTE(.); + KEEP(*(SORT_BY_NAME(.esp_trace_encoder_desc))) + _esp_trace_encoder_array_end = ABSOLUTE(.); + _esp_trace_transport_array_start = ABSOLUTE(.); + KEEP(*(SORT_BY_NAME(.esp_trace_transport_desc))) + _esp_trace_transport_array_end = ABSOLUTE(.); + *(EXCLUDE_FILE(*libgcov.a *libphy.a *libesp_driver_rmt.a:rmt_tx.* *libesp_hal_gpio.a:gpio_hal.* *libesp_hal_gpspi.a:spi_hal_iram.* *libesp_hal_gpspi.a:spi_slave_hal_iram.* *libesp_hal_i2c.a:i2c_hal_iram.* *libesp_hal_ledc.a:ledc_hal_iram.* *libesp_hal_mspi.a:spi_flash_encrypt_hal_iram.* *libesp_hal_mspi.a:spi_flash_hal_iram.* *libesp_hal_wdt.a:wdt_hal_iram.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:rtc_clk.* *libesp_libc.a:abort.* *libesp_libc.a:assert.* *libesp_libc.a:heap.* *libesp_libc.a:stdatomic.* *libesp_mm.a:cache_esp32.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:esp_cache_utils.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_system.a:esp_err.* *libesp_system.a:image_process.* *libesp_system.a:reset_reason.* *libesp_system.a:ubsan.* *libhal.a:cache_hal_esp32.* *libhal.a:mmu_hal.* *libheap.a:multi_heap.* *libheap.a:tlsf.* *liblog.a:log.* *liblog.a:log_format_text.* *liblog.a:log_lock.* *liblog.a:log_print.* *liblog.a:log_timestamp_common.* *liblog.a:util.* *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_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_os_func_app.* *libspi_flash.a:spi_flash_wrap.*) .rodata EXCLUDE_FILE(*libgcov.a *libphy.a *libesp_driver_rmt.a:rmt_tx.* *libesp_hal_gpio.a:gpio_hal.* *libesp_hal_gpspi.a:spi_hal_iram.* *libesp_hal_gpspi.a:spi_slave_hal_iram.* *libesp_hal_i2c.a:i2c_hal_iram.* *libesp_hal_ledc.a:ledc_hal_iram.* *libesp_hal_mspi.a:spi_flash_encrypt_hal_iram.* *libesp_hal_mspi.a:spi_flash_hal_iram.* *libesp_hal_wdt.a:wdt_hal_iram.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:rtc_clk.* *libesp_libc.a:abort.* *libesp_libc.a:assert.* *libesp_libc.a:heap.* *libesp_libc.a:stdatomic.* *libesp_mm.a:cache_esp32.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:esp_cache_utils.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_system.a:esp_err.* *libesp_system.a:image_process.* *libesp_system.a:reset_reason.* *libesp_system.a:ubsan.* *libhal.a:cache_hal_esp32.* *libhal.a:mmu_hal.* *libheap.a:multi_heap.* *libheap.a:tlsf.* *liblog.a:log.* *liblog.a:log_format_text.* *liblog.a:log_lock.* *liblog.a:log_print.* *liblog.a:log_timestamp_common.* *liblog.a:util.* *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_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_os_func_app.* *libspi_flash.a:spi_flash_wrap.*) .rodata.* EXCLUDE_FILE(*libgcov.a *libphy.a *libesp_driver_rmt.a:rmt_tx.* *libesp_hal_gpio.a:gpio_hal.* *libesp_hal_gpspi.a:spi_hal_iram.* *libesp_hal_gpspi.a:spi_slave_hal_iram.* *libesp_hal_i2c.a:i2c_hal_iram.* *libesp_hal_ledc.a:ledc_hal_iram.* *libesp_hal_mspi.a:spi_flash_encrypt_hal_iram.* *libesp_hal_mspi.a:spi_flash_hal_iram.* *libesp_hal_wdt.a:wdt_hal_iram.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:rtc_clk.* *libesp_libc.a:abort.* *libesp_libc.a:assert.* *libesp_libc.a:heap.* *libesp_libc.a:stdatomic.* *libesp_mm.a:cache_esp32.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:esp_cache_utils.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_system.a:esp_err.* *libesp_system.a:image_process.* *libesp_system.a:reset_reason.* *libesp_system.a:ubsan.* *libhal.a:cache_hal_esp32.* *libhal.a:mmu_hal.* *libheap.a:multi_heap.* *libheap.a:tlsf.* *liblog.a:log.* *liblog.a:log_format_text.* *liblog.a:log_lock.* *liblog.a:log_print.* *liblog.a:log_timestamp_common.* *liblog.a:util.* *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_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_os_func_app.* *libspi_flash.a:spi_flash_wrap.*) .sdata2 EXCLUDE_FILE(*libgcov.a *libphy.a *libesp_driver_rmt.a:rmt_tx.* *libesp_hal_gpio.a:gpio_hal.* *libesp_hal_gpspi.a:spi_hal_iram.* *libesp_hal_gpspi.a:spi_slave_hal_iram.* *libesp_hal_i2c.a:i2c_hal_iram.* *libesp_hal_ledc.a:ledc_hal_iram.* *libesp_hal_mspi.a:spi_flash_encrypt_hal_iram.* *libesp_hal_mspi.a:spi_flash_hal_iram.* *libesp_hal_wdt.a:wdt_hal_iram.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:rtc_clk.* *libesp_libc.a:abort.* *libesp_libc.a:assert.* *libesp_libc.a:heap.* *libesp_libc.a:stdatomic.* *libesp_mm.a:cache_esp32.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:esp_cache_utils.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_system.a:esp_err.* *libesp_system.a:image_process.* *libesp_system.a:reset_reason.* *libesp_system.a:ubsan.* *libhal.a:cache_hal_esp32.* *libhal.a:mmu_hal.* *libheap.a:multi_heap.* *libheap.a:tlsf.* *liblog.a:log.* *liblog.a:log_format_text.* *liblog.a:log_lock.* *liblog.a:log_print.* *liblog.a:log_timestamp_common.* *liblog.a:util.* *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_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_os_func_app.* *libspi_flash.a:spi_flash_wrap.*) .sdata2.* EXCLUDE_FILE(*libgcov.a *libphy.a *libesp_driver_rmt.a:rmt_tx.* *libesp_hal_gpio.a:gpio_hal.* *libesp_hal_gpspi.a:spi_hal_iram.* *libesp_hal_gpspi.a:spi_slave_hal_iram.* *libesp_hal_i2c.a:i2c_hal_iram.* *libesp_hal_ledc.a:ledc_hal_iram.* *libesp_hal_mspi.a:spi_flash_encrypt_hal_iram.* *libesp_hal_mspi.a:spi_flash_hal_iram.* *libesp_hal_wdt.a:wdt_hal_iram.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:rtc_clk.* *libesp_libc.a:abort.* *libesp_libc.a:assert.* *libesp_libc.a:heap.* *libesp_libc.a:stdatomic.* *libesp_mm.a:cache_esp32.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:esp_cache_utils.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_system.a:esp_err.* *libesp_system.a:image_process.* *libesp_system.a:reset_reason.* *libesp_system.a:ubsan.* *libhal.a:cache_hal_esp32.* *libhal.a:mmu_hal.* *libheap.a:multi_heap.* *libheap.a:tlsf.* *liblog.a:log.* *liblog.a:log_format_text.* *liblog.a:log_lock.* *liblog.a:log_print.* *liblog.a:log_timestamp_common.* *liblog.a:util.* *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_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_os_func_app.* *libspi_flash.a:spi_flash_wrap.*) .srodata EXCLUDE_FILE(*libgcov.a *libphy.a *libesp_driver_rmt.a:rmt_tx.* *libesp_hal_gpio.a:gpio_hal.* *libesp_hal_gpspi.a:spi_hal_iram.* *libesp_hal_gpspi.a:spi_slave_hal_iram.* *libesp_hal_i2c.a:i2c_hal_iram.* *libesp_hal_ledc.a:ledc_hal_iram.* *libesp_hal_mspi.a:spi_flash_encrypt_hal_iram.* *libesp_hal_mspi.a:spi_flash_hal_iram.* *libesp_hal_wdt.a:wdt_hal_iram.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:rtc_clk.* *libesp_libc.a:abort.* *libesp_libc.a:assert.* *libesp_libc.a:heap.* *libesp_libc.a:stdatomic.* *libesp_mm.a:cache_esp32.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:esp_cache_utils.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_system.a:esp_err.* *libesp_system.a:image_process.* *libesp_system.a:reset_reason.* *libesp_system.a:ubsan.* *libhal.a:cache_hal_esp32.* *libhal.a:mmu_hal.* *libheap.a:multi_heap.* *libheap.a:tlsf.* *liblog.a:log.* *liblog.a:log_format_text.* *liblog.a:log_lock.* *liblog.a:log_print.* *liblog.a:log_timestamp_common.* *liblog.a:util.* *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_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_os_func_app.* *libspi_flash.a:spi_flash_wrap.*) .srodata.*) + *(.rodata_wlog_error .rodata_wlog_error.*) + *(.rodata_wlog_info .rodata_wlog_info.*) + *(.rodata_wlog_warning .rodata_wlog_warning.*) + *libesp_driver_rmt.a:rmt_tx.*(.rodata.__FUNCTION__$0 .rodata.__FUNCTION__$10 .rodata.__FUNCTION__$11 .rodata.__FUNCTION__$12 .rodata.__FUNCTION__$15 .rodata.__FUNCTION__$16 .rodata.__FUNCTION__$17 .rodata.__FUNCTION__$2 .rodata.__FUNCTION__$3 .rodata.__FUNCTION__$4 .rodata.__FUNCTION__$5 .rodata.__FUNCTION__$6 .rodata.__FUNCTION__$7 .rodata.__FUNCTION__$8 .rodata.__func__$1 .rodata.__func__$13 .rodata.__func__$14 .rodata.__func__$9 .rodata.rmt_del_tx_channel.str1.4 .rodata.rmt_ll_tx_set_carrier_high_low_ticks.str1.4 .rodata.rmt_new_sync_manager.str1.4 .rodata.rmt_new_tx_channel.str1.4 .rodata.rmt_transmit.str1.4 .rodata.rmt_tx_create_trans_queue.str1.4 .rodata.rmt_tx_destroy.str1.4 .rodata.rmt_tx_disable.str1.4 .rodata.rmt_tx_enable.str1.4 .rodata.rmt_tx_register_event_callbacks.str1.4 .rodata.rmt_tx_register_to_group.str1.4 .rodata.rmt_tx_switch_gpio.str1.4 .rodata.rmt_tx_wait_all_done.str1.4) + *libesp_hal_gpio.a:gpio_hal.*(.rodata.__func__$4) + *libesp_hw_support.a:cpu.*(.rodata.__func__$0 .rodata.__func__$1 .rodata.__func__$2) + *libesp_system.a:reset_reason.*(.rodata.__func__$0) + *libheap.a:multi_heap.*(.rodata.__func__$0 .rodata.__func__$1 .rodata.__func__$2 .rodata.__func__$3 .rodata.__func__$4 .rodata.__func__$5 .rodata.__func__$6 .rodata.__func__$7 .rodata.__func__$8 .rodata.multi_heap_dump.str1.4 .rodata.multi_heap_dump_tlsf.str1.4 .rodata.multi_heap_find_containing_block_impl.str1.4 .rodata.multi_heap_register_impl.str1.4) + *libheap.a:tlsf.*(.rodata.__func__$0 .rodata.__func__$1 .rodata.__func__$10 .rodata.__func__$11 .rodata.__func__$12 .rodata.__func__$13 .rodata.__func__$14 .rodata.__func__$15 .rodata.__func__$16 .rodata.__func__$17 .rodata.__func__$19 .rodata.__func__$2 .rodata.__func__$20 .rodata.__func__$3 .rodata.__func__$5 .rodata.__func__$6 .rodata.__func__$7 .rodata.__func__$8 .rodata.__func__$9 .rodata.control_construct.str1.4 .rodata.default_walker.str1.4 .rodata.tlsf_add_pool.str1.4 .rodata.tlsf_check.str1.4 .rodata.tlsf_create.str1.4 .rodata.tlsf_remove_pool.str1.4) + *libspi_flash.a:spi_flash_os_func_app.*(.rodata.__func__$0 .rodata.esp_flash_spi23_default_os_functions) + *(.irom1.text) /* catch stray ICACHE_RODATA_ATTR */ + *(.gnu.linkonce.r.*) + *(.rodata1) + /* C++ exception handlers table. */ + + . = ALIGN(4); + __XT_EXCEPTION_TABLE_ = ABSOLUTE(.); + *(.xt_except_table) + *(.gcc_except_table .gcc_except_table.*) + *(.gnu.linkonce.e.*) + + . = ALIGN(4); + __XT_EXCEPTION_DESCS_ = ABSOLUTE(.); + *(.xt_except_desc) + *(.gnu.linkonce.h.*) + __XT_EXCEPTION_DESCS_END__ = ABSOLUTE(.); + *(.xt_except_desc_end) + /** + * C++ constructor tables. + * + * Excluding crtbegin.o/crtend.o since IDF doesn't use the toolchain crt. + */ + + . = ALIGN(4); + __preinit_array_start = ABSOLUTE(.); + + . = ALIGN(4); + __bothinit_array_start = ABSOLUTE(.); + KEEP (*(.preinit_array)) + __preinit_array_end = ABSOLUTE(.); + + . = ALIGN(4); + __init_array_start = ABSOLUTE(.); + KEEP (*(SORT_BY_INIT_PRIORITY(EXCLUDE_FILE (*crtend.* *crtbegin.*) .ctors.*))) + KEEP (*(EXCLUDE_FILE (*crtend.* *crtbegin.*) .ctors)) + __init_array_end = ABSOLUTE(.); + __bothinit_array_end = ABSOLUTE(.); + /* Addresses of memory regions reserved via SOC_RESERVE_MEMORY_REGION() */ + + . = ALIGN(4); + soc_reserved_memory_region_start = ABSOLUTE(.); + KEEP (*(.reserved_memory_address)) + soc_reserved_memory_region_end = ABSOLUTE(.); + /* System init functions registered via ESP_SYSTEM_INIT_FN */ + + . = ALIGN(4); + _esp_system_init_fn_array_start = ABSOLUTE(.); + KEEP (*(SORT_BY_INIT_PRIORITY(.esp_system_init_fn.*))) + _esp_system_init_fn_array_end = ABSOLUTE(.); + _rodata_end = ABSOLUTE(.); + /* Literals are also RO data. */ + _lit4_start = ABSOLUTE(.); + *(*.lit4) + *(.lit4.*) + *(.gnu.linkonce.lit4.*) + _lit4_end = ABSOLUTE(.); + /* TLS data. */ + + . = ALIGN(4); + _thread_local_start = ABSOLUTE(.); + _picolibc_reent_stub_start = ABSOLUTE(.); + KEEP(*(.tdata.errno)) + /* Reproduce the public fields from struct _reent. */ + KEEP(*(.tdata.tls_stdin)) + KEEP(*(.tdata.tls_stdout)) + KEEP(*(.tdata.tls_stderr)) + _picolibc_reent_stub_end = ABSOLUTE(.); + *(.tdata) + *(.tdata.*) + *(.tbss) + *(.tbss.*) + _thread_local_end = ABSOLUTE(.); + } > default_rodata_seg + ASSERT((_picolibc_reent_stub_end - _picolibc_reent_stub_start) == 16, "Newlib _reent stub have wrong size") + _flash_rodata_align = ALIGNOF(.flash.rodata); + /** + * This section contains all the rodata that is not used + * at runtime, helping to avoid an increase in binary size. + */ + .flash.rodata_noload (NOLOAD) : + { + /** + * This symbol marks the end of flash.rodata. It can be utilized by the MMU + * driver to maintain the virtual address. + * NOLOAD rodata may not be included in this section. + */ + _rodata_reserved_end = ABSOLUTE(.); + *(.rodata_wlog_debug .rodata_wlog_debug.*) + *(.rodata_wlog_verbose .rodata_wlog_verbose.*) + } > default_rodata_seg + .flash.text : + { + _stext = .; + /** + * Mark the start of flash.text. + * This can be used by the MMU driver to maintain the virtual address. + */ + _instruction_reserved_start = ABSOLUTE(.); + _text_start = ABSOLUTE(.); + *(EXCLUDE_FILE(*libgcov.a *librtc.a *libxt_hal.a *libxtensa.a *libesp_driver_gptimer.a:gptimer.* *libesp_driver_i2c.a:i2c_master.* *libesp_driver_mcpwm.a:mcpwm_cap.* *libesp_driver_mcpwm.a:mcpwm_cmpr.* *libesp_driver_mcpwm.a:mcpwm_fault.* *libesp_driver_mcpwm.a:mcpwm_oper.* *libesp_driver_mcpwm.a:mcpwm_timer.* *libesp_driver_rmt.a:rmt_encoder.* *libesp_driver_rmt.a:rmt_rx.* *libesp_driver_rmt.a:rmt_tx.* *libesp_event.a:default_event_loop.* *libesp_event.a:esp_event.* *libesp_hal_gpio.a:gpio_hal.* *libesp_hal_gpspi.a:spi_hal_iram.* *libesp_hal_gpspi.a:spi_slave_hal_iram.* *libesp_hal_i2c.a:i2c_hal_iram.* *libesp_hal_ledc.a:ledc_hal_iram.* *libesp_hal_mspi.a:spi_flash_encrypt_hal_iram.* *libesp_hal_mspi.a:spi_flash_hal_iram.* *libesp_hal_timg.a:timer_hal.* *libesp_hal_wdt.a:wdt_hal_iram.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:esp_clk_tree.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:regi2c_ctrl.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_wdt.* *libesp_libc.a:abort.* *libesp_libc.a:assert.* *libesp_libc.a:heap.* *libesp_libc.a:stdatomic.* *libesp_mm.a:cache_esp32.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:esp_cache_utils.* *libesp_ringbuf.a:ringbuf.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_system.a:esp_err.* *libesp_system.a:esp_system_chip.* *libesp_system.a:freertos_hooks.* *libesp_system.a:image_process.* *libesp_system.a:panic.* *libesp_system.a:reset_reason.* *libesp_system.a:system_internal.* *libesp_system.a:system_time.* *libesp_system.a:ubsan.* *libesp_wifi.a:esp_adapter.* *libesp_wifi.a:wifi_netif.* *libfreertos.a:event_groups.* *libfreertos.a:list.* *libfreertos.a:port.* *libfreertos.a:port_systick.* *libfreertos.a:portasm.* *libfreertos.a:queue.* *libfreertos.a:stream_buffer.* *libfreertos.a:tasks.* *libfreertos.a:timers.* *libgcc.a:lib2funcs.* *libhal.a:cache_hal_esp32.* *libhal.a:mmu_hal.* *libheap.a:multi_heap.* *libheap.a:tlsf.* *liblog.a:log.* *liblog.a:log_format_text.* *liblog.a:log_lock.* *liblog.a:log_print.* *liblog.a:log_timestamp.* *liblog.a:log_timestamp_common.* *liblog.a:log_write.* *liblog.a:tag_log_level.* *liblog.a:util.* *libsoc.a:lldesc.* *libspi_flash.a:esp_flash_api.* *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_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_os_func_app.* *libspi_flash.a:spi_flash_os_func_noos.* *libspi_flash.a:spi_flash_wrap.*) .literal EXCLUDE_FILE(*libgcov.a *librtc.a *libxt_hal.a *libxtensa.a *libesp_driver_gptimer.a:gptimer.* *libesp_driver_i2c.a:i2c_master.* *libesp_driver_mcpwm.a:mcpwm_cap.* *libesp_driver_mcpwm.a:mcpwm_cmpr.* *libesp_driver_mcpwm.a:mcpwm_fault.* *libesp_driver_mcpwm.a:mcpwm_oper.* *libesp_driver_mcpwm.a:mcpwm_timer.* *libesp_driver_rmt.a:rmt_encoder.* *libesp_driver_rmt.a:rmt_rx.* *libesp_driver_rmt.a:rmt_tx.* *libesp_event.a:default_event_loop.* *libesp_event.a:esp_event.* *libesp_hal_gpio.a:gpio_hal.* *libesp_hal_gpspi.a:spi_hal_iram.* *libesp_hal_gpspi.a:spi_slave_hal_iram.* *libesp_hal_i2c.a:i2c_hal_iram.* *libesp_hal_ledc.a:ledc_hal_iram.* *libesp_hal_mspi.a:spi_flash_encrypt_hal_iram.* *libesp_hal_mspi.a:spi_flash_hal_iram.* *libesp_hal_timg.a:timer_hal.* *libesp_hal_wdt.a:wdt_hal_iram.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:esp_clk_tree.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:regi2c_ctrl.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_wdt.* *libesp_libc.a:abort.* *libesp_libc.a:assert.* *libesp_libc.a:heap.* *libesp_libc.a:stdatomic.* *libesp_mm.a:cache_esp32.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:esp_cache_utils.* *libesp_ringbuf.a:ringbuf.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_system.a:esp_err.* *libesp_system.a:esp_system_chip.* *libesp_system.a:freertos_hooks.* *libesp_system.a:image_process.* *libesp_system.a:panic.* *libesp_system.a:reset_reason.* *libesp_system.a:system_internal.* *libesp_system.a:system_time.* *libesp_system.a:ubsan.* *libesp_wifi.a:esp_adapter.* *libesp_wifi.a:wifi_netif.* *libfreertos.a:event_groups.* *libfreertos.a:list.* *libfreertos.a:port.* *libfreertos.a:port_systick.* *libfreertos.a:portasm.* *libfreertos.a:queue.* *libfreertos.a:stream_buffer.* *libfreertos.a:tasks.* *libfreertos.a:timers.* *libgcc.a:lib2funcs.* *libhal.a:cache_hal_esp32.* *libhal.a:mmu_hal.* *libheap.a:multi_heap.* *libheap.a:tlsf.* *liblog.a:log.* *liblog.a:log_format_text.* *liblog.a:log_lock.* *liblog.a:log_print.* *liblog.a:log_timestamp.* *liblog.a:log_timestamp_common.* *liblog.a:log_write.* *liblog.a:tag_log_level.* *liblog.a:util.* *libsoc.a:lldesc.* *libspi_flash.a:esp_flash_api.* *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_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_os_func_app.* *libspi_flash.a:spi_flash_os_func_noos.* *libspi_flash.a:spi_flash_wrap.*) .literal.* EXCLUDE_FILE(*libgcov.a *librtc.a *libxt_hal.a *libxtensa.a *libesp_driver_gptimer.a:gptimer.* *libesp_driver_i2c.a:i2c_master.* *libesp_driver_mcpwm.a:mcpwm_cap.* *libesp_driver_mcpwm.a:mcpwm_cmpr.* *libesp_driver_mcpwm.a:mcpwm_fault.* *libesp_driver_mcpwm.a:mcpwm_oper.* *libesp_driver_mcpwm.a:mcpwm_timer.* *libesp_driver_rmt.a:rmt_encoder.* *libesp_driver_rmt.a:rmt_rx.* *libesp_driver_rmt.a:rmt_tx.* *libesp_event.a:default_event_loop.* *libesp_event.a:esp_event.* *libesp_hal_gpio.a:gpio_hal.* *libesp_hal_gpspi.a:spi_hal_iram.* *libesp_hal_gpspi.a:spi_slave_hal_iram.* *libesp_hal_i2c.a:i2c_hal_iram.* *libesp_hal_ledc.a:ledc_hal_iram.* *libesp_hal_mspi.a:spi_flash_encrypt_hal_iram.* *libesp_hal_mspi.a:spi_flash_hal_iram.* *libesp_hal_timg.a:timer_hal.* *libesp_hal_wdt.a:wdt_hal_iram.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:esp_clk_tree.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:regi2c_ctrl.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_wdt.* *libesp_libc.a:abort.* *libesp_libc.a:assert.* *libesp_libc.a:heap.* *libesp_libc.a:stdatomic.* *libesp_mm.a:cache_esp32.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:esp_cache_utils.* *libesp_ringbuf.a:ringbuf.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_system.a:esp_err.* *libesp_system.a:esp_system_chip.* *libesp_system.a:freertos_hooks.* *libesp_system.a:image_process.* *libesp_system.a:panic.* *libesp_system.a:reset_reason.* *libesp_system.a:system_internal.* *libesp_system.a:system_time.* *libesp_system.a:ubsan.* *libesp_wifi.a:esp_adapter.* *libesp_wifi.a:wifi_netif.* *libfreertos.a:event_groups.* *libfreertos.a:list.* *libfreertos.a:port.* *libfreertos.a:port_systick.* *libfreertos.a:portasm.* *libfreertos.a:queue.* *libfreertos.a:stream_buffer.* *libfreertos.a:tasks.* *libfreertos.a:timers.* *libgcc.a:lib2funcs.* *libhal.a:cache_hal_esp32.* *libhal.a:mmu_hal.* *libheap.a:multi_heap.* *libheap.a:tlsf.* *liblog.a:log.* *liblog.a:log_format_text.* *liblog.a:log_lock.* *liblog.a:log_print.* *liblog.a:log_timestamp.* *liblog.a:log_timestamp_common.* *liblog.a:log_write.* *liblog.a:tag_log_level.* *liblog.a:util.* *libsoc.a:lldesc.* *libspi_flash.a:esp_flash_api.* *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_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_os_func_app.* *libspi_flash.a:spi_flash_os_func_noos.* *libspi_flash.a:spi_flash_wrap.*) .text EXCLUDE_FILE(*libgcov.a *librtc.a *libxt_hal.a *libxtensa.a *libesp_driver_gptimer.a:gptimer.* *libesp_driver_i2c.a:i2c_master.* *libesp_driver_mcpwm.a:mcpwm_cap.* *libesp_driver_mcpwm.a:mcpwm_cmpr.* *libesp_driver_mcpwm.a:mcpwm_fault.* *libesp_driver_mcpwm.a:mcpwm_oper.* *libesp_driver_mcpwm.a:mcpwm_timer.* *libesp_driver_rmt.a:rmt_encoder.* *libesp_driver_rmt.a:rmt_rx.* *libesp_driver_rmt.a:rmt_tx.* *libesp_event.a:default_event_loop.* *libesp_event.a:esp_event.* *libesp_hal_gpio.a:gpio_hal.* *libesp_hal_gpspi.a:spi_hal_iram.* *libesp_hal_gpspi.a:spi_slave_hal_iram.* *libesp_hal_i2c.a:i2c_hal_iram.* *libesp_hal_ledc.a:ledc_hal_iram.* *libesp_hal_mspi.a:spi_flash_encrypt_hal_iram.* *libesp_hal_mspi.a:spi_flash_hal_iram.* *libesp_hal_timg.a:timer_hal.* *libesp_hal_wdt.a:wdt_hal_iram.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:esp_clk_tree.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:regi2c_ctrl.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_wdt.* *libesp_libc.a:abort.* *libesp_libc.a:assert.* *libesp_libc.a:heap.* *libesp_libc.a:stdatomic.* *libesp_mm.a:cache_esp32.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:esp_cache_utils.* *libesp_ringbuf.a:ringbuf.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_system.a:esp_err.* *libesp_system.a:esp_system_chip.* *libesp_system.a:freertos_hooks.* *libesp_system.a:image_process.* *libesp_system.a:panic.* *libesp_system.a:reset_reason.* *libesp_system.a:system_internal.* *libesp_system.a:system_time.* *libesp_system.a:ubsan.* *libesp_wifi.a:esp_adapter.* *libesp_wifi.a:wifi_netif.* *libfreertos.a:event_groups.* *libfreertos.a:list.* *libfreertos.a:port.* *libfreertos.a:port_systick.* *libfreertos.a:portasm.* *libfreertos.a:queue.* *libfreertos.a:stream_buffer.* *libfreertos.a:tasks.* *libfreertos.a:timers.* *libgcc.a:lib2funcs.* *libhal.a:cache_hal_esp32.* *libhal.a:mmu_hal.* *libheap.a:multi_heap.* *libheap.a:tlsf.* *liblog.a:log.* *liblog.a:log_format_text.* *liblog.a:log_lock.* *liblog.a:log_print.* *liblog.a:log_timestamp.* *liblog.a:log_timestamp_common.* *liblog.a:log_write.* *liblog.a:tag_log_level.* *liblog.a:util.* *libsoc.a:lldesc.* *libspi_flash.a:esp_flash_api.* *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_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_os_func_app.* *libspi_flash.a:spi_flash_os_func_noos.* *libspi_flash.a:spi_flash_wrap.*) .text.*) + *(EXCLUDE_FILE(*libnet80211.a *libpp.a) .wifi0iram EXCLUDE_FILE(*libnet80211.a *libpp.a) .wifi0iram.*) + *(.wifiextrairam .wifiextrairam.*) + *(EXCLUDE_FILE(*libpp.a) .wifiorslpiram EXCLUDE_FILE(*libpp.a) .wifiorslpiram.*) + *(EXCLUDE_FILE(*libnet80211.a *libpp.a) .wifirxiram EXCLUDE_FILE(*libnet80211.a *libpp.a) .wifirxiram.*) + *(.wifislpiram .wifislpiram.*) + *(EXCLUDE_FILE(*libnet80211.a *libpp.a) .wifislprxiram EXCLUDE_FILE(*libnet80211.a *libpp.a) .wifislprxiram.*) + *libesp_driver_gptimer.a:gptimer.*(.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_set_alarm_action .literal.gptimer_set_raw_count .literal.gptimer_start .literal.gptimer_stop .literal.gptimer_unregister_from_group .text .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_set_alarm_action .text.gptimer_set_raw_count .text.gptimer_start .text.gptimer_stop .text.gptimer_unregister_from_group) + *libesp_driver_i2c.a:i2c_master.*(.literal.i2c_del_master_bus .literal.i2c_master_bus_add_device .literal.i2c_master_bus_destroy .literal.i2c_master_bus_reset .literal.i2c_master_bus_rm_device .literal.i2c_master_bus_wait_all_done .literal.i2c_master_device_change_address .literal.i2c_master_execute_defined_operations .literal.i2c_master_get_bus_handle .literal.i2c_master_multi_buffer_transmit .literal.i2c_master_probe .literal.i2c_master_receive .literal.i2c_master_register_event_callbacks .literal.i2c_master_transmit .literal.i2c_master_transmit_receive .literal.i2c_new_master_bus .literal.i2c_param_master_config .literal.s_i2c_asynchronous_transaction .literal.s_i2c_err_log_print .literal.s_i2c_hw_fsm_reset .literal.s_i2c_master_clear_bus .literal.s_i2c_read_command .literal.s_i2c_send_command_async .literal.s_i2c_send_commands .literal.s_i2c_start_end_command .literal.s_i2c_synchronous_transaction .literal.s_i2c_transaction_start .literal.s_i2c_write_command .text .text.i2c_del_master_bus .text.i2c_master_bus_add_device .text.i2c_master_bus_destroy .text.i2c_master_bus_reset .text.i2c_master_bus_rm_device .text.i2c_master_bus_wait_all_done .text.i2c_master_device_change_address .text.i2c_master_execute_defined_operations .text.i2c_master_get_bus_handle .text.i2c_master_multi_buffer_transmit .text.i2c_master_probe .text.i2c_master_receive .text.i2c_master_register_event_callbacks .text.i2c_master_transmit .text.i2c_master_transmit_receive .text.i2c_new_master_bus .text.i2c_param_master_config .text.s_i2c_asynchronous_transaction .text.s_i2c_err_log_print .text.s_i2c_hw_fsm_reset .text.s_i2c_master_clear_bus .text.s_i2c_read_command .text.s_i2c_send_command_async .text.s_i2c_send_commands .text.s_i2c_start_end_command .text.s_i2c_synchronous_transaction .text.s_i2c_transaction_start .text.s_i2c_write_command) + *libesp_driver_mcpwm.a:mcpwm_cap.*(.literal.mcpwm_cap_timer_destroy .literal.mcpwm_cap_timer_register_to_group .literal.mcpwm_cap_timer_unregister_from_group .literal.mcpwm_capture_channel_destroy .literal.mcpwm_capture_channel_disable .literal.mcpwm_capture_channel_enable .literal.mcpwm_capture_channel_register_event_callbacks .literal.mcpwm_capture_channel_register_to_timer .literal.mcpwm_capture_channel_trigger_soft_catch .literal.mcpwm_capture_channel_unregister_from_timer .literal.mcpwm_capture_get_latched_value .literal.mcpwm_capture_timer_disable .literal.mcpwm_capture_timer_enable .literal.mcpwm_capture_timer_get_resolution .literal.mcpwm_capture_timer_set_phase_on_sync .literal.mcpwm_capture_timer_start .literal.mcpwm_capture_timer_stop .literal.mcpwm_del_capture_channel .literal.mcpwm_del_capture_timer .literal.mcpwm_ll_capture_set_prescale .literal.mcpwm_new_capture_channel .literal.mcpwm_new_capture_timer .text .text.mcpwm_cap_timer_destroy .text.mcpwm_cap_timer_register_to_group .text.mcpwm_cap_timer_unregister_from_group .text.mcpwm_capture_channel_destroy .text.mcpwm_capture_channel_disable .text.mcpwm_capture_channel_enable .text.mcpwm_capture_channel_register_event_callbacks .text.mcpwm_capture_channel_register_to_timer .text.mcpwm_capture_channel_trigger_soft_catch .text.mcpwm_capture_channel_unregister_from_timer .text.mcpwm_capture_get_latched_value .text.mcpwm_capture_timer_disable .text.mcpwm_capture_timer_enable .text.mcpwm_capture_timer_get_resolution .text.mcpwm_capture_timer_set_phase_on_sync .text.mcpwm_capture_timer_start .text.mcpwm_capture_timer_stop .text.mcpwm_del_capture_channel .text.mcpwm_del_capture_timer .text.mcpwm_ll_capture_set_prescale .text.mcpwm_new_capture_channel .text.mcpwm_new_capture_timer) + *libesp_driver_mcpwm.a:mcpwm_cmpr.*(.literal.mcpwm_comparator_destroy .literal.mcpwm_comparator_register_event_callbacks .literal.mcpwm_comparator_register_to_operator .literal.mcpwm_comparator_set_compare_value .literal.mcpwm_comparator_unregister_from_operator .literal.mcpwm_del_comparator .literal.mcpwm_new_comparator .text .text.mcpwm_comparator_destroy .text.mcpwm_comparator_register_event_callbacks .text.mcpwm_comparator_register_to_operator .text.mcpwm_comparator_set_compare_value .text.mcpwm_comparator_unregister_from_operator .text.mcpwm_del_comparator .text.mcpwm_ll_operator_enable_update_compare_on_sync .text.mcpwm_ll_operator_enable_update_compare_on_tep .text.mcpwm_ll_operator_enable_update_compare_on_tez .text.mcpwm_new_comparator) + *libesp_driver_mcpwm.a:mcpwm_fault.*(.literal.mcpwm_del_fault .literal.mcpwm_del_gpio_fault .literal.mcpwm_del_soft_fault .literal.mcpwm_fault_register_event_callbacks .literal.mcpwm_gpio_fault_destroy .literal.mcpwm_gpio_fault_register_to_group .literal.mcpwm_gpio_fault_unregister_from_group .literal.mcpwm_new_gpio_fault .literal.mcpwm_new_soft_fault .literal.mcpwm_soft_fault_activate .text .text.mcpwm_del_fault .text.mcpwm_del_gpio_fault .text.mcpwm_del_soft_fault .text.mcpwm_fault_register_event_callbacks .text.mcpwm_gpio_fault_destroy .text.mcpwm_gpio_fault_register_to_group .text.mcpwm_gpio_fault_unregister_from_group .text.mcpwm_ll_fault_set_active_level .text.mcpwm_new_gpio_fault .text.mcpwm_new_soft_fault .text.mcpwm_soft_fault_activate) + *libesp_driver_mcpwm.a:mcpwm_oper.*(.literal.mcpwm_del_operator .literal.mcpwm_ll_carrier_set_first_pulse_width .literal.mcpwm_ll_carrier_set_prescale .literal.mcpwm_new_operator .literal.mcpwm_operator_apply_carrier .literal.mcpwm_operator_connect_timer .literal.mcpwm_operator_destroy .literal.mcpwm_operator_recover_from_fault .literal.mcpwm_operator_register_event_callbacks .literal.mcpwm_operator_register_to_group .literal.mcpwm_operator_set_brake_on_fault .literal.mcpwm_operator_unregister_from_group .text .text.mcpwm_del_operator .text.mcpwm_ll_brake_enable_cbc_mode .text.mcpwm_ll_brake_enable_oneshot_mode .text.mcpwm_ll_carrier_set_first_pulse_width .text.mcpwm_ll_carrier_set_prescale .text.mcpwm_ll_deadtime_enable_update_delay_on_sync .text.mcpwm_ll_deadtime_enable_update_delay_on_tep .text.mcpwm_ll_deadtime_enable_update_delay_on_tez .text.mcpwm_new_operator .text.mcpwm_operator_apply_carrier .text.mcpwm_operator_connect_timer .text.mcpwm_operator_destroy .text.mcpwm_operator_recover_from_fault .text.mcpwm_operator_register_event_callbacks .text.mcpwm_operator_register_to_group .text.mcpwm_operator_set_brake_on_fault .text.mcpwm_operator_unregister_from_group) + *libesp_driver_mcpwm.a:mcpwm_timer.*(.literal.mcpwm_del_timer .literal.mcpwm_ll_timer_set_clock_prescale .literal.mcpwm_ll_timer_set_count_mode .literal.mcpwm_ll_timer_set_start_stop_command .literal.mcpwm_new_timer .literal.mcpwm_timer_destroy .literal.mcpwm_timer_disable .literal.mcpwm_timer_enable .literal.mcpwm_timer_get_phase .literal.mcpwm_timer_register_event_callbacks .literal.mcpwm_timer_register_to_group .literal.mcpwm_timer_set_period .literal.mcpwm_timer_set_phase_on_sync .literal.mcpwm_timer_start_stop .literal.mcpwm_timer_unregister_from_group .text .text.mcpwm_del_timer .text.mcpwm_ll_timer_set_clock_prescale .text.mcpwm_ll_timer_set_count_mode .text.mcpwm_ll_timer_set_start_stop_command .text.mcpwm_new_timer .text.mcpwm_timer_destroy .text.mcpwm_timer_disable .text.mcpwm_timer_enable .text.mcpwm_timer_get_phase .text.mcpwm_timer_register_event_callbacks .text.mcpwm_timer_register_to_group .text.mcpwm_timer_set_period .text.mcpwm_timer_set_phase_on_sync .text.mcpwm_timer_start_stop .text.mcpwm_timer_unregister_from_group) + *libesp_driver_rmt.a:rmt_encoder.*(.literal.rmt_alloc_encoder_mem .literal.rmt_del_encoder .text .text.rmt_alloc_encoder_mem .text.rmt_del_encoder) + *libesp_driver_rmt.a:rmt_rx.*(.literal.rmt_del_rx_channel .literal.rmt_new_rx_channel .literal.rmt_receive .literal.rmt_rx_demodulate_carrier .literal.rmt_rx_destroy .literal.rmt_rx_disable .literal.rmt_rx_enable .literal.rmt_rx_register_event_callbacks .literal.rmt_rx_register_to_group .literal.rmt_rx_unregister_from_group .text .text.rmt_del_rx_channel .text.rmt_new_rx_channel .text.rmt_receive .text.rmt_rx_demodulate_carrier .text.rmt_rx_destroy .text.rmt_rx_disable .text.rmt_rx_enable .text.rmt_rx_register_event_callbacks .text.rmt_rx_register_to_group .text.rmt_rx_unregister_from_group) + *libesp_driver_rmt.a:rmt_tx.*(.literal.rmt_del_sync_manager .literal.rmt_del_tx_channel .literal.rmt_ll_tx_set_carrier_high_low_ticks .literal.rmt_new_sync_manager .literal.rmt_new_tx_channel .literal.rmt_sync_reset .literal.rmt_transmit .literal.rmt_tx_create_trans_queue .literal.rmt_tx_destroy .literal.rmt_tx_disable .literal.rmt_tx_enable .literal.rmt_tx_modulate_carrier .literal.rmt_tx_register_event_callbacks .literal.rmt_tx_register_to_group .literal.rmt_tx_switch_gpio .literal.rmt_tx_unregister_from_group .literal.rmt_tx_wait_all_done .text .text.rmt_del_sync_manager .text.rmt_del_tx_channel .text.rmt_ll_tx_set_carrier_high_low_ticks .text.rmt_new_sync_manager .text.rmt_new_tx_channel .text.rmt_sync_reset .text.rmt_transmit .text.rmt_tx_create_trans_queue .text.rmt_tx_destroy .text.rmt_tx_disable .text.rmt_tx_enable .text.rmt_tx_modulate_carrier .text.rmt_tx_register_event_callbacks .text.rmt_tx_register_to_group .text.rmt_tx_switch_gpio .text.rmt_tx_unregister_from_group .text.rmt_tx_wait_all_done) + *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) + *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.find_and_unregister_handler .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 .literal.loop_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.find_and_unregister_handler .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 .text.loop_remove_handler) + *libesp_hal_gpio.a:gpio_hal.*(.literal.gpio_hal_intr_disable .literal.gpio_hal_intr_enable_on_core .literal.gpio_hal_iomux_in .literal.gpio_hal_iomux_out .literal.gpio_hal_matrix_in .literal.gpio_hal_matrix_out .text .text.gpio_hal_intr_disable .text.gpio_hal_intr_enable_on_core .text.gpio_hal_iomux_in .text.gpio_hal_iomux_out .text.gpio_hal_matrix_in .text.gpio_hal_matrix_out) + *libesp_hal_timg.a:timer_hal.*(.literal.timer_hal_deinit .literal.timer_hal_init .text .text.timer_hal_deinit .text.timer_hal_init .text.timer_hal_set_counter_value) + *libesp_hw_support.a:cpu.*(.literal.esp_cpu_set_watchpoint .text .text.esp_cpu_clear_breakpoint .text.esp_cpu_clear_watchpoint .text.esp_cpu_set_breakpoint .text.esp_cpu_set_watchpoint) + *libesp_hw_support.a:esp_clk_tree.*(.literal.esp_clk_tree_src_get_freq_hz .text .text.esp_clk_tree_initialize .text.esp_clk_tree_src_get_freq_hz) + *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_rst_en_mask .literal.periph_ll_reset .literal.periph_ll_wifi_module_disable_clk_set_rst .literal.periph_ll_wifi_module_enable_clk_clear_rst .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_rst_en_mask .text.periph_ll_reset .text.periph_ll_wifi_module_disable_clk_set_rst .text.periph_ll_wifi_module_enable_clk_clear_rst .text.periph_module_disable .text.periph_module_enable) + *libesp_hw_support.a:regi2c_ctrl.*(.literal.regi2c_saradc_disable .literal.regi2c_saradc_enable .text .text.regi2c_saradc_disable .text.regi2c_saradc_enable) + *libesp_hw_support.a:rtc_init.*(.literal.rtc_init .text .text.rtc_init) + *libesp_hw_support.a:rtc_sleep.*(.literal.rtc_deep_sleep_start .literal.rtc_sleep_get_default_config .literal.rtc_sleep_init .literal.rtc_sleep_low_init .text .text.rtc_deep_sleep_start .text.rtc_sleep_get_default_config .text.rtc_sleep_init .text.rtc_sleep_low_init) + *libesp_ringbuf.a:ringbuf.*(.literal.prvGetFreeSize .literal.prvInitializeNewRingbuffer .literal.prvReceiveGeneric .literal.prvSendAcquireGeneric .literal.vRingbufferDelete .literal.vRingbufferDeleteWithCaps .literal.vRingbufferGetInfo .literal.vRingbufferReset .literal.vRingbufferReturnItem .literal.xRingbufferAddToQueueSetRead .literal.xRingbufferCreate .literal.xRingbufferCreateNoSplit .literal.xRingbufferCreateStatic .literal.xRingbufferCreateWithCaps .literal.xRingbufferGetCurFreeSize .literal.xRingbufferGetMaxItemSize .literal.xRingbufferGetStaticBuffer .literal.xRingbufferPrintInfo .literal.xRingbufferReceive .literal.xRingbufferReceiveSplit .literal.xRingbufferReceiveUpTo .literal.xRingbufferRemoveFromQueueSetRead .literal.xRingbufferSend .literal.xRingbufferSendAcquire .literal.xRingbufferSendComplete .text .text.prvGetCurMaxSizeAllowSplit .text.prvGetCurMaxSizeByteBuf .text.prvGetCurMaxSizeNoSplit .text.prvGetFreeSize .text.prvInitializeNewRingbuffer .text.prvReceiveGeneric .text.prvSendAcquireGeneric .text.vRingbufferDelete .text.vRingbufferDeleteWithCaps .text.vRingbufferGetInfo .text.vRingbufferReset .text.vRingbufferReturnItem .text.xRingbufferAddToQueueSetRead .text.xRingbufferCreate .text.xRingbufferCreateNoSplit .text.xRingbufferCreateStatic .text.xRingbufferCreateWithCaps .text.xRingbufferGetCurFreeSize .text.xRingbufferGetMaxItemSize .text.xRingbufferGetStaticBuffer .text.xRingbufferPrintInfo .text.xRingbufferReceive .text.xRingbufferReceiveSplit .text.xRingbufferReceiveUpTo .text.xRingbufferRemoveFromQueueSetRead .text.xRingbufferSend .text.xRingbufferSendAcquire .text.xRingbufferSendComplete) + *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) + *libesp_system.a:freertos_hooks.*(.literal.esp_deregister_freertos_idle_hook .literal.esp_deregister_freertos_idle_hook_for_cpu .literal.esp_deregister_freertos_tick_hook .literal.esp_deregister_freertos_tick_hook_for_cpu .literal.esp_register_freertos_idle_hook .literal.esp_register_freertos_idle_hook_for_cpu .literal.esp_register_freertos_tick_hook .literal.esp_register_freertos_tick_hook_for_cpu .literal.esp_vApplicationIdleHook .text .text.esp_deregister_freertos_idle_hook .text.esp_deregister_freertos_idle_hook_for_cpu .text.esp_deregister_freertos_tick_hook .text.esp_deregister_freertos_tick_hook_for_cpu .text.esp_register_freertos_idle_hook .text.esp_register_freertos_idle_hook_for_cpu .text.esp_register_freertos_tick_hook .text.esp_register_freertos_tick_hook_for_cpu .text.esp_vApplicationIdleHook) + *libesp_system.a:panic.*(.literal.disable_all_wdts .literal.esp_panic_handler .literal.esp_panic_handler_disable_timg_wdts .literal.esp_panic_handler_enable_rtc_wdt .literal.esp_panic_handler_feed_wdts .literal.esp_panic_handler_increment_entry_count .literal.panic_print_char .literal.panic_print_char_uart .literal.panic_print_dec .literal.panic_print_hex .literal.panic_print_str .literal.print_abort_details .text .text.disable_all_wdts .text.esp_panic_handler .text.esp_panic_handler_disable_timg_wdts .text.esp_panic_handler_enable_rtc_wdt .text.esp_panic_handler_feed_wdts .text.esp_panic_handler_increment_entry_count .text.esp_reset_reason_get_hint .text.esp_reset_reason_set_hint .text.panic_print_char .text.panic_print_char_uart .text.panic_print_dec .text.panic_print_hex .text.panic_print_str .text.print_abort_details) + *libesp_system.a:reset_reason.*(.literal.esp_reset_reason .literal.esp_reset_reason_clear_hint .literal.esp_reset_reason_get_hint .literal.esp_reset_reason_init .text .text.esp_reset_reason .text.esp_reset_reason_clear_hint .text.esp_reset_reason_get_hint .text.esp_reset_reason_init .text.get_reset_reason) + *libesp_system.a:system_internal.*(.text) + *libesp_system.a:system_time.*(.text) + *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_delete_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_flexible_period_get_wrapper .text.coex_schm_flexible_period_set_wrapper .text.coex_schm_get_phase_by_idx_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_delete_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) + *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) + *libfreertos.a:event_groups.*(.literal.vEventGroupClearBitsCallback .literal.vEventGroupDelete .literal.vEventGroupSetBitsCallback .literal.xEventGroupClearBits .literal.xEventGroupCreate .literal.xEventGroupCreateStatic .literal.xEventGroupGetStaticBuffer .literal.xEventGroupSetBits .literal.xEventGroupSync .literal.xEventGroupWaitBits .text .text.prvTestWaitCondition .text.vEventGroupClearBitsCallback .text.vEventGroupDelete .text.vEventGroupSetBitsCallback .text.xEventGroupClearBits .text.xEventGroupCreate .text.xEventGroupCreateStatic .text.xEventGroupGetStaticBuffer .text.xEventGroupSetBits .text.xEventGroupSync .text.xEventGroupWaitBits) + *libfreertos.a:list.*(.text .text.vListInitialise .text.vListInitialiseItem .text.vListInsert) + *libfreertos.a:port.*(.literal.pxPortInitialiseStack .literal.vApplicationStackOverflowHook .literal.vPortCleanUpCoprocArea .literal.vPortEndScheduler .literal.vPortExitCriticalCompliance .literal.vPortTCBPreDeleteHook .literal.vPortTLSPointersDelCb .literal.vPortTaskWrapper .literal.xPortEnterCriticalTimeoutCompliance .text .text.pxPortInitialiseStack .text.vApplicationStackOverflowHook .text.vPortCleanUpCoprocArea .text.vPortEndScheduler .text.vPortExitCriticalCompliance .text.vPortTCBPreDeleteHook .text.vPortTLSPointersDelCb .text.vPortTaskWrapper .text.xPortEnterCriticalTimeoutCompliance .text.xPortGetTickRateHz) + *libfreertos.a:queue.*(.literal.prvInitialiseMutex .literal.prvInitialiseNewQueue .literal.uxQueueMessagesWaiting .literal.uxQueueSpacesAvailable .literal.vQueueDelete .literal.vQueueWaitForMessageRestricted .literal.xQueueAddToSet .literal.xQueueCreateCountingSemaphore .literal.xQueueCreateCountingSemaphoreStatic .literal.xQueueCreateMutex .literal.xQueueCreateMutexStatic .literal.xQueueCreateSet .literal.xQueueGenericCreate .literal.xQueueGenericCreateStatic .literal.xQueueGenericGetStaticBuffers .literal.xQueueGenericReset .literal.xQueueGenericSend .literal.xQueueGetMutexHolder .literal.xQueueGiveMutexRecursive .literal.xQueuePeek .literal.xQueueReceive .literal.xQueueRemoveFromSet .literal.xQueueSelectFromSet .literal.xQueueSemaphoreTake .literal.xQueueTakeMutexRecursive .text .text.prvGetDisinheritPriorityAfterTimeout .text.prvInitialiseMutex .text.prvInitialiseNewQueue .text.uxQueueMessagesWaiting .text.uxQueueSpacesAvailable .text.vQueueDelete .text.vQueueWaitForMessageRestricted .text.xQueueAddToSet .text.xQueueCreateCountingSemaphore .text.xQueueCreateCountingSemaphoreStatic .text.xQueueCreateMutex .text.xQueueCreateMutexStatic .text.xQueueCreateSet .text.xQueueGenericCreate .text.xQueueGenericCreateStatic .text.xQueueGenericGetStaticBuffers .text.xQueueGenericReset .text.xQueueGenericSend .text.xQueueGetMutexHolder .text.xQueueGiveMutexRecursive .text.xQueuePeek .text.xQueueReceive .text.xQueueRemoveFromSet .text.xQueueSelectFromSet .text.xQueueSemaphoreTake .text.xQueueTakeMutexRecursive) + *libfreertos.a:stream_buffer.*(.literal.prvInitialiseNewStreamBuffer .literal.prvReadBytesFromBuffer .literal.prvWriteBytesToBuffer .literal.vStreamBufferDelete .literal.xStreamBufferBytesAvailable .literal.xStreamBufferGenericCreate .literal.xStreamBufferGenericCreateStatic .literal.xStreamBufferGetStaticBuffers .literal.xStreamBufferIsEmpty .literal.xStreamBufferIsFull .literal.xStreamBufferNextMessageLengthBytes .literal.xStreamBufferReceive .literal.xStreamBufferReset .literal.xStreamBufferSend .literal.xStreamBufferSetTriggerLevel .literal.xStreamBufferSpacesAvailable .text .text.prvInitialiseNewStreamBuffer .text.prvReadBytesFromBuffer .text.prvWriteBytesToBuffer .text.vStreamBufferDelete .text.xStreamBufferBytesAvailable .text.xStreamBufferGenericCreate .text.xStreamBufferGenericCreateStatic .text.xStreamBufferGetStaticBuffers .text.xStreamBufferIsEmpty .text.xStreamBufferIsFull .text.xStreamBufferNextMessageLengthBytes .text.xStreamBufferReceive .text.xStreamBufferReset .text.xStreamBufferSend .text.xStreamBufferSetTriggerLevel .text.xStreamBufferSpacesAvailable) + *libfreertos.a:tasks.*(.literal.eTaskGetState .literal.pcTaskGetName .literal.prvAddCurrentTaskToDelayedList .literal.prvAddNewTaskToReadyList .literal.prvCheckTasksWaitingTermination .literal.prvCreateIdleTasks .literal.prvDeleteTCB .literal.prvIdleTask .literal.prvInitialiseNewTask .literal.prvInitialiseTaskLists .literal.prvReleaseKernelLock .literal.prvTakeKernelLock .literal.prvTaskPriorityRaise .literal.prvTaskPriorityRestore .literal.pvTaskGetCurrentTCBForCore .literal.pvTaskGetThreadLocalStoragePointer .literal.pvTaskIncrementMutexHeldCount .literal.pxGetTaskListByIndex .literal.pxTaskGetStackStart .literal.ulTaskGenericNotifyTake .literal.ulTaskGenericNotifyValueClear .literal.uxTaskGetNumberOfTasks .literal.uxTaskGetSnapshotAll .literal.uxTaskGetStackHighWaterMark .literal.uxTaskGetStackHighWaterMark2 .literal.uxTaskPriorityGet .literal.uxTaskResetEventItemValue .literal.vTaskDelay .literal.vTaskDelete .literal.vTaskEndScheduler .literal.vTaskInternalSetTimeOutState .literal.vTaskMissedYield .literal.vTaskPlaceOnEventList .literal.vTaskPlaceOnEventListRestricted .literal.vTaskPlaceOnUnorderedEventList .literal.vTaskPriorityDisinheritAfterTimeout .literal.vTaskPrioritySet .literal.vTaskRemoveFromUnorderedEventList .literal.vTaskResume .literal.vTaskSetThreadLocalStoragePointer .literal.vTaskSetThreadLocalStoragePointerAndDelCallback .literal.vTaskSetTimeOutState .literal.vTaskStartScheduler .literal.vTaskSuspend .literal.vTaskSuspendAll .literal.xTaskAbortDelay .literal.xTaskCatchUpTicks .literal.xTaskCheckForTimeOut .literal.xTaskCreatePinnedToCore .literal.xTaskCreateStaticPinnedToCore .literal.xTaskDelayUntil .literal.xTaskGenericNotify .literal.xTaskGenericNotifyStateClear .literal.xTaskGenericNotifyWait .literal.xTaskGetCoreID .literal.xTaskGetCurrentTaskHandle .literal.xTaskGetCurrentTaskHandleForCore .literal.xTaskGetHandle .literal.xTaskGetIdleTaskHandle .literal.xTaskGetIdleTaskHandleForCore .literal.xTaskGetNext .literal.xTaskGetStackStart .literal.xTaskGetStaticBuffers .literal.xTaskPriorityDisinherit .literal.xTaskPriorityInherit .literal.xTaskResumeAll .text .text.eTaskGetState .text.pcTaskGetName .text.prvAddCurrentTaskToDelayedList .text.prvAddNewTaskToReadyList .text.prvCheckTasksWaitingTermination .text.prvCreateIdleTasks .text.prvDeleteTCB .text.prvIdleTask .text.prvInitialiseNewTask .text.prvInitialiseTaskLists .text.prvReleaseKernelLock .text.prvSearchForNameWithinSingleList .text.prvTakeKernelLock .text.prvTaskCheckFreeStackSpace .text.prvTaskPriorityRaise .text.prvTaskPriorityRestore .text.pvTaskGetCurrentTCBForCore .text.pvTaskGetThreadLocalStoragePointer .text.pvTaskIncrementMutexHeldCount .text.pxGetTaskListByIndex .text.pxTaskGetStackStart .text.ulTaskGenericNotifyTake .text.ulTaskGenericNotifyValueClear .text.uxTaskGetNumberOfTasks .text.uxTaskGetSnapshotAll .text.uxTaskGetStackHighWaterMark .text.uxTaskGetStackHighWaterMark2 .text.uxTaskPriorityGet .text.uxTaskResetEventItemValue .text.vTaskDelay .text.vTaskDelete .text.vTaskEndScheduler .text.vTaskInternalSetTimeOutState .text.vTaskMissedYield .text.vTaskPlaceOnEventList .text.vTaskPlaceOnEventListRestricted .text.vTaskPlaceOnUnorderedEventList .text.vTaskPriorityDisinheritAfterTimeout .text.vTaskPrioritySet .text.vTaskRemoveFromUnorderedEventList .text.vTaskResume .text.vTaskSetThreadLocalStoragePointer .text.vTaskSetThreadLocalStoragePointerAndDelCallback .text.vTaskSetTimeOutState .text.vTaskStartScheduler .text.vTaskSuspend .text.vTaskSuspendAll .text.xTaskAbortDelay .text.xTaskCatchUpTicks .text.xTaskCheckForTimeOut .text.xTaskCreatePinnedToCore .text.xTaskCreateStaticPinnedToCore .text.xTaskDelayUntil .text.xTaskGenericNotify .text.xTaskGenericNotifyStateClear .text.xTaskGenericNotifyWait .text.xTaskGetCoreID .text.xTaskGetCurrentTaskHandle .text.xTaskGetCurrentTaskHandleForCore .text.xTaskGetHandle .text.xTaskGetIdleTaskHandle .text.xTaskGetIdleTaskHandleForCore .text.xTaskGetNext .text.xTaskGetStackStart .text.xTaskGetStaticBuffers .text.xTaskPriorityDisinherit .text.xTaskPriorityInherit .text.xTaskResumeAll .text.xTimerCreateTimerTask) + *libfreertos.a:timers.*(.literal.pcTimerGetName .literal.prvCheckForValidListAndQueue .literal.prvGetNextExpireTime .literal.prvInitialiseNewTimer .literal.prvInsertTimerInActiveList .literal.prvProcessExpiredTimer .literal.prvProcessReceivedCommands .literal.prvProcessTimerOrBlockTask .literal.prvReloadTimer .literal.prvSampleTimeNow .literal.prvSwitchTimerLists .literal.prvTimerTask .literal.pvTimerGetTimerID .literal.uxTimerGetReloadMode .literal.vTimerSetReloadMode .literal.vTimerSetTimerID .literal.xTimerCreate .literal.xTimerCreateStatic .literal.xTimerCreateTimerTask .literal.xTimerGetExpiryTime .literal.xTimerGetPeriod .literal.xTimerGetReloadMode .literal.xTimerGetStaticBuffer .literal.xTimerGetTimerDaemonTaskHandle .literal.xTimerIsTimerActive .literal.xTimerPendFunctionCall .text .text.pcTimerGetName .text.prvCheckForValidListAndQueue .text.prvGetNextExpireTime .text.prvInitialiseNewTimer .text.prvInsertTimerInActiveList .text.prvProcessExpiredTimer .text.prvProcessReceivedCommands .text.prvProcessTimerOrBlockTask .text.prvReloadTimer .text.prvSampleTimeNow .text.prvSwitchTimerLists .text.prvTimerTask .text.pvTimerGetTimerID .text.uxTimerGetReloadMode .text.vTimerSetReloadMode .text.vTimerSetTimerID .text.xTimerCreate .text.xTimerCreateStatic .text.xTimerCreateTimerTask .text.xTimerGetExpiryTime .text.xTimerGetPeriod .text.xTimerGetReloadMode .text.xTimerGetStaticBuffer .text.xTimerGetTimerDaemonTaskHandle .text.xTimerIsTimerActive .text.xTimerPendFunctionCall) + *libheap.a:multi_heap.*(.literal.multi_heap_check .literal.multi_heap_dump .literal.multi_heap_dump_tlsf .literal.multi_heap_find_containing_block_impl .literal.multi_heap_get_info_impl .literal.multi_heap_register_impl .literal.multi_heap_reset_minimum_free_bytes .literal.multi_heap_restore_minimum_free_bytes .literal.multi_heap_walk .text .text.multi_heap_check .text.multi_heap_dump .text.multi_heap_dump_tlsf .text.multi_heap_find_containing_block_impl .text.multi_heap_free_size_impl .text.multi_heap_get_info_impl .text.multi_heap_get_info_tlsf .text.multi_heap_minimum_free_size_impl .text.multi_heap_register_impl .text.multi_heap_reset_minimum_free_bytes .text.multi_heap_restore_minimum_free_bytes .text.multi_heap_walk) + *libheap.a:tlsf.*(.literal.control_construct .literal.default_walker .literal.integrity_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_malloc_addr .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_find_containing_block .text.tlsf_fit_size .text.tlsf_malloc_addr .text.tlsf_pool_overhead .text.tlsf_remove_pool .text.tlsf_walk_pool) + *liblog.a:log_timestamp.*(.text) + *liblog.a:log_write.*(.literal.esp_log_set_vprintf .text .text.esp_log_set_vprintf) + *liblog.a:tag_log_level.*(.literal.esp_log_level_get .literal.esp_log_level_set .literal.log_level_get .literal.log_level_set .text .text.esp_log_level_get .text.esp_log_level_set .text.log_level_get .text.log_level_set) + *libphy.a:(.phyiram .phyiram.*) + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_app_disable_protect .literal.esp_flash_get_protectable_regions .literal.esp_flash_read_chip_id .literal.esp_flash_read_id .literal.esp_flash_read_unique_chip_id .literal.esp_flash_suspend_cmd_init .literal.find_region .text .text.esp_flash_app_disable_protect .text.esp_flash_get_protectable_regions .text.esp_flash_read_chip_id .text.esp_flash_read_id .text.esp_flash_read_unique_chip_id .text.esp_flash_suspend_cmd_init .text.find_region) + *libspi_flash.a:spi_flash_os_func_app.*(.literal.esp_flash_app_enable_os_functions .literal.esp_flash_deinit_os_functions .literal.esp_flash_init_os_functions .text .text.esp_flash_app_enable_os_functions .text.esp_flash_deinit_os_functions .text.esp_flash_init_main_bus_lock .text.esp_flash_init_os_functions .text.esp_flash_set_dangerous_write_protection .text.use_bus_lock) + *libspi_flash.a:spi_flash_os_func_noos.*(.text) + *libxtensa.a:xt_trax.*(.literal .literal.* .text .text.*) + *libxtensa.a:xtensa_intr.*(.literal .literal.* .text .text.*) + *(.stub) + *(.gnu.warning) + *(.gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*) + *(.irom0.text) /* catch stray ICACHE_RODATA_ATTR */ + /** + * CPU will try to prefetch up to 16 bytes of of instructions. + * This means that any configuration (e.g. MMU, PMS) must allow + * safe access to up to 16 bytes after the last real instruction, + * add dummy bytes to ensure this. + */ + . += 16; + _text_end = ABSOLUTE(.); + /** + * Mark the flash.text end. + * This can be used for MMU driver to maintain virtual address. + */ + _instruction_reserved_end = ABSOLUTE(.); + _etext = .; + /** + * Similar to _iram_start, this symbol goes here so it is + * resolved by addr2line in preference to the first symbol in + * the flash.text segment. + */ + _flash_cache_start = ABSOLUTE(0); + } > default_code_seg + /* Marks the end of IRAM code segment */ + .iram0.text_end (NOLOAD) : + { + + . = ALIGN(4); + _iram_text_end = ABSOLUTE(.); + } > iram0_0_seg + .iram0.data : + { + + . = ALIGN(4); + _iram_data_start = ABSOLUTE(.); + *(.iram.data .iram.data.*) + _iram_data_end = ABSOLUTE(.); + } > iram0_0_seg + .iram0.bss (NOLOAD) : + { + + . = ALIGN(4); + _iram_bss_start = ABSOLUTE(.); + *(.iram.bss .iram.bss.*) + _iram_bss_end = ABSOLUTE(.); + + . = ALIGN(4); + _iram_end = ABSOLUTE(.); + } > iram0_0_seg + /* Marks the end of data, bss and possibly rodata */ + .dram0.heap_start (NOLOAD) : + { + /* Lowest possible start address for the heap */ + + . = ALIGN(8); + _heap_low_start = ABSOLUTE(.); + } > dram0_0_seg + /** + * This section is not included in the binary image; it is only present in the ELF file. + * It is used to keep certain symbols in the ELF file. + */ + .noload 0 (INFO) : + { + /* Reserve first 4 bytes as zero for vars pointed to NULL */ + . = 0; + LONG(0); + _noload_keep_in_elf_start = ABSOLUTE(.); + KEEP(*(.noload_keep_in_elf .noload_keep_in_elf.*)) + _noload_keep_in_elf_end = ABSOLUTE(.); + } + /* DWARF 1 */ + .debug 0 : { *(.debug) } + .line 0 : { *(.line) } + /* GNU DWARF 1 extensions */ + .debug_srcinfo 0 : { *(.debug_srcinfo) } + .debug_sfnames 0 : { *(.debug_sfnames) } + /* DWARF 1.1 and DWARF 2 */ + .debug_aranges 0 : { *(.debug_aranges) } + .debug_pubnames 0 : { *(.debug_pubnames) } + /* DWARF 2 */ + .debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) } + .debug_abbrev 0 : { *(.debug_abbrev) } + .debug_line 0 : { *(.debug_line) } + .debug_frame 0 : { *(.debug_frame) } + .debug_str 0 : { *(.debug_str) } + .debug_loc 0 : { *(.debug_loc) } + .debug_macinfo 0 : { *(.debug_macinfo) } + .debug_pubtypes 0 : { *(.debug_pubtypes) } + /* DWARF 3 */ + .debug_ranges 0 : { *(.debug_ranges) } + /* SGI/MIPS DWARF 2 extensions */ + .debug_weaknames 0 : { *(.debug_weaknames) } + .debug_funcnames 0 : { *(.debug_funcnames) } + .debug_typenames 0 : { *(.debug_typenames) } + .debug_varnames 0 : { *(.debug_varnames) } + /* GNU DWARF 2 extensions */ + .debug_gnu_pubnames 0 : { *(.debug_gnu_pubnames) } + .debug_gnu_pubtypes 0 : { *(.debug_gnu_pubtypes) } + /* DWARF 4 */ + .debug_types 0 : { *(.debug_types) } + /* DWARF 5 */ + .debug_addr 0 : { *(.debug_addr) } + .debug_line_str 0 : { *(.debug_line_str) } + .debug_loclists 0 : { *(.debug_loclists) } + .debug_macro 0 : { *(.debug_macro) } + .debug_names 0 : { *(.debug_names) } + .debug_rnglists 0 : { *(.debug_rnglists) } + .debug_str_offsets 0 : { *(.debug_str_offsets) } + .comment 0 : { *(.comment) } + .note.GNU-stack 0: { *(.note.GNU-stack) } +/** + * .xt.prop and .xt.lit sections will be used by the debugger and disassembler + * to get more information about raw data present in the code. + * Indeed, it may be required to add some padding at some points in the code + * in order to align a branch/jump destination on a particular bound. + * Padding these instructions will generate null bytes that shall be + * interpreted as data, and not code by the debugger or disassembler. + * This section will only be present in the ELF file, not in the final binary + * For more details, check GCC-212 + */ + .xtensa.info 0: { *(.xtensa.info) } + .xt.prop 0 : { *(.xt.prop .xt.prop.* .gnu.linkonce.prop.*) } + .xt.lit 0 : { *(.xt.lit .xt.lit.* .gnu.linkonce.p.*) } + /DISCARD/ : + { + *(.fini) + *(.eh_frame_hdr) + *(.eh_frame) + } +} +ASSERT(((_iram_end - ORIGIN(iram0_0_seg)) <= LENGTH(iram0_0_seg)), + "IRAM0 segment data does not fit.") +ASSERT(((_heap_low_start - ORIGIN(dram0_0_seg)) <= LENGTH(dram0_0_seg)), + "DRAM segment data does not fit.") diff --git a/build/esp-idf/esp_system/ld/sections.ld.in b/build/esp-idf/esp_system/ld/sections.ld.in new file mode 100644 index 0000000..81ee78c --- /dev/null +++ b/build/esp-idf/esp_system/ld/sections.ld.in @@ -0,0 +1,553 @@ +/* + * SPDX-FileCopyrightText: 2021 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ +/* + * SPDX-FileCopyrightText: 2021-2024 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ +/* + + * Automatically generated file. DO NOT EDIT. + + * Espressif IoT Development Framework (ESP-IDF) 6.0.0 Configuration Header + + */ + +/* List of deprecated options */ +/* CPU instruction prefetch padding size for flash mmap scenario */ +/* Copy from esp_secure_boot.h */ +/* + * PMP region granularity size + * Software may determine the PMP granularity by writing zero to pmp0cfg, then writing all ones + * to pmpaddr0, then reading back pmpaddr0. If G is the index of the least-significant bit set, + * the PMP granularity is 2^G+2 bytes. + */ +/* CPU instruction prefetch padding size for memory protection scenario */ +/* Memory alignment size for PMS */ + /* rtc timer data (s_rtc_timer_retain_mem, see esp_clk.c files). For rtc_timer_data_in_rtc_mem section. */ +/* Default entry point */ +ENTRY(call_start_cpu0); +SECTIONS +{ + /** + * RTC fast memory holds RTC wake stub code, + * including from any source file named rtc_wake_stub*.c + */ + .rtc.text : + { + + . = ALIGN(4); + _rtc_text_start = ABSOLUTE(.); + mapping[rtc_text] + *rtc_wake_stub*.*(.literal .text .literal.* .text.*) + _rtc_text_end = ABSOLUTE(.); + } > rtc_iram_seg + /** + * This section is required to skip rtc.text area because rtc_iram_seg and + * rtc_data_seg are reflect the same address space on different buses. + */ + .rtc.dummy : + { + _rtc_dummy_start = ABSOLUTE(.); + _rtc_fast_start = ABSOLUTE(.); + . = SIZEOF(.rtc.text); + _rtc_dummy_end = ABSOLUTE(.); + } > rtc_data_seg + /** + * This section located in RTC FAST Memory area. + * It holds data marked with RTC_FAST_ATTR attribute. + * See the file "esp_attr.h" for more information. + */ + .rtc.force_fast : + { + + . = ALIGN(4); + _rtc_force_fast_start = ABSOLUTE(.); + mapping[rtc_force_fast] + *(.rtc.force_fast .rtc.force_fast.*) + + . = ALIGN(4); + _rtc_force_fast_end = ABSOLUTE(.); + } > rtc_data_seg + /** + * RTC data section holds RTC wake stub + * data/rodata, including from any source file + * named rtc_wake_stub*.c and the data marked with + * RTC_DATA_ATTR, RTC_RODATA_ATTR attributes. + * The memory location of the data is dependent on + * CONFIG_ESP32_RTCDATA_IN_FAST_MEM option. + */ + .rtc.data : + { + _rtc_data_start = ABSOLUTE(.); + mapping[rtc_data] + *rtc_wake_stub*.*(.data .rodata .data.* .rodata.*) + _rtc_data_end = ABSOLUTE(.); + } > rtc_data_location + /* RTC bss, from any source file named rtc_wake_stub*.c */ + .rtc.bss (NOLOAD) : + { + _rtc_bss_start = ABSOLUTE(.); + *rtc_wake_stub*.*(.bss .bss.*) + *rtc_wake_stub*.*(COMMON) + mapping[rtc_bss] + _rtc_bss_end = ABSOLUTE(.); + } > rtc_data_location + /** + * This section holds data that should not be initialized at power up + * and will be retained during deep sleep. + * User data marked with RTC_NOINIT_ATTR will be placed + * into this section. See the file "esp_attr.h" for more information. + * The memory location of the data is dependent on + * CONFIG_ESP32_RTCDATA_IN_FAST_MEM option. + */ + .rtc_noinit (NOLOAD): + { + + . = ALIGN(4); + _rtc_noinit_start = ABSOLUTE(.); + *(.rtc_noinit .rtc_noinit.*) + + . = ALIGN(4); + _rtc_noinit_end = ABSOLUTE(.); + } > rtc_data_location + /** + * This section located in RTC SLOW Memory area. + * It holds data marked with RTC_SLOW_ATTR attribute. + * See the file "esp_attr.h" for more information. + */ + .rtc.force_slow : + { + + . = ALIGN(4); + _rtc_force_slow_start = ABSOLUTE(.); + *(.rtc.force_slow .rtc.force_slow.*) + + . = ALIGN(4); + _rtc_force_slow_end = ABSOLUTE(.); + } > rtc_slow_seg + /** + * This section holds RTC FAST data that should have fixed addresses. + * The data are not initialized at power-up and are retained during deep + * sleep. + */ + .rtc_fast_reserved (NOLOAD): + { + + . = ALIGN(4); + _rtc_fast_reserved_start = ABSOLUTE(.); + /** + * New data can only be added here to ensure existing data are not moved. + * Because data have adhered to the end of the segment and code is relied + * on it. + * >> put new data here << + */ + KEEP(*(.bootloader_data_rtc_mem .bootloader_data_rtc_mem.*)) + _rtc_fast_reserved_end = ABSOLUTE(.); + } > rtc_fast_reserved_seg + _rtc_fast_reserved_length = _rtc_fast_reserved_end - _rtc_fast_reserved_start; + ASSERT((_rtc_fast_reserved_length <= LENGTH(rtc_fast_reserved_seg)), + "RTC FAST reserved segment data does not fit.") + /** + * This section holds RTC SLOW data that should have fixed addresses. + * The data are not initialized at power-up and are retained during deep + * sleep. + */ + .rtc_slow_reserved (NOLOAD): + { + + . = ALIGN(4); + _rtc_slow_reserved_start = ABSOLUTE(.); + /** + * New data can only be added here to ensure existing data are not moved. + * Because data have adhered to the end of the segment and code is relied + * on it. + * >> put new data here << + */ + *(.rtc_timer_data_in_rtc_mem .rtc_timer_data_in_rtc_mem.*) + _rtc_slow_reserved_end = ABSOLUTE(.); + } > rtc_slow_reserved_seg + _rtc_slow_reserved_length = _rtc_slow_reserved_end - _rtc_slow_reserved_start; + _rtc_reserved_length = _rtc_slow_reserved_length; + ASSERT((_rtc_slow_reserved_length <= LENGTH(rtc_slow_reserved_seg)), + "RTC SLOW reserved segment data does not fit.") + /* Get size of rtc slow data based on rtc_data_location alias */ + _rtc_slow_length = (ORIGIN(rtc_slow_seg) == ORIGIN(rtc_data_location)) + ? (_rtc_force_slow_end - _rtc_data_start) + : (_rtc_force_slow_end - _rtc_force_slow_start); + _rtc_fast_length = (ORIGIN(rtc_slow_seg) == ORIGIN(rtc_data_location)) + ? (_rtc_force_fast_end - _rtc_fast_start) + : (_rtc_noinit_end - _rtc_fast_start); + ASSERT((_rtc_slow_length <= LENGTH(rtc_slow_seg)), + "RTC_SLOW segment data does not fit.") + ASSERT((_rtc_fast_length <= LENGTH(rtc_data_seg)), + "RTC_FAST segment data does not fit.") + /* Send .iram0 code to iram */ + .iram0.vectors : + { + _iram_start = ABSOLUTE(.); + /* Vectors go to IRAM */ + _vector_table = ABSOLUTE(.); + . = 0x0; + KEEP(*(.WindowVectors.text)); + . = 0x180; + KEEP(*(.Level2InterruptVector.text)); + . = 0x1c0; + KEEP(*(.Level3InterruptVector.text)); + . = 0x200; + KEEP(*(.Level4InterruptVector.text)); + . = 0x240; + KEEP(*(.Level5InterruptVector.text)); + . = 0x280; + KEEP(*(.DebugExceptionVector.text)); + . = 0x2c0; + KEEP(*(.NMIExceptionVector.text)); + . = 0x300; + KEEP(*(.KernelExceptionVector.text)); + . = 0x340; + KEEP(*(.UserExceptionVector.text)); + . = 0x3C0; + KEEP(*(.DoubleExceptionVector.text)); + . = 0x400; + KEEP(*(._invalid_pc_placeholder.text)); + *(.*Vector.literal) + } > iram0_0_seg + .iram0.text : + { + /* Code marked as running out of IRAM */ + _iram_text_start = ABSOLUTE(.); + mapping[iram0_text] + } > iram0_0_seg + .dram0.data : + { + _data_start = ABSOLUTE(.); + *(.gnu.linkonce.d.*) + *(.data1) + *(.sdata) + *(.sdata.*) + *(.gnu.linkonce.s.*) + *(.gnu.linkonce.s2.*) + *(.jcr) + mapping[dram0_data] + _data_end = ABSOLUTE(.); + } > dram0_0_seg + /** + * This section holds data that won't be initialised when startup. + * This section locates in External RAM region. + */ + .ext_ram_noinit (NOLOAD) : + { + _ext_ram_noinit_start = ABSOLUTE(.); + *(.ext_ram_noinit*) + + . = ALIGN(4); + _ext_ram_noinit_end = ABSOLUTE(.); + } > extern_ram_seg + /** + * This section holds data that should not be initialized at power up. + * The section located in Internal SRAM memory region. The macro _NOINIT + * can be used as attribute to place data into this section. + * See the "esp_attr.h" file for more information. + */ + .noinit (NOLOAD): + { + + . = ALIGN(4); + _noinit_start = ABSOLUTE(.); + *(.noinit .noinit.*) + + . = ALIGN(4); + _noinit_end = ABSOLUTE(.); + } > dram0_0_seg + /* External Memory BSS. (Variables with EXT_RAM_BSS_ATTR attribute). */ + .ext_ram.bss (NOLOAD) : + { + + . = ALIGN(4); + _ext_ram_bss_start = ABSOLUTE(.); + mapping[extern_ram] + + . = ALIGN(4); + _ext_ram_bss_end = ABSOLUTE(.); + } > extern_ram_seg + /* Shared RAM */ + .dram0.bss (NOLOAD) : + { + + . = ALIGN(8); + _bss_start = ABSOLUTE(.); + /** + * ldgen places all bss-related data to mapping[dram0_bss] + * (See components/esp_system/app.lf). + */ + mapping[dram0_bss] + + . = ALIGN(8); + _bss_end = ABSOLUTE(.); + } > dram0_0_seg + ASSERT(((_bss_end - ORIGIN(dram0_0_seg)) <= LENGTH(dram0_0_seg)), + "DRAM segment data does not fit.") + .flash.appdesc : ALIGN(0x10) + { + /** + * Mark flash.rodata start. + * This can be used for mmu driver to maintain virtual address + */ + _rodata_reserved_start = ABSOLUTE(.); + _rodata_start = ABSOLUTE(.); + /* !DO NOT PUT ANYTHING BEFORE THIS! */ + /* Should be the first. App version info. */ + *(.rodata_desc .rodata_desc.*) + /* Should be the second. Custom app version info. */ + *(.rodata_custom_desc .rodata_custom_desc.*) + /** + * Create an empty gap within this section. Thanks to this, the end of this + * section will match .flah.rodata's begin address. Thus, both sections + * will be merged when creating the final bin image. + */ + . = ALIGN(ALIGNOF(.flash.rodata)); + } > default_rodata_seg + ASSERT((ADDR(.flash.rodata) == ADDR(.flash.appdesc) + SIZEOF(.flash.appdesc)), "The gap between .flash.appdesc and .flash.rodata must not exist to produce the final bin image.") + .flash.rodata : ALIGN(0x10) + { + _flash_rodata_start = ABSOLUTE(.); + mapping[flash_rodata] + *(.irom1.text) /* catch stray ICACHE_RODATA_ATTR */ + *(.gnu.linkonce.r.*) + *(.rodata1) + /* C++ exception handlers table. */ + + . = ALIGN(4); + __XT_EXCEPTION_TABLE_ = ABSOLUTE(.); + *(.xt_except_table) + *(.gcc_except_table .gcc_except_table.*) + *(.gnu.linkonce.e.*) + + . = ALIGN(4); + __XT_EXCEPTION_DESCS_ = ABSOLUTE(.); + *(.xt_except_desc) + *(.gnu.linkonce.h.*) + __XT_EXCEPTION_DESCS_END__ = ABSOLUTE(.); + *(.xt_except_desc_end) + /** + * C++ constructor tables. + * + * Excluding crtbegin.o/crtend.o since IDF doesn't use the toolchain crt. + */ + + . = ALIGN(4); + __preinit_array_start = ABSOLUTE(.); + + . = ALIGN(4); + __bothinit_array_start = ABSOLUTE(.); + KEEP (*(.preinit_array)) + __preinit_array_end = ABSOLUTE(.); + + . = ALIGN(4); + __init_array_start = ABSOLUTE(.); + KEEP (*(SORT_BY_INIT_PRIORITY(EXCLUDE_FILE (*crtend.* *crtbegin.*) .ctors.*))) + KEEP (*(EXCLUDE_FILE (*crtend.* *crtbegin.*) .ctors)) + __init_array_end = ABSOLUTE(.); + __bothinit_array_end = ABSOLUTE(.); + /* Addresses of memory regions reserved via SOC_RESERVE_MEMORY_REGION() */ + + . = ALIGN(4); + soc_reserved_memory_region_start = ABSOLUTE(.); + KEEP (*(.reserved_memory_address)) + soc_reserved_memory_region_end = ABSOLUTE(.); + /* System init functions registered via ESP_SYSTEM_INIT_FN */ + + . = ALIGN(4); + _esp_system_init_fn_array_start = ABSOLUTE(.); + KEEP (*(SORT_BY_INIT_PRIORITY(.esp_system_init_fn.*))) + _esp_system_init_fn_array_end = ABSOLUTE(.); + _rodata_end = ABSOLUTE(.); + /* Literals are also RO data. */ + _lit4_start = ABSOLUTE(.); + *(*.lit4) + *(.lit4.*) + *(.gnu.linkonce.lit4.*) + _lit4_end = ABSOLUTE(.); + /* TLS data. */ + + . = ALIGN(4); + _thread_local_start = ABSOLUTE(.); + _picolibc_reent_stub_start = ABSOLUTE(.); + KEEP(*(.tdata.errno)) + /* Reproduce the public fields from struct _reent. */ + KEEP(*(.tdata.tls_stdin)) + KEEP(*(.tdata.tls_stdout)) + KEEP(*(.tdata.tls_stderr)) + _picolibc_reent_stub_end = ABSOLUTE(.); + *(.tdata) + *(.tdata.*) + *(.tbss) + *(.tbss.*) + _thread_local_end = ABSOLUTE(.); + } > default_rodata_seg + ASSERT((_picolibc_reent_stub_end - _picolibc_reent_stub_start) == 16, "Newlib _reent stub have wrong size") + _flash_rodata_align = ALIGNOF(.flash.rodata); + /** + * This section contains all the rodata that is not used + * at runtime, helping to avoid an increase in binary size. + */ + .flash.rodata_noload (NOLOAD) : + { + /** + * This symbol marks the end of flash.rodata. It can be utilized by the MMU + * driver to maintain the virtual address. + * NOLOAD rodata may not be included in this section. + */ + _rodata_reserved_end = ABSOLUTE(.); + mapping[rodata_noload] + } > default_rodata_seg + .flash.text : + { + _stext = .; + /** + * Mark the start of flash.text. + * This can be used by the MMU driver to maintain the virtual address. + */ + _instruction_reserved_start = ABSOLUTE(.); + _text_start = ABSOLUTE(.); + mapping[flash_text] + *(.stub) + *(.gnu.warning) + *(.gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*) + *(.irom0.text) /* catch stray ICACHE_RODATA_ATTR */ + /** + * CPU will try to prefetch up to 16 bytes of of instructions. + * This means that any configuration (e.g. MMU, PMS) must allow + * safe access to up to 16 bytes after the last real instruction, + * add dummy bytes to ensure this. + */ + . += 16; + _text_end = ABSOLUTE(.); + /** + * Mark the flash.text end. + * This can be used for MMU driver to maintain virtual address. + */ + _instruction_reserved_end = ABSOLUTE(.); + _etext = .; + /** + * Similar to _iram_start, this symbol goes here so it is + * resolved by addr2line in preference to the first symbol in + * the flash.text segment. + */ + _flash_cache_start = ABSOLUTE(0); + } > default_code_seg + /* Marks the end of IRAM code segment */ + .iram0.text_end (NOLOAD) : + { + + . = ALIGN(4); + _iram_text_end = ABSOLUTE(.); + } > iram0_0_seg + .iram0.data : + { + + . = ALIGN(4); + _iram_data_start = ABSOLUTE(.); + mapping[iram0_data] + _iram_data_end = ABSOLUTE(.); + } > iram0_0_seg + .iram0.bss (NOLOAD) : + { + + . = ALIGN(4); + _iram_bss_start = ABSOLUTE(.); + mapping[iram0_bss] + _iram_bss_end = ABSOLUTE(.); + + . = ALIGN(4); + _iram_end = ABSOLUTE(.); + } > iram0_0_seg + /* Marks the end of data, bss and possibly rodata */ + .dram0.heap_start (NOLOAD) : + { + /* Lowest possible start address for the heap */ + + . = ALIGN(8); + _heap_low_start = ABSOLUTE(.); + } > dram0_0_seg + /** + * This section is not included in the binary image; it is only present in the ELF file. + * It is used to keep certain symbols in the ELF file. + */ + .noload 0 (INFO) : + { + /* Reserve first 4 bytes as zero for vars pointed to NULL */ + . = 0; + LONG(0); + _noload_keep_in_elf_start = ABSOLUTE(.); + KEEP(*(.noload_keep_in_elf .noload_keep_in_elf.*)) + mapping[noload_keep_in_elf] + _noload_keep_in_elf_end = ABSOLUTE(.); + } + /* DWARF 1 */ + .debug 0 : { *(.debug) } + .line 0 : { *(.line) } + /* GNU DWARF 1 extensions */ + .debug_srcinfo 0 : { *(.debug_srcinfo) } + .debug_sfnames 0 : { *(.debug_sfnames) } + /* DWARF 1.1 and DWARF 2 */ + .debug_aranges 0 : { *(.debug_aranges) } + .debug_pubnames 0 : { *(.debug_pubnames) } + /* DWARF 2 */ + .debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) } + .debug_abbrev 0 : { *(.debug_abbrev) } + .debug_line 0 : { *(.debug_line) } + .debug_frame 0 : { *(.debug_frame) } + .debug_str 0 : { *(.debug_str) } + .debug_loc 0 : { *(.debug_loc) } + .debug_macinfo 0 : { *(.debug_macinfo) } + .debug_pubtypes 0 : { *(.debug_pubtypes) } + /* DWARF 3 */ + .debug_ranges 0 : { *(.debug_ranges) } + /* SGI/MIPS DWARF 2 extensions */ + .debug_weaknames 0 : { *(.debug_weaknames) } + .debug_funcnames 0 : { *(.debug_funcnames) } + .debug_typenames 0 : { *(.debug_typenames) } + .debug_varnames 0 : { *(.debug_varnames) } + /* GNU DWARF 2 extensions */ + .debug_gnu_pubnames 0 : { *(.debug_gnu_pubnames) } + .debug_gnu_pubtypes 0 : { *(.debug_gnu_pubtypes) } + /* DWARF 4 */ + .debug_types 0 : { *(.debug_types) } + /* DWARF 5 */ + .debug_addr 0 : { *(.debug_addr) } + .debug_line_str 0 : { *(.debug_line_str) } + .debug_loclists 0 : { *(.debug_loclists) } + .debug_macro 0 : { *(.debug_macro) } + .debug_names 0 : { *(.debug_names) } + .debug_rnglists 0 : { *(.debug_rnglists) } + .debug_str_offsets 0 : { *(.debug_str_offsets) } + .comment 0 : { *(.comment) } + .note.GNU-stack 0: { *(.note.GNU-stack) } +/** + * .xt.prop and .xt.lit sections will be used by the debugger and disassembler + * to get more information about raw data present in the code. + * Indeed, it may be required to add some padding at some points in the code + * in order to align a branch/jump destination on a particular bound. + * Padding these instructions will generate null bytes that shall be + * interpreted as data, and not code by the debugger or disassembler. + * This section will only be present in the ELF file, not in the final binary + * For more details, check GCC-212 + */ + .xtensa.info 0: { *(.xtensa.info) } + .xt.prop 0 : { *(.xt.prop .xt.prop.* .gnu.linkonce.prop.*) } + .xt.lit 0 : { *(.xt.lit .xt.lit.* .gnu.linkonce.p.*) } + /DISCARD/ : + { + *(.fini) + *(.eh_frame_hdr) + *(.eh_frame) + } +} +ASSERT(((_iram_end - ORIGIN(iram0_0_seg)) <= LENGTH(iram0_0_seg)), + "IRAM0 segment data does not fit.") +ASSERT(((_heap_low_start - ORIGIN(dram0_0_seg)) <= LENGTH(dram0_0_seg)), + "DRAM segment data does not fit.") diff --git a/build/esp-idf/esp_system/libesp_system.a b/build/esp-idf/esp_system/libesp_system.a new file mode 100644 index 0000000..3b591a5 Binary files /dev/null and b/build/esp-idf/esp_system/libesp_system.a differ diff --git a/build/esp-idf/esp_system/port/cmake_install.cmake b/build/esp-idf/esp_system/port/cmake_install.cmake new file mode 100644 index 0000000..cb4d1a7 --- /dev/null +++ b/build/esp-idf/esp_system/port/cmake_install.cmake @@ -0,0 +1,50 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_system/port + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/port/soc/esp32/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/port/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_system/port/soc/esp32/cmake_install.cmake b/build/esp-idf/esp_system/port/soc/esp32/cmake_install.cmake new file mode 100644 index 0000000..052da72 --- /dev/null +++ b/build/esp-idf/esp_system/port/soc/esp32/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_system/port/soc/esp32 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/port/soc/esp32/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj b/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj new file mode 100644 index 0000000..942daad Binary files /dev/null and b/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj differ diff --git a/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj b/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj new file mode 100644 index 0000000..7fa9eba Binary files /dev/null and b/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj differ diff --git a/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_lac.c.obj b/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_lac.c.obj new file mode 100644 index 0000000..b7723a8 Binary files /dev/null and b/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_lac.c.obj differ diff --git a/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_init.c.obj b/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_init.c.obj new file mode 100644 index 0000000..c6dbfd9 Binary files /dev/null and b/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_init.c.obj differ diff --git a/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj b/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj new file mode 100644 index 0000000..c11867a Binary files /dev/null and b/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj differ diff --git a/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj b/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj new file mode 100644 index 0000000..da44b8e Binary files /dev/null and b/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj differ diff --git a/build/esp-idf/esp_timer/cmake_install.cmake b/build/esp-idf/esp_timer/cmake_install.cmake new file mode 100644 index 0000000..e8dc48f --- /dev/null +++ b/build/esp-idf/esp_timer/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_timer + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_timer/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_timer/libesp_timer.a b/build/esp-idf/esp_timer/libesp_timer.a new file mode 100644 index 0000000..2bd4cf4 Binary files /dev/null and b/build/esp-idf/esp_timer/libesp_timer.a differ diff --git a/build/esp-idf/esp_trace/cmake_install.cmake b/build/esp-idf/esp_trace/cmake_install.cmake new file mode 100644 index 0000000..32fe1d7 --- /dev/null +++ b/build/esp-idf/esp_trace/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_trace + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_trace/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_usb_cdc_rom_console/cmake_install.cmake b/build/esp-idf/esp_usb_cdc_rom_console/cmake_install.cmake new file mode 100644 index 0000000..4fa303b --- /dev/null +++ b/build/esp-idf/esp_usb_cdc_rom_console/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_usb_cdc_rom_console/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32/esp_adapter.c.obj b/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32/esp_adapter.c.obj new file mode 100644 index 0000000..2b7246f Binary files /dev/null and b/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32/esp_adapter.c.obj differ diff --git a/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/regulatory/esp_wifi_regulatory.c.obj b/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/regulatory/esp_wifi_regulatory.c.obj new file mode 100644 index 0000000..90b3362 Binary files /dev/null and b/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/regulatory/esp_wifi_regulatory.c.obj differ diff --git a/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/lib_printf.c.obj b/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/lib_printf.c.obj new file mode 100644 index 0000000..955c76e Binary files /dev/null and b/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/lib_printf.c.obj differ diff --git a/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj b/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj new file mode 100644 index 0000000..3469009 Binary files /dev/null and b/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj differ diff --git a/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj b/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj new file mode 100644 index 0000000..3fa1680 Binary files /dev/null and b/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj differ diff --git a/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj b/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj new file mode 100644 index 0000000..ed95b3d Binary files /dev/null and b/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj differ diff --git a/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj b/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj new file mode 100644 index 0000000..3eb8ed5 Binary files /dev/null and b/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj differ diff --git a/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default_ap.c.obj b/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default_ap.c.obj new file mode 100644 index 0000000..62039c0 Binary files /dev/null and b/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default_ap.c.obj differ diff --git a/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj b/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj new file mode 100644 index 0000000..bcead0e Binary files /dev/null and b/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj differ diff --git a/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj b/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj new file mode 100644 index 0000000..cc0d800 Binary files /dev/null and b/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj differ diff --git a/build/esp-idf/esp_wifi/cmake_install.cmake b/build/esp-idf/esp_wifi/cmake_install.cmake new file mode 100644 index 0000000..6a78e61 --- /dev/null +++ b/build/esp-idf/esp_wifi/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esp_wifi + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_wifi/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esp_wifi/libesp_wifi.a b/build/esp-idf/esp_wifi/libesp_wifi.a new file mode 100644 index 0000000..913aa64 Binary files /dev/null and b/build/esp-idf/esp_wifi/libesp_wifi.a differ diff --git a/build/esp-idf/espcoredump/cmake_install.cmake b/build/esp-idf/espcoredump/cmake_install.cmake new file mode 100644 index 0000000..e68cdb6 --- /dev/null +++ b/build/esp-idf/espcoredump/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/espcoredump + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/espcoredump/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/esptool_py/cmake_install.cmake b/build/esp-idf/esptool_py/cmake_install.cmake new file mode 100644 index 0000000..513b5d9 --- /dev/null +++ b/build/esp-idf/esptool_py/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/esptool_py + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esptool_py/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj b/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj new file mode 100644 index 0000000..7c3040c Binary files /dev/null and b/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj differ diff --git a/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj b/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj new file mode 100644 index 0000000..05dceb7 Binary files /dev/null and b/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj differ diff --git a/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj b/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj new file mode 100644 index 0000000..2065db1 Binary files /dev/null and b/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj differ diff --git a/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj b/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj new file mode 100644 index 0000000..c2e4de1 Binary files /dev/null and b/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj differ diff --git a/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj b/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj new file mode 100644 index 0000000..297db7d Binary files /dev/null and b/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj differ diff --git a/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj b/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj new file mode 100644 index 0000000..3b4a5ac Binary files /dev/null and b/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj differ diff --git a/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj b/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj new file mode 100644 index 0000000..897dbb0 Binary files /dev/null and b/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj differ diff --git a/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj b/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj new file mode 100644 index 0000000..0c47fab Binary files /dev/null and b/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj differ diff --git a/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj b/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj new file mode 100644 index 0000000..15699e9 Binary files /dev/null and b/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj differ diff --git a/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj b/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj new file mode 100644 index 0000000..a8d94b2 Binary files /dev/null and b/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj differ diff --git a/build/esp-idf/fatfs/cmake_install.cmake b/build/esp-idf/fatfs/cmake_install.cmake new file mode 100644 index 0000000..dae9ea2 --- /dev/null +++ b/build/esp-idf/fatfs/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/fatfs + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/fatfs/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/fatfs/libfatfs.a b/build/esp-idf/fatfs/libfatfs.a new file mode 100644 index 0000000..ad7a088 Binary files /dev/null and b/build/esp-idf/fatfs/libfatfs.a differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj new file mode 100644 index 0000000..9010654 Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj new file mode 100644 index 0000000..a560001 Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/port.c.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/port.c.obj new file mode 100644 index 0000000..bdfe666 Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/port.c.obj differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/portasm.S.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/portasm.S.obj new file mode 100644 index 0000000..0468a04 Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/portasm.S.obj differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c.obj new file mode 100644 index 0000000..b496a65 Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c.obj differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_overlay_os_hook.c.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_overlay_os_hook.c.obj new file mode 100644 index 0000000..eabd922 Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_overlay_os_hook.c.obj differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj new file mode 100644 index 0000000..07df775 Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj new file mode 100644 index 0000000..b1a86c5 Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj new file mode 100644 index 0000000..5be661b Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj new file mode 100644 index 0000000..8312cd0 Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj new file mode 100644 index 0000000..25b1cb6 Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions.c.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions.c.obj new file mode 100644 index 0000000..60eadae Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions.c.obj differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions_event_groups.c.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions_event_groups.c.obj new file mode 100644 index 0000000..6b194c8 Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions_event_groups.c.obj differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/heap_idf.c.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/heap_idf.c.obj new file mode 100644 index 0000000..570da1a Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/heap_idf.c.obj differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj new file mode 100644 index 0000000..d876639 Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj differ diff --git a/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_systick.c.obj b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_systick.c.obj new file mode 100644 index 0000000..afb7949 Binary files /dev/null and b/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_systick.c.obj differ diff --git a/build/esp-idf/freertos/cmake_install.cmake b/build/esp-idf/freertos/cmake_install.cmake new file mode 100644 index 0000000..41bd2a8 --- /dev/null +++ b/build/esp-idf/freertos/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/freertos + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/freertos/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/freertos/libfreertos.a b/build/esp-idf/freertos/libfreertos.a new file mode 100644 index 0000000..4d35e47 Binary files /dev/null and b/build/esp-idf/freertos/libfreertos.a differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj new file mode 100644 index 0000000..0e20bc6 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/color_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/color_hal.c.obj new file mode 100644 index 0000000..603d68b Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/color_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj new file mode 100644 index 0000000..5fd1c75 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/emac_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/emac_hal.c.obj new file mode 100644 index 0000000..061d090 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/emac_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/cache_hal_esp32.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/cache_hal_esp32.c.obj new file mode 100644 index 0000000..1210fa4 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/cache_hal_esp32.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/efuse_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/efuse_hal.c.obj new file mode 100644 index 0000000..d8074e3 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/efuse_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj new file mode 100644 index 0000000..d72dff4 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj new file mode 100644 index 0000000..7bb7152 Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sdio_slave_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sdio_slave_hal.c.obj new file mode 100644 index 0000000..04875bf Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sdio_slave_hal.c.obj differ diff --git a/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sdmmc_hal.c.obj b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sdmmc_hal.c.obj new file mode 100644 index 0000000..f71f6db Binary files /dev/null and b/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sdmmc_hal.c.obj differ diff --git a/build/esp-idf/hal/cmake_install.cmake b/build/esp-idf/hal/cmake_install.cmake new file mode 100644 index 0000000..e897a3e --- /dev/null +++ b/build/esp-idf/hal/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/hal + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/hal/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/hal/libhal.a b/build/esp-idf/hal/libhal.a new file mode 100644 index 0000000..2aef2c8 Binary files /dev/null and b/build/esp-idf/hal/libhal.a differ diff --git a/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj b/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj new file mode 100644 index 0000000..a421fa3 Binary files /dev/null and b/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj differ diff --git a/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_base.c.obj b/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_base.c.obj new file mode 100644 index 0000000..d920eeb Binary files /dev/null and b/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_base.c.obj differ diff --git a/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj b/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj new file mode 100644 index 0000000..ee85d6c Binary files /dev/null and b/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj differ diff --git a/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj b/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj new file mode 100644 index 0000000..fb8bdac Binary files /dev/null and b/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj differ diff --git a/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32/memory_layout.c.obj b/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32/memory_layout.c.obj new file mode 100644 index 0000000..2e8b96f Binary files /dev/null and b/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32/memory_layout.c.obj differ diff --git a/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj b/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj new file mode 100644 index 0000000..2b09eb8 Binary files /dev/null and b/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj differ diff --git a/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/tlsf/tlsf.c.obj b/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/tlsf/tlsf.c.obj new file mode 100644 index 0000000..ee0cb54 Binary files /dev/null and b/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/tlsf/tlsf.c.obj differ diff --git a/build/esp-idf/heap/cmake_install.cmake b/build/esp-idf/heap/cmake_install.cmake new file mode 100644 index 0000000..dc02d64 --- /dev/null +++ b/build/esp-idf/heap/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/heap + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/heap/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/heap/libheap.a b/build/esp-idf/heap/libheap.a new file mode 100644 index 0000000..aff0dbb Binary files /dev/null and b/build/esp-idf/heap/libheap.a differ diff --git a/build/esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir/http_parser.c.obj b/build/esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir/http_parser.c.obj new file mode 100644 index 0000000..c6f2fde Binary files /dev/null and b/build/esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir/http_parser.c.obj differ diff --git a/build/esp-idf/http_parser/cmake_install.cmake b/build/esp-idf/http_parser/cmake_install.cmake new file mode 100644 index 0000000..fcc618b --- /dev/null +++ b/build/esp-idf/http_parser/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/http_parser + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/http_parser/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/http_parser/libhttp_parser.a b/build/esp-idf/http_parser/libhttp_parser.a new file mode 100644 index 0000000..5eb4332 Binary files /dev/null and b/build/esp-idf/http_parser/libhttp_parser.a differ diff --git a/build/esp-idf/idf_test/cmake_install.cmake b/build/esp-idf/idf_test/cmake_install.cmake new file mode 100644 index 0000000..9f411e4 --- /dev/null +++ b/build/esp-idf/idf_test/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/idf_test + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/idf_test/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/ieee802154/cmake_install.cmake b/build/esp-idf/ieee802154/cmake_install.cmake new file mode 100644 index 0000000..ae76daf --- /dev/null +++ b/build/esp-idf/ieee802154/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/ieee802154 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/ieee802154/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj new file mode 100644 index 0000000..d7c74c0 Binary files /dev/null and b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj differ diff --git a/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log.c.obj b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log.c.obj new file mode 100644 index 0000000..23c2bc8 Binary files /dev/null and b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log.c.obj differ diff --git a/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_format_text.c.obj b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_format_text.c.obj new file mode 100644 index 0000000..b3afa48 Binary files /dev/null and b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_format_text.c.obj differ diff --git a/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/log_level.c.obj b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/log_level.c.obj new file mode 100644 index 0000000..ee8dc9b Binary files /dev/null and b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/log_level.c.obj differ diff --git a/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/cache/log_binary_heap.c.obj b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/cache/log_binary_heap.c.obj new file mode 100644 index 0000000..80251d2 Binary files /dev/null and b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/cache/log_binary_heap.c.obj differ diff --git a/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/linked_list/log_linked_list.c.obj b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/linked_list/log_linked_list.c.obj new file mode 100644 index 0000000..c21f0f6 Binary files /dev/null and b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/linked_list/log_linked_list.c.obj differ diff --git a/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/tag_log_level.c.obj b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/tag_log_level.c.obj new file mode 100644 index 0000000..bd92ad5 Binary files /dev/null and b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/tag_log_level.c.obj differ diff --git a/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_print.c.obj b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_print.c.obj new file mode 100644 index 0000000..4d29c94 Binary files /dev/null and b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_print.c.obj differ diff --git a/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj new file mode 100644 index 0000000..2fe8c9d Binary files /dev/null and b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj differ diff --git a/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_lock.c.obj b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_lock.c.obj new file mode 100644 index 0000000..1e21556 Binary files /dev/null and b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_lock.c.obj differ diff --git a/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_timestamp.c.obj b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_timestamp.c.obj new file mode 100644 index 0000000..2b2e4a7 Binary files /dev/null and b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_timestamp.c.obj differ diff --git a/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_write.c.obj b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_write.c.obj new file mode 100644 index 0000000..4eebe19 Binary files /dev/null and b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_write.c.obj differ diff --git a/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/util.c.obj b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/util.c.obj new file mode 100644 index 0000000..365d88d Binary files /dev/null and b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/util.c.obj differ diff --git a/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj new file mode 100644 index 0000000..df0b5b6 Binary files /dev/null and b/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj differ diff --git a/build/esp-idf/log/cmake_install.cmake b/build/esp-idf/log/cmake_install.cmake new file mode 100644 index 0000000..84941f2 --- /dev/null +++ b/build/esp-idf/log/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/log + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/log/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/log/liblog.a b/build/esp-idf/log/liblog.a new file mode 100644 index 0000000..356f910 Binary files /dev/null and b/build/esp-idf/log/liblog.a differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj new file mode 100644 index 0000000..3521ae1 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj new file mode 100644 index 0000000..c20bba4 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj new file mode 100644 index 0000000..28ab064 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj new file mode 100644 index 0000000..71ae9ae Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj new file mode 100644 index 0000000..5d7d6fd Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj new file mode 100644 index 0000000..959508c Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj new file mode 100644 index 0000000..3e7ed9e Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj new file mode 100644 index 0000000..03a1a08 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj new file mode 100644 index 0000000..c4821d1 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj new file mode 100644 index 0000000..9462e55 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj new file mode 100644 index 0000000..b9e7f33 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj new file mode 100644 index 0000000..6579d8b Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj new file mode 100644 index 0000000..172bc7c Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj new file mode 100644 index 0000000..e72cc51 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj new file mode 100644 index 0000000..deb1028 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj new file mode 100644 index 0000000..a83dd3b Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj new file mode 100644 index 0000000..d23a621 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj new file mode 100644 index 0000000..62f2bf7 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj new file mode 100644 index 0000000..bdeb623 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj new file mode 100644 index 0000000..2accb58 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj new file mode 100644 index 0000000..ae4cf38 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj new file mode 100644 index 0000000..3be5793 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj new file mode 100644 index 0000000..6733d11 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj new file mode 100644 index 0000000..bf5f579 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj new file mode 100644 index 0000000..87ea668 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj new file mode 100644 index 0000000..6a9f84f Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj new file mode 100644 index 0000000..853f508 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj new file mode 100644 index 0000000..f7e3c8f Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj new file mode 100644 index 0000000..c0f94fa Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj new file mode 100644 index 0000000..070e29c Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj new file mode 100644 index 0000000..abd7edc Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj new file mode 100644 index 0000000..c1224c0 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj new file mode 100644 index 0000000..13641b8 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj new file mode 100644 index 0000000..c5cff10 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj new file mode 100644 index 0000000..5ee52bd Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj new file mode 100644 index 0000000..e414735 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj new file mode 100644 index 0000000..e303a0c Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj new file mode 100644 index 0000000..4abc5c2 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj new file mode 100644 index 0000000..3616204 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj new file mode 100644 index 0000000..d77197f Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj new file mode 100644 index 0000000..72de031 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj new file mode 100644 index 0000000..e136349 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj new file mode 100644 index 0000000..b742ed2 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj new file mode 100644 index 0000000..9d4e36c Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj new file mode 100644 index 0000000..dbcd513 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj new file mode 100644 index 0000000..3c7dfe2 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj new file mode 100644 index 0000000..ec2f169 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj new file mode 100644 index 0000000..af99ff0 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj new file mode 100644 index 0000000..fdccf33 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif.c.obj new file mode 100644 index 0000000..f4e006c Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif_fdb.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif_fdb.c.obj new file mode 100644 index 0000000..e431e4f Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif_fdb.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj new file mode 100644 index 0000000..fd63aec Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj new file mode 100644 index 0000000..81f1056 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj new file mode 100644 index 0000000..7f23787 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj new file mode 100644 index 0000000..69a2f48 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj new file mode 100644 index 0000000..2a68e4c Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj new file mode 100644 index 0000000..cc282f9 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj new file mode 100644 index 0000000..07287a7 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj new file mode 100644 index 0000000..e6d89f2 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj new file mode 100644 index 0000000..a1a857d Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj new file mode 100644 index 0000000..52c4f07 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj new file mode 100644 index 0000000..0c094d1 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj new file mode 100644 index 0000000..9cac574 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj new file mode 100644 index 0000000..0882c93 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj new file mode 100644 index 0000000..aaf07ba Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj new file mode 100644 index 0000000..f0204e6 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj new file mode 100644 index 0000000..b2c1819 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj new file mode 100644 index 0000000..2382c41 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/arc4.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/arc4.c.obj new file mode 100644 index 0000000..7664846 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/arc4.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/des.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/des.c.obj new file mode 100644 index 0000000..261349f Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/des.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md4.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md4.c.obj new file mode 100644 index 0000000..c8e8c12 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md4.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md5.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md5.c.obj new file mode 100644 index 0000000..e3a1bde Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md5.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/sha1.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/sha1.c.obj new file mode 100644 index 0000000..6574cc7 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/sha1.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj new file mode 100644 index 0000000..0773645 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj new file mode 100644 index 0000000..bba8ddd Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj new file mode 100644 index 0000000..6f80877 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj new file mode 100644 index 0000000..9792825 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj new file mode 100644 index 0000000..56ae5f5 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj new file mode 100644 index 0000000..5cba8df Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj new file mode 100644 index 0000000..36a3de0 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj new file mode 100644 index 0000000..817b3e6 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj new file mode 100644 index 0000000..de9f825 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj new file mode 100644 index 0000000..e00b489 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/acd_dhcp_check.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/acd_dhcp_check.c.obj new file mode 100644 index 0000000..d60c9a8 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/acd_dhcp_check.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/debug/lwip_debug.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/debug/lwip_debug.c.obj new file mode 100644 index 0000000..5a34396 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/debug/lwip_debug.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32xx/vfs_lwip.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32xx/vfs_lwip.c.obj new file mode 100644 index 0000000..7ee6efb Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32xx/vfs_lwip.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/freertos/sys_arch.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/freertos/sys_arch.c.obj new file mode 100644 index 0000000..30b7a59 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/freertos/sys_arch.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/lwip_default_hooks.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/lwip_default_hooks.c.obj new file mode 100644 index 0000000..2dcc36f Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/lwip_default_hooks.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/tcp_isn_default.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/tcp_isn_default.c.obj new file mode 100644 index 0000000..3f43cd3 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/tcp_isn_default.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/if_index.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/if_index.c.obj new file mode 100644 index 0000000..e9a1042 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/if_index.c.obj differ diff --git a/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/sockets_ext.c.obj b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/sockets_ext.c.obj new file mode 100644 index 0000000..aa9e8b2 Binary files /dev/null and b/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/sockets_ext.c.obj differ diff --git a/build/esp-idf/lwip/cmake_install.cmake b/build/esp-idf/lwip/cmake_install.cmake new file mode 100644 index 0000000..711e8bb --- /dev/null +++ b/build/esp-idf/lwip/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/lwip + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/lwip/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/lwip/liblwip.a b/build/esp-idf/lwip/liblwip.a new file mode 100644 index 0000000..4c304d8 Binary files /dev/null and b/build/esp-idf/lwip/liblwip.a differ diff --git a/build/esp-idf/main/CMakeFiles/__idf_main.dir/config_store.c.obj b/build/esp-idf/main/CMakeFiles/__idf_main.dir/config_store.c.obj new file mode 100644 index 0000000..09a5f5b Binary files /dev/null and b/build/esp-idf/main/CMakeFiles/__idf_main.dir/config_store.c.obj differ diff --git a/build/esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj b/build/esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj new file mode 100644 index 0000000..f154264 Binary files /dev/null and b/build/esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj differ diff --git a/build/esp-idf/main/CMakeFiles/__idf_main.dir/modbus_memory.c.obj b/build/esp-idf/main/CMakeFiles/__idf_main.dir/modbus_memory.c.obj new file mode 100644 index 0000000..3d0c7e8 Binary files /dev/null and b/build/esp-idf/main/CMakeFiles/__idf_main.dir/modbus_memory.c.obj differ diff --git a/build/esp-idf/main/CMakeFiles/__idf_main.dir/modbus_points.c.obj b/build/esp-idf/main/CMakeFiles/__idf_main.dir/modbus_points.c.obj new file mode 100644 index 0000000..435a940 Binary files /dev/null and b/build/esp-idf/main/CMakeFiles/__idf_main.dir/modbus_points.c.obj differ diff --git a/build/esp-idf/main/CMakeFiles/__idf_main.dir/modbus_rtu.c.obj b/build/esp-idf/main/CMakeFiles/__idf_main.dir/modbus_rtu.c.obj new file mode 100644 index 0000000..6548640 Binary files /dev/null and b/build/esp-idf/main/CMakeFiles/__idf_main.dir/modbus_rtu.c.obj differ diff --git a/build/esp-idf/main/cmake_install.cmake b/build/esp-idf/main/cmake_install.cmake new file mode 100644 index 0000000..d14ce49 --- /dev/null +++ b/build/esp-idf/main/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/main + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/main/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/main/libmain.a b/build/esp-idf/main/libmain.a new file mode 100644 index 0000000..12ff6a5 Binary files /dev/null and b/build/esp-idf/main/libmain.a differ diff --git a/build/esp-idf/main/spiffs-flash_args.in b/build/esp-idf/main/spiffs-flash_args.in new file mode 100644 index 0000000..508ce85 --- /dev/null +++ b/build/esp-idf/main/spiffs-flash_args.in @@ -0,0 +1,2 @@ +--flash-mode dio --flash-freq 40m --flash-size 2MB +0x110000 spiffs.bin \ No newline at end of file diff --git a/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj b/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj new file mode 100644 index 0000000..33fbfa3 Binary files /dev/null and b/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj differ diff --git a/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj b/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj new file mode 100644 index 0000000..89960c5 Binary files /dev/null and b/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj differ diff --git a/build/esp-idf/mbedtls/cmake_install.cmake b/build/esp-idf/mbedtls/cmake_install.cmake new file mode 100644 index 0000000..4c34adb --- /dev/null +++ b/build/esp-idf/mbedtls/cmake_install.cmake @@ -0,0 +1,50 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/mbedtls + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/cmake_install.cmake") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/mbedtls/libmbedtls.a b/build/esp-idf/mbedtls/libmbedtls.a new file mode 100644 index 0000000..0ce0aa0 Binary files /dev/null and b/build/esp-idf/mbedtls/libmbedtls.a differ diff --git a/build/esp-idf/mbedtls/mbedtls/cmake_install.cmake b/build/esp-idf/mbedtls/mbedtls/cmake_install.cmake new file mode 100644 index 0000000..1b3d8c6 --- /dev/null +++ b/build/esp-idf/mbedtls/mbedtls/cmake_install.cmake @@ -0,0 +1,54 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/include/cmake_install.cmake") + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/cmake_install.cmake") + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library/cmake_install.cmake") + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/pkgconfig/cmake_install.cmake") + +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/mbedtls/mbedtls/include/cmake_install.cmake b/build/esp-idf/mbedtls/mbedtls/include/cmake_install.cmake new file mode 100644 index 0000000..31487c0 --- /dev/null +++ b/build/esp-idf/mbedtls/mbedtls/include/cmake_install.cmake @@ -0,0 +1,75 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/mbedtls" TYPE FILE PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ FILES + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include/mbedtls/build_info.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include/mbedtls/debug.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include/mbedtls/error.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include/mbedtls/mbedtls_config.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include/mbedtls/net_sockets.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include/mbedtls/oid.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include/mbedtls/pkcs7.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ssl.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ssl_cache.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ssl_ciphersuites.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ssl_cookie.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ssl_ticket.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include/mbedtls/timing.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include/mbedtls/version.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include/mbedtls/x509.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include/mbedtls/x509_crl.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include/mbedtls/x509_crt.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include/mbedtls/x509_csr.h" + ) +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/mbedtls/private" TYPE FILE PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ FILES + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include/mbedtls/private/config_adjust_ssl.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/include/mbedtls/private/config_adjust_x509.h" + ) +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/include/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/esp_platform_time.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/esp_platform_time.c.obj new file mode 100644 index 0000000..9096c68 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/esp_platform_time.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/esp_psa_crypto_init.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/esp_psa_crypto_init.c.obj new file mode 100644 index 0000000..a0805a2 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/esp_psa_crypto_init.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/esp_timing.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/esp_timing.c.obj new file mode 100644 index 0000000..5895e35 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/esp_timing.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj new file mode 100644 index 0000000..22e61dc Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/net_sockets.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/net_sockets.c.obj new file mode 100644 index 0000000..ec0ad26 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/net_sockets.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj new file mode 100644 index 0000000..e4882b1 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj new file mode 100644 index 0000000..dbbed9f Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj new file mode 100644 index 0000000..0fc3952 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj new file mode 100644 index 0000000..03def1a Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj new file mode 100644 index 0000000..f622146 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj new file mode 100644 index 0000000..595088a Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj new file mode 100644 index 0000000..ef4f6b7 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj new file mode 100644 index 0000000..7045fdd Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj new file mode 100644 index 0000000..226488b Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj new file mode 100644 index 0000000..2cf9242 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj new file mode 100644 index 0000000..680c311 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj new file mode 100644 index 0000000..4754350 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj new file mode 100644 index 0000000..c3b8d75 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj new file mode 100644 index 0000000..3bf98ce Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj new file mode 100644 index 0000000..12d3e58 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj new file mode 100644 index 0000000..1543915 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj new file mode 100644 index 0000000..0f1a95c Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/timing.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/timing.c.obj new file mode 100644 index 0000000..7d0a035 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/timing.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/version.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/version.c.obj new file mode 100644 index 0000000..5c8996a Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/version.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/version_features.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/version_features.c.obj new file mode 100644 index 0000000..1e2c04d Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/version_features.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/error.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/error.c.obj new file mode 100644 index 0000000..2fb777c Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/error.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/mbedtls_config.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/mbedtls_config.c.obj new file mode 100644 index 0000000..3c508d7 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/mbedtls_config.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj new file mode 100644 index 0000000..c7df96e Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj new file mode 100644 index 0000000..8a19288 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj new file mode 100644 index 0000000..311eae5 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj new file mode 100644 index 0000000..2a2b9ee Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj new file mode 100644 index 0000000..bab6b58 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj new file mode 100644 index 0000000..7201aa5 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_oid.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_oid.c.obj new file mode 100644 index 0000000..a90bc65 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_oid.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj new file mode 100644 index 0000000..b4421b9 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj new file mode 100644 index 0000000..582b663 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj new file mode 100644 index 0000000..32f1b13 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/cmake_install.cmake b/build/esp-idf/mbedtls/mbedtls/library/cmake_install.cmake new file mode 100644 index 0000000..d9e9c02 --- /dev/null +++ b/build/esp-idf/mbedtls/mbedtls/library/cmake_install.cmake @@ -0,0 +1,57 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/library + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library/libmbedx509.a") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library/libmbedtls.a") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE FILE RENAME "libmbedcrypto.a" FILES "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a b/build/esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a new file mode 100644 index 0000000..9b94d64 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/libmbedtls.a b/build/esp-idf/mbedtls/mbedtls/library/libmbedtls.a new file mode 100644 index 0000000..d3b5430 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/libmbedtls.a differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/libmbedx509.a b/build/esp-idf/mbedtls/mbedtls/library/libmbedx509.a new file mode 100644 index 0000000..ea0ffbd Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/libmbedx509.a differ diff --git a/build/esp-idf/mbedtls/mbedtls/library/libtfpsacrypto.a b/build/esp-idf/mbedtls/mbedtls/library/libtfpsacrypto.a new file mode 100644 index 0000000..9b94d64 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/library/libtfpsacrypto.a differ diff --git a/build/esp-idf/mbedtls/mbedtls/pkgconfig/cmake_install.cmake b/build/esp-idf/mbedtls/mbedtls/pkgconfig/cmake_install.cmake new file mode 100644 index 0000000..b1f1811 --- /dev/null +++ b/build/esp-idf/mbedtls/mbedtls/pkgconfig/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/pkgconfig + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/pkgconfig/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/cmake_install.cmake b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/cmake_install.cmake new file mode 100644 index 0000000..b27cd20 --- /dev/null +++ b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/cmake_install.cmake @@ -0,0 +1,54 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/include/cmake_install.cmake") + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/cmake_install.cmake") + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/cmake_install.cmake") + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/pkgconfig/cmake_install.cmake") + +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/aes/esp_aes.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/aes/esp_aes.c.obj new file mode 100644 index 0000000..660c28e Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/aes/esp_aes.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj new file mode 100644 index 0000000..b214aa2 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj new file mode 100644 index 0000000..95b7df0 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj new file mode 100644 index 0000000..91be05b Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj new file mode 100644 index 0000000..33fca02 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj new file mode 100644 index 0000000..696cf9f Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/esp_hardware.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/esp_hardware.c.obj new file mode 100644 index 0000000..8acf023 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/esp_hardware.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/esp_mem.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/esp_mem.c.obj new file mode 100644 index 0000000..092117e Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/esp_mem.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_crypto_storage/esp_psa_its.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_crypto_storage/esp_psa_its.c.obj new file mode 100644 index 0000000..c42b288 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_crypto_storage/esp_psa_its.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_aes/psa_crypto_driver_esp_aes.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_aes/psa_crypto_driver_esp_aes.c.obj new file mode 100644 index 0000000..64ae15f Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_aes/psa_crypto_driver_esp_aes.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_aes/psa_crypto_driver_esp_aes_gcm.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_aes/psa_crypto_driver_esp_aes_gcm.c.obj new file mode 100644 index 0000000..b96b33c Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_aes/psa_crypto_driver_esp_aes_gcm.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_mac/psa_crypto_driver_esp_cmac.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_mac/psa_crypto_driver_esp_cmac.c.obj new file mode 100644 index 0000000..3f0f1e9 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_mac/psa_crypto_driver_esp_cmac.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_mac/psa_crypto_driver_esp_hmac_transparent.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_mac/psa_crypto_driver_esp_hmac_transparent.c.obj new file mode 100644 index 0000000..dd9a0ea Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_mac/psa_crypto_driver_esp_hmac_transparent.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_md/psa_crypto_driver_esp_md5.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_md/psa_crypto_driver_esp_md5.c.obj new file mode 100644 index 0000000..560674e Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_md/psa_crypto_driver_esp_md5.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_sha/parallel_engine/psa_crypto_driver_esp_sha1.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_sha/parallel_engine/psa_crypto_driver_esp_sha1.c.obj new file mode 100644 index 0000000..bf45b4b Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_sha/parallel_engine/psa_crypto_driver_esp_sha1.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_sha/parallel_engine/psa_crypto_driver_esp_sha256.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_sha/parallel_engine/psa_crypto_driver_esp_sha256.c.obj new file mode 100644 index 0000000..2edf9c5 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_sha/parallel_engine/psa_crypto_driver_esp_sha256.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_sha/parallel_engine/psa_crypto_driver_esp_sha512.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_sha/parallel_engine/psa_crypto_driver_esp_sha512.c.obj new file mode 100644 index 0000000..dacde2f Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_sha/parallel_engine/psa_crypto_driver_esp_sha512.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_sha/psa_crypto_driver_esp_sha.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_sha/psa_crypto_driver_esp_sha.c.obj new file mode 100644 index 0000000..20d465a Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_sha/psa_crypto_driver_esp_sha.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj new file mode 100644 index 0000000..992aa78 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/sha/parallel_engine/sha.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/sha/parallel_engine/sha.c.obj new file mode 100644 index 0000000..93a9185 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/sha/parallel_engine/sha.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/psa_crypto.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/psa_crypto.c.obj new file mode 100644 index 0000000..812cbf0 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/psa_crypto.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/psa_crypto_client.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/psa_crypto_client.c.obj new file mode 100644 index 0000000..1ea49d5 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/psa_crypto_client.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj new file mode 100644 index 0000000..ebfc0e7 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/psa_crypto_slot_management.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/psa_crypto_slot_management.c.obj new file mode 100644 index 0000000..b3686d7 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/psa_crypto_slot_management.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/psa_crypto_storage.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/psa_crypto_storage.c.obj new file mode 100644 index 0000000..4549bd7 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/psa_crypto_storage.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/psa_its_file.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/psa_its_file.c.obj new file mode 100644 index 0000000..2360291 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/psa_its_file.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/tf_psa_crypto_config.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/tf_psa_crypto_config.c.obj new file mode 100644 index 0000000..4f2aac0 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/tf_psa_crypto_config.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/tf_psa_crypto_version.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/tf_psa_crypto_version.c.obj new file mode 100644 index 0000000..c8408cb Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/tf_psa_crypto_version.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/cmake_install.cmake b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/cmake_install.cmake new file mode 100644 index 0000000..d1c76cf --- /dev/null +++ b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/cmake_install.cmake @@ -0,0 +1,53 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/core + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a new file mode 100644 index 0000000..9b94d64 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/aes.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/aes.c.obj new file mode 100644 index 0000000..d8e1c65 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/aes.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/aesce.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/aesce.c.obj new file mode 100644 index 0000000..f4c59e4 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/aesce.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/aesni.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/aesni.c.obj new file mode 100644 index 0000000..e9ed567 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/aesni.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/aria.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/aria.c.obj new file mode 100644 index 0000000..0699332 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/aria.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/asn1parse.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/asn1parse.c.obj new file mode 100644 index 0000000..2cdecc9 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/asn1parse.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/asn1write.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/asn1write.c.obj new file mode 100644 index 0000000..9e3bcac Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/asn1write.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/base64.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/base64.c.obj new file mode 100644 index 0000000..768623f Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/base64.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/bignum.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/bignum.c.obj new file mode 100644 index 0000000..4a81f3e Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/bignum.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/bignum_core.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/bignum_core.c.obj new file mode 100644 index 0000000..2b06e94 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/bignum_core.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/bignum_mod.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/bignum_mod.c.obj new file mode 100644 index 0000000..e4ccc9a Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/bignum_mod.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/bignum_mod_raw.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/bignum_mod_raw.c.obj new file mode 100644 index 0000000..c1c0aff Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/bignum_mod_raw.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/block_cipher.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/block_cipher.c.obj new file mode 100644 index 0000000..0db445c Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/block_cipher.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/camellia.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/camellia.c.obj new file mode 100644 index 0000000..a2700ab Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/camellia.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ccm.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ccm.c.obj new file mode 100644 index 0000000..3899f29 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ccm.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/chacha20.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/chacha20.c.obj new file mode 100644 index 0000000..83824ae Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/chacha20.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/chachapoly.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/chachapoly.c.obj new file mode 100644 index 0000000..51f3064 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/chachapoly.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/cipher.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/cipher.c.obj new file mode 100644 index 0000000..1dec226 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/cipher.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/cipher_wrap.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/cipher_wrap.c.obj new file mode 100644 index 0000000..2c51000 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/cipher_wrap.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/cmac.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/cmac.c.obj new file mode 100644 index 0000000..17af992 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/cmac.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/constant_time.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/constant_time.c.obj new file mode 100644 index 0000000..77363af Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/constant_time.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ctr_drbg.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ctr_drbg.c.obj new file mode 100644 index 0000000..4f5c53b Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ctr_drbg.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ecdh.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ecdh.c.obj new file mode 100644 index 0000000..e0cfea3 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ecdh.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ecdsa.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ecdsa.c.obj new file mode 100644 index 0000000..ead44f6 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ecdsa.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ecjpake.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ecjpake.c.obj new file mode 100644 index 0000000..791555c Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ecjpake.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ecp.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ecp.c.obj new file mode 100644 index 0000000..26fe1fa Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ecp.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ecp_curves.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ecp_curves.c.obj new file mode 100644 index 0000000..84eb24d Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ecp_curves.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ecp_curves_new.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ecp_curves_new.c.obj new file mode 100644 index 0000000..a01c496 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ecp_curves_new.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/entropy.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/entropy.c.obj new file mode 100644 index 0000000..a420a56 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/entropy.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/entropy_poll.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/entropy_poll.c.obj new file mode 100644 index 0000000..8e1b614 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/entropy_poll.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/gcm.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/gcm.c.obj new file mode 100644 index 0000000..159ba9c Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/gcm.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/hmac_drbg.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/hmac_drbg.c.obj new file mode 100644 index 0000000..86d37c9 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/hmac_drbg.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/lmots.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/lmots.c.obj new file mode 100644 index 0000000..df41b15 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/lmots.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/lms.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/lms.c.obj new file mode 100644 index 0000000..29f5b89 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/lms.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/md.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/md.c.obj new file mode 100644 index 0000000..e602b18 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/md.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/md5.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/md5.c.obj new file mode 100644 index 0000000..40430e4 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/md5.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/memory_buffer_alloc.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/memory_buffer_alloc.c.obj new file mode 100644 index 0000000..8cb7995 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/memory_buffer_alloc.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/nist_kw.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/nist_kw.c.obj new file mode 100644 index 0000000..917e5f9 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/nist_kw.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/oid.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/oid.c.obj new file mode 100644 index 0000000..f1469ae Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/oid.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pem.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pem.c.obj new file mode 100644 index 0000000..527d8e1 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pem.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pk.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pk.c.obj new file mode 100644 index 0000000..3125810 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pk.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pk_ecc.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pk_ecc.c.obj new file mode 100644 index 0000000..181efc9 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pk_ecc.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pk_rsa.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pk_rsa.c.obj new file mode 100644 index 0000000..fc26eb5 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pk_rsa.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pk_wrap.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pk_wrap.c.obj new file mode 100644 index 0000000..0e8fe9c Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pk_wrap.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pkcs5.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pkcs5.c.obj new file mode 100644 index 0000000..084d773 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pkcs5.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pkparse.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pkparse.c.obj new file mode 100644 index 0000000..f425dd7 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pkparse.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pkwrite.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pkwrite.c.obj new file mode 100644 index 0000000..7656438 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pkwrite.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/platform.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/platform.c.obj new file mode 100644 index 0000000..eb020aa Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/platform.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/platform_util.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/platform_util.c.obj new file mode 100644 index 0000000..269df0a Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/platform_util.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/poly1305.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/poly1305.c.obj new file mode 100644 index 0000000..f478eff Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/poly1305.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_aead.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_aead.c.obj new file mode 100644 index 0000000..04b1f90 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_aead.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_cipher.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_cipher.c.obj new file mode 100644 index 0000000..d2204e6 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_cipher.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_ecp.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_ecp.c.obj new file mode 100644 index 0000000..626ca82 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_ecp.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_ffdh.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_ffdh.c.obj new file mode 100644 index 0000000..6832844 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_ffdh.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_hash.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_hash.c.obj new file mode 100644 index 0000000..a1dbc40 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_hash.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_mac.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_mac.c.obj new file mode 100644 index 0000000..b1c67af Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_mac.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_pake.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_pake.c.obj new file mode 100644 index 0000000..fa9a904 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_pake.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_rsa.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_rsa.c.obj new file mode 100644 index 0000000..93cc43c Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_rsa.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_util.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_util.c.obj new file mode 100644 index 0000000..5480d64 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_util.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ripemd160.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ripemd160.c.obj new file mode 100644 index 0000000..6d81e9b Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ripemd160.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/rsa.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/rsa.c.obj new file mode 100644 index 0000000..95630ee Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/rsa.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/rsa_alt_helpers.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/rsa_alt_helpers.c.obj new file mode 100644 index 0000000..2b77ff0 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/rsa_alt_helpers.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/sha1.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/sha1.c.obj new file mode 100644 index 0000000..04c0d5c Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/sha1.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/sha256.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/sha256.c.obj new file mode 100644 index 0000000..a60dc51 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/sha256.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/sha3.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/sha3.c.obj new file mode 100644 index 0000000..629613b Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/sha3.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/sha512.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/sha512.c.obj new file mode 100644 index 0000000..8344084 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/sha512.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/threading.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/threading.c.obj new file mode 100644 index 0000000..3ae202b Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/threading.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/cmake_install.cmake b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/cmake_install.cmake new file mode 100644 index 0000000..6ffd17f --- /dev/null +++ b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/cmake_install.cmake @@ -0,0 +1,55 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + 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:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/include/mbedtls" FILES_MATCHING REGEX "/[^/]*\\.h$") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/cmake_install.cmake") + +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a new file mode 100644 index 0000000..4243288 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/cmake_install.cmake b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/cmake_install.cmake new file mode 100644 index 0000000..065f48a --- /dev/null +++ b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/src/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/cmake_install.cmake b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/cmake_install.cmake new file mode 100644 index 0000000..e3728aa --- /dev/null +++ b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/cmake_install.cmake @@ -0,0 +1,53 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/cmake_install.cmake") + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/cmake_install.cmake") + include("C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/cmake_install.cmake") + +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj new file mode 100644 index 0000000..0484ed6 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/CMakeFiles/everest.dir/library/everest.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/CMakeFiles/everest.dir/library/everest.c.obj new file mode 100644 index 0000000..9c72427 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/CMakeFiles/everest.dir/library/everest.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/CMakeFiles/everest.dir/library/x25519.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/CMakeFiles/everest.dir/library/x25519.c.obj new file mode 100644 index 0000000..bb015e9 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/CMakeFiles/everest.dir/library/x25519.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/cmake_install.cmake b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/cmake_install.cmake new file mode 100644 index 0000000..577c398 --- /dev/null +++ b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/cmake_install.cmake @@ -0,0 +1,49 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/tf-psa-crypto/private/everest" 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:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/include/tf-psa-crypto/private/everest" FILES_MATCHING REGEX "/[^/]*\\.h$") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/libeverest.a b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/libeverest.a new file mode 100644 index 0000000..43bb752 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/libeverest.a differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj new file mode 100644 index 0000000..716e246 Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj new file mode 100644 index 0000000..b5e49ae Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/cmake_install.cmake b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/cmake_install.cmake new file mode 100644 index 0000000..0715c1a --- /dev/null +++ b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/libp256m.a b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/libp256m.a new file mode 100644 index 0000000..08a496f Binary files /dev/null and b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/libp256m.a differ diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/include/cmake_install.cmake b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/include/cmake_install.cmake new file mode 100644 index 0000000..618ac33 --- /dev/null +++ b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/include/cmake_install.cmake @@ -0,0 +1,102 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/psa" TYPE FILE PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ FILES + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include/psa/crypto.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include/psa/crypto_adjust_auto_enabled.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include/psa/crypto_adjust_config_dependencies.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include/psa/crypto_adjust_config_derived.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include/psa/crypto_adjust_config_key_pair_types.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include/psa/crypto_adjust_config_synonyms.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include/psa/crypto_builtin_composites.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include/psa/crypto_builtin_key_derivation.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include/psa/crypto_builtin_primitives.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include/psa/crypto_compat.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include/psa/crypto_config.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include/psa/crypto_driver_common.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include/psa/crypto_driver_contexts_composites.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include/psa/crypto_driver_contexts_key_derivation.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include/psa/crypto_driver_contexts_primitives.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include/psa/crypto_driver_random.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include/psa/crypto_extra.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include/psa/crypto_platform.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include/psa/crypto_sizes.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include/psa/crypto_struct.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include/psa/crypto_types.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include/psa/crypto_values.h" + ) +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/tf-psa-crypto" TYPE FILE PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ FILES + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include/tf-psa-crypto/build_info.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include/tf-psa-crypto/version.h" + ) +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/mbedtls" TYPE FILE PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ FILES + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include/../drivers/builtin/include/mbedtls/config_adjust_legacy_crypto.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include/../drivers/builtin/include/mbedtls/private_access.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include/mbedtls/asn1.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include/mbedtls/asn1write.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include/mbedtls/base64.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include/mbedtls/compat-3-crypto.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include/mbedtls/constant_time.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include/mbedtls/lms.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include/mbedtls/md.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include/mbedtls/memory_buffer_alloc.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include/mbedtls/nist_kw.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include/mbedtls/pem.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include/mbedtls/pk.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include/mbedtls/platform.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include/mbedtls/platform_time.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include/mbedtls/platform_util.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include/mbedtls/psa_util.h" + "C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/include/mbedtls/threading.h" + ) +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/include/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/pkgconfig/cmake_install.cmake b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/pkgconfig/cmake_install.cmake new file mode 100644 index 0000000..76a52a2 --- /dev/null +++ b/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/pkgconfig/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/mbedtls/mbedtls/tf-psa-crypto/pkgconfig + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/pkgconfig/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/mbedtls/x509_crt_bundle b/build/esp-idf/mbedtls/x509_crt_bundle new file mode 100644 index 0000000..1014a9b Binary files /dev/null and b/build/esp-idf/mbedtls/x509_crt_bundle differ diff --git a/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj new file mode 100644 index 0000000..b58091d Binary files /dev/null and b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj differ diff --git a/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader.c.obj b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader.c.obj new file mode 100644 index 0000000..bce3f4b Binary files /dev/null and b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader.c.obj differ diff --git a/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader_aes.c.obj b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader_aes.c.obj new file mode 100644 index 0000000..2a46ac0 Binary files /dev/null and b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader_aes.c.obj differ diff --git a/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader_xts_aes.c.obj b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader_xts_aes.c.obj new file mode 100644 index 0000000..a3f9c81 Binary files /dev/null and b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader_xts_aes.c.obj differ diff --git a/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj new file mode 100644 index 0000000..2e35972 Binary files /dev/null and b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj differ diff --git a/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_encrypted_partition.cpp.obj b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_encrypted_partition.cpp.obj new file mode 100644 index 0000000..20621ec Binary files /dev/null and b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_encrypted_partition.cpp.obj differ diff --git a/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj new file mode 100644 index 0000000..f763ee7 Binary files /dev/null and b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj differ diff --git a/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj new file mode 100644 index 0000000..11cf064 Binary files /dev/null and b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj differ diff --git a/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj new file mode 100644 index 0000000..cd9388f Binary files /dev/null and b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj differ diff --git a/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj new file mode 100644 index 0000000..8522edb Binary files /dev/null and b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj differ diff --git a/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj new file mode 100644 index 0000000..8b0025d Binary files /dev/null and b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj differ diff --git a/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj new file mode 100644 index 0000000..669206c Binary files /dev/null and b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj differ diff --git a/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.obj b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.obj new file mode 100644 index 0000000..f10523c Binary files /dev/null and b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.obj differ diff --git a/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj new file mode 100644 index 0000000..f414f5f Binary files /dev/null and b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj differ diff --git a/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_platform.cpp.obj b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_platform.cpp.obj new file mode 100644 index 0000000..6d51c4f Binary files /dev/null and b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_platform.cpp.obj differ diff --git a/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj new file mode 100644 index 0000000..560d944 Binary files /dev/null and b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj differ diff --git a/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj new file mode 100644 index 0000000..add375d Binary files /dev/null and b/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj differ diff --git a/build/esp-idf/nvs_flash/cmake_install.cmake b/build/esp-idf/nvs_flash/cmake_install.cmake new file mode 100644 index 0000000..50b1767 --- /dev/null +++ b/build/esp-idf/nvs_flash/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/nvs_flash + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/nvs_flash/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/nvs_flash/libnvs_flash.a b/build/esp-idf/nvs_flash/libnvs_flash.a new file mode 100644 index 0000000..3fac3c6 Binary files /dev/null and b/build/esp-idf/nvs_flash/libnvs_flash.a differ diff --git a/build/esp-idf/nvs_sec_provider/CMakeFiles/__idf_nvs_sec_provider.dir/nvs_sec_provider.c.obj b/build/esp-idf/nvs_sec_provider/CMakeFiles/__idf_nvs_sec_provider.dir/nvs_sec_provider.c.obj new file mode 100644 index 0000000..d39e043 Binary files /dev/null and b/build/esp-idf/nvs_sec_provider/CMakeFiles/__idf_nvs_sec_provider.dir/nvs_sec_provider.c.obj differ diff --git a/build/esp-idf/nvs_sec_provider/cmake_install.cmake b/build/esp-idf/nvs_sec_provider/cmake_install.cmake new file mode 100644 index 0000000..8897150 --- /dev/null +++ b/build/esp-idf/nvs_sec_provider/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/nvs_sec_provider + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/nvs_sec_provider/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/nvs_sec_provider/libnvs_sec_provider.a b/build/esp-idf/nvs_sec_provider/libnvs_sec_provider.a new file mode 100644 index 0000000..83d8eb8 Binary files /dev/null and b/build/esp-idf/nvs_sec_provider/libnvs_sec_provider.a differ diff --git a/build/esp-idf/openthread/cmake_install.cmake b/build/esp-idf/openthread/cmake_install.cmake new file mode 100644 index 0000000..966e89c --- /dev/null +++ b/build/esp-idf/openthread/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/openthread + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/openthread/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/partition_table/cmake_install.cmake b/build/esp-idf/partition_table/cmake_install.cmake new file mode 100644 index 0000000..7d7a44d --- /dev/null +++ b/build/esp-idf/partition_table/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/partition_table + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/partition_table/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/partition_table/partition-table-flash_args.in b/build/esp-idf/partition_table/partition-table-flash_args.in new file mode 100644 index 0000000..6f40dfc --- /dev/null +++ b/build/esp-idf/partition_table/partition-table-flash_args.in @@ -0,0 +1,2 @@ +--flash-mode dio --flash-freq 40m --flash-size 2MB +0x8000 partition_table/partition-table.bin \ No newline at end of file diff --git a/build/esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_access.c.obj b/build/esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_access.c.obj new file mode 100644 index 0000000..c19be28 Binary files /dev/null and b/build/esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_access.c.obj differ diff --git a/build/esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_apis.c.obj b/build/esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_apis.c.obj new file mode 100644 index 0000000..cc5cdcb Binary files /dev/null and b/build/esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_apis.c.obj differ diff --git a/build/esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_masks.c.obj b/build/esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_masks.c.obj new file mode 100644 index 0000000..c8586e5 Binary files /dev/null and b/build/esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_masks.c.obj differ diff --git a/build/esp-idf/perfmon/cmake_install.cmake b/build/esp-idf/perfmon/cmake_install.cmake new file mode 100644 index 0000000..91effa6 --- /dev/null +++ b/build/esp-idf/perfmon/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/perfmon + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/perfmon/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/perfmon/libperfmon.a b/build/esp-idf/perfmon/libperfmon.a new file mode 100644 index 0000000..e25f6c0 Binary files /dev/null and b/build/esp-idf/perfmon/libperfmon.a differ diff --git a/build/esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj b/build/esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj new file mode 100644 index 0000000..67e25b4 Binary files /dev/null and b/build/esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj differ diff --git a/build/esp-idf/protobuf-c/cmake_install.cmake b/build/esp-idf/protobuf-c/cmake_install.cmake new file mode 100644 index 0000000..f58fb88 --- /dev/null +++ b/build/esp-idf/protobuf-c/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/protobuf-c + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/protobuf-c/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/protobuf-c/libprotobuf-c.a b/build/esp-idf/protobuf-c/libprotobuf-c.a new file mode 100644 index 0000000..ec0edfc Binary files /dev/null and b/build/esp-idf/protobuf-c/libprotobuf-c.a differ diff --git a/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj b/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj new file mode 100644 index 0000000..b7691c7 Binary files /dev/null and b/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj differ diff --git a/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj b/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj new file mode 100644 index 0000000..d30195c Binary files /dev/null and b/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj differ diff --git a/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj b/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj new file mode 100644 index 0000000..cd941ef Binary files /dev/null and b/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj differ diff --git a/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec2.pb-c.c.obj b/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec2.pb-c.c.obj new file mode 100644 index 0000000..f97318a Binary files /dev/null and b/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec2.pb-c.c.obj differ diff --git a/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj b/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj new file mode 100644 index 0000000..c9f9eb4 Binary files /dev/null and b/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj differ diff --git a/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj b/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj new file mode 100644 index 0000000..3aea9b4 Binary files /dev/null and b/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj differ diff --git a/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp.c.obj b/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp.c.obj new file mode 100644 index 0000000..bb4456e Binary files /dev/null and b/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp.c.obj differ diff --git a/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp_mpi.c.obj b/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp_mpi.c.obj new file mode 100644 index 0000000..e58d96c Binary files /dev/null and b/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp_mpi.c.obj differ diff --git a/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security2.c.obj b/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security2.c.obj new file mode 100644 index 0000000..76a19c0 Binary files /dev/null and b/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security2.c.obj differ diff --git a/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj b/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj new file mode 100644 index 0000000..936735f Binary files /dev/null and b/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj differ diff --git a/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj b/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj new file mode 100644 index 0000000..f87348a Binary files /dev/null and b/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj differ diff --git a/build/esp-idf/protocomm/cmake_install.cmake b/build/esp-idf/protocomm/cmake_install.cmake new file mode 100644 index 0000000..09a6cf5 --- /dev/null +++ b/build/esp-idf/protocomm/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/protocomm + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/protocomm/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/protocomm/libprotocomm.a b/build/esp-idf/protocomm/libprotocomm.a new file mode 100644 index 0000000..e76440c Binary files /dev/null and b/build/esp-idf/protocomm/libprotocomm.a differ diff --git a/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj b/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj new file mode 100644 index 0000000..9db91ea Binary files /dev/null and b/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj differ diff --git a/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj b/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj new file mode 100644 index 0000000..b060b74 Binary files /dev/null and b/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj differ diff --git a/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj b/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj new file mode 100644 index 0000000..1d04928 Binary files /dev/null and b/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj differ diff --git a/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj b/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj new file mode 100644 index 0000000..b345620 Binary files /dev/null and b/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj differ diff --git a/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_semaphore.c.obj b/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_semaphore.c.obj new file mode 100644 index 0000000..271c3d7 Binary files /dev/null and b/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_semaphore.c.obj differ diff --git a/build/esp-idf/pthread/cmake_install.cmake b/build/esp-idf/pthread/cmake_install.cmake new file mode 100644 index 0000000..7b6a8a8 --- /dev/null +++ b/build/esp-idf/pthread/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/pthread + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/pthread/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/pthread/libpthread.a b/build/esp-idf/pthread/libpthread.a new file mode 100644 index 0000000..dbe4a08 Binary files /dev/null and b/build/esp-idf/pthread/libpthread.a differ diff --git a/build/esp-idf/rt/CMakeFiles/__idf_rt.dir/FreeRTOS_POSIX_mqueue.c.obj b/build/esp-idf/rt/CMakeFiles/__idf_rt.dir/FreeRTOS_POSIX_mqueue.c.obj new file mode 100644 index 0000000..8cb5f6e Binary files /dev/null and b/build/esp-idf/rt/CMakeFiles/__idf_rt.dir/FreeRTOS_POSIX_mqueue.c.obj differ diff --git a/build/esp-idf/rt/CMakeFiles/__idf_rt.dir/FreeRTOS_POSIX_utils.c.obj b/build/esp-idf/rt/CMakeFiles/__idf_rt.dir/FreeRTOS_POSIX_utils.c.obj new file mode 100644 index 0000000..7086647 Binary files /dev/null and b/build/esp-idf/rt/CMakeFiles/__idf_rt.dir/FreeRTOS_POSIX_utils.c.obj differ diff --git a/build/esp-idf/rt/cmake_install.cmake b/build/esp-idf/rt/cmake_install.cmake new file mode 100644 index 0000000..fa5278f --- /dev/null +++ b/build/esp-idf/rt/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/rt + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/rt/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/rt/librt.a b/build/esp-idf/rt/librt.a new file mode 100644 index 0000000..0f48d09 Binary files /dev/null and b/build/esp-idf/rt/librt.a differ diff --git a/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sd_pwr_ctrl/sd_pwr_ctrl.c.obj b/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sd_pwr_ctrl/sd_pwr_ctrl.c.obj new file mode 100644 index 0000000..596aa1f Binary files /dev/null and b/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sd_pwr_ctrl/sd_pwr_ctrl.c.obj differ diff --git a/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_blockdev.c.obj b/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_blockdev.c.obj new file mode 100644 index 0000000..511e65c Binary files /dev/null and b/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_blockdev.c.obj differ diff --git a/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj b/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj new file mode 100644 index 0000000..965bcce Binary files /dev/null and b/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj differ diff --git a/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj b/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj new file mode 100644 index 0000000..9852b64 Binary files /dev/null and b/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj differ diff --git a/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj b/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj new file mode 100644 index 0000000..32cbfaa Binary files /dev/null and b/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj differ diff --git a/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj b/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj new file mode 100644 index 0000000..cf36ef0 Binary files /dev/null and b/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj differ diff --git a/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj b/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj new file mode 100644 index 0000000..724d22d Binary files /dev/null and b/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj differ diff --git a/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj b/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj new file mode 100644 index 0000000..aa0092b Binary files /dev/null and b/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj differ diff --git a/build/esp-idf/sdmmc/cmake_install.cmake b/build/esp-idf/sdmmc/cmake_install.cmake new file mode 100644 index 0000000..7a9cc1e --- /dev/null +++ b/build/esp-idf/sdmmc/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/sdmmc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/sdmmc/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/sdmmc/libsdmmc.a b/build/esp-idf/sdmmc/libsdmmc.a new file mode 100644 index 0000000..10cc5f2 Binary files /dev/null and b/build/esp-idf/sdmmc/libsdmmc.a differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj new file mode 100644 index 0000000..700f0c1 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dport_access.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dport_access.c.obj new file mode 100644 index 0000000..be8b938 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dport_access.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/emac_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/emac_periph.c.obj new file mode 100644 index 0000000..e762281 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/emac_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/gpio_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/gpio_periph.c.obj new file mode 100644 index 0000000..91c0d87 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/gpio_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/interrupts.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/interrupts.c.obj new file mode 100644 index 0000000..48b5260 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/interrupts.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mpi_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mpi_periph.c.obj new file mode 100644 index 0000000..31d3b57 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mpi_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/power_supply_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/power_supply_periph.c.obj new file mode 100644 index 0000000..d4a0d88 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/power_supply_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdio_slave_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdio_slave_periph.c.obj new file mode 100644 index 0000000..a78d64e Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdio_slave_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdmmc_periph.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdmmc_periph.c.obj new file mode 100644 index 0000000..8213e33 Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdmmc_periph.c.obj differ diff --git a/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj new file mode 100644 index 0000000..2c3391e Binary files /dev/null and b/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj differ diff --git a/build/esp-idf/soc/cmake_install.cmake b/build/esp-idf/soc/cmake_install.cmake new file mode 100644 index 0000000..5153fe7 --- /dev/null +++ b/build/esp-idf/soc/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/soc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/soc/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/soc/libsoc.a b/build/esp-idf/soc/libsoc.a new file mode 100644 index 0000000..2442ef7 Binary files /dev/null and b/build/esp-idf/soc/libsoc.a differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj new file mode 100644 index 0000000..8088e27 Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj new file mode 100644 index 0000000..ec673e1 Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj new file mode 100644 index 0000000..165fe04 Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj new file mode 100644 index 0000000..7d2c360 Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj new file mode 100644 index 0000000..54045b8 Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj new file mode 100644 index 0000000..104a914 Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj new file mode 100644 index 0000000..f2a9521 Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_blockdev.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_blockdev.c.obj new file mode 100644 index 0000000..27003ca Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_blockdev.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj new file mode 100644 index 0000000..0a8e5d2 Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj new file mode 100644 index 0000000..2c7a3b3 Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj new file mode 100644 index 0000000..1f349d8 Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj new file mode 100644 index 0000000..369bd97 Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj new file mode 100644 index 0000000..6df5777 Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj new file mode 100644 index 0000000..508c923 Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj new file mode 100644 index 0000000..40f5417 Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj new file mode 100644 index 0000000..65ce6f2 Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj new file mode 100644 index 0000000..81578a9 Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj new file mode 100644 index 0000000..2ad6b2e Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj new file mode 100644 index 0000000..38102ef Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj differ diff --git a/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj new file mode 100644 index 0000000..05851a7 Binary files /dev/null and b/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj differ diff --git a/build/esp-idf/spi_flash/cmake_install.cmake b/build/esp-idf/spi_flash/cmake_install.cmake new file mode 100644 index 0000000..3097e9f --- /dev/null +++ b/build/esp-idf/spi_flash/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/spi_flash + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/spi_flash/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/spi_flash/libspi_flash.a b/build/esp-idf/spi_flash/libspi_flash.a new file mode 100644 index 0000000..ee10959 Binary files /dev/null and b/build/esp-idf/spi_flash/libspi_flash.a differ diff --git a/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj b/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj new file mode 100644 index 0000000..5f86a25 Binary files /dev/null and b/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj differ diff --git a/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj b/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj new file mode 100644 index 0000000..0d0acfd Binary files /dev/null and b/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj differ diff --git a/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj b/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj new file mode 100644 index 0000000..fb67754 Binary files /dev/null and b/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj differ diff --git a/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj b/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj new file mode 100644 index 0000000..072a4e1 Binary files /dev/null and b/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj differ diff --git a/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj b/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj new file mode 100644 index 0000000..dfac497 Binary files /dev/null and b/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj differ diff --git a/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj b/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj new file mode 100644 index 0000000..9d866c3 Binary files /dev/null and b/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj differ diff --git a/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj b/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj new file mode 100644 index 0000000..d58fdce Binary files /dev/null and b/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj differ diff --git a/build/esp-idf/spiffs/cmake_install.cmake b/build/esp-idf/spiffs/cmake_install.cmake new file mode 100644 index 0000000..fe616e1 --- /dev/null +++ b/build/esp-idf/spiffs/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/spiffs + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/spiffs/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/spiffs/libspiffs.a b/build/esp-idf/spiffs/libspiffs.a new file mode 100644 index 0000000..d66cda5 Binary files /dev/null and b/build/esp-idf/spiffs/libspiffs.a differ diff --git a/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj b/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj new file mode 100644 index 0000000..af5a8bb Binary files /dev/null and b/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj differ diff --git a/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_internal.c.obj b/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_internal.c.obj new file mode 100644 index 0000000..884358e Binary files /dev/null and b/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_internal.c.obj differ diff --git a/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_socks_proxy.c.obj b/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_socks_proxy.c.obj new file mode 100644 index 0000000..2eafe56 Binary files /dev/null and b/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_socks_proxy.c.obj differ diff --git a/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj b/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj new file mode 100644 index 0000000..bc25e1c Binary files /dev/null and b/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj differ diff --git a/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj b/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj new file mode 100644 index 0000000..951ebb6 Binary files /dev/null and b/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj differ diff --git a/build/esp-idf/tcp_transport/cmake_install.cmake b/build/esp-idf/tcp_transport/cmake_install.cmake new file mode 100644 index 0000000..15f10b5 --- /dev/null +++ b/build/esp-idf/tcp_transport/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/tcp_transport + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/tcp_transport/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/tcp_transport/libtcp_transport.a b/build/esp-idf/tcp_transport/libtcp_transport.a new file mode 100644 index 0000000..3311fc4 Binary files /dev/null and b/build/esp-idf/tcp_transport/libtcp_transport.a differ diff --git a/build/esp-idf/ulp/cmake_install.cmake b/build/esp-idf/ulp/cmake_install.cmake new file mode 100644 index 0000000..54924e0 --- /dev/null +++ b/build/esp-idf/ulp/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/ulp + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/ulp/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/port/esp/unity_utils_memory_esp.c.obj b/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/port/esp/unity_utils_memory_esp.c.obj new file mode 100644 index 0000000..870c094 Binary files /dev/null and b/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/port/esp/unity_utils_memory_esp.c.obj differ diff --git a/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj b/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj new file mode 100644 index 0000000..7bb1771 Binary files /dev/null and b/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj differ diff --git a/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_compat.c.obj b/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_compat.c.obj new file mode 100644 index 0000000..75bffc6 Binary files /dev/null and b/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_compat.c.obj differ diff --git a/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj b/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj new file mode 100644 index 0000000..d91afa1 Binary files /dev/null and b/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj differ diff --git a/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj b/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj new file mode 100644 index 0000000..e1d3e99 Binary files /dev/null and b/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj differ diff --git a/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_cache.c.obj b/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_cache.c.obj new file mode 100644 index 0000000..5d67449 Binary files /dev/null and b/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_cache.c.obj differ diff --git a/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_freertos.c.obj b/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_freertos.c.obj new file mode 100644 index 0000000..1f810fe Binary files /dev/null and b/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_freertos.c.obj differ diff --git a/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_memory.c.obj b/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_memory.c.obj new file mode 100644 index 0000000..e08ad85 Binary files /dev/null and b/build/esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_memory.c.obj differ diff --git a/build/esp-idf/unity/cmake_install.cmake b/build/esp-idf/unity/cmake_install.cmake new file mode 100644 index 0000000..d794b5f --- /dev/null +++ b/build/esp-idf/unity/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/unity + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/unity/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/unity/libunity.a b/build/esp-idf/unity/libunity.a new file mode 100644 index 0000000..fd4e30e Binary files /dev/null and b/build/esp-idf/unity/libunity.a differ diff --git a/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/nullfs.c.obj b/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/nullfs.c.obj new file mode 100644 index 0000000..ff4abf0 Binary files /dev/null and b/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/nullfs.c.obj differ diff --git a/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj b/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj new file mode 100644 index 0000000..8279053 Binary files /dev/null and b/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj differ diff --git a/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_calls.c.obj b/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_calls.c.obj new file mode 100644 index 0000000..d955ba3 Binary files /dev/null and b/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_calls.c.obj differ diff --git a/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj b/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj new file mode 100644 index 0000000..8229d68 Binary files /dev/null and b/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj differ diff --git a/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj b/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj new file mode 100644 index 0000000..a8393de Binary files /dev/null and b/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj differ diff --git a/build/esp-idf/vfs/cmake_install.cmake b/build/esp-idf/vfs/cmake_install.cmake new file mode 100644 index 0000000..1ebe835 --- /dev/null +++ b/build/esp-idf/vfs/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/vfs + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/vfs/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/vfs/libvfs.a b/build/esp-idf/vfs/libvfs.a new file mode 100644 index 0000000..1512fea Binary files /dev/null and b/build/esp-idf/vfs/libvfs.a differ diff --git a/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj b/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj new file mode 100644 index 0000000..15461dd Binary files /dev/null and b/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj differ diff --git a/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj b/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj new file mode 100644 index 0000000..f73a982 Binary files /dev/null and b/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj differ diff --git a/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj b/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj new file mode 100644 index 0000000..75c3f25 Binary files /dev/null and b/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj differ diff --git a/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj b/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj new file mode 100644 index 0000000..95a5ada Binary files /dev/null and b/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj differ diff --git a/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj b/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj new file mode 100644 index 0000000..2fcdc89 Binary files /dev/null and b/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj differ diff --git a/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj b/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj new file mode 100644 index 0000000..a7fd62f Binary files /dev/null and b/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj differ diff --git a/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj b/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj new file mode 100644 index 0000000..580fe63 Binary files /dev/null and b/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj differ diff --git a/build/esp-idf/wear_levelling/cmake_install.cmake b/build/esp-idf/wear_levelling/cmake_install.cmake new file mode 100644 index 0000000..9d57847 --- /dev/null +++ b/build/esp-idf/wear_levelling/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/wear_levelling + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/wear_levelling/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/wear_levelling/libwear_levelling.a b/build/esp-idf/wear_levelling/libwear_levelling.a new file mode 100644 index 0000000..3e32ae9 Binary files /dev/null and b/build/esp-idf/wear_levelling/libwear_levelling.a differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c.obj new file mode 100644 index 0000000..e1ff957 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-ec.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-ec.c.obj new file mode 100644 index 0000000..baea5d9 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-ec.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c.obj new file mode 100644 index 0000000..b72523a Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls.c.obj new file mode 100644 index 0000000..d4f1ad8 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/fastpbkdf2.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/fastpbkdf2.c.obj new file mode 100644 index 0000000..658c111 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/fastpbkdf2.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/tls_mbedtls.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/tls_mbedtls.c.obj new file mode 100644 index 0000000..f2d6cc4 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/tls_mbedtls.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_common.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_common.c.obj new file mode 100644 index 0000000..1cbe72b Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_common.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_eap_client.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_eap_client.c.obj new file mode 100644 index 0000000..5edde01 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_eap_client.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_hostap.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_hostap.c.obj new file mode 100644 index 0000000..2c71f2a Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_hostap.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_owe.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_owe.c.obj new file mode 100644 index 0000000..13fda6e Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_owe.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa2_api_port.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa2_api_port.c.obj new file mode 100644 index 0000000..e956930 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa2_api_port.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa3.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa3.c.obj new file mode 100644 index 0000000..ec612ac Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa3.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa_main.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa_main.c.obj new file mode 100644 index 0000000..5cb9a3c Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa_main.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpas_glue.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpas_glue.c.obj new file mode 100644 index 0000000..229b4cc Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpas_glue.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wps.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wps.c.obj new file mode 100644 index 0000000..08907a8 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wps.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/eloop.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/eloop.c.obj new file mode 100644 index 0000000..8afc73d Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/eloop.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj new file mode 100644 index 0000000..0051b0c Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj new file mode 100644 index 0000000..a117390 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/comeback_token.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/comeback_token.c.obj new file mode 100644 index 0000000..50e306b Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/comeback_token.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_11.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_11.c.obj new file mode 100644 index 0000000..43afff8 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_11.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj new file mode 100644 index 0000000..e150f0a Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/pmksa_cache_auth.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/pmksa_cache_auth.c.obj new file mode 100644 index 0000000..31af86b Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/pmksa_cache_auth.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/sta_info.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/sta_info.c.obj new file mode 100644 index 0000000..6ca0512 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/sta_info.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj new file mode 100644 index 0000000..4fb74fe Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj new file mode 100644 index 0000000..509217c Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/dragonfly.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/dragonfly.c.obj new file mode 100644 index 0000000..a9f693b Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/dragonfly.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/ieee802_11_common.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/ieee802_11_common.c.obj new file mode 100644 index 0000000..181a1c5 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/ieee802_11_common.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj new file mode 100644 index 0000000..5afaf41 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae_pk.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae_pk.c.obj new file mode 100644 index 0000000..53acbc2 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae_pk.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj new file mode 100644 index 0000000..d85dc82 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj new file mode 100644 index 0000000..3d8f81a Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-gcm.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-gcm.c.obj new file mode 100644 index 0000000..da469aa Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-gcm.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-siv.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-siv.c.obj new file mode 100644 index 0000000..900c31d Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-siv.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj new file mode 100644 index 0000000..f0536d2 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj new file mode 100644 index 0000000..13b93d8 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj new file mode 100644 index 0000000..a1155ec Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj new file mode 100644 index 0000000..7136cad Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj new file mode 100644 index 0000000..77db126 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj new file mode 100644 index 0000000..2a5a0ce Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj new file mode 100644 index 0000000..38dfb3c Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj new file mode 100644 index 0000000..39c046a Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj new file mode 100644 index 0000000..0e71f7a Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj new file mode 100644 index 0000000..8812fb8 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-prf.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-prf.c.obj new file mode 100644 index 0000000..da20da2 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-prf.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tlsprf.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tlsprf.c.obj new file mode 100644 index 0000000..1c5f814 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tlsprf.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tprf.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tprf.c.obj new file mode 100644 index 0000000..a01151e Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tprf.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-kdf.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-kdf.c.obj new file mode 100644 index 0000000..4f27185 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-kdf.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-prf.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-prf.c.obj new file mode 100644 index 0000000..84e03b9 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-prf.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-tlsprf.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-tlsprf.c.obj new file mode 100644 index 0000000..577fd64 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-tlsprf.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-prf.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-prf.c.obj new file mode 100644 index 0000000..c56e6b8 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-prf.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-tlsprf.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-tlsprf.c.obj new file mode 100644 index 0000000..ef219ea Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-tlsprf.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_common/eap_wsc_common.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_common/eap_wsc_common.c.obj new file mode 100644 index 0000000..c42951d Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_common/eap_wsc_common.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj new file mode 100644 index 0000000..35313c4 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj new file mode 100644 index 0000000..28c840c Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj new file mode 100644 index 0000000..74dc9c9 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast.c.obj new file mode 100644 index 0000000..ea2a2aa Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_common.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_common.c.obj new file mode 100644 index 0000000..fbc2703 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_common.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_pac.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_pac.c.obj new file mode 100644 index 0000000..097bdbb Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_pac.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj new file mode 100644 index 0000000..ce163f3 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj new file mode 100644 index 0000000..381b141 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj new file mode 100644 index 0000000..f6fcdf6 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj new file mode 100644 index 0000000..8c0e843 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj new file mode 100644 index 0000000..7669d8d Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj new file mode 100644 index 0000000..3066e69 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj new file mode 100644 index 0000000..e039006 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj new file mode 100644 index 0000000..de5e76a Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj new file mode 100644 index 0000000..8c7d842 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj new file mode 100644 index 0000000..30ff7f1 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj new file mode 100644 index 0000000..b6d495a Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/bitfield.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/bitfield.c.obj new file mode 100644 index 0000000..5e6ebce Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/bitfield.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj new file mode 100644 index 0000000..f6e46cd Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj new file mode 100644 index 0000000..0b316ba Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/json.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/json.c.obj new file mode 100644 index 0000000..41906a6 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/json.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj new file mode 100644 index 0000000..d5a9ca2 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj new file mode 100644 index 0000000..a1c7f4d Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj new file mode 100644 index 0000000..5fca999 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj new file mode 100644 index 0000000..291a5d5 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj new file mode 100644 index 0000000..1e7b28d Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj new file mode 100644 index 0000000..1efb120 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj new file mode 100644 index 0000000..7501a7e Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj new file mode 100644 index 0000000..df725de Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj new file mode 100644 index 0000000..c064f68 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj new file mode 100644 index 0000000..178b245 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj differ diff --git a/build/esp-idf/wpa_supplicant/cmake_install.cmake b/build/esp-idf/wpa_supplicant/cmake_install.cmake new file mode 100644 index 0000000..b14c273 --- /dev/null +++ b/build/esp-idf/wpa_supplicant/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/wpa_supplicant + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/wpa_supplicant/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/wpa_supplicant/libwpa_supplicant.a b/build/esp-idf/wpa_supplicant/libwpa_supplicant.a new file mode 100644 index 0000000..9479a67 Binary files /dev/null and b/build/esp-idf/wpa_supplicant/libwpa_supplicant.a differ diff --git a/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj b/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj new file mode 100644 index 0000000..099216e Binary files /dev/null and b/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj differ diff --git a/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj b/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj new file mode 100644 index 0000000..c4516d3 Binary files /dev/null and b/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj differ diff --git a/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_context.S.obj b/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_context.S.obj new file mode 100644 index 0000000..063fc99 Binary files /dev/null and b/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_context.S.obj differ diff --git a/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr.c.obj b/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr.c.obj new file mode 100644 index 0000000..346e79e Binary files /dev/null and b/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr.c.obj differ diff --git a/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr_asm.S.obj b/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr_asm.S.obj new file mode 100644 index 0000000..7965f00 Binary files /dev/null and b/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr_asm.S.obj differ diff --git a/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_vectors.S.obj b/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_vectors.S.obj new file mode 100644 index 0000000..4c68794 Binary files /dev/null and b/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_vectors.S.obj differ diff --git a/build/esp-idf/xtensa/cmake_install.cmake b/build/esp-idf/xtensa/cmake_install.cmake new file mode 100644 index 0000000..843fa1f --- /dev/null +++ b/build/esp-idf/xtensa/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/esp/v6.0/esp-idf/components/xtensa + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/modbus_tcp_esp32") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-objdump.exe") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/xtensa/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/build/esp-idf/xtensa/libxtensa.a b/build/esp-idf/xtensa/libxtensa.a new file mode 100644 index 0000000..0402b8b Binary files /dev/null and b/build/esp-idf/xtensa/libxtensa.a differ diff --git a/build/flash_app_args b/build/flash_app_args new file mode 100644 index 0000000..94f0936 --- /dev/null +++ b/build/flash_app_args @@ -0,0 +1,2 @@ +--flash-mode dio --flash-freq 40m --flash-size 2MB +0x10000 modbus_tcp_esp32.bin diff --git a/build/flash_args b/build/flash_args new file mode 100644 index 0000000..498fe73 --- /dev/null +++ b/build/flash_args @@ -0,0 +1,5 @@ +--flash-mode dio --flash-freq 40m --flash-size 2MB +0x1000 bootloader/bootloader.bin +0x8000 partition_table/partition-table.bin +0x110000 spiffs.bin +0x10000 modbus_tcp_esp32.bin diff --git a/build/flash_args.in b/build/flash_args.in new file mode 100644 index 0000000..c5a20d6 --- /dev/null +++ b/build/flash_args.in @@ -0,0 +1,5 @@ +--flash-mode dio --flash-freq 40m --flash-size 2MB +0x1000 bootloader/bootloader.bin +0x8000 partition_table/partition-table.bin +0x110000 spiffs.bin +0x10000 $.bin \ No newline at end of file diff --git a/build/flash_bootloader_args b/build/flash_bootloader_args new file mode 100644 index 0000000..f98410c --- /dev/null +++ b/build/flash_bootloader_args @@ -0,0 +1,2 @@ +--flash-mode dio --flash-freq 40m --flash-size 2MB +0x1000 bootloader/bootloader.bin diff --git a/build/flash_project_args b/build/flash_project_args new file mode 100644 index 0000000..498fe73 --- /dev/null +++ b/build/flash_project_args @@ -0,0 +1,5 @@ +--flash-mode dio --flash-freq 40m --flash-size 2MB +0x1000 bootloader/bootloader.bin +0x8000 partition_table/partition-table.bin +0x110000 spiffs.bin +0x10000 modbus_tcp_esp32.bin diff --git a/build/flasher_args.json b/build/flasher_args.json new file mode 100644 index 0000000..74a409b --- /dev/null +++ b/build/flasher_args.json @@ -0,0 +1,26 @@ +{ + "write_flash_args" : [ "--flash-mode", "dio", + "--flash-size", "2MB", + "--flash-freq", "40m" ], + "flash_settings" : { + "flash_mode": "dio", + "flash_size": "2MB", + "flash_freq": "40m" + }, + "flash_files" : { + "0x1000" : "bootloader/bootloader.bin", + "0x8000" : "partition_table/partition-table.bin", + "0x110000" : "spiffs.bin", + "0x10000" : "modbus_tcp_esp32.bin" + }, + "bootloader" : { "offset" : "0x1000", "file" : "bootloader/bootloader.bin", "encrypted" : "false" }, + "partition-table" : { "offset" : "0x8000", "file" : "partition_table/partition-table.bin", "encrypted" : "false" }, + "spiffs" : { "offset" : "0x110000", "file" : "spiffs.bin", "encrypted" : "false" }, + "app" : { "offset" : "0x10000", "file" : "modbus_tcp_esp32.bin", "encrypted" : "false" }, + "extra_esptool_args" : { + "after" : "hard-reset", + "before" : "default-reset", + "stub" : true, + "chip" : "esp32" + } +} diff --git a/build/flasher_args.json.in b/build/flasher_args.json.in new file mode 100644 index 0000000..cc88d27 --- /dev/null +++ b/build/flasher_args.json.in @@ -0,0 +1,26 @@ +{ + "write_flash_args" : [ "--flash-mode", "dio", + "--flash-size", "2MB", + "--flash-freq", "40m" ], + "flash_settings" : { + "flash_mode": "dio", + "flash_size": "2MB", + "flash_freq": "40m" + }, + "flash_files" : { + "0x1000" : "bootloader/bootloader.bin", + "0x8000" : "partition_table/partition-table.bin", + "0x110000" : "spiffs.bin", + "0x10000" : "$.bin" + }, + "bootloader" : { "offset" : "0x1000", "file" : "bootloader/bootloader.bin", "encrypted" : "false" }, + "partition-table" : { "offset" : "0x8000", "file" : "partition_table/partition-table.bin", "encrypted" : "false" }, + "spiffs" : { "offset" : "0x110000", "file" : "spiffs.bin", "encrypted" : "false" }, + "app" : { "offset" : "0x10000", "file" : "$.bin", "encrypted" : "false" }, + "extra_esptool_args" : { + "after" : "hard-reset", + "before" : "default-reset", + "stub" : true, + "chip" : "esp32" + } +} diff --git a/build/gdbinit/connect b/build/gdbinit/connect new file mode 100644 index 0000000..faa3857 --- /dev/null +++ b/build/gdbinit/connect @@ -0,0 +1,7 @@ +# Connect to the default openocd-esp port and stop on app_main() +set remotetimeout 10 +target remote :3333 +monitor reset halt +maintenance flush register-cache +thbreak app_main +continue diff --git a/build/gdbinit/gdbinit b/build/gdbinit/gdbinit new file mode 100644 index 0000000..434ec2d --- /dev/null +++ b/build/gdbinit/gdbinit @@ -0,0 +1,2 @@ +source C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/gdbinit/symbols +source C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/gdbinit/connect diff --git a/build/gdbinit/prefix_map b/build/gdbinit/prefix_map new file mode 100644 index 0000000..c7842ec --- /dev/null +++ b/build/gdbinit/prefix_map @@ -0,0 +1 @@ +# There is no prefix map defined for the project. diff --git a/build/gdbinit/py_extensions b/build/gdbinit/py_extensions new file mode 100644 index 0000000..336f995 --- /dev/null +++ b/build/gdbinit/py_extensions @@ -0,0 +1,7 @@ +# Add Python GDB extensions +python +try: + import freertos_gdb +except ModuleNotFoundError: + print('warning: python extension "freertos_gdb" not found.') +end diff --git a/build/gdbinit/symbols b/build/gdbinit/symbols new file mode 100644 index 0000000..b9c08b1 --- /dev/null +++ b/build/gdbinit/symbols @@ -0,0 +1,25 @@ +# Load esp32 ROM ELF symbols +define target hookpost-remote +set confirm off + # if $_streq((char *) 0x3ff9ea80, "Jun 8 2016") + if (*(int*) 0x3ff9ea80) == 0x206e754a && (*(int*) 0x3ff9ea84) == 0x32203820 && (*(int*) 0x3ff9ea88) == 0x363130 + add-symbol-file C:/Espressif/tools/esp-rom-elfs/20241011esp32_rev0_rom.elf + else + # if $_streq((char *) 0x3ff9e986, "Jul 29 2019") + if (*(int*) 0x3ff9e986) == 0x206c754a && (*(int*) 0x3ff9e98a) == 0x32203932 && (*(int*) 0x3ff9e98e) == 0x393130 + add-symbol-file C:/Espressif/tools/esp-rom-elfs/20241011esp32_rev300_rom.elf + else + echo Warning: Unknown esp32 ROM revision.\n + end + end +set confirm on +end + + +# Load bootloader symbols +set confirm off + add-symbol-file C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/bootloader.elf +set confirm on + +# Load application symbols +file C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/modbus_tcp_esp32.elf diff --git a/build/kconfigs.in b/build/kconfigs.in new file mode 100644 index 0000000..3996a9d --- /dev/null +++ b/build/kconfigs.in @@ -0,0 +1,81 @@ +source "C:/esp/v6.0/esp-idf/components/bt/Kconfig" +source "C:/esp/v6.0/esp-idf/components/console/Kconfig" +source "C:/esp/v6.0/esp-idf/components/driver/Kconfig" +source "C:/esp/v6.0/esp-idf/components/efuse/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp-tls/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_adc/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_coex/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_common/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_driver_ana_cmpr/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_driver_bitscrambler/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_driver_cam/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_driver_dac/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_driver_dma/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_driver_gpio/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_driver_gptimer/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_driver_i2c/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_driver_i2s/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_driver_i3c/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_driver_isp/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_driver_jpeg/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_driver_ledc/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_driver_parlio/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_driver_pcnt/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_driver_rmt/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_driver_sdm/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_driver_spi/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_driver_touch_sens/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_driver_tsens/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_driver_twai/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_driver_uart/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_eth/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_event/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_gdbstub/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_hid/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_http_client/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_http_server/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_https_ota/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_https_server/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_hw_support/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_lcd/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_libc/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_mm/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_netif/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_partition/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_phy/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_pm/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_psram/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_ringbuf/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_rom/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_security/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_stdio/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_system/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_timer/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_trace/Kconfig" +source "C:/esp/v6.0/esp-idf/components/esp_wifi/Kconfig" +source "C:/esp/v6.0/esp-idf/components/espcoredump/Kconfig" +source "C:/esp/v6.0/esp-idf/components/fatfs/Kconfig" +source "C:/esp/v6.0/esp-idf/components/freertos/Kconfig" +source "C:/esp/v6.0/esp-idf/components/hal/Kconfig" +source "C:/esp/v6.0/esp-idf/components/heap/Kconfig" +source "C:/esp/v6.0/esp-idf/components/ieee802154/Kconfig" +source "C:/esp/v6.0/esp-idf/components/log/Kconfig" +source "C:/esp/v6.0/esp-idf/components/lwip/Kconfig" +source "C:/esp/v6.0/esp-idf/components/mbedtls/Kconfig" +source "C:/esp/v6.0/esp-idf/components/nvs_flash/Kconfig" +source "C:/esp/v6.0/esp-idf/components/nvs_sec_provider/Kconfig" +source "C:/esp/v6.0/esp-idf/components/openthread/Kconfig" +source "C:/esp/v6.0/esp-idf/components/protocomm/Kconfig" +source "C:/esp/v6.0/esp-idf/components/pthread/Kconfig" +source "C:/esp/v6.0/esp-idf/components/sdmmc/Kconfig" +source "C:/esp/v6.0/esp-idf/components/soc/Kconfig" +source "C:/esp/v6.0/esp-idf/components/spi_flash/Kconfig" +source "C:/esp/v6.0/esp-idf/components/spiffs/Kconfig" +source "C:/esp/v6.0/esp-idf/components/tcp_transport/Kconfig" +source "C:/esp/v6.0/esp-idf/components/ulp/Kconfig" +source "C:/esp/v6.0/esp-idf/components/unity/Kconfig" +source "C:/esp/v6.0/esp-idf/components/vfs/Kconfig" +source "C:/esp/v6.0/esp-idf/components/wear_levelling/Kconfig" \ No newline at end of file diff --git a/build/kconfigs_projbuild.in b/build/kconfigs_projbuild.in new file mode 100644 index 0000000..1b56a15 --- /dev/null +++ b/build/kconfigs_projbuild.in @@ -0,0 +1,5 @@ +source "C:/esp/v6.0/esp-idf/components/bootloader/Kconfig.projbuild" +source "C:/esp/v6.0/esp-idf/components/esp_app_format/Kconfig.projbuild" +source "C:/esp/v6.0/esp-idf/components/esp_rom/Kconfig.projbuild" +source "C:/esp/v6.0/esp-idf/components/esptool_py/Kconfig.projbuild" +source "C:/esp/v6.0/esp-idf/components/partition_table/Kconfig.projbuild" \ No newline at end of file diff --git a/build/ldgen_libraries b/build/ldgen_libraries new file mode 100644 index 0000000..17310da --- /dev/null +++ b/build/ldgen_libraries @@ -0,0 +1,196 @@ +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/xtensa/libxtensa.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/cxx/libcxx.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_libc/libesp_libc.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/freertos/libfreertos.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hw_support/libesp_hw_support.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/heap/libheap.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/log/liblog.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/soc/libsoc.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/hal/libhal.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_rom/libesp_rom.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_common/libesp_common.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/libesp_system.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_stdio/libesp_stdio.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/xtensa/libxtensa.a +C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/vfs/libvfs.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_uart/libesp_driver_uart.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_uart/libesp_hal_uart.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_pm/libesp_pm.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_gpio/libesp_driver_gpio.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_gpio/libesp_hal_gpio.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_timer/libesp_timer.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_timg/libesp_hal_timg.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_dma/libesp_driver_dma.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_mm/libesp_mm.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/spi_flash/libspi_flash.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_mspi/libesp_hal_mspi.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_clock/libesp_hal_clock.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/bootloader_support/libbootloader_support.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/libmbedtls.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_security/libesp_security.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_security/libesp_hal_security.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/efuse/libefuse.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_partition/libesp_partition.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/app_update/libapp_update.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_app_format/libesp_app_format.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_bootloader_format/libesp_bootloader_format.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/lwip/liblwip.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library/libmbedtls.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/library/libmbedx509.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_security/libesp_security.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/libeverest.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/libp256m.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/nvs_flash/libnvs_flash.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/nvs_sec_provider/libnvs_sec_provider.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/libmbedtls.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_wdt/libesp_hal_wdt.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_i2s/libesp_hal_i2s.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_ringbuf/libesp_ringbuf.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_psram/libesp_psram.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/vfs/libvfs.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_gdbstub/libesp_gdbstub.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_adc/libesp_adc.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_i2s/libesp_driver_i2s.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_i2c/libesp_hal_i2c.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_http_client/libesp_http_client.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_event/libesp_event.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/tcp_transport/libtcp_transport.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp-tls/libesp-tls.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/http_parser/libhttp_parser.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_http_server/libesp_http_server.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_wifi/libesp_wifi.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_phy/libesp_phy.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_netif/libesp_netif.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/wpa_supplicant/libwpa_supplicant.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_coex/libesp_coex.a +C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libcore.a +C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libespnow.a +C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libmesh.a +C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a +C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libpp.a +C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a +C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libwapi.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_https_ota/libesp_https_ota.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/pthread/libpthread.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_stdio/libesp_stdio.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_clock/libesp_hal_clock.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_mspi/libesp_hal_mspi.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_security/libesp_hal_security.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_app_format/libesp_app_format.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_bootloader_format/libesp_bootloader_format.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/app_update/libapp_update.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_partition/libesp_partition.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/efuse/libefuse.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_gpio/libesp_driver_gpio.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_uart/libesp_hal_uart.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_pm/libesp_pm.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_mm/libesp_mm.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_dma/libesp_driver_dma.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_timg/libesp_hal_timg.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_wdt/libesp_hal_wdt.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_i2s/libesp_hal_i2s.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/bootloader_support/libbootloader_support.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/spi_flash/libspi_flash.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/libesp_system.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_common/libesp_common.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_rom/libesp_rom.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/hal/libhal.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/log/liblog.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/heap/libheap.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/soc/libsoc.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_gpio/libesp_hal_gpio.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hw_support/libesp_hw_support.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/freertos/libfreertos.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_libc/libesp_libc.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/pthread/libpthread.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/cxx/libcxx.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_timer/libesp_timer.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_ringbuf/libesp_ringbuf.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_psram/libesp_psram.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_uart/libesp_driver_uart.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_event/libesp_event.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/nvs_sec_provider/libnvs_sec_provider.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/nvs_flash/libnvs_flash.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_phy/libesp_phy.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/lwip/liblwip.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_netif/libesp_netif.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/wpa_supplicant/libwpa_supplicant.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_coex/libesp_coex.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_wifi/libesp_wifi.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_spi/libesp_driver_spi.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_gdbstub/libesp_gdbstub.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/unity/libunity.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/cmock/libcmock.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/unity/libunity.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/console/libconsole.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_i2c/libesp_hal_i2c.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_twai/libesp_hal_twai.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/driver/libdriver.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_twai/libesp_hal_twai.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/http_parser/libhttp_parser.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp-tls/libesp-tls.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_i2s/libesp_driver_i2s.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_adc/libesp_adc.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_cam/libesp_driver_cam.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_dac/libesp_driver_dac.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_i2c/libesp_driver_i2c.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ledc/libesp_hal_ledc.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_ledc/libesp_driver_ledc.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ledc/libesp_hal_ledc.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_mcpwm/libesp_hal_mcpwm.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_mcpwm/libesp_hal_mcpwm.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_pcnt/libesp_hal_pcnt.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_pcnt/libesp_hal_pcnt.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_rmt/libesp_hal_rmt.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_rmt/libesp_driver_rmt.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_rmt/libesp_hal_rmt.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/sdmmc/libsdmmc.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sd_intf/libesp_driver_sd_intf.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/sdmmc/libsdmmc.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdio/libesp_driver_sdio.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdm/libesp_driver_sdm.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sd_intf/libesp_driver_sd_intf.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_spi/libesp_driver_spi.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_twai/libesp_driver_twai.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_eth/libesp_eth.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_lcd/libesp_hal_lcd.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hid/libesp_hid.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/tcp_transport/libtcp_transport.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_http_client/libesp_http_client.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_http_server/libesp_http_server.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_https_ota/libesp_https_ota.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_https_server/libesp_https_server.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_lcd/libesp_lcd.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_i2c/libesp_driver_i2c.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_lcd/libesp_hal_lcd.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/protobuf-c/libprotobuf-c.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/protocomm/libprotocomm.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/protobuf-c/libprotobuf-c.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/console/libconsole.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_local_ctrl/libesp_local_ctrl.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/protocomm/libprotocomm.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_https_server/libesp_https_server.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/wear_levelling/libwear_levelling.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/fatfs/libfatfs.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/wear_levelling/libwear_levelling.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/perfmon/libperfmon.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/rt/librt.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/spiffs/libspiffs.a +C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/main/libmain.a diff --git a/build/ldgen_libraries.in b/build/ldgen_libraries.in new file mode 100644 index 0000000..acb1335 --- /dev/null +++ b/build/ldgen_libraries.in @@ -0,0 +1,196 @@ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ \ No newline at end of file diff --git a/build/log/idf_py_stderr_output_10804 b/build/log/idf_py_stderr_output_10804 new file mode 100644 index 0000000..22a925e --- /dev/null +++ b/build/log/idf_py_stderr_output_10804 @@ -0,0 +1 @@ +Command: ninja flash diff --git a/build/log/idf_py_stderr_output_2452 b/build/log/idf_py_stderr_output_2452 new file mode 100644 index 0000000..b243348 --- /dev/null +++ b/build/log/idf_py_stderr_output_2452 @@ -0,0 +1 @@ +Command: ninja all diff --git a/build/log/idf_py_stderr_output_25872 b/build/log/idf_py_stderr_output_25872 new file mode 100644 index 0000000..b243348 --- /dev/null +++ b/build/log/idf_py_stderr_output_25872 @@ -0,0 +1 @@ +Command: ninja all diff --git a/build/log/idf_py_stderr_output_28724 b/build/log/idf_py_stderr_output_28724 new file mode 100644 index 0000000..363add0 --- /dev/null +++ b/build/log/idf_py_stderr_output_28724 @@ -0,0 +1,8 @@ +Command: C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe C:\esp\v6.0\esp-idf\tools/idf_monitor.py -p COM6 -b 115200 --toolchain-prefix xtensa-esp32-elf- --target esp32 --revision 0 C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\modbus_tcp_esp32.elf C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\bootloader.elf --force-color -m 'C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe' 'C:\esp\v6.0\esp-idf\tools\idf.py' '-p' 'COM6' +--- Warning: GDB cannot open serial ports accessed as COMx +--- Using \\.\COM6 instead... +--- esp-idf-monitor 1.9.0 on \\.\COM6 115200 +--- Quit: Ctrl+] | Menu: Ctrl+T | Help: Ctrl+T followed by Ctrl+H +--- 0x40080400: _invalid_pc_placeholder at C:/esp/v6.0/esp-idf/components/xtensa/xtensa_vectors.S:2235 +--- 0x40080644: call_start_cpu0 at C:/esp/v6.0/esp-idf/components/bootloader/subproject/main/bootloader_start.c:27 + diff --git a/build/log/idf_py_stderr_output_7252 b/build/log/idf_py_stderr_output_7252 new file mode 100644 index 0000000..e2691bd --- /dev/null +++ b/build/log/idf_py_stderr_output_7252 @@ -0,0 +1,9 @@ +Command: cmake -G Ninja -B C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build -DPYTHON_DEPS_CHECKED=1 -DPYTHON=C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe -DESP_PLATFORM=1 -DCCACHE_ENABLE=False C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI +Configuration Report ++---------------------------------+ +| Parser Version: 1 | +| Verbosity: default | +| Defaults policy: sdkconfig | +| Status: Finished successfully | +| | ++---------------------------------+ diff --git a/build/log/idf_py_stdout_output_10804 b/build/log/idf_py_stdout_output_10804 new file mode 100644 index 0000000..ac8d82a --- /dev/null +++ b/build/log/idf_py_stdout_output_10804 @@ -0,0 +1,67 @@ +Command: ninja flash +[1/6] C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\main && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe C:/esp/v6.0/esp-idf/components/spiffs/spiffsgen.py 0xf0000 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/spiffs C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/spiffs.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len" +[2/6] C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe C:/esp/v6.0/esp-idf/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/partition_table/partition-table.bin C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/modbus_tcp_esp32.bin" +modbus_tcp_esp32.bin binary size 0x37830 bytes. Smallest app partition is 0x100000 bytes. 0xc87d0 bytes (78%) free. +[3/6] Performing build step for 'bootloader' +[1/1] C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe C:/esp/v6.0/esp-idf/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x1000 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/bootloader.bin" +Bootloader binary size 0x6610 bytes. 0x9f0 bytes (9%) free. +[4/6] No install step for 'bootloader' +[5/6] Completed 'bootloader' +[5/6] Running utility command for flash +esptool --chip esp32 -p COM6 -b 460800 --before=default-reset --after=hard-reset write-flash --flash-mode dio --flash-freq 40m --flash-size 2MB 0x1000 bootloader/bootloader.bin 0x8000 partition_table/partition-table.bin 0x110000 spiffs.bin 0x10000 modbus_tcp_esp32.bin +esptool v5.2.0 +Serial port COM6: +Connecting.... +Connected to ESP32 on COM6: +Chip type: ESP32-D0WD-V3 (revision v3.1) +Features: Wi-Fi, BT, Dual Core + LP Core, 240MHz, Vref calibration in eFuse, Coding Scheme None +Crystal frequency: 40MHz +MAC: cc:7b:5c:bb:cf:7c + +Uploading stub flasher... +Running stub flasher... +Stub flasher running. +Changing baud rate to 460800... +Changed. + +Configuring flash size... +SHA digest in image updated. +Flash will be erased from 0x00001000 to 0x00007fff... +Compressed 26128 bytes to 16571... + Writing at 0x00001000 [ ] 0.0% 0/16571 bytes... + Writing at 0x0000751c [============================> ] 98.9% 16384/16571 bytes... + Writing at 0x00007610 [==============================] 100.0% 16571/16571 bytes... +Wrote 26128 bytes (16571 compressed) at 0x00001000 in 0.9 seconds (234.6 kbit/s). +Verifying written data... +Hash of data verified. +Flash will be erased from 0x00008000 to 0x00008fff... +Compressed 3072 bytes to 118... + Writing at 0x00008000 [ ] 0.0% 0/118 bytes... + Writing at 0x00008c00 [==============================] 100.0% 118/118 bytes... +Wrote 3072 bytes (118 compressed) at 0x00008000 in 0.1 seconds (317.3 kbit/s). +Verifying written data... +Hash of data verified. +Flash will be erased from 0x00110000 to 0x001fffff... +Compressed 983040 bytes to 2709... + Writing at 0x00110000 [ ] 0.0% 0/2709 bytes... + Writing at 0x00200000 [==============================] 100.0% 2709/2709 bytes... +Wrote 983040 bytes (2709 compressed) at 0x00110000 in 5.9 seconds (1343.5 kbit/s). +Verifying written data... +Hash of data verified. +Flash will be erased from 0x00010000 to 0x00047fff... +Compressed 227376 bytes to 132896... + Writing at 0x00010000 [ ] 0.0% 0/132896 bytes... + Writing at 0x0001bccc [==> ] 12.3% 16384/132896 bytes... + Writing at 0x000236c2 [======> ] 24.7% 32768/132896 bytes... + Writing at 0x000290bb [==========> ] 37.0% 49152/132896 bytes... + Writing at 0x0002ef2b [=============> ] 49.3% 65536/132896 bytes... + Writing at 0x00034fcc [=================> ] 61.6% 81920/132896 bytes... + Writing at 0x0003a9e4 [=====================> ] 74.0% 98304/132896 bytes... + Writing at 0x00040c9c [========================> ] 86.3% 114688/132896 bytes... + Writing at 0x00046aea [============================> ] 98.6% 131072/132896 bytes... + Writing at 0x00047830 [==============================] 100.0% 132896/132896 bytes... +Wrote 227376 bytes (132896 compressed) at 0x00010000 in 3.2 seconds (571.9 kbit/s). +Verifying written data... +Hash of data verified. + +Hard resetting via RTS pin... diff --git a/build/log/idf_py_stdout_output_2452 b/build/log/idf_py_stdout_output_2452 new file mode 100644 index 0000000..93e08ab --- /dev/null +++ b/build/log/idf_py_stdout_output_2452 @@ -0,0 +1,1216 @@ +Command: ninja all +[1/1005] Generating project_elf_src_esp32.c +[2/1005] Preprocessing linker script C:/esp/v6.0/esp-idf/components/esp_system/ld/esp32/memory.ld.in -> C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/ld/memory.ld +[3/1005] Preprocessing linker script C:/esp/v6.0/esp-idf/components/esp_system/ld/esp32/sections.ld.in -> C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/ld/sections.ld.in +[4/1005] C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\main && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe C:/esp/v6.0/esp-idf/components/spiffs/spiffsgen.py 0xf0000 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/spiffs C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/spiffs.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len" +[5/1005] Generating ../../partition_table/partition-table.bin +Partition table binary generated. Contents: +******************************************************************************* +# ESP-IDF Partition Table +# Name, Type, SubType, Offset, Size, Flags +nvs,data,nvs,0x9000,24K, +phy_init,data,phy,0xf000,4K, +factory,app,factory,0x10000,1M, +spiffs,data,spiffs,0x110000,960K, +******************************************************************************* +[6/1005] Building C object esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj +[7/1005] Building C object esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj +[8/1005] Building C object esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj +[9/1005] Building C object esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj +[10/1005] Building C object esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj +[11/1005] Building C object esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj +[12/1005] Building C object esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj +[13/1005] Building C object esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws.c.obj +[14/1005] Building C object esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj +[15/1005] Building C object esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj +[16/1005] Building C object esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj +[17/1005] Building C object esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_internal.c.obj +[18/1005] Building C object esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj +[19/1005] Building C object esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj +[20/1005] Building C object esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali_curve_fitting.c.obj +[21/1005] Building C object esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali.c.obj +[22/1005] Building C object esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_common.c.obj +[23/1005] Building C object esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_socks_proxy.c.obj +[24/1005] Building C object esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_oneshot.c.obj +[25/1005] Building C object esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32/adc_cali_line_fitting.c.obj +[26/1005] Building C object esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32/adc_dma.c.obj +[27/1005] Building C object esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj +[28/1005] Building C object esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_continuous.c.obj +[29/1005] Linking C static library esp-idf\esp_https_ota\libesp_https_ota.a +[30/1005] Building C object esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_std.c.obj +[31/1005] Building C object esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_platform_port.c.obj +[32/1005] Building C object esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_pdm.c.obj +[33/1005] Building C object esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_platform.c.obj +[34/1005] Building C object esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto/esp_tls_crypto.c.obj +[35/1005] Building C object esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj +[36/1005] Building C object esp-idf/esp_hal_i2c/CMakeFiles/__idf_esp_hal_i2c.dir/i2c_hal_iram.c.obj +[37/1005] Building C object esp-idf/esp_hal_i2c/CMakeFiles/__idf_esp_hal_i2c.dir/i2c_hal.c.obj +[38/1005] Building C object esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_error_capture.c.obj +[39/1005] Building C object esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_common.c.obj +[40/1005] Building C object esp-idf/esp_hal_i2c/CMakeFiles/__idf_esp_hal_i2c.dir/esp32/i2c_periph.c.obj +[41/1005] Building ASM object esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/xt_debugexception.S.obj +[42/1005] Linking C static library esp-idf\esp_http_server\libesp_http_server.a +[43/1005] Building C object esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj +[44/1005] Building C object esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub_transport.c.obj +[45/1005] Building ASM object esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/gdbstub-entry.S.obj +[46/1005] Building C object esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj +[47/1005] Building C object esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj +[48/1005] Building C object esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/gdbstub_xtensa.c.obj +[49/1005] Building C object esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/lib_printf.c.obj +[50/1005] Building C object esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj +[51/1005] Building C object esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir/http_parser.c.obj +[52/1005] Building C object esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default_ap.c.obj +[53/1005] Building C object esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj +[54/1005] Building C object esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj +[55/1005] Building C object esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj +[56/1005] Building C object esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug_diagram.c.obj +[57/1005] Building C object esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/regulatory/esp_wifi_regulatory.c.obj +[58/1005] Building C object esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj +[59/1005] Building C object esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj +[60/1005] Linking C static library esp-idf\esp_http_client\libesp_http_client.a +[61/1005] Building C object esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/src/coexist_debug.c.obj +[62/1005] Building C object esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/esp32/esp_coex_adapter.c.obj +[63/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj +[64/1005] Building C object esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj +[65/1005] Building C object esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32/esp_adapter.c.obj +[66/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/eloop.c.obj +[67/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj +[68/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/sta_info.c.obj +[69/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj +[70/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj +[71/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/pmksa_cache_auth.c.obj +[72/1005] Linking C static library esp-idf\tcp_transport\libtcp_transport.a +[73/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_11.c.obj +[74/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/dragonfly.c.obj +[75/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/comeback_token.c.obj +[76/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj +[77/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj +[78/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/bitfield.c.obj +[79/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-kdf.c.obj +[80/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj +[81/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-siv.c.obj +[82/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj +[83/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj +[84/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj +[85/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj +[86/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-gcm.c.obj +[87/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj +[88/1005] Linking C static library esp-idf\esp_adc\libesp_adc.a +[89/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tlsprf.c.obj +[90/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-tlsprf.c.obj +[91/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-tlsprf.c.obj +[92/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-prf.c.obj +[93/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-prf.c.obj +[94/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tprf.c.obj +[95/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_common/eap_wsc_common.c.obj +[96/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj +[97/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-prf.c.obj +[98/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj +[99/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj +[100/1005] Linking C static library esp-idf\esp_driver_i2s\libesp_driver_i2s.a +[101/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/ieee802_11_common.c.obj +[102/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj +[103/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj +[104/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj +[105/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj +[106/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj +[107/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj +[108/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj +[109/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj +[110/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj +[111/1005] Linking C static library esp-idf\esp-tls\libesp-tls.a +[112/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_pac.c.obj +[113/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_common.c.obj +[114/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj +[115/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast.c.obj +[116/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj +[117/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj +[118/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj +[119/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj +[120/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj +[121/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj +[122/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj +[123/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/json.c.obj +[124/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj +[125/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj +[126/1005] Linking C static library esp-idf\http_parser\libhttp_parser.a +[127/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa2_api_port.c.obj +[128/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj +[129/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj +[130/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj +[131/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj +[132/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae_pk.c.obj +[133/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa_main.c.obj +[134/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpas_glue.c.obj +[135/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj +[136/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_common.c.obj +[137/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_owe.c.obj +[138/1005] Linking C static library esp-idf\esp_hal_i2c\libesp_hal_i2c.a +[139/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa3.c.obj +[140/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_eap_client.c.obj +[141/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wps.c.obj +[142/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_hostap.c.obj +[143/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj +[144/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj +[145/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c.obj +[146/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls.c.obj +[147/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/tls_mbedtls.c.obj +[148/1005] Building C object esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj +[149/1005] Building C object esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj +[150/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj +[151/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj +[152/1005] Building C object esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj +[153/1005] Linking C static library esp-idf\esp_gdbstub\libesp_gdbstub.a +[154/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj +[155/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c.obj +[156/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-ec.c.obj +[157/1005] Building C object esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/fastpbkdf2.c.obj +[158/1005] Building C object esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/esp_pbuf_ref.c.obj +[159/1005] Building C object esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj +[160/1005] Building C object esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/ethernetif.c.obj +[161/1005] Building C object esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sntp.c.obj +[162/1005] Building C object esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/wlanif.c.obj +[163/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj +[164/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj +[165/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj +[166/1005] Linking C static library esp-idf\esp_wifi\libesp_wifi.a +[167/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj +[168/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj +[169/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj +[170/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj +[171/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj +[172/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj +[173/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj +[174/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj +[175/1005] Building C object esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj +[176/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj +[177/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj +[178/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj +[179/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj +[180/1005] Linking C static library esp-idf\esp_coex\libesp_coex.a +[181/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj +[182/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj +[183/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj +[184/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj +[185/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj +[186/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj +[187/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj +[188/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj +[189/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj +[190/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj +[191/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj +[192/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj +[193/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj +[194/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj +[195/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj +[196/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj +[197/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj +[198/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj +[199/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj +[200/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj +[201/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj +[202/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj +[203/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj +[204/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj +[205/1005] Linking C static library esp-idf\wpa_supplicant\libwpa_supplicant.a +[206/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj +[207/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj +[208/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj +[209/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj +[210/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj +[211/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj +[212/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj +[213/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif_fdb.c.obj +[214/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj +[215/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj +[216/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj +[217/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj +[218/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj +[219/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj +[220/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj +[221/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif.c.obj +[222/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj +[223/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj +[224/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj +[225/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj +[226/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj +[227/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj +[228/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj +[229/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj +[230/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj +[231/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj +[232/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj +[233/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj +[234/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj +[235/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj +[236/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj +[237/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj +[238/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj +[239/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj +[240/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj +[241/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj +[242/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj +[243/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/lwip_default_hooks.c.obj +[244/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/tcp_isn_default.c.obj +[245/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/debug/lwip_debug.c.obj +[246/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/arc4.c.obj +[247/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/acd_dhcp_check.c.obj +[248/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/sockets_ext.c.obj +[249/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/if_index.c.obj +[250/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/freertos/sys_arch.c.obj +[251/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/des.c.obj +[252/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md4.c.obj +[253/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/sha1.c.obj +[254/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32xx/vfs_lwip.c.obj +[255/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md5.c.obj +[256/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj +[257/1005] Building C object esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj +[258/1005] Linking C static library esp-idf\esp_netif\libesp_netif.a +[259/1005] Building C object esp-idf/vfs/CMakeFiles/__idf_vfs.dir/nullfs.c.obj +[260/1005] Building C object esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj +[261/1005] Building C object esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_override.c.obj +[262/1005] Building C object esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/btbb_init.c.obj +[263/1005] Building C object esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/esp32/phy_init_data.c.obj +[264/1005] Building C object esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_calls.c.obj +[265/1005] Building C object esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_common.c.obj +[266/1005] Building C object esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj +[267/1005] Building C object esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init.c.obj +[268/1005] Building C object esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj +[269/1005] Building C object esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj +[270/1005] Building CXX object esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_platform.cpp.obj +[271/1005] Building C object esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader.c.obj +[272/1005] Building CXX object esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.obj +[273/1005] Building CXX object esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj +[274/1005] Linking C static library esp-idf\lwip\liblwip.a +[275/1005] Building C object esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader_aes.c.obj +[276/1005] Building C object esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader_xts_aes.c.obj +[277/1005] Building CXX object esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj +[278/1005] Building C object esp-idf/nvs_sec_provider/CMakeFiles/__idf_nvs_sec_provider.dir/nvs_sec_provider.c.obj +[279/1005] Building CXX object esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj +[280/1005] Building C object esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj +[281/1005] Building CXX object esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj +[282/1005] Linking C static library esp-idf\vfs\libvfs.a +[283/1005] Building C object esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj +[284/1005] Building CXX object esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj +[285/1005] Building CXX object esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_encrypted_partition.cpp.obj +[286/1005] Building C object esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj +[287/1005] Building CXX object esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj +[288/1005] Building CXX object esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj +[289/1005] Building C object esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_wakeup.c.obj +[290/1005] Building CXX object esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj +[291/1005] Building CXX object esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj +[292/1005] Building C object esp-idf/esp_psram/CMakeFiles/__idf_esp_psram.dir/system_layer/esp_psram_mspi.c.obj +[293/1005] Building C object esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_vfs.c.obj +[294/1005] Building C object esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj +[295/1005] Building CXX object esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj +[296/1005] Building CXX object esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj +[297/1005] Building C object esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj +[298/1005] Building C object esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_init.c.obj +[299/1005] Building C object esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj +[300/1005] Building C object esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj +[301/1005] Linking C static library esp-idf\esp_phy\libesp_phy.a +[302/1005] Building C object esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj +[303/1005] Building C object esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart.c.obj +[304/1005] Building C object esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_lac.c.obj +[305/1005] Building CXX object esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj +[306/1005] Building CXX object esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_init.cpp.obj +[307/1005] Building C object esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/init.c.obj +[308/1005] Building C object esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/heap.c.obj +[309/1005] Building C object esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/assert.c.obj +[310/1005] Building C object esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/abort.c.obj +[311/1005] Building C object esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj +[312/1005] Building C object esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_semaphore.c.obj +[313/1005] Building C object esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/pthread.c.obj +[314/1005] Building C object esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj +[315/1005] Building C object esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj +[316/1005] Building C object esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/poll.c.obj +[317/1005] Building C object esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj +[318/1005] Building CXX object esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj +[319/1005] Building C object esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/locks.c.obj +[320/1005] Building C object esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/random.c.obj +[321/1005] Building C object esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/getentropy.c.obj +[322/1005] Building C object esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/termios.c.obj +[323/1005] Linking C static library esp-idf\nvs_flash\libnvs_flash.a +[324/1005] Building C object esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/realpath.c.obj +[325/1005] Building C object esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/sysconf.c.obj +[326/1005] Building C object esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/picolibc/errno.c.obj +[327/1005] Building C object esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/reent_syscalls.c.obj +[328/1005] Building C object esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/port/esp_time_impl.c.obj +[329/1005] Building C object esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/scandir.c.obj +[330/1005] Building C object esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/syscalls.c.obj +[331/1005] Building C object esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/picolibc/rand.c.obj +[332/1005] Building C object esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/stdatomic.c.obj +[333/1005] Building C object esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/picolibc/getreent.c.obj +[334/1005] Building C object esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/picolibc/picolibc_init.c.obj +[335/1005] Building C object esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/time.c.obj +[336/1005] Building C object esp-idf/esp_libc/CMakeFiles/__idf_esp_libc.dir/src/picolibc/open_memstream.c.obj +[337/1005] Building C object esp-idf/freertos/CMakeFiles/__idf_freertos.dir/heap_idf.c.obj +[338/1005] Building C object esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj +[339/1005] Linking C static library esp-idf\nvs_sec_provider\libnvs_sec_provider.a +[340/1005] Building C object esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c.obj +[341/1005] Building C object esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_systick.c.obj +[342/1005] Building C object esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj +[343/1005] Building C object esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj +[344/1005] Building C object esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_overlay_os_hook.c.obj +[345/1005] Building ASM object esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/portasm.S.obj +[346/1005] Building C object esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions_event_groups.c.obj +[347/1005] Building C object esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj +[348/1005] Building C object esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj +[349/1005] Building C object esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj +[350/1005] Building C object esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj +[351/1005] Building C object esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/port.c.obj +[352/1005] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj +[353/1005] Building C object esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions.c.obj +[354/1005] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj +[355/1005] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/esp_cpu_intr.c.obj +[356/1005] Linking C static library esp-idf\esp_event\libesp_event.a +[357/1005] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cpu_region_protect.c.obj +[358/1005] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj +[359/1005] Building C object esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj +[360/1005] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj +[361/1005] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj +[362/1005] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj +[363/1005] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj +[364/1005] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj +[365/1005] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_gpio_reserve.c.obj +[366/1005] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/io_mux.c.obj +[367/1005] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj +[368/1005] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_tsens_ctrl.c.obj +[369/1005] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj +[370/1005] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj +[371/1005] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/esp_clk_tree.c.obj +[372/1005] Linking C static library esp-idf\esp_driver_uart\libesp_driver_uart.a +[373/1005] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_utils.c.obj +[374/1005] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_mspi.c.obj +[375/1005] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modem.c.obj +[376/1005] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_bus_lock.c.obj +[377/1005] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_clk_tree_common.c.obj +[378/1005] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj +[379/1005] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_share_hw_ctrl.c.obj +[380/1005] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_usb.c.obj +[381/1005] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_console.c.obj +[382/1005] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_uart.c.obj +[383/1005] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_event.c.obj +[384/1005] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_wdt.c.obj +[385/1005] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/chip_info.c.obj +[386/1005] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning/mspi_timing_tuning.c.obj +[387/1005] Linking C static library esp-idf\esp_psram\libesp_psram.a +[388/1005] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj +[389/1005] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/power_supply/brownout.c.obj +[390/1005] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk_init.c.obj +[391/1005] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_sleep.c.obj +[392/1005] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_time.c.obj +[393/1005] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_init.c.obj +[394/1005] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj +[395/1005] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj +[396/1005] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cache_sram_mmu.c.obj +[397/1005] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/sar_periph_ctrl.c.obj +[398/1005] Building C object esp-idf/esp_hal_touch_sens/CMakeFiles/__idf_esp_hal_touch_sens.dir/esp32/touch_sensor_legacy_hal.c.obj +[399/1005] Building C object esp-idf/esp_hal_touch_sens/CMakeFiles/__idf_esp_hal_touch_sens.dir/esp32/touch_sensor_periph.c.obj +[400/1005] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clock_output.c.obj +[401/1005] Building C object esp-idf/esp_hal_touch_sens/CMakeFiles/__idf_esp_hal_touch_sens.dir/touch_sensor_legacy_hal.c.obj +[402/1005] Building C object esp-idf/esp_hal_touch_sens/CMakeFiles/__idf_esp_hal_touch_sens.dir/touch_sens_hal.c.obj +[403/1005] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk.c.obj +[404/1005] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj +[405/1005] Building C object esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/esp32/rtc_io_periph.c.obj +[406/1005] Linking C static library esp-idf\esp_ringbuf\libesp_ringbuf.a +[407/1005] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/interrupts.c.obj +[408/1005] Building C object esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/sdm_hal.c.obj +[409/1005] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj +[410/1005] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dport_access.c.obj +[411/1005] Building C object esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/esp32/sdm_periph.c.obj +[412/1005] Building C object esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/rtc_io_hal.c.obj +[413/1005] Building C object esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/gpio_hal.c.obj +[414/1005] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/gpio_periph.c.obj +[415/1005] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/emac_periph.c.obj +[416/1005] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mpi_periph.c.obj +[417/1005] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/power_supply_periph.c.obj +[418/1005] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdmmc_periph.c.obj +[419/1005] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdio_slave_periph.c.obj +[420/1005] Building C object esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_timestamp.c.obj +[421/1005] Building C object esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32/memory_layout.c.obj +[422/1005] Building C object esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_lock.c.obj +[423/1005] Building C object esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_base.c.obj +[424/1005] Building C object esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj +[425/1005] Linking C static library esp-idf\esp_timer\libesp_timer.a +[426/1005] Building C object esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj +[427/1005] Building C object esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj +[428/1005] Building C object esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj +[429/1005] Building C object esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj +[430/1005] Building C object esp-idf/log/CMakeFiles/__idf_log.dir/src/log_format_text.c.obj +[431/1005] Building C object esp-idf/log/CMakeFiles/__idf_log.dir/src/os/util.c.obj +[432/1005] Building C object esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj +[433/1005] Building C object esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj +[434/1005] Building C object esp-idf/log/CMakeFiles/__idf_log.dir/src/log_print.c.obj +[435/1005] Building C object esp-idf/heap/CMakeFiles/__idf_heap.dir/tlsf/tlsf.c.obj +[436/1005] Building C object esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/log_level.c.obj +[437/1005] Building C object esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/tag_log_level.c.obj +[438/1005] Building C object esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/linked_list/log_linked_list.c.obj +[439/1005] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj +[440/1005] Building C object esp-idf/log/CMakeFiles/__idf_log.dir/src/log.c.obj +[441/1005] Building C object esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_write.c.obj +[442/1005] Building C object esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/cache/log_binary_heap.c.obj +[443/1005] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj +[444/1005] Linking C static library esp-idf\cxx\libcxx.a +[445/1005] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/efuse_hal.c.obj +[446/1005] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/cache_hal_esp32.c.obj +[447/1005] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/color_hal.c.obj +[448/1005] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj +[449/1005] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/sdmmc_hal.c.obj +[450/1005] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/emac_hal.c.obj +[451/1005] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj +[452/1005] Building C object esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj +[453/1005] Building C object esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj +[454/1005] Building C object esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj +[455/1005] Building ASM object esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj +[456/1005] Building C object esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_serial_output.c.obj +[457/1005] Building C object esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj +[458/1005] Building C object esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj +[459/1005] Building C object esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj +[460/1005] Linking C static library esp-idf\pthread\libpthread.a +[461/1005] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/sdio_slave_hal.c.obj +[462/1005] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj +[463/1005] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj +[464/1005] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj +[465/1005] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj +[466/1005] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj +[467/1005] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj +[468/1005] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj +[469/1005] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj +[470/1005] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj +[471/1005] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj +[472/1005] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj +[473/1005] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup_funcs.c.obj +[474/1005] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj +[475/1005] Building C object esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj +[476/1005] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj +[477/1005] Building ASM object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_handler.S.obj +[478/1005] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt_impl_timergroup.c.obj +[479/1005] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt.c.obj +[480/1005] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_ipc_isr.c.obj +[481/1005] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_port.c.obj +[482/1005] Building ASM object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_handler_asm.S.obj +[483/1005] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj +[484/1005] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_system_chip.c.obj +[485/1005] Linking C static library esp-idf\esp_libc\libesp_libc.a +[486/1005] Building ASM object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_routines.S.obj +[487/1005] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/image_process.c.obj +[488/1005] Building ASM object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack_asm.S.obj +[489/1005] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack.c.obj +[490/1005] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_arch.c.obj +[491/1005] Building ASM object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers_asm.S.obj +[492/1005] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_stubs.c.obj +[493/1005] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/trax.c.obj +[494/1005] Building ASM object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/highint_hdl.S.obj +[495/1005] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers.c.obj +[496/1005] Building C object esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj +[497/1005] Building C object esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj +[498/1005] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/reset_reason.c.obj +[499/1005] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/clk.c.obj +[500/1005] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/cache_err_int.c.obj +[501/1005] Building C object esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj +[502/1005] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/system_internal.c.obj +[503/1005] Building C object esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj +[504/1005] Building C object esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj +[505/1005] Building C object esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj +[506/1005] Building C object esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj +[507/1005] Building C object esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj +[508/1005] Building C object esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj +[509/1005] Building C object esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj +[510/1005] Building C object esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_blockdev.c.obj +[511/1005] Building C object esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj +[512/1005] Linking C static library esp-idf\freertos\libfreertos.a +[513/1005] Building C object esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj +[514/1005] Building C object esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj +[515/1005] Building C object esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj +[516/1005] Building C object esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj +[517/1005] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj +[518/1005] Building C object esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj +[519/1005] Building C object esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj +[520/1005] Building C object esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj +[521/1005] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj +[522/1005] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj +[523/1005] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj +[524/1005] Building C object esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj +[525/1005] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj +[526/1005] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj +[527/1005] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj +[528/1005] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj +[529/1005] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32.c.obj +[530/1005] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj +[531/1005] Building C object esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/esp32/adc_periph.c.obj +[532/1005] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj +[533/1005] Linking C static library esp-idf\esp_hw_support\libesp_hw_support.a +[534/1005] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj +[535/1005] Building C object esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_hal_common.c.obj +[536/1005] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/secure_boot_secure_features.c.obj +[537/1005] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32.c.obj +[538/1005] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_sha.c.obj +[539/1005] Building C object esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/esp32/dac_periph.c.obj +[540/1005] Building C object esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_oneshot_hal.c.obj +[541/1005] Building C object esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_hal.c.obj +[542/1005] Building C object esp-idf/esp_hal_wdt/CMakeFiles/__idf_esp_hal_wdt.dir/esp32/mwdt_periph.c.obj +[543/1005] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj +[544/1005] Building C object esp-idf/esp_hal_i2s/CMakeFiles/__idf_esp_hal_i2s.dir/i2s_hal.c.obj +[545/1005] Building C object esp-idf/esp_hal_i2s/CMakeFiles/__idf_esp_hal_i2s.dir/esp32/i2s_periph.c.obj +[546/1005] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj +[547/1005] Building C object esp-idf/esp_hal_timg/CMakeFiles/__idf_esp_hal_timg.dir/esp32/timer_periph.c.obj +[548/1005] Building C object esp-idf/esp_hal_wdt/CMakeFiles/__idf_esp_hal_wdt.dir/wdt_hal_iram.c.obj +[549/1005] Building C object esp-idf/esp_hal_timg/CMakeFiles/__idf_esp_hal_timg.dir/timer_hal.c.obj +[550/1005] Linking C static library esp-idf\esp_hal_touch_sens\libesp_hal_touch_sens.a +[551/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/psa_crypto_client.c.obj +[552/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/psa_its_file.c.obj +[553/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/tf_psa_crypto_version.c.obj +[554/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/esp_mem.c.obj +[555/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/tf_psa_crypto_config.c.obj +[556/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj +[557/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj +[558/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/esp_hardware.c.obj +[559/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/psa_crypto_storage.c.obj +[560/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_crypto_storage/esp_psa_its.c.obj +[561/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/psa_crypto_slot_management.c.obj +[562/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj +[563/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj +[564/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/aes/esp_aes.c.obj +[565/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj +[566/1005] Linking C static library esp-idf\esp_hal_gpio\libesp_hal_gpio.a +[567/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_sha/psa_crypto_driver_esp_sha.c.obj +[568/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_mac/psa_crypto_driver_esp_hmac_transparent.c.obj +[569/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj +[570/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_md/psa_crypto_driver_esp_md5.c.obj +[571/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_sha/parallel_engine/psa_crypto_driver_esp_sha256.c.obj +[572/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_sha/parallel_engine/psa_crypto_driver_esp_sha512.c.obj +[573/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/sha/parallel_engine/sha.c.obj +[574/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj +[575/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_sha/parallel_engine/psa_crypto_driver_esp_sha1.c.obj +[576/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_aes/psa_crypto_driver_esp_aes.c.obj +[577/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_aes/psa_crypto_driver_esp_aes_gcm.c.obj +[578/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/esp_mac/psa_crypto_driver_esp_cmac.c.obj +[579/1005] Linking C static library esp-idf\soc\libsoc.a +[580/1005] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj +[581/1005] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj +[582/1005] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj +[583/1005] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj +[584/1005] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj +[585/1005] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj +[586/1005] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj +[587/1005] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj +[588/1005] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj +[589/1005] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj +[590/1005] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj +[591/1005] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj +[592/1005] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/version_features.c.obj +[593/1005] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj +[594/1005] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj +[595/1005] Linking C static library esp-idf\heap\libheap.a +[596/1005] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/esp_platform_time.c.obj +[597/1005] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/version.c.obj +[598/1005] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/timing.c.obj +[599/1005] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj +[600/1005] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/mbedtls_config.c.obj +[601/1005] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj +[602/1005] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/esp_timing.c.obj +[603/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/CMakeFiles/tfpsacrypto.dir/psa_crypto.c.obj +[604/1005] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj +[605/1005] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/esp_psa_crypto_init.c.obj +[606/1005] Linking C static library esp-idf\log\liblog.a +[607/1005] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/error.c.obj +[608/1005] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj +[609/1005] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj +[610/1005] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj +[611/1005] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/esp/v6.0/esp-idf/components/mbedtls/port/net_sockets.c.obj +[612/1005] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj +[613/1005] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj +[614/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/aesce.c.obj +[615/1005] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj +[616/1005] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_oid.c.obj +[617/1005] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj +[618/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/aesni.c.obj +[619/1005] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj +[620/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/aria.c.obj +[621/1005] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj +[622/1005] Linking C static library esp-idf\hal\libhal.a +[623/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/base64.c.obj +[624/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/asn1parse.c.obj +[625/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/bignum_mod_raw.c.obj +[626/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/asn1write.c.obj +[627/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/bignum_mod.c.obj +[628/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/camellia.c.obj +[629/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/block_cipher.c.obj +[630/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/aes.c.obj +[631/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/chacha20.c.obj +[632/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/chachapoly.c.obj +[633/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ccm.c.obj +[634/1005] Building C object esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj +[635/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/bignum_core.c.obj +[636/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ecdh.c.obj +[637/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/constant_time.c.obj +[638/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/cipher_wrap.c.obj +[639/1005] Linking C static library esp-idf\esp_rom\libesp_rom.a +[640/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/cmac.c.obj +[641/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ecp_curves_new.c.obj +[642/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/bignum.c.obj +[643/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ecdsa.c.obj +[644/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ctr_drbg.c.obj +[645/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ecjpake.c.obj +[646/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/cipher.c.obj +[647/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/entropy.c.obj +[648/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/entropy_poll.c.obj +[649/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/lmots.c.obj +[650/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ecp_curves.c.obj +[651/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/lms.c.obj +[652/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/md5.c.obj +[653/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/hmac_drbg.c.obj +[654/1005] Linking C static library esp-idf\esp_common\libesp_common.a +[655/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/memory_buffer_alloc.c.obj +[656/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/nist_kw.c.obj +[657/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ecp.c.obj +[658/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pem.c.obj +[659/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/md.c.obj +[660/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/oid.c.obj +[661/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/gcm.c.obj +[662/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pk_rsa.c.obj +[663/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pk_ecc.c.obj +[664/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pk_wrap.c.obj +[665/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/platform.c.obj +[666/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pkcs5.c.obj +[667/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/poly1305.c.obj +[668/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pkparse.c.obj +[669/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pk.c.obj +[670/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/platform_util.c.obj +[671/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/pkwrite.c.obj +[672/1005] Linking C static library esp-idf\esp_system\libesp_system.a +[673/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_aead.c.obj +[674/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_mac.c.obj +[675/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/ripemd160.c.obj +[676/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_cipher.c.obj +[677/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_ffdh.c.obj +[678/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_pake.c.obj +[679/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_hash.c.obj +[680/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/sha1.c.obj +[681/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_rsa.c.obj +[682/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/sha3.c.obj +[683/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_crypto_ecp.c.obj +[684/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/psa_util.c.obj +[685/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/rsa_alt_helpers.c.obj +[686/1005] Creating directories for 'bootloader' +[687/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/sha256.c.obj +[688/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/CMakeFiles/everest.dir/library/everest.c.obj +[689/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj +[690/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/CMakeFiles/everest.dir/library/x25519.c.obj +[691/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj +[692/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/threading.c.obj +[693/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj +[694/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/sha512.c.obj +[695/1005] Linking C static library esp-idf\spi_flash\libspi_flash.a +[696/1005] No download step for 'bootloader' +[697/1005] No update step for 'bootloader' +[698/1005] No patch step for 'bootloader' +[699/1005] Building C object esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/CMakeFiles/builtin.dir/src/rsa.c.obj +[700/1005] Linking C static library esp-idf\bootloader_support\libbootloader_support.a +[701/1005] Linking C static library esp-idf\esp_hal_ana_conv\libesp_hal_ana_conv.a +[702/1005] Linking C static library esp-idf\esp_hal_i2s\libesp_hal_i2s.a +[703/1005] Linking C static library esp-idf\esp_hal_wdt\libesp_hal_wdt.a +[704/1005] Linking C static library esp-idf\esp_hal_timg\libesp_hal_timg.a +[705/1005] Linking CXX static library esp-idf\mbedtls\mbedtls\tf-psa-crypto\core\libtfpsacrypto.a +[706/1005] Linking CXX static library esp-idf\mbedtls\mbedtls\library\libmbedtls.a +[707/1005] Linking CXX static library esp-idf\mbedtls\mbedtls\library\libmbedx509.a +[708/1005] Linking CXX static library esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\builtin\libmbed-builtin.a +[709/1005] Linking CXX static library esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\p256-m\libp256m.a +[710/1005] Linking CXX static library esp-idf\mbedtls\mbedtls\tf-psa-crypto\drivers\everest\libeverest.a +[711/1005] Generating x509_crt_bundle +[712/1005] Generating ../../x509_crt_bundle.S +[713/1005] Building ASM object esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj +[714/1005] Building C object esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32/ext_mem_layout.c.obj +[715/1005] Building C object esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/heap_align_hw.c.obj +[716/1005] Building C object esp-idf/esp_driver_dma/CMakeFiles/__idf_esp_driver_dma.dir/src/esp_dma_utils.c.obj +[717/1005] Building C object esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj +[718/1005] Building C object esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/cache_esp32.c.obj +[719/1005] Building C object esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache_utils.c.obj +[720/1005] Building C object esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache_msync.c.obj +[721/1005] Building C object esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/uart_hal_iram.c.obj +[722/1005] Building C object esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/uart_hal.c.obj +[723/1005] Building C object esp-idf/esp_driver_dma/CMakeFiles/__idf_esp_driver_dma.dir/src/gdma_link.c.obj +[724/1005] Building C object esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_mmu_map.c.obj +[725/1005] Building C object esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj +[726/1005] Building C object esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj +[727/1005] Building C object esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj +[728/1005] Building C object esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/esp32/uart_periph.c.obj +[729/1005] Building C object esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_lock.c.obj +[730/1005] Building C object esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_glitch_filter_ops.c.obj +[731/1005] Building C object esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj +[732/1005] Building C object esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_fields.c.obj +[733/1005] Building C object esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/init.c.obj +[734/1005] Building C object esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_periph_clk.c.obj +[735/1005] Building C object esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj +[736/1005] Building C object esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/without_key_purposes/three_key_blocks/esp_efuse_api_key.c.obj +[737/1005] Building C object esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_utility.c.obj +[738/1005] Building C object esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj +[739/1005] Linking C static library esp-idf\mbedtls\libmbedtls.a +[740/1005] Building C object esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_startup.c.obj +[741/1005] Building C object esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/rtc_io.c.obj +[742/1005] Building C object esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj +[743/1005] Building C object esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj +[744/1005] Building C object esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj +[745/1005] Building C object esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj +[746/1005] Building C object esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio.c.obj +[747/1005] Building C object esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj +[748/1005] Building C object esp-idf/esp_hal_security/CMakeFiles/__idf_esp_hal_security.dir/mpi_hal.c.obj +[749/1005] Building C object esp-idf/esp_hal_security/CMakeFiles/__idf_esp_hal_security.dir/aes_hal.c.obj +[750/1005] Building C object esp-idf/esp_hal_security/CMakeFiles/__idf_esp_hal_security.dir/sha_hal.c.obj +[751/1005] Building C object esp-idf/esp_hal_security/CMakeFiles/__idf_esp_hal_security.dir/mpu_hal.c.obj +[752/1005] Building C object esp-idf/esp_hal_mspi/CMakeFiles/__idf_esp_hal_mspi.dir/spi_flash_encrypt_hal_iram.c.obj +[753/1005] Building C object esp-idf/esp_hal_mspi/CMakeFiles/__idf_esp_hal_mspi.dir/spi_flash_hal.c.obj +[754/1005] Building C object esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/esp32/spi_periph.c.obj +[755/1005] Building C object esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_hal.c.obj +[756/1005] Building C object esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj +[757/1005] Linking C static library esp-idf\esp_driver_dma\libesp_driver_dma.a +[758/1005] Building C object esp-idf/esp_hal_clock/CMakeFiles/__idf_esp_hal_clock.dir/esp32/clk_tree_hal.c.obj +[759/1005] Building C object esp-idf/esp_hal_mspi/CMakeFiles/__idf_esp_hal_mspi.dir/spi_flash_hal_iram.c.obj +[760/1005] Building C object esp-idf/esp_stdio/CMakeFiles/__idf_esp_stdio.dir/stdio_simple.c.obj +[761/1005] Building C object esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_slave_hal_iram.c.obj +[762/1005] Building C object esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj +[763/1005] Building C object esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_slave_hal.c.obj +[764/1005] Building C object esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj +[765/1005] Building ASM object esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_context.S.obj +[766/1005] Building ASM object esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr_asm.S.obj +[767/1005] Building C object esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_hal_iram.c.obj +[768/1005] Building C object esp-idf/esp_stdio/CMakeFiles/__idf_esp_stdio.dir/stdio_vfs.c.obj +[769/1005] Building ASM object esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_vectors.S.obj +[770/1005] Building C object esp-idf/esp_stdio/CMakeFiles/__idf_esp_stdio.dir/stdio_syscalls_simple.c.obj +[771/1005] Building C object esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj +[772/1005] Building C object esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr.c.obj +[773/1005] Building C object esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_blockdev.c.obj +[774/1005] Linking C static library esp-idf\esp_mm\libesp_mm.a +[775/1005] Building C object esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sd_pwr_ctrl/sd_pwr_ctrl.c.obj +[776/1005] Building C object esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj +[777/1005] Building C object esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj +[778/1005] Building C object esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj +[779/1005] Building C object esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_dma.c.obj +[780/1005] Building C object esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj +[781/1005] Building C object esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj +[782/1005] Building C object esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj +[783/1005] Building C object esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj +[784/1005] Building C object esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_common.c.obj +[785/1005] Building C object esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave.c.obj +[786/1005] Linking C static library esp-idf\esp_pm\libesp_pm.a +[787/1005] Building C object esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl_internal.c.obj +[788/1005] Building C object esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_common.c.obj +[789/1005] Building C object esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj +[790/1005] Building C object esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_master.c.obj +[791/1005] Building C object esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj +[792/1005] Building C object esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj +[793/1005] Building C object esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj +[794/1005] Building C object esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj +[795/1005] Building C object esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl_chip.c.obj +[796/1005] Building C object esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj +[797/1005] Building C object esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj +[798/1005] Building C object esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj +[799/1005] Building C object esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj +[800/1005] Building C object esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj +[801/1005] Building C object esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj +[802/1005] Building C object esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj +[803/1005] Building C object esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj +[804/1005] Linking C static library esp-idf\esp_hal_uart\libesp_hal_uart.a +[805/1005] Building C object esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_compat.c.obj +[806/1005] Building C object esp-idf/esp_driver_sd_intf/CMakeFiles/__idf_esp_driver_sd_intf.dir/sd_host.c.obj +[807/1005] Building C object esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_cache.c.obj +[808/1005] Building C object esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_freertos.c.obj +[809/1005] Building C object esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj +[810/1005] Building C object esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj +[811/1005] Building C object esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj +[812/1005] Building C object esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj +[813/1005] Building C object esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_memory.c.obj +[814/1005] Building C object esp-idf/unity/CMakeFiles/__idf_unity.dir/port/esp/unity_utils_memory_esp.c.obj +[815/1005] Building C object esp-idf/esp_hal_twai/CMakeFiles/__idf_esp_hal_twai.dir/esp32/twai_periph.c.obj +[816/1005] Building C object esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj +[817/1005] Linking C static library esp-idf\esp_driver_gpio\libesp_driver_gpio.a +[818/1005] Building C object esp-idf/esp_hal_ledc/CMakeFiles/__idf_esp_hal_ledc.dir/ledc_hal.c.obj +[819/1005] Building C object esp-idf/esp_hal_ledc/CMakeFiles/__idf_esp_hal_ledc.dir/esp32/ledc_periph.c.obj +[820/1005] Building C object esp-idf/esp_hal_twai/CMakeFiles/__idf_esp_hal_twai.dir/twai_hal_v1.c.obj +[821/1005] Building C object esp-idf/esp_hal_ledc/CMakeFiles/__idf_esp_hal_ledc.dir/ledc_hal_iram.c.obj +[822/1005] Building C object esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_common.c.obj +[823/1005] Building C object esp-idf/esp_hal_pcnt/CMakeFiles/__idf_esp_hal_pcnt.dir/pcnt_hal.c.obj +[824/1005] Building C object esp-idf/esp_hal_mcpwm/CMakeFiles/__idf_esp_hal_mcpwm.dir/esp32/mcpwm_periph.c.obj +[825/1005] Building C object esp-idf/esp_hal_mcpwm/CMakeFiles/__idf_esp_hal_mcpwm.dir/mcpwm_hal.c.obj +[826/1005] Building C object esp-idf/esp_hal_pcnt/CMakeFiles/__idf_esp_hal_pcnt.dir/esp32/pcnt_periph.c.obj +[827/1005] Building C object esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_slave.c.obj +[828/1005] Building C object esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj +[829/1005] Building C object esp-idf/esp_hal_rmt/CMakeFiles/__idf_esp_hal_rmt.dir/rmt_hal.c.obj +[830/1005] Building C object esp-idf/esp_hal_rmt/CMakeFiles/__idf_esp_hal_rmt.dir/esp32/rmt_periph.c.obj +[831/1005] Linking C static library esp-idf\esp_security\libesp_security.a +[832/1005] Building C object esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_crc.c.obj +[833/1005] Building C object esp-idf/esp_hal_lcd/CMakeFiles/__idf_esp_hal_lcd.dir/esp32/lcd_periph.c.obj +[834/1005] Building C object esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_master.c.obj +[835/1005] Building C object esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/legacy/src/sdmmc_transaction.c.obj +[836/1005] Building C object esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj +[837/1005] Building C object esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/legacy/src/sdmmc_host.c.obj +[838/1005] Building C object esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_transaction.c.obj +[839/1005] Building C object esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj +[840/1005] Building C object esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/src/sd_trans_sdmmc.c.obj +[841/1005] Building C object esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj +[842/1005] Building C object esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj +[843/1005] Building C object esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_host.c.obj +[844/1005] Building C object esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec2.pb-c.c.obj +[845/1005] Building C object esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj +[846/1005] Building C object esp-idf/esp_driver_sdmmc/CMakeFiles/__idf_esp_driver_sdmmc.dir/src/sd_host_sdmmc.c.obj +[847/1005] Building C object esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir/src/https_server.c.obj +[848/1005] Linking C static library esp-idf\efuse\libefuse.a +[849/1005] Building C object esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj +[850/1005] Building C object esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp_mpi.c.obj +[851/1005] Building CXX object esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj +[852/1005] Building CXX object esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj +[853/1005] Building CXX object esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj +[854/1005] Building CXX object esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj +[855/1005] Building C object esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj +[856/1005] Building CXX object esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj +[857/1005] Building C object esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp.c.obj +[858/1005] Building C object esp-idf/cmock/CMakeFiles/__idf_cmock.dir/CMock/src/cmock.c.obj +[859/1005] Building CXX object esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj +[860/1005] Linking C static library esp-idf\esp_partition\libesp_partition.a +[861/1005] Building C object esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_common.c.obj +[862/1005] Building C object esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security2.c.obj +[863/1005] Building CXX object esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj +[864/1005] Building C object esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer.c.obj +[865/1005] Building C object esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/dvp_share_ctrl.c.obj +[866/1005] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/touch_sensor_common.c.obj +[867/1005] Building C object esp-idf/esp_driver_dac/CMakeFiles/__idf_esp_driver_dac.dir/dac_oneshot.c.obj +[868/1005] Building C object esp-idf/esp_driver_cam/CMakeFiles/__idf_esp_driver_cam.dir/esp_cam_ctlr.c.obj +[869/1005] Building C object esp-idf/esp_driver_dac/CMakeFiles/__idf_esp_driver_dac.dir/dac_cosine.c.obj +[870/1005] Building C object esp-idf/esp_driver_dac/CMakeFiles/__idf_esp_driver_dac.dir/dac_common.c.obj +[871/1005] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/esp32/touch_sensor.c.obj +[872/1005] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj +[873/1005] Building C object esp-idf/esp_driver_dac/CMakeFiles/__idf_esp_driver_dac.dir/dac_continuous.c.obj +[874/1005] Linking C static library esp-idf\app_update\libapp_update.a +[875/1005] Building C object esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.c.obj +[876/1005] Building C object esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_com.c.obj +[877/1005] Building C object esp-idf/esp_driver_dac/CMakeFiles/__idf_esp_driver_dac.dir/esp32/dac_dma.c.obj +[878/1005] Building C object esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cmpr.c.obj +[879/1005] Building C object esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_fault.c.obj +[880/1005] Building C object esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cap.c.obj +[881/1005] Building C object esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_oper.c.obj +[882/1005] Building C object esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_gen.c.obj +[883/1005] Building C object esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_sync.c.obj +[884/1005] Linking C static library esp-idf\esp_bootloader_format\libesp_bootloader_format.a +[885/1005] Building C object esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder.c.obj +[886/1005] Building C object esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_timer.c.obj +[887/1005] Building C object esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_common.c.obj +[888/1005] Building C object esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir/src/ledc.c.obj +[889/1005] Building C object esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_bytes.c.obj +[890/1005] Building C object esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_copy.c.obj +[891/1005] Building C object esp-idf/esp_driver_pcnt/CMakeFiles/__idf_esp_driver_pcnt.dir/src/pulse_cnt.c.obj +[892/1005] Building C object esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_simple.c.obj +[893/1005] Building C object esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_rx.c.obj +[894/1005] Building C object esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir/src/sdm.c.obj +[895/1005] Building C object esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_tx.c.obj +[896/1005] Linking C static library esp-idf\esp_app_format\libesp_app_format.a +[897/1005] Building C object esp-idf/esp_driver_sdio/CMakeFiles/__idf_esp_driver_sdio.dir/src/sdio_slave.c.obj +[898/1005] Building C object esp-idf/esp_driver_touch_sens/CMakeFiles/__idf_esp_driver_touch_sens.dir/common/touch_sens_common.c.obj +[899/1005] Building C object esp-idf/esp_driver_touch_sens/CMakeFiles/__idf_esp_driver_touch_sens.dir/hw_ver1/touch_version_specific.c.obj +[900/1005] Building C object esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir/esp_twai.c.obj +[901/1005] Building C object esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj +[902/1005] Building C object esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/phy/esp_eth_phy_802_3.c.obj +[903/1005] Building C object esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj +[904/1005] Building C object esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/mac/esp_eth_mac_esp_dma.c.obj +[905/1005] Building C object esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidd.c.obj +[906/1005] Building C object esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/phy/esp_eth_phy_generic.c.obj +[907/1005] Building C object esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir/esp_twai_onchip.c.obj +[908/1005] Building C object esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hid_common.c.obj +[909/1005] Linking C static library esp-idf\esp_hal_security\libesp_hal_security.a +[910/1005] Building C object esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/mac/esp_eth_mac_esp_gpio.c.obj +[911/1005] Building C object esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io.c.obj +[912/1005] Building C object esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_common.c.obj +[913/1005] Building C object esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidh.c.obj +[914/1005] Building C object esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/mac/esp_eth_mac_esp.c.obj +[915/1005] Building C object esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ops.c.obj +[916/1005] Building C object esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ssd1306.c.obj +[917/1005] Building C object esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_st7789.c.obj +[918/1005] Building C object esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i2c/esp_lcd_panel_io_i2c.c.obj +[919/1005] Building C object esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/spi/esp_lcd_panel_io_spi.c.obj +[920/1005] Building C object esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c/esp_local_ctrl.pb-c.c.obj +[921/1005] Building C object esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/i80/esp_lcd_panel_io_i2s.c.obj +[922/1005] Building C object esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_httpd.c.obj +[923/1005] Linking C static library esp-idf\esp_hal_mspi\libesp_hal_mspi.a +[924/1005] Building C object esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj +[925/1005] Building C object esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj +[926/1005] Building C object esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj +[927/1005] Building C object esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj +[928/1005] Building C object esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj +[929/1005] Building C object esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj +[930/1005] Building C object esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj +[931/1005] Building C object esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj +[932/1005] Building C object esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_access.c.obj +[933/1005] Building C object esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_masks.c.obj +[934/1005] Building C object esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_apis.c.obj +[935/1005] Building C object esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj +[936/1005] Building C object esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj +[937/1005] Building C object esp-idf/rt/CMakeFiles/__idf_rt.dir/FreeRTOS_POSIX_utils.c.obj +[938/1005] Linking C static library esp-idf\esp_hal_clock\libesp_hal_clock.a +[939/1005] Building C object esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj +[940/1005] Building C object esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj +[941/1005] Building C object esp-idf/rt/CMakeFiles/__idf_rt.dir/FreeRTOS_POSIX_mqueue.c.obj +[942/1005] Building C object esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj +[943/1005] Building C object esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj +[944/1005] Building C object esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj +[945/1005] Building C object esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj +[946/1005] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/modbus_memory.c.obj +[947/1005] Linking C static library esp-idf\esp_hal_gpspi\libesp_hal_gpspi.a +[948/1005] Building C object esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj +[949/1005] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/config_store.c.obj +[950/1005] Building C object esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj +[951/1005] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/modbus_points.c.obj +[952/1005] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj +[953/1005] Building C object esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj +[954/1005] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/modbus_rtu.c.obj +[955/1005] Linking C static library esp-idf\esp_stdio\libesp_stdio.a +[956/1005] Linking C static library esp-idf\xtensa\libxtensa.a +[957/1005] Linking C static library esp-idf\esp_driver_spi\libesp_driver_spi.a +[958/1005] Linking C static library esp-idf\protobuf-c\libprotobuf-c.a +[959/1005] Linking C static library esp-idf\sdmmc\libsdmmc.a +[960/1005] Linking C static library esp-idf\esp_hal_twai\libesp_hal_twai.a +[961/1005] Linking C static library esp-idf\esp_hal_ledc\libesp_hal_ledc.a +[962/1005] Linking C static library esp-idf\esp_hal_lcd\libesp_hal_lcd.a +[963/1005] Linking C static library esp-idf\esp_hal_rmt\libesp_hal_rmt.a +[964/1005] Linking C static library esp-idf\esp_https_server\libesp_https_server.a +[965/1005] Linking C static library esp-idf\esp_hal_pcnt\libesp_hal_pcnt.a +[966/1005] Linking C static library esp-idf\esp_driver_i2c\libesp_driver_i2c.a +[967/1005] Linking C static library esp-idf\esp_driver_gptimer\libesp_driver_gptimer.a +[968/1005] Linking C static library esp-idf\esp_hal_mcpwm\libesp_hal_mcpwm.a +[969/1005] Linking C static library esp-idf\unity\libunity.a +[970/1005] Linking C static library esp-idf\wear_levelling\libwear_levelling.a +[971/1005] Linking C static library esp-idf\console\libconsole.a +[972/1005] Linking C static library esp-idf\esp_driver_cam\libesp_driver_cam.a +[973/1005] Linking C static library esp-idf\esp_driver_sd_intf\libesp_driver_sd_intf.a +[974/1005] Linking C static library esp-idf\esp_driver_ledc\libesp_driver_ledc.a +[975/1005] Linking C static library esp-idf\esp_driver_sdspi\libesp_driver_sdspi.a +[976/1005] Linking C static library esp-idf\esp_driver_dac\libesp_driver_dac.a +[977/1005] Linking C static library esp-idf\driver\libdriver.a +[978/1005] Linking C static library esp-idf\esp_driver_sdio\libesp_driver_sdio.a +[979/1005] Linking C static library esp-idf\esp_driver_sdm\libesp_driver_sdm.a +[980/1005] Linking C static library esp-idf\esp_driver_rmt\libesp_driver_rmt.a +[981/1005] Linking C static library esp-idf\esp_driver_pcnt\libesp_driver_pcnt.a +[982/1005] Linking C static library esp-idf\esp_driver_touch_sens\libesp_driver_touch_sens.a +[983/1005] Linking C static library esp-idf\cmock\libcmock.a +[984/1005] Linking C static library esp-idf\esp_driver_twai\libesp_driver_twai.a +[985/1005] Linking C static library esp-idf\esp_driver_mcpwm\libesp_driver_mcpwm.a +[986/1005] Linking C static library esp-idf\protocomm\libprotocomm.a +[987/1005] Linking C static library esp-idf\esp_eth\libesp_eth.a +[988/1005] Linking C static library esp-idf\esp_hid\libesp_hid.a +[989/1005] Linking C static library esp-idf\esp_driver_sdmmc\libesp_driver_sdmmc.a +[990/1005] Linking C static library esp-idf\perfmon\libperfmon.a +[991/1005] Linking C static library esp-idf\rt\librt.a +[992/1005] Linking C static library esp-idf\esp_lcd\libesp_lcd.a +[993/1005] Linking C static library esp-idf\spiffs\libspiffs.a +[994/1005] Linking C static library esp-idf\esp_local_ctrl\libesp_local_ctrl.a +[995/1005] Linking C static library esp-idf\fatfs\libfatfs.a +[996/1005] Linking C static library esp-idf\main\libmain.a +[997/1005] Performing configure step for 'bootloader' +-- Found Git: C:/Program Files/Git/cmd/git.exe (found version "2.53.0.windows.1") +-- Component directory C:/esp/v6.0/esp-idf/components/mqtt does not contain a CMakeLists.txt file. No component will be added +-- Minimal build - OFF +-- The C compiler identification is GNU 15.2.0 +-- The CXX compiler identification is GNU 15.2.0 +-- The ASM compiler identification is GNU +-- Found assembler: C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc.exe +-- Detecting C compiler ABI info +-- Detecting C compiler ABI info - done +-- Check for working C compiler: C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc.exe - skipped +-- Detecting C compile features +-- Detecting C compile features - done +-- Detecting CXX compiler ABI info +-- Detecting CXX compiler ABI info - done +-- Check for working CXX compiler: C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-g++.exe - skipped +-- Detecting CXX compile features +-- Detecting CXX compile features - done +-- Building ESP-IDF components for target esp32 +-- ESP-TEE is currently supported only on the esp32c6;esp32h2;esp32c5;esp32c61 SoCs +-- KCONFIG_REPORT_VERBOSITY not set, using default +-- Project sdkconfig file C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/sdkconfig +Configuration Report ++---------------------------------+ +| Parser Version: 1 | +| Verbosity: default | +| Defaults policy: sdkconfig | +| Status: Finished successfully | +| | ++---------------------------------+ +-- Compiler supported targets: xtensa-esp-elf +-- Detecting C compiler ABI info +-- Detecting C compiler ABI info - done +-- Detecting CXX compiler ABI info +-- Detecting CXX compiler ABI info - done +-- Detecting C compiler ABI info +-- Detecting C compiler ABI info - done +-- Detecting CXX compiler ABI info +-- Detecting CXX compiler ABI info - done +-- Adding linker script C:/esp/v6.0/esp-idf/components/soc/esp32/ld/esp32.peripherals.ld +-- Bootloader project name: "bootloader" version: 1 +-- Adding linker script C:/esp/v6.0/esp-idf/components/esp_rom/esp32/ld/esp32.rom.ld +-- Adding linker script C:/esp/v6.0/esp-idf/components/esp_rom/esp32/ld/esp32.rom.api.ld +-- Adding linker script C:/esp/v6.0/esp-idf/components/esp_rom/esp32/ld/esp32.rom.libgcc.ld +-- Adding linker script C:/esp/v6.0/esp-idf/components/esp_rom/esp32/ld/esp32.rom.libc-funcs.ld +-- Components: bootloader bootloader_support efuse esp_app_format esp_blockdev esp_bootloader_format esp_common esp_hal_ana_conv esp_hal_clock esp_hal_dma esp_hal_gpio esp_hal_gpspi esp_hal_i2s esp_hal_mspi esp_hal_pmu esp_hal_rtc_timer esp_hal_security esp_hal_timg esp_hal_uart esp_hal_usb esp_hal_wdt esp_hw_support esp_libc esp_rom esp_security esp_stdio esp_system esptool_py freertos hal log main micro-ecc partition_table soc spi_flash xtensa +-- Component paths: C:/esp/v6.0/esp-idf/components/bootloader C:/esp/v6.0/esp-idf/components/bootloader_support C:/esp/v6.0/esp-idf/components/efuse C:/esp/v6.0/esp-idf/components/esp_app_format C:/esp/v6.0/esp-idf/components/esp_blockdev C:/esp/v6.0/esp-idf/components/esp_bootloader_format C:/esp/v6.0/esp-idf/components/esp_common C:/esp/v6.0/esp-idf/components/esp_hal_ana_conv C:/esp/v6.0/esp-idf/components/esp_hal_clock C:/esp/v6.0/esp-idf/components/esp_hal_dma C:/esp/v6.0/esp-idf/components/esp_hal_gpio C:/esp/v6.0/esp-idf/components/esp_hal_gpspi C:/esp/v6.0/esp-idf/components/esp_hal_i2s C:/esp/v6.0/esp-idf/components/esp_hal_mspi C:/esp/v6.0/esp-idf/components/esp_hal_pmu C:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer C:/esp/v6.0/esp-idf/components/esp_hal_security C:/esp/v6.0/esp-idf/components/esp_hal_timg C:/esp/v6.0/esp-idf/components/esp_hal_uart C:/esp/v6.0/esp-idf/components/esp_hal_usb C:/esp/v6.0/esp-idf/components/esp_hal_wdt C:/esp/v6.0/esp-idf/components/esp_hw_support C:/esp/v6.0/esp-idf/components/esp_libc C:/esp/v6.0/esp-idf/components/esp_rom C:/esp/v6.0/esp-idf/components/esp_security C:/esp/v6.0/esp-idf/components/esp_stdio C:/esp/v6.0/esp-idf/components/esp_system C:/esp/v6.0/esp-idf/components/esptool_py C:/esp/v6.0/esp-idf/components/freertos C:/esp/v6.0/esp-idf/components/hal C:/esp/v6.0/esp-idf/components/log C:/esp/v6.0/esp-idf/components/bootloader/subproject/main C:/esp/v6.0/esp-idf/components/bootloader/subproject/components/micro-ecc C:/esp/v6.0/esp-idf/components/partition_table C:/esp/v6.0/esp-idf/components/soc C:/esp/v6.0/esp-idf/components/spi_flash C:/esp/v6.0/esp-idf/components/xtensa +-- Adding linker script C:/esp/v6.0/esp-idf/components/bootloader/subproject/main/ld/esp32/bootloader.ld.in +-- -> Preprocessing .in script: C:/esp/v6.0/esp-idf/components/bootloader/subproject/main/ld/esp32/bootloader.ld.in +-- Configuring done (21.7s) +-- Generating done (0.4s) +-- Build files have been written to: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader +[998/1005] Performing build step for 'bootloader' +[1/138] Building C object esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/util.c.obj +[2/138] Building C object esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_lock.c.obj +[3/138] Building C object esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj +[4/138] Building C object esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj +[5/138] Building C object esp-idf/log/CMakeFiles/__idf_log.dir/src/log_format_text.c.obj +[6/138] Building C object esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_timestamp.c.obj +[7/138] Building C object esp-idf/log/CMakeFiles/__idf_log.dir/src/log_print.c.obj +[8/138] Building C object esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj +[9/138] Building C object esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj +[10/138] Building C object esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj +[11/138] Building C object esp-idf/log/CMakeFiles/__idf_log.dir/src/log.c.obj +[12/138] Building C object esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_serial_output.c.obj +[13/138] Building C object esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj +[14/138] Building C object esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj +[15/138] Building ASM object esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj +[16/138] Building C object esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj +[17/138] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/esp_cpu_intr.c.obj +[18/138] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj +[19/138] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj +[20/138] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cpu_region_protect.c.obj +[21/138] Building C object esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj +[22/138] Building C object esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj +[23/138] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_init.c.obj +[24/138] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/chip_info.c.obj +[25/138] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk_init.c.obj +[26/138] Building C object esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj +[27/138] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_sleep.c.obj +[28/138] Building C object esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj +[29/138] Building C object esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_fields.c.obj +[30/138] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_time.c.obj +[31/138] Linking C static library esp-idf\log\liblog.a +[32/138] Building C object esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk.c.obj +[33/138] Building C object esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj +[34/138] Building C object esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj +[35/138] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj +[36/138] Building C object esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj +[37/138] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj +[38/138] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj +[39/138] Building C object esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_utility.c.obj +[40/138] Building C object esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/without_key_purposes/three_key_blocks/esp_efuse_api_key.c.obj +[41/138] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj +[42/138] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32.c.obj +[43/138] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj +[44/138] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj +[45/138] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj +[46/138] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj +[47/138] Linking C static library esp-idf\esp_rom\libesp_rom.a +[48/138] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj +[49/138] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj +[50/138] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj +[51/138] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj +[52/138] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_soc.c.obj +[53/138] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj +[54/138] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_sha.c.obj +[55/138] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32.c.obj +[56/138] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj +[57/138] Building C object esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_lock.c.obj +[58/138] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj +[59/138] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj +[60/138] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj +[61/138] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_esp32.c.obj +[62/138] Building C object esp-idf/esp_hal_security/CMakeFiles/__idf_esp_hal_security.dir/mpu_hal.c.obj +[63/138] Building C object esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/esp32/adc_periph.c.obj +[64/138] Linking C static library esp-idf\esp_common\libesp_common.a +[65/138] Building C object esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_hal_common.c.obj +[66/138] Building C object esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_oneshot_hal.c.obj +[67/138] Building C object esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/esp32/dac_periph.c.obj +[68/138] Building C object esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj +[69/138] Building C object esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_periph_clk.c.obj +[70/138] Building C object esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/esp32/uart_periph.c.obj +[71/138] Building C object esp-idf/esp_hal_i2s/CMakeFiles/__idf_esp_hal_i2s.dir/esp32/i2s_periph.c.obj +[72/138] Building C object esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/uart_hal_iram.c.obj +[73/138] Building C object esp-idf/esp_hal_wdt/CMakeFiles/__idf_esp_hal_wdt.dir/esp32/mwdt_periph.c.obj +[74/138] Building C object esp-idf/esp_hal_i2s/CMakeFiles/__idf_esp_hal_i2s.dir/i2s_hal.c.obj +[75/138] Building C object esp-idf/esp_hal_timg/CMakeFiles/__idf_esp_hal_timg.dir/esp32/timer_periph.c.obj +[76/138] Building C object esp-idf/esp_hal_uart/CMakeFiles/__idf_esp_hal_uart.dir/uart_hal.c.obj +[77/138] Building C object esp-idf/esp_hal_ana_conv/CMakeFiles/__idf_esp_hal_ana_conv.dir/adc_hal.c.obj +[78/138] Building C object esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj +[79/138] Building C object esp-idf/esp_hal_timg/CMakeFiles/__idf_esp_hal_timg.dir/timer_hal.c.obj +[80/138] Building C object esp-idf/esp_hal_wdt/CMakeFiles/__idf_esp_hal_wdt.dir/wdt_hal_iram.c.obj +[81/138] Building C object esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_hal.c.obj +[82/138] Building C object esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj +[83/138] Building C object esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/esp32/spi_periph.c.obj +[84/138] Building C object esp-idf/esp_hal_clock/CMakeFiles/__idf_esp_hal_clock.dir/esp32/clk_tree_hal.c.obj +[85/138] Building C object esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_slave_hal.c.obj +[86/138] Linking C static library esp-idf\esp_hw_support\libesp_hw_support.a +[87/138] Building C object esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/gpio_hal.c.obj +[88/138] Building C object esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/rtc_io_hal.c.obj +[89/138] Building C object esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_slave_hal_iram.c.obj +[90/138] Building C object esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/esp32/rtc_io_periph.c.obj +[91/138] Building C object esp-idf/esp_hal_gpspi/CMakeFiles/__idf_esp_hal_gpspi.dir/spi_hal_iram.c.obj +[92/138] Building C object esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/esp32/sdm_periph.c.obj +[93/138] Building C object esp-idf/esp_hal_gpio/CMakeFiles/__idf_esp_hal_gpio.dir/sdm_hal.c.obj +[94/138] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj +[95/138] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj +[96/138] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj +[97/138] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj +[98/138] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/efuse_hal.c.obj +[99/138] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/cache_hal_esp32.c.obj +[100/138] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/gpio_periph.c.obj +[101/138] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/interrupts.c.obj +[102/138] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mpi_periph.c.obj +[103/138] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/emac_periph.c.obj +[104/138] Linking C static library esp-idf\esp_system\libesp_system.a +[105/138] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dport_access.c.obj +[106/138] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdmmc_periph.c.obj +[107/138] Generating project_elf_src_esp32.c +[108/138] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdio_slave_periph.c.obj +[109/138] Building C object esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj +[110/138] Building C object esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/power_supply_periph.c.obj +[111/138] Building C object esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj +[112/138] Preprocessing linker script C:/esp/v6.0/esp-idf/components/bootloader/subproject/main/ld/esp32/bootloader.ld.in -> C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/ld/bootloader.ld +[113/138] Building C object esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj +[114/138] Linking C static library esp-idf\efuse\libefuse.a +[115/138] Building C object CMakeFiles/bootloader.elf.dir/project_elf_src_esp32.c.obj +[116/138] Building C object esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj +[117/138] Building C object esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj +[118/138] Linking C static library esp-idf\bootloader_support\libbootloader_support.a +[119/138] Linking C static library esp-idf\esp_security\libesp_security.a +[120/138] Linking C static library esp-idf\esp_hal_security\libesp_hal_security.a +[121/138] Linking C static library esp-idf\esp_hal_ana_conv\libesp_hal_ana_conv.a +[122/138] Linking C static library esp-idf\esp_hal_i2s\libesp_hal_i2s.a +[123/138] Linking C static library esp-idf\esp_hal_uart\libesp_hal_uart.a +[124/138] Linking C static library esp-idf\esp_hal_wdt\libesp_hal_wdt.a +[125/138] Linking C static library esp-idf\esp_hal_timg\libesp_hal_timg.a +[126/138] Linking C static library esp-idf\esp_bootloader_format\libesp_bootloader_format.a +[127/138] Linking C static library esp-idf\spi_flash\libspi_flash.a +[128/138] Linking C static library esp-idf\esp_hal_clock\libesp_hal_clock.a +[129/138] Linking C static library esp-idf\esp_hal_gpspi\libesp_hal_gpspi.a +[130/138] Linking C static library esp-idf\micro-ecc\libmicro-ecc.a +[131/138] Linking C static library esp-idf\esp_hal_gpio\libesp_hal_gpio.a +[132/138] Linking C static library esp-idf\hal\libhal.a +[133/138] Linking C static library esp-idf\soc\libsoc.a +[134/138] Linking C static library esp-idf\xtensa\libxtensa.a +[135/138] Linking C static library esp-idf\main\libmain.a +[136/138] Linking C executable bootloader.elf +[137/138] Generating binary image from built executable +esptool v5.2.0 +Creating ESP32 image... +Merged 2 ELF sections. +Successfully created ESP32 image. +Generated C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/bootloader.bin +[138/138] C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe C:/esp/v6.0/esp-idf/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x1000 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/bootloader.bin" +Bootloader binary size 0x6610 bytes. 0x9f0 bytes (9%) free. +[999/1005] No install step for 'bootloader' +[1000/1005] Completed 'bootloader' +[1001/1005] Generating esp-idf/esp_system/ld/sections.ld +[1002/1005] Building C object CMakeFiles/modbus_tcp_esp32.elf.dir/project_elf_src_esp32.c.obj +[1003/1005] Linking CXX executable modbus_tcp_esp32.elf +[1004/1005] Generating binary image from built executable +esptool v5.2.0 +Creating ESP32 image... +Merged 2 ELF sections. +Successfully created ESP32 image. +Generated C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/modbus_tcp_esp32.bin +[1005/1005] C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe C:/esp/v6.0/esp-idf/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/partition_table/partition-table.bin C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/modbus_tcp_esp32.bin" +modbus_tcp_esp32.bin binary size 0x37830 bytes. Smallest app partition is 0x100000 bytes. 0xc87d0 bytes (78%) free. diff --git a/build/log/idf_py_stdout_output_25872 b/build/log/idf_py_stdout_output_25872 new file mode 100644 index 0000000..5110c44 --- /dev/null +++ b/build/log/idf_py_stdout_output_25872 @@ -0,0 +1,9 @@ +Command: ninja all +[1/5] C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe C:/esp/v6.0/esp-idf/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/partition_table/partition-table.bin C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/modbus_tcp_esp32.bin" +modbus_tcp_esp32.bin binary size 0x37830 bytes. Smallest app partition is 0x100000 bytes. 0xc87d0 bytes (78%) free. +[2/5] C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\esp-idf\main && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe C:/esp/v6.0/esp-idf/components/spiffs/spiffsgen.py 0xf0000 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/spiffs C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/spiffs.bin --page-size=256 --obj-name-len=32 --meta-len=4 --use-magic --use-magic-len" +[3/5] Performing build step for 'bootloader' +[1/1] C:\Windows\system32\cmd.exe /C "cd /D C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader && C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe C:/esp/v6.0/esp-idf/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x1000 C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/bootloader.bin" +Bootloader binary size 0x6610 bytes. 0x9f0 bytes (9%) free. +[4/5] No install step for 'bootloader' +[5/5] Completed 'bootloader' diff --git a/build/log/idf_py_stdout_output_28724 b/build/log/idf_py_stdout_output_28724 new file mode 100644 index 0000000..577b4e4 --- /dev/null +++ b/build/log/idf_py_stdout_output_28724 @@ -0,0 +1,138 @@ +Command: C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe C:\esp\v6.0\esp-idf\tools/idf_monitor.py -p COM6 -b 115200 --toolchain-prefix xtensa-esp32-elf- --target esp32 --revision 0 C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\modbus_tcp_esp32.elf C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build\bootloader\bootloader.elf --force-color -m 'C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe' 'C:\esp\v6.0\esp-idf\tools\idf.py' '-p' 'COM6' +I�ets Jul 29 2019 12:21:46 + +rst:0x1 (POWERON_RESET),boot:0x17 (SPI_FAST_FLASH_BOOT) +configsip: 0, SPIWP:0xee +clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00 +mode:DIO, clock div:2 +load:0x3fff0040,len:6272 +load:0x40078000,len:15848 +load:0x40080400,len:3920 +entry 0x40080644 +I (27) boot: ESP-IDF v6.0 2nd stage bootloader +I (27) boot: compile time Apr 8 2026 15:08:00 +I (28) boot: Multicore bootloader +I (29) boot: chip revision: v3.1 +I (31) boot.esp32: SPI Speed : 40MHz +I (35) boot.esp32: SPI Mode : DIO +I (39) boot.esp32: SPI Flash Size : 2MB +I (42) boot: Enabling RNG early entropy source... +I (47) boot: Partition Table: +I (49) boot: ## Label Usage Type ST Offset Length +I (56) boot: 0 nvs WiFi data 01 02 00009000 00006000 +I (62) boot: 1 phy_init RF data 01 01 0000f000 00001000 +I (69) boot: 2 factory factory app 00 00 00010000 00100000 +I (75) boot: 3 spiffs Unknown data 01 82 00110000 000f0000 +I (82) boot: End of partition table +I (85) esp_image: segment 0: paddr=00010020 vaddr=3f400020 size=0c030h ( 49200) map +I (110) esp_image: segment 1: paddr=0001c058 vaddr=3ffb0000 size=02b0ch ( 11020) load +I (115) esp_image: segment 2: paddr=0001eb6c vaddr=40080000 size=014ach ( 5292) load +I (117) esp_image: segment 3: paddr=00020020 vaddr=400d0020 size=1cb7ch (117628) map +I (163) esp_image: segment 4: paddr=0003cba4 vaddr=400814ac size=0ac38h ( 44088) load +I (182) esp_image: segment 5: paddr=000477e4 vaddr=50000000 size=00028h ( 40) load +I (188) boot: Loaded app from partition at offset 0x10000 +I (188) boot: Disabling RNG early entropy source... +I (200) cpu_start: Multicore app +I (208) cpu_start: GPIO 3 and 1 are used as console UART I/O pins +I (208) cpu_start: Pro cpu start user code +I (208) cpu_start: cpu freq: 160000000 Hz +I (210) app_init: Application information: +I (214) app_init: Project name: modbus_tcp_esp32 +I (219) app_init: App version: 1 +I (222) app_init: Compile time: Apr 8 2026 15:07:39 +I (227) app_init: ELF file SHA256: 41e80fc3a... +I (231) app_init: ESP-IDF: v6.0 +I (235) efuse_init: Min chip rev: v0.0 +I (239) efuse_init: Max chip rev: v3.99  +I (243) efuse_init: Chip rev: v3.1 +I (247) heap_init: Initializing. RAM available for dynamic allocation: +I (253) heap_init: At 3FFAE6E0 len 00001920 (6 KiB): DRAM +I (258) heap_init: At 3FFB3700 len 0002C900 (178 KiB): DRAM +I (263) heap_init: At 3FFE0440 len 00003AE0 (14 KiB): D/IRAM +I (269) heap_init: At 3FFE4350 len 0001BCB0 (111 KiB): D/IRAM +I (274) heap_init: At 4008C0E4 len 00013F1C (79 KiB): IRAM +I (281) spi_flash: detected chip: generic +I (283) spi_flash: flash io: dio +W (286) spi_flash: Detected size(4096k) larger than the size in the binary image header(2048k). Using the size in the binary image header. +I (299) main_task: Started on CPU0 +I (309) main_task: Calling app_main() +I (309) MODBUS_MAIN: Starting Modbus RTU device +I (409) MODBUS_MAIN: SPIFFS mounted: total=896321 used=4267 +I (409) MODBUS_MAIN: ----- SPIFFS file list ----- +I (409) MODBUS_MAIN: SPIFFS file: device_1.csv +I (409) MODBUS_MAIN: SPIFFS file: device_2.csv +I (419) MODBUS_MAIN: SPIFFS file: device_3.csv +I (419) MODBUS_MAIN: SPIFFS file: device_config.ini +I (469) MODBUS_MAIN: ---------------------------- +I (469) MODBUS_MAIN: RTU config: uart=1 baud=9600 parity=0 stop_bits=1 tx=16 rx=17 de=4 +I (469) MODBUS_MAIN: Configured device_count = 3 +I (469) MODBUS_MAIN: CFG device[0]: enabled=1 unit_id=1 name=Device_1 csv=/spiffs/device_1.csv +I (479) MODBUS_MAIN: CFG device[1]: enabled=1 unit_id=2 name=Device_2 csv=/spiffs/device_2.csv +I (489) MODBUS_MAIN: CFG device[2]: enabled=1 unit_id=3 name=Device_3 csv=/spiffs/device_3.csv +I (499) uart: ALREADY NULL +I (499) MODBUS_MAIN: UART normal mode enabled (manual DE control) +I (499) MODBUS_MAIN: RTU UART configured: uart=1 baud=9600 parity=0 stop_bits=1 tx=16 rx=17 de=4 +I (509) MODBUS_MAIN: Manual DE initialized on GPIO4, idle level=0 +I (519) MODBUS_MAIN: UART driver installed: uart=1 tx=16 rx=17 de=4 baud=9600 +I (519) MODBUS_MAIN: Preparing device[0]: unit_id=1 name=Device_1 csv=/spiffs/device_1.csv +I (579) MODBUS_RTU: Registered RTU device unit_id=1 name=Device_1 +I (579) MODBUS_MAIN: Device 1 (Device_1) loaded 15 Modbus points from /spiffs/device_1.csv +I (579) MODBUS_MAIN: Preparing device[1]: unit_id=2 name=Device_2 csv=/spiffs/device_2.csv +I (599) MODBUS_RTU: Registered RTU device unit_id=2 name=Device_2 +I (599) MODBUS_MAIN: Device 2 (Device_2) loaded 15 Modbus points from /spiffs/device_2.csv +I (599) MODBUS_MAIN: Preparing device[2]: unit_id=3 name=Device_3 csv=/spiffs/device_3.csv +I (609) MODBUS_RTU: Registered RTU device unit_id=3 name=Device_3 +I (619) MODBUS_MAIN: Device 3 (Device_3) loaded 0 Modbus points from /spiffs/device_3.csv +I (629) MODBUS_MAIN: ----- Runtime Modbus Device Table ----- +I (629) MODBUS_MAIN: RUNTIME device[0]: unit_id=1 name=Device_1 csv=/spiffs/device_1.csv points=15 +I (639) MODBUS_MAIN: RUNTIME device[1]: unit_id=2 name=Device_2 csv=/spiffs/device_2.csv points=15 +I (649) MODBUS_MAIN: RUNTIME device[2]: unit_id=3 name=Device_3 csv=/spiffs/device_3.csv points=0 +I (659) MODBUS_MAIN: --------------------------------------- +I (659) MODBUS_MAIN: ----- Modbus Point Capacity ----- +I (669) MODBUS_MAIN: Device 1 (Device_1): used=15 / max=384, remaining=369 (3.9% used) +I (669) MODBUS_MAIN: Device 2 (Device_2): used=15 / max=384, remaining=369 (3.9% used) +I (679) MODBUS_MAIN: Device 3 (Device_3): used=0 / max=384, remaining=384 (0.0% used) +I (689) MODBUS_MAIN: Configured capacity: used=30 / max=1152, remaining=1122 +I (699) MODBUS_MAIN: Free heap: 110044 bytes, largest block: 51200 bytes, point size: 160 bytes +I (699) MODBUS_MAIN: Heap-equivalent points available (informational only): 687 +I (709) MODBUS_MAIN: --------------------------------- +I (719) MODBUS_MAIN: ----- Point Cost Guide ----- +I (719) MODBUS_MAIN: Internal point usage (counts against MODBUS_MAX_POINTS): +I (729) MODBUS_MAIN: data_type=bool -> 1 point +I (729) MODBUS_MAIN: data_type=uint16 -> 1 point +I (739) MODBUS_MAIN: data_type=uint32 -> 2 points +I (739) MODBUS_MAIN: data_type=float -> 2 points +I (749) MODBUS_MAIN: data_type=double -> 4 points +I (749) MODBUS_MAIN: PICS staging usage (for pics_address spacing only): +I (759) MODBUS_MAIN: pics_data_type=Boolean -> 1 register +I (759) MODBUS_MAIN: pics_data_type=Integer -> 2 registers +I (769) MODBUS_MAIN: pics_data_type=Float -> 4 registers +I (769) MODBUS_MAIN: pics_data_type=None -> 0 registers +I (779) MODBUS_MAIN: Planning examples: +I (779) MODBUS_MAIN: 100 uint16 CSV rows -> about 100 internal points +I (789) MODBUS_MAIN: 100 float CSV rows -> about 200 internal points +I (789) MODBUS_MAIN: 100 double CSV rows -> about 400 internal points +I (799) MODBUS_MAIN: -------------------------------- +I (809) MODBUS_MAIN: ----- Device Type Mix ----- +I (809) MODBUS_MAIN: Device 1 (Device_1) type mix: base_rows=15 internal_points=15 pics_regs=10 +I (819) MODBUS_MAIN: data_type counts: bool=6 uint16=9 uint32=0 float=0 double=0 +I (829) MODBUS_MAIN: pics_data_type counts: none=10 Boolean=0 Integer=5 Float=0 +I (829) MODBUS_MAIN: Device 2 (Device_2) type mix: base_rows=15 internal_points=15 pics_regs=10 +I (839) MODBUS_MAIN: data_type counts: bool=6 uint16=9 uint32=0 float=0 double=0 +I (849) MODBUS_MAIN: pics_data_type counts: none=10 Boolean=0 Integer=5 Float=0 +I (859) MODBUS_MAIN: Device 3 (Device_3) type mix: base_rows=0 internal_points=0 pics_regs=0 +I (859) MODBUS_MAIN: data_type counts: bool=0 uint16=0 uint32=0 float=0 double=0 +I (869) MODBUS_MAIN: pics_data_type counts: none=0 Boolean=0 Integer=0 Float=0 +I (879) MODBUS_MAIN: --------------------------- +I (879) MODBUS_MAIN: ----- Modbus Memory Usage ----- +I (889) MODBUS_MAIN: Device 1 (Device_1): 15 / 384 points used (3.9%) +I (889) MODBUS_MAIN: Device 2 (Device_2): 15 / 384 points used (3.9%) +I (899) MODBUS_MAIN: Device 3 (Device_3): 0 / 384 points used (0.0%) +I (909) MODBUS_MAIN: TOTAL POINTS LOADED: 30 +I (909) MODBUS_MAIN: -------------------------------- +I (909) MODBUS_MAIN: Creating modbus_rtu_task +I (919) MODBUS_MAIN: modbus_rtu_task started +I (919) MODBUS_MAIN: modbus_rtu_task create rc=1 +I (929) MODBUS_MAIN: Creating modbus_override_task +I (929) MODBUS_MAIN: modbus_override_task create rc=1 +I (939) main_task: Returned from app_main() diff --git a/build/log/idf_py_stdout_output_7252 b/build/log/idf_py_stdout_output_7252 new file mode 100644 index 0000000..bd76e93 --- /dev/null +++ b/build/log/idf_py_stdout_output_7252 @@ -0,0 +1,59 @@ +Command: cmake -G Ninja -B C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI\build -DPYTHON_DEPS_CHECKED=1 -DPYTHON=C:\Espressif\tools\python\v6.0\venv\Scripts\python.exe -DESP_PLATFORM=1 -DCCACHE_ENABLE=False C:\Users\e.adame\Documents\ESP32_Modbus_RTU_to_PICS_MULTI +-- IDF_TARGET is not set, guessed 'esp32' from sdkconfig 'C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/sdkconfig' +-- Found Git: C:/Program Files/Git/cmd/git.exe (found version "2.53.0.windows.1") +-- Component directory C:/esp/v6.0/esp-idf/components/mqtt does not contain a CMakeLists.txt file. No component will be added +-- Minimal build - OFF +-- The C compiler identification is GNU 15.2.0 +-- The CXX compiler identification is GNU 15.2.0 +-- The ASM compiler identification is GNU +-- Found assembler: C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc.exe +-- Detecting C compiler ABI info +-- Detecting C compiler ABI info - done +-- Check for working C compiler: C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc.exe - skipped +-- Detecting C compile features +-- Detecting C compile features - done +-- Detecting CXX compiler ABI info +-- Detecting CXX compiler ABI info - done +-- Check for working CXX compiler: C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-g++.exe - skipped +-- Detecting CXX compile features +-- Detecting CXX compile features - done +-- git rev-parse returned 'fatal: not a git repository (or any of the parent directories): .git' +-- Could not use 'git describe' to determine PROJECT_VER. +-- Building ESP-IDF components for target esp32 +-- ESP-TEE is currently supported only on the esp32c6;esp32h2;esp32c5;esp32c61 SoCs +-- KCONFIG_REPORT_VERBOSITY not set, using default +-- Project sdkconfig file C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/sdkconfig +-- Compiler supported targets: xtensa-esp-elf +-- Detecting C compiler ABI info +-- Detecting C compiler ABI info - done +-- Detecting CXX compiler ABI info +-- Detecting CXX compiler ABI info - done +-- Detecting C compiler ABI info +-- Detecting C compiler ABI info - done +-- Detecting CXX compiler ABI info +-- Detecting CXX compiler ABI info - done +-- App "modbus_tcp_esp32" version: 1 +-- Found Python3: C:/Espressif/tools/python/v6.0/venv/Scripts/python.exe (found version "3.13.12") found components: Interpreter +-- Performing Test CMAKE_HAVE_LIBC_PTHREAD +-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success +-- Found Threads: TRUE +-- Performing Test C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS +-- Performing Test C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS - Success +-- Setting up mbedtls configuration +-- Linkage type is PUBLIC +-- Adding linker script C:/esp/v6.0/esp-idf/components/esp_system/ld/esp32/memory.ld.in +-- -> Preprocessing .in script: C:/esp/v6.0/esp-idf/components/esp_system/ld/esp32/memory.ld.in +-- Adding linker script C:/esp/v6.0/esp-idf/components/esp_system/ld/esp32/sections.ld.in +-- -> Preprocessing .in script: C:/esp/v6.0/esp-idf/components/esp_system/ld/esp32/sections.ld.in +-- -> Applying ldgen processing: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/ld/sections.ld.in +-- Adding linker script C:/esp/v6.0/esp-idf/components/esp_rom/esp32/ld/esp32.rom.ld +-- Adding linker script C:/esp/v6.0/esp-idf/components/esp_rom/esp32/ld/esp32.rom.api.ld +-- Adding linker script C:/esp/v6.0/esp-idf/components/esp_rom/esp32/ld/esp32.rom.libgcc.ld +-- Adding linker script C:/esp/v6.0/esp-idf/components/esp_rom/esp32/ld/esp32.rom.libc-funcs.ld +-- Adding linker script C:/esp/v6.0/esp-idf/components/soc/esp32/ld/esp32.peripherals.ld +-- Component idf::esp_trace will be linked with -Wl,--whole-archive +-- Components: app_trace app_update bootloader bootloader_support bt cmock console cxx driver efuse esp-tls esp_adc esp_app_format esp_blockdev esp_bootloader_format esp_coex esp_common esp_driver_ana_cmpr esp_driver_bitscrambler esp_driver_cam esp_driver_dac esp_driver_dma esp_driver_gpio esp_driver_gptimer esp_driver_i2c esp_driver_i2s esp_driver_i3c esp_driver_isp esp_driver_jpeg esp_driver_ledc esp_driver_mcpwm esp_driver_parlio esp_driver_pcnt esp_driver_ppa esp_driver_rmt esp_driver_sd_intf esp_driver_sdio esp_driver_sdm esp_driver_sdmmc esp_driver_sdspi esp_driver_spi esp_driver_touch_sens esp_driver_tsens esp_driver_twai esp_driver_uart esp_driver_usb_serial_jtag esp_eth esp_event esp_gdbstub esp_hal_ana_cmpr esp_hal_ana_conv esp_hal_cam esp_hal_clock esp_hal_dma esp_hal_gpio esp_hal_gpspi esp_hal_i2c esp_hal_i2s esp_hal_ieee802154 esp_hal_jpeg esp_hal_lcd esp_hal_ledc esp_hal_mcpwm esp_hal_mspi esp_hal_parlio esp_hal_pcnt esp_hal_pmu esp_hal_ppa esp_hal_rmt esp_hal_rtc_timer esp_hal_security esp_hal_timg esp_hal_touch_sens esp_hal_twai esp_hal_uart esp_hal_usb esp_hal_wdt esp_hid esp_http_client esp_http_server esp_https_ota esp_https_server esp_hw_support esp_lcd esp_libc esp_local_ctrl esp_mm esp_netif esp_netif_stack esp_partition esp_phy esp_pm esp_psram esp_ringbuf esp_rom esp_security esp_stdio esp_system esp_timer esp_trace esp_usb_cdc_rom_console esp_wifi espcoredump esptool_py fatfs freertos hal heap http_parser idf_test ieee802154 log lwip main mbedtls nvs_flash nvs_sec_provider openthread partition_table perfmon protobuf-c protocomm pthread rt sdmmc soc spi_flash spiffs tcp_transport ulp unity vfs wear_levelling wpa_supplicant xtensa +-- Component paths: C:/esp/v6.0/esp-idf/components/app_trace C:/esp/v6.0/esp-idf/components/app_update C:/esp/v6.0/esp-idf/components/bootloader C:/esp/v6.0/esp-idf/components/bootloader_support C:/esp/v6.0/esp-idf/components/bt C:/esp/v6.0/esp-idf/components/cmock C:/esp/v6.0/esp-idf/components/console C:/esp/v6.0/esp-idf/components/cxx C:/esp/v6.0/esp-idf/components/driver C:/esp/v6.0/esp-idf/components/efuse C:/esp/v6.0/esp-idf/components/esp-tls C:/esp/v6.0/esp-idf/components/esp_adc C:/esp/v6.0/esp-idf/components/esp_app_format C:/esp/v6.0/esp-idf/components/esp_blockdev C:/esp/v6.0/esp-idf/components/esp_bootloader_format C:/esp/v6.0/esp-idf/components/esp_coex C:/esp/v6.0/esp-idf/components/esp_common C:/esp/v6.0/esp-idf/components/esp_driver_ana_cmpr C:/esp/v6.0/esp-idf/components/esp_driver_bitscrambler C:/esp/v6.0/esp-idf/components/esp_driver_cam C:/esp/v6.0/esp-idf/components/esp_driver_dac C:/esp/v6.0/esp-idf/components/esp_driver_dma C:/esp/v6.0/esp-idf/components/esp_driver_gpio C:/esp/v6.0/esp-idf/components/esp_driver_gptimer C:/esp/v6.0/esp-idf/components/esp_driver_i2c C:/esp/v6.0/esp-idf/components/esp_driver_i2s C:/esp/v6.0/esp-idf/components/esp_driver_i3c C:/esp/v6.0/esp-idf/components/esp_driver_isp C:/esp/v6.0/esp-idf/components/esp_driver_jpeg C:/esp/v6.0/esp-idf/components/esp_driver_ledc C:/esp/v6.0/esp-idf/components/esp_driver_mcpwm C:/esp/v6.0/esp-idf/components/esp_driver_parlio C:/esp/v6.0/esp-idf/components/esp_driver_pcnt C:/esp/v6.0/esp-idf/components/esp_driver_ppa C:/esp/v6.0/esp-idf/components/esp_driver_rmt C:/esp/v6.0/esp-idf/components/esp_driver_sd_intf C:/esp/v6.0/esp-idf/components/esp_driver_sdio C:/esp/v6.0/esp-idf/components/esp_driver_sdm C:/esp/v6.0/esp-idf/components/esp_driver_sdmmc C:/esp/v6.0/esp-idf/components/esp_driver_sdspi C:/esp/v6.0/esp-idf/components/esp_driver_spi C:/esp/v6.0/esp-idf/components/esp_driver_touch_sens C:/esp/v6.0/esp-idf/components/esp_driver_tsens C:/esp/v6.0/esp-idf/components/esp_driver_twai C:/esp/v6.0/esp-idf/components/esp_driver_uart C:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag C:/esp/v6.0/esp-idf/components/esp_eth C:/esp/v6.0/esp-idf/components/esp_event C:/esp/v6.0/esp-idf/components/esp_gdbstub C:/esp/v6.0/esp-idf/components/esp_hal_ana_cmpr C:/esp/v6.0/esp-idf/components/esp_hal_ana_conv C:/esp/v6.0/esp-idf/components/esp_hal_cam C:/esp/v6.0/esp-idf/components/esp_hal_clock C:/esp/v6.0/esp-idf/components/esp_hal_dma C:/esp/v6.0/esp-idf/components/esp_hal_gpio C:/esp/v6.0/esp-idf/components/esp_hal_gpspi C:/esp/v6.0/esp-idf/components/esp_hal_i2c C:/esp/v6.0/esp-idf/components/esp_hal_i2s C:/esp/v6.0/esp-idf/components/esp_hal_ieee802154 C:/esp/v6.0/esp-idf/components/esp_hal_jpeg C:/esp/v6.0/esp-idf/components/esp_hal_lcd C:/esp/v6.0/esp-idf/components/esp_hal_ledc C:/esp/v6.0/esp-idf/components/esp_hal_mcpwm C:/esp/v6.0/esp-idf/components/esp_hal_mspi C:/esp/v6.0/esp-idf/components/esp_hal_parlio C:/esp/v6.0/esp-idf/components/esp_hal_pcnt C:/esp/v6.0/esp-idf/components/esp_hal_pmu C:/esp/v6.0/esp-idf/components/esp_hal_ppa C:/esp/v6.0/esp-idf/components/esp_hal_rmt C:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer C:/esp/v6.0/esp-idf/components/esp_hal_security C:/esp/v6.0/esp-idf/components/esp_hal_timg C:/esp/v6.0/esp-idf/components/esp_hal_touch_sens C:/esp/v6.0/esp-idf/components/esp_hal_twai C:/esp/v6.0/esp-idf/components/esp_hal_uart C:/esp/v6.0/esp-idf/components/esp_hal_usb C:/esp/v6.0/esp-idf/components/esp_hal_wdt C:/esp/v6.0/esp-idf/components/esp_hid C:/esp/v6.0/esp-idf/components/esp_http_client C:/esp/v6.0/esp-idf/components/esp_http_server C:/esp/v6.0/esp-idf/components/esp_https_ota C:/esp/v6.0/esp-idf/components/esp_https_server C:/esp/v6.0/esp-idf/components/esp_hw_support C:/esp/v6.0/esp-idf/components/esp_lcd C:/esp/v6.0/esp-idf/components/esp_libc C:/esp/v6.0/esp-idf/components/esp_local_ctrl C:/esp/v6.0/esp-idf/components/esp_mm C:/esp/v6.0/esp-idf/components/esp_netif C:/esp/v6.0/esp-idf/components/esp_netif_stack C:/esp/v6.0/esp-idf/components/esp_partition C:/esp/v6.0/esp-idf/components/esp_phy C:/esp/v6.0/esp-idf/components/esp_pm C:/esp/v6.0/esp-idf/components/esp_psram C:/esp/v6.0/esp-idf/components/esp_ringbuf C:/esp/v6.0/esp-idf/components/esp_rom C:/esp/v6.0/esp-idf/components/esp_security C:/esp/v6.0/esp-idf/components/esp_stdio C:/esp/v6.0/esp-idf/components/esp_system C:/esp/v6.0/esp-idf/components/esp_timer C:/esp/v6.0/esp-idf/components/esp_trace C:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console C:/esp/v6.0/esp-idf/components/esp_wifi C:/esp/v6.0/esp-idf/components/espcoredump C:/esp/v6.0/esp-idf/components/esptool_py C:/esp/v6.0/esp-idf/components/fatfs C:/esp/v6.0/esp-idf/components/freertos C:/esp/v6.0/esp-idf/components/hal C:/esp/v6.0/esp-idf/components/heap C:/esp/v6.0/esp-idf/components/http_parser C:/esp/v6.0/esp-idf/components/idf_test C:/esp/v6.0/esp-idf/components/ieee802154 C:/esp/v6.0/esp-idf/components/log C:/esp/v6.0/esp-idf/components/lwip C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/main C:/esp/v6.0/esp-idf/components/mbedtls C:/esp/v6.0/esp-idf/components/nvs_flash C:/esp/v6.0/esp-idf/components/nvs_sec_provider C:/esp/v6.0/esp-idf/components/openthread C:/esp/v6.0/esp-idf/components/partition_table C:/esp/v6.0/esp-idf/components/perfmon C:/esp/v6.0/esp-idf/components/protobuf-c C:/esp/v6.0/esp-idf/components/protocomm C:/esp/v6.0/esp-idf/components/pthread C:/esp/v6.0/esp-idf/components/rt C:/esp/v6.0/esp-idf/components/sdmmc C:/esp/v6.0/esp-idf/components/soc C:/esp/v6.0/esp-idf/components/spi_flash C:/esp/v6.0/esp-idf/components/spiffs C:/esp/v6.0/esp-idf/components/tcp_transport C:/esp/v6.0/esp-idf/components/ulp C:/esp/v6.0/esp-idf/components/unity C:/esp/v6.0/esp-idf/components/vfs C:/esp/v6.0/esp-idf/components/wear_levelling C:/esp/v6.0/esp-idf/components/wpa_supplicant C:/esp/v6.0/esp-idf/components/xtensa +-- Configuring done (18.7s) +-- Generating done (1.3s) +-- Build files have been written to: C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build diff --git a/build/modbus_tcp_esp32.bin b/build/modbus_tcp_esp32.bin new file mode 100644 index 0000000..644d22f Binary files /dev/null and b/build/modbus_tcp_esp32.bin differ diff --git a/build/modbus_tcp_esp32.elf b/build/modbus_tcp_esp32.elf new file mode 100644 index 0000000..84f6fda Binary files /dev/null and b/build/modbus_tcp_esp32.elf differ diff --git a/build/modbus_tcp_esp32.map b/build/modbus_tcp_esp32.map new file mode 100644 index 0000000..95f1beb --- /dev/null +++ b/build/modbus_tcp_esp32.map @@ -0,0 +1,41754 @@ +Archive member included to satisfy reference by file (symbol) + +esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + (esp_vfs_include_console_register) +esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) (fsync) +esp-idf/esp_stdio/libesp_stdio.a(stdio_simple.c.obj) + esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) (esp_system_console_put_char) +esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + (esp_app_desc) +esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + (esp_efuse_startup_include_func) +esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) (esp_efuse_check_errors) +esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) (esp_efuse_utility_fill_buff) +esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) (esp_efuse_get_coding_scheme) +esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) (ESP_EFUSE_RD_DIS_BLOCK3) +esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (range_read_addr_blocks) +esp-idf/esp_security/libesp_security.a(init.c.obj) + (esp_security_init_include_impl) +esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + (esp_flash_spi_init_include_func) +esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (esp_flash_init_os_functions) +esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (esp_flash_noos_functions) +esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (spi_flash_needs_reset_check) +esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (spi_flash_chip_list_check) +esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) (esp_flash_chip_generic) +esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) (esp_flash_chip_issi) +esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) (esp_flash_chip_mxic) +esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) (esp_flash_chip_gd) +esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) (spi_flash_chip_winbond_page_program) +esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (memspi_host_init_pointers) +esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (spi_flash_init_lock) +esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) (spi_flash_check_and_flush_cache) +esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (spi_flash_guard_set) +esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) (esp_flash_is_quad_mode) +esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) (esp_ipc_call_nonblocking) +esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) (esp_restart) +esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + (esp_system_include_startup_funcs) +esp-idf/esp_system/libesp_system.a(system_time.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) (esp_system_get_time) +esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + (__ubsan_include) +esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + (call_start_cpu0) +esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + esp-idf/esp_system/libesp_system.a(ubsan.c.obj) (esp_system_abort) +esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) (esp_ipc_isr_init) +esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) (esp_ipc_isr_port_init) +esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) (esp_ipc_isr_waiting_for_finish_cmd) +esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + (ld_include_highint_hdl) +esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_rtc_init) +esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system.c.obj) (esp_restart_noos) +esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_cache_err_int_init) +esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) (int_wdt_cpu1_ticked) +esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) (panic_abort) +esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (g_startup_fn) +esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) (panicHandler) +esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) (esp_ipc_isr_handler) +esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) (panic_print_registers) +esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) (esp_backtrace_print_from_frame) +esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) (esp_backtrace_get_start) +esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) (esp_register_freertos_tick_hook_for_cpu) +esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_rom_output_tx_wait_idle) +esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (esp_rom_gpio_connect_out_signal) +esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) (efuse_hal_chip_revision) +esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/hal/libhal.a(efuse_hal.c.obj) (efuse_hal_get_major_chip_version) +esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (mmu_hal_ctx_init) +esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (cache_hal_init) +esp-idf/log/liblog.a(log_timestamp.c.obj) + esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) (esp_log_timestamp) +esp-idf/log/liblog.a(util.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (esp_log_util_set_cache_enabled_cb) +esp-idf/log/liblog.a(log.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) (esp_log) +esp-idf/log/liblog.a(log_write.c.obj) + esp-idf/log/liblog.a(log.c.obj) (esp_log_vprint_func) +esp-idf/log/liblog.a(log_level.c.obj) + esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) (esp_log_default_level) +esp-idf/log/liblog.a(tag_log_level.c.obj) + esp-idf/log/liblog.a(log_level.c.obj) (esp_log_level_get_timeout) +esp-idf/log/liblog.a(log_linked_list.c.obj) + esp-idf/log/liblog.a(tag_log_level.c.obj) (esp_log_linked_list_set_level) +esp-idf/log/liblog.a(log_binary_heap.c.obj) + esp-idf/log/liblog.a(tag_log_level.c.obj) (esp_log_cache_set_level) +esp-idf/log/liblog.a(log_lock.c.obj) + esp-idf/log/liblog.a(tag_log_level.c.obj) (esp_log_impl_lock) +esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (heap_caps_malloc) +esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) (registered_heaps) +esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) (multi_heap_get_allocated_size) +esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) (tlsf_check) +esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) (soc_get_available_memory_region_max_count) +esp-idf/heap/libheap.a(memory_layout.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) (soc_memory_region_count) +esp-idf/heap/libheap.a(heap_caps_base.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) (heap_caps_free) +esp-idf/soc/libsoc.a(gpio_periph.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (GPIO_PIN_MUX_REG_OFFSET) +esp-idf/soc/libsoc.a(dport_access.c.obj) + (esp_dport_access_reg_read) +esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) (esp_cpu_stall) +esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) (esp_ptr_executable) +esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) (esp_clk_cpu_freq) +esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) (esp_intr_noniram_disable) +esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) (periph_rcc_acquire_enter) +esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (rtc_isr_noniram_disable) +esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) (esp_gpio_reserve) +esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_clk_tree_initialize) +esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (spi_bus_lock_register_dev) +esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) (esp_clk_utils_mspi_speed_mode_sync_before_cpu_freq_switching) +esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) (esp_clk_tree_rc_fast_d256_get_freq_hz) +esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_deep_sleep_wakeup_io_reset) +esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) (esp_brownout_init) +esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) (rtc_clk_32k_enable) +esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) (rtc_init) +esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) (rtc_clk_cal) +esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_chip_info) +esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) (sar_periph_ctrl_init) +esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (esp_cpu_intr_get_desc) +esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (regi2c_ctrl_read_reg_mask) +esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (esp_sleep_sub_mode_config) +esp-idf/esp_hw_support/libesp_hw_support.a(sleep_uart.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (sleep_uart_prepare) +esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (esp_sleep_execute_event_callbacks) +esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (rtc_sleep_get_default_config) +esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (sleep_modem_reject_triggers) +esp-idf/freertos/libfreertos.a(app_startup.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) (esp_startup_start_app) +esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) (xQueueGenericCreateStatic) +esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) (vTaskSuspendAll) +esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) (port_xSchedulerRunning) +esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) (_frxt_dispatch) +esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) (_xt_tick_divisor) +esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) (xSemaphoreCreateGenericWithCaps) +esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) (pvPortMalloc) +esp-idf/freertos/libfreertos.a(port_common.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) (vApplicationGetIdleTaskMemory) +esp-idf/freertos/libfreertos.a(port_systick.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) (vPortSetupTimer) +esp-idf/freertos/libfreertos.a(list.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) (vListInitialise) +esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) (xStreamBufferGenericCreateStatic) +esp-idf/esp_libc/libesp_libc.a(init.c.obj) + (esp_libc_init_funcs) +esp-idf/esp_libc/libesp_libc.a(abort.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) (abort) +esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + (__assert_func) +esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + esp-idf/log/liblog.a(log_linked_list.c.obj) (malloc) +esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) (_lock_acquire_recursive) +esp-idf/esp_libc/libesp_libc.a(pthread.c.obj) + (esp_libc_include_pthread_impl) +esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) + (esp_libc_include_getentropy_impl) +esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) (__atomic_fetch_and_8) +esp-idf/esp_libc/libesp_libc.a(time.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) (esp_libc_time_init) +esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) (open) +esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) (_getpid_r) +esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + esp-idf/esp_libc/libesp_libc.a(time.c.obj) (esp_time_impl_get_time_since_boot) +esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + esp-idf/esp_libc/libesp_libc.a(init.c.obj) (esp_libc_init) +esp-idf/esp_libc/libesp_libc.a(errno.c.obj) + esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) (errno) +esp-idf/esp_libc/libesp_libc.a(random.c.obj) + esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) (getrandom) +esp-idf/pthread/libpthread.a(pthread.c.obj) + (pthread_include_pthread_impl) +esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + (pthread_include_pthread_cond_var_impl) +esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) (pthread_key_create) +esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + (pthread_include_pthread_rwlock_impl) +esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + (pthread_include_pthread_semaphore_impl) +esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + (__cxa_guard_dummy) +esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + (__cxx_init_dummy) +esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + (esp_timer_init_include_func) +esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) (esp_timer_impl_init_system_time) +esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (esp_timer_private_lock) +esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) (esp_timer_impl_get_time) +esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) (esp_vfs_uart_get_vfs) +esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) (uart_write_bytes) +esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + (nvs_sec_provider_include_impl) +esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) (nvs_flash_deregister_security_scheme) +esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) (nvs::Storage::isValid() const) +esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) (nvs::NVSHandleSimple::findEntryNs(nvs_opaque_iterator_t*)) +esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) (nvs::NVSPartition::NVSPartition(esp_partition_t const*)) +esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) (nvs::partition_lookup::lookup_nvs_partition(char const*, nvs::Partition**)) +esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) (nvs::NVSPartitionManager::get_instance()) +esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) (nvs::Item::calculateCrc32(unsigned char const*, unsigned int, unsigned long*)) +esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) (nvs::Lock::Lock()) +esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) (nvs::NVSEncryptedPartition::NVSEncryptedPartition(esp_partition_t const*)) +esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) (nvs::HashList::~HashList()) +esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) (nvs::Page::getSeqNumber(unsigned long&) const) +esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) (nvs::PageManager::fillStats(nvs_stats_t&)) +esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + (include_esp_phy_override) +esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) (esp_vfs_register_fs) +esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) (access) +esp-idf/vfs/libvfs.a(nullfs.c.obj) + (esp_vfs_include_nullfs_register) +esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (spi_bus_lock_get_by_id) +esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_dma.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) (spi_dma_enable_burst) +esp-idf/main/libmain.a(main.c.obj) + (app_main) +esp-idf/main/libmain.a(modbus_memory.c.obj) + esp-idf/main/libmain.a(main.c.obj) (modbus_memory_init) +esp-idf/main/libmain.a(modbus_points.c.obj) + esp-idf/main/libmain.a(modbus_memory.c.obj) (modbus_points_find_by_pics_range) +esp-idf/main/libmain.a(modbus_rtu.c.obj) + esp-idf/main/libmain.a(main.c.obj) (modbus_rtu_init) +esp-idf/main/libmain.a(config_store.c.obj) + esp-idf/main/libmain.a(main.c.obj) (config_store_load) +esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + esp-idf/main/libmain.a(main.c.obj) (esp_spiffs_info) +esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) (spiffs_api_read) +esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) (SPIFFS_mounted) +esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) (spiffs_obj_lu_find_entry_visitor) +esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) (spiffs_phys_rd) +esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) (spiffs_lookup_consistency_check) +esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) (spiffs_gc_quick) +esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) (_xt_context_save) +esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (xt_ints_on) +esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) (xt_unhandled_interrupt) +esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) (_xt_user_exit) +esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a(spi_periph.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (spi_periph_signal) +esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) (clk_hal_lp_slow_get_freq_hz) +esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) (spi_flash_hal_init) +esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) (spi_flash_hal_poll_cmd_done) +esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) (spi_flash_encryption_hal_enable) +esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) (esp_partition_find_first) +esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) (esp_partition_write) +esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) (gpio_input_enable) +esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (rtc_gpio_is_valid_gpio) +esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) (uart_hal_get_sclk) +esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal_iram.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) (uart_hal_txfifo_rst) +esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_periph.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) (uart_periph_signal) +esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_mmu_map_init) +esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) (g_mmu_mem_regions) +esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) (esp_cache_get_alignment) +esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) (esp_cache_suspend_ext_mem_cache) +esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) (cache_sync) +esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + esp-idf/heap/libheap.a(heap_caps_base.c.obj) (esp_heap_adjust_alignment_to_hw) +esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) (wdt_hal_init) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) (bootloader_common_get_sha256_of_partition) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (bootloader_init_mem) +esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) (esp_flash_encryption_enabled) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (bootloader_mmap) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (bootloader_flash_update_id) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (bootloader_sha256_flash_contents) +esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (esp_partition_table_verify) +esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (esp_image_get_metadata) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_sha256_start) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_common_ota_select_crc) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) (bootloader_common_get_chip_ver_pkg) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_random_disable) +esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) (_esp_error_check_failed) +esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) (esp_crosscore_int_init) +esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) (task_wdt_timeout_abort) +esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) (esp_task_wdt_impl_timer_allocate) +esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) (_xt_panic) +esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + esp-idf/main/libmain.a(main.c.obj) (esp_err_to_name) +esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (esp_rom_set_cpu_ticks_per_us) +esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) (esp_rom_spiflash_wait_idle) +esp-idf/hal/libhal.a(brownout_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) (brownout_hal_config) +esp-idf/soc/libsoc.a(interrupts.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (esp_isr_names) +esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) (gpio_hal_intr_enable_on_core) +esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) (rtcio_hal_set_direction) +esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_periph.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) (rtc_io_desc) +esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (touch_hal_prepare_deep_sleep) +esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) (esp_cpu_configure_region_protection) +esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + esp-idf/esp_libc/libesp_libc.a(random.c.obj) (esp_fill_random) +esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) (spicommon_periph_claim) +esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) (xRingbufferSend) +C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + esp-idf/freertos/libfreertos.a(portasm.S.obj) (xthal_window_spill_nw) +C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (xthal_set_intclear) +C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) (Xthal_intlevel) +C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) (xthal_restore_extra_nw) +C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) (xthal_save_extra_nw) +esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_psa_crypto_init.c.obj) + (mbedtls_psa_crypto_init_include_impl) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) (psa_hash_abort) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_client.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) (psa_reset_key_attributes) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) (psa_driver_wrapper_get_key_buffer_size) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) (psa_is_valid_key_id) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_storage.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) (psa_destroy_persistent_key) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_storage.c.obj) (psa_its_get_info) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_hardware.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) (mbedtls_psa_external_get_random) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_xts.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) (esp_aes_xts_init) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_common.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_xts.c.obj) (esp_aes_init) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_xts.c.obj) (esp_aes_crypt_ecb) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) (esp_sha_hash_compute) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) (esp_sha256_driver_clone) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) (esp_sha512_starts) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) (esp_hmac_abort_transparent) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) (esp_sha1_driver_clone) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) (esp_sha_try_lock_engine) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_md5.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) (esp_md5_hash_compute) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) (esp_aes_cipher_encrypt_setup) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) (esp_crypto_aes_gcm_encrypt_setup) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) (esp_cmac_abort) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) (esp_aes_gcm_setkey) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) (mbedtls_mpi_lt_mpi_ct) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) (mbedtls_mpi_core_bitlen) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) (mbedtls_ct_memcmp) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) (mbedtls_ecp_group_init) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) (mbedtls_ecp_group_load) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) (mbedtls_calloc) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform_util.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) (mbedtls_platform_zeroize) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) (mbedtls_psa_aead_encrypt_setup) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) (mbedtls_cipher_values_from_psa) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) (mbedtls_psa_ecp_import_key) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) (mbedtls_psa_ffdh_export_public_key) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) (mbedtls_psa_hash_abort) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) (mbedtls_psa_mac_abort) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) (mbedtls_psa_pake_output) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) (mbedtls_psa_rsa_import_key) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) (mbedtls_ecc_group_to_psa) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) (mbedtls_rsa_export) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) (mbedtls_rsa_deduce_primes) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_hash.c.obj) (mbedtls_sha512_init) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) (mbedtls_mutex_init) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) (mbedtls_asn1_get_tag) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) (mbedtls_asn1_write_len) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) (mbedtls_ccm_init) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) (mbedtls_cipher_info_from_values) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) (mbedtls_cipher_base_lookup_table) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) (mbedtls_cipher_cmac_starts) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) (mbedtls_ecdh_init) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) (mbedtls_ecdsa_sign) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) (mbedtls_ecjpake_init) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) (mbedtls_gcm_init) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) (mbedtls_hmac_drbg_init) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) (mbedtls_md_info_from_type) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) (mbedtls_oid_get_oid_by_md) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) (mbedtls_sha256_init) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) (mbedtls_aes_init) +esp-idf/esp_hal_security/libesp_hal_security.a(sha_hal.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) (sha_hal_set_mode) +esp-idf/esp_hal_security/libesp_hal_security.a(aes_hal.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) (aes_hal_setkey) +esp-idf/esp_hal_security/libesp_hal_security.a(mpu_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) (mpu_hal_set_region_access) +esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) (esp_ota_get_running_partition) +esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) (esp_efuse_disable_rom_download_mode) +esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) (esp_crypto_aes_enable_periph_clk) +esp-idf/soc/libsoc.a(dport_access_common.c.obj) + esp-idf/esp_hal_security/libesp_hal_security.a(sha_hal.c.obj) (esp_dport_access_read_buffer) +esp-idf/esp_libc/libesp_libc.a(rand.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) (rand) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_mem.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform.c.obj) (esp_mbedtls_mem_calloc) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) (mbedtls_mpi_exp_mod) +esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) (esp_mpi_enable_hardware_hw_op) +esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) (mpi_hal_calc_hardware_words) +esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) (esp_crypto_mpi_lock_acquire) +esp-idf/soc/libsoc.a(mpi_periph.c.obj) + esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) (MPI_OPERATIONS_REG) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opv.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) (operator delete[](void*)) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) (std::nothrow) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) (operator new[](unsigned int, std::nothrow_t const&)) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_op.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opv.o) (operator delete(void*)) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) (__cxa_begin_catch) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) (__cxa_get_globals_fast) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) (std::terminate()) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_unex_handler.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) (__cxxabiv1::__unexpected_handler) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opv.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) (operator new[](unsigned int)) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_term_handler.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) (__cxxabiv1::__terminate_handler) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opv.o) (operator new(unsigned int)) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) (vtable for __cxxabiv1::__si_class_type_info) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) (std::type_info::__is_pointer_p() const) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) (vtable for std::bad_alloc) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) (__cxxabiv1::__class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void**) const) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_ops.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) (operator delete(void*, unsigned int)) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) (std::exception::~exception()) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) (__bswapsi2) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_bswapdi2.o) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) (__bswapdi2) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__divsf3) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__adddf3) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__muldf3) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__divdf3) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_cmpdf2.o) + esp-idf/main/libmain.a(modbus_memory.c.obj) (__gtdf2) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__fixdfsi) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__fixunsdfsi) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__floatunsidf) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_truncdfsf2.o) + esp-idf/main/libmain.a(modbus_memory.c.obj) (__truncdfsf2) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__extendsfdf2) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (__popcountsi2) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + esp-idf/esp_libc/libesp_libc.a(time.c.obj) (__divdi3) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_moddi3.o) + esp-idf/esp_libc/libesp_libc.a(time.c.obj) (__moddi3) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + esp-idf/esp_system/libesp_system.a(clk.c.obj) (__udivdi3) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) (__umoddi3) +esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) (__wrap__Unwind_DeleteException) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memcpy.S.o) + esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) (memcpy) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memset.S.o) + esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) (memset) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strcmp.S.o) + esp-idf/log/liblog.a(tag_log_level.c.obj) (strcmp) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strcpy.S.o) + esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) (strcpy) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strlen.S.o) + esp-idf/esp_system/libesp_system.a(panic.c.obj) (strlen) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strncpy.S.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) (strncpy) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_ctype_ctype_.c.o) + esp-idf/main/libmain.a(modbus_points.c.obj) (_ctype_b) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_ctype_tolower.c.o) + esp-idf/main/libmain.a(config_store.c.obj) (tolower) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_misc_init.c.o) + esp-idf/esp_system/libesp_system.a(startup.c.obj) (__libc_init_array) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_search_qsort.c.o) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) (qsort) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_div.c.o) + esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) (div) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_environ.c.o) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) (environ) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_itoa.c.o) + esp-idf/esp_libc/libesp_libc.a(abort.c.obj) (itoa) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_utoa.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_itoa.c.o) (__utoa) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_bzero.c.o) + esp-idf/esp_libc/libesp_libc.a(heap.c.obj) (bzero) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memcmp.c.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (memcmp) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memmove.c.o) + esp-idf/main/libmain.a(modbus_points.c.obj) (memmove) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcat.c.o) + esp-idf/freertos/libfreertos.a(port.c.obj) (strcat) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strchr.c.o) + esp-idf/main/libmain.a(modbus_points.c.obj) (strchr) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcspn.c.o) + esp-idf/main/libmain.a(config_store.c.obj) (strcspn) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror_r.c.o) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) (strerror_r) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strlcat.c.o) + esp-idf/esp_system/libesp_system.a(ubsan.c.obj) (strlcat) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strlcpy.c.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) (strlcpy) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strncasecmp.c.o) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) (strncasecmp) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strncmp.c.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) (strncmp) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strstr.c.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (strstr) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_time_time.c.o) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) (time) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) (__bufio_flush) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fclose.c.o) + esp-idf/main/libmain.a(main.c.obj) (fclose) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ferror.c.o) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) (ferror) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fflush.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) (fflush) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgets.c.o) + esp-idf/main/libmain.a(modbus_points.c.obj) (fgets) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_flockfile_init.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ferror.c.o) (__flockfile_init) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fopen.c.o) + esp-idf/main/libmain.a(main.c.obj) (fopen) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fprintf.c.o) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (fprintf) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputc.c.o) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (fputc) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputs.c.o) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) (fputs) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fread.c.o) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) (fread) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fwrite.c.o) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (fwrite) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_printf.c.o) + esp-idf/heap/libheap.a(heap_caps.c.obj) (printf) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_putchar.c.o) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) (putchar) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_puts.c.o) + esp-idf/heap/libheap.a(heap_caps.c.obj) (puts) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_setbuf.c.o) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) (setbuf) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_setvbuf.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_setbuf.c.o) (setvbuf) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_sflags.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fopen.c.o) (__stdio_flags) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_snprintf.c.o) + esp-idf/main/libmain.a(main.c.obj) (snprintf) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_strtol.c.o) + esp-idf/main/libmain.a(config_store.c.obj) (strtol) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_strtoul.c.o) + esp-idf/main/libmain.a(modbus_points.c.obj) (strtoul) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vfprintf.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fprintf.c.o) (vfprintf) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vprintf.c.o) + esp-idf/log/liblog.a(log_write.c.obj) (vprintf) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtoa_ryu.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vfprintf.c.o) (__dtoa_engine) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_log10.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtoa_ryu.c.o) (__log10Pow2) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_pow5bits.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtoa_ryu.c.o) (__pow5bits) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_table.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtoa_ryu.c.o) (__pow5Factor) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_umul128.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtoa_ryu.c.o) (__umul128) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror_r.c.o) (_strerror_r) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strnlen.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vfprintf.c.o) (strnlen) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtox_engine.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vfprintf.c.o) (__dtox_engine) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fdopen.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fopen.c.o) (fdopen) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgetc.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgets.c.o) (getc_unlocked) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_filestrput.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_snprintf.c.o) (__file_str_put) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fseeko.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fdopen.c.o) (fseeko) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_ashldi3.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtoa_ryu.c.o) (__ashldi3) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_ashrdi3.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtox_engine.c.o) (__ashrdi3) +C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_lshrdi3.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_umul128.c.o) (__lshrdi3) + +Discarded input sections + + .text 0x00000000 0x0 CMakeFiles/modbus_tcp_esp32.elf.dir/project_elf_src_esp32.c.obj + .data 0x00000000 0x0 CMakeFiles/modbus_tcp_esp32.elf.dir/project_elf_src_esp32.c.obj + .bss 0x00000000 0x0 CMakeFiles/modbus_tcp_esp32.elf.dir/project_elf_src_esp32.c.obj + .comment 0x00000000 0x30 CMakeFiles/modbus_tcp_esp32.elf.dir/project_elf_src_esp32.c.obj + .text 0x00000000 0x0 esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + .data 0x00000000 0x0 esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + .xt.lit 0x00000000 0x68 esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + .xt.prop 0x00000000 0x360 esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + .literal._write_r_console + 0x00000000 0xc esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + .literal._read_r_console + 0x00000000 0x8 esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + .literal._fstat_r_console + 0x00000000 0xc esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + .literal._fsync_console + 0x00000000 0x8 esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + .text 0x00000000 0x0 esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + .data 0x00000000 0x0 esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + .text._write_r_console + 0x00000000 0x44 esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + .text._read_r_console + 0x00000000 0x4e esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + .text._fstat_r_console + 0x00000000 0x30 esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + .text._fsync_console + 0x00000000 0x25 esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + .debug_frame 0x00000000 0x70 esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + .debug_info 0x00000000 0x566 esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + .debug_abbrev 0x00000000 0x1d1 esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + .debug_loc 0x00000000 0x2ae esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + .debug_aranges + 0x00000000 0x38 esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + .debug_ranges 0x00000000 0x28 esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + .debug_line 0x00000000 0x62e esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + .debug_str 0x00000000 0x4a3 esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + .xt.prop 0x00000000 0x1a4 esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + .literal.esp_system_console_put_char + 0x00000000 0x4 esp-idf/esp_stdio/libesp_stdio.a(stdio_simple.c.obj) + .text 0x00000000 0x0 esp-idf/esp_stdio/libesp_stdio.a(stdio_simple.c.obj) + .data 0x00000000 0x0 esp-idf/esp_stdio/libesp_stdio.a(stdio_simple.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_stdio/libesp_stdio.a(stdio_simple.c.obj) + .text.esp_system_console_put_char + 0x00000000 0xe esp-idf/esp_stdio/libesp_stdio.a(stdio_simple.c.obj) + .debug_frame 0x00000000 0x28 esp-idf/esp_stdio/libesp_stdio.a(stdio_simple.c.obj) + .debug_info 0x00000000 0xde esp-idf/esp_stdio/libesp_stdio.a(stdio_simple.c.obj) + .debug_abbrev 0x00000000 0x9b esp-idf/esp_stdio/libesp_stdio.a(stdio_simple.c.obj) + .debug_aranges + 0x00000000 0x20 esp-idf/esp_stdio/libesp_stdio.a(stdio_simple.c.obj) + .debug_ranges 0x00000000 0x10 esp-idf/esp_stdio/libesp_stdio.a(stdio_simple.c.obj) + .debug_line 0x00000000 0x1a7 esp-idf/esp_stdio/libesp_stdio.a(stdio_simple.c.obj) + .debug_str 0x00000000 0x2a9 esp-idf/esp_stdio/libesp_stdio.a(stdio_simple.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_stdio/libesp_stdio.a(stdio_simple.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_stdio/libesp_stdio.a(stdio_simple.c.obj) + .xt.prop 0x00000000 0x30 esp-idf/esp_stdio/libesp_stdio.a(stdio_simple.c.obj) + .literal.esp_app_get_description + 0x00000000 0x4 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .text 0x00000000 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .data 0x00000000 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .text.esp_app_get_description + 0x00000000 0x8 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .xt.prop 0x00000000 0x168 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .xt.prop 0x00000000 0x138 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .literal.esp_efuse_read_field_blob + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_field_bit + 0x00000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_field_cnt + 0x00000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_field_blob + 0x00000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_field_cnt + 0x00000000 0x40 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_field_bit + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_reg + 0x00000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_block + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_reg + 0x00000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_block + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.destroy_block + 0x00000000 0x58 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_batch_write_begin + 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_batch_write_cancel + 0x00000000 0x2c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_batch_write_commit + 0x00000000 0x34 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_destroy_block + 0x00000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_field_blob + 0x00000000 0x65 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_read_field_bit.str1.4 + 0x00000000 0x3b esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_field_bit + 0x00000000 0x36 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_field_cnt + 0x00000000 0x49 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_blob + 0x00000000 0x7f esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_write_field_cnt.str1.4 + 0x00000000 0x4e esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_cnt + 0x00000000 0xa3 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_bit + 0x00000000 0x4c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_get_field_size + 0x00000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_reg + 0x00000000 0x57 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_block + 0x00000000 0x40 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_reg + 0x00000000 0x2e esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_block + 0x00000000 0x41 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.destroy_block.str1.4 + 0x00000000 0x120 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.destroy_block + 0x00000000 0x105 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_begin.str1.4 + 0x00000000 0x51 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_begin + 0x00000000 0x52 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_cancel.str1.4 + 0x00000000 0x5f esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_cancel + 0x00000000 0x61 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_commit.str1.4 + 0x00000000 0x37 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_commit + 0x00000000 0x7c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_destroy_block + 0x00000000 0x2d esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.__func__$0 + 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.__func__$1 + 0x00000000 0x13 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.__func__$2 + 0x00000000 0x19 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .bss.s_batch_writing_mode + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .bss.s_efuse_lock + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .xt.lit 0x00000000 0x80 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .xt.prop 0x00000000 0x6a8 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.fill_reg + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.set_cnt_in_reg + 0x00000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.write_reg + 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.check_range_of_bits + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_process + 0x00000000 0x40 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_reset + 0x00000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_burn_efuses + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_update_virt_blocks + 0x00000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_debug_dump_single_block + 0x00000000 0x44 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_debug_dump_pending + 0x00000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_debug_dump_blocks + 0x00000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_read_reg + 0x00000000 0x2c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_fill_buff + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_count_once + 0x00000000 0xc esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_write_cnt + 0x00000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_write_reg + 0x00000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_write_blob + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_get_read_register_address + 0x00000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_is_correct_written_data + 0x00000000 0x34 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.get_mask + 0x00000000 0x1e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.fill_reg + 0x00000000 0xa1 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.set_cnt_in_reg.str1.4 + 0x00000000 0x63 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.set_cnt_in_reg + 0x00000000 0x47 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.write_reg.str1.4 + 0x00000000 0x10c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.write_reg + 0x00000000 0x87 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.check_range_of_bits + 0x00000000 0x56 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_process.str1.4 + 0x00000000 0x5d esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_process + 0x00000000 0x13f esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_reset.str1.4 + 0x00000000 0x8e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_reset + 0x00000000 0x73 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_burn_efuses + 0x00000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_erase_virt_blocks + 0x00000000 0x5 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_update_virt_blocks.str1.4 + 0x00000000 0x27 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_update_virt_blocks + 0x00000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_debug_dump_single_block.str1.4 + 0x00000000 0x12a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_debug_dump_single_block + 0x00000000 0xba esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_debug_dump_pending + 0x00000000 0x60 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_debug_dump_blocks.str1.4 + 0x00000000 0xd esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_debug_dump_blocks + 0x00000000 0x2c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_get_number_of_items + 0x00000000 0x16 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_read_reg.str1.4 + 0x00000000 0xd0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_read_reg + 0x00000000 0x77 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_fill_buff + 0x00000000 0xc1 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_count_once + 0x00000000 0x32 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_cnt + 0x00000000 0x4e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_write_reg.str1.4 + 0x00000000 0x53 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_reg + 0x00000000 0x51 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_blob + 0x00000000 0x21 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_get_read_register_address.str1.4 + 0x00000000 0x16 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_get_read_register_address + 0x00000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_is_correct_written_data.str1.4 + 0x00000000 0xba esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_is_correct_written_data + 0x00000000 0xa4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$0 + 0x00000000 0x2c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$1 + 0x00000000 0x1b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$2 + 0x00000000 0x2a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$3 + 0x00000000 0x25 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$4 + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$5 + 0x00000000 0xa esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$6 + 0x00000000 0xf esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$7 + 0x00000000 0x1a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .bss.s_burn_counter + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_frame 0x00000000 0x220 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_info 0x00000000 0x192c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_abbrev 0x00000000 0x425 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_loc 0x00000000 0xdc5 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_aranges + 0x00000000 0xc8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_ranges 0x00000000 0x150 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_line 0x00000000 0x1b1a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_str 0x00000000 0x11be esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .comment 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .xt.lit 0x00000000 0x98 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .xt.prop 0x00000000 0x900 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_set_write_protect + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_read_protect + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_coding_scheme + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_block_is_empty + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_key_dis_read + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_key_dis_read + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_key_dis_write + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_key_dis_write + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_key_block_unused + 0x00000000 0xc esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_find_purpose + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_write_key + 0x00000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_write_keys + 0x00000000 0x34 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_write_protect + 0x00000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_read_protect + 0x00000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_coding_scheme + 0x00000000 0x34 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_block_is_empty + 0x00000000 0x52 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.esp_efuse_get_key_dis_read.str1.4 + 0x00000000 0xa3 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key_dis_read + 0x00000000 0x32 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_key_dis_read + 0x00000000 0x21 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key_dis_write + 0x00000000 0x32 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_key_dis_write + 0x00000000 0x21 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_key_block_unused + 0x00000000 0x32 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key_purpose + 0x00000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_keypurpose_dis_write + 0x00000000 0x7 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_find_purpose + 0x00000000 0x29 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_write_key + 0x00000000 0xa1 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.esp_efuse_write_keys.str1.4 + 0x00000000 0x8e esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_write_keys + 0x00000000 0xef esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__$0 + 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__$1 + 0x00000000 0x1b esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.s_table + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_frame 0x00000000 0x160 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_info 0x00000000 0x2f5f esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_abbrev 0x00000000 0x3ec esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_loc 0x00000000 0x82f esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_aranges + 0x00000000 0x88 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_ranges 0x00000000 0x98 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_line 0x00000000 0xed4 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_str 0x00000000 0x23d6 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .comment 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .xt.lit 0x00000000 0x60 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .xt.prop 0x00000000 0x5c4 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_MAC_VERSION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_VERSION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_TP_HIGH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_TP_LOW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_TP_HIGH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_TP_LOW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_MAC_CUSTOM + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CUSTOM_MAC_CRC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_BLOCK2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_BLOCK1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_STATUS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_DL_CACHE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_DL_DECRYPT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_DL_ENCRYPT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_JTAG_DISABLE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ABS_DONE_1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ABS_DONE_0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_SDIO_HOST + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CONSOLE_DEBUG_DISABLE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CODING_SCHEME + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_CRYPT_CONFIG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WAFER_VERSION_MINOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_VOL_LEVEL_HP_INV + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_VER_REV2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_CS0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_D + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_Q + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_CLK + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_XPD_SDIO_FORCE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_XPD_SDIO_TIEH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_XPD_SDIO_REG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC_VREF + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CLK8M_FREQ + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_VER_REV1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_BLK3_PART_RESERVE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_CPU_FREQ_RATED + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_CPU_FREQ_LOW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_PACKAGE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_HD + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_CACHE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_PACKAGE_4BIT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_BT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_APP_CPU + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_MAC_CRC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_MAC + 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_UART_DOWNLOAD_DIS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_CRYPT_CNT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_KEY_STATUS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_CODING_SCHEME + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_FLASH_CRYPT_CONFIG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLK3_PART_RESERVE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_MAC_VERSION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_SECURE_VERSION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_ADC2_TP_HIGH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_ADC2_TP_LOW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_ADC1_TP_HIGH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_ADC1_TP_LOW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_CUSTOM_MAC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_CUSTOM_MAC_CRC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DISABLE_DL_CACHE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DISABLE_DL_DECRYPT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DISABLE_DL_ENCRYPT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_CONSOLE_DEBUG_DISABLE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_JTAG_DISABLE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ABS_DONE_1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ABS_DONE_0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY_STATUS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_CODING_SCHEME + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_CRYPT_CONFIG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLK3_PART_RESERVE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_MAC_VERSION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SECURE_VERSION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_TP_HIGH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_TP_LOW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_TP_HIGH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_TP_LOW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_CUSTOM_MAC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_CUSTOM_MAC_CRC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_CS0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_Q + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_CLK + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_XPD_SDIO_FORCE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_XPD_SDIO_TIEH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_XPD_SDIO_REG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC_VREF + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_CLK8M_FREQ + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_VOL_LEVEL_HP_INV + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_CACHE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DISABLE_BT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DISABLE_APP_CPU + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_MAC_CRC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_MAC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_UART_DOWNLOAD_DIS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_CRYPT_CNT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_WR_DIS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_RD_DIS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.MAC_VERSION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SECURE_VERSION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_TP_HIGH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_TP_LOW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_TP_HIGH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_TP_LOW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.MAC_CUSTOM + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CUSTOM_MAC_CRC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.BLOCK2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.BLOCK1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY_STATUS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_DL_CACHE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_DL_DECRYPT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_DL_ENCRYPT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.JTAG_DISABLE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ABS_DONE_1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ABS_DONE_0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_SDIO_HOST + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CONSOLE_DEBUG_DISABLE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CODING_SCHEME + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.FLASH_CRYPT_CONFIG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WAFER_VERSION_MINOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.VOL_LEVEL_HP_INV + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_VER_REV2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_CS0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_D + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_Q + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_CLK + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.XPD_SDIO_FORCE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.XPD_SDIO_TIEH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.XPD_SDIO_REG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC_VREF + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CLK8M_FREQ + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_VER_REV1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.BLK3_PART_RESERVE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_CPU_FREQ_RATED + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_CPU_FREQ_LOW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_PACKAGE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_HD + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_CACHE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_PACKAGE_4BIT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_BT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_APP_CPU + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.MAC_CRC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.MAC 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.UART_DOWNLOAD_DIS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.FLASH_CRYPT_CNT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_KEY_STATUS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_CODING_SCHEME + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_FLASH_CRYPT_CONFIG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLK3_PART_RESERVE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_MAC_VERSION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_SECURE_VERSION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_ADC2_TP_HIGH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_ADC2_TP_LOW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_ADC1_TP_HIGH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_ADC1_TP_LOW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_CUSTOM_MAC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_CUSTOM_MAC_CRC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DISABLE_DL_CACHE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DISABLE_DL_DECRYPT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DISABLE_DL_ENCRYPT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_CONSOLE_DEBUG_DISABLE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_JTAG_DISABLE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ABS_DONE_1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ABS_DONE_0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY_STATUS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_CODING_SCHEME + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_CRYPT_CONFIG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLK3_PART_RESERVE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_MAC_VERSION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SECURE_VERSION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_TP_HIGH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_TP_LOW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_TP_HIGH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_TP_LOW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_CUSTOM_MAC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_CUSTOM_MAC_CRC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_CS0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_D + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_Q + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_CLK + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_XPD_SDIO_FORCE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_XPD_SDIO_TIEH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_XPD_SDIO_REG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC_VREF + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_CLK8M_FREQ + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_VOL_LEVEL_HP_INV + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_CACHE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DISABLE_BT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DISABLE_APP_CPU + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_MAC_CRC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_MAC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_UART_DOWNLOAD_DIS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_CRYPT_CNT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_WR_DIS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_RD_DIS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_info 0x00000000 0x1621 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_abbrev 0x00000000 0x106 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_aranges + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_line 0x00000000 0x20d esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_str 0x00000000 0x161a esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .comment 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .xt.prop 0x00000000 0x9d8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .literal.apply_repeat_encoding + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_set_timing + 0x00000000 0xc esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.read_r_data + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_clear_program_registers + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_apply_34_encoding + 0x00000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_burn_chip_opt + 0x00000000 0xbc esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_burn_chip + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_apply_new_coding_scheme + 0x00000000 0x3c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.apply_repeat_encoding + 0x00000000 0x23 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_set_timing + 0x00000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.read_r_data + 0x00000000 0x34 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_clear_program_registers + 0x00000000 0xb esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_apply_34_encoding + 0x00000000 0x8b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_burn_chip_opt.str1.4 + 0x00000000 0x248 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_burn_chip_opt + 0x00000000 0x296 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_burn_chip + 0x00000000 0x11 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_apply_new_coding_scheme.str1.4 + 0x00000000 0x3f esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_apply_new_coding_scheme + 0x00000000 0x111 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$0 + 0x00000000 0x2a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$1 + 0x00000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.start_write_addr + 0x00000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.range_write_addr_blocks + 0x00000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .bss.write_mass_blocks + 0x00000000 0x80 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.range_read_addr_blocks + 0x00000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .xt.prop 0x00000000 0x4f8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(init.c.obj) + .data 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(init.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(init.c.obj) + .xt.prop 0x00000000 0x54 esp-idf/esp_security/libesp_security.a(init.c.obj) + .literal.bus_using_iomux + 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .literal.cs_using_iomux + 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .literal.acquire_spi_device + 0x00000000 0x38 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .iram1.0.literal + 0x00000000 0x20 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .literal.spi_bus_remove_flash_device + 0x00000000 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .literal.spi_bus_add_flash_device + 0x00000000 0x4c esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text.use_bus_lock + 0x00000000 0xa esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text.bus_using_iomux + 0x00000000 0x8a esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text.cs_using_iomux + 0x00000000 0x34 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text.init_gpspi_clock + 0x00000000 0x7 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.acquire_spi_device.str1.4 + 0x00000000 0x87 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text.acquire_spi_device + 0x00000000 0xce esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .iram1.0 0x00000000 0x132 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text.spi_bus_remove_flash_device + 0x00000000 0x39 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text.spi_bus_add_flash_device + 0x00000000 0x147 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.__func__$3 + 0x00000000 0x19 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .xt.lit 0x00000000 0x48 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .xt.prop 0x00000000 0x4f8 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .iram1.3.literal + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .literal.spi23_end + 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.2.literal + 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .literal.spi23_start + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .literal.esp_flash_init_os_functions + 0x00000000 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .literal.esp_flash_deinit_os_functions + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text.use_bus_lock + 0x00000000 0xa esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.3 0x00000000 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text.spi23_end + 0x00000000 0x1a esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.2 0x00000000 0x1e esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text.spi23_start + 0x00000000 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text.esp_flash_init_os_functions + 0x00000000 0x6f esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text.esp_flash_deinit_os_functions + 0x00000000 0x1e esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text.esp_flash_init_main_bus_lock + 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text.esp_flash_set_dangerous_write_protection + 0x00000000 0x24 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .rodata.esp_flash_spi23_default_os_functions + 0x00000000 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .xt.lit 0x00000000 0x98 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .xt.prop 0x00000000 0x5e8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .literal.esp_flash_app_disable_os_functions + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .text.get_temp_buffer_not_supported + 0x00000000 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .text.esp_flash_app_disable_os_functions + 0x00000000 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .xt.prop 0x00000000 0xf0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .xt.prop 0x00000000 0xcc esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .xt.prop 0x00000000 0x9c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .xt.lit 0x00000000 0xe0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .xt.prop 0x00000000 0xc6c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .xt.prop 0x00000000 0x108 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .xt.prop 0x00000000 0xe4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .xt.prop 0x00000000 0x1d4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .xt.prop 0x00000000 0x36c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .literal.memspi_host_erase_chip + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .literal.memspi_host_erase_sector + 0x00000000 0x18 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .literal.memspi_host_erase_block + 0x00000000 0x18 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .literal.memspi_host_program_page + 0x00000000 0x18 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .literal.memspi_host_read + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .literal.memspi_host_set_write_protect + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text.memspi_host_erase_chip + 0x00000000 0x23 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .rodata.memspi_host_erase_sector.str1.4 + 0x00000000 0x4c esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text.memspi_host_erase_sector + 0x00000000 0x46 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text.memspi_host_erase_block + 0x00000000 0x47 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .rodata.memspi_host_program_page.str1.4 + 0x00000000 0x1e esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text.memspi_host_program_page + 0x00000000 0x4e esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text.memspi_host_read + 0x00000000 0x30 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text.memspi_host_set_write_protect + 0x00000000 0x2d esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .rodata.__func__$0 + 0x00000000 0x19 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .rodata.__func__$1 + 0x00000000 0x18 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .rodata.__func__$2 + 0x00000000 0x19 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .xt.lit 0x00000000 0x50 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .xt.prop 0x00000000 0x3b4 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .iram1.9.literal + 0x00000000 0x10 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.10.literal + 0x00000000 0xc esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.9 0x00000000 0x32 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.10 0x00000000 0x20 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .xt.lit 0x00000000 0x60 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .xt.prop 0x00000000 0x444 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .literal.s_merge_contiguous_pages + 0x00000000 0x10 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .literal.spi_flash_mmap_pages + 0x00000000 0x28 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .literal.spi_flash_mmap_dump + 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .literal.spi_flash_mmap_get_free_pages + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .literal.spi_flash_phys2cache + 0x00000000 0x14 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text.s_find_non_contiguous_block_nums + 0x00000000 0x23 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text.s_pages_to_bytes + 0x00000000 0x20 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text.s_merge_contiguous_pages + 0x00000000 0x59 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text.spi_flash_mmap_pages + 0x00000000 0x107 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text.spi_flash_mmap_dump + 0x00000000 0x10 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text.spi_flash_mmap_get_free_pages + 0x00000000 0x21 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .rodata.spi_flash_phys2cache.str1.4 + 0x00000000 0xe esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text.spi_flash_phys2cache + 0x00000000 0x40 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .rodata.__func__$0 + 0x00000000 0x15 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .rodata.__func__$2 + 0x00000000 0x19 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .xt.lit 0x00000000 0x50 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .xt.prop 0x00000000 0x534 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .iram1.9.literal + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.9 0x00000000 0xa esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.12 0x00000000 0x5 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .dram1.7 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .xt.prop 0x00000000 0x204 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .literal.read_unique_id + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.find_region + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_read_id + 0x00000000 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_read_unique_chip_id + 0x00000000 0x28 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_get_size + 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_erase_chip + 0x00000000 0x18 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_get_chip_write_protect + 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_set_chip_write_protect + 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_get_protectable_regions + 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_get_protected_region + 0x00000000 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_set_protected_region + 0x00000000 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_get_io_mode + 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_set_io_mode + 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_suspend_cmd_init + 0x00000000 0x2c esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_app_disable_protect + 0x00000000 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_init + 0x00000000 0x5c esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.read_unique_id + 0x00000000 0x34 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.find_region + 0x00000000 0x40 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_read_id + 0x00000000 0x38 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_read_unique_chip_id + 0x00000000 0x86 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_get_size + 0x00000000 0x36 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_erase_chip + 0x00000000 0x48 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_get_chip_write_protect + 0x00000000 0x5a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_set_chip_write_protect + 0x00000000 0x52 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_get_protectable_regions + 0x00000000 0x52 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_get_protected_region + 0x00000000 0xa2 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_set_protected_region + 0x00000000 0xd4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_get_io_mode + 0x00000000 0x66 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_set_io_mode + 0x00000000 0x62 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_suspend_cmd_init + 0x00000000 0x80 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_app_disable_protect + 0x00000000 0x28 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_init + 0x00000000 0x166 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .xt.lit 0x00000000 0xf0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .xt.prop 0x00000000 0x1338 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_ipc_call + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .text.esp_ipc_call + 0x00000000 0x15 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .xt.prop 0x00000000 0x318 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .literal.esp_unregister_shutdown_handler + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .text.esp_unregister_shutdown_handler + 0x00000000 0x2c esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .xt.prop 0x00000000 0x12c esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .xt.prop 0x00000000 0x12c esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .literal.esp_system_get_time + 0x00000000 0x8 esp-idf/esp_system/libesp_system.a(system_time.c.obj) + .literal.esp_system_get_time_resolution + 0x00000000 0x8 esp-idf/esp_system/libesp_system.a(system_time.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(system_time.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(system_time.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(system_time.c.obj) + .text.esp_system_get_time + 0x00000000 0x1d esp-idf/esp_system/libesp_system.a(system_time.c.obj) + .text.esp_system_get_time_resolution + 0x00000000 0x11 esp-idf/esp_system/libesp_system.a(system_time.c.obj) + .debug_frame 0x00000000 0x40 esp-idf/esp_system/libesp_system.a(system_time.c.obj) + .debug_info 0x00000000 0x144 esp-idf/esp_system/libesp_system.a(system_time.c.obj) + .debug_abbrev 0x00000000 0xcf esp-idf/esp_system/libesp_system.a(system_time.c.obj) + .debug_loc 0x00000000 0x30 esp-idf/esp_system/libesp_system.a(system_time.c.obj) + .debug_aranges + 0x00000000 0x28 esp-idf/esp_system/libesp_system.a(system_time.c.obj) + .debug_ranges 0x00000000 0x18 esp-idf/esp_system/libesp_system.a(system_time.c.obj) + .debug_line 0x00000000 0x294 esp-idf/esp_system/libesp_system.a(system_time.c.obj) + .debug_str 0x00000000 0x30f esp-idf/esp_system/libesp_system.a(system_time.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_system/libesp_system.a(system_time.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/esp_system/libesp_system.a(system_time.c.obj) + .xt.prop 0x00000000 0x60 esp-idf/esp_system/libesp_system.a(system_time.c.obj) + .literal.__ubsan_maybe_debugbreak + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_default_handler + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_type_mismatch + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_type_mismatch_v1 + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_add_overflow + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_sub_overflow + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_mul_overflow + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_negate_overflow + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_divrem_overflow + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_shift_out_of_bounds + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_out_of_bounds + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_missing_return + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_vla_bound_not_positive + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_load_invalid_value + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_nonnull_arg + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_nonnull_return + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_builtin_unreachable + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_pointer_overflow + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_invalid_builtin + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_maybe_debugbreak + 0x00000000 0x11 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__ubsan_default_handler.str1.4 + 0x00000000 0x1c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_default_handler + 0x00000000 0x31 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_type_mismatch + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_type_mismatch_v1 + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_add_overflow + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_sub_overflow + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_mul_overflow + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_negate_overflow + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_divrem_overflow + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_shift_out_of_bounds + 0x00000000 0x1a esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_out_of_bounds + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_missing_return + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_vla_bound_not_positive + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_load_invalid_value + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_nonnull_arg + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_nonnull_return + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_builtin_unreachable + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_pointer_overflow + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_invalid_builtin + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$0 + 0x00000000 0x1f esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$1 + 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$2 + 0x00000000 0x23 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$3 + 0x00000000 0x1e esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$4 + 0x00000000 0x1b esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$5 + 0x00000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$6 + 0x00000000 0x26 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$7 + 0x00000000 0x1e esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$8 + 0x00000000 0x1d esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$9 + 0x00000000 0x23 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$10 + 0x00000000 0x1f esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$11 + 0x00000000 0x1f esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$12 + 0x00000000 0x1c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$13 + 0x00000000 0x1c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$14 + 0x00000000 0x1c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$15 + 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$16 + 0x00000000 0x1d esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .xt.lit 0x00000000 0x98 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .xt.prop 0x00000000 0x3c0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .xt.lit 0x00000000 0x60 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .xt.prop 0x00000000 0x3fc esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .literal.esp_get_free_heap_size + 0x00000000 0x8 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .literal.esp_get_free_internal_heap_size + 0x00000000 0x8 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .literal.esp_get_minimum_free_heap_size + 0x00000000 0x8 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .literal.esp_get_idf_version + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .text.esp_get_free_heap_size + 0x00000000 0x10 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .text.esp_get_free_internal_heap_size + 0x00000000 0x10 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .text.esp_get_minimum_free_heap_size + 0x00000000 0x10 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .rodata.esp_get_idf_version.str1.4 + 0x00000000 0x5 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .text.esp_get_idf_version + 0x00000000 0x8 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .xt.prop 0x00000000 0x168 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .iram1.0.literal + 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.1.literal + 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.4.literal + 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.6.literal + 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.0 0x00000000 0x53 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.1 0x00000000 0x53 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.4 0x00000000 0x53 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.6 0x00000000 0x53 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .xt.lit 0x00000000 0x48 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .xt.prop 0x00000000 0x390 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .xt.prop 0x00000000 0x78 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .xt.prop 0x00000000 0x24 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .data 0x00000000 0x18 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .xt.prop 0x00000000 0x78 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .literal.rtc_clk_select_rtc_slow_clk + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .text.rtc_clk_select_rtc_slow_clk + 0x00000000 0xe esp-idf/esp_system/libesp_system.a(clk.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .xt.prop 0x00000000 0x1f8 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .xt.prop 0x00000000 0x114 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .xt.prop 0x00000000 0xcc esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .xt.prop 0x00000000 0xfc esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .iram1.2.literal + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .iram1.2 0x00000000 0xc esp-idf/esp_system/libesp_system.a(panic.c.obj) + .xt.lit 0x00000000 0x70 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .xt.prop 0x00000000 0x48c esp-idf/esp_system/libesp_system.a(panic.c.obj) + .literal.esp_startup_start_app_other_cores_default + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .text.esp_startup_start_app_other_cores_default + 0x00000000 0xf esp-idf/esp_system/libesp_system.a(startup.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .xt.prop 0x00000000 0x1a4 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .xt.prop 0x00000000 0x264 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .xt.prop 0x00000000 0x48 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .text.panic_prepare_frame_from_ctx + 0x00000000 0x5 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .xt.prop 0x00000000 0x3b4 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .literal.backtrace_other_cores_ipc_func + 0x00000000 0x10 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .iram1.5.literal + 0x00000000 0x64 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .text.backtrace_other_cores_ipc_func + 0x00000000 0x45 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .iram1.5 0x00000000 0x1ad esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0x1e esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .data.DEBUG_HELPER_TAG + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .xt.prop 0x00000000 0x36c esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .xt.prop 0x00000000 0x30 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .literal.esp_register_freertos_idle_hook + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .literal.esp_register_freertos_tick_hook + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .literal.esp_deregister_freertos_idle_hook + 0x00000000 0x10 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .literal.esp_deregister_freertos_tick_hook_for_cpu + 0x00000000 0x10 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .literal.esp_deregister_freertos_tick_hook + 0x00000000 0x10 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text.esp_register_freertos_idle_hook + 0x00000000 0x15 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text.esp_register_freertos_tick_hook + 0x00000000 0x15 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text.esp_deregister_freertos_idle_hook + 0x00000000 0x30 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text.esp_deregister_freertos_tick_hook_for_cpu + 0x00000000 0x40 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text.esp_deregister_freertos_tick_hook + 0x00000000 0x30 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .xt.lit 0x00000000 0x50 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .xt.prop 0x00000000 0x378 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + .data 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + .xt.prop 0x00000000 0x9c esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + .text 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + .data 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + .xt.prop 0x00000000 0x60 esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + .literal.efuse_hal_get_mac + 0x00000000 0x4 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .iram1.3.literal + 0x00000000 0x4 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_get_mac + 0x00000000 0x17 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .iram1.1 0x00000000 0x7 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .iram1.3 0x00000000 0x1e esp-idf/hal/libhal.a(efuse_hal.c.obj) + .iram1.4 0x00000000 0x7 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .xt.prop 0x00000000 0x144 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_get_rated_freq_mhz + 0x00000000 0x4 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_set_timing + 0x00000000 0x8 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_read + 0x00000000 0x8 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_clear_program_registers + 0x00000000 0x44 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_program + 0x00000000 0xc esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_is_coding_error_in_block + 0x00000000 0x4 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_get_rated_freq_mhz + 0x00000000 0x2d esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_set_timing + 0x00000000 0x70 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_read + 0x00000000 0x3e esp-idf/hal/libhal.a(efuse_hal.c.obj) + .rodata.efuse_hal_clear_program_registers.str1.4 + 0x00000000 0x9f esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_clear_program_registers + 0x00000000 0xe5 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_program + 0x00000000 0x44 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_is_coding_error_in_block + 0x00000000 0x46 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .rodata.__func__$0 + 0x00000000 0x22 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .xt.prop 0x00000000 0x360 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.mmu_ll_entry_id_to_vaddr_base + 0x00000000 0x1c esp-idf/hal/libhal.a(mmu_hal.c.obj) + .literal.mmu_ll_find_entry_id_based_on_map_value + 0x00000000 0xc esp-idf/hal/libhal.a(mmu_hal.c.obj) + .literal.mmu_hal_unmap_all + 0x00000000 0x1c esp-idf/hal/libhal.a(mmu_hal.c.obj) + .literal.mmu_hal_init + 0x00000000 0x8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .literal.mmu_hal_paddr_to_vaddr + 0x00000000 0x20 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_ll_entry_id_to_vaddr_base + 0x00000000 0xaa esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_ll_find_entry_id_based_on_map_value + 0x00000000 0x6a esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_unmap_all + 0x00000000 0x69 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_init + 0x00000000 0x14 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_bytes_to_pages + 0x00000000 0x8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_paddr_to_vaddr + 0x00000000 0x69 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .rodata.__func__$0 + 0x00000000 0x1e esp-idf/hal/libhal.a(mmu_hal.c.obj) + .rodata.__func__$1 + 0x00000000 0x17 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .xt.lit 0x00000000 0x68 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .xt.prop 0x00000000 0x93c esp-idf/hal/libhal.a(mmu_hal.c.obj) + .literal.cache_hal_vaddr_to_cache_level_id + 0x00000000 0x14 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .literal.cache_hal_invalidate_addr + 0x00000000 0x4 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .text.cache_hal_vaddr_to_cache_level_id + 0x00000000 0x90 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .text.cache_hal_invalidate_addr + 0x00000000 0x9 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .xt.prop 0x00000000 0x354 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .text 0x00000000 0x0 esp-idf/log/liblog.a(log_timestamp.c.obj) + .data 0x00000000 0x0 esp-idf/log/liblog.a(log_timestamp.c.obj) + .bss 0x00000000 0x0 esp-idf/log/liblog.a(log_timestamp.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/log/liblog.a(log_timestamp.c.obj) + .xt.prop 0x00000000 0xa8 esp-idf/log/liblog.a(log_timestamp.c.obj) + .literal.esp_log_util_is_constrained + 0x00000000 0xc esp-idf/log/liblog.a(util.c.obj) + .text 0x00000000 0x0 esp-idf/log/liblog.a(util.c.obj) + .data 0x00000000 0x0 esp-idf/log/liblog.a(util.c.obj) + .bss 0x00000000 0x0 esp-idf/log/liblog.a(util.c.obj) + .text.esp_log_util_is_constrained + 0x00000000 0x39 esp-idf/log/liblog.a(util.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/log/liblog.a(util.c.obj) + .xt.prop 0x00000000 0xc0 esp-idf/log/liblog.a(util.c.obj) + .literal.esp_log_va + 0x00000000 0x8 esp-idf/log/liblog.a(log.c.obj) + .text 0x00000000 0x0 esp-idf/log/liblog.a(log.c.obj) + .data 0x00000000 0x0 esp-idf/log/liblog.a(log.c.obj) + .bss 0x00000000 0x0 esp-idf/log/liblog.a(log.c.obj) + .text.esp_log_va + 0x00000000 0x2c esp-idf/log/liblog.a(log.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/log/liblog.a(log.c.obj) + .xt.prop 0x00000000 0x60 esp-idf/log/liblog.a(log.c.obj) + .literal.esp_log_set_vprintf + 0x00000000 0x4 esp-idf/log/liblog.a(log_write.c.obj) + .literal.esp_log_writev + 0x00000000 0x4 esp-idf/log/liblog.a(log_write.c.obj) + .literal.esp_log_write + 0x00000000 0x8 esp-idf/log/liblog.a(log_write.c.obj) + .text 0x00000000 0x0 esp-idf/log/liblog.a(log_write.c.obj) + .data 0x00000000 0x0 esp-idf/log/liblog.a(log_write.c.obj) + .bss 0x00000000 0x0 esp-idf/log/liblog.a(log_write.c.obj) + .text.esp_log_set_vprintf + 0x00000000 0x1e esp-idf/log/liblog.a(log_write.c.obj) + .text.esp_log_writev + 0x00000000 0x1e esp-idf/log/liblog.a(log_write.c.obj) + .text.esp_log_write + 0x00000000 0x33 esp-idf/log/liblog.a(log_write.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/log/liblog.a(log_write.c.obj) + .xt.prop 0x00000000 0xa8 esp-idf/log/liblog.a(log_write.c.obj) + .literal.esp_log_set_default_level + 0x00000000 0x4 esp-idf/log/liblog.a(log_level.c.obj) + .text 0x00000000 0x0 esp-idf/log/liblog.a(log_level.c.obj) + .data 0x00000000 0x0 esp-idf/log/liblog.a(log_level.c.obj) + .bss 0x00000000 0x0 esp-idf/log/liblog.a(log_level.c.obj) + .text.esp_log_set_default_level + 0x00000000 0xa esp-idf/log/liblog.a(log_level.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/log/liblog.a(log_level.c.obj) + .xt.prop 0x00000000 0x9c esp-idf/log/liblog.a(log_level.c.obj) + .literal.log_level_set + 0x00000000 0x24 esp-idf/log/liblog.a(tag_log_level.c.obj) + .literal.esp_log_level_set + 0x00000000 0x4 esp-idf/log/liblog.a(tag_log_level.c.obj) + .literal.esp_log_level_get + 0x00000000 0x4 esp-idf/log/liblog.a(tag_log_level.c.obj) + .text 0x00000000 0x0 esp-idf/log/liblog.a(tag_log_level.c.obj) + .data 0x00000000 0x0 esp-idf/log/liblog.a(tag_log_level.c.obj) + .bss 0x00000000 0x0 esp-idf/log/liblog.a(tag_log_level.c.obj) + .rodata.log_level_set.str1.4 + 0x00000000 0x2 esp-idf/log/liblog.a(tag_log_level.c.obj) + .text.log_level_set + 0x00000000 0x54 esp-idf/log/liblog.a(tag_log_level.c.obj) + .text.esp_log_level_set + 0x00000000 0xf esp-idf/log/liblog.a(tag_log_level.c.obj) + .text.esp_log_level_get + 0x00000000 0x11 esp-idf/log/liblog.a(tag_log_level.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/log/liblog.a(tag_log_level.c.obj) + .xt.prop 0x00000000 0x150 esp-idf/log/liblog.a(tag_log_level.c.obj) + .literal.set_log_level + 0x00000000 0x8 esp-idf/log/liblog.a(log_linked_list.c.obj) + .literal.add_to_list + 0x00000000 0x10 esp-idf/log/liblog.a(log_linked_list.c.obj) + .literal.esp_log_linked_list_set_level + 0x00000000 0x8 esp-idf/log/liblog.a(log_linked_list.c.obj) + .literal.esp_log_linked_list_clean + 0x00000000 0x8 esp-idf/log/liblog.a(log_linked_list.c.obj) + .text 0x00000000 0x0 esp-idf/log/liblog.a(log_linked_list.c.obj) + .data 0x00000000 0x0 esp-idf/log/liblog.a(log_linked_list.c.obj) + .bss 0x00000000 0x0 esp-idf/log/liblog.a(log_linked_list.c.obj) + .text.set_log_level + 0x00000000 0x29 esp-idf/log/liblog.a(log_linked_list.c.obj) + .text.add_to_list + 0x00000000 0x41 esp-idf/log/liblog.a(log_linked_list.c.obj) + .text.esp_log_linked_list_set_level + 0x00000000 0x28 esp-idf/log/liblog.a(log_linked_list.c.obj) + .text.esp_log_linked_list_clean + 0x00000000 0x1e esp-idf/log/liblog.a(log_linked_list.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/log/liblog.a(log_linked_list.c.obj) + .xt.prop 0x00000000 0x198 esp-idf/log/liblog.a(log_linked_list.c.obj) + .literal.esp_log_cache_set_level + 0x00000000 0x1c esp-idf/log/liblog.a(log_binary_heap.c.obj) + .literal.esp_log_cache_clean + 0x00000000 0xc esp-idf/log/liblog.a(log_binary_heap.c.obj) + .text 0x00000000 0x0 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .data 0x00000000 0x0 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .bss 0x00000000 0x0 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .text.esp_log_cache_set_level + 0x00000000 0x7a esp-idf/log/liblog.a(log_binary_heap.c.obj) + .text.esp_log_cache_clean + 0x00000000 0x16 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .rodata.__func__$1 + 0x00000000 0x18 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .xt.prop 0x00000000 0x2c4 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .text 0x00000000 0x0 esp-idf/log/liblog.a(log_lock.c.obj) + .data 0x00000000 0x0 esp-idf/log/liblog.a(log_lock.c.obj) + .bss 0x00000000 0x0 esp-idf/log/liblog.a(log_lock.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/log/liblog.a(log_lock.c.obj) + .xt.prop 0x00000000 0xe4 esp-idf/log/liblog.a(log_lock.c.obj) + .iram1.9.literal + 0x00000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_walker + 0x00000000 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_register_failed_alloc_callback + 0x00000000 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_malloc_extmem_enable + 0x00000000 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.4.literal + 0x00000000 0x14 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.5.literal + 0x00000000 0x14 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.6.literal + 0x00000000 0x14 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.3.literal + 0x00000000 0x28 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_get_total_size + 0x00000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_get_minimum_free_size + 0x00000000 0xc esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_monitor_local_minimum_free_size_start + 0x00000000 0x44 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_monitor_local_minimum_free_size_stop + 0x00000000 0x2c esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_print_heap_info + 0x00000000 0x38 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_check_integrity + 0x00000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_check_integrity_all + 0x00000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_check_integrity_addr + 0x00000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_dump + 0x00000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_dump_all + 0x00000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_get_allocated_size + 0x00000000 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_get_containing_block_size + 0x00000000 0x1c esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.11.literal + 0x00000000 0x10 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.10.literal + 0x00000000 0x2c esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.12.literal + 0x00000000 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_aligned_calloc + 0x00000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_walk + 0x00000000 0x1c esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_walk_all + 0x00000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + .data 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + .bss 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.9 0x00000000 0x38 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_walker + 0x00000000 0x3a esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_register_failed_alloc_callback + 0x00000000 0x15 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_malloc_extmem_enable + 0x00000000 0xa esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.4 0x00000000 0x9e esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.5 0x00000000 0xa2 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.6 0x00000000 0xa2 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.3 0x00000000 0x7e esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_get_total_size + 0x00000000 0x2e esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_get_minimum_free_size + 0x00000000 0x2f esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.heap_caps_monitor_local_minimum_free_size_start.str1.4 + 0x00000000 0x82 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_monitor_local_minimum_free_size_start + 0x00000000 0xd1 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_monitor_local_minimum_free_size_stop + 0x00000000 0x94 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.heap_caps_print_heap_info.str1.4 + 0x00000000 0xf4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_print_heap_info + 0x00000000 0x82 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_check_integrity + 0x00000000 0x53 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_check_integrity_all + 0x00000000 0x13 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_check_integrity_addr + 0x00000000 0x35 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_dump + 0x00000000 0x3d esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_dump_all + 0x00000000 0xe esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.heap_caps_get_allocated_size.str1.4 + 0x00000000 0x5 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_get_allocated_size + 0x00000000 0x44 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_get_containing_block_size + 0x00000000 0x4e esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.11 0x00000000 0x38 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.10 0x00000000 0x88 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.12 0x00000000 0xe esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_aligned_calloc + 0x00000000 0x34 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.heap_caps_walk.str1.4 + 0x00000000 0x14 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_walk + 0x00000000 0x5c esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_walk_all + 0x00000000 0x12 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$0 + 0x00000000 0xf esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$1 + 0x00000000 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$2 + 0x00000000 0x20 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$3 + 0x00000000 0x24 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$4 + 0x00000000 0x1d esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$5 + 0x00000000 0x30 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$8 + 0x00000000 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$9 + 0x00000000 0x19 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$10 + 0x00000000 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$11 + 0x00000000 0x1a esp-idf/heap/libheap.a(heap_caps.c.obj) + .data.min_free_bytes_monitoring + 0x00000000 0x10 esp-idf/heap/libheap.a(heap_caps.c.obj) + .xt.lit 0x00000000 0x110 esp-idf/heap/libheap.a(heap_caps.c.obj) + .xt.prop 0x00000000 0xdbc esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_add_region_with_caps + 0x00000000 0x50 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .literal.heap_caps_add_region + 0x00000000 0x10 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .text 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .data 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .bss 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .text.heap_caps_check_add_region_allowed + 0x00000000 0x5d esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .text.heap_caps_add_region_with_caps + 0x00000000 0x122 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .text.heap_caps_add_region + 0x00000000 0x61 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .data.registered_heaps_write_lock$0 + 0x00000000 0x8 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .xt.prop 0x00000000 0x4e0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .literal.multi_heap_dump_tlsf + 0x00000000 0x10 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_get_full_block_size + 0x00000000 0x4 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_get_first_block + 0x00000000 0x14 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_get_next_block + 0x00000000 0x24 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_aligned_alloc_impl + 0x00000000 0x4 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_check + 0x00000000 0x24 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_dump + 0x00000000 0x2c esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_walk + 0x00000000 0x20 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_find_containing_block_impl + 0x00000000 0x18 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_reset_minimum_free_bytes + 0x00000000 0x8 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_restore_minimum_free_bytes + 0x00000000 0x8 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text 0x00000000 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .data 0x00000000 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .bss 0x00000000 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.multi_heap_dump_tlsf.str1.4 + 0x00000000 0x32 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_dump_tlsf + 0x00000000 0x20 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_get_block_address_impl + 0x00000000 0x7 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_get_full_block_size + 0x00000000 0x11 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_get_first_block + 0x00000000 0x25 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.multi_heap_get_next_block.str1.4 + 0x00000000 0x4a esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_get_next_block + 0x00000000 0x53 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_is_free + 0x00000000 0xa esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_aligned_alloc_impl + 0x00000000 0x15 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_check + 0x00000000 0x52 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.multi_heap_dump.str1.4 + 0x00000000 0x1c esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_dump + 0x00000000 0x4a esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_minimum_free_size_impl + 0x00000000 0xa esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_walk + 0x00000000 0x3c esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.multi_heap_find_containing_block_impl.str1.4 + 0x00000000 0xa esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_find_containing_block_impl + 0x00000000 0x2c esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_reset_minimum_free_bytes + 0x00000000 0x20 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_restore_minimum_free_bytes + 0x00000000 0x1e esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$8 + 0x00000000 0x26 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$7 + 0x00000000 0x10 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$6 + 0x00000000 0x10 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$5 + 0x00000000 0x11 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$3 + 0x00000000 0xb esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$2 + 0x00000000 0x1a esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$1 + 0x00000000 0x1b esp-idf/heap/libheap.a(multi_heap.c.obj) + .xt.lit 0x00000000 0xb0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .xt.prop 0x00000000 0x7a4 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.integrity_walker + 0x00000000 0x8 esp-idf/heap/libheap.a(tlsf.c.obj) + .literal.tlsf_check + 0x00000000 0x10 esp-idf/heap/libheap.a(tlsf.c.obj) + .literal.tlsf_check_pool + 0x00000000 0x8 esp-idf/heap/libheap.a(tlsf.c.obj) + .literal.tlsf_remove_pool + 0x00000000 0x48 esp-idf/heap/libheap.a(tlsf.c.obj) + .literal.tlsf_malloc_addr + 0x00000000 0xa0 esp-idf/heap/libheap.a(tlsf.c.obj) + .literal.tlsf_memalign + 0x00000000 0x4 esp-idf/heap/libheap.a(tlsf.c.obj) + .text 0x00000000 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + .data 0x00000000 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + .bss 0x00000000 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + .text.integrity_walker + 0x00000000 0x50 esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_check + 0x00000000 0x10f esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_check_pool + 0x00000000 0x1a esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_remove_pool + 0x00000000 0x13e esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_destroy + 0x00000000 0x5 esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_malloc_addr + 0x00000000 0x552 esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_memalign + 0x00000000 0x15 esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_find_containing_block + 0x00000000 0x38 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$15 + 0x00000000 0x11 esp-idf/heap/libheap.a(tlsf.c.obj) + .xt.lit 0x00000000 0x90 esp-idf/heap/libheap.a(tlsf.c.obj) + .xt.prop 0x00000000 0x123c esp-idf/heap/libheap.a(tlsf.c.obj) + .text 0x00000000 0x0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .data 0x00000000 0x0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .bss 0x00000000 0x0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .xt.prop 0x00000000 0x204 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .text 0x00000000 0x0 esp-idf/heap/libheap.a(memory_layout.c.obj) + .data 0x00000000 0x0 esp-idf/heap/libheap.a(memory_layout.c.obj) + .bss 0x00000000 0x0 esp-idf/heap/libheap.a(memory_layout.c.obj) + .rodata.soc_memory_type_count + 0x00000000 0x4 esp-idf/heap/libheap.a(memory_layout.c.obj) + .xt.prop 0x00000000 0x9c esp-idf/heap/libheap.a(memory_layout.c.obj) + .text 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .data 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .bss 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .xt.prop 0x00000000 0x42c esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .text 0x00000000 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .data 0x00000000 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .rodata.GPIO_HOLD_MASK + 0x00000000 0xa0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .xt.prop 0x00000000 0x24 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .text 0x00000000 0x0 esp-idf/soc/libsoc.a(dport_access.c.obj) + .data 0x00000000 0x0 esp-idf/soc/libsoc.a(dport_access.c.obj) + .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(dport_access.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/soc/libsoc.a(dport_access.c.obj) + .xt.prop 0x00000000 0x60 esp-idf/soc/libsoc.a(dport_access.c.obj) + .literal.esp_cpu_reset + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .literal.esp_cpu_set_watchpoint + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .text.esp_cpu_reset + 0x00000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .text.esp_cpu_clear_breakpoint + 0x00000000 0x2b esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .text.esp_cpu_set_watchpoint + 0x00000000 0x91 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .text.esp_cpu_clear_watchpoint + 0x00000000 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .rodata.__func__$0 + 0x00000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .xt.prop 0x00000000 0x2f4 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .text.esp_ptr_dma_ext_capable + 0x00000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .text.esp_ptr_external_ram + 0x00000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .xt.prop 0x00000000 0x108 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .iram1.3.literal + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .literal.esp_clk_rtc_time + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .literal.esp_clk_private_lock + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .literal.esp_clk_private_unlock + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .iram1.3 0x00000000 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .text.esp_clk_rtc_time + 0x00000000 0xf esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .text.esp_clk_private_lock + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .text.esp_clk_private_unlock + 0x00000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .xt.lit 0x00000000 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .xt.prop 0x00000000 0x270 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .literal.esp_intr_mark_shared + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .literal.esp_intr_reserve + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.1.literal + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.6.literal + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.7.literal + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.2.literal + 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .literal.esp_intr_alloc_bind + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .literal.esp_intr_dump + 0x00000000 0x94 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.esp_intr_mark_shared + 0x00000000 0x71 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.esp_intr_reserve + 0x00000000 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.1 0x00000000 0x91 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.esp_intr_get_intno + 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.6 0x00000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.7 0x00000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.2 0x00000000 0xca esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.esp_intr_alloc_bind + 0x00000000 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.esp_intr_dump.str1.4 + 0x00000000 0x123 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.esp_intr_dump + 0x00000000 0x1c6 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .xt.lit 0x00000000 0xd8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .xt.prop 0x00000000 0x11f4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .literal.periph_ll_disable_clk_set_rst + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .literal.periph_ll_reset + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .iram1.0.literal + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .iram1.1.literal + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .literal.periph_ll_wifi_module_enable_clk_clear_rst + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .literal.periph_ll_wifi_module_disable_clk_set_rst + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .literal.periph_rcc_release_enter + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .literal.periph_rcc_release_exit + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .literal.periph_module_disable + 0x00000000 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .literal.periph_module_reset + 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .iram1.3.literal + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .iram1.4.literal + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .literal.wifi_module_enable + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .literal.wifi_module_disable + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .iram1.5.literal + 0x00000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .iram1.6.literal + 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .iram1.7.literal + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .text.periph_ll_disable_clk_set_rst + 0x00000000 0x5e esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .text.periph_ll_reset + 0x00000000 0x49 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .iram1.0 0x00000000 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .iram1.1 0x00000000 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .text.periph_ll_wifi_module_enable_clk_clear_rst + 0x00000000 0x2b esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .text.periph_ll_wifi_module_disable_clk_set_rst + 0x00000000 0x2b esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .text.periph_rcc_release_enter + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .text.periph_rcc_release_exit + 0x00000000 0x13 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .text.periph_module_disable + 0x00000000 0x7f esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .text.periph_module_reset + 0x00000000 0x6b esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .iram1.3 0x00000000 0x63 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .iram1.4 0x00000000 0x5b esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .text.wifi_module_enable + 0x00000000 0x63 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .text.wifi_module_disable + 0x00000000 0x5f esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .iram1.5 0x00000000 0x93 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .iram1.6 0x00000000 0x83 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .rodata.str1.4 + 0x00000000 0x43 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .iram1.7 0x00000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .rodata.__func__$0 + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .rodata.__func__$1 + 0x00000000 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .xt.lit 0x00000000 0xc8 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .xt.prop 0x00000000 0xac8 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .literal.rtc_isr_deregister + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .text.rtc_isr_deregister + 0x00000000 0x72 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .xt.prop 0x00000000 0x2d0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .literal.esp_gpio_is_reserved + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .text.esp_gpio_is_reserved + 0x00000000 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .xt.prop 0x00000000 0x9c esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .text.esp_clk_tree_is_power_on + 0x00000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .text.esp_clk_tree_enable_power + 0x00000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .xt.prop 0x00000000 0x2b8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .iram1.10.literal + 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.7.literal + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.16.literal + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.12.literal + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .literal.spi_bus_init_lock + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .literal.spi_bus_deinit_lock + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .literal.spi_bus_lock_register_dev + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .literal.spi_bus_lock_unregister_dev + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.25.literal + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.28.literal + 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.31.literal + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .literal.spi_bus_lock_bg_request + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.32.literal + 0x00000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.33.literal + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.34.literal + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.35.literal + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .text.try_acquire_free_dev + 0x00000000 0x4c esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.11 0x00000000 0x8d esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .text.req_core + 0x00000000 0x6f esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.10 0x00000000 0x85 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.13 0x00000000 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.7 0x00000000 0x13 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.16 0x00000000 0x5e esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.14 0x00000000 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.12 0x00000000 0xa8 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .text.spi_bus_init_lock + 0x00000000 0x39 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .rodata.spi_bus_deinit_lock.str1.4 + 0x00000000 0x5f esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .text.spi_bus_deinit_lock + 0x00000000 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .text.spi_bus_lock_register_dev + 0x00000000 0x99 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .text.spi_bus_lock_unregister_dev + 0x00000000 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .text.spi_bus_lock_set_bg_control + 0x00000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.21 0x00000000 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.22 0x00000000 0x13 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .rodata.str1.4 + 0x00000000 0xcf esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.25 0x00000000 0x6d esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.28 0x00000000 0x42 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.29 0x00000000 0xa esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.30 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.31 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .text.spi_bus_lock_bg_request + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.32 0x00000000 0xb3 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.33 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.34 0x00000000 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.35 0x00000000 0x31 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.36 0x00000000 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .rodata.__FUNCTION__$1 + 0x00000000 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .rodata.__FUNCTION__$2 + 0x00000000 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .rodata.__func__$3 + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .dram1.0 0x00000000 0x9 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .data.s_spinlock + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .xt.lit 0x00000000 0x80 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .xt.prop 0x00000000 0x8d0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + .text.esp_clk_utils_mspi_speed_mode_sync_after_cpu_freq_switching + 0x00000000 0x5 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + .xt.prop 0x00000000 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .xt.prop 0x00000000 0x2ac esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .literal.esp_sleep_gpio_pupd_config_workaround_apply + 0x00000000 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .literal.esp_sleep_gpio_pupd_config_workaround_unapply + 0x00000000 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .literal.esp_sleep_config_gpio_isolate + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .literal.esp_sleep_enable_gpio_switch + 0x00000000 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .iram1.1.literal + 0x00000000 0x4c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.esp_sleep_gpio_pupd_config_workaround_apply.str1.4 + 0x00000000 0x22c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .text.esp_sleep_gpio_pupd_config_workaround_apply + 0x00000000 0x241 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .text.esp_sleep_gpio_pupd_config_workaround_unapply + 0x00000000 0x178 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.esp_sleep_config_gpio_isolate.str1.4 + 0x00000000 0x4b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .text.esp_sleep_config_gpio_isolate + 0x00000000 0x79 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.esp_sleep_enable_gpio_switch.str1.4 + 0x00000000 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .text.esp_sleep_enable_gpio_switch + 0x00000000 0xcd esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.str1.4 + 0x00000000 0xb1 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .iram1.1 0x00000000 0x1f4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.__func__$1 + 0x00000000 0x1f esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.__func__$2 + 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.__func__$3 + 0x00000000 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.__func__$4 + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.__func__$5 + 0x00000000 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.__func__$6 + 0x00000000 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.__func__$7 + 0x00000000 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .dram1.0 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .xt.prop 0x00000000 0x570 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .literal.esp_brownout_disable + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .literal.esp_brownout_register_callback + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .text.esp_brownout_disable + 0x00000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .rodata.esp_brownout_register_callback.str1.4 + 0x00000000 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .text.esp_brownout_register_callback + 0x00000000 0x3f esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0x1f esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .xt.prop 0x00000000 0x1c8 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .literal.rtc_clk_32k_bootstrap + 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_32k_enabled + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_8m_enabled + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_apll_enable + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_apll_coeff_set + 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_fast_src_get + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_apll_coeff_calc + 0x00000000 0xc4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_xtal_freq_update + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_set_xtal + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_set_xtal_for_sleep + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_set_config_fast + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_apb_freq_get + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_dig_clk8m_enable + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_dig_clk8m_disable + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_dig_8m_enabled + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_32k_bootstrap + 0x00000000 0x12e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_32k_enabled + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_8m_enabled + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_apll_enable + 0x00000000 0x8e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_apll_coeff_set + 0x00000000 0xde esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_fast_src_get + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_apll_coeff_calc + 0x00000000 0x234 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_xtal_freq_update + 0x00000000 0x2b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_set_xtal + 0x00000000 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_set_xtal_for_sleep + 0x00000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_set_config_fast + 0x00000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_apb_freq_get + 0x00000000 0x2a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_dig_clk8m_enable + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_dig_clk8m_disable + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_dig_8m_enabled + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .xt.lit 0x00000000 0x130 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .xt.prop 0x00000000 0xe58 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_vddsdio_get_config + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .literal.rtc_vddsdio_set_config + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .text.rtc_vddsdio_get_config + 0x00000000 0xee esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .text.rtc_vddsdio_set_config + 0x00000000 0x46 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .xt.prop 0x00000000 0xf0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .literal.rtc_clk_cal_ratio + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .literal.rtc_time_us_to_slowclk + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_clk_cal_ratio + 0x00000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.rtc_time_us_to_slowclk.str1.4 + 0x00000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_time_us_to_slowclk + 0x00000000 0x86 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_time_slowclk_to_us + 0x00000000 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.__func__$10 + 0x00000000 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.__func__$0 + 0x00000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .xt.prop 0x00000000 0x450 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .xt.prop 0x00000000 0x6c esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .literal.s_sar_power_acquire + 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .literal.s_sar_power_release + 0x00000000 0x4c esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_power_enable + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_power_disable + 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_pwdet_power_acquire + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_pwdet_power_release + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_adc_oneshot_power_acquire + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_adc_oneshot_power_release + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_adc_continuous_power_acquire + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_adc_continuous_power_release + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.s_sar_power_acquire + 0x00000000 0x67 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .rodata.s_sar_power_release.str1.4 + 0x00000000 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.s_sar_power_release + 0x00000000 0xa7 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_power_enable + 0x00000000 0x5b esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_power_disable + 0x00000000 0x63 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_pwdet_power_acquire + 0x00000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_pwdet_power_release + 0x00000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_adc_oneshot_power_acquire + 0x00000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_adc_oneshot_power_release + 0x00000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_adc_continuous_power_acquire + 0x00000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_adc_continuous_power_release + 0x00000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_adc_reset + 0x00000000 0x5 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.adc_reset_lock_acquire + 0x00000000 0x5 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.adc_reset_lock_release + 0x00000000 0x5 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .rodata.__func__$0 + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .bss.s_sar_power_on_cnt + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .xt.prop 0x00000000 0x378 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .xt.prop 0x00000000 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .literal.regi2c_ctrl_read_reg + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .literal.regi2c_ctrl_write_reg_mask + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .literal.regi2c_enter_critical + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .literal.regi2c_exit_critical + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .literal.regi2c_saradc_enable + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .literal.regi2c_saradc_disable + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .text.regi2c_ctrl_read_reg + 0x00000000 0x5f esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .text.regi2c_ctrl_write_reg_mask + 0x00000000 0x6b esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .text.regi2c_enter_critical + 0x00000000 0x2a esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .text.regi2c_exit_critical + 0x00000000 0x23 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .text.regi2c_saradc_enable + 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .rodata.regi2c_saradc_disable.str1.4 + 0x00000000 0x2f esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .text.regi2c_saradc_disable + 0x00000000 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .bss.s_i2c_saradc_enable_cnt + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .dram1.0 0x00000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .xt.prop 0x00000000 0x2a0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .literal.rtcio_ll_ext0_set_wakeup_pin + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.s_do_deep_sleep_phy_callback + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.get_power_down_flags + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.get_sleep_flags + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.s_sleep_hook_deregister + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rtc.force_slow.9.literal + 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.s_sleep_hook_register + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.sleep_low_power_clock_calibration + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.rtcio_ll_iomux_func_sel + 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.rtcio_ll_function_select + 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.rtcio_ll_input_enable + 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.ext0_wakeup_prepare + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.rtcio_ll_force_hold_enable + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.ext1_wakeup_prepare + 0x00000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.misc_modules_sleep_prepare + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.touch_wakeup_prepare + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.timer_wakeup_prepare + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.10.literal + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.14.literal + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.11.literal + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.13.literal + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.misc_modules_wake_prepare + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_start + 0x00000000 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_light_sleep_inner + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_overhead_out_time_refresh + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_get_deep_sleep_wake_stub + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rtc.force_slow.8.literal + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.15.literal + 0x00000000 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_deep_sleep_register_hook + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_deep_sleep_deregister_hook + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_deep_sleep_register_phy_hook + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_deep_sleep_deregister_phy_hook + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.16.literal + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.17.literal + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_light_sleep_start + 0x00000000 0xe8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_disable_wakeup_source + 0x00000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_timer_wakeup + 0x00000000 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_deep_sleep + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_deep_sleep_try + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_touchpad_wakeup + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_is_valid_wakeup_gpio + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_ext0_wakeup + 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_ext1_wakeup_io + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_disable_ext1_wakeup_io + 0x00000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_ext1_wakeup + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_gpio_wakeup + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_uart_wakeup + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_get_wakeup_cause + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_get_wakeup_causes + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_get_touchpad_wakeup_status + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_get_ext1_wakeup_status + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_pd_config + 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_acquire_lp_use_xtal + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_release_lp_use_xtal + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rtc.force_slow.18.literal + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_lowpower_analog_mode + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_periph_use_8m + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_adc_tsens_monitor + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.rtc_sleep_enable_ultra_low + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.rtcio_ll_ext0_set_wakeup_pin + 0x00000000 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.s_do_deep_sleep_phy_callback + 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.get_power_down_flags + 0x00000000 0xd2 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.get_sleep_flags + 0x00000000 0x76 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.get_sleep_clock_icg_flags + 0x00000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.s_sleep_hook_deregister + 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rtc.force_slow.9 + 0x00000000 0x47 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.s_sleep_hook_register + 0x00000000 0x59 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.sleep_low_power_clock_calibration + 0x00000000 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.rtcio_ll_iomux_func_sel.str1.4 + 0x00000000 0xf4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.rtcio_ll_iomux_func_sel + 0x00000000 0x61 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.rtcio_ll_function_select.str1.4 + 0x00000000 0x174 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.rtcio_ll_function_select + 0x00000000 0xaa esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.rtcio_ll_input_enable + 0x00000000 0x4b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.ext0_wakeup_prepare + 0x00000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.rtcio_ll_force_hold_enable.str1.4 + 0x00000000 0xac esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.rtcio_ll_force_hold_enable + 0x00000000 0x5e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.ext1_wakeup_prepare.str1.4 + 0x00000000 0x7c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.ext1_wakeup_prepare + 0x00000000 0xf4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.misc_modules_sleep_prepare + 0x00000000 0x37 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.touch_wakeup_prepare + 0x00000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.timer_wakeup_prepare + 0x00000000 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.10 0x00000000 0x1f esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.14 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.11 0x00000000 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.13 0x00000000 0x47 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.misc_modules_wake_prepare + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_start + 0x00000000 0x15c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_light_sleep_inner + 0x00000000 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_overhead_out_time_refresh + 0x00000000 0x22 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_get_deep_sleep_wake_stub + 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rtc.force_slow.8 + 0x00000000 0xd esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.15 0x00000000 0xb6 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_deep_sleep_register_hook + 0x00000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_deep_sleep_deregister_hook + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_deep_sleep_register_phy_hook + 0x00000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_deep_sleep_deregister_phy_hook + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.16 0x00000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.17 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_light_sleep_start + 0x00000000 0x34f esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_disable_wakeup_source.str1.4 + 0x00000000 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_disable_wakeup_source + 0x00000000 0x179 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_ulp_wakeup + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_enable_timer_wakeup.str1.4 + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_timer_wakeup + 0x00000000 0x8e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_deep_sleep + 0x00000000 0x13 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_deep_sleep_try + 0x00000000 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_enable_touchpad_wakeup.str1.4 + 0x00000000 0x2f esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_touchpad_wakeup + 0x00000000 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_is_valid_wakeup_gpio + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_enable_ext0_wakeup.str1.4 + 0x00000000 0x37 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_ext0_wakeup + 0x00000000 0xa1 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_enable_ext1_wakeup_io.str1.4 + 0x00000000 0x23 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_ext1_wakeup_io + 0x00000000 0x145 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_disable_ext1_wakeup_io.str1.4 + 0x00000000 0x37 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_disable_ext1_wakeup_io + 0x00000000 0xf0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_ext1_wakeup + 0x00000000 0x39 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_gpio_wakeup + 0x00000000 0x55 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_uart_wakeup + 0x00000000 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_wifi_wakeup + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_disable_wifi_wakeup + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_wifi_beacon_wakeup + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_disable_wifi_beacon_wakeup + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_bt_wakeup + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_disable_bt_wakeup + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_get_wakeup_cause + 0x00000000 0x66 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_get_wakeup_causes + 0x00000000 0x7a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_get_touchpad_wakeup_status + 0x00000000 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_get_ext1_wakeup_status + 0x00000000 0x6a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_pd_config.str1.4 + 0x00000000 0x7f esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_pd_config + 0x00000000 0x116 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_acquire_lp_use_xtal.str1.4 + 0x00000000 0x64 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_acquire_lp_use_xtal + 0x00000000 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_release_lp_use_xtal.str1.4 + 0x00000000 0x69 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_release_lp_use_xtal + 0x00000000 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rtc.force_slow.18 + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_lowpower_analog_mode + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_periph_use_8m + 0x00000000 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_adc_tsens_monitor + 0x00000000 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.rtc_sleep_enable_ultra_low + 0x00000000 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__$12 + 0x00000000 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__$11 + 0x00000000 0xd esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__$9 + 0x00000000 0x21 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__$7 + 0x00000000 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__$6 + 0x00000000 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__$5 + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__$4 + 0x00000000 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .bss.s_cache_suspend_cnt + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .data.spinlock_rtc_deep_sleep + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .bss.s_light_sleep_wakeup + 0x00000000 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .bss.s_lightsleep_cnt + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .bss.s_dslp_phy_cb + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .bss.s_dslp_cb + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .xt.lit 0x00000000 0x1f0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .xt.prop 0x00000000 0x1908 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.suspend_uart + 0x00000000 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_uart.c.obj) + .literal.sleep_uart_prepare + 0x00000000 0x64 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_uart.c.obj) + .literal.sleep_uart_resume + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_uart.c.obj) + .literal.sleep_uart_set_handling_mode + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_uart.c.obj) + .literal.esp_sleep_set_console_uart_handling_mode + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_uart.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_uart.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_uart.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_uart.c.obj) + .text.get_uart_handling_mode + 0x00000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_uart.c.obj) + .rodata.suspend_uart.str1.4 + 0x00000000 0x26e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_uart.c.obj) + .text.suspend_uart + 0x00000000 0x8d esp-idf/esp_hw_support/libesp_hw_support.a(sleep_uart.c.obj) + .rodata.sleep_uart_prepare.str1.4 + 0x00000000 0x8e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_uart.c.obj) + .text.sleep_uart_prepare + 0x00000000 0x17a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_uart.c.obj) + .rodata.sleep_uart_resume.str1.4 + 0x00000000 0x116 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_uart.c.obj) + .text.sleep_uart_resume + 0x00000000 0x84 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_uart.c.obj) + .text.sleep_uart_set_handling_mode + 0x00000000 0x25 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_uart.c.obj) + .text.esp_sleep_set_console_uart_handling_mode + 0x00000000 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_uart.c.obj) + .rodata.__func__$0 + 0x00000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_uart.c.obj) + .rodata.__func__$1 + 0x00000000 0x13 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_uart.c.obj) + .rodata.__func__$2 + 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_uart.c.obj) + .rodata.__func__$3 + 0x00000000 0x13 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_uart.c.obj) + .bss.s_suspended_uarts_bmap + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_uart.c.obj) + .bss.s_uart_handling + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_uart.c.obj) + .debug_frame 0x00000000 0xa0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_uart.c.obj) + .debug_info 0x00000000 0x1ce4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_uart.c.obj) + .debug_abbrev 0x00000000 0x3e1 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_uart.c.obj) + .debug_loc 0x00000000 0x34f esp-idf/esp_hw_support/libesp_hw_support.a(sleep_uart.c.obj) + .debug_aranges + 0x00000000 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_uart.c.obj) + .debug_ranges 0x00000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_uart.c.obj) + .debug_line 0x00000000 0xc1a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_uart.c.obj) + .debug_str 0x00000000 0x137e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_uart.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_uart.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_uart.c.obj) + .xt.prop 0x00000000 0x3a8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_uart.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .iram1.0 0x00000000 0x5 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .debug_frame 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .debug_info 0x00000000 0x126 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .debug_abbrev 0x00000000 0xa6 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .debug_aranges + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .debug_ranges 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .debug_line 0x00000000 0xd1 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .debug_str 0x00000000 0x3e1 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .xt.prop 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .iram1.0.literal + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_sleep_pd + 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_sleep_get_default_config + 0x00000000 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_sleep_init + 0x00000000 0xcc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_sleep_low_init + 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_sleep_start + 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_deep_sleep_start + 0x00000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .iram1.0 0x00000000 0x35 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_pd + 0x00000000 0x1b8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_get_default_config + 0x00000000 0x142 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_init + 0x00000000 0x521 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_low_init + 0x00000000 0x85 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_start + 0x00000000 0x8d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_deep_sleep_start + 0x00000000 0xbe esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_frame 0x00000000 0xb8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_info 0x00000000 0x5eb esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_abbrev 0x00000000 0x213 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_loc 0x00000000 0x12e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_aranges + 0x00000000 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_ranges 0x00000000 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_line 0x00000000 0x2380 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_str 0x00000000 0x581 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .xt.prop 0x00000000 0x318 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.esp_pm_register_inform_out_light_sleep_overhead_callback + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .literal.esp_pm_unregister_inform_out_light_sleep_overhead_callback + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .literal.periph_inform_out_light_sleep_overhead + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .literal.esp_pm_register_light_sleep_default_params_config_callback + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .literal.esp_pm_unregister_light_sleep_default_params_config_callback + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.modem_domain_pd_allowed + 0x00000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.sleep_modem_reject_triggers + 0x00000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .iram1.0 0x00000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.sleep_modem_configure + 0x00000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.esp_pm_register_inform_out_light_sleep_overhead_callback + 0x00000000 0x31 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.esp_pm_unregister_inform_out_light_sleep_overhead_callback + 0x00000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.periph_inform_out_light_sleep_overhead + 0x00000000 0x23 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.esp_pm_register_light_sleep_default_params_config_callback + 0x00000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.esp_pm_unregister_light_sleep_default_params_config_callback + 0x00000000 0x13 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .bss.s_light_sleep_default_params_config_cb + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .bss.s_periph_inform_out_light_sleep_overhead_cb + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_frame 0x00000000 0xe8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_info 0x00000000 0x307 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_abbrev 0x00000000 0x1c1 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_loc 0x00000000 0x187 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_aranges + 0x00000000 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_ranges 0x00000000 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_line 0x00000000 0x50c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_str 0x00000000 0x510 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .xt.prop 0x00000000 0x24c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .xt.prop 0x00000000 0xfc esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .literal.xQueueGetMutexHolderFromISR + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueCreateCountingSemaphore + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueReceive + 0x00000000 0x54 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueuePeek + 0x00000000 0x54 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueuePeekFromISR + 0x00000000 0x38 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.uxQueueMessagesWaiting + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.uxQueueMessagesWaitingFromISR + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueIsQueueEmptyFromISR + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueIsQueueFullFromISR + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.vQueueWaitForMessageRestricted + 0x00000000 0xc esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueCreateSet + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueAddToSet + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueRemoveFromSet + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueSelectFromSet + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueSelectFromSetFromISR + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueGetMutexHolderFromISR + 0x00000000 0x25 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueCreateCountingSemaphore + 0x00000000 0x40 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueReceive + 0x00000000 0x110 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueuePeek + 0x00000000 0x108 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueuePeekFromISR.str1.4 + 0x00000000 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueuePeekFromISR + 0x00000000 0x7e esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.uxQueueMessagesWaiting.str1.4 + 0x00000000 0x7 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.uxQueueMessagesWaiting + 0x00000000 0x34 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.uxQueueMessagesWaitingFromISR + 0x00000000 0x1f esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueIsQueueEmptyFromISR + 0x00000000 0x28 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueIsQueueFullFromISR + 0x00000000 0x2c esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.vQueueWaitForMessageRestricted + 0x00000000 0x2e esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueCreateSet + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueAddToSet + 0x00000000 0x36 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueRemoveFromSet + 0x00000000 0x39 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueSelectFromSet + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueSelectFromSetFromISR + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$0 + 0x00000000 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$1 + 0x00000000 0x1a esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$3 + 0x00000000 0x1e esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$5 + 0x00000000 0x17 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$6 + 0x00000000 0x12 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$8 + 0x00000000 0xb esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$10 + 0x00000000 0xe esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$15 + 0x00000000 0x1e esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$19 + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(queue.c.obj) + .xt.lit 0x00000000 0x128 esp-idf/freertos/libfreertos.a(queue.c.obj) + .xt.prop 0x00000000 0x1194 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.prvTaskIsTaskSuspended + 0x00000000 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.pxGetTaskListByIndex + 0x00000000 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.eTaskGetState + 0x00000000 0x30 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskResume + 0x00000000 0x3c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskResumeFromISR + 0x00000000 0x44 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskEndScheduler + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.uxTaskGetNumberOfTasks + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskGetHandle + 0x00000000 0x4c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskAbortDelay + 0x00000000 0x3c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskPlaceOnUnorderedEventList + 0x00000000 0x2c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskPlaceOnEventListRestricted + 0x00000000 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskRemoveFromUnorderedEventList + 0x00000000 0x44 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskSetTimeOutState + 0x00000000 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskMissedYield + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.uxTaskPriorityGetFromISR + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskSuspend + 0x00000000 0x50 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskGetStaticBuffers + 0x00000000 0x24 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskSetThreadLocalStoragePointer + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.uxTaskGetStackHighWaterMark2 + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.uxTaskGetStackHighWaterMark + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskDelayUntil + 0x00000000 0x3c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskCatchUpTicks + 0x00000000 0x30 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.uxTaskResetEventItemValue + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskGenericNotifyWait + 0x00000000 0x34 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskGenericNotifyFromISR + 0x00000000 0x60 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskGenericNotifyStateClear + 0x00000000 0x24 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.ulTaskGenericNotifyValueClear + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.prvTakeKernelLock + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.prvReleaseKernelLock + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskGetIdleTaskHandle + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskGetStackStart + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.pxTaskGetStackStart + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.prvTaskPriorityRaise + 0x00000000 0x2c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.prvTaskPriorityRestore + 0x00000000 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskGetNext + 0x00000000 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.uxTaskGetSnapshotAll + 0x00000000 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.pvTaskGetCurrentTCBForCore + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvSearchForNameWithinSingleList + 0x00000000 0x9c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvTaskCheckFreeStackSpace + 0x00000000 0x19 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.prvTaskIsTaskSuspended.str1.4 + 0x00000000 0x6 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvTaskIsTaskSuspended + 0x00000000 0x59 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.pxGetTaskListByIndex + 0x00000000 0x42 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.eTaskGetState + 0x00000000 0xc6 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskResume.str1.4 + 0x00000000 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskResume + 0x00000000 0xe3 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskResumeFromISR + 0x00000000 0xfd esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskEndScheduler + 0x00000000 0x2c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskGetNumberOfTasks + 0x00000000 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskGetHandle.str1.4 + 0x00000000 0x1d esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGetHandle + 0x00000000 0xa9 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskAbortDelay + 0x00000000 0xf2 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskPlaceOnUnorderedEventList + 0x00000000 0xa7 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskPlaceOnEventListRestricted + 0x00000000 0xc3 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskRemoveFromUnorderedEventList.str1.4 + 0x00000000 0x3f esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskRemoveFromUnorderedEventList + 0x00000000 0x1be esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskSetTimeOutState + 0x00000000 0x43 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskMissedYield + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskPriorityGetFromISR + 0x00000000 0x26 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskSuspend.str1.4 + 0x00000000 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskSuspend + 0x00000000 0x12c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskGetStaticBuffers.str1.4 + 0x00000000 0x3d esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGetStaticBuffers + 0x00000000 0x5c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskSetThreadLocalStoragePointer.str1.4 + 0x00000000 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskSetThreadLocalStoragePointer + 0x00000000 0x2e esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskGetStackHighWaterMark2 + 0x00000000 0x1a esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskGetStackHighWaterMark + 0x00000000 0x1a esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskDelayUntil.str1.4 + 0x00000000 0x2c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskDelayUntil + 0x00000000 0xb2 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskCatchUpTicks + 0x00000000 0x52 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskResetEventItemValue + 0x00000000 0x46 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGenericNotifyWait + 0x00000000 0x128 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGenericNotifyFromISR + 0x00000000 0x246 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskGenericNotifyStateClear.str1.4 + 0x00000000 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGenericNotifyStateClear + 0x00000000 0x57 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.ulTaskGenericNotifyValueClear + 0x00000000 0x3f esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvTakeKernelLock + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvReleaseKernelLock + 0x00000000 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGetIdleTaskHandle + 0x00000000 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGetStackStart + 0x00000000 0x12 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.pxTaskGetStackStart + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.prvTaskPriorityRaise.str1.4 + 0x00000000 0x1b esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvTaskPriorityRaise + 0x00000000 0xeb esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvTaskPriorityRestore + 0x00000000 0xfb esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGetNext + 0x00000000 0x7a esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskGetSnapshotAll + 0x00000000 0x3f esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.pvTaskGetCurrentTCBForCore + 0x00000000 0x2b esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$0 + 0x00000000 0x1b esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$1 + 0x00000000 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$8 + 0x00000000 0x1d esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$10 + 0x00000000 0x1a esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$12 + 0x00000000 0x17 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$16 + 0x00000000 0x22 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$18 + 0x00000000 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$19 + 0x00000000 0x22 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$21 + 0x00000000 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$22 + 0x00000000 0x1f esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$26 + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$27 + 0x00000000 0x12 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$28 + 0x00000000 0x16 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$29 + 0x00000000 0xf esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$33 + 0x00000000 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$34 + 0x00000000 0x17 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$35 + 0x00000000 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$36 + 0x00000000 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$39 + 0x00000000 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$41 + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.non_ready_task_lists + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .xt.lit 0x00000000 0x298 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .xt.prop 0x00000000 0x273c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vPortEndScheduler + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + .literal.vPortAssertIfInISR + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(port.c.obj) + .literal.xPortEnterCriticalTimeoutCompliance + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(port.c.obj) + .literal.vPortExitCriticalCompliance + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(port.c.obj) + .literal.vPortSetStackWatchpoint + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + .text.vPortEndScheduler + 0x00000000 0x9 esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.vPortAssertIfInISR.str1.4 + 0x00000000 0x19 esp-idf/freertos/libfreertos.a(port.c.obj) + .text.vPortAssertIfInISR + 0x00000000 0x1f esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.xPortEnterCriticalTimeoutCompliance.str1.4 + 0x00000000 0x33 esp-idf/freertos/libfreertos.a(port.c.obj) + .text.xPortEnterCriticalTimeoutCompliance + 0x00000000 0x28 esp-idf/freertos/libfreertos.a(port.c.obj) + .text.vPortExitCriticalCompliance + 0x00000000 0x27 esp-idf/freertos/libfreertos.a(port.c.obj) + .text.xPortGetTickRateHz + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + .text.vPortSetStackWatchpoint + 0x00000000 0x1a esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.__func__$3 + 0x00000000 0x13 esp-idf/freertos/libfreertos.a(port.c.obj) + .xt.lit 0x00000000 0x88 esp-idf/freertos/libfreertos.a(port.c.obj) + .xt.prop 0x00000000 0x5a0 esp-idf/freertos/libfreertos.a(port.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .xt.lit 0x00000000 0x8 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .xt.prop 0x00000000 0x180 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .literal.xt_clock_freq + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .text.xt_clock_freq + 0x00000000 0xd esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .xt.prop 0x00000000 0x6c esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .literal.prvTaskDeleteWithCaps + 0x00000000 0x48 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .literal.prvTaskDeleteWithCapsTask + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .literal.xTaskCreatePinnedToCoreWithCaps + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .literal.vTaskDeleteWithCaps + 0x00000000 0x54 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .literal.xStreamBufferGenericCreateWithCaps + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .literal.vStreamBufferGenericDeleteWithCaps + 0x00000000 0x28 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.prvTaskDeleteWithCaps + 0x00000000 0xa2 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.prvTaskDeleteWithCapsTask + 0x00000000 0x16 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.xTaskCreatePinnedToCoreWithCaps + 0x00000000 0x72 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .rodata.vTaskDeleteWithCaps.str1.4 + 0x00000000 0xd6 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.vTaskDeleteWithCaps + 0x00000000 0xb9 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.xStreamBufferGenericCreateWithCaps + 0x00000000 0x7c esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.vStreamBufferGenericDeleteWithCaps + 0x00000000 0x62 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .rodata.__func__$0 + 0x00000000 0x23 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .rodata.__func__$3 + 0x00000000 0x16 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .rodata.__func__$4 + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .xt.lit 0x00000000 0x50 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .xt.prop 0x00000000 0x3cc esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .literal.xPortGetFreeHeapSize + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .literal.xPortGetMinimumEverFreeHeapSize + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .literal.xPortCheckValidListMem + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .text.xPortGetFreeHeapSize + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .text.xPortGetMinimumEverFreeHeapSize + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .text.xPortCheckValidListMem + 0x00000000 0x49 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .xt.prop 0x00000000 0x24c esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .literal.vApplicationGetTimerTaskMemory + 0x00000000 0x24 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .text.vApplicationGetTimerTaskMemory + 0x00000000 0x4c esp-idf/freertos/libfreertos.a(port_common.c.obj) + .rodata.__func__$0 + 0x00000000 0x1f esp-idf/freertos/libfreertos.a(port_common.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .xt.prop 0x00000000 0xa8 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .xt.prop 0x00000000 0x84 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(list.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(list.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(list.c.obj) + .xt.prop 0x00000000 0xf0 esp-idf/freertos/libfreertos.a(list.c.obj) + .literal.prvInitialiseNewStreamBuffer + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.prvWriteBytesToBuffer + 0x00000000 0x28 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.prvWriteMessageToBuffer + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.prvReadBytesFromBuffer + 0x00000000 0x20 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.prvReadMessageFromBuffer + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferGenericCreate + 0x00000000 0x3c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferGenericCreateStatic + 0x00000000 0x48 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferGetStaticBuffers + 0x00000000 0x20 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.vStreamBufferDelete + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferReset + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferSetTriggerLevel + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferSpacesAvailable + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferBytesAvailable + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferSend + 0x00000000 0x6c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferSendFromISR + 0x00000000 0x2c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferReceive + 0x00000000 0x58 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferNextMessageLengthBytes + 0x00000000 0x20 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferReceiveFromISR + 0x00000000 0x28 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferIsEmpty + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferIsFull + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferSendCompletedFromISR + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferReceiveCompletedFromISR + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.prvBytesInBuffer + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.prvInitialiseNewStreamBuffer.str1.4 + 0x00000000 0x82 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.prvInitialiseNewStreamBuffer + 0x00000000 0x46 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.prvWriteBytesToBuffer.str1.4 + 0x00000000 0x81 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.prvWriteBytesToBuffer + 0x00000000 0x86 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.prvWriteMessageToBuffer + 0x00000000 0x48 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.prvReadBytesFromBuffer.str1.4 + 0x00000000 0x4c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.prvReadBytesFromBuffer + 0x00000000 0x68 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.prvReadMessageFromBuffer + 0x00000000 0x46 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.xStreamBufferGenericCreate.str1.4 + 0x00000000 0xa3 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferGenericCreate + 0x00000000 0xac esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.xStreamBufferGenericCreateStatic.str1.4 + 0x00000000 0x56 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferGenericCreateStatic + 0x00000000 0xf0 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.xStreamBufferGetStaticBuffers.str1.4 + 0x00000000 0x42 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferGetStaticBuffers + 0x00000000 0x55 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.vStreamBufferDelete + 0x00000000 0x34 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferReset + 0x00000000 0x5e esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferSetTriggerLevel + 0x00000000 0x2c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferSpacesAvailable + 0x00000000 0x40 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferBytesAvailable + 0x00000000 0x23 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.xStreamBufferSend.str1.4 + 0x00000000 0x62 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferSend + 0x00000000 0x179 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferSendFromISR + 0x00000000 0x95 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.xStreamBufferReceive.str1.4 + 0x00000000 0x41 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferReceive + 0x00000000 0x12e esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.xStreamBufferNextMessageLengthBytes.str1.4 + 0x00000000 0x15 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferNextMessageLengthBytes + 0x00000000 0x5d esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferReceiveFromISR + 0x00000000 0x92 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferIsEmpty + 0x00000000 0x2e esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferIsFull + 0x00000000 0x38 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferSendCompletedFromISR + 0x00000000 0x4e esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferReceiveCompletedFromISR + 0x00000000 0x4e esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$0 + 0x00000000 0x25 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$1 + 0x00000000 0x22 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$2 + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$3 + 0x00000000 0x15 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$4 + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$5 + 0x00000000 0x24 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$6 + 0x00000000 0x17 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$7 + 0x00000000 0x15 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$8 + 0x00000000 0x19 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$9 + 0x00000000 0x16 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$11 + 0x00000000 0x12 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$12 + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$13 + 0x00000000 0x1d esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$14 + 0x00000000 0x1d esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$15 + 0x00000000 0x13 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$16 + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$17 + 0x00000000 0x1e esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$18 + 0x00000000 0x21 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$19 + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$20 + 0x00000000 0x1d esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$21 + 0x00000000 0x1b esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .debug_frame 0x00000000 0x238 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .debug_info 0x00000000 0x2610 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .debug_abbrev 0x00000000 0x396 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .debug_loc 0x00000000 0x152b esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .debug_aranges + 0x00000000 0xd0 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .debug_ranges 0x00000000 0x108 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .debug_line 0x00000000 0x205e esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .debug_str 0x00000000 0xb4e esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .comment 0x00000000 0x30 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .xt.lit 0x00000000 0xb0 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .xt.prop 0x00000000 0xb04 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(init.c.obj) + .data 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(init.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(init.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/esp_libc/libesp_libc.a(init.c.obj) + .xt.prop 0x00000000 0x9c esp-idf/esp_libc/libesp_libc.a(init.c.obj) + .text 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(abort.c.obj) + .data 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(abort.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(abort.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_libc/libesp_libc.a(abort.c.obj) + .xt.prop 0x00000000 0x3c esp-idf/esp_libc/libesp_libc.a(abort.c.obj) + .literal.__assert + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + .text 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + .data 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + .text.__assert + 0x00000000 0x11 esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + .xt.prop 0x00000000 0xf0 esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + .literal.realloc + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .literal.memalign + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .literal.aligned_alloc + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .literal.posix_memalign + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .literal.mallinfo + 0x00000000 0x8 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .text 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .data 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .text.realloc 0x00000000 0x11 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .text.memalign + 0x00000000 0x11 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .text.aligned_alloc + 0x00000000 0x11 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .text.posix_memalign + 0x00000000 0x24 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .text.malloc_trim + 0x00000000 0x7 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .text.malloc_usable_size + 0x00000000 0x7 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .text.malloc_stats + 0x00000000 0x5 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .text.mallopt 0x00000000 0x7 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .text.mallinfo + 0x00000000 0x1e esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .xt.prop 0x00000000 0x288 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .iram1.12.literal + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .iram1.15.literal + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .iram1.17.literal + 0x00000000 0x8 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .iram1.19.literal + 0x00000000 0x8 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .iram1.20.literal + 0x00000000 0x8 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .iram1.21.literal + 0x00000000 0x8 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .text 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .data 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .iram1.12 0x00000000 0x13 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .iram1.15 0x00000000 0xf esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .iram1.17 0x00000000 0x17 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .iram1.19 0x00000000 0x19 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .iram1.20 0x00000000 0x19 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .iram1.21 0x00000000 0x17 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .xt.lit 0x00000000 0xc0 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .xt.prop 0x00000000 0x624 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .text 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(pthread.c.obj) + .data 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(pthread.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(pthread.c.obj) + .text.pthread_setcancelstate + 0x00000000 0x7 esp-idf/esp_libc/libesp_libc.a(pthread.c.obj) + .text.pthread_sigmask + 0x00000000 0x7 esp-idf/esp_libc/libesp_libc.a(pthread.c.obj) + .xt.prop 0x00000000 0x6c esp-idf/esp_libc/libesp_libc.a(pthread.c.obj) + .literal.getentropy + 0x00000000 0x8 esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) + .text 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) + .data 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) + .text.getentropy + 0x00000000 0x46 esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) + .xt.prop 0x00000000 0x90 esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) + .literal.__atomic_exchange_8 + 0x00000000 0x1c esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__atomic_compare_exchange_8 + 0x00000000 0x1c esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__atomic_fetch_add_8 + 0x00000000 0x1c esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__atomic_add_fetch_8 + 0x00000000 0x1c esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__atomic_fetch_sub_8 + 0x00000000 0x1c esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__atomic_sub_fetch_8 + 0x00000000 0x1c esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__atomic_and_fetch_8 + 0x00000000 0x1c esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__atomic_or_fetch_8 + 0x00000000 0x1c esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__atomic_fetch_xor_8 + 0x00000000 0x1c esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__atomic_xor_fetch_8 + 0x00000000 0x1c esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__atomic_fetch_nand_8 + 0x00000000 0x1c esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__atomic_nand_fetch_8 + 0x00000000 0x1c esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__atomic_load_8 + 0x00000000 0x1c esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__atomic_store_8 + 0x00000000 0x1c esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__sync_fetch_and_add_8 + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__sync_add_and_fetch_8 + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__sync_fetch_and_sub_8 + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__sync_sub_and_fetch_8 + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__sync_fetch_and_and_8 + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__sync_and_and_fetch_8 + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__sync_fetch_and_or_8 + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__sync_or_and_fetch_8 + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__sync_fetch_and_xor_8 + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__sync_xor_and_fetch_8 + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__sync_fetch_and_nand_8 + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__sync_nand_and_fetch_8 + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__sync_bool_compare_and_swap_8 + 0x00000000 0x1c esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__sync_val_compare_and_swap_8 + 0x00000000 0x1c esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__sync_lock_test_and_set_8 + 0x00000000 0x1c esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__sync_lock_release_8 + 0x00000000 0x1c esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__atomic_load + 0x00000000 0x20 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__atomic_store + 0x00000000 0x20 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__atomic_compare_exchange + 0x00000000 0x28 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .data 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__atomic_exchange_8 + 0x00000000 0x67 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__atomic_compare_exchange_8 + 0x00000000 0x7f esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__atomic_fetch_add_8 + 0x00000000 0x73 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__atomic_add_fetch_8 + 0x00000000 0x67 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__atomic_fetch_sub_8 + 0x00000000 0x6b esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__atomic_sub_fetch_8 + 0x00000000 0x6b esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__atomic_and_fetch_8 + 0x00000000 0x63 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__atomic_or_fetch_8 + 0x00000000 0x63 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__atomic_fetch_xor_8 + 0x00000000 0x6e esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__atomic_xor_fetch_8 + 0x00000000 0x63 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__atomic_fetch_nand_8 + 0x00000000 0x77 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__atomic_nand_fetch_8 + 0x00000000 0x6b esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__atomic_load_8 + 0x00000000 0x4f esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__atomic_store_8 + 0x00000000 0x5b esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__sync_fetch_and_add_8 + 0x00000000 0x17 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__sync_add_and_fetch_8 + 0x00000000 0x20 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__sync_fetch_and_sub_8 + 0x00000000 0x17 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__sync_sub_and_fetch_8 + 0x00000000 0x1e esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__sync_fetch_and_and_8 + 0x00000000 0x17 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__sync_and_and_fetch_8 + 0x00000000 0x19 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__sync_fetch_and_or_8 + 0x00000000 0x17 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__sync_or_and_fetch_8 + 0x00000000 0x19 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__sync_fetch_and_xor_8 + 0x00000000 0x17 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__sync_xor_and_fetch_8 + 0x00000000 0x19 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__sync_fetch_and_nand_8 + 0x00000000 0x17 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__sync_nand_and_fetch_8 + 0x00000000 0x23 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__sync_bool_compare_and_swap_8 + 0x00000000 0x73 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__sync_val_compare_and_swap_8 + 0x00000000 0x6b esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__sync_lock_test_and_set_8 + 0x00000000 0x67 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__sync_lock_release_8 + 0x00000000 0x57 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__atomic_load + 0x00000000 0x53 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__atomic_store + 0x00000000 0x53 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__atomic_compare_exchange + 0x00000000 0x77 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .xt.lit 0x00000000 0x118 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .xt.prop 0x00000000 0xb64 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.adjtime + 0x00000000 0x3c esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .literal._times_r + 0x00000000 0x10 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .literal.usleep + 0x00000000 0x1c esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .literal.sleep + 0x00000000 0x8 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .literal.clock_settime + 0x00000000 0xc esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .literal.clock_gettime + 0x00000000 0x18 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .literal.clock_getres + 0x00000000 0x8 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .text 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .data 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .text.adjtime 0x00000000 0xec esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .text._times_r + 0x00000000 0x35 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .text.usleep 0x00000000 0x61 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .text.sleep 0x00000000 0x13 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .text.clock_settime + 0x00000000 0x55 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .text.clock_gettime + 0x00000000 0x97 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .text.clock_getres + 0x00000000 0x28 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .xt.lit 0x00000000 0x68 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .xt.prop 0x00000000 0x4e0 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .literal.creat + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .literal.unlink + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .literal.stat 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .literal.link 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .literal.rename + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .literal.isatty + 0x00000000 0x8 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .literal.getpid + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .literal._exit + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .literal.system + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .literal.statvfs + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .literal.fstatvfs + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .text 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .data 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .text.creat 0x00000000 0x16 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .text.unlink 0x00000000 0x11 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .text.stat 0x00000000 0x14 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .text.link 0x00000000 0x14 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .text.rename 0x00000000 0x14 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .text.isatty 0x00000000 0x30 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .text.getpid 0x00000000 0x10 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .text._exit 0x00000000 0x9 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .text.system 0x00000000 0x11 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .text.statvfs 0x00000000 0x13 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .text.fstatvfs + 0x00000000 0x13 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .xt.lit 0x00000000 0x98 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .xt.prop 0x00000000 0x3f0 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .literal.syscall_not_implemented + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + .literal.syscall_not_implemented_aborts + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + .text 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + .data 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + .text.syscall_not_implemented + 0x00000000 0x13 esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + .text.syscall_not_implemented_aborts + 0x00000000 0x9 esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + .xt.prop 0x00000000 0x78 esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + .literal.esp_time_impl_get_time + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + .text 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + .data 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + .text.esp_time_impl_get_time + 0x00000000 0xf esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + .xt.prop 0x00000000 0x168 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + .text 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + .data 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + .text.esp_reent_cleanup + 0x00000000 0x5 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + .data.stderr 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + .xt.prop 0x00000000 0x15c esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + .literal.__errno + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(errno.c.obj) + .text 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(errno.c.obj) + .data 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(errno.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(errno.c.obj) + .text.__errno 0x00000000 0xd esp-idf/esp_libc/libesp_libc.a(errno.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_libc/libesp_libc.a(errno.c.obj) + .xt.prop 0x00000000 0x3c esp-idf/esp_libc/libesp_libc.a(errno.c.obj) + .literal.getrandom + 0x00000000 0x8 esp-idf/esp_libc/libesp_libc.a(random.c.obj) + .text 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(random.c.obj) + .data 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(random.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(random.c.obj) + .text.getrandom + 0x00000000 0x24 esp-idf/esp_libc/libesp_libc.a(random.c.obj) + .debug_frame 0x00000000 0x28 esp-idf/esp_libc/libesp_libc.a(random.c.obj) + .debug_info 0x00000000 0x246 esp-idf/esp_libc/libesp_libc.a(random.c.obj) + .debug_abbrev 0x00000000 0x152 esp-idf/esp_libc/libesp_libc.a(random.c.obj) + .debug_loc 0x00000000 0x45 esp-idf/esp_libc/libesp_libc.a(random.c.obj) + .debug_aranges + 0x00000000 0x20 esp-idf/esp_libc/libesp_libc.a(random.c.obj) + .debug_ranges 0x00000000 0x10 esp-idf/esp_libc/libesp_libc.a(random.c.obj) + .debug_line 0x00000000 0x341 esp-idf/esp_libc/libesp_libc.a(random.c.obj) + .debug_str 0x00000000 0x39a esp-idf/esp_libc/libesp_libc.a(random.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_libc/libesp_libc.a(random.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_libc/libesp_libc.a(random.c.obj) + .xt.prop 0x00000000 0x48 esp-idf/esp_libc/libesp_libc.a(random.c.obj) + .literal.pthread_list_find_item + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_find + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.get_default_pthread_core + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.lazy_init_pthread_cfg_key + 0x00000000 0xc esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.esp_pthread_cfg_key_destructor + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_delete + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_create_freertos_task_with_caps + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.esp_pthread_init + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.esp_pthread_set_cfg + 0x00000000 0x30 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.esp_pthread_get_cfg + 0x00000000 0x28 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.esp_pthread_get_default_config + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_create + 0x00000000 0x84 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_join + 0x00000000 0x40 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_detach + 0x00000000 0x20 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_exit + 0x00000000 0x40 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_task_func + 0x00000000 0xc esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_cancel + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.sched_yield + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_self + 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_once + 0x00000000 0x18 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutex_destroy + 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutex_timedlock + 0x00000000 0x1c esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutex_trylock + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutexattr_init + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutexattr_settype + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_attr_init + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_attr_destroy + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_getschedparam + 0x00000000 0x18 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.set_prio + 0x00000000 0x20 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_setschedparam + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_setschedprio + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + .data 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + .bss 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_list_find_item + 0x00000000 0x22 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_get_handle_by_desc + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_get_desc_by_handle + 0x00000000 0xc esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_find + 0x00000000 0x12 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.get_default_pthread_core + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.lazy_init_pthread_cfg_key + 0x00000000 0x27 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.esp_pthread_cfg_key_destructor + 0x00000000 0xe esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_delete + 0x00000000 0x2b esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_create_freertos_task_with_caps + 0x00000000 0x1c esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.esp_pthread_init + 0x00000000 0xd esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.esp_pthread_set_cfg.str1.4 + 0x00000000 0x3e esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.esp_pthread_set_cfg + 0x00000000 0xb5 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.esp_pthread_get_cfg + 0x00000000 0x6f esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.esp_pthread_get_default_config + 0x00000000 0x29 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_create.str1.4 + 0x00000000 0xb4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_create + 0x00000000 0x1c5 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_join + 0x00000000 0xde esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_detach + 0x00000000 0x6a esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_exit + 0x00000000 0x9a esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_task_func + 0x00000000 0x32 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_cancel.str1.4 + 0x00000000 0x20 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_cancel + 0x00000000 0x22 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.sched_yield + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_self.str1.4 + 0x00000000 0x2d esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_self + 0x00000000 0x3b esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_equal + 0x00000000 0xe esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_once.str1.4 + 0x00000000 0x1f esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_once + 0x00000000 0x54 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_mutex_destroy.str1.4 + 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_destroy + 0x00000000 0x78 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_timedlock + 0x00000000 0xee esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_trylock + 0x00000000 0x28 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutexattr_init + 0x00000000 0x22 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutexattr_destroy + 0x00000000 0x12 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutexattr_gettype + 0x00000000 0x12 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutexattr_settype + 0x00000000 0x2c esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_init + 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_destroy + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_getstacksize + 0x00000000 0x12 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_setstacksize + 0x00000000 0x22 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_getdetachstate + 0x00000000 0x12 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_setdetachstate + 0x00000000 0x20 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_getschedparam + 0x00000000 0x50 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.sched_get_priority_min + 0x00000000 0x7 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.sched_get_priority_max + 0x00000000 0x7 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.set_prio + 0x00000000 0x59 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_setschedparam + 0x00000000 0x1a esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_setschedprio + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$1 + 0x00000000 0x16 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__FUNCTION__$2 + 0x00000000 0xd esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$3 + 0x00000000 0xd esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__FUNCTION__$4 + 0x00000000 0xf esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$5 + 0x00000000 0xd esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__FUNCTION__$6 + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__FUNCTION__$7 + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread.c.obj) + .bss.s_pthread_cfg_key + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .bss.s_threads_list + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .bss.s_threads_lock + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .xt.lit 0x00000000 0x120 esp-idf/pthread/libpthread.a(pthread.c.obj) + .xt.prop 0x00000000 0x120c esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_condattr_init + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_condattr_destroy + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_condattr_getpshared + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_condattr_setpshared + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_condattr_getclock + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_condattr_setclock + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_cond_init + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.s_check_and_init_if_static + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_cond_signal + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_cond_broadcast + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_cond_timedwait + 0x00000000 0x38 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_cond_wait + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_cond_destroy + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .data 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .bss 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .rodata.pthread_condattr_init.str1.4 + 0x00000000 0x35 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_condattr_init + 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_condattr_destroy + 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_condattr_getpshared + 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_condattr_setpshared + 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_condattr_getclock + 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .rodata.pthread_condattr_setclock.str1.4 + 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_condattr_setclock + 0x00000000 0x22 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_cond_init + 0x00000000 0x35 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.s_check_and_init_if_static + 0x00000000 0x49 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_cond_signal + 0x00000000 0x3a esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_cond_broadcast + 0x00000000 0x44 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_cond_timedwait + 0x00000000 0x167 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_cond_wait + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_cond_destroy + 0x00000000 0x50 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .rodata.__func__$0 + 0x00000000 0x1a esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .rodata.__FUNCTION__$1 + 0x00000000 0x1a esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .rodata.__FUNCTION__$2 + 0x00000000 0x1c esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .rodata.__FUNCTION__$3 + 0x00000000 0x1c esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .rodata.__FUNCTION__$4 + 0x00000000 0x19 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .rodata.__FUNCTION__$5 + 0x00000000 0x16 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .xt.lit 0x00000000 0x68 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .xt.prop 0x00000000 0x4e0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_key_delete + 0x00000000 0x18 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .literal.pthread_internal_local_storage_destructor_callback + 0x00000000 0xc esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .text 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .data 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .bss 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .text.pthread_key_delete + 0x00000000 0x49 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .text.pthread_internal_local_storage_destructor_callback + 0x00000000 0x2a esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .xt.prop 0x00000000 0x378 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .literal.pthread_rwlock_init + 0x00000000 0x18 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.pthread_rwlock_init_if_static + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.checkrw_lock + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.pthread_rwlock_destroy + 0x00000000 0x18 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.pthread_rwlock_rdlock + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.pthread_rwlock_tryrdlock + 0x00000000 0xc esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.pthread_rwlock_wrlock + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.pthread_rwlock_trywrlock + 0x00000000 0xc esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.pthread_rwlock_unlock + 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.pthread_rwlock_timedwrlock + 0x00000000 0x1c esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.pthread_rwlock_timedrdlock + 0x00000000 0x1c esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .data 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .bss 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_init + 0x00000000 0x7a esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_init_if_static + 0x00000000 0x3c esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.checkrw_lock + 0x00000000 0x21 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_destroy + 0x00000000 0x6d esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_rdlock + 0x00000000 0x5c esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_tryrdlock + 0x00000000 0x40 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_wrlock + 0x00000000 0x5e esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_trywrlock + 0x00000000 0x56 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .rodata.pthread_rwlock_unlock.str1.4 + 0x00000000 0x6e esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_unlock + 0x00000000 0x7b esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_timedwrlock + 0x00000000 0xae esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_timedrdlock + 0x00000000 0x8f esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .rodata.__func__$0 + 0x00000000 0x16 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .xt.prop 0x00000000 0x564 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.sem_destroy + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .literal.sem_init + 0x00000000 0xc esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .literal.sem_post + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .literal.sem_timedwait + 0x00000000 0x20 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .literal.sem_trywait + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .literal.sem_wait + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .literal.sem_getvalue + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .data 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .bss 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text.sem_destroy + 0x00000000 0x22 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text.sem_init + 0x00000000 0x52 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text.sem_post + 0x00000000 0x3c esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text.sem_timedwait + 0x00000000 0xfc esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text.sem_trywait + 0x00000000 0x38 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text.sem_wait + 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text.sem_getvalue + 0x00000000 0x37 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .xt.prop 0x00000000 0x348 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .literal._ZL20signal_waiting_tasksv + 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .literal._ZL18wait_for_guard_objP7guard_t + 0x00000000 0x34 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .literal._ZL19static_init_preparev + 0x00000000 0x24 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .literal.__cxa_guard_acquire + 0x00000000 0x30 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .literal.__cxa_guard_release + 0x00000000 0x30 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .literal.__cxa_guard_abort + 0x00000000 0x38 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .data 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .bss 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text._ZL20signal_waiting_tasksv + 0x00000000 0x26 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata._ZL18wait_for_guard_objP7guard_t.str1.4 + 0x00000000 0x50 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text._ZL18wait_for_guard_objP7guard_t + 0x00000000 0x92 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text._ZL19static_init_preparev + 0x00000000 0x4e esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata.__cxa_guard_acquire.str1.4 + 0x00000000 0x2e esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text.__cxa_guard_acquire + 0x00000000 0x94 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata.__cxa_guard_release.str1.4 + 0x00000000 0x6f esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text.__cxa_guard_release + 0x00000000 0x83 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata.__cxa_guard_abort.str1.4 + 0x00000000 0xa7 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text.__cxa_guard_abort + 0x00000000 0x96 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .bss.__dso_handle + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .bss._ZL31s_static_init_max_waiting_count + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .bss._ZL27s_static_init_waiting_count + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .data._ZL15s_init_spinlock + 0x00000000 0x8 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .bss._ZL22s_static_init_wait_sem + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .bss._ZL19s_static_init_mutex + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .xt.lit 0x00000000 0x30 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .xt.prop 0x00000000 0x234 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .data 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .bss 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .text.__cxx_eh_arena_size_get + 0x00000000 0x7 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .text.__esp_idf_pthread_rwlock_lazy_allocation + 0x00000000 0x5 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .xt.prop 0x00000000 0x6c esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .text 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .data 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .xt.prop 0x00000000 0x90 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .text 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .data 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .iram1.1 0x00000000 0x8 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .xt.prop 0x00000000 0xc0 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .literal.esp_timer_impl_lock + 0x00000000 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .literal.esp_timer_impl_unlock + 0x00000000 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .iram1.0.literal + 0x00000000 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .text 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .data 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .text.esp_timer_impl_lock + 0x00000000 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .text.esp_timer_impl_unlock + 0x00000000 0xe esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .iram1.0 0x00000000 0x12 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .iram1.1 0x00000000 0x9 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .data.timestamp_id + 0x00000000 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .data.s_time_update_lock + 0x00000000 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_frame 0x00000000 0x70 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_info 0x00000000 0x402 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_abbrev 0x00000000 0x178 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_loc 0x00000000 0x1a esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_aranges + 0x00000000 0x38 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_ranges 0x00000000 0x28 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_line 0x00000000 0x32e esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_str 0x00000000 0xa19 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .xt.prop 0x00000000 0xcc esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .iram1.3.literal + 0x00000000 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .iram1.2.literal + 0x00000000 0x48 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .literal.esp_timer_impl_set + 0x00000000 0x18 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .literal.esp_timer_impl_advance + 0x00000000 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .literal.esp_timer_impl_init + 0x00000000 0x8c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .literal.esp_timer_impl_deinit + 0x00000000 0x2c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .literal.esp_timer_impl_get_alarm_reg + 0x00000000 0x24 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .text 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .data 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .iram1.3 0x00000000 0x1a esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .rodata.str1.4 + 0x00000000 0x70 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .iram1.2 0x00000000 0x14f esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .text.esp_timer_impl_set + 0x00000000 0x3b esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .text.esp_timer_impl_advance + 0x00000000 0x1c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .rodata.esp_timer_impl_init.str1.4 + 0x00000000 0xe8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .text.esp_timer_impl_init + 0x00000000 0x17b esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .text.esp_timer_impl_deinit + 0x00000000 0x92 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .text.esp_timer_impl_get_alarm_reg + 0x00000000 0x57 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .rodata.__func__$6 + 0x00000000 0x1b esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .rodata.__func__$1 + 0x00000000 0x1c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .bss.s_alarm_handler + 0x00000000 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .bss.s_timer_interrupt_handle + 0x00000000 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .xt.lit 0x00000000 0x50 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .xt.prop 0x00000000 0x450 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .literal.uart_get_avail_data_len_via_driver + 0x00000000 0x4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .literal.uart_rx_char_via_driver + 0x00000000 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .literal.uart_tx_char_via_driver + 0x00000000 0x4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .literal.uart_vfs_dev_port_set_rx_line_endings + 0x00000000 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .literal.uart_vfs_dev_port_set_tx_line_endings + 0x00000000 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .literal.uart_vfs_dev_set_rx_line_endings + 0x00000000 0x4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .literal.uart_vfs_dev_set_tx_line_endings + 0x00000000 0x4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .literal.uart_vfs_dev_use_nonblocking + 0x00000000 0x20 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .literal.uart_vfs_dev_use_driver + 0x00000000 0x20 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .text 0x00000000 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .data 0x00000000 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .text.uart_get_avail_data_len_via_driver + 0x00000000 0x15 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .text.uart_rx_char_via_driver + 0x00000000 0x31 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .text.uart_tx_char_via_driver + 0x00000000 0x14 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .text.uart_vfs_dev_port_set_rx_line_endings + 0x00000000 0x26 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .text.uart_vfs_dev_port_set_tx_line_endings + 0x00000000 0x26 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .text.uart_vfs_dev_set_rx_line_endings + 0x00000000 0x19 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .text.uart_vfs_dev_set_tx_line_endings + 0x00000000 0x19 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .text.uart_vfs_dev_use_nonblocking + 0x00000000 0x42 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .text.uart_vfs_dev_use_driver + 0x00000000 0x42 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .xt.lit 0x00000000 0xf0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .xt.prop 0x00000000 0xd44 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .literal.uart_pattern_dequeue + 0x00000000 0x4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_get_sclk_freq + 0x00000000 0x4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_set_word_length + 0x00000000 0x30 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_get_word_length + 0x00000000 0x1c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_set_stop_bits + 0x00000000 0x30 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_get_stop_bits + 0x00000000 0x24 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_set_parity + 0x00000000 0x24 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_get_parity + 0x00000000 0x24 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_set_baudrate + 0x00000000 0x48 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_get_baudrate + 0x00000000 0x38 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_set_line_inverse + 0x00000000 0x24 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_set_sw_flow_ctrl + 0x00000000 0x3c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_set_hw_flow_ctrl + 0x00000000 0x3c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_get_hw_flow_ctrl + 0x00000000 0x24 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_clear_intr_status + 0x00000000 0x1c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_enable_intr_mask + 0x00000000 0x24 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_pattern_pop_pos + 0x00000000 0x28 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_pattern_get_pos + 0x00000000 0x24 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_enable_pattern_det_baud_intr + 0x00000000 0x54 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_disable_pattern_det_intr + 0x00000000 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_enable_rx_intr + 0x00000000 0x4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_set_rts + 0x00000000 0x30 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_set_dtr + 0x00000000 0x24 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_set_tx_idle_num + 0x00000000 0x30 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_tx_chars + 0x00000000 0x3c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_write_bytes_with_break + 0x00000000 0x4c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_get_tx_buffer_free_size + 0x00000000 0x3c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_flush_input + 0x00000000 0x74 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_set_mode + 0x00000000 0x54 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_set_rx_full_threshold + 0x00000000 0x48 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_set_tx_empty_threshold + 0x00000000 0x48 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_set_rx_timeout + 0x00000000 0x38 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_get_collision_flag + 0x00000000 0x4c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_set_wakeup_threshold + 0x00000000 0x40 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_get_wakeup_threshold + 0x00000000 0x30 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_wait_tx_idle_polling + 0x00000000 0x30 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_set_loop_back + 0x00000000 0x20 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_set_always_rx_timeout + 0x00000000 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_detect_bitrate_start + 0x00000000 0x70 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_detect_bitrate_stop + 0x00000000 0x54 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text 0x00000000 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .data 0x00000000 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_pattern_dequeue + 0x00000000 0x36 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_get_sclk_freq + 0x00000000 0x14 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_set_word_length + 0x00000000 0x88 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_get_word_length + 0x00000000 0x41 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_set_stop_bits.str1.4 + 0x00000000 0x24 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_set_stop_bits + 0x00000000 0x88 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_get_stop_bits + 0x00000000 0x60 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_set_parity + 0x00000000 0x60 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_get_parity + 0x00000000 0x60 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_set_baudrate + 0x00000000 0x11c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_get_baudrate.str1.4 + 0x00000000 0x25 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_get_baudrate + 0x00000000 0xa9 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_set_line_inverse + 0x00000000 0x60 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_set_sw_flow_ctrl.str1.4 + 0x00000000 0x5f esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_set_sw_flow_ctrl + 0x00000000 0xcd esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_set_hw_flow_ctrl + 0x00000000 0xb9 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_get_hw_flow_ctrl + 0x00000000 0x60 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_clear_intr_status + 0x00000000 0x40 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_enable_intr_mask + 0x00000000 0x78 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_pattern_pop_pos + 0x00000000 0x86 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_pattern_get_pos + 0x00000000 0x7a esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_enable_pattern_det_baud_intr.str1.4 + 0x00000000 0x2d esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_enable_pattern_det_baud_intr + 0x00000000 0x148 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_disable_pattern_det_intr + 0x00000000 0x12 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_enable_rx_intr + 0x00000000 0x12 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_set_rts.str1.4 + 0x00000000 0x41 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_set_rts + 0x00000000 0xa5 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_set_dtr + 0x00000000 0x60 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_set_tx_idle_num.str1.4 + 0x00000000 0x29 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_set_tx_idle_num + 0x00000000 0x8c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_tx_chars + 0x00000000 0xba esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_write_bytes_with_break + 0x00000000 0xf0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_get_tx_buffer_free_size.str1.4 + 0x00000000 0x29 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_get_tx_buffer_free_size + 0x00000000 0x16d esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_flush_input.str1.4 + 0x00000000 0x23 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_flush_input + 0x00000000 0x1b0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_set_mode.str1.4 + 0x00000000 0x41 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_set_mode + 0x00000000 0x11e esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_set_rx_full_threshold.str1.4 + 0x00000000 0x68 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_set_rx_full_threshold + 0x00000000 0xce esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_set_tx_empty_threshold.str1.4 + 0x00000000 0x39 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_set_tx_empty_threshold + 0x00000000 0xce esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_set_rx_timeout.str1.4 + 0x00000000 0x33 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_set_rx_timeout + 0x00000000 0x96 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_get_collision_flag.str1.4 + 0x00000000 0x50 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_get_collision_flag + 0x00000000 0xd6 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_set_wakeup_threshold.str1.4 + 0x00000000 0x34 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_set_wakeup_threshold + 0x00000000 0xae esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_get_wakeup_threshold.str1.4 + 0x00000000 0x26 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_get_wakeup_threshold + 0x00000000 0x6c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_wait_tx_idle_polling + 0x00000000 0xc5 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_set_loop_back + 0x00000000 0x44 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_set_always_rx_timeout + 0x00000000 0x57 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_detect_bitrate_start.str1.4 + 0x00000000 0x9e esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_detect_bitrate_start + 0x00000000 0x1dc esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.uart_detect_bitrate_stop.str1.4 + 0x00000000 0x8d esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .text.uart_detect_bitrate_stop + 0x00000000 0x1a2 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__$50 + 0x00000000 0x19 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__$49 + 0x00000000 0x1a esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__$48 + 0x00000000 0x13 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__$47 + 0x00000000 0x1a esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__$46 + 0x00000000 0x1a esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__$45 + 0x00000000 0x1a esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__$44 + 0x00000000 0x18 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__$43 + 0x00000000 0x14 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__$42 + 0x00000000 0x1c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__$41 + 0x00000000 0x1b esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__$40 + 0x00000000 0xe esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__$36 + 0x00000000 0x11 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__$35 + 0x00000000 0x1d esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__$31 + 0x00000000 0x1c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__$29 + 0x00000000 0xe esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__$24 + 0x00000000 0x15 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__$23 + 0x00000000 0xd esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__$22 + 0x00000000 0xd esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__$18 + 0x00000000 0x22 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__$16 + 0x00000000 0x15 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__$15 + 0x00000000 0x15 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__$13 + 0x00000000 0x16 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__$12 + 0x00000000 0x17 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__$11 + 0x00000000 0x16 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__$10 + 0x00000000 0x16 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__$9 + 0x00000000 0x16 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__$8 + 0x00000000 0x16 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__$7 + 0x00000000 0x12 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__$6 + 0x00000000 0x12 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__$5 + 0x00000000 0x10 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__$4 + 0x00000000 0x10 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__$3 + 0x00000000 0x13 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__$2 + 0x00000000 0x13 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__$1 + 0x00000000 0x15 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0x15 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .xt.lit 0x00000000 0x248 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .xt.prop 0x00000000 0x29c4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.nvs_sec_provider_deregister + 0x00000000 0xc esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .text 0x00000000 0x0 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .data 0x00000000 0x0 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .bss 0x00000000 0x0 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .text.nvs_sec_provider_deregister + 0x00000000 0x29 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .xt.prop 0x00000000 0x78 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._ZSt7find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEZL18nvs_find_ns_handlemPPN3nvs15NVSHandleSimpleEEUlRS1_E_ET_SA_SA_T0_ + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._ZL18nvs_find_ns_handlemPPN3nvs15NVSHandleSimpleE + 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._ZSt7find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEZ9nvs_closeEUlRS1_E_ET_S6_S6_T0_ + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._ZL19nvs_get_str_or_blobmN3nvs8ItemTypeEPKcPvPj + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._ZL24lookup_storage_from_namePKc + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._ZL15create_iteratorPN3nvs7StorageE10nvs_type_t + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_dump + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_init_partition_ptr + 0x00000000 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_secure_init_partition + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_secure_init + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_find_key + 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_erase_key + 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_erase_all + 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_commit + 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_set_str + 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_set_blob + 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_get_str + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_get_blob + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_get_stats + 0x00000000 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_get_used_entry_count + 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_generate_keys + 0x00000000 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_read_security_cfg + 0x00000000 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_register_security_scheme + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_deregister_security_scheme + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_get_default_security_scheme + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_entry_find + 0x00000000 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_entry_find_in_handle + 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_entry_next + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_entry_info + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_release_iterator + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_erase_partition_ptr + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_deinit_partition + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_deinit + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_close + 0x00000000 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_open_from_partition + 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_open + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._Z7nvs_setIaEimPKcT_ + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_set_i8 + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._Z7nvs_setIhEimPKcT_ + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_set_u8 + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._Z7nvs_setIsEimPKcT_ + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_set_i16 + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._Z7nvs_setItEimPKcT_ + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_set_u16 + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._Z7nvs_setIlEimPKcT_ + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_set_i32 + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._Z7nvs_setImEimPKcT_ + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_set_u32 + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._Z7nvs_setIxEimPKcT_ + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_set_i64 + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._Z7nvs_setIyEimPKcT_ + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_set_u64 + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._Z7nvs_getIaEimPKcPT_ + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_get_i8 + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._Z7nvs_getIhEimPKcPT_ + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_get_u8 + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._Z7nvs_getIsEimPKcPT_ + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_get_i16 + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._Z7nvs_getItEimPKcPT_ + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_get_u16 + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._Z7nvs_getIlEimPKcPT_ + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_get_i32 + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._Z7nvs_getImEimPKcPT_ + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_get_u32 + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._Z7nvs_getIxEimPKcPT_ + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_get_i64 + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._Z7nvs_getIyEimPKcPT_ + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_get_u64 + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZZ27nvs_flash_read_security_cfgENKUlPhS_mE_clES_S_m + 0x00000000 0x45 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZSt9__find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZL18nvs_find_ns_handlemPPN3nvs15NVSHandleSimpleEEUlRS1_E_EEET_SE_SE_T0_ + 0x00000000 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZSt7find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEZL18nvs_find_ns_handlemPPN3nvs15NVSHandleSimpleEEUlRS1_E_ET_SA_SA_T0_ + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZL18nvs_find_ns_handlemPPN3nvs15NVSHandleSimpleE + 0x00000000 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZSt9__find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZ9nvs_closeEUlRS1_E_EEET_SA_SA_T0_ + 0x00000000 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZSt7find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEZ9nvs_closeEUlRS1_E_ET_S6_S6_T0_ + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZL19nvs_get_str_or_blobmN3nvs8ItemTypeEPKcPvPj + 0x00000000 0x6e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZL24lookup_storage_from_namePKc + 0x00000000 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZL15create_iteratorPN3nvs7StorageE10nvs_type_t + 0x00000000 0x1a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN14NVSHandleEntryD2Ev + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_dump + 0x00000000 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_init_partition_ptr + 0x00000000 0x7a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_secure_init_partition + 0x00000000 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_secure_init + 0x00000000 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_find_key + 0x00000000 0x46 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_erase_key + 0x00000000 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_erase_all + 0x00000000 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_commit + 0x00000000 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_set_str + 0x00000000 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_set_blob + 0x00000000 0x36 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_str + 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_blob + 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_stats + 0x00000000 0x62 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_used_entry_count + 0x00000000 0x44 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_generate_keys + 0x00000000 0xf0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_read_security_cfg + 0x00000000 0xee esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_register_security_scheme + 0x00000000 0x1d esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_deregister_security_scheme + 0x00000000 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_get_default_security_scheme + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_generate_keys_v2 + 0x00000000 0x31 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_read_security_cfg_v2 + 0x00000000 0x31 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_entry_find + 0x00000000 0x8b esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_entry_find_in_handle + 0x00000000 0x85 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_entry_next + 0x00000000 0x40 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_entry_info + 0x00000000 0x2d esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_release_iterator + 0x00000000 0xe esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_erase_partition_ptr + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_deinit_partition + 0x00000000 0x2c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_deinit + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_close + 0x00000000 0x52 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN14intrusive_listI14NVSHandleEntryE9push_backEPS0_ + 0x00000000 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_open_from_partition + 0x00000000 0x7e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_open + 0x00000000 0x16 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8set_itemIaEEiPKcT_ + 0x00000000 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_setIaEimPKcT_ + 0x00000000 0x36 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_set_i8 + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8set_itemIhEEiPKcT_ + 0x00000000 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_setIhEimPKcT_ + 0x00000000 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_set_u8 + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8set_itemIsEEiPKcT_ + 0x00000000 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_setIsEimPKcT_ + 0x00000000 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_set_i16 + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8set_itemItEEiPKcT_ + 0x00000000 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_setItEimPKcT_ + 0x00000000 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_set_u16 + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8set_itemIlEEiPKcT_ + 0x00000000 0x1a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_setIlEimPKcT_ + 0x00000000 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_set_i32 + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8set_itemImEEiPKcT_ + 0x00000000 0x1a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_setImEimPKcT_ + 0x00000000 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_set_u32 + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8set_itemIxEEiPKcT_ + 0x00000000 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_setIxEimPKcT_ + 0x00000000 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_set_i64 + 0x00000000 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8set_itemIyEEiPKcT_ + 0x00000000 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_setIyEimPKcT_ + 0x00000000 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_set_u64 + 0x00000000 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8get_itemIaEEiPKcRT_ + 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_getIaEimPKcPT_ + 0x00000000 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_i8 + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8get_itemIhEEiPKcRT_ + 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_getIhEimPKcPT_ + 0x00000000 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_u8 + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8get_itemIsEEiPKcRT_ + 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_getIsEimPKcPT_ + 0x00000000 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_i16 + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8get_itemItEEiPKcRT_ + 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_getItEimPKcPT_ + 0x00000000 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_u16 + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8get_itemIlEEiPKcRT_ + 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_getIlEimPKcPT_ + 0x00000000 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_i32 + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8get_itemImEEiPKcRT_ + 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_getImEimPKcPT_ + 0x00000000 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_u32 + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8get_itemIxEEiPKcRT_ + 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_getIxEimPKcPT_ + 0x00000000 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_i64 + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZN3nvs9NVSHandle8get_itemIyEEiPKcRT_ + 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._Z7nvs_getIyEimPKcPT_ + 0x00000000 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_u64 + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .bss._ZN14NVSHandleEntry17s_nvs_next_handleE + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .bss._ZL26nvs_sec_default_scheme_cfg + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.lit 0x00000000 0x260 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop 0x00000000 0x14e8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN14NVSHandleEntryD2Ev + 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN14intrusive_listI14NVSHandleEntryE9push_backEPS0_ + 0x00000000 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8set_itemIaEEiPKcT_ + 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8set_itemIhEEiPKcT_ + 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8set_itemIsEEiPKcT_ + 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8set_itemItEEiPKcT_ + 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8set_itemIlEEiPKcT_ + 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8set_itemImEEiPKcT_ + 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8set_itemIxEEiPKcT_ + 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8set_itemIyEEiPKcT_ + 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8get_itemIaEEiPKcRT_ + 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8get_itemIhEEiPKcRT_ + 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8get_itemIsEEiPKcRT_ + 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8get_itemItEEiPKcRT_ + 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8get_itemIlEEiPKcRT_ + 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8get_itemImEEiPKcRT_ + 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8get_itemIxEEiPKcRT_ + 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs9NVSHandle8get_itemIyEEiPKcRT_ + 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x00000000 0x2c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZSt9__find_ifIN14intrusive_listIN3nvs7Storage14NamespaceEntryEE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZNS2_21createOrOpenNamespaceEPKcbRhEUlRKS3_E_EEET_SG_SG_T0_ + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZSt7find_ifIN14intrusive_listIN3nvs7Storage14NamespaceEntryEE8iteratorEZNS2_21createOrOpenNamespaceEPKcbRhEUlRKS3_E_ET_SC_SC_T0_ + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage8findItemEhNS_8ItemTypeEPKcRPNS_4PageERNS_4ItemEhNS_9VerOffsetEPj + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage16cmpMultiPageBlobEhPKcPKvj + 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage18eraseMultiPageBlobEhPKcNS_9VerOffsetE + 0x00000000 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage17readMultiPageBlobEhPKcPvj + 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage8readItemEhNS_8ItemTypeEPKcPvj + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage9eraseItemEhNS_8ItemTypeEPKc + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage14eraseNamespaceEh + 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage7findKeyEhPKcPNS_8ItemTypeE + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage15getItemDataSizeEhNS_8ItemTypeEPKcRj + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage9debugDumpEv + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage9fillStatsER11nvs_stats_t + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage22calcEntriesInNamespaceEhRj + 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage13fillEntryInfoERNS_4ItemER16nvs_entry_info_t + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage9nextEntryEP21nvs_opaque_iterator_t + 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage11findEntryNsEP21nvs_opaque_iterator_th + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN14intrusive_listIN3nvs7Storage12UsedPageNodeEE17clearAndFreeNodesEv + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage18writeMultiPageBlobEhPKcPKvjNS_9VerOffsetE + 0x00000000 0x44 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage9writeItemEhNS_8ItemTypeEPKcPKvj + 0x00000000 0x58 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage21createOrOpenNamespaceEPKcbRh + 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage9findEntryEP21nvs_opaque_iterator_tPKc + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZSt9__find_ifIN14intrusive_listIN3nvs7Storage14NamespaceEntryEE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZNS2_21createOrOpenNamespaceEPKcbRhEUlRKS3_E_EEET_SG_SG_T0_ + 0x00000000 0x1b esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZSt7find_ifIN14intrusive_listIN3nvs7Storage14NamespaceEntryEE8iteratorEZNS2_21createOrOpenNamespaceEPKcbRhEUlRKS3_E_ET_SC_SC_T0_ + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZNK3nvs7Storage7isValidEv + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage8findItemEhNS_8ItemTypeEPKcRPNS_4PageERNS_4ItemEhNS_9VerOffsetEPj + 0x00000000 0x5c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage16cmpMultiPageBlobEhPKcPKvj + 0x00000000 0x101 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage18eraseMultiPageBlobEhPKcNS_9VerOffsetE + 0x00000000 0x160 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage17readMultiPageBlobEhPKcPvj + 0x00000000 0x10a esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage8readItemEhNS_8ItemTypeEPKcPvj + 0x00000000 0x74 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage9eraseItemEhNS_8ItemTypeEPKc + 0x00000000 0x6c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage14eraseNamespaceEh + 0x00000000 0x43 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage7findKeyEhPKcPNS_8ItemTypeE + 0x00000000 0x42 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage15getItemDataSizeEhNS_8ItemTypeEPKcRj + 0x00000000 0x78 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage9debugDumpEv + 0x00000000 0x17 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage9fillStatsER11nvs_stats_t + 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage22calcEntriesInNamespaceEhRj + 0x00000000 0x64 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage13fillEntryInfoERNS_4ItemER16nvs_entry_info_t + 0x00000000 0x41 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage9nextEntryEP21nvs_opaque_iterator_t + 0x00000000 0x87 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage11findEntryNsEP21nvs_opaque_iterator_th + 0x00000000 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN14intrusive_listIN3nvs7Storage12UsedPageNodeEE9push_backEPS2_ + 0x00000000 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN14intrusive_listIN3nvs7Storage12UsedPageNodeEE5eraseENS3_8iteratorE + 0x00000000 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN14intrusive_listIN3nvs7Storage12UsedPageNodeEE17clearAndFreeNodesEv + 0x00000000 0x23 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage18writeMultiPageBlobEhPKcPKvjNS_9VerOffsetE + 0x00000000 0x1f9 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage9writeItemEhNS_8ItemTypeEPKcPKvj + 0x00000000 0x284 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage21createOrOpenNamespaceEPKcbRh + 0x00000000 0xe0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage9findEntryEP21nvs_opaque_iterator_tPKc + 0x00000000 0x35 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .xt.lit 0x00000000 0x118 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .xt.lit._ZN14intrusive_listIN3nvs7Storage12UsedPageNodeEE17clearAndFreeNodesEv + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .xt.prop 0x00000000 0x1278 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs7Storage12UsedPageNodeEE17clearAndFreeNodesEv + 0x00000000 0x48 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs7Storage12UsedPageNodeEE9push_backEPS2_ + 0x00000000 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs7Storage12UsedPageNodeEE5eraseENS3_8iteratorE + 0x00000000 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .literal._ZN3nvs15NVSHandleSimple6commitEv + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .literal._ZN3nvs15NVSHandleSimpleD2Ev + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .literal._ZN3nvs15NVSHandleSimpleD0Ev + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .literal._ZN3nvs15NVSHandleSimple14set_typed_itemENS_8ItemTypeEPKcPKvj + 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .literal._ZN3nvs15NVSHandleSimple8set_blobEPKcPKvj + 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .literal._ZN3nvs15NVSHandleSimple14get_typed_itemENS_8ItemTypeEPKcPvj + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .literal._ZN3nvs15NVSHandleSimple10get_stringEPKcPcj + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .literal._ZN3nvs15NVSHandleSimple8get_blobEPKcPvj + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .literal._ZN3nvs15NVSHandleSimple10set_stringEPKcS2_ + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .literal._ZN3nvs15NVSHandleSimple13get_item_sizeENS_8ItemTypeEPKcRj + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .literal._ZN3nvs15NVSHandleSimple8find_keyEPKcR10nvs_type_t + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .literal._ZN3nvs15NVSHandleSimple10erase_itemEPKc + 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .literal._ZN3nvs15NVSHandleSimple9erase_allEv + 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .literal._ZN3nvs15NVSHandleSimple20get_used_entry_countERj + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .literal._ZN3nvs15NVSHandleSimple9debugDumpEv + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .literal._ZN3nvs15NVSHandleSimple9fillStatsER11nvs_stats_t + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .literal._ZN3nvs15NVSHandleSimple22calcEntriesInNamespaceERj + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .literal._ZN3nvs15NVSHandleSimple9findEntryEP21nvs_opaque_iterator_tPKc + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .literal._ZN3nvs15NVSHandleSimple11findEntryNsEP21nvs_opaque_iterator_t + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .literal._ZN3nvs15NVSHandleSimple9nextEntryEP21nvs_opaque_iterator_t + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple6commitEv + 0x00000000 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimpleD2Ev + 0x00000000 0x1d esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimpleD0Ev + 0x00000000 0x16 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple14set_typed_itemENS_8ItemTypeEPKcPKvj + 0x00000000 0x35 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple8set_blobEPKcPKvj + 0x00000000 0x31 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple14get_typed_itemENS_8ItemTypeEPKcPvj + 0x00000000 0x26 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple10get_stringEPKcPcj + 0x00000000 0x26 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple8get_blobEPKcPvj + 0x00000000 0x26 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple10set_stringEPKcS2_ + 0x00000000 0x3d esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple13get_item_sizeENS_8ItemTypeEPKcRj + 0x00000000 0x25 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple8find_keyEPKcR10nvs_type_t + 0x00000000 0x45 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple10erase_itemEPKc + 0x00000000 0x31 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple9erase_allEv + 0x00000000 0x29 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple20get_used_entry_countERj + 0x00000000 0x2a esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple9debugDumpEv + 0x00000000 0xe esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple9fillStatsER11nvs_stats_t + 0x00000000 0x11 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple22calcEntriesInNamespaceERj + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple9findEntryEP21nvs_opaque_iterator_tPKc + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple11findEntryNsEP21nvs_opaque_iterator_t + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple9nextEntryEP21nvs_opaque_iterator_t + 0x00000000 0x11 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZNK3nvs15NVSHandleSimple11get_storageEv + 0x00000000 0x7 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .rodata._ZTVN3nvs9NVSHandleE + 0x00000000 0x40 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .rodata._ZTVN3nvs15NVSHandleSimpleE + 0x00000000 0x40 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .xt.lit 0x00000000 0xa0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .xt.prop 0x00000000 0x5c4 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .xt.prop._ZTVN3nvs9NVSHandleE + 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .xt.prop._ZTVN3nvs15NVSHandleSimpleE + 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .xt.lit 0x00000000 0x40 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .xt.prop 0x00000000 0x210 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .literal._ZN3nvs16partition_lookup30lookup_nvs_encrypted_partitionEPKcP13nvs_sec_cfg_tPPNS_9PartitionE + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .text._ZN3nvs16partition_lookup30lookup_nvs_encrypted_partitionEPKcP13nvs_sec_cfg_tPPNS_9PartitionE + 0x00000000 0x65 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .xt.lit 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .xt.prop 0x00000000 0x108 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .group 0x00000000 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .group 0x00000000 0x2c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .literal._ZN3nvs19NVSPartitionManager21secure_init_partitionEPKcP13nvs_sec_cfg_t + 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .literal._ZN3nvs19NVSPartitionManager12close_handleEPNS_15NVSHandleSimpleE + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .literal._ZN3nvs19NVSPartitionManager11open_handleEPKcS2_15nvs_open_mode_tPPNS_15NVSHandleSimpleE + 0x00000000 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .text._ZN3nvs19NVSPartitionManager17open_handles_sizeEv + 0x00000000 0x7 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .text._ZN3nvs19NVSPartitionManager21secure_init_partitionEPKcP13nvs_sec_cfg_t + 0x00000000 0x8a esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .text._ZN3nvs19NVSPartitionManager12close_handleEPNS_15NVSHandleSimpleE + 0x00000000 0x25 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .text._ZN14intrusive_listIN3nvs15NVSHandleSimpleEE9push_backEPS1_ + 0x00000000 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .text._ZN3nvs19NVSPartitionManager11open_handleEPKcS2_15nvs_open_mode_tPPNS_15NVSHandleSimpleE + 0x00000000 0xac esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .rodata._ZTVN3nvs9NVSHandleE + 0x00000000 0x40 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.lit 0x00000000 0x58 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.prop 0x00000000 0x4d4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs15NVSHandleSimpleEE9push_backEPS1_ + 0x00000000 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.prop._ZTVN3nvs9NVSHandleE + 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .literal._ZN3nvs4Item14calculateCrc32EPKhjPm + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .text._ZN3nvs4Item14calculateCrc32EPKhjPm + 0x00000000 0x1a esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .xt.lit 0x00000000 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .xt.prop 0x00000000 0x270 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .literal._ZN3nvs4Lock6uninitEv + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .text._ZN3nvs4Lock6uninitEv + 0x00000000 0x16 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .xt.lit 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .xt.prop 0x00000000 0xcc esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .group 0x00000000 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .literal._ZN3nvs21NVSEncryptedPartitionD5Ev + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .literal._ZN3nvs21NVSEncryptedPartitionC2EPK15esp_partition_t + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .literal._ZN3nvs21NVSEncryptedPartition4initEP13nvs_sec_cfg_t + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .literal._ZN3nvs21NVSEncryptedPartition4readEjPvj + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .literal._ZN3nvs21NVSEncryptedPartition5writeEjPKvj + 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .text._ZN3nvs21NVSEncryptedPartitionD2Ev + 0x00000000 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .text._ZN3nvs21NVSEncryptedPartitionD0Ev + 0x00000000 0x1a esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .text._ZN3nvs21NVSEncryptedPartitionC2EPK15esp_partition_t + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .text._ZN3nvs21NVSEncryptedPartition4initEP13nvs_sec_cfg_t + 0x00000000 0x47 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .text._ZN3nvs21NVSEncryptedPartition4readEjPvj + 0x00000000 0x5f esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .text._ZN3nvs21NVSEncryptedPartition5writeEjPKvj + 0x00000000 0x99 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .rodata._ZTVN3nvs21NVSEncryptedPartitionE + 0x00000000 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .debug_frame 0x00000000 0xa0 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .debug_info 0x00000000 0x2f74 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .debug_abbrev 0x00000000 0x75c esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .debug_loc 0x00000000 0x2c5 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .debug_aranges + 0x00000000 0x48 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .debug_ranges 0x00000000 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .debug_line 0x00000000 0xc95 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .debug_str 0x00000000 0x20ea esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .comment 0x00000000 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .xt.lit._ZN3nvs21NVSEncryptedPartitionD5Ev + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .xt.lit 0x00000000 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .xt.prop._ZN3nvs21NVSEncryptedPartitionD5Ev + 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .xt.prop 0x00000000 0x198 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .xt.prop._ZN3nvs21NVSEncryptedPartitionD2Ev + 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .xt.prop._ZN3nvs21NVSEncryptedPartitionD0Ev + 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .xt.prop._ZTVN3nvs21NVSEncryptedPartitionE + 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .xt.lit 0x00000000 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .xt.prop 0x00000000 0x24c esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .group 0x00000000 0x2c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .group 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZSt9__fill_a1IhiEN9__gnu_cxx11__enable_ifIXaasrSt9__is_byteIT_E7__valueoosrSt10__are_sameIS3_T0_E7__valuesrSt20__memcpyable_integerIS6_E7__widthEvE6__typeEPS3_SC_RKS6_ + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page10setVersionEh + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page11markFreeingEv + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page8markFullEv + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZNK3nvs4Page18getVarDataTailroomEv + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page15pageStateToNameENS0_9PageStateE + 0x00000000 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZNK3nvs4Page9debugDumpEv + 0x00000000 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page11calcEntriesER11nvs_stats_t + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page14writeEntryDataEPKhj + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page9writeItemEhNS_8ItemTypeEPKcPKvjh + 0x00000000 0x50 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page26readVariableLengthItemDataERKNS_4ItemEjPv + 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page8readItemEhNS_8ItemTypeEPKcPvjhNS_9VerOffsetE + 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page7cmpItemEhNS_8ItemTypeEPKcPKvjhNS_9VerOffsetE + 0x00000000 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page8findItemEhNS_8ItemTypeEPKchNS_9VerOffsetE + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZSt9__fill_a1IhiEN9__gnu_cxx11__enable_ifIXaasrSt9__is_byteIT_E7__valueoosrSt10__are_sameIS3_T0_E7__valuesrSt20__memcpyable_integerIS6_E7__widthEvE6__typeEPS3_SC_RKS6_ + 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page14alterPageStateENS0_9PageStateE + 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page10setVersionEh + 0x00000000 0x19 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page11markFreeingEv + 0x00000000 0x2d esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page8markFullEv + 0x00000000 0x1e esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZNK3nvs4Page18getVarDataTailroomEv + 0x00000000 0x31 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .rodata._ZN3nvs4Page15pageStateToNameENS0_9PageStateE.str1.4 + 0x00000000 0xbc esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page15pageStateToNameENS0_9PageStateE + 0x00000000 0x61 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .rodata._ZNK3nvs4Page9debugDumpEv.str1.4 + 0x00000000 0xa6 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZNK3nvs4Page9debugDumpEv + 0x00000000 0xdd esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .rodata._ZN3nvs4Page11calcEntriesER11nvs_stats_t.str1.4 + 0x00000000 0x4b esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page11calcEntriesER11nvs_stats_t + 0x00000000 0x71 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page14writeEntryDataEPKhj + 0x00000000 0x7c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page9writeItemEhNS_8ItemTypeEPKcPKvjh + 0x00000000 0x1ee esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page26readVariableLengthItemDataERKNS_4ItemEjPv + 0x00000000 0x88 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page8readItemEhNS_8ItemTypeEPKcPvjhNS_9VerOffsetE + 0x00000000 0xa0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page7cmpItemEhNS_8ItemTypeEPKcPKvjhNS_9VerOffsetE + 0x00000000 0x133 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page8findItemEhNS_8ItemTypeEPKchNS_9VerOffsetE + 0x00000000 0x2c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .xt.lit 0x00000000 0xe0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .xt.lit._ZSt9__fill_a1IhiEN9__gnu_cxx11__enable_ifIXaasrSt9__is_byteIT_E7__valueoosrSt10__are_sameIS3_T0_E7__valuesrSt20__memcpyable_integerIS6_E7__widthEvE6__typeEPS3_SC_RKS6_ + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .xt.prop 0x00000000 0x1524 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .xt.prop._ZSt9__fill_a1IhiEN9__gnu_cxx11__enable_ifIXaasrSt9__is_byteIT_E7__valueoosrSt10__are_sameIS3_T0_E7__valuesrSt20__memcpyable_integerIS6_E7__widthEvE6__typeEPS3_SC_RKS6_ + 0x00000000 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .group 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .group 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .group 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .literal._ZN3nvs11PageManager9fillStatsER11nvs_stats_t + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .literal._ZN3nvs11PageManager14requestNewPageEv + 0x00000000 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .literal._ZNKSt14default_deleteIA_N3nvs4PageEEclIS1_EENSt9enable_ifIXsrSt14is_convertibleIPA_T_PS2_E5valueEvE4typeEPS7_ + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .text._ZN3nvs11PageManager9fillStatsER11nvs_stats_t + 0x00000000 0x56 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .text._ZN3nvs11PageManager14requestNewPageEv + 0x00000000 0xbe esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .text._ZNKSt14default_deleteIA_N3nvs4PageEEclIS1_EENSt9enable_ifIXsrSt14is_convertibleIPA_T_PS2_E5valueEvE4typeEPS7_ + 0x00000000 0x33 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .xt.lit 0x00000000 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .xt.lit._ZNKSt14default_deleteIA_N3nvs4PageEEclIS1_EENSt9enable_ifIXsrSt14is_convertibleIPA_T_PS2_E5valueEvE4typeEPS7_ + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .xt.prop 0x00000000 0x42c esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .xt.prop._ZNKSt14default_deleteIA_N3nvs4PageEEclIS1_EENSt9enable_ifIXsrSt14is_convertibleIPA_T_PS2_E5valueEvE4typeEPS7_ + 0x00000000 0x48 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .literal.set_xpd_sar + 0x00000000 0xc esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .iram1.0.literal + 0x00000000 0x4 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .iram1.1.literal + 0x00000000 0x4 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .literal.esp_phy_efuse_get_mac + 0x00000000 0x4 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .literal.esp_phy_efuse_get_chip_ver_pkg + 0x00000000 0x4 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .text 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .data 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .text.set_xpd_sar + 0x00000000 0x28 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .iram1.0 0x00000000 0xb esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .iram1.1 0x00000000 0xb esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .text.phy_set_pwdet_power + 0x00000000 0x5 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .iram1.2 0x00000000 0x5 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .text.phy_get_tsens_value + 0x00000000 0x7 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .text.esp_phy_efuse_get_mac + 0x00000000 0xe esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .text.esp_phy_efuse_get_chip_ver_pkg + 0x00000000 0xd esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .bss.s_wifi_adc_xpd_flag + 0x00000000 0x1 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .xt.prop 0x00000000 0x1a4 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .literal.esp_vfs_free_entry + 0x00000000 0x8 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_minify_vfs + 0x00000000 0x24 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_make_fs_ops + 0x00000000 0x18 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_register_common + 0x00000000 0x10 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_register + 0x00000000 0x8 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_register_with_id + 0x00000000 0x8 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_register_fd_range + 0x00000000 0x24 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_register_fs_with_id + 0x00000000 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_unregister_with_id + 0x00000000 0x1c esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_unregister + 0x00000000 0x14 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_register_fd_with_local_fd + 0x00000000 0x14 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_register_fd + 0x00000000 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_unregister_fd + 0x00000000 0x18 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_dump_fds + 0x00000000 0x38 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_dump_registered_paths + 0x00000000 0x24 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_set_readonly_flag + 0x00000000 0x10 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.get_fd_entry + 0x00000000 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.close_pending + 0x00000000 0x14 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.start_select + 0x00000000 0x14 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text 0x00000000 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .data 0x00000000 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .bss 0x00000000 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_safe_fd_isset + 0x00000000 0x40 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_free_entry + 0x00000000 0x1c esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_minify_vfs + 0x00000000 0x10a esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_make_fs_ops + 0x00000000 0xd1 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_register_common + 0x00000000 0x71 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_register + 0x00000000 0x20 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_register_with_id + 0x00000000 0x25 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_register_fd_range + 0x00000000 0x10e esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_register_fs_with_id + 0x00000000 0x25 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_unregister_with_id + 0x00000000 0x7a esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_unregister + 0x00000000 0x4c esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_register_fd_with_local_fd + 0x00000000 0x9b esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_register_fd + 0x00000000 0x15 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_unregister_fd + 0x00000000 0x89 esp-idf/vfs/libvfs.a(vfs.c.obj) + .rodata.esp_vfs_dump_fds.str1.4 + 0x00000000 0x9c esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_dump_fds + 0x00000000 0xae esp-idf/vfs/libvfs.a(vfs.c.obj) + .rodata.esp_vfs_dump_registered_paths.str1.4 + 0x00000000 0x45 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_dump_registered_paths + 0x00000000 0x64 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_set_readonly_flag + 0x00000000 0x4d esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.get_fd_entry + 0x00000000 0x18 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.close_pending + 0x00000000 0x4c esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.start_select + 0x00000000 0x7a esp-idf/vfs/libvfs.a(vfs.c.obj) + .rodata.__func__$0 + 0x00000000 0xf esp-idf/vfs/libvfs.a(vfs.c.obj) + .xt.lit 0x00000000 0x108 esp-idf/vfs/libvfs.a(vfs.c.obj) + .xt.prop 0x00000000 0xedc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.call_end_selects + 0x00000000 0x4 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .literal.set_global_fd_sets + 0x00000000 0x10 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .literal.esp_vfs_pread + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .literal.esp_vfs_pwrite + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .literal.esp_vfs_ioctl + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .literal.esp_vfs_stat + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .literal.esp_vfs_utime + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .literal.esp_vfs_link + 0x00000000 0x14 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .literal.esp_vfs_unlink + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .literal.esp_vfs_rename + 0x00000000 0x14 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .literal.esp_vfs_readdir_r + 0x00000000 0x8 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .literal.esp_vfs_telldir + 0x00000000 0x8 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .literal.esp_vfs_seekdir + 0x00000000 0x8 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .literal.esp_vfs_rewinddir + 0x00000000 0x4 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .literal.esp_vfs_mkdir + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .literal.esp_vfs_rmdir + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .literal.esp_vfs_truncate + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .literal.esp_vfs_ftruncate + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .literal.esp_vfs_select + 0x00000000 0x84 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .text 0x00000000 0x0 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .data 0x00000000 0x0 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .bss 0x00000000 0x0 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .text.esp_vfs_safe_fd_isset + 0x00000000 0x40 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .text.call_end_selects + 0x00000000 0x38 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .text.set_global_fd_sets + 0x00000000 0xf3 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .text.esp_vfs_pread + 0x00000000 0x75 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .text.esp_vfs_pwrite + 0x00000000 0x75 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .text.esp_vfs_ioctl + 0x00000000 0x8d esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .text.esp_vfs_stat + 0x00000000 0x62 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .text.esp_vfs_utime + 0x00000000 0x62 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .text.esp_vfs_link + 0x00000000 0xa4 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .text.esp_vfs_unlink + 0x00000000 0x78 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .text.esp_vfs_rename + 0x00000000 0xbc esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .text.esp_vfs_readdir_r + 0x00000000 0x60 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .text.esp_vfs_telldir + 0x00000000 0x57 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .text.esp_vfs_seekdir + 0x00000000 0x56 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .text.esp_vfs_rewinddir + 0x00000000 0xf esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .text.esp_vfs_mkdir + 0x00000000 0x7a esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .text.esp_vfs_rmdir + 0x00000000 0x78 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .text.esp_vfs_truncate + 0x00000000 0x7a esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .text.esp_vfs_ftruncate + 0x00000000 0x83 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .text.esp_vfs_select + 0x00000000 0x3fa esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .xt.lit 0x00000000 0x108 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .xt.prop 0x00000000 0x13a4 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .literal.esp_vfs_null_get_vfs + 0x00000000 0x4 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .text 0x00000000 0x0 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .data 0x00000000 0x0 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .bss 0x00000000 0x0 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .text.esp_vfs_null_get_vfs + 0x00000000 0x8 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .xt.lit 0x00000000 0x80 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .xt.prop 0x00000000 0x540 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .literal.check_iomux_pins_quad + 0x00000000 0x4 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .literal.bus_uses_iomux_pins + 0x00000000 0x4 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .literal.spi_dma_ll_enable_bus_clock + 0x00000000 0x14 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .literal.claim_dma_chan + 0x00000000 0x30 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .literal.connect_spi_and_dma + 0x00000000 0x8 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .literal.alloc_dma_chan + 0x00000000 0x48 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .literal.s_spi_common_gpio_check_reserve + 0x00000000 0x28 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .literal.bus_iomux_pins_set_quad + 0x00000000 0x2c esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .literal.s_spi_common_bus_via_gpio + 0x00000000 0x28 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .literal.spicommon_bus_alloc + 0x00000000 0x28 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .literal.spicommon_bus_free + 0x00000000 0x1c esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .literal.spicommon_irqsource_for_host + 0x00000000 0x4 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .literal.spicommon_irqdma_source_for_host + 0x00000000 0x4 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .literal.spicommon_dma_chan_alloc + 0x00000000 0x28 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .literal.spicommon_dma_desc_alloc + 0x00000000 0x1c esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .iram1.0.literal + 0x00000000 0x14 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .literal.spicommon_dma_chan_free + 0x00000000 0x38 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .literal.spicommon_bus_initialize_io + 0x00000000 0xe0 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .literal.spicommon_bus_free_io_cfg + 0x00000000 0xc esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .literal.spicommon_cs_initialize + 0x00000000 0x2c esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .literal.spicommon_cs_free_io + 0x00000000 0xc esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .literal.spi_bus_lock_get_by_id + 0x00000000 0x4 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .literal.spi_bus_initialize + 0x00000000 0x98 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .literal.spi_bus_dma_memory_alloc + 0x00000000 0x1c esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .literal.spi_bus_get_attr + 0x00000000 0x4 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .literal.spi_bus_get_dma_ctx + 0x00000000 0x4 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .literal.spi_bus_free + 0x00000000 0x1c esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .literal.spi_bus_register_destroy_func + 0x00000000 0x4 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .iram1.1.literal + 0x00000000 0x38 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .iram1.2.literal + 0x00000000 0x4 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .iram1.3.literal + 0x00000000 0x38 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .iram1.4.literal + 0x00000000 0x10 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text 0x00000000 0x0 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .data 0x00000000 0x0 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.check_iomux_pins_quad + 0x00000000 0x86 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.bus_uses_iomux_pins + 0x00000000 0x11 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spi_dma_ll_enable_bus_clock + 0x00000000 0x39 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.claim_dma_chan + 0x00000000 0x8a esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.connect_spi_and_dma + 0x00000000 0x35 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .rodata.alloc_dma_chan.str1.4 + 0x00000000 0xc6 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.alloc_dma_chan + 0x00000000 0x106 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .rodata.s_spi_common_gpio_check_reserve.str1.4 + 0x00000000 0x60 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.s_spi_common_gpio_check_reserve + 0x00000000 0xae esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.bus_iomux_pins_set_quad + 0x00000000 0xc2 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.s_spi_common_bus_via_gpio + 0x00000000 0xb4 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .rodata.spicommon_bus_alloc.str1.4 + 0x00000000 0x29 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spicommon_bus_alloc + 0x00000000 0x64 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .rodata.spicommon_bus_free.str1.4 + 0x00000000 0x11 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spicommon_bus_free + 0x00000000 0x3e esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spicommon_irqsource_for_host + 0x00000000 0x10 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spicommon_irqdma_source_for_host + 0x00000000 0x10 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spicommon_dma_chan_alloc + 0x00000000 0x76 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spicommon_dma_desc_alloc + 0x00000000 0x83 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .iram1.0 0x00000000 0xa2 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .rodata.spicommon_dma_chan_free.str1.4 + 0x00000000 0x2d esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spicommon_dma_chan_free + 0x00000000 0x8d esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .rodata.spicommon_bus_initialize_io.str1.4 + 0x00000000 0x1d2 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spicommon_bus_initialize_io + 0x00000000 0x64a esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spicommon_bus_free_io_cfg + 0x00000000 0xd5 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spicommon_cs_initialize + 0x00000000 0x118 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spicommon_cs_free_io + 0x00000000 0x9c esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spi_bus_lock_get_by_id + 0x00000000 0x10 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .rodata.spi_bus_initialize.str1.4 + 0x00000000 0x17f esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spi_bus_initialize + 0x00000000 0x20e esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .rodata.spi_bus_dma_memory_alloc.str1.4 + 0x00000000 0x2c esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spi_bus_dma_memory_alloc + 0x00000000 0x71 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spi_bus_get_attr + 0x00000000 0x12 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spi_bus_get_dma_ctx + 0x00000000 0x12 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spi_bus_free + 0x00000000 0x76 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .text.spi_bus_register_destroy_func + 0x00000000 0x13 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .iram1.1 0x00000000 0x87 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .iram1.2 0x00000000 0xf esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .iram1.3 0x00000000 0x87 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .iram1.4 0x00000000 0x28 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0x19 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .rodata.__FUNCTION__$1 + 0x00000000 0x13 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .rodata.__func__$2 + 0x00000000 0x1a esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .rodata.__func__$3 + 0x00000000 0x20 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .rodata.__FUNCTION__$4 + 0x00000000 0x1c esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .rodata.__func__$5 + 0x00000000 0x18 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .rodata.__FUNCTION__$6 + 0x00000000 0xf esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .rodata.__func__$7 + 0x00000000 0xf esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .rodata.__func__$8 + 0x00000000 0x19 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .rodata.__func__$9 + 0x00000000 0x13 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .rodata.__FUNCTION__$10 + 0x00000000 0x14 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .bss.dmaworkaround_waiting_for_chan + 0x00000000 0x4 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .data.dmaworkaround_mux + 0x00000000 0x8 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .bss.dmaworkaround_cb_arg + 0x00000000 0x4 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .bss.dmaworkaround_cb + 0x00000000 0x4 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .bss.dmaworkaround_channels_busy + 0x00000000 0x8 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .data.spi_dma_spinlock + 0x00000000 0x8 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .bss.spi_dma_chan_enabled + 0x00000000 0x1 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .data.bus_ctx 0x00000000 0xc esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .data.s_mainbus + 0x00000000 0x70 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .debug_frame 0x00000000 0x310 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .debug_info 0x00000000 0x4b7e esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .debug_abbrev 0x00000000 0x630 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .debug_loc 0x00000000 0x14ad esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .debug_aranges + 0x00000000 0x118 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .debug_ranges 0x00000000 0x120 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .debug_line 0x00000000 0x3749 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .debug_str 0x00000000 0x27c5 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .xt.lit 0x00000000 0x100 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .xt.prop 0x00000000 0xfc0 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .literal.spi_dma_enable_burst + 0x00000000 0x14 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_dma.c.obj) + .iram1.0.literal + 0x00000000 0xc esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_dma.c.obj) + .iram1.1.literal + 0x00000000 0x10 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_dma.c.obj) + .text 0x00000000 0x0 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_dma.c.obj) + .data 0x00000000 0x0 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_dma.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_dma.c.obj) + .text.spi_dma_enable_burst + 0x00000000 0x81 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_dma.c.obj) + .text.spi_dma_get_alignment_constraints + 0x00000000 0x1e esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_dma.c.obj) + .iram1.0 0x00000000 0x6c esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_dma.c.obj) + .iram1.1 0x00000000 0x83 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_dma.c.obj) + .debug_frame 0x00000000 0x70 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_dma.c.obj) + .debug_info 0x00000000 0x21f8 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_dma.c.obj) + .debug_abbrev 0x00000000 0x2e1 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_dma.c.obj) + .debug_loc 0x00000000 0x2fb esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_dma.c.obj) + .debug_aranges + 0x00000000 0x38 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_dma.c.obj) + .debug_ranges 0x00000000 0x28 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_dma.c.obj) + .debug_line 0x00000000 0x6d4 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_dma.c.obj) + .debug_str 0x00000000 0x1237 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_dma.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_dma.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_dma.c.obj) + .xt.prop 0x00000000 0x1a4 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_dma.c.obj) + .text 0x00000000 0x0 esp-idf/main/libmain.a(main.c.obj) + .data 0x00000000 0x0 esp-idf/main/libmain.a(main.c.obj) + .bss 0x00000000 0x0 esp-idf/main/libmain.a(main.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/main/libmain.a(main.c.obj) + .xt.prop 0x00000000 0x7b0 esp-idf/main/libmain.a(main.c.obj) + .literal.modbus_memory_valid_reg_range + 0x00000000 0x4 esp-idf/main/libmain.a(modbus_memory.c.obj) + .literal.modbus_memory_read_coils + 0x00000000 0x8 esp-idf/main/libmain.a(modbus_memory.c.obj) + .literal.modbus_memory_read_discrete_inputs + 0x00000000 0x8 esp-idf/main/libmain.a(modbus_memory.c.obj) + .literal.modbus_memory_write_discrete_inputs + 0x00000000 0x8 esp-idf/main/libmain.a(modbus_memory.c.obj) + .literal.modbus_memory_read_input_registers + 0x00000000 0x8 esp-idf/main/libmain.a(modbus_memory.c.obj) + .literal.modbus_memory_write_input_registers + 0x00000000 0x8 esp-idf/main/libmain.a(modbus_memory.c.obj) + .literal.modbus_memory_read_holding_registers + 0x00000000 0x8 esp-idf/main/libmain.a(modbus_memory.c.obj) + .text 0x00000000 0x0 esp-idf/main/libmain.a(modbus_memory.c.obj) + .data 0x00000000 0x0 esp-idf/main/libmain.a(modbus_memory.c.obj) + .bss 0x00000000 0x0 esp-idf/main/libmain.a(modbus_memory.c.obj) + .text.modbus_memory_deinit + 0x00000000 0xb esp-idf/main/libmain.a(modbus_memory.c.obj) + .text.modbus_memory_valid_reg_range + 0x00000000 0x2e esp-idf/main/libmain.a(modbus_memory.c.obj) + .text.modbus_memory_read_coils + 0x00000000 0x5a esp-idf/main/libmain.a(modbus_memory.c.obj) + .text.modbus_memory_read_discrete_inputs + 0x00000000 0x5a esp-idf/main/libmain.a(modbus_memory.c.obj) + .text.modbus_memory_write_discrete_inputs + 0x00000000 0x4f esp-idf/main/libmain.a(modbus_memory.c.obj) + .text.modbus_memory_read_input_registers + 0x00000000 0x5b esp-idf/main/libmain.a(modbus_memory.c.obj) + .text.modbus_memory_write_input_registers + 0x00000000 0x52 esp-idf/main/libmain.a(modbus_memory.c.obj) + .text.modbus_memory_read_holding_registers + 0x00000000 0x5b esp-idf/main/libmain.a(modbus_memory.c.obj) + .xt.lit 0x00000000 0xf8 esp-idf/main/libmain.a(modbus_memory.c.obj) + .xt.prop 0x00000000 0x10d4 esp-idf/main/libmain.a(modbus_memory.c.obj) + .literal.modbus_points_find_by_name + 0x00000000 0x4 esp-idf/main/libmain.a(modbus_points.c.obj) + .text 0x00000000 0x0 esp-idf/main/libmain.a(modbus_points.c.obj) + .data 0x00000000 0x0 esp-idf/main/libmain.a(modbus_points.c.obj) + .bss 0x00000000 0x0 esp-idf/main/libmain.a(modbus_points.c.obj) + .text.modbus_points_find_by_pics_offset + 0x00000000 0x3a esp-idf/main/libmain.a(modbus_points.c.obj) + .text.modbus_points_find_by_name + 0x00000000 0x44 esp-idf/main/libmain.a(modbus_points.c.obj) + .text.modbus_points_find_by_type_offset + 0x00000000 0x33 esp-idf/main/libmain.a(modbus_points.c.obj) + .text.modbus_points_is_reg_type + 0x00000000 0x12 esp-idf/main/libmain.a(modbus_points.c.obj) + .xt.lit 0x00000000 0x80 esp-idf/main/libmain.a(modbus_points.c.obj) + .xt.prop 0x00000000 0xf0c esp-idf/main/libmain.a(modbus_points.c.obj) + .text 0x00000000 0x0 esp-idf/main/libmain.a(modbus_rtu.c.obj) + .data 0x00000000 0x0 esp-idf/main/libmain.a(modbus_rtu.c.obj) + .bss 0x00000000 0x0 esp-idf/main/libmain.a(modbus_rtu.c.obj) + .xt.lit 0x00000000 0x60 esp-idf/main/libmain.a(modbus_rtu.c.obj) + .xt.prop 0x00000000 0xaf8 esp-idf/main/libmain.a(modbus_rtu.c.obj) + .text 0x00000000 0x0 esp-idf/main/libmain.a(config_store.c.obj) + .data 0x00000000 0x0 esp-idf/main/libmain.a(config_store.c.obj) + .bss 0x00000000 0x0 esp-idf/main/libmain.a(config_store.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/main/libmain.a(config_store.c.obj) + .xt.prop 0x00000000 0x6e4 esp-idf/main/libmain.a(config_store.c.obj) + .literal.esp_spiffs_mounted + 0x00000000 0xc esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .literal.esp_spiffs_check + 0x00000000 0x30 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .literal.esp_spiffs_format + 0x00000000 0x6c esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .literal.esp_spiffs_gc + 0x00000000 0x24 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .literal.esp_vfs_spiffs_unregister + 0x00000000 0x10 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .text 0x00000000 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .data 0x00000000 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .bss 0x00000000 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .text.esp_spiffs_mounted + 0x00000000 0x2d esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .rodata.esp_spiffs_check.str1.4 + 0x00000000 0x26 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .text.esp_spiffs_check + 0x00000000 0x8e esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .rodata.esp_spiffs_format.str1.4 + 0x00000000 0x45 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .text.esp_spiffs_format + 0x00000000 0x17e esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .rodata.esp_spiffs_gc.str1.4 + 0x00000000 0x22 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .text.esp_spiffs_gc + 0x00000000 0x6e esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .text.esp_vfs_spiffs_unregister + 0x00000000 0x3c esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .rodata.__func__$14 + 0x00000000 0x12 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .xt.lit 0x00000000 0x128 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .xt.prop 0x00000000 0x10d4 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .text 0x00000000 0x0 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + .data 0x00000000 0x0 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + .bss 0x00000000 0x0 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + .xt.prop 0x00000000 0x168 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + .literal.SPIFFS_probe_fs + 0x00000000 0x4 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .literal.SPIFFS_creat + 0x00000000 0x2c esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .literal.SPIFFS_open_by_dirent + 0x00000000 0x34 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .literal.SPIFFS_open_by_page + 0x00000000 0x50 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .literal.SPIFFS_fremove + 0x00000000 0x30 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .literal.SPIFFS_check + 0x00000000 0x24 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .literal.SPIFFS_gc_quick + 0x00000000 0x1c esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .literal.SPIFFS_gc + 0x00000000 0x1c esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .literal.SPIFFS_eof + 0x00000000 0x24 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .literal.SPIFFS_tell + 0x00000000 0x24 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .literal.SPIFFS_set_file_callback_func + 0x00000000 0x8 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .literal.SPIFFS_ix_map + 0x00000000 0x30 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .literal.SPIFFS_ix_unmap + 0x00000000 0x24 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .literal.SPIFFS_ix_remap + 0x00000000 0x48 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .literal.SPIFFS_bytes_to_ix_map_entries + 0x00000000 0x8 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .literal.SPIFFS_ix_map_entries_to_bytes + 0x00000000 0x8 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .text 0x00000000 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .data 0x00000000 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .bss 0x00000000 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .text.SPIFFS_mounted + 0x00000000 0xd esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .text.SPIFFS_probe_fs + 0x00000000 0x10 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .text.SPIFFS_creat + 0x00000000 0x9a esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .text.SPIFFS_open_by_dirent + 0x00000000 0xdb esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .text.SPIFFS_open_by_page + 0x00000000 0x15b esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .text.SPIFFS_fremove + 0x00000000 0xa8 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .text.SPIFFS_check + 0x00000000 0x60 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .text.SPIFFS_gc_quick + 0x00000000 0x5a esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .text.SPIFFS_gc + 0x00000000 0x5a esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .text.SPIFFS_eof + 0x00000000 0x96 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .text.SPIFFS_tell + 0x00000000 0x80 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .text.SPIFFS_set_file_callback_func + 0x00000000 0x1c esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .text.SPIFFS_ix_map + 0x00000000 0xd4 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .text.SPIFFS_ix_unmap + 0x00000000 0x78 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .text.SPIFFS_ix_remap + 0x00000000 0x178 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .text.SPIFFS_bytes_to_ix_map_entries + 0x00000000 0x27 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .text.SPIFFS_ix_map_entries_to_bytes + 0x00000000 0x22 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .xt.lit 0x00000000 0x148 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .xt.prop 0x00000000 0x1a94 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .literal.spiffs_populate_ix_map_v + 0x00000000 0x24 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + .literal.spiffs_probe + 0x00000000 0x10 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + .literal.spiffs_obj_lu_find_id_and_span_by_phdr + 0x00000000 0x10 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + .literal.spiffs_populate_ix_map + 0x00000000 0x14 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + .literal.spiffs_object_open_by_id + 0x00000000 0xc esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + .text 0x00000000 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + .data 0x00000000 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + .bss 0x00000000 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + .text.spiffs_populate_ix_map_v + 0x00000000 0x10c esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + .text.spiffs_probe + 0x00000000 0x104 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + .text.spiffs_obj_lu_find_id_and_span_by_phdr + 0x00000000 0x86 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + .text.spiffs_populate_ix_map + 0x00000000 0xca esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + .text.spiffs_object_open_by_id + 0x00000000 0x40 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + .xt.lit 0x00000000 0x130 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + .xt.prop 0x00000000 0x25a4 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + .text 0x00000000 0x0 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + .data 0x00000000 0x0 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + .bss 0x00000000 0x0 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + .xt.prop 0x00000000 0x468 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + .literal.spiffs_object_get_data_page_index_reference + 0x00000000 0xc esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + .literal.spiffs_object_index_consistency_check_v + 0x00000000 0x2c esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + .literal.spiffs_rewrite_page + 0x00000000 0x8 esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + .literal.spiffs_delete_obj_lazy + 0x00000000 0xc esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + .literal.spiffs_rewrite_index + 0x00000000 0x30 esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + .literal.spiffs_lookup_check_validate + 0x00000000 0x84 esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + .literal.spiffs_lookup_check_v + 0x00000000 0x10 esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + .literal.spiffs_page_consistency_check_i + 0x00000000 0x64 esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + .literal.spiffs_lookup_consistency_check + 0x00000000 0xc esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + .literal.spiffs_page_consistency_check + 0x00000000 0x4 esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + .literal.spiffs_object_index_consistency_check + 0x00000000 0x10 esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + .text 0x00000000 0x0 esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + .data 0x00000000 0x0 esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + .bss 0x00000000 0x0 esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + .text.spiffs_object_index_search + 0x00000000 0x2c esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + .text.spiffs_object_get_data_page_index_reference + 0x00000000 0x96 esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + .text.spiffs_object_index_consistency_check_v + 0x00000000 0x1d8 esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + .text.spiffs_rewrite_page + 0x00000000 0x54 esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + .text.spiffs_delete_obj_lazy + 0x00000000 0x52 esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + .text.spiffs_rewrite_index + 0x00000000 0x1a1 esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + .text.spiffs_lookup_check_validate + 0x00000000 0x72c esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + .text.spiffs_lookup_check_v + 0x00000000 0xa0 esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + .text.spiffs_page_consistency_check_i + 0x00000000 0x7ac esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + .text.spiffs_lookup_consistency_check + 0x00000000 0x70 esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + .text.spiffs_page_consistency_check + 0x00000000 0x4c esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + .text.spiffs_object_index_consistency_check + 0x00000000 0x84 esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + .debug_frame 0x00000000 0x130 esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + .debug_info 0x00000000 0x20f7 esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + .debug_abbrev 0x00000000 0x307 esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + .debug_loc 0x00000000 0x15ed esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + .debug_aranges + 0x00000000 0x78 esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + .debug_ranges 0x00000000 0x100 esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + .debug_line 0x00000000 0x30d7 esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + .debug_str 0x00000000 0xb18 esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + .comment 0x00000000 0x30 esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + .xt.prop 0x00000000 0xde0 esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + .text 0x00000000 0x0 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + .data 0x00000000 0x0 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + .bss 0x00000000 0x0 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + .xt.prop 0x00000000 0x888 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + .data 0x00000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .bss 0x00000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .xt.lit 0x00000000 0x8 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .xt.prop 0x00000000 0xfc esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .bss 0x00000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .xt.prop 0x00000000 0x54 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .literal.xt_set_exception_handler + 0x00000000 0x8 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .text 0x00000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .data 0x00000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .bss 0x00000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .text.xt_set_exception_handler + 0x00000000 0x46 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .xt.prop 0x00000000 0x180 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .text 0x00000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .bss 0x00000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .xt.lit 0x00000000 0x48 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .xt.prop 0x00000000 0x564 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .text 0x00000000 0x0 esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a(spi_periph.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a(spi_periph.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a(spi_periph.c.obj) + .rodata.spi_periph_signal + 0x00000000 0x60 esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a(spi_periph.c.obj) + .debug_info 0x00000000 0x1ebf esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a(spi_periph.c.obj) + .debug_abbrev 0x00000000 0x1e5 esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a(spi_periph.c.obj) + .debug_aranges + 0x00000000 0x18 esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a(spi_periph.c.obj) + .debug_line 0x00000000 0x20e esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a(spi_periph.c.obj) + .debug_str 0x00000000 0x16fb esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a(spi_periph.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a(spi_periph.c.obj) + .xt.prop 0x00000000 0xc esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a(spi_periph.c.obj) + .literal.clk_hal_clock_output_setup + 0x00000000 0x4 esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) + .literal.clk_hal_clock_output_teardown + 0x00000000 0x4 esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) + .text.clk_hal_clock_output_setup + 0x00000000 0x7d esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) + .text.clk_hal_clock_output_teardown + 0x00000000 0x48 esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) + .xt.lit 0x00000000 0x48 esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) + .xt.prop 0x00000000 0x51c esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + .xt.prop 0x00000000 0x1f8 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + .xt.lit 0x00000000 0x68 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + .xt.prop 0x00000000 0x48c esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + .xt.prop 0x00000000 0x1e0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + .literal.esp_partition_blockdev_release + 0x00000000 0x4 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .literal.bootloader_util_regions_overlap + 0x00000000 0x18 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .literal.esp_partition_blockdev_erase + 0x00000000 0x18 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .literal.esp_partition_blockdev_write + 0x00000000 0x18 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .literal.esp_partition_blockdev_read + 0x00000000 0x18 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .literal.esp_partition_unload_all + 0x00000000 0x24 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .literal.esp_partition_verify_err + 0x00000000 0x10 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .literal.esp_partition_verify + 0x00000000 0x4 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .literal.esp_partition_register_external + 0x00000000 0x38 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .literal.esp_partition_deregister_external + 0x00000000 0x14 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .literal.esp_partition_copy + 0x00000000 0x58 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .literal.esp_partition_ptr_get_blockdev + 0x00000000 0x8 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .literal.esp_partition_get_blockdev + 0x00000000 0xc esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text 0x00000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .data 0x00000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_blockdev_release + 0x00000000 0x10 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.bootloader_util_regions_overlap.str1.4 + 0x00000000 0x5e esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.bootloader_util_regions_overlap + 0x00000000 0x51 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_blockdev_erase + 0x00000000 0x69 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_blockdev_write + 0x00000000 0x69 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_blockdev_read + 0x00000000 0x6d esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.esp_partition_unload_all.str1.4 + 0x00000000 0x1f esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_unload_all + 0x00000000 0x4e esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_verify_err + 0x00000000 0x93 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_verify + 0x00000000 0x18 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_register_external + 0x00000000 0x123 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_deregister_external + 0x00000000 0x62 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.esp_partition_copy.str1.4 + 0x00000000 0x137 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_copy + 0x00000000 0x1bf esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_ptr_get_blockdev + 0x00000000 0x91 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_get_blockdev + 0x00000000 0x31 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.__func__$0 + 0x00000000 0x1c esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.__func__$1 + 0x00000000 0x1d esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.__func__$2 + 0x00000000 0x1d esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.__func__$3 + 0x00000000 0x20 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.__func__$6 + 0x00000000 0x19 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.s_bdl_ops + 0x00000000 0x18 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .xt.lit 0x00000000 0xc0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .xt.prop 0x00000000 0xcc0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .literal.esp_partition_get_sha256 + 0x00000000 0x4 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .literal.esp_partition_check_identity + 0x00000000 0x10 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .literal.esp_partition_get_main_flash_sector_size + 0x00000000 0x4 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .text 0x00000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .data 0x00000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .text.esp_partition_get_sha256 + 0x00000000 0x15 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .text.esp_partition_check_identity + 0x00000000 0x4b esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .text.esp_partition_get_main_flash_sector_size + 0x00000000 0x8 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .xt.lit 0x00000000 0x60 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .xt.prop 0x00000000 0x600 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .literal.gpio_ll_pulldown_en + 0x00000000 0x1c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_ll_set_drive_capability + 0x00000000 0x20 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_ll_get_drive_capability + 0x00000000 0x1c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_sleep_input_enable + 0x00000000 0x38 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_sleep_input_disable + 0x00000000 0x38 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_sleep_output_enable + 0x00000000 0x38 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_sleep_output_disable + 0x00000000 0x38 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_sleep_pulldown_en + 0x00000000 0x44 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_sleep_pullup_en + 0x00000000 0x44 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_sleep_pulldown_dis + 0x00000000 0x44 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_sleep_pullup_dis + 0x00000000 0x44 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_ll_get_io_config + 0x00000000 0x1c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.rtcio_ll_get_drive_capability + 0x00000000 0x1c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .iram1.0.literal + 0x00000000 0x4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .iram1.1.literal + 0x00000000 0xc esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_isr_register_on_core_static + 0x00000000 0x4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_pullup_dis + 0x00000000 0x38 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_pulldown_en + 0x00000000 0x38 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_set_intr_type + 0x00000000 0x38 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_intr_enable + 0x00000000 0x30 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_get_level + 0x00000000 0x4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_set_pull_mode + 0x00000000 0x54 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_config + 0x00000000 0x6c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_config_as_analog + 0x00000000 0x50 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_isr_handler_add + 0x00000000 0x44 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_isr_handler_remove + 0x00000000 0x3c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_uninstall_isr_service + 0x00000000 0x1c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_isr_register + 0x00000000 0x48 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_install_isr_service + 0x00000000 0x4c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_wakeup_enable + 0x00000000 0x40 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_wakeup_disable + 0x00000000 0x34 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_set_drive_capability + 0x00000000 0x44 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_get_drive_capability + 0x00000000 0x44 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_hold_en + 0x00000000 0x38 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_hold_dis + 0x00000000 0x38 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_deep_sleep_hold_en + 0x00000000 0x18 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_deep_sleep_hold_dis + 0x00000000 0x14 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_sleep_set_direction + 0x00000000 0x38 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_sleep_set_pull_mode + 0x00000000 0x54 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_sleep_sel_en + 0x00000000 0x44 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_sleep_sel_dis + 0x00000000 0x44 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_get_io_config + 0x00000000 0x60 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_dump_io_configuration + 0x00000000 0xb8 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_func_sel + 0x00000000 0x28 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text 0x00000000 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .data 0x00000000 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_ll_pulldown_en + 0x00000000 0x40 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_ll_set_drive_capability.str1.4 + 0x00000000 0xb8 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_ll_set_drive_capability + 0x00000000 0x4c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_ll_get_drive_capability.str1.4 + 0x00000000 0xba esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_ll_get_drive_capability + 0x00000000 0x3a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_sleep_input_enable.str1.4 + 0x00000000 0xb8 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_sleep_input_enable + 0x00000000 0xa3 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_sleep_input_disable.str1.4 + 0x00000000 0xbc esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_sleep_input_disable + 0x00000000 0xa3 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_sleep_output_enable + 0x00000000 0x9d esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_sleep_output_disable + 0x00000000 0xa3 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_sleep_pulldown_en + 0x00000000 0xb4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_sleep_pullup_en + 0x00000000 0xb4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_sleep_pulldown_dis + 0x00000000 0xb4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_sleep_pullup_dis + 0x00000000 0xb4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_ll_get_io_config.str1.4 + 0x00000000 0xa6 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_ll_get_io_config + 0x00000000 0xce esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.rtcio_ll_get_drive_capability.str1.4 + 0x00000000 0xf8 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.rtcio_ll_get_drive_capability + 0x00000000 0x54 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .iram1.0 0x00000000 0x129 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .iram1.1 0x00000000 0x70 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_isr_register_on_core_static + 0x00000000 0x18 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_pullup_dis + 0x00000000 0xb0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_pulldown_en.str1.4 + 0x00000000 0x36 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_pulldown_en + 0x00000000 0x9e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_set_intr_type.str1.4 + 0x00000000 0x1a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_set_intr_type + 0x00000000 0x130 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_intr_enable + 0x00000000 0x9c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_get_level + 0x00000000 0x3e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_set_pull_mode.str1.4 + 0x00000000 0x53 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_set_pull_mode + 0x00000000 0x121 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_config.str1.4 + 0x00000000 0x55 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_config + 0x00000000 0x18c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_config_as_analog + 0x00000000 0xdd esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_isr_handler_add.str1.4 + 0x00000000 0x49 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_isr_handler_add + 0x00000000 0xe5 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_isr_handler_remove + 0x00000000 0xcd esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_uninstall_isr_service + 0x00000000 0x4d esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_isr_register.str1.4 + 0x00000000 0x6e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_isr_register + 0x00000000 0xbe esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_install_isr_service.str1.4 + 0x00000000 0x23 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_install_isr_service + 0x00000000 0xb2 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_wakeup_enable.str1.4 + 0x00000000 0x52 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_wakeup_enable + 0x00000000 0xfd esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_wakeup_disable + 0x00000000 0xb4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_set_drive_capability.str1.4 + 0x00000000 0x1c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_set_drive_capability + 0x00000000 0xd2 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_get_drive_capability.str1.4 + 0x00000000 0x24 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_get_drive_capability + 0x00000000 0xd2 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_hold_en.str1.4 + 0x00000000 0x2f esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_hold_en + 0x00000000 0xb9 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_hold_dis + 0x00000000 0xbd esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_deep_sleep_hold_en + 0x00000000 0x3c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_deep_sleep_hold_dis + 0x00000000 0x2c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_sleep_set_direction + 0x00000000 0xe9 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_sleep_set_pull_mode + 0x00000000 0x121 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_sleep_sel_en + 0x00000000 0xb4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_sleep_sel_dis + 0x00000000 0xb4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_get_io_config.str1.4 + 0x00000000 0xf0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_get_io_config + 0x00000000 0x164 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_dump_io_configuration.str1.4 + 0x00000000 0x1ff esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_dump_io_configuration + 0x00000000 0x269 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_func_sel + 0x00000000 0x94 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0xe esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$1 + 0x00000000 0x1b esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__func__$2 + 0x00000000 0x1e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__func__$3 + 0x00000000 0x1d esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__func__$4 + 0x00000000 0x1b esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__func__$5 + 0x00000000 0x16 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$6 + 0x00000000 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__func__$7 + 0x00000000 0x16 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$8 + 0x00000000 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__func__$9 + 0x00000000 0x15 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$10 + 0x00000000 0x12 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__func__$11 + 0x00000000 0x19 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$12 + 0x00000000 0x16 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__func__$13 + 0x00000000 0x1b esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$14 + 0x00000000 0x18 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__func__$15 + 0x00000000 0x18 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$16 + 0x00000000 0x15 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__func__$17 + 0x00000000 0x1a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$18 + 0x00000000 0x17 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$19 + 0x00000000 0x19 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__func__$20 + 0x00000000 0x1d esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$21 + 0x00000000 0x1a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__func__$22 + 0x00000000 0x1c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$23 + 0x00000000 0x19 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__func__$24 + 0x00000000 0x1c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$25 + 0x00000000 0x19 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__func__$26 + 0x00000000 0x1b esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$27 + 0x00000000 0x18 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$28 + 0x00000000 0x19 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$33 + 0x00000000 0xe esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$34 + 0x00000000 0xd esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__func__$35 + 0x00000000 0x1d esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$36 + 0x00000000 0x1a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__func__$37 + 0x00000000 0x1d esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$38 + 0x00000000 0x1a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$39 + 0x00000000 0x14 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$40 + 0x00000000 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$41 + 0x00000000 0x12 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$42 + 0x00000000 0x18 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$43 + 0x00000000 0x15 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$44 + 0x00000000 0x19 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$46 + 0x00000000 0x16 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$49 + 0x00000000 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$57 + 0x00000000 0x11 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$58 + 0x00000000 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__func__$60 + 0x00000000 0x14 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$61 + 0x00000000 0x11 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$62 + 0x00000000 0x10 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .xt.lit 0x00000000 0x1e8 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .xt.prop 0x00000000 0x1cc8 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.rtcio_ll_set_drive_capability + 0x00000000 0x1c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtcio_ll_get_drive_capability + 0x00000000 0x1c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtcio_ll_force_hold_enable + 0x00000000 0x20 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtcio_ll_force_hold_disable + 0x00000000 0x20 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtcio_ll_wakeup_enable + 0x00000000 0x14 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_gpio_init + 0x00000000 0x2c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_gpio_set_level + 0x00000000 0x2c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_gpio_get_level + 0x00000000 0x20 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_gpio_set_drive_capability + 0x00000000 0x48 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_gpio_get_drive_capability + 0x00000000 0x3c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_gpio_set_direction + 0x00000000 0x2c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_gpio_set_direction_in_sleep + 0x00000000 0x2c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_gpio_pullup_dis + 0x00000000 0x44 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_gpio_pulldown_en + 0x00000000 0x44 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_gpio_iomux_func_sel + 0x00000000 0x2c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_gpio_hold_en + 0x00000000 0x2c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_gpio_hold_dis + 0x00000000 0x2c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_gpio_force_hold_en_all + 0x00000000 0x14 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_gpio_force_hold_dis_all + 0x00000000 0x10 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_gpio_isolate + 0x00000000 0x30 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_gpio_wakeup_enable + 0x00000000 0x2c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_gpio_wakeup_disable + 0x00000000 0x2c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text 0x00000000 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .data 0x00000000 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtcio_ll_set_drive_capability + 0x00000000 0x6f esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.rtcio_ll_get_drive_capability.str1.4 + 0x00000000 0xba esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtcio_ll_get_drive_capability + 0x00000000 0x54 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.rtcio_ll_force_hold_enable.str1.4 + 0x00000000 0xac esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtcio_ll_force_hold_enable + 0x00000000 0x5e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.rtcio_ll_force_hold_disable.str1.4 + 0x00000000 0xac esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtcio_ll_force_hold_disable + 0x00000000 0x63 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.rtcio_ll_wakeup_enable.str1.4 + 0x00000000 0x77 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtcio_ll_wakeup_enable + 0x00000000 0x54 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_init + 0x00000000 0x5d esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_set_level + 0x00000000 0x80 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_get_level + 0x00000000 0x52 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.rtc_gpio_set_drive_capability.str1.4 + 0x00000000 0x5a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_set_drive_capability + 0x00000000 0xe2 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.rtc_gpio_get_drive_capability.str1.4 + 0x00000000 0x2e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_get_drive_capability + 0x00000000 0xca esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_set_direction + 0x00000000 0x5e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_set_direction_in_sleep + 0x00000000 0x5e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_pullup_dis + 0x00000000 0x9e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_pulldown_en + 0x00000000 0x9d esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_iomux_func_sel + 0x00000000 0x5e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_hold_en + 0x00000000 0x5c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_hold_dis + 0x00000000 0x5c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_force_hold_en_all + 0x00000000 0x30 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_force_hold_dis_all + 0x00000000 0x30 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_isolate + 0x00000000 0x69 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_wakeup_enable + 0x00000000 0x69 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_wakeup_disable + 0x00000000 0x7e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0x18 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__func__$1 + 0x00000000 0x17 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__$2 + 0x00000000 0x17 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__$3 + 0x00000000 0x11 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__func__$4 + 0x00000000 0x1c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__$5 + 0x00000000 0x12 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__func__$6 + 0x00000000 0x1b esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__$7 + 0x00000000 0x11 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__$8 + 0x00000000 0x18 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__func__$11 + 0x00000000 0x19 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__$12 + 0x00000000 0x15 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__func__$13 + 0x00000000 0x18 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__$14 + 0x00000000 0x14 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__$17 + 0x00000000 0x20 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__$18 + 0x00000000 0x17 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__func__$19 + 0x00000000 0x1e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__$20 + 0x00000000 0x1e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__func__$21 + 0x00000000 0x1e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__$22 + 0x00000000 0x1e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__$23 + 0x00000000 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__$24 + 0x00000000 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__$28 + 0x00000000 0xe esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .xt.lit 0x00000000 0xe8 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .xt.prop 0x00000000 0xa20 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.uart_hal_set_sw_flow_ctrl + 0x00000000 0x8 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + .literal.uart_hal_set_at_cmd_char + 0x00000000 0x8 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + .literal.uart_hal_set_mode + 0x00000000 0x8 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + .literal.uart_hal_inverse_signal + 0x00000000 0x20 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + .literal.uart_hal_set_loop_back + 0x00000000 0x4 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + .literal.uart_hal_get_max_rx_timeout_thrd + 0x00000000 0x4 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + .text.uart_hal_get_sclk + 0x00000000 0x1a esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + .text.uart_hal_get_baudrate + 0x00000000 0x32 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + .text.uart_hal_get_stop_bits + 0x00000000 0x2c esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + .text.uart_hal_get_data_bit_num + 0x00000000 0x11 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + .text.uart_hal_get_parity + 0x00000000 0x25 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + .text.uart_hal_get_hw_flow_ctrl + 0x00000000 0x28 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + .text.uart_hal_set_sw_flow_ctrl + 0x00000000 0xfd esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + .text.uart_hal_set_at_cmd_char + 0x00000000 0xb3 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + .text.uart_hal_set_dtr + 0x00000000 0x20 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + .text.uart_hal_set_wakeup_edge_thrd + 0x00000000 0x20 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + .text.uart_hal_get_wakeup_edge_thrd + 0x00000000 0x13 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + .text.uart_hal_set_mode + 0x00000000 0x1bd esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + .text.uart_hal_is_hw_rts_en + 0x00000000 0xf esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + .text.uart_hal_inverse_signal + 0x00000000 0xe3 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + .text.uart_hal_set_loop_back + 0x00000000 0x20 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + .text.uart_hal_get_max_rx_timeout_thrd + 0x00000000 0x27 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + .xt.prop 0x00000000 0x600 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal_iram.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal_iram.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal_iram.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal_iram.c.obj) + .xt.prop 0x00000000 0x2ac esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal_iram.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_periph.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_periph.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_periph.c.obj) + .xt.prop 0x00000000 0xc esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_periph.c.obj) + .literal.s_paddr_to_vaddr + 0x00000000 0x10 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .literal.esp_mmu_map_get_max_consecutive_free_block_size + 0x00000000 0x28 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .literal.esp_mmu_map_reserve_block_with_caps + 0x00000000 0x4c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .literal.esp_mmu_map_dump_mapped_blocks + 0x00000000 0x74 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .iram1.7.literal + 0x00000000 0x5c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .literal.esp_mmu_paddr_to_vaddr + 0x00000000 0x24 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .text 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .data 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .text.s_paddr_to_vaddr + 0x00000000 0x2a esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .text.esp_mmu_map_get_max_consecutive_free_block_size + 0x00000000 0xa6 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_map_reserve_block_with_caps.str1.4 + 0x00000000 0x21 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .text.esp_mmu_map_reserve_block_with_caps + 0x00000000 0xe4 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_map_dump_mapped_blocks.str1.4 + 0x00000000 0x152 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .text.esp_mmu_map_dump_mapped_blocks + 0x00000000 0x12a esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .iram1.7 0x00000000 0x16a esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_paddr_to_vaddr.str1.4 + 0x00000000 0x28 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .text.esp_mmu_paddr_to_vaddr + 0x00000000 0x7c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0x17 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.__FUNCTION__$5 + 0x00000000 0x24 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.__FUNCTION__$6 + 0x00000000 0x30 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.26 0x00000000 0x19 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.24 0x00000000 0x18 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.22 0x00000000 0x1a esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.20 0x00000000 0x1b esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.18 0x00000000 0x1d esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.16 0x00000000 0x1f esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.14 0x00000000 0x18 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.12 0x00000000 0x18 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.10 0x00000000 0x1d esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.8 0x00000000 0x1f esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .xt.lit 0x00000000 0xa0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .xt.prop 0x00000000 0xf00 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .text 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .data 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .xt.prop 0x00000000 0xc esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .literal.esp_cache_sync_ops_enter_critical_section + 0x00000000 0x10 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .literal.esp_cache_sync_ops_exit_critical_section + 0x00000000 0x10 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .literal.esp_cache_msync + 0x00000000 0x8c esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .literal.esp_cache_get_line_size_by_addr + 0x00000000 0x1c esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .text 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .data 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .text.esp_cache_sync_ops_enter_critical_section + 0x00000000 0x2a esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .text.esp_cache_sync_ops_exit_critical_section + 0x00000000 0x23 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .text.esp_cache_msync + 0x00000000 0x1f1 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .text.esp_cache_get_line_size_by_addr + 0x00000000 0x60 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .rodata.__func__$1 + 0x00000000 0x10 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .rodata.__FUNCTION__$2 + 0x00000000 0x10 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .data.s_spinlock + 0x00000000 0x8 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .xt.prop 0x00000000 0x36c esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .text 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + .data 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + .xt.prop 0x00000000 0x60 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + .literal.cache_register_writeback + 0x00000000 0x4 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .text 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .data 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .text.cache_register_writeback + 0x00000000 0xc esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .xt.prop 0x00000000 0xa8 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .text 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .data 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .xt.prop 0x00000000 0x6c esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .literal.wdt_hal_deinit + 0x00000000 0x8 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .text.wdt_hal_deinit + 0x00000000 0xca esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .xt.prop 0x00000000 0x42c esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .literal.bootloader_common_check_long_hold_gpio_level + 0x00000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_check_long_hold_gpio + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_label_search + 0x00000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_erase_part_type_data + 0x00000000 0x64 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_get_sha256_of_partition + 0x00000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_vddsdio_configure + 0x00000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_check_long_hold_gpio_level + 0x00000000 0x102 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_check_long_hold_gpio + 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .rodata.bootloader_common_label_search.str1.4 + 0x00000000 0x3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_label_search + 0x00000000 0xae esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .rodata.bootloader_common_erase_part_type_data.str1.4 + 0x00000000 0xea esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_erase_part_type_data + 0x00000000 0x13c esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_get_sha256_of_partition + 0x00000000 0xae esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_vddsdio_configure + 0x00000000 0x38 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_frame 0x00000000 0xa0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_info 0x00000000 0x1af6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_abbrev 0x00000000 0x409 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_loc 0x00000000 0x5a2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_aranges + 0x00000000 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_ranges 0x00000000 0x80 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_line 0x00000000 0xfe6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_str 0x00000000 0x14a3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .comment 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .xt.prop 0x00000000 0x330 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .xt.prop 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .literal.esp_flash_write_protect_crypt_cnt + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .literal.esp_get_flash_encryption_mode + 0x00000000 0x2c esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .literal.esp_flash_encryption_init_checks + 0x00000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .literal.esp_flash_encryption_set_release_mode + 0x00000000 0x78 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .literal.esp_flash_encryption_cfg_verify_release_mode + 0x00000000 0xe4 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_flash_write_protect_crypt_cnt + 0x00000000 0xe esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_get_flash_encryption_mode + 0x00000000 0x8a esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .rodata.esp_flash_encryption_init_checks.str1.4 + 0x00000000 0x7e esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_flash_encryption_init_checks + 0x00000000 0x46 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .rodata.esp_flash_encryption_set_release_mode.str1.4 + 0x00000000 0x77 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_flash_encryption_set_release_mode + 0x00000000 0xdc esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .rodata.esp_flash_encryption_cfg_verify_release_mode.str1.4 + 0x00000000 0x363 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_flash_encryption_cfg_verify_release_mode + 0x00000000 0x1f4 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .xt.prop 0x00000000 0x1d4 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .iram1.6.literal + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_mmap_get_free_pages + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_mmap + 0x00000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_munmap + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_flash_read + 0x00000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_flash_write + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_flash_erase_sector + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_flash_erase_range + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.0.literal + 0x00000000 0x4c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.3.literal + 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_enable_wp + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_spi_flash_reset + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.7.literal + 0x00000000 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_flash_get_spi_mode + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.6 0x00000000 0x61 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_mmap_get_free_pages + 0x00000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.bootloader_mmap.str1.4 + 0x00000000 0x65 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_mmap + 0x00000000 0x74 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_munmap + 0x00000000 0x1d esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_read + 0x00000000 0x36 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_write + 0x00000000 0x2c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_erase_sector + 0x00000000 0x15 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_erase_range + 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.0 0x00000000 0x13e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.3 0x00000000 0x3c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_enable_wp + 0x00000000 0x13 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_spi_flash_reset + 0x00000000 0x23 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.7 0x00000000 0xc2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.17 0x00000000 0x7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_get_spi_mode + 0x00000000 0x39 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.__func__$9 + 0x00000000 0x1b esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .dram1.14 0x00000000 0x1e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .dram1.12 0x00000000 0x1e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .dram1.5 0x00000000 0x11 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .bss.map 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .xt.lit 0x00000000 0x90 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .xt.prop 0x00000000 0x714 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.print_flash_info + 0x00000000 0x78 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .literal.update_flash_config + 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .literal.bootloader_flash_update_size + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .iram1.10.literal + 0x00000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .literal.bootloader_configure_spi_pins + 0x00000000 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .literal.bootloader_init_spi_flash + 0x00000000 0x3c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .rodata.print_flash_info.str1.4 + 0x00000000 0xf5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .text.print_flash_info + 0x00000000 0x157 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .text.update_flash_config + 0x00000000 0x72 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .text.bootloader_flash_update_size + 0x00000000 0xa esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .iram1.10 0x00000000 0x1d esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .text.bootloader_configure_spi_pins + 0x00000000 0x196 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .text.bootloader_init_spi_flash + 0x00000000 0x68 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .xt.lit 0x00000000 0x60 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .xt.prop 0x00000000 0x714 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .literal.index_to_partition + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.log_invalid_app_partition + 0x00000000 0x2c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.write_otadata + 0x00000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.set_actual_ota_seq + 0x00000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_sha_flash_contents + 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_common_read_otadata + 0x00000000 0x34 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_common_get_partition_description + 0x00000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_utility_load_partition_table + 0x00000000 0xa0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_utility_get_selected_boot_partition + 0x00000000 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_reset + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_atexit + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.set_cache_and_start_app + 0x00000000 0xe0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.unpack_load_app + 0x00000000 0x38 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.load_image + 0x00000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_utility_load_boot_image + 0x00000000 0x80 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_sha256_flash_contents + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.index_to_partition + 0x00000000 0x5a esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.check_anti_rollback + 0x00000000 0x7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.try_load_partition + 0x00000000 0x7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.log_invalid_app_partition.str1.4 + 0x00000000 0x99 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.log_invalid_app_partition + 0x00000000 0x6e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.write_otadata.str1.4 + 0x00000000 0x3a esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.write_otadata + 0x00000000 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.set_actual_ota_seq.str1.4 + 0x00000000 0x32 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.set_actual_ota_seq + 0x00000000 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_sha_flash_contents.str1.4 + 0x00000000 0x2d esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_sha_flash_contents + 0x00000000 0xd3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_common_read_otadata.str1.4 + 0x00000000 0x7e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_common_read_otadata + 0x00000000 0x91 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_common_get_partition_description + 0x00000000 0x85 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_load_partition_table.str1.4 + 0x00000000 0x1fc esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_utility_load_partition_table + 0x00000000 0x214 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_get_selected_boot_partition.str1.4 + 0x00000000 0xec esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_utility_get_selected_boot_partition + 0x00000000 0x112 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_reset + 0x00000000 0x9 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_atexit + 0x00000000 0x9 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.set_cache_and_start_app.str1.4 + 0x00000000 0x91 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.set_cache_and_start_app + 0x00000000 0x4d9 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.unpack_load_app.str1.4 + 0x00000000 0x61 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.unpack_load_app + 0x00000000 0xc1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.load_image.str1.4 + 0x00000000 0x33 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.load_image + 0x00000000 0x32 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_load_boot_image.str1.4 + 0x00000000 0xc3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_utility_load_boot_image + 0x00000000 0x15e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_sha256_hex_to_str + 0x00000000 0x75 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_debug_buffer + 0x00000000 0x5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_sha256_flash_contents + 0x00000000 0x15 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.__func__$0 + 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .bss.ota_has_initial_contents + 0x00000000 0x1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_frame 0x00000000 0x1f0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_info 0x00000000 0x2c66 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_abbrev 0x00000000 0x4f9 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_loc 0x00000000 0x15ca esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_aranges + 0x00000000 0xb8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_ranges 0x00000000 0xd8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_line 0x00000000 0x3170 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_str 0x00000000 0x1842 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .comment 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .xt.lit 0x00000000 0x80 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .xt.prop 0x00000000 0xcfc esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.esp_partition_table_verify + 0x00000000 0x60 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .rodata.esp_partition_table_verify.str1.4 + 0x00000000 0x131 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .text.esp_partition_table_verify + 0x00000000 0x189 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_frame 0x00000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_info 0x00000000 0x6e5 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_abbrev 0x00000000 0x21c esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_loc 0x00000000 0x162 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_aranges + 0x00000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_ranges 0x00000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_line 0x00000000 0x7ec esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_str 0x00000000 0x54c esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .comment 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .xt.prop 0x00000000 0x114 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .literal.is_bootloader + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.should_map + 0x00000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.verify_segment_header + 0x00000000 0x2c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.process_appended_hash_and_sig + 0x00000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.process_checksum + 0x00000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.verify_image_header + 0x00000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.process_image_header + 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.should_load + 0x00000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.process_segment_data + 0x00000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.process_segment + 0x00000000 0x60 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.process_segments + 0x00000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.verify_simple_hash + 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.image_load + 0x00000000 0x3c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_bootloader_offset_get + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_bootloader_offset_set + 0x00000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_verify + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_get_metadata + 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_verify_bootloader_data + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_verify_bootloader + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_get_flash_size + 0x00000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.is_bootloader + 0x00000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.should_map + 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.verify_segment_header.str1.4 + 0x00000000 0x81 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.verify_segment_header + 0x00000000 0x7d esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_appended_hash_and_sig.str1.4 + 0x00000000 0x42 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_appended_hash_and_sig + 0x00000000 0x61 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_checksum.str1.4 + 0x00000000 0x38 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_checksum + 0x00000000 0xc8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.verify_image_header.str1.4 + 0x00000000 0x88 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.verify_image_header + 0x00000000 0x82 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_image_header + 0x00000000 0x68 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.should_load + 0x00000000 0x4e esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_segment_data.str1.4 + 0x00000000 0x32 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_segment_data + 0x00000000 0xb9 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_segment.str1.4 + 0x00000000 0xe9 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_segment + 0x00000000 0x17b esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_segments.str1.4 + 0x00000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_segments + 0x00000000 0x97 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.verify_simple_hash.str1.4 + 0x00000000 0x52 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.verify_simple_hash + 0x00000000 0x6a esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.image_load.str1.4 + 0x00000000 0x3c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.image_load + 0x00000000 0x126 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_bootloader_offset_get + 0x00000000 0xa esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.esp_image_bootloader_offset_set.str1.4 + 0x00000000 0x44 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_bootloader_offset_set + 0x00000000 0x2b esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.bootloader_load_image + 0x00000000 0x7 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.bootloader_load_image_no_verify + 0x00000000 0x7 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_verify + 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_get_metadata + 0x00000000 0x78 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_verify_bootloader_data + 0x00000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_verify_bootloader + 0x00000000 0x1f esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_get_flash_size + 0x00000000 0x66 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .data.s_bootloader_partition_offset + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_frame 0x00000000 0x220 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_info 0x00000000 0x1fc2 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_abbrev 0x00000000 0x3ed esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_loc 0x00000000 0x12cb esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_aranges + 0x00000000 0xc8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_ranges 0x00000000 0x108 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_line 0x00000000 0x22ee esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_str 0x00000000 0x1633 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .comment 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .xt.lit 0x00000000 0xa0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .xt.prop 0x00000000 0x9f0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.bootloader_sha256_start + 0x00000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .literal.bootloader_sha256_data + 0x00000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .literal.bootloader_sha256_finish + 0x00000000 0x2c esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .literal.bootloader_sha512_start + 0x00000000 0x2c esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .literal.bootloader_sha512_data + 0x00000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .literal.bootloader_sha512_finish + 0x00000000 0x68 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text.bootloader_sha256_start + 0x00000000 0x52 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.bootloader_sha256_data.str1.4 + 0x00000000 0x62 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text.bootloader_sha256_data + 0x00000000 0x3a esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.bootloader_sha256_finish.str1.4 + 0x00000000 0x2d esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text.bootloader_sha256_finish + 0x00000000 0x66 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text.bootloader_sha512_start + 0x00000000 0x86 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text.bootloader_sha512_data + 0x00000000 0x3a esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.bootloader_sha512_finish.str1.4 + 0x00000000 0x29 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text.bootloader_sha512_finish + 0x00000000 0x1a6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.__func__$0 + 0x00000000 0x19 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.__func__$1 + 0x00000000 0x17 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.__func__$2 + 0x00000000 0x19 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.__func__$3 + 0x00000000 0x17 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_frame 0x00000000 0xa0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_info 0x00000000 0xb8b esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_abbrev 0x00000000 0x303 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_loc 0x00000000 0x1a5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_aranges + 0x00000000 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_ranges 0x00000000 0x38 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_line 0x00000000 0xb64 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_str 0x00000000 0x6b3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .comment 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .xt.prop 0x00000000 0x480 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .literal.bootloader_common_check_chip_revision_validity + 0x00000000 0x2c esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .literal.bootloader_common_ota_select_crc + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .literal.bootloader_common_ota_select_valid + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .literal.bootloader_common_check_chip_validity + 0x00000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .literal.bootloader_common_get_active_otadata + 0x00000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .rodata.bootloader_common_check_chip_revision_validity.str1.4 + 0x00000000 0xa3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_check_chip_revision_validity + 0x00000000 0xf6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_ota_select_crc + 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_ota_select_invalid + 0x00000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_ota_select_valid + 0x00000000 0x29 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .rodata.bootloader_common_check_chip_validity.str1.4 + 0x00000000 0x35 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_check_chip_validity + 0x00000000 0x78 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_select_otadata + 0x00000000 0x66 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_get_active_otadata + 0x00000000 0x31 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_frame 0x00000000 0xb8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_info 0x00000000 0xba5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_abbrev 0x00000000 0x26f esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_loc 0x00000000 0x5a8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_aranges + 0x00000000 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_ranges 0x00000000 0x78 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_line 0x00000000 0xa06 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_str 0x00000000 0xfb5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .comment 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .xt.prop 0x00000000 0x300 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .literal.bootloader_clock_get_rated_freq_mhz + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .text.bootloader_clock_get_rated_freq_mhz + 0x00000000 0xd esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .xt.prop 0x00000000 0x60 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .literal.bootloader_random_enable + 0x00000000 0x70 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .literal.bootloader_random_disable + 0x00000000 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .text.bootloader_random_enable + 0x00000000 0x1c4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .text.bootloader_random_disable + 0x00000000 0x11d esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .debug_frame 0x00000000 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .debug_info 0x00000000 0x1f6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .debug_abbrev 0x00000000 0xd5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .debug_aranges + 0x00000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .debug_ranges 0x00000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .debug_line 0x00000000 0xfc8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .debug_str 0x00000000 0x46a esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .comment 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .xt.prop 0x00000000 0x60 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .literal._esp_error_check_failed_without_abort + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .rodata._esp_error_check_failed_without_abort.str1.4 + 0x00000000 0x1e esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .text._esp_error_check_failed_without_abort + 0x00000000 0x2c esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .xt.prop 0x00000000 0x90 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .iram1.4.literal + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .iram1.5.literal + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .iram1.4 0x00000000 0xf esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .iram1.5 0x00000000 0xf esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .xt.prop 0x00000000 0x210 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .literal.delete_entry + 0x00000000 0x58 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_stop + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_restart + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_add_user + 0x00000000 0x28 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_reset_user + 0x00000000 0x48 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_delete + 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.unsubscribe_idle + 0x00000000 0x2c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_reconfigure + 0x00000000 0x44 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_deinit + 0x00000000 0x3c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_delete_user + 0x00000000 0x28 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_status + 0x00000000 0x2c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.delete_entry + 0x00000000 0x11a esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_stop + 0x00000000 0x35 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_restart + 0x00000000 0x35 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_add_user + 0x00000000 0x86 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.esp_task_wdt_reset_user.str1.4 + 0x00000000 0x2b esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_reset_user + 0x00000000 0xc2 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_delete + 0x00000000 0x4c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.unsubscribe_idle.str1.4 + 0x00000000 0x26 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.unsubscribe_idle + 0x00000000 0x5b esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.esp_task_wdt_reconfigure.str1.4 + 0x00000000 0x2e esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_reconfigure + 0x00000000 0xde esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.esp_task_wdt_deinit.str1.4 + 0x00000000 0x32 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_deinit + 0x00000000 0x9d esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_delete_user + 0x00000000 0x6a esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_status + 0x00000000 0x6a esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$1 + 0x00000000 0x19 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$2 + 0x00000000 0xd esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$3 + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$4 + 0x00000000 0x18 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$6 + 0x00000000 0x16 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$9 + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__func__$10 + 0x00000000 0x11 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$11 + 0x00000000 0x19 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .xt.lit 0x00000000 0xc8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .xt.prop 0x00000000 0xce4 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_impl_timer_reconfigure + 0x00000000 0x10 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .literal.esp_task_wdt_impl_timer_free + 0x00000000 0x38 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .literal.esp_task_wdt_impl_timer_stop + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .text.esp_task_wdt_impl_timer_reconfigure + 0x00000000 0x51 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .rodata.esp_task_wdt_impl_timer_free.str1.4 + 0x00000000 0x84 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .text.esp_task_wdt_impl_timer_free + 0x00000000 0x86 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .text.esp_task_wdt_impl_timer_stop + 0x00000000 0x29 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .rodata.__func__$0 + 0x00000000 0x1d esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .xt.prop 0x00000000 0x27c esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .xt.prop 0x00000000 0x30 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .literal.esp_err_to_name_r + 0x00000000 0x18 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .text 0x00000000 0x0 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .data 0x00000000 0x0 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .rodata.esp_err_to_name_r.str1.4 + 0x00000000 0xc esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .text.esp_err_to_name_r + 0x00000000 0x56 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .xt.prop 0x00000000 0xe4 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .literal.esp_rom_output_to_channels + 0x00000000 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .literal.esp_rom_install_channel_putc + 0x00000000 0x10 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .text 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .data 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .text.esp_rom_output_to_channels + 0x00000000 0x22 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .text.esp_rom_install_channel_putc + 0x00000000 0x2e esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .bss._putc2 0x00000000 0x4 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .data._putc1 0x00000000 0x4 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .xt.prop 0x00000000 0xf0 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .literal.spi_cache_mode_switch + 0x00000000 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_read_status + 0x00000000 0x14 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_wait_idle + 0x00000000 0xc esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_erase_chip_internal + 0x00000000 0x10 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_erase_block_internal + 0x00000000 0x14 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_erase_sector_internal + 0x00000000 0x14 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_read_data + 0x00000000 0x34 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_enable_write + 0x00000000 0x10 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_program_page_internal + 0x00000000 0x3c esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_read_statushigh + 0x00000000 0xc esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_write_status + 0x00000000 0x14 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_clear_bp + 0x00000000 0x3c esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_set_bp + 0x00000000 0x18 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_config_readmode + 0x00000000 0x2c esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_erase_chip + 0x00000000 0xc esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_erase_block + 0x00000000 0x1c esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_erase_sector + 0x00000000 0x1c esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_write + 0x00000000 0x24 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_write_encrypted + 0x00000000 0x10 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_read + 0x00000000 0x50 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_erase_area + 0x00000000 0x18 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_write_disable + 0x00000000 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .data 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.spi_cache_mode_switch + 0x00000000 0x286 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_read_status + 0x00000000 0x63 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_wait_idle + 0x00000000 0x32 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_erase_chip_internal + 0x00000000 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_erase_block_internal + 0x00000000 0x3c esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_erase_sector_internal + 0x00000000 0x48 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .rodata.esp_rom_spiflash_read_data.str1.4 + 0x00000000 0x170 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_read_data + 0x00000000 0x12c esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_enable_write + 0x00000000 0x3d esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .rodata.esp_rom_spiflash_program_page_internal.str1.4 + 0x00000000 0x13c esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_program_page_internal + 0x00000000 0x13a esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_read_statushigh + 0x00000000 0x21 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_write_status + 0x00000000 0x38 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_clear_bp + 0x00000000 0xe8 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_set_bp + 0x00000000 0x53 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_config_readmode + 0x00000000 0x9e esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_erase_chip + 0x00000000 0x2a esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_erase_block + 0x00000000 0x6a esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_erase_sector + 0x00000000 0x6a esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_write + 0x00000000 0xde esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_write_encrypted + 0x00000000 0x5e esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_read + 0x00000000 0x284 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_erase_area + 0x00000000 0xc2 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_write_disable + 0x00000000 0x1d esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .rodata.__func__$16 + 0x00000000 0x1b esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .rodata.__func__$14 + 0x00000000 0x27 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_frame 0x00000000 0x220 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_info 0x00000000 0xfdd esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_abbrev 0x00000000 0x32f esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_loc 0x00000000 0xc8f esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_aranges + 0x00000000 0xc8 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_ranges 0x00000000 0xb8 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_line 0x00000000 0x2ee6 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_str 0x00000000 0x9bf esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .xt.lit 0x00000000 0xb0 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .xt.prop 0x00000000 0xc48 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .xt.prop 0x00000000 0x30 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .text 0x00000000 0x0 esp-idf/soc/libsoc.a(interrupts.c.obj) + .data 0x00000000 0x0 esp-idf/soc/libsoc.a(interrupts.c.obj) + .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(interrupts.c.obj) + .xt.prop 0x00000000 0xc esp-idf/soc/libsoc.a(interrupts.c.obj) + .literal.gpio_hal_intr_enable_on_core + 0x00000000 0xc esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .literal.gpio_hal_isolate_in_sleep + 0x00000000 0x1c esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .text.gpio_hal_intr_enable_on_core + 0x00000000 0x93 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .rodata.gpio_hal_isolate_in_sleep.str1.4 + 0x00000000 0xf6 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .text.gpio_hal_isolate_in_sleep + 0x00000000 0x7b esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .rodata.__func__$4 + 0x00000000 0x1c esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .xt.prop 0x00000000 0x1b0 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .literal.rtcio_ll_input_disable + 0x00000000 0x1c esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_input_enable + 0x00000000 0x1c esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_enable_input_in_sleep + 0x00000000 0x1c esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_enable_output_in_sleep + 0x00000000 0x1c esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_enable_sleep_setting + 0x00000000 0x1c esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_disable_input_in_sleep + 0x00000000 0x1c esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_disable_output_in_sleep + 0x00000000 0x1c esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_disable_sleep_setting + 0x00000000 0x1c esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .literal.rtcio_hal_set_direction + 0x00000000 0x1c esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .literal.rtcio_hal_set_direction_in_sleep + 0x00000000 0x30 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .literal.rtcio_hal_isolate + 0x00000000 0x2c esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .rodata.rtcio_ll_input_disable.str1.4 + 0x00000000 0xf8 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .text.rtcio_ll_input_disable + 0x00000000 0x4e esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .rodata.rtcio_ll_input_enable.str1.4 + 0x00000000 0xb8 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .text.rtcio_ll_input_enable + 0x00000000 0x4b esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .text.rtcio_ll_enable_input_in_sleep + 0x00000000 0x4b esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .text.rtcio_ll_enable_output_in_sleep + 0x00000000 0x4b esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .text.rtcio_ll_enable_sleep_setting + 0x00000000 0x4b esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .text.rtcio_ll_disable_input_in_sleep + 0x00000000 0x4e esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .text.rtcio_ll_disable_output_in_sleep + 0x00000000 0x4e esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .text.rtcio_ll_disable_sleep_setting + 0x00000000 0x4e esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .text.rtcio_hal_set_direction + 0x00000000 0x142 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .text.rtcio_hal_set_direction_in_sleep + 0x00000000 0x86 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .text.rtcio_hal_isolate + 0x00000000 0xb6 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .rodata.__func__$0 + 0x00000000 0x1a esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .rodata.__func__$1 + 0x00000000 0x18 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .rodata.__func__$2 + 0x00000000 0x1f esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .rodata.__func__$3 + 0x00000000 0x21 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .rodata.__func__$4 + 0x00000000 0x20 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .rodata.__func__$5 + 0x00000000 0x1e esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .rodata.__func__$6 + 0x00000000 0x20 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .rodata.__func__$7 + 0x00000000 0x1f esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .rodata.__func__$8 + 0x00000000 0x16 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .rodata.__func__$9 + 0x00000000 0x17 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .debug_frame 0x00000000 0x118 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .debug_info 0x00000000 0x197e esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .debug_abbrev 0x00000000 0x304 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .debug_loc 0x00000000 0x317 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .debug_aranges + 0x00000000 0x70 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .debug_ranges 0x00000000 0x60 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .debug_line 0x00000000 0x10cc esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .debug_str 0x00000000 0xad8 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .xt.prop 0x00000000 0x438 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_periph.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_periph.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_periph.c.obj) + .xt.prop 0x00000000 0x18 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_periph.c.obj) + .literal.touch_ll_set_chan_active_threshold + 0x00000000 0x4 esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .literal.touch_ll_get_chan_active_threshold + 0x00000000 0x4 esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .literal.touch_hal_config_controller + 0x00000000 0x34 esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .literal.s_touch_hal_apply_sleep_config + 0x00000000 0x18 esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .literal.touch_hal_save_sleep_config + 0x00000000 0xc esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .literal.touch_hal_prepare_deep_sleep + 0x00000000 0x8 esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .text.touch_ll_set_chan_active_threshold + 0x00000000 0x85 esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .text.touch_ll_get_chan_active_threshold + 0x00000000 0x58 esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .rodata.touch_hal_config_controller.str1.4 + 0x00000000 0x3c esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .text.touch_hal_config_controller + 0x00000000 0x13f esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .text.s_touch_hal_apply_sleep_config + 0x00000000 0x56 esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .text.touch_hal_save_sleep_config + 0x00000000 0x2d esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .text.touch_hal_prepare_deep_sleep + 0x00000000 0x1f esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .data.s_touch_slp_obj + 0x00000000 0x28 esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .debug_frame 0x00000000 0xa0 esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .debug_info 0x00000000 0x44f4 esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .debug_abbrev 0x00000000 0x3e1 esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .debug_loc 0x00000000 0x29a esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .debug_aranges + 0x00000000 0x48 esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .debug_ranges 0x00000000 0x38 esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .debug_line 0x00000000 0x908 esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .debug_str 0x00000000 0x2b4a esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .xt.prop 0x00000000 0x1d4 esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .xt.prop 0x00000000 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .iram1.0.literal + 0x00000000 0x4c esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .literal.esp_fill_random + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .rodata.str1.4 + 0x00000000 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .iram1.0 0x00000000 0xff esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .rodata.esp_fill_random.str1.4 + 0x00000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .text.esp_fill_random + 0x00000000 0x3b esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .rodata.__func__$0 + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .bss.last_ccount$1 + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_frame 0x00000000 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_info 0x00000000 0x645 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_abbrev 0x00000000 0x32f esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_loc 0x00000000 0x144 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_aranges + 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_ranges 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_line 0x00000000 0x96a esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_str 0x00000000 0x540 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .xt.prop 0x00000000 0xcc esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .literal.spi_ll_enable_bus_clock + 0x00000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .literal.spi_ll_reset_register + 0x00000000 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .literal.spicommon_periph_claim + 0x00000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .literal.spicommon_periph_in_use + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .literal.spicommon_periph_free + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .rodata.spi_ll_enable_bus_clock.str1.4 + 0x00000000 0x41 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .text.spi_ll_enable_bus_clock + 0x00000000 0xdc esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .text.spi_ll_reset_register + 0x00000000 0xac esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .rodata.spicommon_periph_claim.str1.4 + 0x00000000 0x3e esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .text.spicommon_periph_claim + 0x00000000 0xc1 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .text.spicommon_periph_in_use + 0x00000000 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .text.spicommon_periph_free + 0x00000000 0x8c esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .rodata.__func__$0 + 0x00000000 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .rodata.__func__$1 + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .bss.spi_claiming_func + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .data.spi_periph_claimed + 0x00000000 0x3 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .debug_frame 0x00000000 0x88 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .debug_info 0x00000000 0x95a esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .debug_abbrev 0x00000000 0x279 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .debug_loc 0x00000000 0x378 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .debug_aranges + 0x00000000 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .debug_ranges 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .debug_line 0x00000000 0x82c esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .debug_str 0x00000000 0xcfc esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .xt.prop 0x00000000 0x270 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .literal.prvGetFreeSize + 0x00000000 0x10 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferCreate + 0x00000000 0x2c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferCreateNoSplit + 0x00000000 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferSendAcquire + 0x00000000 0x24 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferSendComplete + 0x00000000 0x38 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferReceive + 0x00000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferReceiveSplit + 0x00000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferReceiveSplitFromISR + 0x00000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferReceiveUpToFromISR + 0x00000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.vRingbufferReset + 0x00000000 0x24 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferGetMaxItemSize + 0x00000000 0x10 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferAddToQueueSetRead + 0x00000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferRemoveFromQueueSetRead + 0x00000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.vRingbufferGetInfo + 0x00000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferPrintInfo + 0x00000000 0x84 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text 0x00000000 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .data 0x00000000 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvGetFreeSize.str1.4 + 0x00000000 0x1f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvGetFreeSize + 0x00000000 0x3e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferCreate + 0x00000000 0x90 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferCreateNoSplit + 0x00000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferSendAcquire + 0x00000000 0x65 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferSendComplete + 0x00000000 0xb9 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceive + 0x00000000 0x5c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferReceiveSplit.str1.4 + 0x00000000 0x88 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceiveSplit + 0x00000000 0x60 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceiveSplitFromISR + 0x00000000 0x5e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceiveUpToFromISR + 0x00000000 0x61 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.vRingbufferReset + 0x00000000 0x84 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferGetMaxItemSize + 0x00000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferAddToQueueSetRead.str1.4 + 0x00000000 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferAddToQueueSetRead + 0x00000000 0x5e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferRemoveFromQueueSetRead + 0x00000000 0x5e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.vRingbufferGetInfo + 0x00000000 0x6e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferPrintInfo.str1.4 + 0x00000000 0x13b esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferPrintInfo + 0x00000000 0x13a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$2 + 0x00000000 0xf esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$3 + 0x00000000 0x15 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$4 + 0x00000000 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$5 + 0x00000000 0x22 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$6 + 0x00000000 0x1d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$8 + 0x00000000 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$10 + 0x00000000 0x11 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$13 + 0x00000000 0x1e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$15 + 0x00000000 0x1f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$16 + 0x00000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$20 + 0x00000000 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$23 + 0x00000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$24 + 0x00000000 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$37 + 0x00000000 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .xt.lit 0x00000000 0x150 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .xt.prop 0x00000000 0x1a1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .data 0x00000000 0x0 C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + .bss 0x00000000 0x0 C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + .xt.lit 0x00000000 0x8 C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + .xt.prop 0x00000000 0xf0 C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + .data 0x00000000 0x0 C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + .bss 0x00000000 0x0 C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + .xt.prop 0x00000000 0x24 C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + .text 0x00000000 0x0 C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .data 0x00000000 0x0 C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .bss 0x00000000 0x0 C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .xt.prop 0x00000000 0xc C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .data 0x00000000 0x0 C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + .bss 0x00000000 0x0 C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + .xt.prop 0x00000000 0x24 C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + .data 0x00000000 0x0 C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + .bss 0x00000000 0x0 C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + .xt.prop 0x00000000 0x24 C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_psa_crypto_init.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_psa_crypto_init.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_psa_crypto_init.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_psa_crypto_init.c.obj) + .xt.prop 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_psa_crypto_init.c.obj) + .literal.psa_key_policy_algorithm_intersection + 0x00000000 0x58 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_key_algorithm_permits + 0x00000000 0x5c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_sign_verify_check_alg + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_aead_check_nonce_length + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_aead_check_algorithm + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_tls12_prf_set_key + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_tls12_prf_input + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_finish_key_creation + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_mac_sign_setup + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_mac_compute + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_generate_random_internal + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_cipher_set_iv + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_pake_complete_inputs + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_wipe_tag_output_buffer + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_get_and_lock_key_slot_with_policy + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_driver_wrapper_hash_compute + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_get_and_lock_transparent_key_slot_with_policy$constprop$0 + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_get_kdf_alg$isra$0 + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_mac_finalize_alg_and_key_validation$isra$0 + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_mac_compute_internal + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_start_key_creation + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_start_hmac + 0x00000000 0x44 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_is_ready_for_cipher + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_allocate_buffer_to_slot + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_copy_key_material_into_slot + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_import_key_into_slot + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_fail_key_creation + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_destroy_key + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_get_key_attributes + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_export_key_internal + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_export_key + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_export_public_key_internal + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_export_public_key + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_import_key + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_copy_key + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_hash_abort + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_hash_finish_internal + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_hash_setup + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_setup_kdf + 0x00000000 0x5c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_hash_update + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_hash_finish + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_hash_verify + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_hash_compute + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_hash_compare + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_hash_clone + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_mac_abort + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_mac_setup + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_mac_sign_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_mac_verify_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_mac_update + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_mac_sign_finish + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_mac_verify_finish + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_mac_compute + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_mac_verify + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_sign_hash_builtin + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_sign_message_builtin + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_sign_internal + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_sign_message + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_sign_hash + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_verify_hash_builtin + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_verify_message_builtin + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_verify_message + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_verify_hash + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_asymmetric_encrypt + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_asymmetric_decrypt + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_interruptible_set_max_ops + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_interruptible_get_max_ops + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_sign_hash_start + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_sign_hash_complete + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_verify_hash_start + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_abort + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_setup + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_encrypt_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_decrypt_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_generate_iv + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_set_iv + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_update + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_finish + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_encrypt + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_decrypt + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_aead_encrypt + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_aead_decrypt + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_aead_abort + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_aead_setup + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_aead_encrypt_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_aead_decrypt_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_aead_set_nonce_internal + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_aead_set_nonce + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_aead_generate_nonce + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_aead_set_lengths + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_aead_update_ad + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_aead_update + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_aead_finish + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_aead_verify + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_abort + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_input_internal + 0x00000000 0xe4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_output_bytes + 0x00000000 0xd4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_output_key_custom + 0x00000000 0x70 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_output_key + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_setup + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_input_bytes + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_input_integer + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_input_key + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_key_agreement_raw_builtin + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_key_agreement_internal + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_key_agreement + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_raw_key_agreement + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_key_agreement + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_generate_random + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_generate_key_internal + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_generate_key_custom + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_generate_key + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_crypto_driver_pake_get_password + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_crypto_driver_pake_get_user + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_crypto_driver_pake_get_peer + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_pake_abort + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_pake_set_user + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_pake_set_peer + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_pake_set_role + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_pake_output + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_pake_input + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_pake_get_shared_key + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_pake_setup + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_crypto_local_input_alloc + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_crypto_local_input_free + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_crypto_local_output_alloc + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_crypto_local_output_free + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_extend_key_usage_flags + 0x00000000 0x1f esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_is_dh_key_size_valid + 0x00000000 0x31 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_mac_key_can_do + 0x00000000 0x42 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_key_policy_algorithm_intersection + 0x00000000 0x345 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_key_algorithm_permits + 0x00000000 0x33f esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_sign_verify_check_alg + 0x00000000 0xd8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_aead_check_nonce_length + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_aead_check_algorithm + 0x00000000 0x8c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.convert_jpake_computation_stage_to_driver_step + 0x00000000 0x3a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_jpake_prologue + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_tls12_prf_set_key + 0x00000000 0x36 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_tls12_prf_input + 0x00000000 0x90 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_finish_key_creation + 0x00000000 0x5c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_mac_sign_setup + 0x00000000 0x84 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_mac_compute + 0x00000000 0x9c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_generate_random_internal + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_cipher_set_iv + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_pake_complete_inputs + 0x00000000 0x92 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_aead_final_checks + 0x00000000 0x2e esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_wipe_tag_output_buffer + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_get_and_lock_key_slot_with_policy + 0x00000000 0xe6 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_driver_wrapper_hash_compute + 0x00000000 0x49 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_get_and_lock_transparent_key_slot_with_policy$constprop$0 + 0x00000000 0x2f esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_jpake_epilogue$isra$0 + 0x00000000 0x89 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_get_kdf_alg$isra$0 + 0x00000000 0x22 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_mac_finalize_alg_and_key_validation$isra$0 + 0x00000000 0x1bc esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_mac_compute_internal + 0x00000000 0x8b esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_start_key_creation + 0x00000000 0x98 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_start_hmac + 0x00000000 0x106 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_is_ready_for_cipher + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_can_do_hash + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.mbedtls_to_psa_error + 0x00000000 0x252 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_validate_unstructured_key_bit_size + 0x00000000 0x62 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_allocate_buffer_to_slot + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_copy_key_material_into_slot + 0x00000000 0x22 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_import_key_into_slot + 0x00000000 0xd2 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_fail_key_creation + 0x00000000 0x21 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_destroy_key + 0x00000000 0x93 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_get_key_attributes + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_export_key_internal + 0x00000000 0x5f esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_export_key + 0x00000000 0x4b esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_export_public_key_internal + 0x00000000 0xac esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_export_public_key + 0x00000000 0x4a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_export_public_key_iop_get_num_ops + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_export_public_key_iop_setup + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_export_public_key_iop_complete + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_export_public_key_iop_abort + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_import_key + 0x00000000 0xce esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_copy_key + 0x00000000 0x131 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_hash_abort + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_hash_finish_internal + 0x00000000 0x4c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_hash_setup + 0x00000000 0x7a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_setup_kdf + 0x00000000 0x192 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_hash_update + 0x00000000 0x52 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_hash_finish + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_hash_verify + 0x00000000 0x46 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_hash_compute + 0x00000000 0x2e esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_hash_compare + 0x00000000 0x50 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_hash_clone + 0x00000000 0x6e esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_mac_abort + 0x00000000 0x4c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_mac_setup + 0x00000000 0x119 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_mac_sign_setup + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_mac_verify_setup + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_mac_update + 0x00000000 0x5a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_mac_sign_finish + 0x00000000 0x8d esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_mac_verify_finish + 0x00000000 0x5b esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_mac_compute + 0x00000000 0x21 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_mac_verify + 0x00000000 0x4a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_sign_hash_builtin + 0x00000000 0x7e esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_sign_message_builtin + 0x00000000 0xa6 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_sign_internal + 0x00000000 0xab esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_sign_message + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_sign_hash + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_verify_hash_builtin + 0x00000000 0x80 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_verify_message_builtin + 0x00000000 0xa0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_verify_message + 0x00000000 0x52 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_verify_hash + 0x00000000 0x5b esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_asymmetric_encrypt + 0x00000000 0x87 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_asymmetric_decrypt + 0x00000000 0x7e esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_interruptible_set_max_ops + 0x00000000 0xa esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_interruptible_get_max_ops + 0x00000000 0xa esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_sign_hash_get_num_ops + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_verify_hash_get_num_ops + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_sign_hash_start + 0x00000000 0xba esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_sign_hash_complete + 0x00000000 0x50 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_sign_hash_abort + 0x00000000 0x29 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_verify_hash_start + 0x00000000 0xb2 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_verify_hash_complete + 0x00000000 0x3e esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_verify_hash_abort + 0x00000000 0x29 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_interruptible_set_max_ops + 0x00000000 0x5 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_sign_hash_get_num_ops + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_verify_hash_get_num_ops + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_sign_hash_start + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_sign_hash_complete + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_sign_hash_abort + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_verify_hash_start + 0x00000000 0x2f esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_verify_hash_complete + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_verify_hash_abort + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_cipher_abort + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_cipher_setup + 0x00000000 0x16f esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_cipher_encrypt_setup + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_cipher_decrypt_setup + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_cipher_generate_iv + 0x00000000 0x86 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_cipher_set_iv + 0x00000000 0x47 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_cipher_update + 0x00000000 0x52 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_cipher_finish + 0x00000000 0x65 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_cipher_encrypt + 0x00000000 0x19a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_cipher_decrypt + 0x00000000 0x124 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_aead_encrypt + 0x00000000 0xda esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_aead_decrypt + 0x00000000 0xda esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_aead_abort + 0x00000000 0x3f esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_aead_setup + 0x00000000 0x174 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_aead_encrypt_setup + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_aead_decrypt_setup + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_aead_set_nonce_internal + 0x00000000 0x6a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_aead_set_nonce + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_aead_generate_nonce + 0x00000000 0xba esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_aead_set_lengths + 0x00000000 0x78 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_aead_update_ad + 0x00000000 0x80 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_aead_update + 0x00000000 0x7e esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_aead_finish + 0x00000000 0x7e esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_aead_verify + 0x00000000 0x9c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_abort + 0x00000000 0xdc esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_input_internal + 0x00000000 0x720 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_get_capacity + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_set_capacity + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_output_bytes + 0x00000000 0x79d esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_custom_key_parameters_are_default + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_output_key_custom + 0x00000000 0x331 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_output_key + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_verify_bytes + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_verify_key + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_setup + 0x00000000 0x68 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_input_bytes + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_input_integer + 0x00000000 0x70 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_input_key + 0x00000000 0x61 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_key_agreement_raw_builtin + 0x00000000 0x4e esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_key_agreement_internal + 0x00000000 0x9f esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_key_agreement + 0x00000000 0x66 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_raw_key_agreement + 0x00000000 0xa3 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_key_agreement + 0x00000000 0x6e esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_key_agreement_iop_get_num_ops + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_key_agreement_iop_setup + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_key_agreement_iop_complete + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_key_agreement_iop_abort + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_generate_random + 0x00000000 0x11 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_generate_key_internal + 0x00000000 0x8e esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_generate_key_custom + 0x00000000 0x208 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_generate_key + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_generate_key_iop_get_num_ops + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_generate_key_iop_setup + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_generate_key_iop_complete + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_generate_key_iop_abort + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_crypto_driver_pake_get_password_len + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_crypto_driver_pake_get_password + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_crypto_driver_pake_get_user_len + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_crypto_driver_pake_get_user + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_crypto_driver_pake_get_peer_len + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_crypto_driver_pake_get_peer + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_crypto_driver_pake_get_cipher_suite + 0x00000000 0x1e esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_pake_set_context + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_pake_abort + 0x00000000 0x58 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_pake_set_user + 0x00000000 0x54 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_pake_set_peer + 0x00000000 0x54 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_pake_set_role + 0x00000000 0x3b esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_pake_output + 0x00000000 0xa8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_pake_input + 0x00000000 0xc2 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_pake_get_shared_key + 0x00000000 0x7a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_pake_setup + 0x00000000 0x114 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_crypto_local_input_alloc + 0x00000000 0x2e esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_crypto_local_input_free + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_crypto_local_output_alloc + 0x00000000 0x2a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .text.psa_crypto_local_output_free + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .rodata.default_custom_production + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .data.psa_interruptible_max_ops + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .xt.lit 0x00000000 0x420 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .xt.prop 0x00000000 0x5334 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .literal.psa_reset_key_attributes + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_client.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_client.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_client.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_client.c.obj) + .text.psa_reset_key_attributes + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_client.c.obj) + .debug_frame 0x00000000 0x28 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_client.c.obj) + .debug_info 0x00000000 0x21d esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_client.c.obj) + .debug_abbrev 0x00000000 0x120 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_client.c.obj) + .debug_aranges + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_client.c.obj) + .debug_ranges 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_client.c.obj) + .debug_line 0x00000000 0x2d2 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_client.c.obj) + .debug_str 0x00000000 0x3c6 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_client.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_client.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_client.c.obj) + .xt.prop 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_client.c.obj) + .literal.psa_driver_wrapper_export_public_key + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .text.psa_driver_wrapper_get_key_buffer_size + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .text.psa_driver_wrapper_export_public_key + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .text.psa_driver_wrapper_get_builtin_key + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .debug_frame 0x00000000 0x58 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .debug_info 0x00000000 0x4be esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .debug_abbrev 0x00000000 0x1b6 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .debug_loc 0x00000000 0x180 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .debug_aranges + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .debug_ranges 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .debug_line 0x00000000 0x3df esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .debug_str 0x00000000 0x562 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .xt.prop 0x00000000 0x84 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .literal.psa_is_valid_key_id + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_get_and_lock_key_slot_in_memory + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_reserve_free_key_slot + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_get_and_lock_key_slot + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_unregister_read + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_unregister_read_under_mutex + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_purge_key + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + .literal.mbedtls_psa_get_stats + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_register_read + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_is_valid_key_id + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_get_and_lock_key_slot_in_memory + 0x00000000 0x9a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_reserve_free_key_slot + 0x00000000 0x118 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_get_and_lock_key_slot + 0x00000000 0x118 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_unregister_read + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_unregister_read_under_mutex + 0x00000000 0x2a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_validate_key_persistence + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_purge_key + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + .text.mbedtls_psa_get_stats + 0x00000000 0x98 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + .xt.prop 0x00000000 0x624 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_is_key_present_in_storage + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_storage.c.obj) + .literal.psa_destroy_persistent_key + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_storage.c.obj) + .literal.psa_format_key_data_for_storage + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_storage.c.obj) + .literal.psa_parse_key_data_from_storage + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_storage.c.obj) + .literal.psa_save_persistent_key + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_storage.c.obj) + .literal.psa_free_persistent_key_data + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_storage.c.obj) + .literal.psa_load_persistent_key + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_storage.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_storage.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_storage.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_storage.c.obj) + .text.psa_is_key_present_in_storage + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_storage.c.obj) + .text.psa_destroy_persistent_key + 0x00000000 0x44 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_storage.c.obj) + .rodata 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_storage.c.obj) + .text.psa_format_key_data_for_storage + 0x00000000 0xbe esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_storage.c.obj) + .text.psa_parse_key_data_from_storage + 0x00000000 0x138 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_storage.c.obj) + .text.psa_save_persistent_key + 0x00000000 0xa4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_storage.c.obj) + .text.psa_free_persistent_key_data + 0x00000000 0xf esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_storage.c.obj) + .text.psa_load_persistent_key + 0x00000000 0x9e esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_storage.c.obj) + .debug_frame 0x00000000 0xb8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_storage.c.obj) + .debug_info 0x00000000 0x11ea esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_storage.c.obj) + .debug_abbrev 0x00000000 0x3c3 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_storage.c.obj) + .debug_loc 0x00000000 0x8f9 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_storage.c.obj) + .debug_aranges + 0x00000000 0x50 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_storage.c.obj) + .debug_ranges 0x00000000 0xd0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_storage.c.obj) + .debug_line 0x00000000 0xf10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_storage.c.obj) + .debug_str 0x00000000 0x76b esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_storage.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_storage.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_storage.c.obj) + .xt.prop 0x00000000 0x288 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_storage.c.obj) + .literal.uid_to_nvs_key + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) + .literal.psa_its_get_info + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) + .literal.psa_its_get + 0x00000000 0x64 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) + .literal.psa_its_set + 0x00000000 0x90 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) + .literal.psa_its_remove + 0x00000000 0x78 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) + .text.uid_to_nvs_key + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) + .text.esp_err_to_psa_status + 0x00000000 0x42 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) + .rodata.psa_its_get_info.str1.1 + 0x00000000 0x9a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) + .text.psa_its_get_info + 0x00000000 0x19c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) + .text.psa_its_get + 0x00000000 0x19c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) + .rodata.psa_its_set.str1.1 + 0x00000000 0x74 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) + .text.psa_its_set + 0x00000000 0x206 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) + .rodata.psa_its_remove.str1.1 + 0x00000000 0x51 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) + .text.psa_its_remove + 0x00000000 0x188 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) + .rodata.base32_alphabet$0 + 0x00000000 0x21 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) + .debug_frame 0x00000000 0xa0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) + .debug_info 0x00000000 0x1081 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) + .debug_abbrev 0x00000000 0x348 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) + .debug_loc 0x00000000 0x6b7 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) + .debug_aranges + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) + .debug_ranges 0x00000000 0x50 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) + .debug_line 0x00000000 0x1527 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) + .debug_str 0x00000000 0x617 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) + .xt.prop 0x00000000 0x3b4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) + .literal.mbedtls_hardware_poll + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_hardware.c.obj) + .literal.mbedtls_psa_external_get_random + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_hardware.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_hardware.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_hardware.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_hardware.c.obj) + .text.mbedtls_hardware_poll + 0x00000000 0x13 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_hardware.c.obj) + .text.mbedtls_psa_external_get_random + 0x00000000 0x31 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_hardware.c.obj) + .debug_frame 0x00000000 0x40 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_hardware.c.obj) + .debug_info 0x00000000 0x220 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_hardware.c.obj) + .debug_abbrev 0x00000000 0x12d esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_hardware.c.obj) + .debug_loc 0x00000000 0x79 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_hardware.c.obj) + .debug_aranges + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_hardware.c.obj) + .debug_ranges 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_hardware.c.obj) + .debug_line 0x00000000 0x34c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_hardware.c.obj) + .debug_str 0x00000000 0x369 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_hardware.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_hardware.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_hardware.c.obj) + .xt.prop 0x00000000 0x78 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_hardware.c.obj) + .literal.esp_aes_xts_init + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_xts.c.obj) + .literal.esp_aes_xts_free + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_xts.c.obj) + .literal.esp_aes_xts_setkey_enc + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_xts.c.obj) + .literal.esp_aes_xts_setkey_dec + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_xts.c.obj) + .literal.esp_aes_crypt_xts + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_xts.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_xts.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_xts.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_xts.c.obj) + .text.esp_gf128mul_x_ble + 0x00000000 0x10f esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_xts.c.obj) + .text.esp_aes_xts_init + 0x00000000 0x17 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_xts.c.obj) + .text.esp_aes_xts_free + 0x00000000 0x17 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_xts.c.obj) + .text.esp_aes_xts_setkey_enc + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_xts.c.obj) + .text.esp_aes_xts_setkey_dec + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_xts.c.obj) + .text.esp_aes_crypt_xts + 0x00000000 0x158 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_xts.c.obj) + .debug_frame 0x00000000 0xa0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_xts.c.obj) + .debug_info 0x00000000 0x7c1 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_xts.c.obj) + .debug_abbrev 0x00000000 0x296 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_xts.c.obj) + .debug_loc 0x00000000 0x5fe esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_xts.c.obj) + .debug_aranges + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_xts.c.obj) + .debug_ranges 0x00000000 0x88 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_xts.c.obj) + .debug_line 0x00000000 0x996 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_xts.c.obj) + .debug_str 0x00000000 0x458 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_xts.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_xts.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_xts.c.obj) + .xt.prop 0x00000000 0x18c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_xts.c.obj) + .literal.esp_aes_init + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_common.c.obj) + .literal.esp_aes_free + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_common.c.obj) + .literal.esp_aes_setkey + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_common.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_common.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_common.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_common.c.obj) + .text.valid_key_length + 0x00000000 0x22 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_common.c.obj) + .text.esp_aes_init + 0x00000000 0xf esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_common.c.obj) + .text.esp_aes_free + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_common.c.obj) + .text.esp_aes_setkey + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_common.c.obj) + .debug_frame 0x00000000 0x70 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_common.c.obj) + .debug_info 0x00000000 0x279 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_common.c.obj) + .debug_abbrev 0x00000000 0x174 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_common.c.obj) + .debug_loc 0x00000000 0xbb esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_common.c.obj) + .debug_aranges + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_common.c.obj) + .debug_ranges 0x00000000 0x28 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_common.c.obj) + .debug_line 0x00000000 0x3e3 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_common.c.obj) + .debug_str 0x00000000 0x30f esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_common.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_common.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_common.c.obj) + .xt.prop 0x00000000 0xd8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_common.c.obj) + .literal.esp_aes_validate_input + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + .literal.esp_aes_block + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + .literal.esp_aes_acquire_hardware + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + .literal.esp_aes_release_hardware + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + .literal.esp_aes_crypt_ecb + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + .literal.esp_internal_aes_encrypt + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + .literal.esp_internal_aes_decrypt + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + .literal.esp_aes_crypt_cbc + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + .literal.esp_aes_crypt_cfb8 + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + .literal.esp_aes_crypt_cfb128 + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + .literal.esp_aes_crypt_ofb + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + .literal.esp_aes_crypt_ctr + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + .rodata.esp_aes_validate_input.str1.1 + 0x00000000 0x88 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + .text.esp_aes_validate_input + 0x00000000 0x76 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + .text.esp_aes_block + 0x00000000 0x78 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + .text.esp_aes_acquire_hardware + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + .text.esp_aes_release_hardware + 0x00000000 0x17 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + .text.esp_aes_crypt_ecb + 0x00000000 0x50 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + .text.esp_internal_aes_encrypt + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + .text.esp_internal_aes_decrypt + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + .text.esp_aes_crypt_cbc + 0x00000000 0x104 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + .text.esp_aes_crypt_cfb8 + 0x00000000 0x9d esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + .rodata.esp_aes_crypt_cfb128.str1.1 + 0x00000000 0x23 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + .text.esp_aes_crypt_cfb128 + 0x00000000 0x100 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + .text.esp_aes_crypt_ofb + 0x00000000 0xbe esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + .rodata.esp_aes_crypt_ctr.str1.1 + 0x00000000 0x65 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + .text.esp_aes_crypt_ctr + 0x00000000 0x10c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + .data.aes_spinlock + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + .debug_frame 0x00000000 0x130 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + .debug_info 0x00000000 0x12f6 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + .debug_abbrev 0x00000000 0x3f2 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + .debug_loc 0x00000000 0xc35 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + .debug_aranges + 0x00000000 0x78 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + .debug_ranges 0x00000000 0x80 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + .debug_line 0x00000000 0x172d esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + .debug_str 0x00000000 0xc9e esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + .xt.lit 0x00000000 0x60 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + .xt.prop 0x00000000 0x540 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + .literal.esp_sha_hash_compute + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) + .literal.esp_sha_hash_setup + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) + .literal.esp_sha_hash_update + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) + .literal.esp_sha_hash_finish + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) + .literal.esp_sha_hash_abort + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) + .literal.esp_sha_hash_clone + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) + .text.esp_sha_hash_compute + 0x00000000 0x145 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) + .text.esp_sha_hash_setup + 0x00000000 0xc6 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) + .text.esp_sha_hash_update + 0x00000000 0x5a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) + .text.esp_sha_hash_finish + 0x00000000 0x82 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) + .text.esp_sha_hash_abort + 0x00000000 0x5e esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) + .text.esp_sha_hash_clone + 0x00000000 0xa8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) + .debug_frame 0x00000000 0xa0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) + .debug_info 0x00000000 0xfaa esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) + .debug_abbrev 0x00000000 0x2cb esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) + .debug_loc 0x00000000 0x664 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) + .debug_aranges + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) + .debug_ranges 0x00000000 0x90 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) + .debug_line 0x00000000 0xe47 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) + .debug_str 0x00000000 0x808 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) + .xt.prop 0x00000000 0x390 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) + .literal.esp_sha256_software_process + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + .literal.esp_internal_sha256_parallel_engine_process$isra$0 + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + .literal.esp_sha256_update$part$0 + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + .literal.esp_sha256_finish$isra$0 + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + .literal.esp_sha256_driver_clone + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + .literal.esp_sha256_starts + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + .literal.esp_internal_sha256_process + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + .literal.esp_sha256_driver_update + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + .literal.esp_sha256_driver_compute + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + .literal.esp_sha256_driver_finish + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + .literal.esp_sha256_driver_abort + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + .text.esp_sha256_software_process + 0x00000000 0x852 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + .text.esp_internal_sha256_parallel_engine_process$isra$0 + 0x00000000 0x4e esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + .text.esp_sha256_update$part$0 + 0x00000000 0x96 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + .text.esp_sha256_finish$isra$0 + 0x00000000 0x167 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + .text.esp_sha256_driver_clone + 0x00000000 0x45 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + .text.esp_sha256_starts + 0x00000000 0x82 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + .text.esp_internal_sha256_process + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + .text.esp_sha256_driver_update + 0x00000000 0x2a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + .text.esp_sha256_driver_compute + 0x00000000 0x5e esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + .text.esp_sha256_driver_finish + 0x00000000 0x46 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + .text.esp_sha256_driver_abort + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + .rodata.sha256_padding + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + .rodata.K 0x00000000 0x100 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + .debug_frame 0x00000000 0x118 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + .debug_info 0x00000000 0xd28 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + .debug_abbrev 0x00000000 0x39c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + .debug_loc 0x00000000 0x1251 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + .debug_aranges + 0x00000000 0x70 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + .debug_ranges 0x00000000 0x60 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + .debug_line 0x00000000 0x1339 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + .debug_str 0x00000000 0x6ee esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + .xt.prop 0x00000000 0x3f0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + .literal.esp_sha512_software_process + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + .literal.esp_internal_sha512_parallel_engine_process$isra$0 + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + .literal.esp_sha512_update$part$0 + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + .literal.esp_sha512_finish$isra$0 + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + .literal.esp_sha512_starts + 0x00000000 0x88 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + .literal.esp_internal_sha512_process + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + .literal.esp_sha512_driver_compute + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + .literal.esp_sha512_driver_update + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + .literal.esp_sha512_driver_finish + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + .literal.esp_sha512_driver_abort + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + .literal.esp_sha512_driver_clone + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + .text.esp_sha512_software_process + 0x00000000 0xc4c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + .text.esp_internal_sha512_parallel_engine_process$isra$0 + 0x00000000 0x52 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + .text.esp_sha512_update$part$0 + 0x00000000 0xb0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + .text.esp_sha512_finish$isra$0 + 0x00000000 0x25f esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + .text.esp_sha512_starts + 0x00000000 0xe6 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + .text.esp_internal_sha512_process + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + .text.esp_sha512_driver_compute + 0x00000000 0x88 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + .text.esp_sha512_driver_update + 0x00000000 0x2a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + .text.esp_sha512_driver_finish + 0x00000000 0x46 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + .text.esp_sha512_driver_abort + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + .text.esp_sha512_driver_clone + 0x00000000 0x45 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + .rodata.sha512_padding + 0x00000000 0x80 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + .rodata.K 0x00000000 0x280 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + .debug_frame 0x00000000 0x118 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + .debug_info 0x00000000 0xe75 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + .debug_abbrev 0x00000000 0x3be esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + .debug_loc 0x00000000 0xbc4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + .debug_aranges + 0x00000000 0x70 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + .debug_ranges 0x00000000 0x60 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + .debug_line 0x00000000 0x1708 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + .debug_str 0x00000000 0x6e6 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + .xt.prop 0x00000000 0x630 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + .literal.esp_hmac_abort_transparent + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + .literal.esp_hmac_setup_transparent + 0x00000000 0x64 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + .literal.esp_hmac_update_transparent + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + .literal.esp_hmac_finish_transparent + 0x00000000 0x58 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + .literal.esp_hmac_compute_transparent + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + .literal.esp_hmac_verify_finish_transparent + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + .text.esp_hmac_abort_transparent + 0x00000000 0x56 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + .text.esp_hmac_setup_transparent + 0x00000000 0x20c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + .text.esp_hmac_update_transparent + 0x00000000 0x45 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + .text.esp_hmac_finish_transparent + 0x00000000 0x1a0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + .text.esp_hmac_compute_transparent + 0x00000000 0x6b esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + .text.esp_hmac_verify_finish_transparent + 0x00000000 0x5d esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + .debug_frame 0x00000000 0xa0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + .debug_info 0x00000000 0xe53 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + .debug_abbrev 0x00000000 0x35b esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + .debug_loc 0x00000000 0x5e7 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + .debug_aranges + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + .debug_ranges 0x00000000 0x38 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + .debug_line 0x00000000 0xed9 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + .debug_str 0x00000000 0x7fa esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + .xt.prop 0x00000000 0x4c8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + .literal.esp_internal_sha1_parallel_engine_process$isra$0 + 0x00000000 0x5c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + .literal.esp_sha1_update$part$0 + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + .literal.esp_sha1_driver_clone + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + .literal.esp_sha1_starts + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + .literal.esp_internal_sha1_process + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + .literal.esp_sha1_update + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + .literal.esp_sha1_finish + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + .literal.esp_sha1_driver_update + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + .literal.esp_sha1_driver_finish + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + .literal.esp_sha1_driver_compute + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + .literal.esp_sha1_driver_abort + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + .text.esp_internal_sha1_parallel_engine_process$isra$0 + 0x00000000 0x1196 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + .text.esp_sha1_update$part$0 + 0x00000000 0x94 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + .text.esp_sha1_driver_clone + 0x00000000 0x45 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + .text.esp_sha1_starts + 0x00000000 0x46 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + .text.esp_internal_sha1_process + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + .text.esp_sha1_update + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + .text.esp_sha1_finish + 0x00000000 0x10d esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + .text.esp_sha1_driver_update + 0x00000000 0x29 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + .text.esp_sha1_driver_finish + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + .text.esp_sha1_driver_compute + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + .text.esp_sha1_driver_abort + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + .rodata.sha1_padding + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + .debug_frame 0x00000000 0x118 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + .debug_info 0x00000000 0xc51 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + .debug_abbrev 0x00000000 0x357 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + .debug_loc 0x00000000 0x21df esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + .debug_aranges + 0x00000000 0x70 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + .debug_ranges 0x00000000 0x60 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + .debug_line 0x00000000 0x22e0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + .debug_str 0x00000000 0x5f9 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + .xt.prop 0x00000000 0x360 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + .literal.sha_get_engine_state + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .literal.sha_ll_enable_bus_clock + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .literal.esp_sha_lock_engine_common + 0x00000000 0x44 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .literal.esp_sha_lock_memory_block + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .literal.esp_sha_unlock_memory_block + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .literal.esp_sha_try_lock_engine + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .literal.esp_sha_lock_engine + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .literal.esp_sha_unlock_engine + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .literal.esp_sha_read_digest_state + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .literal.esp_sha_set_mode + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .literal.esp_sha_block + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .rodata.sha_get_engine_state.str1.1 + 0x00000000 0x4b esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .text.sha_get_engine_state + 0x00000000 0x6f esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .text.sha_ll_enable_bus_clock + 0x00000000 0x2e esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .rodata.esp_sha_lock_engine_common.str1.1 + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .text.esp_sha_lock_engine_common + 0x00000000 0xaa esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .text.esp_sha_lock_memory_block + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .text.esp_sha_unlock_memory_block + 0x00000000 0xe esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .text.esp_sha_try_lock_engine + 0x00000000 0x11 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .text.esp_sha_lock_engine + 0x00000000 0xf esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .text.esp_sha_unlock_engine + 0x00000000 0x58 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .rodata.esp_sha_read_digest_state.str1.1 + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .text.esp_sha_read_digest_state + 0x00000000 0x44 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .text.esp_sha_set_mode + 0x00000000 0xe esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .text.esp_sha_block + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .rodata.__func__$0 + 0x00000000 0xe esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .rodata.__func__$1 + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .rodata.__func__$2 + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .rodata.__func__$3 + 0x00000000 0x1b esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .data.engines_in_use_lock + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .bss.engines_in_use + 0x00000000 0x1 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .bss.engine_states + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .data.memory_block_lock + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .debug_frame 0x00000000 0x118 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .debug_info 0x00000000 0xe49 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .debug_abbrev 0x00000000 0x36f esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .debug_loc 0x00000000 0x317 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .debug_aranges + 0x00000000 0x70 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .debug_ranges 0x00000000 0x90 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .debug_line 0x00000000 0xb27 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .debug_str 0x00000000 0xd12 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .xt.prop 0x00000000 0x288 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .literal.esp_md5_hash_compute + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_md5.c.obj) + .literal.esp_md5_hash_setup + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_md5.c.obj) + .literal.esp_md5_hash_update + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_md5.c.obj) + .literal.esp_md5_hash_finish + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_md5.c.obj) + .literal.esp_md5_hash_abort + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_md5.c.obj) + .literal.esp_md5_hash_clone + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_md5.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_md5.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_md5.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_md5.c.obj) + .text.esp_md5_hash_compute + 0x00000000 0x6a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_md5.c.obj) + .text.esp_md5_hash_setup + 0x00000000 0x1e esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_md5.c.obj) + .text.esp_md5_hash_update + 0x00000000 0x1e esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_md5.c.obj) + .text.esp_md5_hash_finish + 0x00000000 0x3a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_md5.c.obj) + .text.esp_md5_hash_abort + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_md5.c.obj) + .text.esp_md5_hash_clone + 0x00000000 0x29 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_md5.c.obj) + .debug_frame 0x00000000 0xa0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_md5.c.obj) + .debug_info 0x00000000 0x4e2 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_md5.c.obj) + .debug_abbrev 0x00000000 0x18d esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_md5.c.obj) + .debug_loc 0x00000000 0x1ac esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_md5.c.obj) + .debug_aranges + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_md5.c.obj) + .debug_ranges 0x00000000 0x38 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_md5.c.obj) + .debug_line 0x00000000 0x627 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_md5.c.obj) + .debug_str 0x00000000 0x42b esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_md5.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_md5.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_md5.c.obj) + .xt.prop 0x00000000 0x1bc esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_md5.c.obj) + .literal.mbedtls_ct_uint_lt + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + .literal.esp_aes_cipher_setup + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + .literal.esp_aes_cipher_encrypt_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + .literal.esp_aes_cipher_decrypt_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + .literal.esp_aes_cipher_set_iv + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + .literal.esp_aes_cipher_update + 0x00000000 0x68 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + .literal.esp_aes_cipher_finish + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + .literal.esp_aes_cipher_abort + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + .literal.esp_aes_cipher_encrypt + 0x00000000 0x44 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + .literal.esp_aes_cipher_decrypt + 0x00000000 0x5c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + .text.mbedtls_ct_bool + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + .text.mbedtls_ct_uint_lt + 0x00000000 0x2d esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + .text.esp_aes_cipher_setup + 0x00000000 0xbe esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + .text.esp_aes_cipher_encrypt_setup + 0x00000000 0x19 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + .text.esp_aes_cipher_decrypt_setup + 0x00000000 0x19 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + .text.esp_aes_cipher_set_iv + 0x00000000 0x62 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + .rodata.esp_aes_cipher_update.str1.1 + 0x00000000 0x53 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + .text.esp_aes_cipher_update + 0x00000000 0x2ac esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + .text.esp_aes_cipher_finish + 0x00000000 0x1c4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + .text.esp_aes_cipher_abort + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + .rodata.esp_aes_cipher_encrypt.str1.1 + 0x00000000 0x96 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + .text.esp_aes_cipher_encrypt + 0x00000000 0xf7 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + .rodata.esp_aes_cipher_decrypt.str1.1 + 0x00000000 0x2d esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + .text.esp_aes_cipher_decrypt + 0x00000000 0x175 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + .debug_frame 0x00000000 0x118 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + .debug_info 0x00000000 0x1e22 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + .debug_abbrev 0x00000000 0x508 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + .debug_loc 0x00000000 0x14cd esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + .debug_aranges + 0x00000000 0x70 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + .debug_ranges 0x00000000 0x190 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + .debug_line 0x00000000 0x1eda esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + .debug_str 0x00000000 0xa9f esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + .xt.lit 0x00000000 0x50 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + .xt.prop 0x00000000 0x6fc esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + .literal.esp_crypto_aes_gcm_setup + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + .literal.esp_crypto_aes_gcm_encrypt_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + .literal.esp_crypto_aes_gcm_decrypt_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + .literal.esp_crypto_aes_gcm_set_nonce + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + .literal.esp_crypto_aes_gcm_update_ad + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + .literal.esp_crypto_aes_gcm_update + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + .literal.esp_crypto_aes_gcm_finish + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + .literal.esp_crypto_aes_gcm_abort + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + .literal.esp_crypto_aes_gcm_encrypt + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + .literal.esp_crypto_aes_gcm_decrypt + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + .text.esp_crypto_aes_gcm_setup + 0x00000000 0x6e esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + .text.esp_crypto_aes_gcm_encrypt_setup + 0x00000000 0x19 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + .text.esp_crypto_aes_gcm_decrypt_setup + 0x00000000 0x19 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + .text.esp_crypto_aes_gcm_set_nonce + 0x00000000 0x1b esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + .text.esp_crypto_aes_gcm_update_ad + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + .text.esp_crypto_aes_gcm_update + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + .text.esp_crypto_aes_gcm_finish + 0x00000000 0x47 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + .text.esp_crypto_aes_gcm_abort + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + .text.esp_crypto_aes_gcm_encrypt + 0x00000000 0x90 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + .text.esp_crypto_aes_gcm_decrypt + 0x00000000 0x7b esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + .debug_frame 0x00000000 0x100 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + .debug_info 0x00000000 0x1157 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + .debug_abbrev 0x00000000 0x390 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + .debug_loc 0x00000000 0x686 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + .debug_aranges + 0x00000000 0x68 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + .debug_ranges 0x00000000 0x70 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + .debug_line 0x00000000 0xb21 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + .debug_str 0x00000000 0x90d esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + .xt.lit 0x00000000 0x50 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + .xt.prop 0x00000000 0x240 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + .literal.cmac_multiply_by_u$part$0 + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) + .literal.esp_cmac_abort + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) + .literal.esp_cmac_setup + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) + .literal.esp_cmac_update + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) + .literal.esp_cmac_finish + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) + .literal.esp_cmac_compute + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) + .literal.esp_cmac_verify_finish + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) + .text.xor_no_simd + 0x00000000 0x21 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) + .text.cmac_multiply_by_u$part$0 + 0x00000000 0x63 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) + .text.esp_cmac_abort + 0x00000000 0x2b esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) + .text.esp_cmac_setup + 0x00000000 0xbc esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) + .text.esp_cmac_update + 0x00000000 0xdc esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) + .text.esp_cmac_finish + 0x00000000 0x157 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) + .text.esp_cmac_compute + 0x00000000 0x6b esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) + .text.esp_cmac_verify_finish + 0x00000000 0x52 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) + .debug_frame 0x00000000 0xd0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) + .debug_info 0x00000000 0x1545 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) + .debug_abbrev 0x00000000 0x4bd esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) + .debug_loc 0x00000000 0x9ec esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) + .debug_aranges + 0x00000000 0x58 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) + .debug_ranges 0x00000000 0x138 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) + .debug_line 0x00000000 0x107d esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) + .debug_str 0x00000000 0x8cc esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) + .xt.prop 0x00000000 0x2f4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) + .literal.gcm_mult + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + .literal.esp_gcm_ghash + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + .literal.esp_aes_gcm_setkey + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + .literal.esp_aes_gcm_init + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + .literal.esp_aes_gcm_free + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + .literal.esp_aes_gcm_starts + 0x00000000 0x4c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + .literal.esp_aes_gcm_update_ad + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + .literal.esp_aes_gcm_update + 0x00000000 0x50 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + .literal.esp_aes_gcm_finish + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + .literal.esp_aes_gcm_crypt_and_tag + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + .literal.esp_aes_gcm_auth_decrypt + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + .text.gcm_mult + 0x00000000 0x143 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + .text.esp_gcm_ghash + 0x00000000 0x88 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + .text.esp_aes_gcm_setkey + 0x00000000 0x2e esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + .text.esp_aes_gcm_init + 0x00000000 0x17 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + .text.esp_aes_gcm_free + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + .rodata.esp_aes_gcm_starts.str1.1 + 0x00000000 0x4d esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + .text.esp_aes_gcm_starts + 0x00000000 0x274 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + .rodata.esp_aes_gcm_update_ad.str1.1 + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + .text.esp_aes_gcm_update_ad + 0x00000000 0x96 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + .rodata.esp_aes_gcm_update.str1.1 + 0x00000000 0x8b esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + .text.esp_aes_gcm_update + 0x00000000 0x15e esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + .text.esp_aes_gcm_finish + 0x00000000 0x90 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + .text.esp_aes_gcm_crypt_and_tag + 0x00000000 0x6d esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + .text.esp_aes_gcm_auth_decrypt + 0x00000000 0x66 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + .rodata.last4 0x00000000 0x40 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + .debug_frame 0x00000000 0x118 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + .debug_info 0x00000000 0x18b2 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + .debug_abbrev 0x00000000 0x4ea esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + .debug_loc 0x00000000 0xc35 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + .debug_aranges + 0x00000000 0x70 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + .debug_ranges 0x00000000 0xa8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + .debug_line 0x00000000 0x18b6 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + .debug_str 0x00000000 0xd6e esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + .xt.prop 0x00000000 0x4c8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + .literal.mbedtls_mpi_lt_mpi_ct + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mbedtls_mpi_free + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mbedtls_mpi_grow + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mbedtls_mpi_safe_cond_assign + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mbedtls_mpi_safe_cond_swap + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mbedtls_mpi_resize_clear + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mbedtls_mpi_shrink + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mbedtls_mpi_copy + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mbedtls_mpi_swap + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mbedtls_mpi_lset + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mbedtls_mpi_set_bit + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mbedtls_mpi_bitlen + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mbedtls_mpi_size + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mbedtls_mpi_read_binary_le + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mbedtls_mpi_read_binary + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mbedtls_mpi_write_binary_le + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mbedtls_mpi_write_binary + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mbedtls_mpi_shift_l + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mbedtls_mpi_shift_r + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mbedtls_mpi_cmp_int + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mbedtls_mpi_add_abs + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mbedtls_mpi_sub_abs + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.add_sub_mpi + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mbedtls_mpi_add_mpi + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mbedtls_mpi_sub_mpi + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mbedtls_mpi_add_int + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mbedtls_mpi_read_string + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mbedtls_mpi_read_file + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mbedtls_mpi_sub_int + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mbedtls_mpi_div_mpi + 0x00000000 0x94 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mbedtls_mpi_div_int + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mbedtls_mpi_mod_mpi + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mbedtls_mpi_mod_int + 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mbedtls_mpi_write_string + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mbedtls_mpi_write_file + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mpi_check_small_factors + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mbedtls_mpi_exp_mod_soft + 0x00000000 0x54 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mbedtls_mpi_exp_mod_unsafe + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mbedtls_mpi_gcd_modinv_odd + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mbedtls_mpi_gcd + 0x00000000 0x44 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mbedtls_mpi_fill_random + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mpi_miller_rabin + 0x00000000 0x5c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mbedtls_mpi_random + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mbedtls_mpi_inv_mod_odd + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mbedtls_mpi_inv_mod_even_in_range + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mbedtls_mpi_inv_mod + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mbedtls_mpi_is_prime_ext + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mbedtls_mpi_gen_prime + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mbedtls_mpi_self_test + 0x00000000 0xf0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_ct_bool + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mpi_get_digit + 0x00000000 0x3f esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_lt_mpi_ct + 0x00000000 0x68 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_init + 0x00000000 0xd esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_free + 0x00000000 0x1f esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_grow + 0x00000000 0x58 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_safe_cond_assign + 0x00000000 0x72 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_safe_cond_swap + 0x00000000 0x80 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_resize_clear + 0x00000000 0x44 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_shrink + 0x00000000 0x7b esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_copy + 0x00000000 0x8b esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_swap + 0x00000000 0x2a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_lset + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_get_bit + 0x00000000 0x26 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_set_bit + 0x00000000 0x53 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_lsb + 0x00000000 0x39 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_bitlen + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_size + 0x00000000 0x13 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_read_binary_le + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_read_binary + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_write_binary_le + 0x00000000 0x16 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_write_binary + 0x00000000 0x16 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_shift_l + 0x00000000 0x49 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_shift_r + 0x00000000 0x16 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_cmp_abs + 0x00000000 0x76 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_cmp_mpi + 0x00000000 0x93 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_cmp_int + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_add_abs + 0x00000000 0xac esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_sub_abs + 0x00000000 0xbb esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.add_sub_mpi + 0x00000000 0x78 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_add_mpi + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_sub_mpi + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_add_int + 0x00000000 0x2a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_read_string + 0x00000000 0x126 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_read_file + 0x00000000 0xb2 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_sub_int + 0x00000000 0x2a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_div_mpi + 0x00000000 0x3e0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_div_int + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_mod_mpi + 0x00000000 0x70 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_mod_int + 0x00000000 0x68 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .rodata.mbedtls_mpi_write_string.str1.1 + 0x00000000 0x11 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_write_string + 0x00000000 0x174 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .rodata.mbedtls_mpi_write_file.str1.1 + 0x00000000 0x6 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_write_file + 0x00000000 0xa9 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mpi_check_small_factors + 0x00000000 0x50 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_exp_mod_soft + 0x00000000 0x1bd esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_exp_mod_unsafe + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_gcd_modinv_odd + 0x00000000 0x159 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_gcd + 0x00000000 0x135 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_fill_random + 0x00000000 0x3e esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mpi_miller_rabin + 0x00000000 0x1b0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_random + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_inv_mod_odd + 0x00000000 0x66 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_inv_mod_even_in_range + 0x00000000 0x98 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_inv_mod + 0x00000000 0xa0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_is_prime_ext + 0x00000000 0x5c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_gen_prime + 0x00000000 0x1d6 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .rodata.mbedtls_mpi_self_test.str1.1 + 0x00000000 0x44c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .text.mbedtls_mpi_self_test + 0x00000000 0x29a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .rodata.gcd_pairs + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .rodata.small_prime_gaps + 0x00000000 0xa7 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .debug_frame 0x00000000 0x550 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .debug_info 0x00000000 0x55fb esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .debug_abbrev 0x00000000 0x571 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .debug_loc 0x00000000 0x3f3a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .debug_aranges + 0x00000000 0x1d8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .debug_ranges 0x00000000 0x490 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .debug_line 0x00000000 0x62e6 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .debug_str 0x00000000 0xee0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .xt.lit 0x00000000 0x180 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .xt.prop 0x00000000 0x1b54 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .literal.mbedtls_ct_uint_lt + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_bigendian_to_host + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_uint_le_mpi + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_lt_ct + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_read_le + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_read_be + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_write_le + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_write_be + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_shift_r + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_add_if + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_sub + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_mla + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_mul + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_montmul + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_exp_mod_optionally_safe + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_get_mont_r2_unsafe + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_fill_random + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_random + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_exp_mod + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_exp_mod_unsafe + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_check_zero_ct + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_to_mont_rep + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_from_mont_rep + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_gcd_modinv_odd + 0x00000000 0x78 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .text.mbedtls_ct_bool + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .text.mbedtls_ct_uint_lt + 0x00000000 0x2d esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_clz + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_bitlen + 0x00000000 0x26 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_bigendian_to_host + 0x00000000 0x31 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_uint_le_mpi + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_lt_ct + 0x00000000 0x4b esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_cond_assign + 0x00000000 0x2d esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_cond_swap + 0x00000000 0x3d esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_read_le + 0x00000000 0x54 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_read_be + 0x00000000 0x4c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_write_le + 0x00000000 0x6d esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_write_be + 0x00000000 0x65 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_shift_r + 0x00000000 0x7c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_shift_l + 0x00000000 0x74 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_add + 0x00000000 0x37 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_add_if + 0x00000000 0x3d esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_sub + 0x00000000 0x5d esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_mla + 0x00000000 0x198 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_mul + 0x00000000 0x37 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_montmul_init + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_montmul + 0x00000000 0x92 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_exp_mod_optionally_safe + 0x00000000 0x1a4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_get_mont_r2_unsafe + 0x00000000 0x3d esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_fill_random + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_random + 0x00000000 0x80 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_exp_mod_working_limbs + 0x00000000 0x21 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_exp_mod + 0x00000000 0x23 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_exp_mod_unsafe + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_sub_int + 0x00000000 0x29 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_check_zero_ct + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_to_mont_rep + 0x00000000 0x1e esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_from_mont_rep + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_gcd_modinv_odd + 0x00000000 0x214 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .debug_frame 0x00000000 0x340 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .debug_info 0x00000000 0x372a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .debug_abbrev 0x00000000 0x52a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .debug_loc 0x00000000 0x2fd3 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .debug_aranges + 0x00000000 0x128 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .debug_ranges 0x00000000 0x538 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .debug_line 0x00000000 0x3159 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .debug_str 0x00000000 0xb6a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .xt.lit 0x00000000 0xc0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .xt.prop 0x00000000 0xba0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .literal.mbedtls_ct_memcpy_offset + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(constant_time.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(constant_time.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(constant_time.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(constant_time.c.obj) + .text.mbedtls_ct_memcmp + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(constant_time.c.obj) + .text.mbedtls_ct_memmove_left + 0x00000000 0x90 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(constant_time.c.obj) + .text.mbedtls_ct_memcpy_if + 0x00000000 0x31 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(constant_time.c.obj) + .text.mbedtls_ct_memcpy_offset + 0x00000000 0x37 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(constant_time.c.obj) + .text.mbedtls_ct_zeroize_if + 0x00000000 0x1d esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(constant_time.c.obj) + .debug_frame 0x00000000 0x88 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(constant_time.c.obj) + .debug_info 0x00000000 0xa81 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(constant_time.c.obj) + .debug_abbrev 0x00000000 0x297 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(constant_time.c.obj) + .debug_loc 0x00000000 0x8cf esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(constant_time.c.obj) + .debug_aranges + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(constant_time.c.obj) + .debug_ranges 0x00000000 0x130 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(constant_time.c.obj) + .debug_line 0x00000000 0x9a7 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(constant_time.c.obj) + .debug_str 0x00000000 0x4a6 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(constant_time.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(constant_time.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(constant_time.c.obj) + .xt.prop 0x00000000 0x150 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(constant_time.c.obj) + .literal.self_test_rng + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mpi_init_many + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mpi_free_many + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.ecp_safe_invert_jac + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.ecp_select_comb + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_mpi_sub_mod + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_mpi_mul_mod + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.ecp_normalize_jac + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.ecp_normalize_jac_many + 0x00000000 0x50 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_mpi_add_mod + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_mpi_mul_int_mod$part$0 + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_ecp_point_free$part$0 + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_mpi_shift_l_mod$constprop$0 + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.ecp_sw_rhs + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.ecp_double_jac + 0x00000000 0x80 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_ecp_curve_list + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_ecp_grp_id_list + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_ecp_curve_info_from_grp_id + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_ecp_curve_info_from_tls_id + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_ecp_curve_info_from_name + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_ecp_point_init + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_ecp_group_init + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_ecp_keypair_init + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_ecp_point_free + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_ecp_group_free + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_ecp_keypair_free + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_ecp_copy + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_ecp_group_copy + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_ecp_set_zero + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.ecp_add_mixed + 0x00000000 0x70 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.ecp_mul_comb_after_precomp$isra$0 + 0x00000000 0x74 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_ecp_is_zero + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_ecp_point_cmp + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_ecp_point_read_string + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_ecp_point_write_binary + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_ecp_point_read_binary + 0x00000000 0x58 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_ecp_tls_read_point + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_ecp_tls_write_point + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_ecp_tls_read_group_id + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_ecp_tls_read_group + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_ecp_tls_write_group + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_ecp_check_pubkey + 0x00000000 0x6c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_ecp_check_privkey + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.ecp_mul_restartable_internal$isra$0 + 0x00000000 0x100 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_ecp_mul_shortcuts$isra$0 + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_ecp_muladd_restartable + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_ecp_muladd + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_ecp_mul_restartable + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_ecp_mul + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.self_test_point$constprop$0 + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_ecp_gen_privkey + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_ecp_gen_keypair_base + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_ecp_gen_keypair + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_ecp_gen_key + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_ecp_set_public_key + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_ecp_read_key + 0x00000000 0x44 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_ecp_write_key_ext + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_ecp_write_public_key + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_ecp_check_pub_priv + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_ecp_keypair_calc_public + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_ecp_export + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_ecp_self_test + 0x00000000 0x7c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.self_test_rng + 0x00000000 0x2e esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mpi_init_many + 0x00000000 0x1d esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mpi_free_many + 0x00000000 0x1d esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.ecp_safe_invert_jac + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.ecp_select_comb + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_mpi_sub_mod + 0x00000000 0x46 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_mpi_mul_mod + 0x00000000 0xb8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.ecp_normalize_jac + 0x00000000 0x96 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.ecp_normalize_jac_many + 0x00000000 0x19c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_mpi_add_mod + 0x00000000 0x3e esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_mpi_mul_int_mod$part$0 + 0x00000000 0x2b esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_ecp_point_free$part$0 + 0x00000000 0x1f esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_mpi_shift_l_mod$constprop$0 + 0x00000000 0x22 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.ecp_sw_rhs + 0x00000000 0x91 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.ecp_double_jac + 0x00000000 0x22c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_ecp_curve_list + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_ecp_grp_id_list + 0x00000000 0x2e esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_ecp_curve_info_from_grp_id + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_ecp_curve_info_from_tls_id + 0x00000000 0x1e esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_ecp_curve_info_from_name + 0x00000000 0x2a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_ecp_get_type + 0x00000000 0x16 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_ecp_point_init + 0x00000000 0x1f esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_ecp_group_init + 0x00000000 0x4f esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_ecp_keypair_init + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_ecp_point_free + 0x00000000 0xf esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_ecp_group_free + 0x00000000 0x6e esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_ecp_keypair_free + 0x00000000 0x21 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_ecp_copy + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_ecp_group_copy + 0x00000000 0x11 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_ecp_set_zero + 0x00000000 0x2a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.ecp_add_mixed + 0x00000000 0x1e6 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.ecp_mul_comb_after_precomp$isra$0 + 0x00000000 0x2ca esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_ecp_is_zero + 0x00000000 0x16 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_ecp_point_cmp + 0x00000000 0x37 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_ecp_point_read_string + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_ecp_point_write_binary + 0x00000000 0xca esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_ecp_point_read_binary + 0x00000000 0x1a0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_ecp_tls_read_point + 0x00000000 0x31 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_ecp_tls_write_point + 0x00000000 0x31 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_ecp_tls_read_group_id + 0x00000000 0x4e esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_ecp_tls_read_group + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_ecp_tls_write_group + 0x00000000 0x36 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_ecp_check_pubkey + 0x00000000 0x182 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_ecp_check_privkey + 0x00000000 0x86 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.ecp_mul_restartable_internal$isra$0 + 0x00000000 0x5b2 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_ecp_mul_shortcuts$isra$0 + 0x00000000 0xda esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_ecp_muladd_restartable + 0x00000000 0x8d esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_ecp_muladd + 0x00000000 0x1d esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_ecp_mul_restartable + 0x00000000 0x1e esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_ecp_mul + 0x00000000 0x1d esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .rodata.self_test_point$constprop$0.str1.1 + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.self_test_point$constprop$0 + 0x00000000 0xeb esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_ecp_gen_privkey + 0x00000000 0xa6 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_ecp_gen_keypair_base + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_ecp_gen_keypair + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_ecp_gen_key + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_ecp_set_public_key + 0x00000000 0x2d esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_ecp_read_key + 0x00000000 0x136 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_ecp_write_key_ext + 0x00000000 0x5a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_ecp_write_public_key + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_ecp_check_pub_priv + 0x00000000 0xcb esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_ecp_keypair_calc_public + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_ecp_keypair_get_group_id + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_ecp_export + 0x00000000 0x45 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .rodata.mbedtls_ecp_self_test.str1.1 + 0x00000000 0x367 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .rodata 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .text.mbedtls_ecp_self_test + 0x00000000 0x174 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .data.state$0 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .bss.init_done$1 + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .rodata.ecp_x25519_bad_point_2 + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .rodata.ecp_x25519_bad_point_1 + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .rodata.x25519_bad_point_2 + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .rodata.x25519_bad_point_1 + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .bss.ecp_supported_grp_id + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .rodata.str1.1 + 0x00000000 0x64 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .rodata.ecp_supported_curves + 0x00000000 0x78 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .bss.mul_count + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .bss.dbl_count + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .bss.add_count + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .debug_frame 0x00000000 0x610 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .debug_info 0x00000000 0x6d55 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .debug_abbrev 0x00000000 0x52a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .debug_loc 0x00000000 0x30e6 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .debug_aranges + 0x00000000 0x218 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .debug_ranges 0x00000000 0x2c8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .debug_line 0x00000000 0x54b8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .debug_str 0x00000000 0x1280 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .xt.lit 0x00000000 0x1f0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .xt.prop 0x00000000 0x192c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .literal.mbedtls_ecp_fix_negative + 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .literal.ecp_mod_p448 + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .literal.ecp_mod_p255 + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .literal.ecp_mod_p521 + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .literal.ecp_mod_p256k1 + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .literal.ecp_mod_p384 + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .literal.ecp_mod_p256 + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .literal.mbedtls_ecp_group_load + 0x00000000 0x154 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .text.mbedtls_ecp_fix_negative + 0x00000000 0x46 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .text.ecp_mod_p448 + 0x00000000 0xf8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .text.ecp_mod_p255 + 0x00000000 0x50 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .text.ecp_mod_p521 + 0x00000000 0x78 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .text.ecp_mod_p256k1 + 0x00000000 0x109 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .text.ecp_mod_p384 + 0x00000000 0x5ad esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .text.ecp_mod_p256 + 0x00000000 0x478 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .text.mbedtls_ecp_group_load + 0x00000000 0x39e esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .rodata.Rp$0 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .rodata.curve448_part_of_n + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .rodata.curve25519_part_of_n + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_n + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_gy + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_gx + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_b + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_a + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_p + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_n + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_gy + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_gx + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_b + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_a + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_p + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_n + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_gy + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_gx + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_b + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_a + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_p + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .rodata.secp256k1_n + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .rodata.secp256k1_gy + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .rodata.secp256k1_gx + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .rodata.secp256k1_b + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .rodata.secp256k1_a + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .rodata.secp256k1_p + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .rodata.secp521r1_n + 0x00000000 0x44 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .rodata.secp521r1_gy + 0x00000000 0x44 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .rodata.secp521r1_gx + 0x00000000 0x44 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .rodata.secp521r1_b + 0x00000000 0x44 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .rodata.secp521r1_p + 0x00000000 0x44 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .rodata.secp384r1_n + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .rodata.secp384r1_gy + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .rodata.secp384r1_gx + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .rodata.secp384r1_b + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .rodata.secp384r1_p + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .rodata.secp256r1_n + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .rodata.secp256r1_gy + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .rodata.secp256r1_gx + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .rodata.secp256r1_b + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .rodata.secp256r1_p + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .rodata.mpi_one + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .debug_frame 0x00000000 0xd0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .debug_info 0x00000000 0x4d32 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .debug_abbrev 0x00000000 0x372 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .debug_loc 0x00000000 0x7861 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .debug_aranges + 0x00000000 0x58 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .debug_ranges 0x00000000 0x1718 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .debug_line 0x00000000 0x5d30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .debug_str 0x00000000 0x9b2 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .xt.prop 0x00000000 0xca8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .literal.mbedtls_platform_set_calloc_free + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform.c.obj) + .text.mbedtls_platform_set_calloc_free + 0x00000000 0x11 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform.c.obj) + .text.mbedtls_platform_setup + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform.c.obj) + .text.mbedtls_platform_teardown + 0x00000000 0x5 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform.c.obj) + .xt.prop 0x00000000 0xf0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform_util.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform_util.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform_util.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform_util.c.obj) + .xt.prop 0x00000000 0x78 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform_util.c.obj) + .literal.psa_aead_setup$isra$0 + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_encrypt_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_decrypt_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_set_nonce + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_set_lengths + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_update_ad + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_update + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_finish + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_abort + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_encrypt + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_decrypt + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + .text.psa_aead_setup$isra$0 + 0x00000000 0xb0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_encrypt_setup + 0x00000000 0x22 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_decrypt_setup + 0x00000000 0x22 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_set_nonce + 0x00000000 0x46 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_set_lengths + 0x00000000 0x2a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_update_ad + 0x00000000 0x37 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_update + 0x00000000 0x4e esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_finish + 0x00000000 0x56 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_abort + 0x00000000 0x37 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_encrypt + 0x00000000 0xbf esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_decrypt + 0x00000000 0xcc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + .debug_frame 0x00000000 0x118 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + .debug_info 0x00000000 0x16ab esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + .debug_abbrev 0x00000000 0x45d esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + .debug_loc 0x00000000 0x7a8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + .debug_aranges + 0x00000000 0x70 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + .debug_ranges 0x00000000 0x80 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + .debug_line 0x00000000 0xe47 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + .debug_str 0x00000000 0xc04 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + .xt.prop 0x00000000 0x408 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + .literal.mbedtls_cipher_values_from_psa + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_cipher_info_from_psa + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + .literal.psa_cipher_setup$isra$0 + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_encrypt_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_decrypt_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_set_iv + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_update + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_finish + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_abort + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_encrypt + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_decrypt + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + .text.mbedtls_cipher_values_from_psa + 0x00000000 0x102 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + .text.mbedtls_cipher_info_from_psa + 0x00000000 0x2e esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + .text.psa_cipher_setup$isra$0 + 0x00000000 0x128 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_encrypt_setup + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_decrypt_setup + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_set_iv + 0x00000000 0x22 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_update + 0x00000000 0x135 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_finish + 0x00000000 0xc0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_abort + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_encrypt + 0x00000000 0xac esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_decrypt + 0x00000000 0xa0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + .debug_frame 0x00000000 0x118 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + .debug_info 0x00000000 0x1a05 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + .debug_abbrev 0x00000000 0x49f esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + .debug_loc 0x00000000 0xeea esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + .debug_aranges + 0x00000000 0x70 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + .debug_ranges 0x00000000 0x110 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + .debug_line 0x00000000 0x16c0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + .debug_str 0x00000000 0xc76 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + .xt.prop 0x00000000 0x570 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_ecp_load_representation + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_ecp_export_key + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_ecp_import_key + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_ecp_export_public_key + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_ecp_generate_key + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_ecdsa_sign_hash + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_ecp_load_public_part + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_ecdsa_verify_hash + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_key_agreement_ecdh + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecp_load_representation + 0x00000000 0x1ca esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecp_export_key + 0x00000000 0x86 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecp_import_key + 0x00000000 0x7c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecp_export_public_key + 0x00000000 0x7a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecp_generate_key + 0x00000000 0x8c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecdsa_sign_hash + 0x00000000 0x140 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecp_load_public_part + 0x00000000 0x33 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecdsa_verify_hash + 0x00000000 0xbf esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_key_agreement_ecdh + 0x00000000 0x132 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + .debug_frame 0x00000000 0xe8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + .debug_info 0x00000000 0x1a44 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + .debug_abbrev 0x00000000 0x3d7 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + .debug_loc 0x00000000 0x8be esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + .debug_aranges + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + .debug_ranges 0x00000000 0x88 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + .debug_line 0x00000000 0x1255 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + .debug_str 0x00000000 0xc89 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + .xt.lit 0x00000000 0x48 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + .xt.prop 0x00000000 0x45c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_ffdh_set_prime_generator + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + .literal.mbedtls_psa_ffdh_export_public_key + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + .literal.mbedtls_psa_ffdh_generate_key + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + .literal.mbedtls_psa_ffdh_import_key + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + .literal.mbedtls_psa_ffdh_key_agreement + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + .text.mbedtls_psa_ffdh_set_prime_generator + 0x00000000 0x86 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + .text.mbedtls_psa_ffdh_export_public_key + 0x00000000 0xf2 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + .text.mbedtls_psa_ffdh_generate_key + 0x00000000 0x80 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + .text.mbedtls_psa_ffdh_import_key + 0x00000000 0x22 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + .text.mbedtls_psa_ffdh_key_agreement + 0x00000000 0x106 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + .rodata.dhm_G_8192$0 + 0x00000000 0x1 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + .rodata.dhm_P_8192$1 + 0x00000000 0x400 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + .rodata.dhm_G_6144$2 + 0x00000000 0x1 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + .rodata.dhm_P_6144$3 + 0x00000000 0x300 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + .rodata.dhm_G_4096$4 + 0x00000000 0x1 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + .rodata.dhm_P_4096$5 + 0x00000000 0x200 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + .rodata.dhm_G_3072$6 + 0x00000000 0x1 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + .rodata.dhm_P_3072$7 + 0x00000000 0x180 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + .rodata.dhm_G_2048$8 + 0x00000000 0x1 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + .rodata.dhm_P_2048$9 + 0x00000000 0x100 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + .debug_frame 0x00000000 0x88 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + .debug_info 0x00000000 0xe7d esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + .debug_abbrev 0x00000000 0x2a4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + .debug_loc 0x00000000 0x5da esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + .debug_aranges + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + .debug_ranges 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + .debug_line 0x00000000 0xb0d esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + .debug_str 0x00000000 0x6f1 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + .xt.prop 0x00000000 0x210 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + .literal.mbedtls_psa_hash_abort + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_hash.c.obj) + .literal.mbedtls_psa_hash_setup + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_hash.c.obj) + .literal.mbedtls_psa_hash_clone + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_hash.c.obj) + .literal.mbedtls_psa_hash_update + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_hash.c.obj) + .literal.mbedtls_psa_hash_finish + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_hash.c.obj) + .literal.mbedtls_psa_hash_compute + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_hash.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_hash.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_hash.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_hash.c.obj) + .text.mbedtls_psa_hash_abort + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_hash.c.obj) + .text.mbedtls_psa_hash_setup + 0x00000000 0x78 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_hash.c.obj) + .text.mbedtls_psa_hash_clone + 0x00000000 0x2a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_hash.c.obj) + .text.mbedtls_psa_hash_update + 0x00000000 0x2a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_hash.c.obj) + .text.mbedtls_psa_hash_finish + 0x00000000 0xcc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_hash.c.obj) + .text.mbedtls_psa_hash_compute + 0x00000000 0x4d esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_hash.c.obj) + .debug_frame 0x00000000 0xa0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_hash.c.obj) + .debug_info 0x00000000 0x725 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_hash.c.obj) + .debug_abbrev 0x00000000 0x256 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_hash.c.obj) + .debug_loc 0x00000000 0x2cb esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_hash.c.obj) + .debug_aranges + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_hash.c.obj) + .debug_ranges 0x00000000 0x38 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_hash.c.obj) + .debug_line 0x00000000 0x845 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_hash.c.obj) + .debug_str 0x00000000 0x51f esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_hash.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_hash.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_hash.c.obj) + .xt.prop 0x00000000 0x240 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_hash.c.obj) + .literal.psa_mac_finish_internal + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + .literal.mbedtls_psa_mac_abort + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + .literal.psa_mac_setup$isra$0 + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + .literal.mbedtls_psa_mac_sign_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + .literal.mbedtls_psa_mac_verify_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + .literal.mbedtls_psa_mac_update + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + .literal.mbedtls_psa_mac_sign_finish + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + .literal.mbedtls_psa_mac_verify_finish + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + .literal.mbedtls_psa_mac_compute + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + .text.psa_mac_finish_internal + 0x00000000 0x46 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + .text.mbedtls_psa_mac_abort + 0x00000000 0x36 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + .text.psa_mac_setup$isra$0 + 0x00000000 0x7f esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + .text.mbedtls_psa_mac_sign_setup + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + .text.mbedtls_psa_mac_verify_setup + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + .text.mbedtls_psa_mac_update + 0x00000000 0x2e esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + .text.mbedtls_psa_mac_sign_finish + 0x00000000 0x1e esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + .text.mbedtls_psa_mac_verify_finish + 0x00000000 0x42 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + .text.mbedtls_psa_mac_compute + 0x00000000 0x73 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + .debug_frame 0x00000000 0xe8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + .debug_info 0x00000000 0xfe9 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + .debug_abbrev 0x00000000 0x455 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + .debug_loc 0x00000000 0x587 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + .debug_aranges + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + .debug_ranges 0x00000000 0x88 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + .debug_line 0x00000000 0xb07 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + .debug_str 0x00000000 0x87a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + .xt.lit 0x00000000 0x48 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + .xt.prop 0x00000000 0x2ac esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + .literal.mbedtls_psa_pake_output + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) + .literal.mbedtls_psa_pake_input + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) + .literal.mbedtls_psa_pake_get_implicit_key + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) + .literal.mbedtls_psa_pake_abort + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) + .literal.mbedtls_psa_pake_setup + 0x00000000 0x70 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) + .text.mbedtls_ecjpake_to_psa_error + 0x00000000 0x3a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) + .text.mbedtls_psa_pake_output + 0x00000000 0xe6 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) + .rodata 0x00000000 0x3 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) + .text.mbedtls_psa_pake_input + 0x00000000 0xd8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) + .text.mbedtls_psa_pake_get_implicit_key + 0x00000000 0x36 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) + .text.mbedtls_psa_pake_abort + 0x00000000 0x4d esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) + .text.mbedtls_psa_pake_setup + 0x00000000 0x1de esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) + .rodata.jpake_client_id + 0x00000000 0x6 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) + .rodata.jpake_server_id + 0x00000000 0x6 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) + .debug_frame 0x00000000 0xa0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) + .debug_info 0x00000000 0x13ce esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) + .debug_abbrev 0x00000000 0x3e6 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) + .debug_loc 0x00000000 0x645 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) + .debug_aranges + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) + .debug_ranges 0x00000000 0xb0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) + .debug_line 0x00000000 0xf6e esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) + .debug_str 0x00000000 0xe26 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) + .xt.prop 0x00000000 0x2b8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) + .literal.psa_rsa_oaep_set_padding_mode + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + .literal.psa_rsa_decode_md_type + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_rsa_load_representation + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_rsa_export_key + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_rsa_import_key + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_rsa_export_public_key + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_rsa_generate_key + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_rsa_sign_hash + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_rsa_verify_hash + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_asymmetric_encrypt + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_asymmetric_decrypt + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + .text.psa_rsa_oaep_set_padding_mode + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + .text.psa_rsa_decode_md_type + 0x00000000 0x7c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_rsa_load_representation + 0x00000000 0xa3 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_rsa_export_key + 0x00000000 0x8a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_rsa_import_key + 0x00000000 0x58 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_rsa_export_public_key + 0x00000000 0x44 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_rsa_generate_key + 0x00000000 0x84 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_rsa_sign_hash + 0x00000000 0xe6 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_rsa_verify_hash + 0x00000000 0x102 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_asymmetric_encrypt + 0x00000000 0xcf esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_asymmetric_decrypt + 0x00000000 0xc2 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + .debug_frame 0x00000000 0x118 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + .debug_info 0x00000000 0x1b35 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + .debug_abbrev 0x00000000 0x44f esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + .debug_loc 0x00000000 0xa75 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + .debug_aranges + 0x00000000 0x70 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + .debug_ranges 0x00000000 0x80 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + .debug_line 0x00000000 0x14f0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + .debug_str 0x00000000 0xb0f esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + .xt.prop 0x00000000 0x3f0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + .literal.convert_raw_to_der_single_int + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) + .literal.convert_der_to_raw_single_int + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) + .literal.psa_pk_status_to_mbedtls + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) + .literal.mbedtls_psa_get_random + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) + .literal.mbedtls_ecdsa_raw_to_der + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) + .literal.mbedtls_ecdsa_der_to_raw + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) + .text.convert_raw_to_der_single_int + 0x00000000 0x80 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) + .text.convert_der_to_raw_single_int + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) + .text.psa_generic_status_to_mbedtls + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) + .text.psa_status_to_mbedtls + 0x00000000 0x26 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) + .text.psa_pk_status_to_mbedtls + 0x00000000 0x8d esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) + .text.mbedtls_ecc_group_to_psa + 0x00000000 0x68 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) + .text.mbedtls_ecc_group_from_psa + 0x00000000 0x82 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) + .text.mbedtls_psa_get_random + 0x00000000 0x17 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) + .text.mbedtls_ecdsa_raw_to_der + 0x00000000 0xc0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) + .text.mbedtls_ecdsa_der_to_raw + 0x00000000 0xbe esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) + .rodata.psa_to_pk_ecdsa_errors + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) + .rodata.psa_to_pk_rsa_errors + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) + .rodata.psa_to_md_errors + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) + .debug_frame 0x00000000 0x100 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) + .debug_info 0x00000000 0xaa6 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) + .debug_abbrev 0x00000000 0x2a1 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) + .debug_loc 0x00000000 0x6c3 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) + .debug_aranges + 0x00000000 0x68 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) + .debug_ranges 0x00000000 0x70 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) + .debug_line 0x00000000 0xe3f esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) + .debug_str 0x00000000 0x776 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) + .xt.prop 0x00000000 0x54c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) + .literal.mbedtls_ct_uint_lt + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.mbedtls_md_get_size_from_type + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.mgf_mask + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.hash_mprime + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.rsa_rsassa_pkcs1_v15_encode + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.myrand + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.asn1_get_nonzero_mpi + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.rsa_apply_crt + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.mbedtls_rsa_free$part$0 + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.rsa_check_context$isra$0 + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.mbedtls_rsa_import + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.mbedtls_rsa_import_raw + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.mbedtls_rsa_complete + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.mbedtls_rsa_export_raw + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.mbedtls_rsa_export + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.mbedtls_rsa_write_pubkey + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.mbedtls_rsa_export_crt + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.mbedtls_rsa_write_key + 0x00000000 0x54 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.mbedtls_rsa_init + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.mbedtls_rsa_set_padding + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.mbedtls_rsa_get_bitlen + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.mbedtls_rsa_check_pubkey + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.mbedtls_rsa_parse_pubkey + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.mbedtls_rsa_check_privkey + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.mbedtls_rsa_check_pub_priv + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.mbedtls_rsa_public + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.mbedtls_rsa_private + 0x00000000 0x130 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.rsa_rsassa_pss_sign_no_mode_check + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.mbedtls_rsa_rsaes_oaep_encrypt + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.mbedtls_rsa_rsaes_pkcs1_v15_encrypt + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.mbedtls_rsa_pkcs1_encrypt + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.mbedtls_rsa_rsaes_oaep_decrypt + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.mbedtls_rsa_rsaes_pkcs1_v15_decrypt + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.mbedtls_rsa_pkcs1_decrypt + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.mbedtls_rsa_rsassa_pss_sign_no_mode_check + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.mbedtls_rsa_rsassa_pss_sign_ext + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.mbedtls_rsa_rsassa_pss_sign + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.mbedtls_rsa_rsassa_pkcs1_v15_sign + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.mbedtls_rsa_pkcs1_sign + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.mbedtls_rsa_rsassa_pss_verify_ext + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.mbedtls_rsa_rsassa_pss_verify + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.mbedtls_rsa_rsassa_pkcs1_v15_verify + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.mbedtls_rsa_pkcs1_verify + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.mbedtls_rsa_free + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.mbedtls_rsa_parse_key + 0x00000000 0x5c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.mbedtls_rsa_gen_key + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.mbedtls_rsa_copy + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.mbedtls_rsa_self_test + 0x00000000 0xc4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.mbedtls_ct_bool + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.mbedtls_ct_uint_lt + 0x00000000 0x2d esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.mbedtls_md_get_size_from_type + 0x00000000 0x16 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.mgf_mask + 0x00000000 0xe1 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.hash_mprime + 0x00000000 0x8a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.rsa_rsassa_pkcs1_v15_encode + 0x00000000 0x10b esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.myrand 0x00000000 0x1a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.asn1_get_nonzero_mpi + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.rsa_apply_crt + 0x00000000 0x52 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.mbedtls_rsa_free$part$0 + 0x00000000 0x8a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.rsa_check_context$isra$0 + 0x00000000 0xce esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.mbedtls_rsa_import + 0x00000000 0x8b esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.mbedtls_rsa_import_raw + 0x00000000 0x84 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.mbedtls_rsa_complete + 0x00000000 0x1b2 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.mbedtls_rsa_export_raw + 0x00000000 0xe6 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.mbedtls_rsa_export + 0x00000000 0xd6 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.mbedtls_rsa_write_pubkey + 0x00000000 0x98 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.mbedtls_rsa_export_crt + 0x00000000 0x91 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.mbedtls_rsa_write_key + 0x00000000 0x1a2 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.mbedtls_rsa_init + 0x00000000 0x27 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.mbedtls_rsa_set_padding + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.mbedtls_rsa_get_padding_mode + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.mbedtls_rsa_get_md_alg + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.mbedtls_rsa_get_bitlen + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.mbedtls_rsa_get_len + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.mbedtls_rsa_check_pubkey + 0x00000000 0x58 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.mbedtls_rsa_parse_pubkey + 0x00000000 0xb5 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.mbedtls_rsa_check_privkey + 0x00000000 0x63 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.mbedtls_rsa_check_pub_priv + 0x00000000 0x43 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.mbedtls_rsa_public + 0x00000000 0x98 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.mbedtls_rsa_private + 0x00000000 0x4ae esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.rsa_rsassa_pss_sign_no_mode_check + 0x00000000 0x141 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.mbedtls_rsa_rsaes_oaep_encrypt + 0x00000000 0xe4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.mbedtls_rsa_rsaes_pkcs1_v15_encrypt + 0x00000000 0xa4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.mbedtls_rsa_pkcs1_encrypt + 0x00000000 0x3a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.mbedtls_rsa_rsaes_oaep_decrypt + 0x00000000 0x1c0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.mbedtls_rsa_rsaes_pkcs1_v15_decrypt + 0x00000000 0x192 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.mbedtls_rsa_pkcs1_decrypt + 0x00000000 0x42 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.mbedtls_rsa_rsassa_pss_sign_no_mode_check + 0x00000000 0x21 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.mbedtls_rsa_rsassa_pss_sign_ext + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.mbedtls_rsa_rsassa_pss_sign + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.mbedtls_rsa_rsassa_pkcs1_v15_sign + 0x00000000 0xcc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.mbedtls_rsa_pkcs1_sign + 0x00000000 0x42 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.mbedtls_rsa_rsassa_pss_verify_ext + 0x00000000 0x16e esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.mbedtls_rsa_rsassa_pss_verify + 0x00000000 0x2a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.mbedtls_rsa_rsassa_pkcs1_v15_verify + 0x00000000 0x8a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.mbedtls_rsa_pkcs1_verify + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.mbedtls_rsa_free + 0x00000000 0xf esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.mbedtls_rsa_parse_key + 0x00000000 0x1a0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.mbedtls_rsa_gen_key + 0x00000000 0x148 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.mbedtls_rsa_copy + 0x00000000 0x102 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .rodata.mbedtls_rsa_self_test.str1.1 + 0x00000000 0x3a0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .rodata 0x00000000 0x19 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .text.mbedtls_rsa_self_test + 0x00000000 0x24a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .debug_frame 0x00000000 0x4f0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .debug_info 0x00000000 0x751d esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .debug_abbrev 0x00000000 0x553 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .debug_loc 0x00000000 0x4ad3 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .debug_aranges + 0x00000000 0x1b8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .debug_ranges 0x00000000 0x550 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .debug_line 0x00000000 0x60a4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .debug_str 0x00000000 0x14c0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .xt.lit 0x00000000 0x180 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .xt.prop 0x00000000 0x189c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .literal.mbedtls_rsa_deduce_primes + 0x00000000 0x74 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) + .literal.mbedtls_rsa_deduce_private_exponent + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) + .literal.mbedtls_rsa_deduce_crt + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) + .literal.mbedtls_rsa_validate_params + 0x00000000 0x64 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) + .literal.mbedtls_rsa_validate_crt + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) + .rodata.mbedtls_rsa_deduce_primes.str1.1 + 0x00000000 0x37 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) + .text.mbedtls_rsa_deduce_primes + 0x00000000 0x214 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) + .text.mbedtls_rsa_deduce_private_exponent + 0x00000000 0xcc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) + .text.mbedtls_rsa_deduce_crt + 0x00000000 0x7e esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) + .text.mbedtls_rsa_validate_params + 0x00000000 0x217 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) + .text.mbedtls_rsa_validate_crt + 0x00000000 0x130 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) + .debug_frame 0x00000000 0x88 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) + .debug_info 0x00000000 0x1149 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) + .debug_abbrev 0x00000000 0x26c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) + .debug_loc 0x00000000 0x5cb esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) + .debug_aranges + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) + .debug_ranges 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) + .debug_line 0x00000000 0xfff esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) + .debug_str 0x00000000 0x583 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) + .xt.prop 0x00000000 0x42c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) + .literal.mbedtls_internal_sha512_process$isra$0 + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + .literal.mbedtls_sha512_init + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + .literal.mbedtls_sha512_free + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + .literal.mbedtls_sha512_clone + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + .literal.mbedtls_sha512_starts + 0x00000000 0x80 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + .literal.mbedtls_sha512_update + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + .literal.mbedtls_sha512_finish + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + .literal.mbedtls_sha512_common_self_test + 0x00000000 0xd8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + .literal.mbedtls_sha512 + 0x00000000 0x90 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + .literal.mbedtls_sha512_self_test + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + .literal.mbedtls_sha384_self_test + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + .text.mbedtls_internal_sha512_process$isra$0 + 0x00000000 0xb58 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + .text.mbedtls_sha512_init + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + .text.mbedtls_sha512_free + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + .text.mbedtls_sha512_clone + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + .text.mbedtls_sha512_starts + 0x00000000 0xcf esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + .text.mbedtls_sha512_update + 0x00000000 0xac esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + .text.mbedtls_sha512_finish + 0x00000000 0x294 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + .rodata.mbedtls_sha512_common_self_test.str1.1 + 0x00000000 0x3b esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + .text.mbedtls_sha512_common_self_test + 0x00000000 0x1f7 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + .text.mbedtls_sha512 + 0x00000000 0x110 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + .text.mbedtls_sha512_self_test + 0x00000000 0x11 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + .text.mbedtls_sha384_self_test + 0x00000000 0x11 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + .rodata.sha512_test_sum + 0x00000000 0xc0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + .rodata.sha384_test_sum + 0x00000000 0xc0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + .rodata.sha_test_buflen + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + .rodata.sha_test_buf + 0x00000000 0x153 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + .rodata.K 0x00000000 0x280 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + .debug_frame 0x00000000 0x118 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + .debug_info 0x00000000 0x1168 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + .debug_abbrev 0x00000000 0x41b esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + .debug_loc 0x00000000 0x989 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + .debug_aranges + 0x00000000 0x70 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + .debug_ranges 0x00000000 0xb8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + .debug_line 0x00000000 0x158f esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + .debug_str 0x00000000 0x5e4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + .xt.prop 0x00000000 0x69c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + .literal.threading_mutex_init_pthread + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + .literal.threading_mutex_destroy_pthread + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + .literal.mbedtls_condition_variable_init + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + .literal.mbedtls_condition_variable_free + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + .literal.mbedtls_condition_variable_signal + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + .literal.mbedtls_condition_variable_broadcast + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + .literal.mbedtls_condition_variable_wait + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + .literal.mbedtls_mutex_init + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + .literal.mbedtls_mutex_free + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + .text.threading_mutex_init_pthread + 0x00000000 0x16 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + .text.threading_mutex_destroy_pthread + 0x00000000 0xe esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + .text.mbedtls_condition_variable_init + 0x00000000 0x16 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + .text.mbedtls_condition_variable_free + 0x00000000 0xe esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + .text.mbedtls_condition_variable_signal + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + .text.mbedtls_condition_variable_broadcast + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + .text.mbedtls_condition_variable_wait + 0x00000000 0x16 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + .text.mbedtls_mutex_init + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + .text.mbedtls_mutex_free + 0x00000000 0x1b esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + .data.mbedtls_threading_key_slot_mutex + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + .data.mbedtls_threading_readdir_mutex + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + .data.mbedtls_mutex_free_ptr + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + .data.mbedtls_mutex_init_ptr + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + .xt.lit 0x00000000 0x68 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + .xt.prop 0x00000000 0x2f4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + .literal.asn1_get_sequence_of_cb + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .literal.mbedtls_asn1_get_tag + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .literal.asn1_get_tagged_int + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .literal.mbedtls_asn1_get_bool + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .literal.mbedtls_asn1_get_int + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .literal.mbedtls_asn1_get_enum + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .literal.mbedtls_asn1_get_mpi + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .literal.mbedtls_asn1_get_integer + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .literal.mbedtls_asn1_get_bitstring + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .literal.mbedtls_asn1_traverse_sequence_of + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .literal.mbedtls_asn1_get_bitstring_null + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .literal.mbedtls_asn1_sequence_free + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .literal.mbedtls_asn1_get_sequence_of + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .literal.mbedtls_asn1_get_alg + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .literal.mbedtls_asn1_get_alg_null + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .literal.mbedtls_asn1_free_named_data_list + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .literal.mbedtls_asn1_free_named_data_list_shallow + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .literal.mbedtls_asn1_find_named_data + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .text.asn1_get_sequence_of_cb + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .text.mbedtls_asn1_get_len + 0x00000000 0x63 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .text.mbedtls_asn1_get_tag + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .text.asn1_get_tagged_int + 0x00000000 0x81 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .text.mbedtls_asn1_get_bool + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .text.mbedtls_asn1_get_int + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .text.mbedtls_asn1_get_enum + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .text.mbedtls_asn1_get_mpi + 0x00000000 0x2f esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .text.mbedtls_asn1_get_integer + 0x00000000 0x68 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .text.mbedtls_asn1_get_bitstring + 0x00000000 0x4b esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .text.mbedtls_asn1_traverse_sequence_of + 0x00000000 0xa0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .text.mbedtls_asn1_get_bitstring_null + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .text.mbedtls_asn1_sequence_free + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .text.mbedtls_asn1_get_sequence_of + 0x00000000 0x36 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .text.mbedtls_asn1_get_alg + 0x00000000 0x8e esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .text.mbedtls_asn1_get_alg_null + 0x00000000 0x3e esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .text.mbedtls_asn1_free_named_data_list + 0x00000000 0x2b esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .text.mbedtls_asn1_free_named_data_list_shallow + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .text.mbedtls_asn1_find_named_data + 0x00000000 0x21 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .debug_frame 0x00000000 0x1d8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .debug_info 0x00000000 0xeb7 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .debug_abbrev 0x00000000 0x319 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .debug_loc 0x00000000 0x7bd esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .debug_aranges + 0x00000000 0xb0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .debug_ranges 0x00000000 0xb8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .debug_line 0x00000000 0x13e2 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .debug_str 0x00000000 0x634 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .xt.lit 0x00000000 0x90 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .xt.prop 0x00000000 0x798 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .literal.mbedtls_asn1_write_len_and_tag + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .literal.asn1_write_tagged_int + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_raw_buffer + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_mpi + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_null + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_oid + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_algorithm_identifier_ext + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_algorithm_identifier + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_bool + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_int + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_enum + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_tagged_string + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_utf8_string + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_printable_string + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_ia5_string + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_bitstring + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_named_bitstring + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_octet_string + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .literal.mbedtls_asn1_store_named_data + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_integer + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .text.mbedtls_asn1_write_len + 0x00000000 0x46 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .text.mbedtls_asn1_write_tag + 0x00000000 0x1b esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .text.mbedtls_asn1_write_len_and_tag + 0x00000000 0x35 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .text.asn1_write_tagged_int + 0x00000000 0x52 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .text.mbedtls_asn1_write_raw_buffer + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .text.mbedtls_asn1_write_mpi + 0x00000000 0x6a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .text.mbedtls_asn1_write_null + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .text.mbedtls_asn1_write_oid + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .text.mbedtls_asn1_write_algorithm_identifier_ext + 0x00000000 0x41 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .text.mbedtls_asn1_write_algorithm_identifier + 0x00000000 0x19 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .text.mbedtls_asn1_write_bool + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .text.mbedtls_asn1_write_int + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .text.mbedtls_asn1_write_enum + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .text.mbedtls_asn1_write_tagged_string + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .text.mbedtls_asn1_write_utf8_string + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .text.mbedtls_asn1_write_printable_string + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .text.mbedtls_asn1_write_ia5_string + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .text.mbedtls_asn1_write_bitstring + 0x00000000 0x64 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .text.mbedtls_asn1_write_named_bitstring + 0x00000000 0x47 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .text.mbedtls_asn1_write_octet_string + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .text.mbedtls_asn1_store_named_data + 0x00000000 0xb7 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .text.mbedtls_asn1_write_integer + 0x00000000 0x94 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .debug_frame 0x00000000 0x220 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .debug_info 0x00000000 0x119a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .debug_abbrev 0x00000000 0x281 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .debug_loc 0x00000000 0xd7b esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .debug_aranges + 0x00000000 0xc8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .debug_ranges 0x00000000 0xb8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .debug_line 0x00000000 0x152f esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .debug_str 0x00000000 0x705 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .xt.lit 0x00000000 0xa0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .xt.prop 0x00000000 0x69c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .literal.ccm_calculate_first_block_if_ready + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .literal.mbedtls_ccm_crypt + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .literal.mbedtls_ccm_init + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .literal.mbedtls_ccm_setkey + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .literal.mbedtls_ccm_free + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .literal.mbedtls_ccm_starts + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .literal.mbedtls_ccm_set_lengths + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .literal.mbedtls_ccm_update_ad + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .literal.mbedtls_ccm_update + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .literal.mbedtls_ccm_finish + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .literal.ccm_auth_crypt + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .literal.mbedtls_ccm_star_encrypt_and_tag + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .literal.mbedtls_ccm_encrypt_and_tag + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .literal.mbedtls_ccm_star_auth_decrypt + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .literal.mbedtls_ccm_auth_decrypt + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .literal.mbedtls_ccm_self_test + 0x00000000 0x78 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .text.ccm_calculate_first_block_if_ready + 0x00000000 0x91 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .text.mbedtls_ccm_crypt + 0x00000000 0x68 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .text.mbedtls_ccm_init + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .text.mbedtls_ccm_setkey + 0x00000000 0x4c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .text.mbedtls_ccm_free + 0x00000000 0x1b esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .text.mbedtls_ccm_starts + 0x00000000 0x74 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .text.mbedtls_ccm_set_lengths + 0x00000000 0x3b esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .text.mbedtls_ccm_update_ad + 0x00000000 0xd8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .text.mbedtls_ccm_update + 0x00000000 0x17a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .text.mbedtls_ccm_finish + 0x00000000 0x90 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .text.ccm_auth_crypt + 0x00000000 0x58 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .text.mbedtls_ccm_star_encrypt_and_tag + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .text.mbedtls_ccm_encrypt_and_tag + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .text.mbedtls_ccm_star_auth_decrypt + 0x00000000 0x52 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .text.mbedtls_ccm_auth_decrypt + 0x00000000 0x52 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .rodata.mbedtls_ccm_self_test.str1.1 + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .text.mbedtls_ccm_self_test + 0x00000000 0x172 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .rodata.res_test_data + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .rodata.tag_len_test_data + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .rodata.msg_len_test_data + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .rodata.add_len_test_data + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .rodata.iv_len_test_data + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .rodata.msg_test_data + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .rodata.ad_test_data + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .rodata.iv_test_data + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .rodata.key_test_data + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .debug_frame 0x00000000 0x190 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .debug_info 0x00000000 0x2061 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .debug_abbrev 0x00000000 0x51c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .debug_loc 0x00000000 0x1120 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .debug_aranges + 0x00000000 0x98 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .debug_ranges 0x00000000 0x108 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .debug_line 0x00000000 0x1a51 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .debug_str 0x00000000 0xa17 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .xt.lit 0x00000000 0x80 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .xt.prop 0x00000000 0x660 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .literal.mbedtls_ct_uint_lt + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .literal.mbedtls_get_pkcs_padding + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .literal.mbedtls_cipher_list + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .literal.mbedtls_cipher_info_from_type + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .literal.mbedtls_cipher_info_from_string + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .literal.mbedtls_cipher_info_from_values + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .literal.mbedtls_cipher_init + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .literal.mbedtls_cipher_free + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .literal.mbedtls_cipher_setup + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .literal.mbedtls_cipher_setkey + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .literal.mbedtls_cipher_set_iv + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .literal.mbedtls_cipher_update_ad + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .literal.mbedtls_cipher_update + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .literal.mbedtls_cipher_finish_padded + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .literal.mbedtls_cipher_finish + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .literal.mbedtls_cipher_set_padding_mode + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .literal.mbedtls_cipher_write_tag + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .literal.mbedtls_cipher_check_tag + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .literal.mbedtls_cipher_crypt + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .literal.mbedtls_cipher_auth_encrypt_ext + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .literal.mbedtls_cipher_auth_decrypt_ext + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .text.mbedtls_ct_bool + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .text.mbedtls_ct_uint_lt + 0x00000000 0x2d esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .text.add_pkcs_padding + 0x00000000 0x1d esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .text.get_no_padding + 0x00000000 0x21 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .text.mbedtls_get_pkcs_padding + 0x00000000 0x92 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .text.mbedtls_cipher_list + 0x00000000 0x2a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .text.mbedtls_cipher_info_from_type + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .text.mbedtls_cipher_info_from_string + 0x00000000 0x27 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .text.mbedtls_cipher_info_from_values + 0x00000000 0x36 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .text.mbedtls_cipher_init + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .text.mbedtls_cipher_free + 0x00000000 0x36 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .text.mbedtls_cipher_setup + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .text.mbedtls_cipher_setkey + 0x00000000 0x68 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .text.mbedtls_cipher_set_iv + 0x00000000 0xaa esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .text.mbedtls_cipher_reset + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .text.mbedtls_cipher_update_ad + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .text.mbedtls_cipher_update + 0x00000000 0x244 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .text.mbedtls_cipher_finish_padded + 0x00000000 0x136 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .text.mbedtls_cipher_finish + 0x00000000 0x26 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .text.mbedtls_cipher_set_padding_mode + 0x00000000 0x44 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .text.mbedtls_cipher_write_tag + 0x00000000 0x3e esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .text.mbedtls_cipher_check_tag + 0x00000000 0x67 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .text.mbedtls_cipher_crypt + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .text.mbedtls_cipher_auth_encrypt_ext + 0x00000000 0x86 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .text.mbedtls_cipher_auth_decrypt_ext + 0x00000000 0x74 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .bss.supported_init + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .debug_frame 0x00000000 0x268 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .debug_info 0x00000000 0x2a49 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .debug_abbrev 0x00000000 0x5ff esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .debug_loc 0x00000000 0x1afc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .debug_aranges + 0x00000000 0xe0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .debug_ranges 0x00000000 0x320 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .debug_line 0x00000000 0x26a5 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .debug_str 0x00000000 0x17a2 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .xt.lit 0x00000000 0xa8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .xt.prop 0x00000000 0x9a8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .literal.xts_aes_ctx_alloc + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .literal.xts_aes_setkey_dec_wrap + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .literal.xts_aes_setkey_enc_wrap + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .literal.aes_crypt_xts_wrap + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .literal.gcm_ctx_free + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .literal.gcm_ctx_alloc + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .literal.gcm_aes_setkey_wrap + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .literal.ccm_ctx_free + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .literal.ccm_ctx_alloc + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .literal.ccm_aes_setkey_wrap + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .literal.aes_ctx_free + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .literal.aes_ctx_alloc + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .literal.aes_setkey_dec_wrap + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .literal.aes_setkey_enc_wrap + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .literal.aes_crypt_ctr_wrap + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .literal.aes_crypt_ofb_wrap + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .literal.aes_crypt_cfb128_wrap + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .literal.aes_crypt_cbc_wrap + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .literal.aes_crypt_ecb_wrap + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .literal.xts_aes_ctx_free + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .text.xts_aes_ctx_alloc + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .text.xts_aes_setkey_dec_wrap + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .text.xts_aes_setkey_enc_wrap + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .text.aes_crypt_xts_wrap + 0x00000000 0x22 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .text.gcm_ctx_free + 0x00000000 0x16 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .text.gcm_ctx_alloc + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .text.gcm_aes_setkey_wrap + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .text.ccm_ctx_free + 0x00000000 0x16 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .text.ccm_ctx_alloc + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .text.ccm_aes_setkey_wrap + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .text.aes_ctx_free + 0x00000000 0x16 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .text.aes_ctx_alloc + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .text.aes_setkey_dec_wrap + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .text.aes_setkey_enc_wrap + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .text.aes_crypt_ctr_wrap + 0x00000000 0x1d esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .text.aes_crypt_ofb_wrap + 0x00000000 0x19 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .text.aes_crypt_cfb128_wrap + 0x00000000 0x1d esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .text.aes_crypt_cbc_wrap + 0x00000000 0x19 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .text.aes_crypt_ecb_wrap + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .text.xts_aes_ctx_free + 0x00000000 0x17 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .rodata.mbedtls_cipher_base_lookup_table + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .bss.mbedtls_cipher_supported + 0x00000000 0x6c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .rodata.mbedtls_cipher_definitions + 0x00000000 0xd8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .rodata.str1.1 + 0x00000000 0x159 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .rodata.aes_256_ccm_star_no_tag_info + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .rodata.aes_192_ccm_star_no_tag_info + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .rodata.aes_128_ccm_star_no_tag_info + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .rodata.aes_256_ccm_info + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .rodata.aes_192_ccm_info + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .rodata.aes_128_ccm_info + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .rodata.ccm_aes_info + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .rodata.aes_256_gcm_info + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .rodata.aes_192_gcm_info + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .rodata.aes_128_gcm_info + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .rodata.gcm_aes_info + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .rodata.aes_256_xts_info + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .rodata.aes_128_xts_info + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .rodata.xts_aes_info + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .rodata.aes_256_ctr_info + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .rodata.aes_192_ctr_info + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .rodata.aes_128_ctr_info + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .rodata.aes_256_ofb_info + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .rodata.aes_192_ofb_info + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .rodata.aes_128_ofb_info + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .rodata.aes_256_cfb128_info + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .rodata.aes_192_cfb128_info + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .rodata.aes_128_cfb128_info + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .rodata.aes_256_cbc_info + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .rodata.aes_192_cbc_info + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .rodata.aes_128_cbc_info + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .rodata.aes_256_ecb_info + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .rodata.aes_192_ecb_info + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .rodata.aes_128_ecb_info + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .rodata.aes_info + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .debug_frame 0x00000000 0x1f0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .debug_info 0x00000000 0x1930 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .debug_abbrev 0x00000000 0x3e5 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .debug_loc 0x00000000 0x332 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .debug_aranges + 0x00000000 0xb8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .debug_ranges 0x00000000 0xa8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .debug_line 0x00000000 0x8eb esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .debug_str 0x00000000 0x173a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .xt.lit 0x00000000 0xa0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .xt.prop 0x00000000 0x588 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .literal.cmac_multiply_by_u$part$0 + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .literal.cmac_generate_subkeys + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .literal.cmac_test_subkeys$constprop$0 + 0x00000000 0x4c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .literal.mbedtls_cipher_cmac_starts + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .literal.mbedtls_cipher_cmac_update + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .literal.mbedtls_cipher_cmac_finish + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .literal.mbedtls_cipher_cmac_reset + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .literal.mbedtls_cipher_cmac + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .literal.cmac_test_wth_cipher$constprop$0 + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .literal.mbedtls_aes_cmac_prf_128 + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .literal.mbedtls_cmac_self_test + 0x00000000 0x7c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .text.cmac_multiply_by_u$part$0 + 0x00000000 0x89 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .text.cmac_generate_subkeys + 0x00000000 0x5c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .rodata.cmac_test_subkeys$constprop$0.str1.1 + 0x00000000 0x43 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .text.cmac_test_subkeys$constprop$0 + 0x00000000 0x11c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .text.mbedtls_cipher_cmac_starts + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .text.mbedtls_cipher_cmac_update + 0x00000000 0xfa esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .text.mbedtls_cipher_cmac_finish + 0x00000000 0x13a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .text.mbedtls_cipher_cmac_reset + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .text.mbedtls_cipher_cmac + 0x00000000 0x76 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .rodata.cmac_test_wth_cipher$constprop$0.str1.1 + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .text.cmac_test_wth_cipher$constprop$0 + 0x00000000 0xbd esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .text.mbedtls_aes_cmac_prf_128 + 0x00000000 0x98 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .rodata.mbedtls_cmac_self_test.str1.1 + 0x00000000 0x31 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .text.mbedtls_cmac_self_test + 0x00000000 0x124 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .rodata.PRFT 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .rodata.PRFM 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .rodata.PRFKlen + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .rodata.PRFK 0x00000000 0x12 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .rodata.aes_256_expected_result + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .rodata.aes_256_subkeys + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .rodata.aes_256_key + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .rodata.aes_192_expected_result + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .rodata.aes_192_subkeys + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .rodata.aes_192_key + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .rodata.aes_128_expected_result + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .rodata.aes_128_subkeys + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .rodata.aes_128_key + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .rodata.aes_message_lengths + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .rodata.test_message + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .debug_frame 0x00000000 0x118 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .debug_info 0x00000000 0x207d esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .debug_abbrev 0x00000000 0x587 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .debug_loc 0x00000000 0xe47 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .debug_aranges + 0x00000000 0x70 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .debug_ranges 0x00000000 0x160 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .debug_line 0x00000000 0x18a3 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .debug_str 0x00000000 0x12a9 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .xt.prop 0x00000000 0x5f4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .literal.mbedtls_ecdh_gen_public + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + .literal.mbedtls_ecdh_compute_shared + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + .literal.mbedtls_ecdh_init + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + .literal.mbedtls_ecdh_setup + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + .literal.mbedtls_ecdh_free + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + .literal.mbedtls_ecdh_make_params + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + .literal.mbedtls_ecdh_read_params + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + .literal.mbedtls_ecdh_get_params + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + .literal.mbedtls_ecdh_make_public + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + .literal.mbedtls_ecdh_read_public + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + .literal.mbedtls_ecdh_calc_secret + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + .text.mbedtls_ecdh_can_do + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + .text.mbedtls_ecdh_gen_public + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + .text.mbedtls_ecdh_compute_shared + 0x00000000 0x53 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + .text.mbedtls_ecdh_get_grp_id + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + .text.mbedtls_ecdh_init + 0x00000000 0x19 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + .text.mbedtls_ecdh_setup + 0x00000000 0x5a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + .text.mbedtls_ecdh_free + 0x00000000 0x4a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + .text.mbedtls_ecdh_make_params + 0x00000000 0x64 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + .text.mbedtls_ecdh_read_params + 0x00000000 0x4a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + .text.mbedtls_ecdh_get_params + 0x00000000 0x66 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + .text.mbedtls_ecdh_make_public + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + .text.mbedtls_ecdh_read_public + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + .text.mbedtls_ecdh_calc_secret + 0x00000000 0x84 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + .debug_frame 0x00000000 0x148 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + .debug_info 0x00000000 0x183f esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + .debug_abbrev 0x00000000 0x422 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + .debug_loc 0x00000000 0xc76 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + .debug_aranges + 0x00000000 0x80 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + .debug_ranges 0x00000000 0xf0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + .debug_line 0x00000000 0xd63 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + .debug_str 0x00000000 0xa57 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + .xt.prop 0x00000000 0x318 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + .literal.derive_mpi + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + .literal.mbedtls_ecdsa_sign_restartable + 0x00000000 0x50 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + .literal.mbedtls_ecdsa_sign + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + .literal.mbedtls_ecdsa_sign_det_restartable + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + .literal.mbedtls_ecdsa_sign_det_ext + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + .literal.mbedtls_ecdsa_verify_restartable + 0x00000000 0x64 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + .literal.mbedtls_ecdsa_verify + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + .literal.mbedtls_ecdsa_write_signature_restartable + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + .literal.mbedtls_ecdsa_write_signature + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + .literal.mbedtls_ecdsa_read_signature_restartable + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + .literal.mbedtls_ecdsa_read_signature + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + .literal.mbedtls_ecdsa_genkey + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + .literal.mbedtls_ecdsa_init + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + .literal.mbedtls_ecdsa_free + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + .literal.mbedtls_ecdsa_from_keypair + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + .text.derive_mpi + 0x00000000 0x62 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + .text.mbedtls_ecdsa_can_do + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + .text.mbedtls_ecdsa_sign_restartable + 0x00000000 0x17b esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + .text.mbedtls_ecdsa_sign + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + .text.mbedtls_ecdsa_sign_det_restartable + 0x00000000 0xe4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + .text.mbedtls_ecdsa_sign_det_ext + 0x00000000 0x29 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + .text.mbedtls_ecdsa_verify_restartable + 0x00000000 0x180 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + .text.mbedtls_ecdsa_verify + 0x00000000 0x1d esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + .text.mbedtls_ecdsa_write_signature_restartable + 0x00000000 0x110 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + .text.mbedtls_ecdsa_write_signature + 0x00000000 0x29 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + .text.mbedtls_ecdsa_read_signature_restartable + 0x00000000 0x9e esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + .text.mbedtls_ecdsa_read_signature + 0x00000000 0x19 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + .text.mbedtls_ecdsa_genkey + 0x00000000 0x2a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + .text.mbedtls_ecdsa_init + 0x00000000 0xe esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + .text.mbedtls_ecdsa_free + 0x00000000 0xf esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + .text.mbedtls_ecdsa_from_keypair + 0x00000000 0x3e esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + .debug_frame 0x00000000 0x190 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + .debug_info 0x00000000 0x211a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + .debug_abbrev 0x00000000 0x412 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + .debug_loc 0x00000000 0xcae esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + .debug_aranges + 0x00000000 0x98 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + .debug_ranges 0x00000000 0x88 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + .debug_line 0x00000000 0x149c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + .debug_str 0x00000000 0xccc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + .xt.lit 0x00000000 0x78 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + .xt.prop 0x00000000 0x4bc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + .literal.self_test_rng + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .literal.ecjpake_lgc + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .literal.ecjpake_write_len_point + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .literal.ecjpake_hash + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .literal.ecjpake_zkp_write + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .literal.ecjpake_kkp_write + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .literal.ecjpake_ecp_add3 + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .literal.ecjpake_mul_secret + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .literal.mbedtls_ecjpake_derive_k + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .literal.ecjpake_kkp_read + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .literal.mbedtls_ecjpake_free$part$0 + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .literal.ecjpake_test_load$constprop$0 + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .literal.mbedtls_ecjpake_init + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .literal.mbedtls_ecjpake_free + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .literal.mbedtls_ecjpake_setup + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .literal.mbedtls_ecjpake_read_round_one + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .literal.mbedtls_ecjpake_write_round_one + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .literal.mbedtls_ecjpake_read_round_two + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .literal.mbedtls_ecjpake_write_round_two + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .literal.mbedtls_ecjpake_derive_secret + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .literal.mbedtls_ecjpake_write_shared_key + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .literal.mbedtls_ecjpake_self_test + 0x00000000 0xe4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .text.self_test_rng + 0x00000000 0x2e esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .text.ecjpake_lgc + 0x00000000 0x33 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .text.ecjpake_write_len_point + 0x00000000 0x54 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .text.ecjpake_hash + 0x00000000 0xf4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .text.ecjpake_zkp_write + 0x00000000 0x13d esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .text.ecjpake_kkp_write + 0x00000000 0x78 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .text.ecjpake_ecp_add3 + 0x00000000 0x50 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .text.ecjpake_mul_secret + 0x00000000 0x76 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .text.mbedtls_ecjpake_derive_k + 0x00000000 0x98 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .text.ecjpake_kkp_read + 0x00000000 0x134 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .text.mbedtls_ecjpake_free$part$0 + 0x00000000 0x6e esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .text.ecjpake_test_load$constprop$0 + 0x00000000 0x64 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .text.mbedtls_ecjpake_init + 0x00000000 0x72 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .text.mbedtls_ecjpake_free + 0x00000000 0xf esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .text.mbedtls_ecjpake_setup + 0x00000000 0x51 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .text.mbedtls_ecjpake_set_point_format + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .text.mbedtls_ecjpake_check + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .text.mbedtls_ecjpake_read_round_one + 0x00000000 0x6e esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .text.mbedtls_ecjpake_write_round_one + 0x00000000 0x80 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .text.mbedtls_ecjpake_read_round_two + 0x00000000 0xb8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .text.mbedtls_ecjpake_write_round_two + 0x00000000 0x13f esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .text.mbedtls_ecjpake_derive_secret + 0x00000000 0x75 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .text.mbedtls_ecjpake_write_shared_key + 0x00000000 0x42 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .rodata.mbedtls_ecjpake_self_test.str1.1 + 0x00000000 0x7b esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .text.mbedtls_ecjpake_self_test + 0x00000000 0x312 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .data.state$0 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .data.x$1 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .rodata.ecjpake_test_pms + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .rodata.ecjpake_test_shared_key + 0x00000000 0x41 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .rodata.ecjpake_test_cli_two + 0x00000000 0xa5 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .rodata.ecjpake_test_srv_two + 0x00000000 0xa8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .rodata.ecjpake_test_srv_one + 0x00000000 0x14a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .rodata.ecjpake_test_cli_one + 0x00000000 0x14a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .rodata.ecjpake_test_x4 + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .rodata.ecjpake_test_x3 + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .rodata.ecjpake_test_x2 + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .rodata.ecjpake_test_x1 + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .rodata.ecjpake_test_password + 0x00000000 0xf esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .rodata.str1.1 + 0x00000000 0xe esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .rodata.ecjpake_id + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .debug_frame 0x00000000 0x250 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .debug_info 0x00000000 0x369a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .debug_abbrev 0x00000000 0x51e esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .debug_loc 0x00000000 0x1568 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .debug_aranges + 0x00000000 0xd8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .debug_ranges 0x00000000 0x148 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .debug_line 0x00000000 0x245b esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .debug_str 0x00000000 0xd12 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .xt.lit 0x00000000 0xb0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .xt.prop 0x00000000 0x6e4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .literal.gcm_mult + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .literal.gcm_mask + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .literal.mbedtls_gcm_free$part$0 + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .literal.mbedtls_gcm_init + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .literal.mbedtls_gcm_setkey + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .literal.mbedtls_gcm_starts + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .literal.mbedtls_gcm_update_ad + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .literal.mbedtls_gcm_update + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .literal.mbedtls_gcm_finish + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .literal.mbedtls_gcm_crypt_and_tag + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .literal.mbedtls_gcm_auth_decrypt + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .literal.mbedtls_gcm_free + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .literal.mbedtls_gcm_self_test + 0x00000000 0x110 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .text.gcm_mult + 0x00000000 0x194 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .text.gcm_mask + 0x00000000 0xa0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .text.mbedtls_gcm_free$part$0 + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .text.mbedtls_gcm_init + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .text.mbedtls_gcm_setkey + 0x00000000 0x2bc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .text.mbedtls_gcm_starts + 0x00000000 0xf8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .text.mbedtls_gcm_update_ad + 0x00000000 0x10c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .text.mbedtls_gcm_update + 0x00000000 0x1e8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .text.mbedtls_gcm_finish + 0x00000000 0x106 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .text.mbedtls_gcm_crypt_and_tag + 0x00000000 0x58 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .text.mbedtls_gcm_auth_decrypt + 0x00000000 0x52 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .text.mbedtls_gcm_free + 0x00000000 0xf esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .rodata.mbedtls_gcm_self_test.str1.1 + 0x00000000 0x7b esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .text.mbedtls_gcm_self_test + 0x00000000 0x4e3 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .rodata.tag_test_data + 0x00000000 0x120 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .rodata.ct_test_data + 0x00000000 0x480 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .rodata.pt_test_data + 0x00000000 0x80 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .rodata.pt_len_test_data + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .rodata.additional_test_data + 0x00000000 0x80 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .rodata.add_index_test_data + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .rodata.add_len_test_data + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .rodata.iv_test_data + 0x00000000 0xc0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .rodata.iv_index_test_data + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .rodata.iv_len_test_data + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .rodata.key_test_data + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .rodata.key_index_test_data + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .rodata.last4 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .debug_frame 0x00000000 0x148 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .debug_info 0x00000000 0x2da1 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .debug_abbrev 0x00000000 0x5c0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .debug_loc 0x00000000 0x1f09 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .debug_aranges + 0x00000000 0x80 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .debug_ranges 0x00000000 0x2b8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .debug_line 0x00000000 0x2c2c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .debug_str 0x00000000 0xb3b esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .xt.lit 0x00000000 0x68 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .xt.prop 0x00000000 0x72c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .literal.hmac_drbg_self_test_entropy + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .literal.mbedtls_hmac_drbg_init + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .literal.mbedtls_hmac_drbg_update + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .literal.hmac_drbg_reseed_core + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .literal.mbedtls_hmac_drbg_seed_buf + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .literal.mbedtls_hmac_drbg_reseed + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .literal.mbedtls_hmac_drbg_seed + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .literal.mbedtls_hmac_drbg_random_with_add + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .literal.mbedtls_hmac_drbg_random + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .literal.mbedtls_hmac_drbg_free + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .literal.mbedtls_hmac_drbg_write_seed_file + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .literal.mbedtls_hmac_drbg_update_seed_file + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .literal.mbedtls_hmac_drbg_self_test + 0x00000000 0x80 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .text.hmac_drbg_self_test_entropy + 0x00000000 0x1e esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_init + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_update + 0x00000000 0xda esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .text.hmac_drbg_reseed_core + 0x00000000 0x9a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_seed_buf + 0x00000000 0x6a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_reseed + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_seed + 0x00000000 0x86 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_set_prediction_resistance + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_set_entropy_len + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_set_reseed_interval + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_random_with_add + 0x00000000 0xc2 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_random + 0x00000000 0x37 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_free + 0x00000000 0x2f esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .rodata.mbedtls_hmac_drbg_write_seed_file.str1.1 + 0x00000000 0x3 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_write_seed_file + 0x00000000 0x5a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .rodata.mbedtls_hmac_drbg_update_seed_file.str1.1 + 0x00000000 0x3 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_update_seed_file + 0x00000000 0x96 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .rodata.mbedtls_hmac_drbg_self_test.str1.1 + 0x00000000 0x45 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_self_test + 0x00000000 0x142 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .bss.test_offset + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .rodata.result_nopr + 0x00000000 0x50 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .rodata.entropy_nopr + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .rodata.result_pr + 0x00000000 0x50 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .rodata.entropy_pr + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .debug_frame 0x00000000 0x190 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .debug_info 0x00000000 0x1854 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .debug_abbrev 0x00000000 0x401 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .debug_loc 0x00000000 0x87b esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .debug_aranges + 0x00000000 0x98 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .debug_ranges 0x00000000 0xd0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .debug_line 0x00000000 0x13b9 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .debug_str 0x00000000 0x9b3 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .xt.lit 0x00000000 0x68 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .xt.prop 0x00000000 0x51c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .literal.psa_alg_of_md$isra$0 + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .literal.mbedtls_md_info_from_type + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .literal.mbedtls_md_init + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .literal.mbedtls_md_free + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .literal.mbedtls_md_setup + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .literal.mbedtls_md_error_from_psa + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .literal.mbedtls_md_clone + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .literal.mbedtls_md_starts + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .literal.mbedtls_md_update + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .literal.mbedtls_md_finish + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .literal.mbedtls_md + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .literal.mbedtls_md_list + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .literal.mbedtls_md_hmac_setup + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .literal.mbedtls_md_info_from_string + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .literal.mbedtls_md_get_name + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .literal.mbedtls_md_file + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .literal.mbedtls_md_hmac_starts + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .literal.mbedtls_md_hmac_update + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .literal.mbedtls_md_hmac_finish + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .literal.mbedtls_md_hmac_reset + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .literal.mbedtls_md_hmac + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .text.psa_alg_of_md$isra$0 + 0x00000000 0x2e esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .text.mbedtls_md_info_from_type + 0x00000000 0x3a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .text.mbedtls_md_init + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .text.mbedtls_md_free + 0x00000000 0x64 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .text.mbedtls_md_setup + 0x00000000 0x8b esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .text.mbedtls_md_get_size + 0x00000000 0xe esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .text.mbedtls_md_get_type + 0x00000000 0xe esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .text.mbedtls_md_error_from_psa + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .text.mbedtls_md_clone + 0x00000000 0x8e esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .text.mbedtls_md_starts + 0x00000000 0x6c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .text.mbedtls_md_update + 0x00000000 0x50 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .text.mbedtls_md_finish + 0x00000000 0x54 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .text.mbedtls_md + 0x00000000 0x70 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .text.mbedtls_md_list + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .text.mbedtls_md_hmac_setup + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .text.mbedtls_md_info_from_string + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .text.mbedtls_md_get_name + 0x00000000 0x22 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .text.mbedtls_md_info_from_ctx + 0x00000000 0xa esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .rodata.mbedtls_md_file.str1.1 + 0x00000000 0x3 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .text.mbedtls_md_file + 0x00000000 0xb3 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .text.mbedtls_md_hmac_starts + 0x00000000 0xce esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .text.mbedtls_md_hmac_update + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .text.mbedtls_md_hmac_finish + 0x00000000 0x5e esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .text.mbedtls_md_hmac_reset + 0x00000000 0x36 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .text.mbedtls_md_hmac + 0x00000000 0x6e esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .rodata.str1.1 + 0x00000000 0x29 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .rodata.md_names + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .rodata.supported_digests + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .rodata.mbedtls_sha512_info + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .rodata.mbedtls_sha384_info + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .rodata.mbedtls_sha256_info + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .rodata.mbedtls_sha224_info + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .rodata.mbedtls_sha1_info + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .rodata.mbedtls_md5_info + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .debug_frame 0x00000000 0x250 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .debug_info 0x00000000 0x1af9 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .debug_abbrev 0x00000000 0x3c8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .debug_loc 0x00000000 0x91a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .debug_aranges + 0x00000000 0xd8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .debug_ranges 0x00000000 0xc8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .debug_line 0x00000000 0x18ec esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .debug_str 0x00000000 0xc2d esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .xt.lit 0x00000000 0xa8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .xt.prop 0x00000000 0x8d0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .literal.mbedtls_oid_get_pk_alg + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) + .literal.mbedtls_oid_get_oid_by_pk_alg + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) + .literal.mbedtls_oid_get_ec_grp + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) + .literal.mbedtls_oid_get_oid_by_ec_grp + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) + .literal.mbedtls_oid_get_ec_grp_algid + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) + .literal.mbedtls_oid_get_oid_by_ec_grp_algid + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) + .literal.mbedtls_oid_get_md_hmac + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) + .literal.mbedtls_oid_get_cipher_alg + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) + .literal.mbedtls_oid_get_oid_by_md + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) + .text.mbedtls_oid_get_pk_alg + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) + .text.mbedtls_oid_get_oid_by_pk_alg + 0x00000000 0x25 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) + .text.mbedtls_oid_get_ec_grp + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) + .text.mbedtls_oid_get_oid_by_ec_grp + 0x00000000 0x25 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) + .text.mbedtls_oid_get_ec_grp_algid + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) + .text.mbedtls_oid_get_oid_by_ec_grp_algid + 0x00000000 0x25 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) + .text.mbedtls_oid_get_md_hmac + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) + .text.mbedtls_oid_get_cipher_alg + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) + .text.mbedtls_oid_get_oid_by_md + 0x00000000 0x25 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) + .rodata.str1.1 + 0x00000000 0xc9 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) + .rodata.oid_md_alg + 0x00000000 0x54 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) + .rodata.oid_cipher_alg + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) + .rodata.oid_md_hmac + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) + .rodata.oid_ecp_grp_algid + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) + .rodata 0x00000000 0x12 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) + .rodata.oid_ecp_grp + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) + .rodata.oid_pk_alg + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) + .debug_frame 0x00000000 0xe8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) + .debug_info 0x00000000 0xcd8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) + .debug_abbrev 0x00000000 0x322 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) + .debug_loc 0x00000000 0x681 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) + .debug_aranges + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) + .debug_ranges 0x00000000 0xf0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) + .debug_line 0x00000000 0xa1b esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) + .debug_str 0x00000000 0x11c6 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) + .xt.lit 0x00000000 0x48 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) + .xt.prop 0x00000000 0x420 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) + .literal.mbedtls_internal_sha256_process$isra$0 + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + .literal.mbedtls_sha256_init + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + .literal.mbedtls_sha256_free + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + .literal.mbedtls_sha256_clone + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + .literal.mbedtls_sha256_starts + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + .literal.mbedtls_sha256_update + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + .literal.mbedtls_sha256_finish + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + .literal.mbedtls_sha256 + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + .literal.mbedtls_sha256_self_test + 0x00000000 0x74 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + .text.mbedtls_internal_sha256_process$isra$0 + 0x00000000 0x877 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + .text.mbedtls_sha256_init + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + .text.mbedtls_sha256_free + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + .text.mbedtls_sha256_clone + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + .text.mbedtls_sha256_starts + 0x00000000 0x49 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + .text.mbedtls_sha256_update + 0x00000000 0x90 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + .text.mbedtls_sha256_finish + 0x00000000 0x198 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + .text.mbedtls_sha256 + 0x00000000 0x79 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + .rodata.mbedtls_sha256_self_test.str1.1 + 0x00000000 0x3b esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + .text.mbedtls_sha256_self_test + 0x00000000 0x129 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + .rodata.sha256_test_sum + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + .rodata.sha_test_buflen + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + .rodata.sha_test_buf + 0x00000000 0xab esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + .rodata.K 0x00000000 0x100 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + .debug_frame 0x00000000 0xe8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + .debug_info 0x00000000 0x1119 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + .debug_abbrev 0x00000000 0x443 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + .debug_loc 0x00000000 0x984 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + .debug_aranges + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + .debug_ranges 0x00000000 0xd8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + .debug_line 0x00000000 0x1592 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + .debug_str 0x00000000 0x5bb esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + .xt.lit 0x00000000 0x48 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + .xt.prop 0x00000000 0x324 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + .literal.mbedtls_internal_aes_decrypt$isra$0 + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .literal.mbedtls_internal_aes_encrypt$isra$0 + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .literal.mbedtls_aes_init + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .literal.mbedtls_aes_free + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .literal.mbedtls_aes_xts_init + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .literal.mbedtls_aes_xts_free + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .literal.mbedtls_aes_setkey_enc + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .literal.mbedtls_aes_setkey_dec + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .literal.mbedtls_aes_xts_setkey_enc + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .literal.mbedtls_aes_xts_setkey_dec + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .literal.mbedtls_aes_crypt_ecb + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .literal.mbedtls_aes_crypt_cbc + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .literal.mbedtls_aes_crypt_xts + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .literal.mbedtls_aes_crypt_cfb128 + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .literal.mbedtls_aes_crypt_cfb8 + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .literal.mbedtls_aes_crypt_ofb + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .literal.mbedtls_aes_crypt_ctr + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .literal.mbedtls_aes_self_test + 0x00000000 0x19c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .text.mbedtls_internal_aes_decrypt$isra$0 + 0x00000000 0x47f esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .text.mbedtls_internal_aes_encrypt$isra$0 + 0x00000000 0x47f esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .text.mbedtls_aes_init + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .text.mbedtls_aes_free + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .text.mbedtls_aes_get_implementation + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .text.mbedtls_aes_xts_init + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .text.mbedtls_aes_xts_free + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .text.mbedtls_aes_setkey_enc + 0x00000000 0x22f esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .text.mbedtls_aes_setkey_dec + 0x00000000 0xfe esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .text.mbedtls_aes_xts_setkey_enc + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .text.mbedtls_aes_xts_setkey_dec + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .text.mbedtls_aes_crypt_ecb + 0x00000000 0x26 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .text.mbedtls_aes_crypt_cbc + 0x00000000 0xca esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .text.mbedtls_aes_crypt_xts + 0x00000000 0x1d0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .text.mbedtls_aes_crypt_cfb128 + 0x00000000 0x89 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .text.mbedtls_aes_crypt_cfb8 + 0x00000000 0x5a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .text.mbedtls_aes_crypt_ofb + 0x00000000 0x4a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .text.mbedtls_aes_crypt_ctr + 0x00000000 0xda esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .rodata.mbedtls_aes_self_test.str1.1 + 0x00000000 0xbc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .text.mbedtls_aes_self_test + 0x00000000 0x721 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .rodata.aes_test_xts_data_unit + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .rodata.aes_test_xts_ct32 + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .rodata.aes_test_xts_pt32 + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .rodata.aes_test_xts_key + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .rodata.aes_test_ctr_len + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .rodata.aes_test_ctr_ct + 0x00000000 0x90 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .rodata.aes_test_ctr_pt + 0x00000000 0x90 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .rodata.aes_test_ctr_nonce_counter + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .rodata.aes_test_ctr_key + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .rodata.aes_test_ofb_ct + 0x00000000 0xc0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .rodata.aes_test_ofb_pt + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .rodata.aes_test_ofb_iv + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .rodata.aes_test_ofb_key + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .rodata.aes_test_cfb128_ct + 0x00000000 0xc0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .rodata.aes_test_cfb128_pt + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .rodata.aes_test_cfb128_iv + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .rodata.aes_test_cfb128_key + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .rodata.aes_test_cbc_enc + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .rodata.aes_test_cbc_dec + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .rodata.aes_test_ecb_enc + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .rodata.aes_test_ecb_dec + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .rodata.round_constants + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .rodata.RT3 0x00000000 0x400 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .rodata.RT2 0x00000000 0x400 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .rodata.RT1 0x00000000 0x400 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .rodata.RT0 0x00000000 0x400 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .rodata.RSb 0x00000000 0x100 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .rodata.FT3 0x00000000 0x400 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .rodata.FT2 0x00000000 0x400 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .rodata.FT1 0x00000000 0x400 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .rodata.FT0 0x00000000 0x400 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .rodata.FSb 0x00000000 0x100 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .debug_frame 0x00000000 0x1d8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .debug_info 0x00000000 0x31b5 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .debug_abbrev 0x00000000 0x4ca esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .debug_loc 0x00000000 0x2ba4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .debug_aranges + 0x00000000 0xb0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .debug_ranges 0x00000000 0x540 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .debug_line 0x00000000 0x4216 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .debug_str 0x00000000 0x9a9 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .xt.lit 0x00000000 0x90 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .xt.prop 0x00000000 0x9b4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .literal.sha_ll_busy + 0x00000000 0x20 esp-idf/esp_hal_security/libesp_hal_security.a(sha_hal.c.obj) + .literal.sha_ll_read_digest + 0x00000000 0x10 esp-idf/esp_hal_security/libesp_hal_security.a(sha_hal.c.obj) + .literal.sha_hal_hash_block + 0x00000000 0x10 esp-idf/esp_hal_security/libesp_hal_security.a(sha_hal.c.obj) + .literal.sha_hal_wait_idle + 0x00000000 0x4 esp-idf/esp_hal_security/libesp_hal_security.a(sha_hal.c.obj) + .literal.sha_hal_read_digest + 0x00000000 0x10 esp-idf/esp_hal_security/libesp_hal_security.a(sha_hal.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hal_security/libesp_hal_security.a(sha_hal.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hal_security/libesp_hal_security.a(sha_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hal_security/libesp_hal_security.a(sha_hal.c.obj) + .text.sha_ll_busy + 0x00000000 0x48 esp-idf/esp_hal_security/libesp_hal_security.a(sha_hal.c.obj) + .text.sha_ll_read_digest + 0x00000000 0x5f esp-idf/esp_hal_security/libesp_hal_security.a(sha_hal.c.obj) + .text.sha_hal_set_mode + 0x00000000 0x5 esp-idf/esp_hal_security/libesp_hal_security.a(sha_hal.c.obj) + .text.sha_hal_hash_block + 0x00000000 0x4a esp-idf/esp_hal_security/libesp_hal_security.a(sha_hal.c.obj) + .text.sha_hal_wait_idle + 0x00000000 0xe esp-idf/esp_hal_security/libesp_hal_security.a(sha_hal.c.obj) + .text.sha_hal_read_digest + 0x00000000 0x64 esp-idf/esp_hal_security/libesp_hal_security.a(sha_hal.c.obj) + .debug_frame 0x00000000 0xa0 esp-idf/esp_hal_security/libesp_hal_security.a(sha_hal.c.obj) + .debug_info 0x00000000 0x6e8 esp-idf/esp_hal_security/libesp_hal_security.a(sha_hal.c.obj) + .debug_abbrev 0x00000000 0x272 esp-idf/esp_hal_security/libesp_hal_security.a(sha_hal.c.obj) + .debug_loc 0x00000000 0x3fc esp-idf/esp_hal_security/libesp_hal_security.a(sha_hal.c.obj) + .debug_aranges + 0x00000000 0x48 esp-idf/esp_hal_security/libesp_hal_security.a(sha_hal.c.obj) + .debug_ranges 0x00000000 0x38 esp-idf/esp_hal_security/libesp_hal_security.a(sha_hal.c.obj) + .debug_line 0x00000000 0x808 esp-idf/esp_hal_security/libesp_hal_security.a(sha_hal.c.obj) + .debug_str 0x00000000 0x4cb esp-idf/esp_hal_security/libesp_hal_security.a(sha_hal.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_hal_security/libesp_hal_security.a(sha_hal.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/esp_hal_security/libesp_hal_security.a(sha_hal.c.obj) + .xt.prop 0x00000000 0x264 esp-idf/esp_hal_security/libesp_hal_security.a(sha_hal.c.obj) + .literal.aes_ll_write_key + 0x00000000 0x8 esp-idf/esp_hal_security/libesp_hal_security.a(aes_hal.c.obj) + .literal.aes_hal_wait_idle + 0x00000000 0x8 esp-idf/esp_hal_security/libesp_hal_security.a(aes_hal.c.obj) + .literal.aes_hal_setkey + 0x00000000 0x8 esp-idf/esp_hal_security/libesp_hal_security.a(aes_hal.c.obj) + .literal.aes_hal_transform_block + 0x00000000 0x1c esp-idf/esp_hal_security/libesp_hal_security.a(aes_hal.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hal_security/libesp_hal_security.a(aes_hal.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hal_security/libesp_hal_security.a(aes_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hal_security/libesp_hal_security.a(aes_hal.c.obj) + .text.aes_ll_write_key + 0x00000000 0x53 esp-idf/esp_hal_security/libesp_hal_security.a(aes_hal.c.obj) + .text.aes_hal_wait_idle + 0x00000000 0x11 esp-idf/esp_hal_security/libesp_hal_security.a(aes_hal.c.obj) + .text.aes_hal_setkey + 0x00000000 0x30 esp-idf/esp_hal_security/libesp_hal_security.a(aes_hal.c.obj) + .text.aes_hal_transform_block + 0x00000000 0x4a esp-idf/esp_hal_security/libesp_hal_security.a(aes_hal.c.obj) + .debug_frame 0x00000000 0x70 esp-idf/esp_hal_security/libesp_hal_security.a(aes_hal.c.obj) + .debug_info 0x00000000 0x4c8 esp-idf/esp_hal_security/libesp_hal_security.a(aes_hal.c.obj) + .debug_abbrev 0x00000000 0x286 esp-idf/esp_hal_security/libesp_hal_security.a(aes_hal.c.obj) + .debug_loc 0x00000000 0x1f0 esp-idf/esp_hal_security/libesp_hal_security.a(aes_hal.c.obj) + .debug_aranges + 0x00000000 0x38 esp-idf/esp_hal_security/libesp_hal_security.a(aes_hal.c.obj) + .debug_ranges 0x00000000 0x28 esp-idf/esp_hal_security/libesp_hal_security.a(aes_hal.c.obj) + .debug_line 0x00000000 0x561 esp-idf/esp_hal_security/libesp_hal_security.a(aes_hal.c.obj) + .debug_str 0x00000000 0x443 esp-idf/esp_hal_security/libesp_hal_security.a(aes_hal.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_hal_security/libesp_hal_security.a(aes_hal.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/esp_hal_security/libesp_hal_security.a(aes_hal.c.obj) + .xt.prop 0x00000000 0xfc esp-idf/esp_hal_security/libesp_hal_security.a(aes_hal.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hal_security/libesp_hal_security.a(mpu_hal.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hal_security/libesp_hal_security.a(mpu_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hal_security/libesp_hal_security.a(mpu_hal.c.obj) + .xt.prop 0x00000000 0x9c esp-idf/esp_hal_security/libesp_hal_security.a(mpu_hal.c.obj) + .literal.get_ota_ops_entry + 0x00000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_init_entry + 0x00000000 0xc esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.image_validate + 0x00000000 0x8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.ota_verify_partition + 0x00000000 0x1c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.read_otadata + 0x00000000 0x30 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.find_default_boot_partition + 0x00000000 0x1c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.rewrite_ota_seq + 0x00000000 0xc esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.check_invalid_otadata + 0x00000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.get_last_invalid_otadata + 0x00000000 0xc esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_begin + 0x00000000 0x24 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_resume + 0x00000000 0x20 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_set_final_partition + 0x00000000 0x24 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_write + 0x00000000 0x60 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_write_with_offset + 0x00000000 0x44 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_abort + 0x00000000 0x8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_end + 0x00000000 0x38 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_app_partition_count + 0x00000000 0x14 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_rewrite_ota_data + 0x00000000 0x18 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.erase_last_boot_app_partition + 0x00000000 0x20 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_set_boot_partition + 0x00000000 0x14 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_boot_partition + 0x00000000 0x30 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_next_update_partition + 0x00000000 0x1c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_bootloader_description + 0x00000000 0x1c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_partition_description + 0x00000000 0x8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_check_rollback_is_possible + 0x00000000 0x24 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_current_ota_is_workable + 0x00000000 0x44 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_mark_app_valid_cancel_rollback + 0x00000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_mark_app_invalid_rollback + 0x00000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_mark_app_invalid_rollback_and_reboot + 0x00000000 0x8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_last_invalid_partition + 0x00000000 0x14 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_state_partition + 0x00000000 0x10 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_erase_last_boot_app_partition + 0x00000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_invalidate_inactive_ota_data_slot + 0x00000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text 0x00000000 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .data 0x00000000 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .bss 0x00000000 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.is_ota_partition + 0x00000000 0x2a esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.set_new_state_otadata + 0x00000000 0x7 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.get_ota_ops_entry + 0x00000000 0x1a esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.compute_ota_seq_for_target_slot + 0x00000000 0x22 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_init_entry + 0x00000000 0x42 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.image_validate + 0x00000000 0x26 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.ota_verify_partition + 0x00000000 0x94 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.read_otadata.str1.4 + 0x00000000 0x57 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.read_otadata + 0x00000000 0x93 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.find_default_boot_partition.str1.4 + 0x00000000 0x38 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.find_default_boot_partition + 0x00000000 0x5c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.rewrite_ota_seq + 0x00000000 0x5b esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.check_invalid_otadata + 0x00000000 0x32 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.get_last_invalid_otadata + 0x00000000 0x2c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_begin + 0x00000000 0xc6 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_resume + 0x00000000 0xb3 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_set_final_partition.str1.4 + 0x00000000 0x3f esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_set_final_partition + 0x00000000 0xaa esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_write.str1.4 + 0x00000000 0xea esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_write + 0x00000000 0x1d0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_write_with_offset.str1.4 + 0x00000000 0xb2 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_write_with_offset + 0x00000000 0xc2 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_abort + 0x00000000 0x2d esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_end.str1.4 + 0x00000000 0x65 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_end + 0x00000000 0xe5 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_get_app_partition_count.str1.4 + 0x00000000 0x46 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_app_partition_count + 0x00000000 0x40 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_rewrite_ota_data + 0x00000000 0x89 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.erase_last_boot_app_partition + 0x00000000 0xd6 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_set_boot_partition + 0x00000000 0x5d esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_get_boot_partition.str1.4 + 0x00000000 0x40 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_boot_partition + 0x00000000 0x8b esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_get_next_update_partition.str1.4 + 0x00000000 0x13 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_next_update_partition + 0x00000000 0x66 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_bootloader_description + 0x00000000 0x67 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_partition_description + 0x00000000 0x4b esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_check_rollback_is_possible + 0x00000000 0xc2 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_current_ota_is_workable.str1.4 + 0x00000000 0xb1 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_current_ota_is_workable + 0x00000000 0xe4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_mark_app_valid_cancel_rollback + 0x00000000 0x10 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_mark_app_invalid_rollback + 0x00000000 0x10 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_mark_app_invalid_rollback_and_reboot + 0x00000000 0x16 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_last_invalid_partition + 0x00000000 0x63 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_state_partition + 0x00000000 0x9d esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_erase_last_boot_app_partition + 0x00000000 0x10 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_invalidate_inactive_ota_data_slot + 0x00000000 0x10 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.__func__$0 + 0x00000000 0x22 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.__func__$3 + 0x00000000 0x20 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.__func__$4 + 0x00000000 0x1a esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .bss.s_ota_ops_last_handle + 0x00000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .bss.s_ota_ops_entries_head + 0x00000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .xt.lit 0x00000000 0x110 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .xt.prop 0x00000000 0x1230 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_efuse_get_pkg_ver + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_disable_basic_rom_console + 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_disable_rom_download_mode + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_get_pkg_ver + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .rodata.esp_efuse_disable_basic_rom_console.str1.4 + 0x00000000 0x45 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_disable_basic_rom_console + 0x00000000 0x33 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_disable_rom_download_mode + 0x00000000 0x46 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_set_rom_log_scheme + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_frame 0x00000000 0x70 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_info 0x00000000 0x665 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_abbrev 0x00000000 0x1f4 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_loc 0x00000000 0x2b esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_aranges + 0x00000000 0x38 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_ranges 0x00000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_line 0x00000000 0x531 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_str 0x00000000 0xd17 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .comment 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .xt.prop 0x00000000 0x108 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .literal.aes_ll_enable_bus_clock + 0x00000000 0xc esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + .literal.aes_ll_reset_register + 0x00000000 0x14 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + .literal.sha_ll_enable_bus_clock + 0x00000000 0xc esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + .literal.sha_ll_reset_register + 0x00000000 0x10 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + .literal.mpi_ll_enable_bus_clock + 0x00000000 0xc esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + .literal.mpi_ll_power_up + 0x00000000 0x8 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + .literal.mpi_ll_reset_register + 0x00000000 0x10 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + .literal.mpi_ll_power_down + 0x00000000 0x8 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + .literal.esp_crypto_aes_enable_periph_clk + 0x00000000 0x10 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + .literal.esp_crypto_sha_enable_periph_clk + 0x00000000 0x10 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + .literal.esp_crypto_mpi_enable_periph_clk + 0x00000000 0x18 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + .text 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + .data 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + .text.aes_ll_enable_bus_clock + 0x00000000 0x34 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + .text.aes_ll_reset_register + 0x00000000 0x50 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + .text.sha_ll_enable_bus_clock + 0x00000000 0x34 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + .text.sha_ll_reset_register + 0x00000000 0x3e esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + .text.mpi_ll_enable_bus_clock + 0x00000000 0x34 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + .text.mpi_ll_power_up + 0x00000000 0x1a esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + .text.mpi_ll_reset_register + 0x00000000 0x3e esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + .text.mpi_ll_power_down + 0x00000000 0x1a esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + .text.esp_crypto_aes_enable_periph_clk + 0x00000000 0x32 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + .text.esp_crypto_sha_enable_periph_clk + 0x00000000 0x32 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + .text.esp_crypto_mpi_enable_periph_clk + 0x00000000 0x42 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + .debug_frame 0x00000000 0x118 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + .debug_info 0x00000000 0x489 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + .debug_abbrev 0x00000000 0x127 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + .debug_loc 0x00000000 0x1b9 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + .debug_aranges + 0x00000000 0x70 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + .debug_ranges 0x00000000 0x60 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + .debug_line 0x00000000 0x713 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + .debug_str 0x00000000 0x3fc esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + .xt.prop 0x00000000 0x318 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + .literal.esp_dport_access_read_buffer + 0x00000000 0x4 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .text 0x00000000 0x0 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .data 0x00000000 0x0 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .text.esp_dport_access_read_buffer + 0x00000000 0x2f esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_frame 0x00000000 0x28 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_info 0x00000000 0x16b esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_abbrev 0x00000000 0xde esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_loc 0x00000000 0x89 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_aranges + 0x00000000 0x20 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_ranges 0x00000000 0x10 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_line 0x00000000 0x237 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_str 0x00000000 0x2d8 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .comment 0x00000000 0x30 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .xt.prop 0x00000000 0x48 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .literal.srand + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(rand.c.obj) + .literal.rand 0x00000000 0xc esp-idf/esp_libc/libesp_libc.a(rand.c.obj) + .text 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(rand.c.obj) + .data 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(rand.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(rand.c.obj) + .text.srand 0x00000000 0x13 esp-idf/esp_libc/libesp_libc.a(rand.c.obj) + .text.rand 0x00000000 0x43 esp-idf/esp_libc/libesp_libc.a(rand.c.obj) + .tdata._tls_rand_next + 0x00000000 0x8 esp-idf/esp_libc/libesp_libc.a(rand.c.obj) + .debug_frame 0x00000000 0x40 esp-idf/esp_libc/libesp_libc.a(rand.c.obj) + .debug_info 0x00000000 0xbe esp-idf/esp_libc/libesp_libc.a(rand.c.obj) + .debug_abbrev 0x00000000 0x82 esp-idf/esp_libc/libesp_libc.a(rand.c.obj) + .debug_aranges + 0x00000000 0x28 esp-idf/esp_libc/libesp_libc.a(rand.c.obj) + .debug_ranges 0x00000000 0x18 esp-idf/esp_libc/libesp_libc.a(rand.c.obj) + .debug_line 0x00000000 0x137 esp-idf/esp_libc/libesp_libc.a(rand.c.obj) + .debug_str 0x00000000 0x283 esp-idf/esp_libc/libesp_libc.a(rand.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_libc/libesp_libc.a(rand.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/esp_libc/libesp_libc.a(rand.c.obj) + .xt.prop 0x00000000 0x78 esp-idf/esp_libc/libesp_libc.a(rand.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_mem.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_mem.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_mem.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_mem.c.obj) + .xt.prop 0x00000000 0x60 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_mem.c.obj) + .literal.calculate_rinv + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + .literal.modular_inverse$isra$0 + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + .literal.esp_mpi_mul_mpi_mod + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + .literal.mbedtls_mpi_exp_mod + 0x00000000 0x70 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + .literal.mbedtls_mpi_mul_mpi + 0x00000000 0x5c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + .literal.mpi_mult_mpi_overlong$isra$0 + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + .literal.mbedtls_mpi_mul_int + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + .text.mpi_words + 0x00000000 0x1e esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + .text.calculate_rinv + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + .text.modular_inverse$isra$0 + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + .text.esp_mpi_mul_mpi_mod + 0x00000000 0xcc esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + .text.mbedtls_mpi_exp_mod + 0x00000000 0x262 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + .rodata.mbedtls_mpi_mul_mpi.str1.1 + 0x00000000 0x56 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + .text.mbedtls_mpi_mul_mpi + 0x00000000 0x177 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + .text.mpi_mult_mpi_overlong$isra$0 + 0x00000000 0x77 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + .text.mbedtls_mpi_mul_int + 0x00000000 0x1e esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + .rodata.__func__$0 + 0x00000000 0x1f esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + .debug_frame 0x00000000 0xd0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + .debug_info 0x00000000 0x16ba esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + .debug_abbrev 0x00000000 0x40d esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + .debug_loc 0x00000000 0xd0c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + .debug_aranges + 0x00000000 0x58 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + .debug_ranges 0x00000000 0x170 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + .debug_line 0x00000000 0x135a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + .debug_str 0x00000000 0x6a8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + .xt.prop 0x00000000 0x420 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + .literal.esp_mpi_enable_hardware_hw_op + 0x00000000 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) + .literal.esp_mpi_disable_hardware_hw_op + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) + .literal.esp_mpi_hardware_words + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) + .literal.esp_mpi_interrupt_enable + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) + .literal.esp_mpi_interrupt_clear + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) + .literal.esp_mpi_mul_mpi_mod_hw_op + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) + .literal.esp_mpi_mul_mpi_hw_op + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) + .literal.esp_mpi_mult_mpi_failover_mod_mult_hw_op + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) + .literal.esp_mont_hw_op + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) + .text.esp_mpi_enable_hardware_hw_op + 0x00000000 0x19 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) + .text.esp_mpi_disable_hardware_hw_op + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) + .text.esp_mpi_hardware_words + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) + .text.esp_mpi_interrupt_enable + 0x00000000 0xe esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) + .text.esp_mpi_interrupt_clear + 0x00000000 0xb esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) + .text.esp_mpi_mul_mpi_mod_hw_op + 0x00000000 0x73 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) + .text.esp_mpi_mul_mpi_hw_op + 0x00000000 0x46 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) + .text.esp_mpi_mult_mpi_failover_mod_mult_hw_op + 0x00000000 0x8e esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) + .text.esp_mont_hw_op + 0x00000000 0x96 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) + .debug_frame 0x00000000 0xe8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) + .debug_info 0x00000000 0x8cd esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) + .debug_abbrev 0x00000000 0x1df esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) + .debug_loc 0x00000000 0x140 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) + .debug_aranges + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) + .debug_ranges 0x00000000 0x50 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) + .debug_line 0x00000000 0x67e esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) + .debug_str 0x00000000 0x602 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) + .xt.lit 0x00000000 0x48 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) + .xt.prop 0x00000000 0x1f8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) + .literal.mpi_ll_write_to_mem_block + 0x00000000 0x4 esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + .literal.mpi_ll_read_from_mem_block + 0x00000000 0x18 esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + .literal.mpi_hal_enable_hardware_hw_op + 0x00000000 0x8 esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + .literal.mpi_hal_interrupt_enable + 0x00000000 0x4 esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + .literal.mpi_hal_clear_interrupt + 0x00000000 0x4 esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + .literal.mpi_hal_set_mode + 0x00000000 0x4 esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + .literal.mpi_hal_write_to_mem_block + 0x00000000 0x4 esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + .literal.mpi_hal_write_at_offset + 0x00000000 0x4 esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + .literal.mpi_hal_write_m_prime + 0x00000000 0x4 esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + .literal.mpi_hal_write_rinv + 0x00000000 0x4 esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + .literal.mpi_hal_start_op + 0x00000000 0x8 esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + .literal.mpi_hal_wait_op_complete + 0x00000000 0xc esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + .literal.mpi_hal_read_result_hw_op + 0x00000000 0x8 esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + .text.mpi_ll_write_to_mem_block + 0x00000000 0x3d esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + .rodata.mpi_ll_read_from_mem_block.str1.4 + 0x00000000 0x50 esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + .text.mpi_ll_read_from_mem_block + 0x00000000 0x3e esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + .text.mpi_hal_calc_hardware_words + 0x00000000 0xc esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + .text.mpi_hal_enable_hardware_hw_op + 0x00000000 0x11 esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + .text.mpi_hal_disable_hardware_hw_op + 0x00000000 0x5 esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + .text.mpi_hal_interrupt_enable + 0x00000000 0x1f esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + .text.mpi_hal_clear_interrupt + 0x00000000 0xf esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + .text.mpi_hal_set_mode + 0x00000000 0xd esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + .text.mpi_hal_write_to_mem_block + 0x00000000 0x16 esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + .text.mpi_hal_write_at_offset + 0x00000000 0x14 esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + .text.mpi_hal_write_m_prime + 0x00000000 0xd esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + .text.mpi_hal_write_rinv + 0x00000000 0xf esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + .text.mpi_hal_start_op + 0x00000000 0x1a esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + .text.mpi_hal_wait_op_complete + 0x00000000 0x17 esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + .text.mpi_hal_read_result_hw_op + 0x00000000 0x17 esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + .debug_frame 0x00000000 0x178 esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + .debug_info 0x00000000 0x83f esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + .debug_abbrev 0x00000000 0x2cb esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + .debug_loc 0x00000000 0x2c5 esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + .debug_aranges + 0x00000000 0x90 esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + .debug_ranges 0x00000000 0x80 esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + .debug_line 0x00000000 0x84e esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + .debug_str 0x00000000 0x617 esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + .xt.lit 0x00000000 0x68 esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + .xt.prop 0x00000000 0x348 esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + .literal.esp_crypto_sha_aes_lock_acquire + 0x00000000 0x8 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .literal.esp_crypto_sha_aes_lock_release + 0x00000000 0x8 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .literal.esp_crypto_mpi_lock_acquire + 0x00000000 0x8 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .literal.esp_crypto_mpi_lock_release + 0x00000000 0x8 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .text 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .data 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .text.esp_crypto_sha_aes_lock_acquire + 0x00000000 0xe esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .text.esp_crypto_sha_aes_lock_release + 0x00000000 0xe esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .text.esp_crypto_mpi_lock_acquire + 0x00000000 0xe esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .text.esp_crypto_mpi_lock_release + 0x00000000 0xe esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .bss.s_crypto_sha_aes_lock + 0x00000000 0x4 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .bss.s_crypto_mpi_lock + 0x00000000 0x4 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .debug_frame 0x00000000 0x70 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .debug_info 0x00000000 0x1ae esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .debug_abbrev 0x00000000 0xf0 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .debug_aranges + 0x00000000 0x38 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .debug_ranges 0x00000000 0x28 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .debug_line 0x00000000 0x19e esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .debug_str 0x00000000 0x341 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .xt.prop 0x00000000 0xd8 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .text 0x00000000 0x0 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .data 0x00000000 0x0 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .rodata.MPI_OPERATIONS_REG + 0x00000000 0x4 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .rodata.MPI_BLOCK_BASES + 0x00000000 0x10 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .debug_info 0x00000000 0x294 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .debug_abbrev 0x00000000 0x8c esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .debug_aranges + 0x00000000 0x18 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .debug_line 0x00000000 0x1b4 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .debug_str 0x00000000 0x8fb esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .comment 0x00000000 0x30 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .xt.prop 0x00000000 0x18 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opv.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opv.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opv.o) + .xt.lit 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opv.o) + .xt.prop 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opv.o) + .literal._ZSt15set_new_handlerPFvvE + 0x00000000 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + .text._ZSt15set_new_handlerPFvvE + 0x00000000 0x1e C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + .xt.lit 0x00000000 0x10 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + .xt.prop 0x00000000 0x78 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) + .eh_frame 0x00000000 0x38 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) + .xt.lit 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) + .xt.prop 0x00000000 0x6c C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_op.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_op.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_op.o) + .xt.lit 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_op.o) + .xt.prop 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_op.o) + .literal._ZSt18uncaught_exceptionv + 0x00000000 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + .literal._ZSt19uncaught_exceptionsv + 0x00000000 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + .text.__cxa_get_exception_ptr + 0x00000000 0xa C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + .text._ZSt18uncaught_exceptionv + 0x00000000 0x12 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + .text._ZSt19uncaught_exceptionsv + 0x00000000 0xd C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + .eh_frame 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + .xt.lit 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + .xt.prop 0x00000000 0x180 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + .literal.exit._GLOBAL__sub_D__ZN17__eh_globals_init7_S_initE + 0x00000000 0xc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + .text.exit._GLOBAL__sub_D__ZN17__eh_globals_init7_S_initE + 0x00000000 0x1e C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + .gcc_except_table._GLOBAL__sub_D__ZN17__eh_globals_init7_S_initE + 0x00000000 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + .dtors 0x00000000 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + .eh_frame 0x00000000 0x8c C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + .xt.lit 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + .xt.prop 0x00000000 0x168 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + .literal._ZSt13set_terminatePFvvE + 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .literal._ZN10__cxxabiv112__unexpectedEPFvvE + 0x00000000 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .literal._ZSt14set_unexpectedPFvvE + 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .literal._ZSt14get_unexpectedv + 0x00000000 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .literal.unlikely._ZSt10unexpectedv + 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .text._ZSt13set_terminatePFvvE + 0x00000000 0x25 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .text._ZN10__cxxabiv112__unexpectedEPFvvE + 0x00000000 0xc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .text._ZSt14set_unexpectedPFvvE + 0x00000000 0x25 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .text._ZSt14get_unexpectedv + 0x00000000 0x10 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .text.unlikely._ZSt10unexpectedv + 0x00000000 0xf C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .eh_frame 0x00000000 0x70 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .xt.lit 0x00000000 0x40 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .xt.prop 0x00000000 0x18c C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_unex_handler.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_unex_handler.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_unex_handler.o) + .data._ZN10__cxxabiv120__unexpected_handlerE + 0x00000000 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_unex_handler.o) + .debug_info 0x00000000 0x3c1 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_unex_handler.o) + .debug_abbrev 0x00000000 0x27e C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_unex_handler.o) + .debug_aranges + 0x00000000 0x18 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_unex_handler.o) + .debug_line 0x00000000 0x7c C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_unex_handler.o) + .debug_str 0x00000000 0x68b C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_unex_handler.o) + .debug_line_str + 0x00000000 0x44c C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_unex_handler.o) + .comment 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_unex_handler.o) + .xt.prop 0x00000000 0xc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_unex_handler.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opv.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opv.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opv.o) + .eh_frame 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opv.o) + .xt.lit 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opv.o) + .xt.prop 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opv.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_term_handler.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_term_handler.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_term_handler.o) + .xt.prop 0x00000000 0xc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_term_handler.o) + .group 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + .group 0x00000000 0x14 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + .group 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + .group 0x00000000 0x14 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + .eh_frame 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + .xt.lit 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + .xt.prop 0x00000000 0x54 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + .group 0x00000000 0x14 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + .eh_frame 0x00000000 0x58 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + .xt.lit 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + .xt.prop 0x00000000 0x1a4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + .group 0x00000000 0x14 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + .literal._ZNSt9type_infoD0Ev + 0x00000000 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + .literal._ZNKSt9type_info10__do_catchEPKS_PPvj + 0x00000000 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + .text._ZNKSt9type_info11__do_upcastEPKN10__cxxabiv117__class_type_infoEPPv + 0x00000000 0x7 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + .text._ZNSt9type_infoD0Ev + 0x00000000 0xf C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + .text._ZNKSt9type_info10__do_catchEPKS_PPvj + 0x00000000 0x2e C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + .rodata._ZTVSt9type_info + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + .xt.lit 0x00000000 0x10 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + .xt.prop 0x00000000 0xcc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + .xt.prop._ZTVSt9type_info + 0x00000000 0xc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + .group 0x00000000 0x14 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + .xt.lit 0x00000000 0x18 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + .xt.prop 0x00000000 0x90 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + .group 0x00000000 0x14 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + .eh_frame 0x00000000 0x40 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + .xt.lit 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + .xt.prop 0x00000000 0x1bc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_ops.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_ops.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_ops.o) + .xt.lit 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_ops.o) + .xt.prop 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_ops.o) + .group 0x00000000 0x14 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .group 0x00000000 0x14 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .group 0x00000000 0x14 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .group 0x00000000 0x14 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .literal._ZNKSt9exception4whatEv + 0x00000000 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .literal._ZNKSt13bad_exception4whatEv + 0x00000000 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .literal._ZNSt9exceptionD0Ev + 0x00000000 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .literal._ZNSt13bad_exceptionD0Ev + 0x00000000 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .literal._ZN10__cxxabiv115__forced_unwindD0Ev + 0x00000000 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .literal._ZN10__cxxabiv119__foreign_exceptionD0Ev + 0x00000000 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .text._ZNSt13bad_exceptionD2Ev + 0x00000000 0x5 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .rodata._ZNKSt9exception4whatEv.str1.1 + 0x00000000 0xf C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .text._ZNKSt9exception4whatEv + 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .rodata._ZNKSt13bad_exception4whatEv.str1.1 + 0x00000000 0x13 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .text._ZNKSt13bad_exception4whatEv + 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .text._ZNSt9exceptionD0Ev + 0x00000000 0xf C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .text._ZNSt13bad_exceptionD0Ev + 0x00000000 0xf C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .text._ZN10__cxxabiv115__forced_unwindD2Ev + 0x00000000 0x5 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .text._ZN10__cxxabiv115__forced_unwindD0Ev + 0x00000000 0xf C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .text._ZN10__cxxabiv119__foreign_exceptionD2Ev + 0x00000000 0x5 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .text._ZN10__cxxabiv119__foreign_exceptionD0Ev + 0x00000000 0xf C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .text._ZGTtNKSt9exceptionD1Ev + 0x00000000 0x5 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .text._ZGTtNKSt13bad_exceptionD1Ev + 0x00000000 0x5 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .rodata._ZTVSt9exception + 0x00000000 0x14 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .rodata._ZTVSt13bad_exception + 0x00000000 0x14 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .rodata._ZTVN10__cxxabiv115__forced_unwindE + 0x00000000 0x14 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .rodata._ZTVN10__cxxabiv119__foreign_exceptionE + 0x00000000 0x14 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .xt.lit 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .xt.prop 0x00000000 0x1f8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .xt.prop._ZTVSt9exception + 0x00000000 0xc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .xt.prop._ZTVSt13bad_exception + 0x00000000 0xc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .xt.prop._ZTVN10__cxxabiv115__forced_unwindE + 0x00000000 0xc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .xt.prop._ZTVN10__cxxabiv119__foreign_exceptionE + 0x00000000 0xc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .text 0x00000000 0x14 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + .debug_line 0x00000000 0x6f C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + .debug_line_str + 0x00000000 0xcd C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + .debug_info 0x00000000 0x31 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + .debug_abbrev 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + .debug_str 0x00000000 0xe4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + .xt.prop 0x00000000 0x24 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + .text 0x00000000 0x22 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_bswapdi2.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_bswapdi2.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_bswapdi2.o) + .debug_line 0x00000000 0x8d C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_bswapdi2.o) + .debug_line_str + 0x00000000 0xcd C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_bswapdi2.o) + .debug_info 0x00000000 0x31 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_bswapdi2.o) + .debug_abbrev 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_bswapdi2.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_bswapdi2.o) + .debug_str 0x00000000 0xe4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_bswapdi2.o) + .xt.prop 0x00000000 0x24 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_bswapdi2.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + .xt.prop 0x00000000 0x24 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + .literal 0x00000000 0x10 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + .text 0x00000000 0x312 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + .debug_line 0x00000000 0x6b1 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + .debug_line_str + 0x00000000 0xce C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + .debug_info 0x00000000 0x25 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + .debug_abbrev 0x00000000 0x14 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + .debug_str 0x00000000 0xda C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + .xt.lit 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + .xt.prop 0x00000000 0x420 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + .literal 0x00000000 0xc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + .text 0x00000000 0x1ff C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + .debug_line 0x00000000 0x478 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + .debug_line_str + 0x00000000 0xce C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + .debug_info 0x00000000 0x25 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + .debug_abbrev 0x00000000 0x14 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + .debug_str 0x00000000 0xda C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + .xt.lit 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + .xt.prop 0x00000000 0x228 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + .literal 0x00000000 0x10 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + .text 0x00000000 0x213 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + .debug_line 0x00000000 0x4a1 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + .debug_line_str + 0x00000000 0xce C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + .debug_info 0x00000000 0x25 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + .debug_abbrev 0x00000000 0x14 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + .debug_str 0x00000000 0xda C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + .xt.lit 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + .xt.prop 0x00000000 0x264 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + .literal 0x00000000 0x18 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_cmpdf2.o) + .text 0x00000000 0x176 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_cmpdf2.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_cmpdf2.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_cmpdf2.o) + .debug_line 0x00000000 0x36f C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_cmpdf2.o) + .debug_line_str + 0x00000000 0xce C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_cmpdf2.o) + .debug_info 0x00000000 0x25 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_cmpdf2.o) + .debug_abbrev 0x00000000 0x14 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_cmpdf2.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_cmpdf2.o) + .debug_str 0x00000000 0xda C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_cmpdf2.o) + .xt.lit 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_cmpdf2.o) + .xt.prop 0x00000000 0x288 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_cmpdf2.o) + .literal 0x00000000 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + .text 0x00000000 0x4c C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + .debug_line 0x00000000 0xe7 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + .debug_line_str + 0x00000000 0xce C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + .debug_info 0x00000000 0x24 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + .debug_abbrev 0x00000000 0x14 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + .debug_str 0x00000000 0xda C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + .xt.lit 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + .xt.prop 0x00000000 0x6c C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + .literal 0x00000000 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + .text 0x00000000 0x5d C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + .debug_line 0x00000000 0x117 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + .debug_line_str + 0x00000000 0xce C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + .debug_info 0x00000000 0x24 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + .debug_abbrev 0x00000000 0x14 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + .debug_str 0x00000000 0xda C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + .xt.lit 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + .xt.prop 0x00000000 0xa8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + .text 0x00000000 0x3d C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + .debug_line 0x00000000 0xc9 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + .debug_line_str + 0x00000000 0xce C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + .debug_info 0x00000000 0x24 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + .debug_abbrev 0x00000000 0x14 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + .debug_str 0x00000000 0xda C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + .xt.prop 0x00000000 0x54 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + .literal 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_truncdfsf2.o) + .text 0x00000000 0xa4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_truncdfsf2.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_truncdfsf2.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_truncdfsf2.o) + .debug_line 0x00000000 0x195 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_truncdfsf2.o) + .debug_line_str + 0x00000000 0xce C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_truncdfsf2.o) + .debug_info 0x00000000 0x25 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_truncdfsf2.o) + .debug_abbrev 0x00000000 0x14 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_truncdfsf2.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_truncdfsf2.o) + .debug_str 0x00000000 0xda C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_truncdfsf2.o) + .xt.lit 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_truncdfsf2.o) + .xt.prop 0x00000000 0xb4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_truncdfsf2.o) + .literal 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + .text 0x00000000 0x62 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + .debug_line 0x00000000 0x117 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + .debug_line_str + 0x00000000 0xce C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + .debug_info 0x00000000 0x24 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + .debug_abbrev 0x00000000 0x14 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + .debug_str 0x00000000 0xda C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + .xt.lit 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + .xt.prop 0x00000000 0x6c C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + .literal 0x00000000 0xc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .text 0x00000000 0x37 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_frame 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_info 0x00000000 0xd3 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_abbrev 0x00000000 0x6e C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_loclists + 0x00000000 0xf5 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_line 0x00000000 0xef C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_str 0x00000000 0x18e C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .debug_line_str + 0x00000000 0x18e C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .comment 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .xt.lit 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .xt.prop 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .text 0x00000000 0x286 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + .debug_frame 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + .eh_frame 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + .debug_info 0x00000000 0x6ce C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + .debug_abbrev 0x00000000 0x1a3 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + .debug_loclists + 0x00000000 0x601 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + .debug_rnglists + 0x00000000 0x47 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + .debug_line 0x00000000 0xbc0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + .debug_str 0x00000000 0x203 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + .debug_line_str + 0x00000000 0x18e C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + .comment 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + .xt.prop 0x00000000 0x270 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + .text 0x00000000 0x2fe C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_moddi3.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_moddi3.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_moddi3.o) + .debug_frame 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_moddi3.o) + .eh_frame 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_moddi3.o) + .debug_info 0x00000000 0x71f C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_moddi3.o) + .debug_abbrev 0x00000000 0x1ac C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_moddi3.o) + .debug_loclists + 0x00000000 0x500 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_moddi3.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_moddi3.o) + .debug_rnglists + 0x00000000 0x41 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_moddi3.o) + .debug_line 0x00000000 0xc0e C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_moddi3.o) + .debug_str 0x00000000 0x203 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_moddi3.o) + .debug_line_str + 0x00000000 0x18e C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_moddi3.o) + .comment 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_moddi3.o) + .xt.prop 0x00000000 0x234 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_moddi3.o) + .text 0x00000000 0x1fa C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_frame 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .eh_frame 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_info 0x00000000 0x650 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_abbrev 0x00000000 0x195 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_loclists + 0x00000000 0x496 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_rnglists + 0x00000000 0x47 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_line 0x00000000 0x93b C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_str 0x00000000 0x204 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .debug_line_str + 0x00000000 0x18e C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .comment 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .xt.prop 0x00000000 0x1c8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .text 0x00000000 0x25e C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + .debug_frame 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + .eh_frame 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + .debug_info 0x00000000 0x6c4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + .debug_abbrev 0x00000000 0x1ad C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + .debug_loclists + 0x00000000 0x4b3 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + .debug_rnglists + 0x00000000 0x43 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + .debug_line 0x00000000 0xa01 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + .debug_str 0x00000000 0x204 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + .debug_line_str + 0x00000000 0x18e C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + .comment 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + .xt.prop 0x00000000 0x1b0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + .literal._Z12abort_returnIPPvET_v + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal._Z12abort_returnIPvET_v + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal._Z12abort_returnIP11frame_stateET_v + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.abort_expect_void + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.abort_expect_void_and_return + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.forward_abort_uw_ctx + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap___register_frame_info_bases + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap___register_frame_info + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap___register_frame_info_table_bases + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap___register_frame_info_table + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap__Unwind_Find_FDE + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap__Unwind_GetGR + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap__Unwind_GetCFA + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap__Unwind_SetIP + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap__Unwind_SetGR + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap__Unwind_GetIPInfo + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal._Z17__frame_state_forPvP11frame_state + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap__Unwind_Resume + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap__Unwind_RaiseException + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap__Unwind_ForcedUnwind + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__wrap__Unwind_Backtrace + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .data 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .bss 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text._Z12abort_returnIPPvET_v + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text._Z12abort_returnIPvET_v + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text._Z12abort_returnIP11frame_stateET_v + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.abort_expect_void + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.abort_expect_void_and_return + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.forward_abort_uw_ctx + 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap___register_frame_info_bases + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap___register_frame_info + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap___register_frame_info_table_bases + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap___register_frame_info_table + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_Find_FDE + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_GetGR + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_GetCFA + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_SetIP + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_SetGR + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_GetIPInfo + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text._Z17__frame_state_forPvP11frame_state + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_Resume + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_RaiseException + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_ForcedUnwind + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__wrap__Unwind_Backtrace + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .xt.lit 0x00000000 0xd0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .xt.prop 0x00000000 0x3a8 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memcpy.S.o) + .text 0x00000000 0x135 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memcpy.S.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memcpy.S.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memcpy.S.o) + .debug_line 0x00000000 0x30f C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memcpy.S.o) + .debug_line_str + 0x00000000 0xab C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memcpy.S.o) + .debug_info 0x00000000 0x33 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memcpy.S.o) + .debug_abbrev 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memcpy.S.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memcpy.S.o) + .debug_str 0x00000000 0xbe C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memcpy.S.o) + .xt.prop 0x00000000 0x15c C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memcpy.S.o) + .literal 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memset.S.o) + .text 0x00000000 0x74 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memset.S.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memset.S.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memset.S.o) + .debug_line 0x00000000 0x146 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memset.S.o) + .debug_line_str + 0x00000000 0xab C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memset.S.o) + .debug_info 0x00000000 0x31 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memset.S.o) + .debug_abbrev 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memset.S.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memset.S.o) + .debug_str 0x00000000 0xbe C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memset.S.o) + .xt.prop 0x00000000 0xd8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memset.S.o) + .literal 0x00000000 0x1c C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strcmp.S.o) + .text 0x00000000 0x123 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strcmp.S.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strcmp.S.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strcmp.S.o) + .debug_line 0x00000000 0x2b4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strcmp.S.o) + .debug_line_str + 0x00000000 0xab C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strcmp.S.o) + .debug_info 0x00000000 0x33 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strcmp.S.o) + .debug_abbrev 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strcmp.S.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strcmp.S.o) + .debug_str 0x00000000 0xbe C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strcmp.S.o) + .xt.lit 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strcmp.S.o) + .xt.prop 0x00000000 0x120 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strcmp.S.o) + .literal 0x00000000 0xc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strcpy.S.o) + .text 0x00000000 0x90 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strcpy.S.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strcpy.S.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strcpy.S.o) + .debug_line 0x00000000 0x182 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strcpy.S.o) + .debug_line_str + 0x00000000 0xab C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strcpy.S.o) + .debug_info 0x00000000 0x33 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strcpy.S.o) + .debug_abbrev 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strcpy.S.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strcpy.S.o) + .debug_str 0x00000000 0xbe C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strcpy.S.o) + .xt.lit 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strcpy.S.o) + .xt.prop 0x00000000 0x114 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strcpy.S.o) + .literal 0x00000000 0xc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strlen.S.o) + .text 0x00000000 0x63 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strlen.S.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strlen.S.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strlen.S.o) + .debug_line 0x00000000 0x122 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strlen.S.o) + .debug_line_str + 0x00000000 0xab C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strlen.S.o) + .debug_info 0x00000000 0x31 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strlen.S.o) + .debug_abbrev 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strlen.S.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strlen.S.o) + .debug_str 0x00000000 0xbe C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strlen.S.o) + .xt.lit 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strlen.S.o) + .xt.prop 0x00000000 0xc0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strlen.S.o) + .literal 0x00000000 0xc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strncpy.S.o) + .text 0x00000000 0x113 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strncpy.S.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strncpy.S.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strncpy.S.o) + .debug_line 0x00000000 0x2a8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strncpy.S.o) + .debug_line_str + 0x00000000 0xac C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strncpy.S.o) + .debug_info 0x00000000 0x33 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strncpy.S.o) + .debug_abbrev 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strncpy.S.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strncpy.S.o) + .debug_str 0x00000000 0xc0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strncpy.S.o) + .xt.lit 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strncpy.S.o) + .xt.prop 0x00000000 0x1a4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strncpy.S.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_ctype_ctype_.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_ctype_ctype_.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_ctype_ctype_.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_ctype_tolower.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_ctype_tolower.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_ctype_tolower.c.o) + .xt.prop 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_ctype_tolower.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_misc_init.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_misc_init.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_misc_init.c.o) + .xt.lit 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_misc_init.c.o) + .xt.prop 0x00000000 0x48 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_misc_init.c.o) + .literal.qsort + 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_search_qsort.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_search_qsort.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_search_qsort.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_search_qsort.c.o) + .text.med3$constprop$0 + 0x00000000 0x42 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_search_qsort.c.o) + .text.swapfunc$isra$0 + 0x00000000 0x3b C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_search_qsort.c.o) + .text.qsort 0x00000000 0x2c8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_search_qsort.c.o) + .debug_frame 0x00000000 0x58 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_search_qsort.c.o) + .debug_info 0x00000000 0x983 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_search_qsort.c.o) + .debug_abbrev 0x00000000 0x294 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_search_qsort.c.o) + .debug_loclists + 0x00000000 0x606 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_search_qsort.c.o) + .debug_aranges + 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_search_qsort.c.o) + .debug_rnglists + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_search_qsort.c.o) + .debug_line 0x00000000 0xa05 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_search_qsort.c.o) + .debug_str 0x00000000 0x242 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_search_qsort.c.o) + .debug_line_str + 0x00000000 0x24a C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_search_qsort.c.o) + .comment 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_search_qsort.c.o) + .xt.lit 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_search_qsort.c.o) + .xt.prop 0x00000000 0x378 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_search_qsort.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_div.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_div.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_div.c.o) + .text.div 0x00000000 0xd C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_div.c.o) + .debug_frame 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_div.c.o) + .debug_info 0x00000000 0xf3 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_div.c.o) + .debug_abbrev 0x00000000 0xc7 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_div.c.o) + .debug_loclists + 0x00000000 0x6e C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_div.c.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_div.c.o) + .debug_rnglists + 0x00000000 0x13 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_div.c.o) + .debug_line 0x00000000 0x99 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_div.c.o) + .debug_str 0x00000000 0x194 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_div.c.o) + .debug_line_str + 0x00000000 0x186 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_div.c.o) + .comment 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_div.c.o) + .xt.prop 0x00000000 0x24 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_div.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_environ.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_environ.c.o) + .xt.prop 0x00000000 0x18 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_environ.c.o) + .literal.__itoa + 0x00000000 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_itoa.c.o) + .literal.itoa 0x00000000 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_itoa.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_itoa.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_itoa.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_itoa.c.o) + .text.__itoa 0x00000000 0x3c C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_itoa.c.o) + .text.itoa 0x00000000 0x14 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_itoa.c.o) + .debug_frame 0x00000000 0x40 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_itoa.c.o) + .debug_info 0x00000000 0x17d C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_itoa.c.o) + .debug_abbrev 0x00000000 0x11f C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_itoa.c.o) + .debug_loclists + 0x00000000 0xb2 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_itoa.c.o) + .debug_aranges + 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_itoa.c.o) + .debug_rnglists + 0x00000000 0x19 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_itoa.c.o) + .debug_line 0x00000000 0x15e C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_itoa.c.o) + .debug_str 0x00000000 0x1ad C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_itoa.c.o) + .debug_line_str + 0x00000000 0x189 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_itoa.c.o) + .comment 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_itoa.c.o) + .xt.lit 0x00000000 0x10 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_itoa.c.o) + .xt.prop 0x00000000 0x90 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_itoa.c.o) + .literal.__utoa + 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_utoa.c.o) + .literal.utoa 0x00000000 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_utoa.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_utoa.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_utoa.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_utoa.c.o) + .rodata.str1.1 + 0x00000000 0x25 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_utoa.c.o) + .text.__utoa 0x00000000 0x6a C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_utoa.c.o) + .text.utoa 0x00000000 0x14 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_utoa.c.o) + .debug_frame 0x00000000 0x40 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_utoa.c.o) + .debug_info 0x00000000 0x1c4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_utoa.c.o) + .debug_abbrev 0x00000000 0x11b C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_utoa.c.o) + .debug_loclists + 0x00000000 0xdc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_utoa.c.o) + .debug_aranges + 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_utoa.c.o) + .debug_rnglists + 0x00000000 0x19 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_utoa.c.o) + .debug_line 0x00000000 0x228 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_utoa.c.o) + .debug_str 0x00000000 0x1c8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_utoa.c.o) + .debug_line_str + 0x00000000 0x154 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_utoa.c.o) + .comment 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_utoa.c.o) + .xt.lit 0x00000000 0x10 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_utoa.c.o) + .xt.prop 0x00000000 0x90 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_utoa.c.o) + .literal.bzero + 0x00000000 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_bzero.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_bzero.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_bzero.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_bzero.c.o) + .text.bzero 0x00000000 0x12 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_bzero.c.o) + .debug_frame 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_bzero.c.o) + .debug_info 0x00000000 0xf7 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_bzero.c.o) + .debug_abbrev 0x00000000 0xc4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_bzero.c.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_bzero.c.o) + .debug_rnglists + 0x00000000 0x13 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_bzero.c.o) + .debug_line 0x00000000 0x8c C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_bzero.c.o) + .debug_str 0x00000000 0x1af C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_bzero.c.o) + .debug_line_str + 0x00000000 0x200 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_bzero.c.o) + .comment 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_bzero.c.o) + .xt.lit 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_bzero.c.o) + .xt.prop 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_bzero.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memcmp.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memcmp.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memcmp.c.o) + .text.memcmp 0x00000000 0x26 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memcmp.c.o) + .debug_frame 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memcmp.c.o) + .debug_info 0x00000000 0xfd C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memcmp.c.o) + .debug_abbrev 0x00000000 0xa7 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memcmp.c.o) + .debug_loclists + 0x00000000 0x89 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memcmp.c.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memcmp.c.o) + .debug_rnglists + 0x00000000 0x13 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memcmp.c.o) + .debug_line 0x00000000 0xf0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memcmp.c.o) + .debug_str 0x00000000 0x196 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memcmp.c.o) + .debug_line_str + 0x00000000 0x1b8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memcmp.c.o) + .comment 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memcmp.c.o) + .xt.prop 0x00000000 0x54 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memcmp.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memmove.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memmove.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memmove.c.o) + .text.memmove 0x00000000 0x41 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memmove.c.o) + .debug_frame 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memmove.c.o) + .debug_info 0x00000000 0x10e C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memmove.c.o) + .debug_abbrev 0x00000000 0xb2 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memmove.c.o) + .debug_loclists + 0x00000000 0xcc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memmove.c.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memmove.c.o) + .debug_rnglists + 0x00000000 0x13 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memmove.c.o) + .debug_line 0x00000000 0x11f C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memmove.c.o) + .debug_str 0x00000000 0x1bc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memmove.c.o) + .debug_line_str + 0x00000000 0x1bb C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memmove.c.o) + .comment 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memmove.c.o) + .xt.prop 0x00000000 0x78 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memmove.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcat.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcat.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcat.c.o) + .text.strcat 0x00000000 0x22 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcat.c.o) + .debug_frame 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcat.c.o) + .debug_info 0x00000000 0xdf C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcat.c.o) + .debug_abbrev 0x00000000 0x8c C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcat.c.o) + .debug_loclists + 0x00000000 0x73 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcat.c.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcat.c.o) + .debug_rnglists + 0x00000000 0x13 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcat.c.o) + .debug_line 0x00000000 0xd1 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcat.c.o) + .debug_str 0x00000000 0x18f C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcat.c.o) + .debug_line_str + 0x00000000 0x14f C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcat.c.o) + .comment 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcat.c.o) + .xt.prop 0x00000000 0x3c C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcat.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strchr.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strchr.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strchr.c.o) + .text.strchr 0x00000000 0x1d C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strchr.c.o) + .debug_frame 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strchr.c.o) + .debug_info 0x00000000 0xf2 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strchr.c.o) + .debug_abbrev 0x00000000 0x88 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strchr.c.o) + .debug_loclists + 0x00000000 0x5c C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strchr.c.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strchr.c.o) + .debug_rnglists + 0x00000000 0x13 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strchr.c.o) + .debug_line 0x00000000 0xcd C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strchr.c.o) + .debug_str 0x00000000 0x18f C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strchr.c.o) + .debug_line_str + 0x00000000 0x14f C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strchr.c.o) + .comment 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strchr.c.o) + .xt.prop 0x00000000 0x54 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strchr.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcspn.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcspn.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcspn.c.o) + .text.strcspn 0x00000000 0x25 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcspn.c.o) + .debug_frame 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcspn.c.o) + .debug_info 0x00000000 0xf7 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcspn.c.o) + .debug_abbrev 0x00000000 0xb6 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcspn.c.o) + .debug_loclists + 0x00000000 0x51 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcspn.c.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcspn.c.o) + .debug_rnglists + 0x00000000 0x13 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcspn.c.o) + .debug_line 0x00000000 0xea C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcspn.c.o) + .debug_str 0x00000000 0x197 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcspn.c.o) + .debug_line_str + 0x00000000 0x1bb C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcspn.c.o) + .comment 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcspn.c.o) + .xt.prop 0x00000000 0x54 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcspn.c.o) + .literal.strerror_r + 0x00000000 0xc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror_r.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror_r.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror_r.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror_r.c.o) + .text.strerror_r + 0x00000000 0x2a C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror_r.c.o) + .debug_frame 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror_r.c.o) + .debug_info 0x00000000 0x18b C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror_r.c.o) + .debug_abbrev 0x00000000 0xf0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror_r.c.o) + .debug_loclists + 0x00000000 0x34 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror_r.c.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror_r.c.o) + .debug_rnglists + 0x00000000 0x13 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror_r.c.o) + .debug_line 0x00000000 0xbd C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror_r.c.o) + .debug_str 0x00000000 0x1c8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror_r.c.o) + .debug_line_str + 0x00000000 0x20c C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror_r.c.o) + .comment 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror_r.c.o) + .xt.lit 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror_r.c.o) + .xt.prop 0x00000000 0x3c C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror_r.c.o) + .literal.strlcat + 0x00000000 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strlcat.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strlcat.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strlcat.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strlcat.c.o) + .text.strlcat 0x00000000 0x53 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strlcat.c.o) + .debug_frame 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strlcat.c.o) + .debug_info 0x00000000 0x14f C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strlcat.c.o) + .debug_abbrev 0x00000000 0xe4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strlcat.c.o) + .debug_loclists + 0x00000000 0x10f C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strlcat.c.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strlcat.c.o) + .debug_rnglists + 0x00000000 0x13 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strlcat.c.o) + .debug_line 0x00000000 0x1cb C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strlcat.c.o) + .debug_str 0x00000000 0x1b3 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strlcat.c.o) + .debug_line_str + 0x00000000 0x1fb C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strlcat.c.o) + .comment 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strlcat.c.o) + .xt.lit 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strlcat.c.o) + .xt.prop 0x00000000 0xb4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strlcat.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strlcpy.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strlcpy.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strlcpy.c.o) + .text.strlcpy 0x00000000 0x33 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strlcpy.c.o) + .debug_frame 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strlcpy.c.o) + .debug_info 0x00000000 0x10f C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strlcpy.c.o) + .debug_abbrev 0x00000000 0xab C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strlcpy.c.o) + .debug_loclists + 0x00000000 0x93 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strlcpy.c.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strlcpy.c.o) + .debug_rnglists + 0x00000000 0x13 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strlcpy.c.o) + .debug_line 0x00000000 0x12a C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strlcpy.c.o) + .debug_str 0x00000000 0x1a8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strlcpy.c.o) + .debug_line_str + 0x00000000 0x1bb C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strlcpy.c.o) + .comment 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strlcpy.c.o) + .xt.prop 0x00000000 0x60 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strlcpy.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strncasecmp.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strncasecmp.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strncasecmp.c.o) + .xt.prop 0x00000000 0x3c C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strncasecmp.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strncmp.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strncmp.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strncmp.c.o) + .text.strncmp 0x00000000 0x36 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strncmp.c.o) + .debug_frame 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strncmp.c.o) + .debug_info 0x00000000 0xdc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strncmp.c.o) + .debug_abbrev 0x00000000 0x7f C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strncmp.c.o) + .debug_loclists + 0x00000000 0xb5 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strncmp.c.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strncmp.c.o) + .debug_rnglists + 0x00000000 0x13 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strncmp.c.o) + .debug_line 0x00000000 0xf8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strncmp.c.o) + .debug_str 0x00000000 0x197 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strncmp.c.o) + .debug_line_str + 0x00000000 0x1bb C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strncmp.c.o) + .comment 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strncmp.c.o) + .xt.prop 0x00000000 0x48 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strncmp.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strstr.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strstr.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strstr.c.o) + .text.strstr 0x00000000 0x36 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strstr.c.o) + .debug_frame 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strstr.c.o) + .debug_info 0x00000000 0xf1 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strstr.c.o) + .debug_abbrev 0x00000000 0xa7 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strstr.c.o) + .debug_loclists + 0x00000000 0x3b C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strstr.c.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strstr.c.o) + .debug_rnglists + 0x00000000 0x13 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strstr.c.o) + .debug_line 0x00000000 0x12b C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strstr.c.o) + .debug_str 0x00000000 0x196 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strstr.c.o) + .debug_line_str + 0x00000000 0x1b8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strstr.c.o) + .comment 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strstr.c.o) + .xt.prop 0x00000000 0x78 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strstr.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_time_time.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_time_time.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_time_time.c.o) + .xt.lit 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_time_time.c.o) + .xt.prop 0x00000000 0x48 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_time_time.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + .xt.lit 0x00000000 0x40 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + .xt.prop 0x00000000 0x3cc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fclose.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fclose.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fclose.c.o) + .xt.lit 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fclose.c.o) + .xt.prop 0x00000000 0x54 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fclose.c.o) + .literal.ferror + 0x00000000 0xc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ferror.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ferror.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ferror.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ferror.c.o) + .text.ferror_unlocked + 0x00000000 0xd C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ferror.c.o) + .text.ferror 0x00000000 0x34 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ferror.c.o) + .debug_frame 0x00000000 0x40 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ferror.c.o) + .debug_info 0x00000000 0x2f9 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ferror.c.o) + .debug_abbrev 0x00000000 0x1b7 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ferror.c.o) + .debug_loclists + 0x00000000 0x72 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ferror.c.o) + .debug_aranges + 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ferror.c.o) + .debug_rnglists + 0x00000000 0x19 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ferror.c.o) + .debug_line 0x00000000 0x19c C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ferror.c.o) + .debug_str 0x00000000 0x2a3 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ferror.c.o) + .debug_line_str + 0x00000000 0x248 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ferror.c.o) + .comment 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ferror.c.o) + .xt.lit 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ferror.c.o) + .xt.prop 0x00000000 0x6c C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ferror.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fflush.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fflush.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fflush.c.o) + .xt.lit 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fflush.c.o) + .xt.prop 0x00000000 0x48 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fflush.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgets.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgets.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgets.c.o) + .xt.lit 0x00000000 0x10 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgets.c.o) + .xt.prop 0x00000000 0xf0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgets.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_flockfile_init.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_flockfile_init.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_flockfile_init.c.o) + .xt.lit 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_flockfile_init.c.o) + .xt.prop 0x00000000 0x3c C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_flockfile_init.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fopen.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fopen.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fopen.c.o) + .xt.lit 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fopen.c.o) + .xt.prop 0x00000000 0x54 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fopen.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fprintf.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fprintf.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fprintf.c.o) + .xt.lit 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fprintf.c.o) + .xt.prop 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fprintf.c.o) + .literal.putc 0x00000000 0x10 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputc.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputc.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputc.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputc.c.o) + .text.putc_unlocked + 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputc.c.o) + .text.putc 0x00000000 0x36 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputc.c.o) + .debug_frame 0x00000000 0x40 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputc.c.o) + .debug_info 0x00000000 0x302 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputc.c.o) + .debug_abbrev 0x00000000 0x1a0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputc.c.o) + .debug_loclists + 0x00000000 0x67 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputc.c.o) + .debug_aranges + 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputc.c.o) + .debug_rnglists + 0x00000000 0x19 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputc.c.o) + .debug_line 0x00000000 0x1bc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputc.c.o) + .debug_str 0x00000000 0x29f C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputc.c.o) + .debug_line_str + 0x00000000 0x245 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputc.c.o) + .comment 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputc.c.o) + .xt.lit 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputc.c.o) + .xt.prop 0x00000000 0x84 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputc.c.o) + .literal.fputs + 0x00000000 0xc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputs.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputs.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputs.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputs.c.o) + .text.fputs 0x00000000 0x5a C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputs.c.o) + .debug_frame 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputs.c.o) + .debug_info 0x00000000 0x2ee C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputs.c.o) + .debug_abbrev 0x00000000 0x1aa C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputs.c.o) + .debug_loclists + 0x00000000 0x86 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputs.c.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputs.c.o) + .debug_rnglists + 0x00000000 0x13 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputs.c.o) + .debug_line 0x00000000 0x201 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputs.c.o) + .debug_str 0x00000000 0x297 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputs.c.o) + .debug_line_str + 0x00000000 0x245 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputs.c.o) + .comment 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputs.c.o) + .xt.lit 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputs.c.o) + .xt.prop 0x00000000 0x84 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputs.c.o) + .literal.__funlockfile$isra$0 + 0x00000000 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fread.c.o) + .literal.fread + 0x00000000 0x34 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fread.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fread.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fread.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fread.c.o) + .text.__funlockfile$isra$0 + 0x00000000 0x10 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fread.c.o) + .text.fread 0x00000000 0x214 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fread.c.o) + .debug_frame 0x00000000 0x40 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fread.c.o) + .debug_info 0x00000000 0x9a0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fread.c.o) + .debug_abbrev 0x00000000 0x34f C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fread.c.o) + .debug_loclists + 0x00000000 0x2dd C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fread.c.o) + .debug_aranges + 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fread.c.o) + .debug_rnglists + 0x00000000 0x70 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fread.c.o) + .debug_line 0x00000000 0x730 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fread.c.o) + .debug_str 0x00000000 0x511 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fread.c.o) + .debug_line_str + 0x00000000 0x2ee C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fread.c.o) + .comment 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fread.c.o) + .xt.lit 0x00000000 0x10 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fread.c.o) + .xt.prop 0x00000000 0x1d4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fread.c.o) + .literal.__funlockfile$isra$0 + 0x00000000 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fwrite.c.o) + .literal.fwrite + 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fwrite.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fwrite.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fwrite.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fwrite.c.o) + .text.__funlockfile$isra$0 + 0x00000000 0x10 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fwrite.c.o) + .text.fwrite 0x00000000 0x152 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fwrite.c.o) + .debug_frame 0x00000000 0x40 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fwrite.c.o) + .debug_info 0x00000000 0x82f C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fwrite.c.o) + .debug_abbrev 0x00000000 0x28e C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fwrite.c.o) + .debug_loclists + 0x00000000 0x1f2 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fwrite.c.o) + .debug_aranges + 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fwrite.c.o) + .debug_rnglists + 0x00000000 0x32 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fwrite.c.o) + .debug_line 0x00000000 0x55b C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fwrite.c.o) + .debug_str 0x00000000 0x40b C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fwrite.c.o) + .debug_line_str + 0x00000000 0x2e5 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fwrite.c.o) + .comment 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fwrite.c.o) + .xt.lit 0x00000000 0x10 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fwrite.c.o) + .xt.prop 0x00000000 0x18c C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fwrite.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_printf.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_printf.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_printf.c.o) + .xt.lit 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_printf.c.o) + .xt.prop 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_printf.c.o) + .literal.putchar + 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_putchar.c.o) + .literal.putchar_unlocked + 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_putchar.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_putchar.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_putchar.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_putchar.c.o) + .text.putchar 0x00000000 0x14 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_putchar.c.o) + .text.putchar_unlocked + 0x00000000 0x14 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_putchar.c.o) + .debug_frame 0x00000000 0x40 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_putchar.c.o) + .debug_info 0x00000000 0x226 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_putchar.c.o) + .debug_abbrev 0x00000000 0x125 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_putchar.c.o) + .debug_loclists + 0x00000000 0x46 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_putchar.c.o) + .debug_aranges + 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_putchar.c.o) + .debug_rnglists + 0x00000000 0x19 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_putchar.c.o) + .debug_line 0x00000000 0xec C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_putchar.c.o) + .debug_str 0x00000000 0x234 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_putchar.c.o) + .debug_line_str + 0x00000000 0x231 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_putchar.c.o) + .comment 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_putchar.c.o) + .xt.lit 0x00000000 0x10 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_putchar.c.o) + .xt.prop 0x00000000 0x60 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_putchar.c.o) + .literal.puts 0x00000000 0x10 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_puts.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_puts.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_puts.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_puts.c.o) + .text.puts 0x00000000 0x6c C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_puts.c.o) + .debug_frame 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_puts.c.o) + .debug_info 0x00000000 0x31c C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_puts.c.o) + .debug_abbrev 0x00000000 0x1b7 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_puts.c.o) + .debug_loclists + 0x00000000 0xa0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_puts.c.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_puts.c.o) + .debug_rnglists + 0x00000000 0x13 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_puts.c.o) + .debug_line 0x00000000 0x231 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_puts.c.o) + .debug_str 0x00000000 0x2a0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_puts.c.o) + .debug_line_str + 0x00000000 0x242 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_puts.c.o) + .comment 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_puts.c.o) + .xt.lit 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_puts.c.o) + .xt.prop 0x00000000 0x90 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_puts.c.o) + .literal.setbuf + 0x00000000 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_setbuf.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_setbuf.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_setbuf.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_setbuf.c.o) + .text.setbuf 0x00000000 0x1a C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_setbuf.c.o) + .debug_frame 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_setbuf.c.o) + .debug_info 0x00000000 0x1fe C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_setbuf.c.o) + .debug_abbrev 0x00000000 0xfe C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_setbuf.c.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_setbuf.c.o) + .debug_rnglists + 0x00000000 0x13 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_setbuf.c.o) + .debug_line 0x00000000 0xa2 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_setbuf.c.o) + .debug_str 0x00000000 0x21d C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_setbuf.c.o) + .debug_line_str + 0x00000000 0x297 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_setbuf.c.o) + .comment 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_setbuf.c.o) + .xt.lit 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_setbuf.c.o) + .xt.prop 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_setbuf.c.o) + .literal.setvbuf + 0x00000000 0xc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_setvbuf.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_setvbuf.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_setvbuf.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_setvbuf.c.o) + .text.setvbuf 0x00000000 0x48 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_setvbuf.c.o) + .debug_frame 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_setvbuf.c.o) + .debug_info 0x00000000 0x3b7 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_setvbuf.c.o) + .debug_abbrev 0x00000000 0x1bd C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_setvbuf.c.o) + .debug_loclists + 0x00000000 0x85 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_setvbuf.c.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_setvbuf.c.o) + .debug_rnglists + 0x00000000 0x1f C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_setvbuf.c.o) + .debug_line 0x00000000 0x1c5 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_setvbuf.c.o) + .debug_str 0x00000000 0x2e2 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_setvbuf.c.o) + .debug_line_str + 0x00000000 0x2bd C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_setvbuf.c.o) + .comment 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_setvbuf.c.o) + .xt.lit 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_setvbuf.c.o) + .xt.prop 0x00000000 0x48 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_setvbuf.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_sflags.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_sflags.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_sflags.c.o) + .xt.lit 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_sflags.c.o) + .xt.prop 0x00000000 0x9c C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_sflags.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_snprintf.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_snprintf.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_snprintf.c.o) + .xt.lit 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_snprintf.c.o) + .xt.prop 0x00000000 0x60 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_snprintf.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_strtol.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_strtol.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_strtol.c.o) + .xt.lit 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_strtol.c.o) + .xt.prop 0x00000000 0x108 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_strtol.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_strtoul.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_strtoul.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_strtoul.c.o) + .xt.lit 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_strtoul.c.o) + .xt.prop 0x00000000 0x108 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_strtoul.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vfprintf.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vfprintf.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vfprintf.c.o) + .xt.lit 0x00000000 0x18 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vfprintf.c.o) + .xt.prop 0x00000000 0xda4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vfprintf.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vprintf.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vprintf.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vprintf.c.o) + .xt.lit 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vprintf.c.o) + .xt.prop 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vprintf.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtoa_ryu.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtoa_ryu.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtoa_ryu.c.o) + .xt.lit 0x00000000 0x18 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtoa_ryu.c.o) + .xt.prop 0x00000000 0x3f0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtoa_ryu.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_log10.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_log10.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_log10.c.o) + .xt.lit 0x00000000 0x10 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_log10.c.o) + .xt.prop 0x00000000 0x60 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_log10.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_pow5bits.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_pow5bits.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_pow5bits.c.o) + .xt.lit 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_pow5bits.c.o) + .xt.prop 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_pow5bits.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_table.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_table.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_table.c.o) + .xt.lit 0x00000000 0x18 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_table.c.o) + .xt.prop 0x00000000 0x180 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_table.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_umul128.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_umul128.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_umul128.c.o) + .xt.lit 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_umul128.c.o) + .xt.prop 0x00000000 0x6c C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_umul128.c.o) + .literal._strerror_r + 0x00000000 0x190 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror.c.o) + .literal.strerror + 0x00000000 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror.c.o) + .literal.strerror_l + 0x00000000 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror.c.o) + .rodata.str1.1 + 0x00000000 0x838 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror.c.o) + .text._strerror_r + 0x00000000 0x277 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror.c.o) + .rodata 0x00000000 0x240 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror.c.o) + .text.strerror + 0x00000000 0x14 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror.c.o) + .text.strerror_l + 0x00000000 0x14 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror.c.o) + .debug_frame 0x00000000 0x58 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror.c.o) + .debug_info 0x00000000 0x1c6 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror.c.o) + .debug_abbrev 0x00000000 0x10a C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror.c.o) + .debug_loclists + 0x00000000 0xc09 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror.c.o) + .debug_aranges + 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror.c.o) + .debug_rnglists + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror.c.o) + .debug_line 0x00000000 0xc7c C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror.c.o) + .debug_str 0x00000000 0x1ea C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror.c.o) + .debug_line_str + 0x00000000 0x1a2 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror.c.o) + .comment 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror.c.o) + .xt.lit 0x00000000 0x18 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror.c.o) + .xt.prop 0x00000000 0x9b4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strnlen.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strnlen.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strnlen.c.o) + .text.strnlen 0x00000000 0x1a C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strnlen.c.o) + .debug_frame 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strnlen.c.o) + .debug_info 0x00000000 0xe3 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strnlen.c.o) + .debug_abbrev 0x00000000 0x95 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strnlen.c.o) + .debug_loclists + 0x00000000 0x5a C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strnlen.c.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strnlen.c.o) + .debug_rnglists + 0x00000000 0x13 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strnlen.c.o) + .debug_line 0x00000000 0xba C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strnlen.c.o) + .debug_str 0x00000000 0x19d C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strnlen.c.o) + .debug_line_str + 0x00000000 0x1bb C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strnlen.c.o) + .comment 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strnlen.c.o) + .xt.prop 0x00000000 0x48 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strnlen.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtox_engine.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtox_engine.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtox_engine.c.o) + .xt.lit 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtox_engine.c.o) + .xt.prop 0x00000000 0x12c C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtox_engine.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fdopen.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fdopen.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fdopen.c.o) + .xt.lit 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fdopen.c.o) + .xt.prop 0x00000000 0x60 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fdopen.c.o) + .literal.getc 0x00000000 0x10 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgetc.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgetc.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgetc.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgetc.c.o) + .text.getc 0x00000000 0x35 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgetc.c.o) + .xt.lit 0x00000000 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgetc.c.o) + .xt.prop 0x00000000 0xa8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgetc.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_filestrput.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_filestrput.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_filestrput.c.o) + .xt.prop 0x00000000 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_filestrput.c.o) + .text 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fseeko.c.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fseeko.c.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fseeko.c.o) + .xt.lit 0x00000000 0x10 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fseeko.c.o) + .xt.prop 0x00000000 0xc0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fseeko.c.o) + .text 0x00000000 0x18 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_ashldi3.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_ashldi3.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_ashldi3.o) + .debug_line 0x00000000 0x7b C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_ashldi3.o) + .debug_line_str + 0x00000000 0xcd C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_ashldi3.o) + .debug_info 0x00000000 0x31 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_ashldi3.o) + .debug_abbrev 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_ashldi3.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_ashldi3.o) + .debug_str 0x00000000 0xe3 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_ashldi3.o) + .xt.prop 0x00000000 0x3c C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_ashldi3.o) + .text 0x00000000 0x19 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_ashrdi3.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_ashrdi3.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_ashrdi3.o) + .debug_line 0x00000000 0x7b C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_ashrdi3.o) + .debug_line_str + 0x00000000 0xcd C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_ashrdi3.o) + .debug_info 0x00000000 0x31 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_ashrdi3.o) + .debug_abbrev 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_ashrdi3.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_ashrdi3.o) + .debug_str 0x00000000 0xe3 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_ashrdi3.o) + .xt.prop 0x00000000 0x3c C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_ashrdi3.o) + .text 0x00000000 0x18 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_lshrdi3.o) + .data 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_lshrdi3.o) + .bss 0x00000000 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_lshrdi3.o) + .debug_line 0x00000000 0x7b C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_lshrdi3.o) + .debug_line_str + 0x00000000 0xcd C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_lshrdi3.o) + .debug_info 0x00000000 0x31 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_lshrdi3.o) + .debug_abbrev 0x00000000 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_lshrdi3.o) + .debug_aranges + 0x00000000 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_lshrdi3.o) + .debug_str 0x00000000 0xe3 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_lshrdi3.o) + .xt.prop 0x00000000 0x3c C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_lshrdi3.o) + +Memory Configuration + +Name Origin Length Attributes +iram0_0_seg 0x40080000 0x00020000 xr +iram0_2_seg 0x400d0020 0x0032ffe0 xr +dram0_0_seg 0x3ffb0000 0x0002c200 rw +drom0_0_seg 0x3f400020 0x003fffe0 r +rtc_iram_seg 0x400c0000 0x00002000 xrw +rtc_data_seg 0x3ff80000 0x00002000 rw +rtc_fast_reserved_seg 0x3ff82000 0x00000000 rw +rtc_slow_seg 0x50000000 0x00001fe8 rw +rtc_slow_reserved_seg 0x50001fe8 0x00000018 rw +extern_ram_seg 0x3f800000 0x00400000 rw +*default* 0x00000000 0xffffffff + +Linker script and memory map + + 0x00000000 IDF_TARGET_ESP32 = 0x0 +LOAD CMakeFiles/modbus_tcp_esp32.elf.dir/project_elf_src_esp32.c.obj +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/esp_stdio/libesp_stdio.a +LOAD esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a +LOAD esp-idf/esp_hal_clock/libesp_hal_clock.a +LOAD esp-idf/esp_hal_mspi/libesp_hal_mspi.a +LOAD esp-idf/esp_hal_security/libesp_hal_security.a +LOAD esp-idf/esp_app_format/libesp_app_format.a +LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/esp_partition/libesp_partition.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/esp_security/libesp_security.a +LOAD esp-idf/esp_driver_gpio/libesp_driver_gpio.a +LOAD esp-idf/esp_hal_uart/libesp_hal_uart.a +LOAD esp-idf/esp_pm/libesp_pm.a +LOAD esp-idf/esp_mm/libesp_mm.a +LOAD esp-idf/esp_driver_dma/libesp_driver_dma.a +LOAD esp-idf/mbedtls/libmbedtls.a +LOAD esp-idf/esp_hal_timg/libesp_hal_timg.a +LOAD esp-idf/esp_hal_wdt/libesp_hal_wdt.a +LOAD esp-idf/esp_hal_i2s/libesp_hal_i2s.a +LOAD esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/esp_system/libesp_system.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_rom/libesp_rom.a +LOAD esp-idf/hal/libhal.a +LOAD esp-idf/log/liblog.a +LOAD esp-idf/heap/libheap.a +LOAD esp-idf/soc/libsoc.a +LOAD esp-idf/esp_hal_gpio/libesp_hal_gpio.a +LOAD esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a +LOAD esp-idf/esp_hw_support/libesp_hw_support.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/esp_libc/libesp_libc.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/esp_psram/libesp_psram.a +LOAD esp-idf/esp_driver_uart/libesp_driver_uart.a +LOAD esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/nvs_sec_provider/libnvs_sec_provider.a +LOAD esp-idf/nvs_flash/libnvs_flash.a +LOAD esp-idf/esp_phy/libesp_phy.a +LOAD esp-idf/vfs/libvfs.a +LOAD esp-idf/lwip/liblwip.a +LOAD esp-idf/esp_netif/libesp_netif.a +LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a +LOAD esp-idf/esp_coex/libesp_coex.a +LOAD esp-idf/esp_wifi/libesp_wifi.a +LOAD esp-idf/esp_driver_spi/libesp_driver_spi.a +LOAD esp-idf/esp_gdbstub/libesp_gdbstub.a +LOAD esp-idf/unity/libunity.a +LOAD esp-idf/cmock/libcmock.a +LOAD esp-idf/console/libconsole.a +LOAD esp-idf/esp_hal_i2c/libesp_hal_i2c.a +LOAD esp-idf/esp_hal_twai/libesp_hal_twai.a +LOAD esp-idf/driver/libdriver.a +LOAD esp-idf/http_parser/libhttp_parser.a +LOAD esp-idf/esp-tls/libesp-tls.a +LOAD esp-idf/esp_driver_i2s/libesp_driver_i2s.a +LOAD esp-idf/esp_adc/libesp_adc.a +LOAD esp-idf/esp_driver_cam/libesp_driver_cam.a +LOAD esp-idf/esp_driver_dac/libesp_driver_dac.a +LOAD esp-idf/esp_driver_i2c/libesp_driver_i2c.a +LOAD esp-idf/esp_hal_ledc/libesp_hal_ledc.a +LOAD esp-idf/esp_driver_ledc/libesp_driver_ledc.a +LOAD esp-idf/esp_hal_mcpwm/libesp_hal_mcpwm.a +LOAD esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a +LOAD esp-idf/esp_hal_pcnt/libesp_hal_pcnt.a +LOAD esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a +LOAD esp-idf/esp_hal_rmt/libesp_hal_rmt.a +LOAD esp-idf/esp_driver_rmt/libesp_driver_rmt.a +LOAD esp-idf/sdmmc/libsdmmc.a +LOAD esp-idf/esp_driver_sd_intf/libesp_driver_sd_intf.a +LOAD esp-idf/esp_driver_sdio/libesp_driver_sdio.a +LOAD esp-idf/esp_driver_sdm/libesp_driver_sdm.a +LOAD esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a +LOAD esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a +LOAD esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a +LOAD esp-idf/esp_driver_twai/libesp_driver_twai.a +LOAD esp-idf/esp_eth/libesp_eth.a +LOAD esp-idf/esp_hal_lcd/libesp_hal_lcd.a +LOAD esp-idf/esp_hid/libesp_hid.a +LOAD esp-idf/tcp_transport/libtcp_transport.a +LOAD esp-idf/esp_http_client/libesp_http_client.a +LOAD esp-idf/esp_http_server/libesp_http_server.a +LOAD esp-idf/esp_https_ota/libesp_https_ota.a +LOAD esp-idf/esp_https_server/libesp_https_server.a +LOAD esp-idf/esp_lcd/libesp_lcd.a +LOAD esp-idf/protobuf-c/libprotobuf-c.a +LOAD esp-idf/protocomm/libprotocomm.a +LOAD esp-idf/esp_local_ctrl/libesp_local_ctrl.a +LOAD esp-idf/wear_levelling/libwear_levelling.a +LOAD esp-idf/fatfs/libfatfs.a +LOAD esp-idf/perfmon/libperfmon.a +LOAD esp-idf/rt/librt.a +LOAD esp-idf/spiffs/libspiffs.a +LOAD esp-idf/main/libmain.a +LOAD esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a +LOAD esp-idf/cmock/libcmock.a +LOAD esp-idf/unity/libunity.a +LOAD esp-idf/driver/libdriver.a +LOAD esp-idf/esp_driver_cam/libesp_driver_cam.a +LOAD esp-idf/esp_driver_dac/libesp_driver_dac.a +LOAD esp-idf/esp_driver_ledc/libesp_driver_ledc.a +LOAD esp-idf/esp_hal_ledc/libesp_hal_ledc.a +LOAD esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a +LOAD esp-idf/esp_hal_mcpwm/libesp_hal_mcpwm.a +LOAD esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a +LOAD esp-idf/esp_hal_pcnt/libesp_hal_pcnt.a +LOAD esp-idf/esp_driver_rmt/libesp_driver_rmt.a +LOAD esp-idf/esp_hal_rmt/libesp_hal_rmt.a +LOAD esp-idf/esp_driver_sdio/libesp_driver_sdio.a +LOAD esp-idf/esp_driver_sdm/libesp_driver_sdm.a +LOAD esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a +LOAD esp-idf/esp_driver_twai/libesp_driver_twai.a +LOAD esp-idf/esp_hal_twai/libesp_hal_twai.a +LOAD esp-idf/esp_eth/libesp_eth.a +LOAD esp-idf/esp_hid/libesp_hid.a +LOAD esp-idf/esp_lcd/libesp_lcd.a +LOAD esp-idf/esp_driver_i2c/libesp_driver_i2c.a +LOAD esp-idf/esp_hal_lcd/libesp_hal_lcd.a +LOAD esp-idf/esp_local_ctrl/libesp_local_ctrl.a +LOAD esp-idf/esp_https_server/libesp_https_server.a +LOAD esp-idf/protocomm/libprotocomm.a +LOAD esp-idf/console/libconsole.a +LOAD esp-idf/protobuf-c/libprotobuf-c.a +LOAD esp-idf/fatfs/libfatfs.a +LOAD esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a +LOAD esp-idf/esp_driver_sd_intf/libesp_driver_sd_intf.a +LOAD esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a +LOAD esp-idf/sdmmc/libsdmmc.a +LOAD esp-idf/wear_levelling/libwear_levelling.a +LOAD esp-idf/esp_driver_spi/libesp_driver_spi.a +LOAD esp-idf/perfmon/libperfmon.a +LOAD esp-idf/rt/librt.a +LOAD esp-idf/spiffs/libspiffs.a +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/esp_stdio/libesp_stdio.a +LOAD esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a +LOAD esp-idf/esp_hal_clock/libesp_hal_clock.a +LOAD esp-idf/esp_hal_mspi/libesp_hal_mspi.a +LOAD esp-idf/esp_hal_security/libesp_hal_security.a +LOAD esp-idf/esp_app_format/libesp_app_format.a +LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/esp_partition/libesp_partition.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/esp_security/libesp_security.a +LOAD esp-idf/esp_driver_gpio/libesp_driver_gpio.a +LOAD esp-idf/esp_hal_uart/libesp_hal_uart.a +LOAD esp-idf/esp_pm/libesp_pm.a +LOAD esp-idf/esp_mm/libesp_mm.a +LOAD esp-idf/esp_driver_dma/libesp_driver_dma.a +LOAD esp-idf/mbedtls/libmbedtls.a +LOAD esp-idf/esp_hal_timg/libesp_hal_timg.a +LOAD esp-idf/esp_hal_wdt/libesp_hal_wdt.a +LOAD esp-idf/esp_hal_i2s/libesp_hal_i2s.a +LOAD esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/esp_system/libesp_system.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_rom/libesp_rom.a +LOAD esp-idf/hal/libhal.a +LOAD esp-idf/log/liblog.a +LOAD esp-idf/heap/libheap.a +LOAD esp-idf/soc/libsoc.a +LOAD esp-idf/esp_hal_gpio/libesp_hal_gpio.a +LOAD esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a +LOAD esp-idf/esp_hw_support/libesp_hw_support.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/esp_libc/libesp_libc.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/esp_psram/libesp_psram.a +LOAD esp-idf/esp_driver_uart/libesp_driver_uart.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/nvs_sec_provider/libnvs_sec_provider.a +LOAD esp-idf/nvs_flash/libnvs_flash.a +LOAD esp-idf/esp_phy/libesp_phy.a +LOAD esp-idf/vfs/libvfs.a +LOAD esp-idf/lwip/liblwip.a +LOAD esp-idf/esp_netif/libesp_netif.a +LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a +LOAD esp-idf/esp_coex/libesp_coex.a +LOAD esp-idf/esp_wifi/libesp_wifi.a +LOAD esp-idf/esp_gdbstub/libesp_gdbstub.a +LOAD esp-idf/esp_hal_i2c/libesp_hal_i2c.a +LOAD esp-idf/http_parser/libhttp_parser.a +LOAD esp-idf/esp-tls/libesp-tls.a +LOAD esp-idf/esp_driver_i2s/libesp_driver_i2s.a +LOAD esp-idf/esp_adc/libesp_adc.a +LOAD esp-idf/tcp_transport/libtcp_transport.a +LOAD esp-idf/esp_http_client/libesp_http_client.a +LOAD esp-idf/esp_http_server/libesp_http_server.a +LOAD esp-idf/esp_https_ota/libesp_https_ota.a +LOAD C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedtls.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a +LOAD esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a +LOAD esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a +LOAD esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/libeverest.a +LOAD esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/libp256m.a +LOAD C:/esp/v6.0/esp-idf/components/esp_phy/lib/esp32/librtc.a +LOAD C:/esp/v6.0/esp-idf/components/esp_phy/lib/esp32/libphy.a +LOAD C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libcore.a +LOAD C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libespnow.a +LOAD C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libmesh.a +LOAD C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a +LOAD C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libpp.a +LOAD C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a +LOAD C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libwapi.a +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/esp_stdio/libesp_stdio.a +LOAD esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a +LOAD esp-idf/esp_hal_clock/libesp_hal_clock.a +LOAD esp-idf/esp_hal_mspi/libesp_hal_mspi.a +LOAD esp-idf/esp_hal_security/libesp_hal_security.a +LOAD esp-idf/esp_app_format/libesp_app_format.a +LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/esp_partition/libesp_partition.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/esp_security/libesp_security.a +LOAD esp-idf/esp_driver_gpio/libesp_driver_gpio.a +LOAD esp-idf/esp_hal_uart/libesp_hal_uart.a +LOAD esp-idf/esp_pm/libesp_pm.a +LOAD esp-idf/esp_mm/libesp_mm.a +LOAD esp-idf/esp_driver_dma/libesp_driver_dma.a +LOAD esp-idf/mbedtls/libmbedtls.a +LOAD esp-idf/esp_hal_timg/libesp_hal_timg.a +LOAD esp-idf/esp_hal_wdt/libesp_hal_wdt.a +LOAD esp-idf/esp_hal_i2s/libesp_hal_i2s.a +LOAD esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/esp_system/libesp_system.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_rom/libesp_rom.a +LOAD esp-idf/hal/libhal.a +LOAD esp-idf/log/liblog.a +LOAD esp-idf/heap/libheap.a +LOAD esp-idf/soc/libsoc.a +LOAD esp-idf/esp_hal_gpio/libesp_hal_gpio.a +LOAD esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a +LOAD esp-idf/esp_hw_support/libesp_hw_support.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/esp_libc/libesp_libc.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/esp_psram/libesp_psram.a +LOAD esp-idf/esp_driver_uart/libesp_driver_uart.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/nvs_sec_provider/libnvs_sec_provider.a +LOAD esp-idf/nvs_flash/libnvs_flash.a +LOAD esp-idf/esp_phy/libesp_phy.a +LOAD esp-idf/vfs/libvfs.a +LOAD esp-idf/lwip/liblwip.a +LOAD esp-idf/esp_netif/libesp_netif.a +LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a +LOAD esp-idf/esp_coex/libesp_coex.a +LOAD esp-idf/esp_wifi/libesp_wifi.a +LOAD esp-idf/esp_gdbstub/libesp_gdbstub.a +LOAD esp-idf/esp_hal_i2c/libesp_hal_i2c.a +LOAD esp-idf/http_parser/libhttp_parser.a +LOAD esp-idf/esp-tls/libesp-tls.a +LOAD esp-idf/esp_driver_i2s/libesp_driver_i2s.a +LOAD esp-idf/esp_adc/libesp_adc.a +LOAD esp-idf/tcp_transport/libtcp_transport.a +LOAD esp-idf/esp_http_client/libesp_http_client.a +LOAD esp-idf/esp_http_server/libesp_http_server.a +LOAD esp-idf/esp_https_ota/libesp_https_ota.a +LOAD C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedtls.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a +LOAD esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a +LOAD esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a +LOAD esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/libeverest.a +LOAD esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/libp256m.a +LOAD C:/esp/v6.0/esp-idf/components/esp_phy/lib/esp32/librtc.a +LOAD C:/esp/v6.0/esp-idf/components/esp_phy/lib/esp32/libphy.a +LOAD C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libcore.a +LOAD C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libespnow.a +LOAD C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libmesh.a +LOAD C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a +LOAD C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libpp.a +LOAD C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a +LOAD C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libwapi.a +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/esp_stdio/libesp_stdio.a +LOAD esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a +LOAD esp-idf/esp_hal_clock/libesp_hal_clock.a +LOAD esp-idf/esp_hal_mspi/libesp_hal_mspi.a +LOAD esp-idf/esp_hal_security/libesp_hal_security.a +LOAD esp-idf/esp_app_format/libesp_app_format.a +LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/esp_partition/libesp_partition.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/esp_security/libesp_security.a +LOAD esp-idf/esp_driver_gpio/libesp_driver_gpio.a +LOAD esp-idf/esp_hal_uart/libesp_hal_uart.a +LOAD esp-idf/esp_pm/libesp_pm.a +LOAD esp-idf/esp_mm/libesp_mm.a +LOAD esp-idf/esp_driver_dma/libesp_driver_dma.a +LOAD esp-idf/mbedtls/libmbedtls.a +LOAD esp-idf/esp_hal_timg/libesp_hal_timg.a +LOAD esp-idf/esp_hal_wdt/libesp_hal_wdt.a +LOAD esp-idf/esp_hal_i2s/libesp_hal_i2s.a +LOAD esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/esp_system/libesp_system.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_rom/libesp_rom.a +LOAD esp-idf/hal/libhal.a +LOAD esp-idf/log/liblog.a +LOAD esp-idf/heap/libheap.a +LOAD esp-idf/soc/libsoc.a +LOAD esp-idf/esp_hal_gpio/libesp_hal_gpio.a +LOAD esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a +LOAD esp-idf/esp_hw_support/libesp_hw_support.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/esp_libc/libesp_libc.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/esp_psram/libesp_psram.a +LOAD esp-idf/esp_driver_uart/libesp_driver_uart.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/nvs_sec_provider/libnvs_sec_provider.a +LOAD esp-idf/nvs_flash/libnvs_flash.a +LOAD esp-idf/esp_phy/libesp_phy.a +LOAD esp-idf/vfs/libvfs.a +LOAD esp-idf/lwip/liblwip.a +LOAD esp-idf/esp_netif/libesp_netif.a +LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a +LOAD esp-idf/esp_coex/libesp_coex.a +LOAD esp-idf/esp_wifi/libesp_wifi.a +LOAD esp-idf/esp_gdbstub/libesp_gdbstub.a +LOAD esp-idf/esp_hal_i2c/libesp_hal_i2c.a +LOAD esp-idf/http_parser/libhttp_parser.a +LOAD esp-idf/esp-tls/libesp-tls.a +LOAD esp-idf/esp_driver_i2s/libesp_driver_i2s.a +LOAD esp-idf/esp_adc/libesp_adc.a +LOAD esp-idf/tcp_transport/libtcp_transport.a +LOAD esp-idf/esp_http_client/libesp_http_client.a +LOAD esp-idf/esp_http_server/libesp_http_server.a +LOAD esp-idf/esp_https_ota/libesp_https_ota.a +LOAD C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedtls.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a +LOAD esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a +LOAD esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a +LOAD esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/libeverest.a +LOAD esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/libp256m.a +LOAD C:/esp/v6.0/esp-idf/components/esp_phy/lib/esp32/librtc.a +LOAD C:/esp/v6.0/esp-idf/components/esp_phy/lib/esp32/libphy.a +LOAD C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libcore.a +LOAD C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libespnow.a +LOAD C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libmesh.a +LOAD C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a +LOAD C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libpp.a +LOAD C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a +LOAD C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libwapi.a +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/esp_stdio/libesp_stdio.a +LOAD esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a +LOAD esp-idf/esp_hal_clock/libesp_hal_clock.a +LOAD esp-idf/esp_hal_mspi/libesp_hal_mspi.a +LOAD esp-idf/esp_hal_security/libesp_hal_security.a +LOAD esp-idf/esp_app_format/libesp_app_format.a +LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/esp_partition/libesp_partition.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/esp_security/libesp_security.a +LOAD esp-idf/esp_driver_gpio/libesp_driver_gpio.a +LOAD esp-idf/esp_hal_uart/libesp_hal_uart.a +LOAD esp-idf/esp_pm/libesp_pm.a +LOAD esp-idf/esp_mm/libesp_mm.a +LOAD esp-idf/esp_driver_dma/libesp_driver_dma.a +LOAD esp-idf/mbedtls/libmbedtls.a +LOAD esp-idf/esp_hal_timg/libesp_hal_timg.a +LOAD esp-idf/esp_hal_wdt/libesp_hal_wdt.a +LOAD esp-idf/esp_hal_i2s/libesp_hal_i2s.a +LOAD esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/esp_system/libesp_system.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_rom/libesp_rom.a +LOAD esp-idf/hal/libhal.a +LOAD esp-idf/log/liblog.a +LOAD esp-idf/heap/libheap.a +LOAD esp-idf/soc/libsoc.a +LOAD esp-idf/esp_hal_gpio/libesp_hal_gpio.a +LOAD esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a +LOAD esp-idf/esp_hw_support/libesp_hw_support.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/esp_libc/libesp_libc.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/esp_psram/libesp_psram.a +LOAD esp-idf/esp_driver_uart/libesp_driver_uart.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/nvs_sec_provider/libnvs_sec_provider.a +LOAD esp-idf/nvs_flash/libnvs_flash.a +LOAD esp-idf/esp_phy/libesp_phy.a +LOAD esp-idf/vfs/libvfs.a +LOAD esp-idf/lwip/liblwip.a +LOAD esp-idf/esp_netif/libesp_netif.a +LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a +LOAD esp-idf/esp_coex/libesp_coex.a +LOAD esp-idf/esp_wifi/libesp_wifi.a +LOAD esp-idf/esp_gdbstub/libesp_gdbstub.a +LOAD esp-idf/esp_hal_i2c/libesp_hal_i2c.a +LOAD esp-idf/http_parser/libhttp_parser.a +LOAD esp-idf/esp-tls/libesp-tls.a +LOAD esp-idf/esp_driver_i2s/libesp_driver_i2s.a +LOAD esp-idf/esp_adc/libesp_adc.a +LOAD esp-idf/tcp_transport/libtcp_transport.a +LOAD esp-idf/esp_http_client/libesp_http_client.a +LOAD esp-idf/esp_http_server/libesp_http_server.a +LOAD esp-idf/esp_https_ota/libesp_https_ota.a +LOAD C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedtls.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a +LOAD esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a +LOAD esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a +LOAD esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/libeverest.a +LOAD esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/libp256m.a +LOAD C:/esp/v6.0/esp-idf/components/esp_phy/lib/esp32/librtc.a +LOAD C:/esp/v6.0/esp-idf/components/esp_phy/lib/esp32/libphy.a +LOAD C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libcore.a +LOAD C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libespnow.a +LOAD C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libmesh.a +LOAD C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a +LOAD C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libpp.a +LOAD C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a +LOAD C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libwapi.a +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/esp_stdio/libesp_stdio.a +LOAD esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a +LOAD esp-idf/esp_hal_clock/libesp_hal_clock.a +LOAD esp-idf/esp_hal_mspi/libesp_hal_mspi.a +LOAD esp-idf/esp_hal_security/libesp_hal_security.a +LOAD esp-idf/esp_app_format/libesp_app_format.a +LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/esp_partition/libesp_partition.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/esp_security/libesp_security.a +LOAD esp-idf/esp_driver_gpio/libesp_driver_gpio.a +LOAD esp-idf/esp_hal_uart/libesp_hal_uart.a +LOAD esp-idf/esp_pm/libesp_pm.a +LOAD esp-idf/esp_mm/libesp_mm.a +LOAD esp-idf/esp_driver_dma/libesp_driver_dma.a +LOAD esp-idf/mbedtls/libmbedtls.a +LOAD esp-idf/esp_hal_timg/libesp_hal_timg.a +LOAD esp-idf/esp_hal_wdt/libesp_hal_wdt.a +LOAD esp-idf/esp_hal_i2s/libesp_hal_i2s.a +LOAD esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/esp_system/libesp_system.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_rom/libesp_rom.a +LOAD esp-idf/hal/libhal.a +LOAD esp-idf/log/liblog.a +LOAD esp-idf/heap/libheap.a +LOAD esp-idf/soc/libsoc.a +LOAD esp-idf/esp_hal_gpio/libesp_hal_gpio.a +LOAD esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a +LOAD esp-idf/esp_hw_support/libesp_hw_support.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/esp_libc/libesp_libc.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/esp_psram/libesp_psram.a +LOAD esp-idf/esp_driver_uart/libesp_driver_uart.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/nvs_sec_provider/libnvs_sec_provider.a +LOAD esp-idf/nvs_flash/libnvs_flash.a +LOAD esp-idf/esp_phy/libesp_phy.a +LOAD esp-idf/vfs/libvfs.a +LOAD esp-idf/lwip/liblwip.a +LOAD esp-idf/esp_netif/libesp_netif.a +LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a +LOAD esp-idf/esp_coex/libesp_coex.a +LOAD esp-idf/esp_wifi/libesp_wifi.a +LOAD esp-idf/esp_gdbstub/libesp_gdbstub.a +LOAD esp-idf/esp_hal_i2c/libesp_hal_i2c.a +LOAD esp-idf/http_parser/libhttp_parser.a +LOAD esp-idf/esp-tls/libesp-tls.a +LOAD esp-idf/esp_driver_i2s/libesp_driver_i2s.a +LOAD esp-idf/esp_adc/libesp_adc.a +LOAD esp-idf/tcp_transport/libtcp_transport.a +LOAD esp-idf/esp_http_client/libesp_http_client.a +LOAD esp-idf/esp_http_server/libesp_http_server.a +LOAD esp-idf/esp_https_ota/libesp_https_ota.a +LOAD C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedtls.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a +LOAD esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a +LOAD esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a +LOAD esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/everest/libeverest.a +LOAD esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/p256-m/libp256m.a +LOAD C:/esp/v6.0/esp-idf/components/esp_phy/lib/esp32/librtc.a +LOAD C:/esp/v6.0/esp-idf/components/esp_phy/lib/esp32/libphy.a +LOAD C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libcore.a +LOAD C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libespnow.a +LOAD C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libmesh.a +LOAD C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a +LOAD C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libpp.a +LOAD C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a +LOAD C:/esp/v6.0/esp-idf/components/esp_wifi/lib/esp32/libwapi.a +LOAD C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/esp_libc/libesp_libc.a +LOAD C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a +LOAD esp-idf/cxx/libcxx.a +LOAD C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a +LOAD C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libm.a +LOAD C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a +LOAD C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a +START GROUP +LOAD C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a +LOAD C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a +END GROUP +LOAD C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a + 0x3ff40000 PROVIDE (UART0 = 0x3ff40000) + 0x3ff42000 PROVIDE (SPI1 = 0x3ff42000) + 0x3ff43000 PROVIDE (SPI0 = 0x3ff43000) + 0x3ff44000 PROVIDE (GPIO = 0x3ff44000) + [!provide] PROVIDE (SDM = 0x3ff44f00) + 0x3ff48000 PROVIDE (RTCCNTL = 0x3ff48000) + 0x3ff48400 PROVIDE (RTCIO = 0x3ff48400) + 0x3ff48800 PROVIDE (SENS = 0x3ff48800) + [!provide] PROVIDE (HINF = 0x3ff4b000) + [!provide] PROVIDE (UHCI1 = 0x3ff4c000) + [!provide] PROVIDE (I2S0 = 0x3ff4f000) + 0x3ff50000 PROVIDE (UART1 = 0x3ff50000) + [!provide] PROVIDE (I2C0 = 0x3ff53000) + [!provide] PROVIDE (UHCI0 = 0x3ff54000) + [!provide] PROVIDE (HOST = 0x3ff55000) + [!provide] PROVIDE (RMT = 0x3ff56000) + [!provide] PROVIDE (RMTMEM = 0x3ff56800) + [!provide] PROVIDE (PCNT = 0x3ff57000) + [!provide] PROVIDE (SLC = 0x3ff58000) + [!provide] PROVIDE (LEDC = 0x3ff59000) + 0x3ff5a000 PROVIDE (EFUSE = 0x3ff5a000) + [!provide] PROVIDE (MCPWM0 = 0x3ff5e000) + 0x3ff5f000 PROVIDE (TIMERG0 = 0x3ff5f000) + 0x3ff60000 PROVIDE (TIMERG1 = 0x3ff60000) + 0x3ff64000 PROVIDE (SPI2 = 0x3ff64000) + 0x3ff65000 PROVIDE (SPI3 = 0x3ff65000) + [!provide] PROVIDE (SYSCON = 0x3ff66000) + [!provide] PROVIDE (I2C1 = 0x3ff67000) + [!provide] PROVIDE (SDMMC = 0x3ff68000) + [!provide] PROVIDE (EMAC_DMA = 0x3ff69000) + [!provide] PROVIDE (EMAC_EXT = 0x3ff69800) + [!provide] PROVIDE (EMAC_MAC = 0x3ff6a000) + [!provide] PROVIDE (TWAI = 0x3ff6b000) + [!provide] PROVIDE (MCPWM1 = 0x3ff6c000) + [!provide] PROVIDE (I2S1 = 0x3ff6d000) + 0x3ff6e000 PROVIDE (UART2 = 0x3ff6e000) + [!provide] PROVIDE (Add2SelfBigHex256 = 0x40015b7c) + [!provide] PROVIDE (AddBigHex256 = 0x40015b28) + [!provide] PROVIDE (AddBigHexModP256 = 0x40015c98) + [!provide] PROVIDE (AddP256 = 0x40015c74) + [!provide] PROVIDE (AddPdiv2_256 = 0x40015ce0) + [!provide] PROVIDE (app_gpio_arg = 0x3ffe003c) + [!provide] PROVIDE (app_gpio_handler = 0x3ffe0040) + [!provide] PROVIDE (BasePoint_x_256 = 0x3ff97488) + [!provide] PROVIDE (BasePoint_y_256 = 0x3ff97468) + [!provide] PROVIDE (bigHexInversion256 = 0x400168f0) + [!provide] PROVIDE (bigHexP256 = 0x3ff973bc) + [!provide] PROVIDE (btdm_r_ble_bt_handler_tab_p_get = 0x40019b0c) + [!provide] PROVIDE (btdm_r_btdm_option_data_p_get = 0x40010004) + [!provide] PROVIDE (btdm_r_btdm_rom_version_get = 0x40010078) + [!provide] PROVIDE (btdm_r_data_init = 0x4001002c) + [!provide] PROVIDE (btdm_r_import_rf_phy_func_p_get = 0x40054298) + [!provide] PROVIDE (btdm_r_ip_func_p_get = 0x40019af0) + [!provide] PROVIDE (btdm_r_ip_func_p_set = 0x40019afc) + [!provide] PROVIDE (btdm_r_modules_func_p_get = 0x4005427c) + [!provide] PROVIDE (btdm_r_modules_func_p_set = 0x40054270) + [!provide] PROVIDE (btdm_r_plf_func_p_set = 0x40054288) + [!provide] PROVIDE (bt_util_buf_env = 0x3ffb8bd4) + 0x400095e0 PROVIDE (cache_flash_mmu_set_rom = 0x400095e0) + 0x40009a14 PROVIDE (Cache_Flush_rom = 0x40009a14) + 0x40009ab8 PROVIDE (Cache_Read_Disable_rom = 0x40009ab8) + 0x40009a84 PROVIDE (Cache_Read_Enable_rom = 0x40009a84) + [!provide] PROVIDE (Cache_Read_Init_rom = 0x40009950) + [!provide] PROVIDE (cache_sram_mmu_set_rom = 0x400097f4) + [!provide] PROVIDE (calc_rtc_memory_crc = 0x40008170) + [!provide] PROVIDE (__clear_cache = 0x40063860) + [!provide] PROVIDE (co_default_bdaddr = 0x3ffae704) + [!provide] PROVIDE (co_null_bdaddr = 0x3ffb80e0) + [!provide] PROVIDE (co_sca2ppm = 0x3ff971e8) + [!provide] PROVIDE (crc16_be = 0x4005d09c) + [!provide] PROVIDE (crc16_le = 0x4005d05c) + [!provide] PROVIDE (crc32_be = 0x4005d024) + 0x4005cfec PROVIDE (crc32_le = 0x4005cfec) + [!provide] PROVIDE (crc8_be = 0x4005d114) + [!provide] PROVIDE (crc8_le = 0x4005d0e0) + [!provide] PROVIDE (_data_end_rom = 0x4000d5c8) + [!provide] PROVIDE (_data_end_btdm_rom = 0x4000d4f8) + [!provide] PROVIDE (_data_start_rom = 0x4000d4f8) + [!provide] PROVIDE (_data_start_btdm_rom = 0x4000d4f4) + [!provide] PROVIDE (_data_start_btdm = 0x3ffae6e0) + [!provide] PROVIDE (_data_end_btdm = 0x3ffaff10) + [!provide] PROVIDE (_bss_start_btdm = 0x3ffb8000) + [!provide] PROVIDE (_bss_end_btdm = 0x3ffbff70) + [!provide] PROVIDE (dbg_default_handler = 0x3ff97218) + [!provide] PROVIDE (dbg_default_state = 0x3ff97220) + [!provide] PROVIDE (dbg_state = 0x3ffb8d5d) + [!provide] PROVIDE (DebugE256PublicKey_x = 0x3ff97428) + [!provide] PROVIDE (DebugE256PublicKey_y = 0x3ff97408) + [!provide] PROVIDE (DebugE256SecretKey = 0x3ff973e8) + [!provide] PROVIDE (debug_timer = 0x3ffe042c) + [!provide] PROVIDE (debug_timerfn = 0x3ffe0430) + [!provide] PROVIDE (dh_group14_generator = 0x3ff9ac60) + [!provide] PROVIDE (dh_group14_prime = 0x3ff9ab60) + [!provide] PROVIDE (dh_group15_generator = 0x3ff9ab5f) + [!provide] PROVIDE (dh_group15_prime = 0x3ff9a9df) + [!provide] PROVIDE (dh_group16_generator = 0x3ff9a9de) + [!provide] PROVIDE (dh_group16_prime = 0x3ff9a7de) + [!provide] PROVIDE (dh_group17_generator = 0x3ff9a7dd) + [!provide] PROVIDE (dh_group17_prime = 0x3ff9a4dd) + [!provide] PROVIDE (dh_group18_generator = 0x3ff9a4dc) + [!provide] PROVIDE (dh_group18_prime = 0x3ff9a0dc) + [!provide] PROVIDE (dh_group1_generator = 0x3ff9ae03) + [!provide] PROVIDE (dh_group1_prime = 0x3ff9ada3) + [!provide] PROVIDE (dh_group2_generator = 0x3ff9ada2) + [!provide] PROVIDE (dh_group2_prime = 0x3ff9ad22) + [!provide] PROVIDE (dh_group5_generator = 0x3ff9ad21) + [!provide] PROVIDE (dh_group5_prime = 0x3ff9ac61) + 0x3ffae290 PROVIDE (g_rom_spiflash_dummy_len_plus = 0x3ffae290) + [!provide] PROVIDE (ecc_env = 0x3ffb8d60) + [!provide] PROVIDE (ecc_Jacobian_InfinityPoint256 = 0x3ff972e8) + [!provide] PROVIDE (em_buf_env = 0x3ffb8d74) + [!provide] PROVIDE (esp_crc8 = 0x4005d144) + [!provide] PROVIDE (_etext = 0x4000d66c) + [!provide] PROVIDE (ets_readySet_ = 0x3ffe01f0) + [!provide] PROVIDE (ets_startup_callback = 0x3ffe0404) + [!provide] PROVIDE (rwip_coex_cfg = 0x3ff9914c) + [!provide] PROVIDE (rwip_priority = 0x3ff99159) + [!provide] PROVIDE (exc_cause_table = 0x3ff991d0) + [!provide] PROVIDE (GF_Jacobian_Point_Addition256 = 0x400163a4) + [!provide] PROVIDE (GF_Jacobian_Point_Double256 = 0x40016260) + [!provide] PROVIDE (GF_Point_Jacobian_To_Affine256 = 0x40016b0c) + [!provide] PROVIDE (g_phyFuns_instance = 0x3ffae0c4) + 0x3ffae270 PROVIDE (g_rom_flashchip = 0x3ffae270) + [!provide] PROVIDE (gTxMsg = 0x3ffe0050) + [!provide] PROVIDE (hci_cmd_desc_root_tab = 0x3ff976d4) + [!provide] PROVIDE (hci_cmd_desc_tab_ctrl_bb = 0x3ff97b70) + [!provide] PROVIDE (hci_cmd_desc_tab_info_par = 0x3ff97b1c) + [!provide] PROVIDE (hci_cmd_desc_tab_le = 0x3ff97870) + [!provide] PROVIDE (hci_cmd_desc_tab_lk_ctrl = 0x3ff97fc0) + [!provide] PROVIDE (hci_cmd_desc_tab_lk_pol = 0x3ff97f3c) + [!provide] PROVIDE (hci_cmd_desc_tab_stat_par = 0x3ff97ac8) + [!provide] PROVIDE (hci_cmd_desc_tab_testing = 0x3ff97a98) + [!provide] PROVIDE (hci_cmd_desc_tab_vs = 0x3ff97714) + [!provide] PROVIDE (hci_command_handler = 0x4004c928) + [!provide] PROVIDE (hci_env = 0x3ffb9350) + [!provide] PROVIDE (rwip_env = 0x3ffb8bcc) + [!provide] PROVIDE (hci_evt_dbg_desc_tab = 0x3ff9750c) + [!provide] PROVIDE (hci_evt_desc_tab = 0x3ff9751c) + [!provide] PROVIDE (hci_evt_le_desc_tab = 0x3ff974b4) + [!provide] PROVIDE (hci_fc_env = 0x3ffb9340) + [!provide] PROVIDE (jd_decomp = 0x400613e8) + [!provide] PROVIDE (jd_prepare = 0x40060fa8) + [!provide] PROVIDE (ke_env = 0x3ffb93cc) + [!provide] PROVIDE (ke_handler_search = 0x4001a430) + [!provide] PROVIDE (ke_task_env = 0x3ffb81d4) + [!provide] PROVIDE (ke_event_env = 0x3ffb81a4) + [!provide] PROVIDE (lb_default_handler = 0x3ff982b8) + [!provide] PROVIDE (lb_default_state_tab_p_get = 0x4001c198) + [!provide] PROVIDE (lb_env = 0x3ffb9424) + [!provide] PROVIDE (lb_hci_cmd_handler_tab_p_get = 0x4001c18c) + [!provide] PROVIDE (lb_state = 0x3ffb94e8) + [!provide] PROVIDE (lc_default_handler = 0x3ff98648) + [!provide] PROVIDE (lc_default_state_tab_p_get = 0x4002f494) + [!provide] PROVIDE (lc_env = 0x3ffb94ec) + [!provide] PROVIDE (lc_hci_cmd_handler_tab_p_get = 0x4002f488) + [!provide] PROVIDE (lc_state = 0x3ffb9508) + [!provide] PROVIDE (ld_acl_br_sizes = 0x3ff98a2a) + [!provide] PROVIDE (ld_acl_br_types = 0x3ff98a36) + [!provide] PROVIDE (ld_acl_edr_sizes = 0x3ff98a14) + [!provide] PROVIDE (ld_acl_edr_types = 0x3ff98a22) + [!provide] PROVIDE (ld_env = 0x3ffb9510) + [!provide] PROVIDE (ld_pcm_settings_dft = 0x3ff98a0c) + [!provide] PROVIDE (ld_sched_params = 0x3ffb96c0) + [!provide] PROVIDE (ld_sync_train_channels = 0x3ff98a3c) + [!provide] PROVIDE (llc_default_handler = 0x3ff98b3c) + [!provide] PROVIDE (llc_default_state_tab_p_get = 0x40046058) + [!provide] PROVIDE (llc_env = 0x3ffb96d0) + [!provide] PROVIDE (llc_hci_acl_data_tx_handler = 0x40042398) + [!provide] PROVIDE (llc_hci_cmd_handler_tab_p_get = 0x40042358) + [!provide] PROVIDE (llc_hci_command_handler = 0x40042360) + [!provide] PROVIDE (llcp_pdu_handler_tab_p_get = 0x40043f64) + [!provide] PROVIDE (llc_state = 0x3ffb96f8) + [!provide] PROVIDE (lldesc_build_chain = 0x4000a850) + [!provide] PROVIDE (lldesc_num2link = 0x4000a948) + [!provide] PROVIDE (lldesc_set_owner = 0x4000a974) + [!provide] PROVIDE (lld_evt_deferred_elt_push = 0x400466b4) + [!provide] PROVIDE (lld_evt_deferred_elt_pop = 0x400466dc) + [!provide] PROVIDE (lld_evt_winsize_change = 0x40046730) + [!provide] PROVIDE (lld_evt_rxwin_compute = 0x400467c8) + [!provide] PROVIDE (lld_evt_slave_time_compute = 0x40046818) + [!provide] PROVIDE (lld_evt_env = 0x3ffb9704) + [!provide] PROVIDE (lld_evt_elt_wait_get = 0x400468e4) + [!provide] PROVIDE (lld_evt_get_next_free_slot = 0x4004692c) + [!provide] PROVIDE (lld_pdu_adv_pk_desc_tab = 0x3ff98c70) + [!provide] PROVIDE (lld_pdu_llcp_pk_desc_tab = 0x3ff98b68) + [!provide] PROVIDE (lld_pdu_tx_flush_list = 0x4004a760) + [!provide] PROVIDE (lld_pdu_pack = 0x4004ab14) + [!provide] PROVIDE (LLM_AA_CT1 = 0x3ff98d8a) + [!provide] PROVIDE (LLM_AA_CT2 = 0x3ff98d88) + [!provide] PROVIDE (llm_default_handler = 0x3ff98d80) + [!provide] PROVIDE (llm_default_state_tab_p_get = 0x4004e718) + [!provide] PROVIDE (llm_hci_cmd_handler_tab_p_get = 0x4004c920) + [!provide] PROVIDE (llm_le_env = 0x3ffb976c) + [!provide] PROVIDE (llm_local_cmds = 0x3ff98d38) + [!provide] PROVIDE (llm_local_data_len_values = 0x3ff98d1c) + [!provide] PROVIDE (llm_local_le_feats = 0x3ff98d30) + [!provide] PROVIDE (llm_local_le_states = 0x3ff98d28) + [!provide] PROVIDE (llm_state = 0x3ffb985c) + [!provide] PROVIDE (lm_default_handler = 0x3ff990e0) + [!provide] PROVIDE (lm_default_state_tab_p_get = 0x40054268) + [!provide] PROVIDE (lm_env = 0x3ffb9860) + [!provide] PROVIDE (lm_hci_cmd_handler_tab_p_get = 0x4005425c) + [!provide] PROVIDE (lm_local_supp_feats = 0x3ff990ee) + [!provide] PROVIDE (lm_n_page_tab = 0x3ff990e8) + [!provide] PROVIDE (lmp_desc_tab = 0x3ff96e6c) + [!provide] PROVIDE (lmp_ext_desc_tab = 0x3ff96d9c) + [!provide] PROVIDE (lm_state = 0x3ffb9a1c) + [!provide] PROVIDE (maxSecretKey_256 = 0x3ff97448) + 0x400095a4 PROVIDE (mmu_init = 0x400095a4) + [!provide] PROVIDE (MultiplyBigHexByUint32_256 = 0x40016214) + [!provide] PROVIDE (MultiplyBigHexModP256 = 0x400160b8) + [!provide] PROVIDE (MultiplyByU32ModP256 = 0x40015fdc) + [!provide] PROVIDE (multofup = 0x4000ab8c) + [!provide] PROVIDE (mz_adler32 = 0x4005edbc) + [!provide] PROVIDE (mz_crc32 = 0x4005ee88) + [!provide] PROVIDE (mz_free = 0x4005eed4) + [!provide] PROVIDE (notEqual256 = 0x40015b04) + [!provide] PROVIDE (one_bits = 0x3ff971f8) + [!provide] PROVIDE (phy_get_romfuncs = 0x40004100) + [!provide] PROVIDE (_Pri_4_HandlerAddress = 0x3ffe0648) + [!provide] PROVIDE (_Pri_5_HandlerAddress = 0x3ffe064c) + [!provide] PROVIDE (r_btdm_option_data = 0x3ffae6e0) + [!provide] PROVIDE (r_bt_util_buf_acl_rx_alloc = 0x40010218) + [!provide] PROVIDE (r_bt_util_buf_acl_rx_free = 0x40010234) + [!provide] PROVIDE (r_bt_util_buf_acl_tx_alloc = 0x40010268) + [!provide] PROVIDE (r_bt_util_buf_acl_tx_free = 0x40010280) + [!provide] PROVIDE (r_bt_util_buf_init = 0x400100e4) + [!provide] PROVIDE (r_bt_util_buf_lmp_tx_alloc = 0x400101d0) + [!provide] PROVIDE (r_bt_util_buf_lmp_tx_free = 0x400101ec) + [!provide] PROVIDE (r_bt_util_buf_sync_clear = 0x400103c8) + [!provide] PROVIDE (r_bt_util_buf_sync_init = 0x400102c4) + [!provide] PROVIDE (r_bt_util_buf_sync_rx_alloc = 0x40010468) + [!provide] PROVIDE (r_bt_util_buf_sync_rx_free = 0x4001049c) + [!provide] PROVIDE (r_bt_util_buf_sync_tx_alloc = 0x400103ec) + [!provide] PROVIDE (r_bt_util_buf_sync_tx_free = 0x40010428) + [!provide] PROVIDE (r_co_bdaddr_compare = 0x40014324) + [!provide] PROVIDE (r_co_bytes_to_string = 0x400142e4) + [!provide] PROVIDE (r_co_list_check_size_available = 0x400142c4) + [!provide] PROVIDE (r_co_list_extract = 0x4001404c) + [!provide] PROVIDE (r_co_list_extract_after = 0x40014118) + [!provide] PROVIDE (r_co_list_find = 0x4001419c) + [!provide] PROVIDE (r_co_list_init = 0x40013f14) + [!provide] PROVIDE (r_co_list_insert_after = 0x40014254) + [!provide] PROVIDE (r_co_list_insert_before = 0x40014200) + [!provide] PROVIDE (r_co_list_merge = 0x400141bc) + [!provide] PROVIDE (r_co_list_pool_init = 0x40013f30) + [!provide] PROVIDE (r_co_list_pop_front = 0x40014028) + [!provide] PROVIDE (r_co_list_push_back = 0x40013fb8) + [!provide] PROVIDE (r_co_list_push_front = 0x40013ff4) + [!provide] PROVIDE (r_co_list_size = 0x400142ac) + [!provide] PROVIDE (r_co_nb_good_channels = 0x40014360) + [!provide] PROVIDE (r_co_slot_to_duration = 0x40014348) + [!provide] PROVIDE (r_dbg_init = 0x40014394) + [!provide] PROVIDE (r_dbg_platform_reset_complete = 0x400143d0) + [!provide] PROVIDE (r_dbg_swdiag_init = 0x40014470) + [!provide] PROVIDE (r_dbg_swdiag_read = 0x400144a4) + [!provide] PROVIDE (r_dbg_swdiag_write = 0x400144d0) + [!provide] PROVIDE (r_E1 = 0x400108e8) + [!provide] PROVIDE (r_E21 = 0x40010968) + [!provide] PROVIDE (r_E22 = 0x400109b4) + [!provide] PROVIDE (r_E3 = 0x40010a58) + [!provide] PROVIDE (lm_n192_mod_mul = 0x40011dc0) + [!provide] PROVIDE (lm_n192_mod_add = 0x40011e9c) + [!provide] PROVIDE (lm_n192_mod_sub = 0x40011eec) + [!provide] PROVIDE (r_ea_alarm_clear = 0x40015ab4) + [!provide] PROVIDE (r_ea_alarm_set = 0x40015a10) + [!provide] PROVIDE (r_ea_elt_cancel = 0x400150d0) + [!provide] PROVIDE (r_ea_elt_create = 0x40015264) + [!provide] PROVIDE (r_ea_elt_insert = 0x400152a8) + [!provide] PROVIDE (r_ea_elt_remove = 0x400154f0) + [!provide] PROVIDE (r_ea_finetimer_isr = 0x400155d4) + [!provide] PROVIDE (r_ea_init = 0x40015228) + [!provide] PROVIDE (r_ea_interval_create = 0x4001555c) + [!provide] PROVIDE (r_ea_interval_delete = 0x400155a8) + [!provide] PROVIDE (r_ea_interval_duration_req = 0x4001597c) + [!provide] PROVIDE (r_ea_interval_insert = 0x4001557c) + [!provide] PROVIDE (r_ea_interval_remove = 0x40015590) + [!provide] PROVIDE (ea_conflict_check = 0x40014e9c) + [!provide] PROVIDE (ea_prog_timer = 0x40014f88) + [!provide] PROVIDE (r_ea_offset_req = 0x40015748) + [!provide] PROVIDE (r_ea_sleep_check = 0x40015928) + [!provide] PROVIDE (r_ea_sw_isr = 0x40015724) + [!provide] PROVIDE (r_ea_time_get_halfslot_rounded = 0x40015894) + [!provide] PROVIDE (r_ea_time_get_slot_rounded = 0x400158d4) + [!provide] PROVIDE (r_ecc_abort_key256_generation = 0x40017070) + [!provide] PROVIDE (r_ecc_generate_key256 = 0x40016e00) + [!provide] PROVIDE (r_ecc_gen_new_public_key = 0x400170c0) + [!provide] PROVIDE (r_ecc_gen_new_secret_key = 0x400170e4) + [!provide] PROVIDE (r_ecc_get_debug_Keys = 0x40017224) + [!provide] PROVIDE (r_ecc_init = 0x40016dbc) + [!provide] PROVIDE (ecc_point_multiplication_uint8_256 = 0x40016804) + [!provide] PROVIDE (RecvBuff = 0x3ffe009c) + [!provide] PROVIDE (r_em_buf_init = 0x4001729c) + [!provide] PROVIDE (r_em_buf_rx_buff_addr_get = 0x400173e8) + [!provide] PROVIDE (r_em_buf_rx_free = 0x400173c4) + [!provide] PROVIDE (r_em_buf_tx_buff_addr_get = 0x40017404) + [!provide] PROVIDE (r_em_buf_tx_free = 0x4001741c) + [!provide] PROVIDE (r_F1_256 = 0x400133e4) + [!provide] PROVIDE (r_F2_256 = 0x40013568) + [!provide] PROVIDE (r_F3_256 = 0x40013664) + [!provide] PROVIDE (RFPLL_ICP_TABLE = 0x3ffb8b7c) + [!provide] PROVIDE (r_G_256 = 0x40013470) + [!provide] PROVIDE (r_H3 = 0x40013760) + [!provide] PROVIDE (r_H4 = 0x40013830) + [!provide] PROVIDE (r_h4tl_init = 0x40017878) + [!provide] PROVIDE (r_h4tl_start = 0x40017924) + [!provide] PROVIDE (r_h4tl_stop = 0x40017934) + [!provide] PROVIDE (r_h4tl_write = 0x400178d0) + [!provide] PROVIDE (r_H5 = 0x400138dc) + [!provide] PROVIDE (r_hashConcat = 0x40013a38) + [!provide] PROVIDE (r_hci_acl_tx_data_alloc = 0x4001951c) + [!provide] PROVIDE (r_hci_acl_tx_data_received = 0x40019654) + [!provide] PROVIDE (r_hci_bt_acl_bdaddr_register = 0x40018900) + [!provide] PROVIDE (r_hci_bt_acl_bdaddr_unregister = 0x400189ac) + [!provide] PROVIDE (r_hci_bt_acl_conhdl_register = 0x4001895c) + [!provide] PROVIDE (r_hci_cmd_get_max_param_size = 0x400192d0) + [!provide] PROVIDE (r_hci_cmd_received = 0x400192f8) + [!provide] PROVIDE (r_hci_evt_filter_add = 0x40018a64) + [!provide] PROVIDE (r_hci_evt_mask_set = 0x400189e4) + [!provide] PROVIDE (r_hci_fc_acl_buf_size_set = 0x40017988) + [!provide] PROVIDE (r_hci_fc_acl_en = 0x400179d8) + [!provide] PROVIDE (r_hci_fc_acl_packet_sent = 0x40017a3c) + [!provide] PROVIDE (r_hci_fc_check_host_available_nb_acl_packets = 0x40017aa4) + [!provide] PROVIDE (r_hci_fc_check_host_available_nb_sync_packets = 0x40017ac8) + [!provide] PROVIDE (r_hci_fc_host_nb_acl_pkts_complete = 0x40017a6c) + [!provide] PROVIDE (r_hci_fc_host_nb_sync_pkts_complete = 0x40017a88) + [!provide] PROVIDE (r_hci_fc_init = 0x40017974) + [!provide] PROVIDE (r_hci_fc_sync_buf_size_set = 0x400179b0) + [!provide] PROVIDE (r_hci_fc_sync_en = 0x40017a30) + [!provide] PROVIDE (r_hci_fc_sync_packet_sent = 0x40017a54) + [!provide] PROVIDE (r_hci_init = 0x40018538) + [!provide] PROVIDE (r_hci_look_for_cmd_desc = 0x40018454) + [!provide] PROVIDE (r_hci_look_for_dbg_evt_desc = 0x400184c4) + [!provide] PROVIDE (r_hci_look_for_evt_desc = 0x400184a0) + [!provide] PROVIDE (r_hci_look_for_le_evt_desc = 0x400184e0) + [!provide] PROVIDE (r_hci_reset = 0x4001856c) + [!provide] PROVIDE (r_hci_send_2_host = 0x400185bc) + [!provide] PROVIDE (r_hci_sync_tx_data_alloc = 0x40019754) + [!provide] PROVIDE (r_hci_sync_tx_data_received = 0x400197c0) + [!provide] PROVIDE (r_hci_tl_init = 0x40019290) + [!provide] PROVIDE (r_hci_tl_send = 0x40019228) + [!provide] PROVIDE (r_hci_util_pack = 0x40019874) + [!provide] PROVIDE (r_hci_util_unpack = 0x40019998) + [!provide] PROVIDE (r_hci_voice_settings_get = 0x40018bdc) + [!provide] PROVIDE (r_hci_voice_settings_set = 0x40018be8) + [!provide] PROVIDE (r_HMAC = 0x40013968) + [!provide] PROVIDE (r_import_rf_phy_func = 0x3ffb8354) + [!provide] PROVIDE (r_import_rf_phy_func_p = 0x3ffafd64) + [!provide] PROVIDE (r_ip_funcs = 0x3ffae710) + [!provide] PROVIDE (r_ip_funcs_p = 0x3ffae70c) + [!provide] PROVIDE (r_ke_check_malloc = 0x40019de0) + [!provide] PROVIDE (r_ke_event_callback_set = 0x40019ba8) + [!provide] PROVIDE (r_ke_event_clear = 0x40019c2c) + [!provide] PROVIDE (r_ke_event_flush = 0x40019ccc) + [!provide] PROVIDE (r_ke_event_get = 0x40019c78) + [!provide] PROVIDE (r_ke_event_get_all = 0x40019cc0) + [!provide] PROVIDE (r_ke_event_init = 0x40019b90) + [!provide] PROVIDE (r_ke_event_schedule = 0x40019cdc) + [!provide] PROVIDE (r_ke_event_set = 0x40019be0) + [!provide] PROVIDE (r_ke_flush = 0x4001a374) + [!provide] PROVIDE (r_ke_free = 0x4001a014) + [!provide] PROVIDE (r_ke_get_max_mem_usage = 0x4001a1c8) + [!provide] PROVIDE (r_ke_get_mem_usage = 0x4001a1a0) + [!provide] PROVIDE (r_ke_init = 0x4001a318) + [!provide] PROVIDE (r_ke_is_free = 0x4001a184) + [!provide] PROVIDE (r_ke_malloc = 0x40019eb4) + [!provide] PROVIDE (r_ke_mem_init = 0x40019d3c) + [!provide] PROVIDE (r_ke_mem_is_empty = 0x40019d8c) + [!provide] PROVIDE (r_ke_msg_alloc = 0x4001a1e0) + [!provide] PROVIDE (r_ke_msg_dest_id_get = 0x4001a2e0) + [!provide] PROVIDE (r_ke_msg_discard = 0x4001a850) + [!provide] PROVIDE (r_ke_msg_forward = 0x4001a290) + [!provide] PROVIDE (r_ke_msg_forward_new_id = 0x4001a2ac) + [!provide] PROVIDE (r_ke_msg_free = 0x4001a2cc) + [!provide] PROVIDE (r_ke_msg_in_queue = 0x4001a2f8) + [!provide] PROVIDE (r_ke_msg_save = 0x4001a858) + [!provide] PROVIDE (r_ke_msg_send = 0x4001a234) + [!provide] PROVIDE (r_ke_msg_send_basic = 0x4001a26c) + [!provide] PROVIDE (r_ke_msg_src_id_get = 0x4001a2ec) + [!provide] PROVIDE (r_ke_queue_extract = 0x40055fd0) + [!provide] PROVIDE (r_ke_queue_insert = 0x40056020) + [!provide] PROVIDE (r_ke_sleep_check = 0x4001a3d8) + [!provide] PROVIDE (r_ke_state_get = 0x4001a7d8) + [!provide] PROVIDE (r_ke_state_set = 0x4001a6fc) + [!provide] PROVIDE (r_ke_stats_get = 0x4001a3f0) + [!provide] PROVIDE (r_ke_task_check = 0x4001a8a4) + [!provide] PROVIDE (r_ke_task_create = 0x4001a674) + [!provide] PROVIDE (r_ke_task_delete = 0x4001a6c0) + [!provide] PROVIDE (r_ke_task_init = 0x4001a650) + [!provide] PROVIDE (r_ke_task_msg_flush = 0x4001a860) + [!provide] PROVIDE (r_ke_timer_active = 0x4001ac08) + [!provide] PROVIDE (r_ke_timer_adjust_all = 0x4001ac30) + [!provide] PROVIDE (r_ke_timer_clear = 0x4001ab90) + [!provide] PROVIDE (r_ke_timer_init = 0x4001aa9c) + [!provide] PROVIDE (r_ke_timer_set = 0x4001aac0) + [!provide] PROVIDE (r_ke_timer_sleep_check = 0x4001ac50) + [!provide] PROVIDE (r_KPrimC = 0x40010ad4) + [!provide] PROVIDE (r_lb_clk_adj_activate = 0x4001ae70) + [!provide] PROVIDE (r_lb_clk_adj_id_get = 0x4001af14) + [!provide] PROVIDE (r_lb_clk_adj_period_update = 0x4001af20) + [!provide] PROVIDE (r_lb_init = 0x4001acd4) + [!provide] PROVIDE (r_lb_mst_key = 0x4001afc0) + [!provide] PROVIDE (r_lb_mst_key_cmp = 0x4001af74) + [!provide] PROVIDE (r_lb_mst_key_restart_enc = 0x4001b0d4) + [!provide] PROVIDE (r_lb_mst_start_act_bcst_enc = 0x4001b198) + [!provide] PROVIDE (r_lb_mst_stop_act_bcst_enc = 0x4001b24c) + [!provide] PROVIDE (r_lb_reset = 0x4001ad38) + [!provide] PROVIDE (r_lb_send_lmp = 0x4001adbc) + [!provide] PROVIDE (r_lb_send_pdu_clk_adj = 0x4001af3c) + [!provide] PROVIDE (r_lb_util_get_csb_mode = 0x4001ada4) + [!provide] PROVIDE (r_lb_util_get_nb_broadcast = 0x4001ad80) + [!provide] PROVIDE (r_lb_util_get_res_lt_addr = 0x4001ad98) + [!provide] PROVIDE (r_lb_util_set_nb_broadcast = 0x4001ad8c) + [!provide] PROVIDE (r_lc_afh_set = 0x4001cc74) + [!provide] PROVIDE (r_lc_afh_start = 0x4001d240) + [!provide] PROVIDE (r_lc_auth_cmp = 0x4001cd54) + [!provide] PROVIDE (r_lc_calc_link_key = 0x4001ce7c) + [!provide] PROVIDE (r_lc_chg_pkt_type_cmp = 0x4001d038) + [!provide] PROVIDE (r_lc_chg_pkt_type_cont = 0x4001cfbc) + [!provide] PROVIDE (r_lc_chg_pkt_type_retry = 0x4001d0ac) + [!provide] PROVIDE (r_lc_chk_to = 0x4001d2a8) + [!provide] PROVIDE (r_lc_cmd_stat_send = 0x4001c914) + [!provide] PROVIDE (r_lc_comb_key_svr = 0x4001d30c) + [!provide] PROVIDE (r_lc_con_cmp = 0x4001d44c) + [!provide] PROVIDE (r_lc_con_cmp_evt_send = 0x4001d4fc) + [!provide] PROVIDE (r_lc_conn_seq_done = 0x40021334) + [!provide] PROVIDE (r_lc_detach = 0x4002037c) + [!provide] PROVIDE (r_lc_dhkey = 0x4001d564) + [!provide] PROVIDE (r_lc_enc_cmp = 0x4001d8bc) + [!provide] PROVIDE (r_lc_enc_key_refresh = 0x4001d720) + [!provide] PROVIDE (r_lc_end_chk_colli = 0x4001d858) + [!provide] PROVIDE (r_lc_end_of_sniff_nego = 0x4001d9a4) + [!provide] PROVIDE (r_lc_enter_sniff_mode = 0x4001ddb8) + [!provide] PROVIDE (r_lc_epr_change_lk = 0x4001db38) + [!provide] PROVIDE (r_lc_epr_cmp = 0x4001da88) + [!provide] PROVIDE (r_lc_epr_resp = 0x4001e0b4) + [!provide] PROVIDE (r_lc_epr_rsw_cmp = 0x4001dd40) + [!provide] PROVIDE (r_lc_ext_feat = 0x40020d6c) + [!provide] PROVIDE (r_lc_feat = 0x40020984) + [!provide] PROVIDE (r_lc_hl_connect = 0x400209e8) + [!provide] PROVIDE (r_lc_init = 0x4001c948) + [!provide] PROVIDE (r_lc_init_calc_f3 = 0x4001deb0) + [!provide] PROVIDE (r_lc_initiator_epr = 0x4001e064) + [!provide] PROVIDE (r_lc_init_passkey_loop = 0x4001dfc0) + [!provide] PROVIDE (r_lc_init_start_mutual_auth = 0x4001df60) + [!provide] PROVIDE (r_lc_key_exch_end = 0x4001e140) + [!provide] PROVIDE (r_lc_legacy_pair = 0x4001e1c0) + [!provide] PROVIDE (r_lc_local_switch = 0x4001e22c) + [!provide] PROVIDE (r_lc_local_trans_mode = 0x4001e2e4) + [!provide] PROVIDE (r_lc_local_untrans_mode = 0x4001e3a0) + [!provide] PROVIDE (r_lc_loc_auth = 0x40020ecc) + [!provide] PROVIDE (r_lc_locepr_lkref = 0x4001d648) + [!provide] PROVIDE (r_lc_locepr_rsw = 0x4001d5d0) + [!provide] PROVIDE (r_lc_loc_sniff = 0x40020a6c) + [!provide] PROVIDE (r_lc_max_slot_mgt = 0x4001e410) + [!provide] PROVIDE (r_lc_mst_key = 0x4001e7c0) + [!provide] PROVIDE (r_lc_mst_qos_done = 0x4001ea80) + [!provide] PROVIDE (r_lc_mst_send_mst_key = 0x4001e8f4) + [!provide] PROVIDE (r_lc_mutual_auth_end = 0x4001e670) + [!provide] PROVIDE (r_lc_mutual_auth_end2 = 0x4001e4f4) + [!provide] PROVIDE (r_lc_packet_type = 0x40021038) + [!provide] PROVIDE (r_lc_pair = 0x40020ddc) + [!provide] PROVIDE (r_lc_pairing_cont = 0x4001eafc) + [!provide] PROVIDE (r_lc_passkey_comm = 0x4001ed20) + [!provide] PROVIDE (r_lc_prepare_all_links_for_clk_adj = 0x40021430) + [!provide] PROVIDE (r_lc_proc_rcv_dhkey = 0x4001edec) + [!provide] PROVIDE (r_lc_ptt = 0x4001ee2c) + [!provide] PROVIDE (r_lc_ptt_cmp = 0x4001eeec) + [!provide] PROVIDE (r_lc_qos_setup = 0x4001ef50) + [!provide] PROVIDE (r_lc_rd_rem_name = 0x4001efd0) + [!provide] PROVIDE (r_lc_release = 0x4001f8a8) + [!provide] PROVIDE (r_lc_rem_enc = 0x4001f124) + [!provide] PROVIDE (r_lc_rem_name_cont = 0x4001f290) + [!provide] PROVIDE (r_lc_rem_nego_trans_mode = 0x4001f1b4) + [!provide] PROVIDE (r_lc_rem_sniff = 0x40020ca4) + [!provide] PROVIDE (r_lc_rem_sniff_sub_rate = 0x40020b10) + [!provide] PROVIDE (r_lc_rem_switch = 0x4001f070) + [!provide] PROVIDE (r_lc_rem_trans_mode = 0x4001f314) + [!provide] PROVIDE (r_lc_rem_unsniff = 0x400207a0) + [!provide] PROVIDE (r_lc_rem_untrans_mode = 0x4001f36c) + [!provide] PROVIDE (r_lc_reset = 0x4001c99c) + [!provide] PROVIDE (r_lc_resp_auth = 0x4001f518) + [!provide] PROVIDE (r_lc_resp_calc_f3 = 0x4001f710) + [!provide] PROVIDE (r_lc_resp_num_comp = 0x40020074) + [!provide] PROVIDE (r_lc_resp_oob_nonce = 0x4001f694) + [!provide] PROVIDE (r_lc_resp_oob_wait_nonce = 0x4001f66c) + [!provide] PROVIDE (r_lc_resp_pair = 0x400208a4) + [!provide] PROVIDE (r_lc_resp_sec_auth = 0x4001f4a0) + [!provide] PROVIDE (r_lc_resp_wait_dhkey_cont = 0x4001f86c) + [!provide] PROVIDE (r_lc_restart_enc = 0x4001f8ec) + [!provide] PROVIDE (r_lc_restart_enc_cont = 0x4001f940) + [!provide] PROVIDE (r_lc_restore_afh_reporting = 0x4001f028) + [!provide] PROVIDE (r_lc_restore_to = 0x4001f9e0) + [!provide] PROVIDE (r_lc_ret_sniff_max_slot_chg = 0x4001fa30) + [!provide] PROVIDE (r_lc_rsw_clean_up = 0x4001dc70) + [!provide] PROVIDE (r_lc_rsw_done = 0x4001db94) + [!provide] PROVIDE (r_lc_sco_baseband_ack = 0x40022b00) + [!provide] PROVIDE (r_lc_sco_detach = 0x40021e40) + [!provide] PROVIDE (r_lc_sco_host_accept = 0x40022118) + [!provide] PROVIDE (r_lc_sco_host_reject = 0x400222b8) + [!provide] PROVIDE (r_lc_sco_host_request = 0x40021f4c) + [!provide] PROVIDE (r_lc_sco_host_request_disc = 0x4002235c) + [!provide] PROVIDE (r_lc_sco_init = 0x40021dc8) + [!provide] PROVIDE (r_lc_sco_peer_accept = 0x40022780) + [!provide] PROVIDE (r_lc_sco_peer_accept_disc = 0x40022a08) + [!provide] PROVIDE (r_lc_sco_peer_reject = 0x40022824) + [!provide] PROVIDE (r_lc_sco_peer_reject_disc = 0x40022a8c) + [!provide] PROVIDE (r_lc_sco_peer_request = 0x4002240c) + [!provide] PROVIDE (r_lc_sco_peer_request_disc = 0x400228ec) + [!provide] PROVIDE (r_lc_sco_release = 0x40021eec) + [!provide] PROVIDE (r_lc_sco_reset = 0x40021dfc) + [!provide] PROVIDE (r_lc_sco_timeout = 0x40022bd4) + [!provide] PROVIDE (r_lc_sec_auth_compute_sres = 0x4001f3ec) + [!provide] PROVIDE (r_lc_semi_key_cmp = 0x40020294) + [!provide] PROVIDE (r_lc_send_enc_chg_evt = 0x4002134c) + [!provide] PROVIDE (r_lc_send_enc_mode = 0x40020220) + [!provide] PROVIDE (r_lc_send_lmp = 0x4001c1a8) + [!provide] PROVIDE (r_lc_send_pdu_acc = 0x4001c21c) + [!provide] PROVIDE (r_lc_send_pdu_acc_ext4 = 0x4001c240) + [!provide] PROVIDE (r_lc_send_pdu_au_rand = 0x4001c308) + [!provide] PROVIDE (r_lc_send_pdu_auto_rate = 0x4001c5d0) + [!provide] PROVIDE (r_lc_send_pdu_clk_adj_ack = 0x4001c46c) + [!provide] PROVIDE (r_lc_send_pdu_clk_adj_req = 0x4001c494) + [!provide] PROVIDE (r_lc_send_pdu_comb_key = 0x4001c368) + [!provide] PROVIDE (r_lc_send_pdu_dhkey_chk = 0x4001c8e8) + [!provide] PROVIDE (r_lc_send_pdu_encaps_head = 0x4001c440) + [!provide] PROVIDE (r_lc_send_pdu_encaps_payl = 0x4001c410) + [!provide] PROVIDE (r_lc_send_pdu_enc_key_sz_req = 0x4001c670) + [!provide] PROVIDE (r_lc_send_pdu_esco_lk_rem_req = 0x4001c5a8) + [!provide] PROVIDE (r_lc_send_pdu_feats_ext_req = 0x4001c6ec) + [!provide] PROVIDE (r_lc_send_pdu_feats_res = 0x4001c694) + [!provide] PROVIDE (r_lc_send_pdu_in_rand = 0x4001c338) + [!provide] PROVIDE (r_lc_send_pdu_io_cap_res = 0x4001c72c) + [!provide] PROVIDE (r_lc_send_pdu_lsto = 0x4001c64c) + [!provide] PROVIDE (r_lc_send_pdu_max_slot = 0x4001c3c8) + [!provide] PROVIDE (r_lc_send_pdu_max_slot_req = 0x4001c3ec) + [!provide] PROVIDE (r_lc_send_pdu_not_acc = 0x4001c26c) + [!provide] PROVIDE (r_lc_send_pdu_not_acc_ext4 = 0x4001c294) + [!provide] PROVIDE (r_lc_send_pdu_num_comp_fail = 0x4001c770) + [!provide] PROVIDE (r_lc_send_pdu_pause_enc_aes_req = 0x4001c794) + [!provide] PROVIDE (r_lc_send_pdu_paus_enc_req = 0x4001c7c0) + [!provide] PROVIDE (r_lc_send_pdu_ptt_req = 0x4001c4c0) + [!provide] PROVIDE (r_lc_send_pdu_qos_req = 0x4001c82c) + [!provide] PROVIDE (r_lc_send_pdu_resu_enc_req = 0x4001c7e4) + [!provide] PROVIDE (r_lc_send_pdu_sco_lk_rem_req = 0x4001c580) + [!provide] PROVIDE (r_lc_send_pdu_set_afh = 0x4001c2c8) + [!provide] PROVIDE (r_lc_send_pdu_setup_cmp = 0x4001c808) + [!provide] PROVIDE (r_lc_send_pdu_slot_off = 0x4001c854) + [!provide] PROVIDE (r_lc_send_pdu_sniff_req = 0x4001c5f0) + [!provide] PROVIDE (r_lc_send_pdu_sp_cfm = 0x4001c518) + [!provide] PROVIDE (r_lc_send_pdu_sp_nb = 0x4001c4e8) + [!provide] PROVIDE (r_lc_send_pdu_sres = 0x4001c548) + [!provide] PROVIDE (r_lc_send_pdu_tim_acc = 0x4001c6cc) + [!provide] PROVIDE (r_lc_send_pdu_unit_key = 0x4001c398) + [!provide] PROVIDE (r_lc_send_pdu_unsniff_req = 0x4001c894) + [!provide] PROVIDE (r_lc_send_pdu_vers_req = 0x4001c8b4) + [!provide] PROVIDE (r_lc_skip_hl_oob_req = 0x400201bc) + [!provide] PROVIDE (r_lc_sniff_init = 0x40022cac) + [!provide] PROVIDE (r_lc_sniff_max_slot_chg = 0x40020590) + [!provide] PROVIDE (r_lc_sniff_reset = 0x40022cc8) + [!provide] PROVIDE (r_lc_sniff_slot_unchange = 0x40021100) + [!provide] PROVIDE (r_lc_sniff_sub_mode = 0x400204fc) + [!provide] PROVIDE (r_lc_sp_end = 0x400213a8) + [!provide] PROVIDE (r_lc_sp_fail = 0x40020470) + [!provide] PROVIDE (r_lc_sp_oob_tid_fail = 0x400204cc) + [!provide] PROVIDE (r_lc_ssr_nego = 0x4002125c) + [!provide] PROVIDE (r_lc_start = 0x4001ca28) + [!provide] PROVIDE (r_lc_start_enc = 0x4001fb28) + [!provide] PROVIDE (r_lc_start_enc_key_size = 0x4001fd9c) + [!provide] PROVIDE (r_lc_start_key_exch = 0x4001fe10) + [!provide] PROVIDE (r_lc_start_lmp_to = 0x4001fae8) + [!provide] PROVIDE (r_lc_start_oob = 0x4001fffc) + [!provide] PROVIDE (r_lc_start_passkey = 0x4001feac) + [!provide] PROVIDE (r_lc_start_passkey_loop = 0x4001ff88) + [!provide] PROVIDE (r_lc_stop_afh_report = 0x40020184) + [!provide] PROVIDE (r_lc_stop_enc = 0x40020110) + [!provide] PROVIDE (r_lc_switch_cmp = 0x40020448) + [!provide] PROVIDE (r_lc_unit_key_svr = 0x400206d8) + [!provide] PROVIDE (r_lc_unsniff = 0x40020c50) + [!provide] PROVIDE (r_lc_unsniff_cmp = 0x40020810) + [!provide] PROVIDE (r_lc_unsniff_cont = 0x40020750) + [!provide] PROVIDE (r_lc_upd_to = 0x4002065c) + [!provide] PROVIDE (r_lc_util_convert_pref_rate_to_packet_type = 0x4002f9b0) + [!provide] PROVIDE (r_lc_util_get_max_packet_size = 0x4002f4ac) + [!provide] PROVIDE (r_lc_util_get_offset_clke = 0x4002f538) + [!provide] PROVIDE (r_lc_util_get_offset_clkn = 0x4002f51c) + [!provide] PROVIDE (r_lc_util_set_loc_trans_coll = 0x4002f500) + [!provide] PROVIDE (r_lc_version = 0x40020a30) + [!provide] PROVIDE (lc_set_encap_pdu_data_p192 = 0x4002e4c8) + [!provide] PROVIDE (lc_set_encap_pdu_data_p256 = 0x4002e454) + [!provide] PROVIDE (lm_get_auth_method = 0x40023420) + [!provide] PROVIDE (lmp_accepted_ext_handler = 0x40027290) + [!provide] PROVIDE (lmp_not_accepted_ext_handler = 0x40029c54) + [!provide] PROVIDE (lmp_clk_adj_handler = 0x40027468) + [!provide] PROVIDE (lmp_clk_adj_ack_handler = 0x400274f4) + [!provide] PROVIDE (lm_get_auth_method = 0x40023420) + [!provide] PROVIDE (lmp_accepted_ext_handler = 0x40027290) + [!provide] PROVIDE (lmp_not_accepted_ext_handler = 0x40029c54) + [!provide] PROVIDE (lmp_clk_adj_handler = 0x40027468) + [!provide] PROVIDE (lmp_clk_adj_ack_handler = 0x400274f4) + [!provide] PROVIDE (lmp_clk_adj_req_handler = 0x4002751c) + [!provide] PROVIDE (lmp_feats_res_ext_handler = 0x4002cac4) + [!provide] PROVIDE (lmp_feats_req_ext_handler = 0x4002ccb0) + [!provide] PROVIDE (lmp_pkt_type_tbl_req_handler = 0x40027574) + [!provide] PROVIDE (lmp_esco_link_req_handler = 0x40027610) + [!provide] PROVIDE (lmp_rmv_esco_link_req_handler = 0x400276e8) + [!provide] PROVIDE (lmp_ch_class_req_handler = 0x40027730) + [!provide] PROVIDE (lmp_ch_class_handler = 0x4002ca18) + [!provide] PROVIDE (lmp_ssr_req_handler = 0x4002780c) + [!provide] PROVIDE (lmp_ssr_res_handler = 0x40027900) + [!provide] PROVIDE (lmp_pause_enc_aes_req_handler = 0x400279a4) + [!provide] PROVIDE (lmp_pause_enc_req_handler = 0x4002df90) + [!provide] PROVIDE (lmp_resume_enc_req_handler = 0x4002e084) + [!provide] PROVIDE (lmp_num_comparison_fail_handler = 0x40027a74) + [!provide] PROVIDE (lmp_passkey_fail_handler = 0x40027aec) + [!provide] PROVIDE (lmp_keypress_notif_handler = 0x4002c5c8) + [!provide] PROVIDE (lmp_pwr_ctrl_req_handler = 0x400263bc) + [!provide] PROVIDE (lmp_pwr_ctrl_res_handler = 0x40026480) + [!provide] PROVIDE (lmp_auto_rate_handler = 0x40026548) + [!provide] PROVIDE (lmp_pref_rate_handler = 0x4002657c) + [!provide] PROVIDE (lmp_name_req_handler = 0x40025050) + [!provide] PROVIDE (lmp_name_res_handler = 0x400250bc) + [!provide] PROVIDE (lmp_not_accepted_handler = 0x400251d0) + [!provide] PROVIDE (lmp_accepted_handler = 0x4002e894) + [!provide] PROVIDE (lmp_clk_off_req_handler = 0x40025a44) + [!provide] PROVIDE (lmp_clk_off_res_handler = 0x40025ab8) + [!provide] PROVIDE (lmp_detach_handler = 0x40025b74) + [!provide] PROVIDE (lmp_tempkey_handler = 0x4002b6b0) + [!provide] PROVIDE (lmp_temprand_handler = 0x4002b74c) + [!provide] PROVIDE (lmp_sres_handler = 0x4002b840) + [!provide] PROVIDE (lmp_aurand_handler = 0x4002bda0) + [!provide] PROVIDE (lmp_unitkey_handler = 0x4002c13c) + [!provide] PROVIDE (lmp_combkey_handler = 0x4002c234) + [!provide] PROVIDE (lmp_inrand_handler = 0x4002c414) + [!provide] PROVIDE (lmp_oob_fail_handler = 0x40027b84) + [!provide] PROVIDE (lmp_ping_req_handler = 0x40027c08) + [!provide] PROVIDE (lmp_ping_res_handler = 0x40027c5c) + [!provide] PROVIDE (lmp_enc_mode_req_handler = 0x40025c60) + [!provide] PROVIDE (lmp_enc_key_size_req_handler = 0x40025e54) + [!provide] PROVIDE (lmp_switch_req_handler = 0x40025f84) + [!provide] PROVIDE (lmp_start_enc_req_handler = 0x4002e124) + [!provide] PROVIDE (lmp_stop_enc_req_handler = 0x4002de30) + [!provide] PROVIDE (lmp_sniff_req_handler = 0x400260c8) + [!provide] PROVIDE (lmp_unsniff_req_handler = 0x400261e0) + [!provide] PROVIDE (lmp_incr_pwr_req_handler = 0x4002629c) + [!provide] PROVIDE (lmp_decr_pwr_req_handler = 0x400262f8) + [!provide] PROVIDE (lmp_max_pwr_handler = 0x40026354) + [!provide] PROVIDE (lmp_min_pwr_handler = 0x40026388) + [!provide] PROVIDE (lmp_ver_req_handler = 0x400265f0) + [!provide] PROVIDE (lmp_ver_res_handler = 0x40026670) + [!provide] PROVIDE (lmp_qos_handler = 0x40026790) + [!provide] PROVIDE (lmp_qos_req_handler = 0x40026844) + [!provide] PROVIDE (lmp_sco_link_req_handler = 0x40026930) + [!provide] PROVIDE (lmp_rmv_sco_link_req_handler = 0x40026a10) + [!provide] PROVIDE (lmp_max_slot_handler = 0x40026a54) + [!provide] PROVIDE (lmp_max_slot_req_handler = 0x40026aac) + [!provide] PROVIDE (lmp_timing_accu_req_handler = 0x40026b54) + [!provide] PROVIDE (lmp_timing_accu_res_handler = 0x40026bcc) + [!provide] PROVIDE (lmp_setup_cmp_handler = 0x40026c84) + [!provide] PROVIDE (lmp_feats_res_handler = 0x4002b548) + [!provide] PROVIDE (lmp_feats_req_handler = 0x4002b620) + [!provide] PROVIDE (lmp_host_con_req_handler = 0x4002b3d8) + [!provide] PROVIDE (lmp_use_semi_perm_key_handler = 0x4002b4c4) + [!provide] PROVIDE (lmp_slot_off_handler = 0x40026cc8) + [!provide] PROVIDE (lmp_page_mode_req_handler = 0x40026d0c) + [!provide] PROVIDE (lmp_page_scan_mode_req_handler = 0x40026d4c) + [!provide] PROVIDE (lmp_supv_to_handler = 0x40026d94) + [!provide] PROVIDE (lmp_test_activate_handler = 0x40026e7c) + [!provide] PROVIDE (lmp_test_ctrl_handler = 0x40026ee4) + [!provide] PROVIDE (lmp_enc_key_size_mask_req_handler = 0x40027038) + [!provide] PROVIDE (lmp_enc_key_size_mask_res_handler = 0x400270a4) + [!provide] PROVIDE (lmp_set_afh_handler = 0x4002b2e4) + [!provide] PROVIDE (lmp_encaps_hdr_handler = 0x40027120) + [!provide] PROVIDE (lmp_encaps_payl_handler = 0x4002e590) + [!provide] PROVIDE (lmp_sp_nb_handler = 0x4002acf0) + [!provide] PROVIDE (lmp_sp_cfm_handler = 0x4002b170) + [!provide] PROVIDE (lmp_dhkey_chk_handler = 0x4002ab48) + [!provide] PROVIDE (lmp_pause_enc_aes_req_handler = 0x400279a4) + [!provide] PROVIDE (lmp_io_cap_res_handler = 0x4002c670) + [!provide] PROVIDE (lmp_io_cap_req_handler = 0x4002c7a4) + [!provide] PROVIDE (lc_cmd_cmp_bd_addr_send = 0x4002cec4) + [!provide] PROVIDE (ld_acl_tx_packet_type_select = 0x4002fb40) + [!provide] PROVIDE (ld_acl_sched = 0x40033268) + [!provide] PROVIDE (ld_acl_sniff_sched = 0x4003340c) + [!provide] PROVIDE (ld_acl_sniff_exit = 0x400312b4) + [!provide] PROVIDE (ld_sco_evt_canceled_cbk = 0x40031e18) + [!provide] PROVIDE (ld_acl_rx = 0x4003274c) + [!provide] PROVIDE (ld_acl_tx = 0x4002ffdc) + [!provide] PROVIDE (ld_acl_rx_sync = 0x4002fbec) + [!provide] PROVIDE (ld_acl_rx_sync2 = 0x4002fd8c) + [!provide] PROVIDE (ld_acl_rx_no_sync = 0x4002fe78) + [!provide] PROVIDE (ld_acl_clk_isr = 0x40030cf8) + [!provide] PROVIDE (ld_acl_rsw_frm_cbk = 0x40033bb0) + [!provide] PROVIDE (ld_sco_modify = 0x40031778) + [!provide] PROVIDE (lm_cmd_cmp_send = 0x40051838) + [!provide] PROVIDE (ld_sco_resched_cbk = 0x40031a10) + [!provide] PROVIDE (ld_sco_frm_cbk = 0x400349dc) + [!provide] PROVIDE (ld_sco_evt_start_cbk = 0x40031afc) + [!provide] PROVIDE (ld_sco_evt_stop_cbk = 0x40031d78) + [!provide] PROVIDE (ld_acl_rsw_evt_start_cbk = 0x40031154) + [!provide] PROVIDE (ld_acl_sco_rsvd_check = 0x4002fa94) + [!provide] PROVIDE (ld_acl_sniff_frm_cbk = 0x4003482c) + [!provide] PROVIDE (ld_inq_end = 0x4003ab48) + [!provide] PROVIDE (ld_inq_sched = 0x4003aba4) + [!provide] PROVIDE (ld_inq_frm_cbk = 0x4003ae4c) + [!provide] PROVIDE (ld_pscan_frm_cbk = 0x4003ebe4) + [!provide] PROVIDE (r_ld_acl_active_hop_types_get = 0x40036e10) + [!provide] PROVIDE (r_ld_acl_afh_confirm = 0x40036d40) + [!provide] PROVIDE (r_ld_acl_afh_prepare = 0x40036c84) + [!provide] PROVIDE (r_ld_acl_afh_set = 0x40036b60) + [!provide] PROVIDE (r_ld_acl_allowed_tx_packet_types_set = 0x40036810) + [!provide] PROVIDE (r_ld_acl_bcst_rx_dec = 0x40036394) + [!provide] PROVIDE (r_ld_acl_bit_off_get = 0x40036b18) + [!provide] PROVIDE (r_ld_acl_clk_adj_set = 0x40036a00) + [!provide] PROVIDE (r_ld_acl_clk_off_get = 0x40036b00) + [!provide] PROVIDE (r_ld_acl_clk_set = 0x40036950) + [!provide] PROVIDE (r_ld_acl_clock_offset_get = 0x400364c0) + [!provide] PROVIDE (r_ld_acl_current_tx_power_get = 0x400368f0) + [!provide] PROVIDE (r_ld_acl_data_flush = 0x400357bc) + [!provide] PROVIDE (r_ld_acl_data_tx = 0x4003544c) + [!provide] PROVIDE (r_ld_acl_edr_set = 0x4003678c) + [!provide] PROVIDE (r_ld_acl_enc_key_load = 0x40036404) + [!provide] PROVIDE (r_ld_acl_flow_off = 0x40035400) + [!provide] PROVIDE (r_ld_acl_flow_on = 0x4003541c) + [!provide] PROVIDE (r_ld_acl_flush_timeout_get = 0x40035f9c) + [!provide] PROVIDE (r_ld_acl_flush_timeout_set = 0x40035fe0) + [!provide] PROVIDE (r_ld_acl_init = 0x40034d08) + [!provide] PROVIDE (r_ld_acl_lmp_flush = 0x40035d80) + [!provide] PROVIDE (r_ld_acl_lmp_tx = 0x40035b34) + [!provide] PROVIDE (r_ld_acl_lsto_get = 0x400366b4) + [!provide] PROVIDE (r_ld_acl_lsto_set = 0x400366f8) + [!provide] PROVIDE (r_ld_acl_reset = 0x40034d24) + [!provide] PROVIDE (r_ld_acl_role_get = 0x40036b30) + [!provide] PROVIDE (r_ld_acl_rssi_delta_get = 0x40037028) + [!provide] PROVIDE (r_ld_acl_rsw_req = 0x40035e74) + [!provide] PROVIDE (r_ld_acl_rx_enc = 0x40036344) + [!provide] PROVIDE (r_ld_acl_rx_max_slot_get = 0x40036e58) + [!provide] PROVIDE (r_ld_acl_rx_max_slot_set = 0x40036ea0) + [!provide] PROVIDE (r_ld_acl_slot_offset_get = 0x4003653c) + [!provide] PROVIDE (r_ld_acl_slot_offset_set = 0x40036658) + [!provide] PROVIDE (r_ld_acl_sniff = 0x4003617c) + [!provide] PROVIDE (r_ld_acl_sniff_trans = 0x400360a8) + [!provide] PROVIDE (r_ld_acl_ssr_set = 0x40036274) + [!provide] PROVIDE (r_ld_acl_start = 0x40034ddc) + [!provide] PROVIDE (r_ld_acl_stop = 0x4003532c) + [!provide] PROVIDE (r_ld_acl_test_mode_set = 0x40036f24) + [!provide] PROVIDE (r_ld_acl_timing_accuracy_set = 0x4003673c) + [!provide] PROVIDE (r_ld_acl_t_poll_get = 0x40036024) + [!provide] PROVIDE (r_ld_acl_t_poll_set = 0x40036068) + [!provide] PROVIDE (r_ld_acl_tx_enc = 0x400362f8) + [!provide] PROVIDE (ld_acl_frm_cbk = 0x40034414) + [!provide] PROVIDE (ld_acl_rsw_end = 0x40032bc0) + [!provide] PROVIDE (ld_acl_end = 0x40033140) + [!provide] PROVIDE (ld_acl_resched = 0x40033814) + [!provide] PROVIDE (ld_acl_test_mode_update = 0x40032050) + [!provide] PROVIDE (r_ld_acl_unsniff = 0x400361e0) + [!provide] PROVIDE (r_ld_active_check = 0x4003cac4) + [!provide] PROVIDE (r_ld_afh_ch_assess_data_get = 0x4003caec) + [!provide] PROVIDE (r_ld_bcst_acl_data_tx = 0x40038d3c) + [!provide] PROVIDE (r_ld_bcst_acl_init = 0x40038bd0) + [!provide] PROVIDE (r_ld_bcst_acl_reset = 0x40038bdc) + [!provide] PROVIDE (r_ld_bcst_acl_start = 0x4003882c) + [!provide] PROVIDE (r_ld_bcst_afh_update = 0x40038f3c) + [!provide] PROVIDE (r_ld_bcst_enc_key_load = 0x4003906c) + [!provide] PROVIDE (r_ld_bcst_lmp_tx = 0x40038bf8) + [!provide] PROVIDE (r_ld_bcst_tx_enc = 0x40038ff8) + [!provide] PROVIDE (r_ld_bd_addr_get = 0x4003ca20) + [!provide] PROVIDE (r_ld_channel_assess = 0x4003c184) + [!provide] PROVIDE (r_ld_class_of_dev_get = 0x4003ca34) + [!provide] PROVIDE (r_ld_class_of_dev_set = 0x4003ca50) + [!provide] PROVIDE (r_ld_csb_rx_afh_update = 0x40039af4) + [!provide] PROVIDE (r_ld_csb_rx_init = 0x40039690) + [!provide] PROVIDE (r_ld_csb_rx_reset = 0x4003969c) + [!provide] PROVIDE (r_ld_csb_rx_start = 0x4003972c) + [!provide] PROVIDE (r_ld_csb_rx_stop = 0x40039bb8) + [!provide] PROVIDE (r_ld_csb_tx_afh_update = 0x4003a5fc) + [!provide] PROVIDE (r_ld_csb_tx_clr_data = 0x4003a71c) + [!provide] PROVIDE (r_ld_csb_tx_dis = 0x4003a5e8) + [!provide] PROVIDE (r_ld_csb_tx_en = 0x4003a1c0) + [!provide] PROVIDE (r_ld_csb_tx_init = 0x4003a0e8) + [!provide] PROVIDE (r_ld_csb_tx_reset = 0x4003a0f8) + [!provide] PROVIDE (r_ld_csb_tx_set_data = 0x4003a6c0) + [!provide] PROVIDE (ld_csb_tx_sched = 0x40039c1c) + [!provide] PROVIDE (ld_csb_tx_evt_start_cbk = 0x40039d0c) + [!provide] PROVIDE (ld_csb_tx_evt_canceled_cbk = 0x40039ee4) + [!provide] PROVIDE (r_ld_fm_clk_isr = 0x4003a7a8) + [!provide] PROVIDE (r_ld_fm_frame_isr = 0x4003a82c) + [!provide] PROVIDE (r_ld_fm_init = 0x4003a760) + [!provide] PROVIDE (r_ld_fm_prog_check = 0x4003ab28) + [!provide] PROVIDE (r_ld_fm_prog_disable = 0x4003a984) + [!provide] PROVIDE (r_ld_fm_prog_enable = 0x4003a944) + [!provide] PROVIDE (r_ld_fm_prog_push = 0x4003a9d4) + [!provide] PROVIDE (r_ld_fm_reset = 0x4003a794) + [!provide] PROVIDE (r_ld_fm_rx_isr = 0x4003a7f4) + [!provide] PROVIDE (r_ld_fm_sket_isr = 0x4003a8a4) + [!provide] PROVIDE (r_ld_init = 0x4003c294) + [!provide] PROVIDE (r_ld_inq_init = 0x4003b15c) + [!provide] PROVIDE (r_ld_inq_reset = 0x4003b168) + [!provide] PROVIDE (r_ld_inq_start = 0x4003b1f0) + [!provide] PROVIDE (r_ld_inq_stop = 0x4003b4f0) + [!provide] PROVIDE (r_ld_iscan_eir_get = 0x4003c118) + [!provide] PROVIDE (r_ld_iscan_eir_set = 0x4003bfa0) + [!provide] PROVIDE (r_ld_iscan_init = 0x4003b9f0) + [!provide] PROVIDE (r_ld_iscan_reset = 0x4003ba14) + [!provide] PROVIDE (r_ld_iscan_restart = 0x4003ba44) + [!provide] PROVIDE (r_ld_iscan_start = 0x4003bb28) + [!provide] PROVIDE (r_ld_iscan_stop = 0x4003bf1c) + [!provide] PROVIDE (r_ld_iscan_tx_pwr_get = 0x4003c138) + [!provide] PROVIDE (r_ld_page_init = 0x4003d808) + [!provide] PROVIDE (r_ld_page_reset = 0x4003d814) + [!provide] PROVIDE (r_ld_page_start = 0x4003d848) + [!provide] PROVIDE (r_ld_page_stop = 0x4003da54) + [!provide] PROVIDE (ld_page_frm_cbk = 0x4003d280) + [!provide] PROVIDE (ld_page_em_init = 0x4003cb34) + [!provide] PROVIDE (r_ld_pca_coarse_clock_adjust = 0x4003e324) + [!provide] PROVIDE (r_ld_pca_init = 0x4003deb4) + [!provide] PROVIDE (r_ld_pca_initiate_clock_dragging = 0x4003e4ac) + [!provide] PROVIDE (r_ld_pca_local_config = 0x4003df6c) + [!provide] PROVIDE (r_ld_pca_mws_frame_sync = 0x4003e104) + [!provide] PROVIDE (r_ld_pca_mws_moment_offset_gt = 0x4003e278) + [!provide] PROVIDE (r_ld_pca_mws_moment_offset_lt = 0x4003e280) + [!provide] PROVIDE (r_ld_pca_reporting_enable = 0x4003e018) + [!provide] PROVIDE (r_ld_pca_reset = 0x4003df0c) + [!provide] PROVIDE (r_ld_pca_update_target_offset = 0x4003e050) + [!provide] PROVIDE (r_ld_pscan_evt_handler = 0x4003f238) + [!provide] PROVIDE (r_ld_pscan_init = 0x4003f474) + [!provide] PROVIDE (r_ld_pscan_reset = 0x4003f498) + [!provide] PROVIDE (r_ld_pscan_restart = 0x4003f4b8) + [!provide] PROVIDE (r_ld_pscan_start = 0x4003f514) + [!provide] PROVIDE (r_ld_pscan_stop = 0x4003f618) + [!provide] PROVIDE (r_ld_read_clock = 0x4003c9e4) + [!provide] PROVIDE (r_ld_reset = 0x4003c714) + [!provide] PROVIDE (r_ld_sched_acl_add = 0x4003f978) + [!provide] PROVIDE (r_ld_sched_acl_remove = 0x4003f99c) + [!provide] PROVIDE (r_ld_sched_compute = 0x4003f6f8) + [!provide] PROVIDE (r_ld_sched_init = 0x4003f7ac) + [!provide] PROVIDE (r_ld_sched_inq_add = 0x4003f8a8) + [!provide] PROVIDE (r_ld_sched_inq_remove = 0x4003f8d0) + [!provide] PROVIDE (r_ld_sched_iscan_add = 0x4003f7e8) + [!provide] PROVIDE (r_ld_sched_iscan_remove = 0x4003f808) + [!provide] PROVIDE (r_ld_sched_page_add = 0x4003f910) + [!provide] PROVIDE (r_ld_sched_page_remove = 0x4003f938) + [!provide] PROVIDE (r_ld_sched_pscan_add = 0x4003f828) + [!provide] PROVIDE (r_ld_sched_pscan_remove = 0x4003f848) + [!provide] PROVIDE (r_ld_sched_reset = 0x4003f7d4) + [!provide] PROVIDE (r_ld_sched_sco_add = 0x4003fa4c) + [!provide] PROVIDE (r_ld_sched_sco_remove = 0x4003fa9c) + [!provide] PROVIDE (r_ld_sched_sniff_add = 0x4003f9c4) + [!provide] PROVIDE (r_ld_sched_sniff_remove = 0x4003fa0c) + [!provide] PROVIDE (r_ld_sched_sscan_add = 0x4003f868) + [!provide] PROVIDE (r_ld_sched_sscan_remove = 0x4003f888) + [!provide] PROVIDE (r_ld_sco_audio_isr = 0x40037cc8) + [!provide] PROVIDE (r_ld_sco_data_tx = 0x40037ee8) + [!provide] PROVIDE (r_ld_sco_start = 0x40037110) + [!provide] PROVIDE (r_ld_sco_stop = 0x40037c40) + [!provide] PROVIDE (r_ld_sco_update = 0x40037a74) + [!provide] PROVIDE (r_ld_sscan_activated = 0x4004031c) + [!provide] PROVIDE (r_ld_sscan_init = 0x400402f0) + [!provide] PROVIDE (r_ld_sscan_reset = 0x400402fc) + [!provide] PROVIDE (r_ld_sscan_start = 0x40040384) + [!provide] PROVIDE (r_ld_strain_init = 0x400409f4) + [!provide] PROVIDE (r_ld_strain_reset = 0x40040a00) + [!provide] PROVIDE (r_ld_strain_start = 0x40040a8c) + [!provide] PROVIDE (r_ld_strain_stop = 0x40040df0) + [!provide] PROVIDE (r_ld_timing_accuracy_get = 0x4003caac) + [!provide] PROVIDE (r_ld_util_active_master_afh_map_get = 0x4004131c) + [!provide] PROVIDE (r_ld_util_active_master_afh_map_set = 0x40041308) + [!provide] PROVIDE (r_ld_util_bch_create = 0x40040fcc) + [!provide] PROVIDE (r_ld_util_fhs_pk = 0x400411c8) + [!provide] PROVIDE (r_ld_util_fhs_unpk = 0x40040e54) + [!provide] PROVIDE (r_ld_util_stp_pk = 0x400413f4) + [!provide] PROVIDE (r_ld_util_stp_unpk = 0x40041324) + [!provide] PROVIDE (r_ld_version_get = 0x4003ca6c) + [!provide] PROVIDE (r_ld_wlcoex_set = 0x4003caf8) + [!provide] PROVIDE (r_llc_ch_assess_get_current_ch_map = 0x40041574) + [!provide] PROVIDE (r_llc_ch_assess_get_local_ch_map = 0x4004150c) + [!provide] PROVIDE (r_llc_ch_assess_local = 0x40041494) + [!provide] PROVIDE (r_llc_ch_assess_merge_ch = 0x40041588) + [!provide] PROVIDE (r_llc_ch_assess_reass_ch = 0x400415c0) + [!provide] PROVIDE (r_llc_common_cmd_complete_send = 0x40044eac) + [!provide] PROVIDE (r_llc_common_cmd_status_send = 0x40044ee0) + [!provide] PROVIDE (r_llc_common_enc_change_evt_send = 0x40044f6c) + [!provide] PROVIDE (r_llc_common_enc_key_ref_comp_evt_send = 0x40044f38) + [!provide] PROVIDE (r_llc_common_flush_occurred_send = 0x40044f0c) + [!provide] PROVIDE (r_llc_common_nb_of_pkt_comp_evt_send = 0x40045000) + [!provide] PROVIDE (r_llc_con_update_complete_send = 0x40044d68) + [!provide] PROVIDE (r_llc_con_update_finished = 0x4004518c) + [!provide] PROVIDE (r_llc_con_update_ind = 0x40045038) + [!provide] PROVIDE (r_llc_discon_event_complete_send = 0x40044a30) + [!provide] PROVIDE (r_llc_end_evt_defer = 0x40046330) + [!provide] PROVIDE (r_llc_feats_rd_event_send = 0x40044e0c) + [!provide] PROVIDE (r_llc_init = 0x40044778) + [!provide] PROVIDE (r_llc_le_con_cmp_evt_send = 0x40044a78) + [!provide] PROVIDE (r_llc_llcp_ch_map_update_pdu_send = 0x40043f94) + [!provide] PROVIDE (r_llc_llcp_con_param_req_pdu_send = 0x400442fc) + [!provide] PROVIDE (r_llc_llcp_con_param_rsp_pdu_send = 0x40044358) + [!provide] PROVIDE (r_llc_llcp_con_update_pdu_send = 0x400442c4) + [!provide] PROVIDE (r_llc_llcp_enc_req_pdu_send = 0x40044064) + [!provide] PROVIDE (r_llc_llcp_enc_rsp_pdu_send = 0x40044160) + [!provide] PROVIDE (r_llc_llcp_feats_req_pdu_send = 0x400443b4) + [!provide] PROVIDE (r_llc_llcp_feats_rsp_pdu_send = 0x400443f0) + [!provide] PROVIDE (r_llc_llcp_get_autorize = 0x4004475c) + [!provide] PROVIDE (r_llc_llcp_length_req_pdu_send = 0x40044574) + [!provide] PROVIDE (r_llc_llcp_length_rsp_pdu_send = 0x400445ac) + [!provide] PROVIDE (r_llc_llcp_pause_enc_req_pdu_send = 0x40043fd8) + [!provide] PROVIDE (r_llc_llcp_pause_enc_rsp_pdu_send = 0x40044010) + [!provide] PROVIDE (r_llc_llcp_ping_req_pdu_send = 0x4004454c) + [!provide] PROVIDE (r_llc_llcp_ping_rsp_pdu_send = 0x40044560) + [!provide] PROVIDE (r_llc_llcp_recv_handler = 0x40044678) + [!provide] PROVIDE (r_llc_llcp_reject_ind_pdu_send = 0x4004425c) + [!provide] PROVIDE (r_llc_llcp_start_enc_req_pdu_send = 0x4004441c) + [!provide] PROVIDE (r_llc_llcp_start_enc_rsp_pdu_send = 0x400441f8) + [!provide] PROVIDE (r_llc_llcp_terminate_ind_pdu_send = 0x400444b0) + [!provide] PROVIDE (r_llc_llcp_tester_send = 0x400445e4) + [!provide] PROVIDE (r_llc_llcp_unknown_rsp_send_pdu = 0x40044534) + [!provide] PROVIDE (r_llc_llcp_version_ind_pdu_send = 0x40043f6c) + [!provide] PROVIDE (r_llc_lsto_con_update = 0x40045098) + [!provide] PROVIDE (r_llc_ltk_req_send = 0x40044dc0) + [!provide] PROVIDE (r_llc_map_update_finished = 0x40045260) + [!provide] PROVIDE (r_llc_map_update_ind = 0x400450f0) + [!provide] PROVIDE (r_llc_pdu_acl_tx_ack_defer = 0x400464dc) + [!provide] PROVIDE (r_llc_pdu_defer = 0x40046528) + [!provide] PROVIDE (r_llc_pdu_llcp_tx_ack_defer = 0x400463ac) + [!provide] PROVIDE (r_llc_reset = 0x400447b8) + [!provide] PROVIDE (r_llc_start = 0x400447f4) + [!provide] PROVIDE (r_llc_stop = 0x400449ac) + [!provide] PROVIDE (r_llc_util_bw_mgt = 0x4004629c) + [!provide] PROVIDE (r_llc_util_clear_operation_ptr = 0x40046234) + [!provide] PROVIDE (r_llc_util_dicon_procedure = 0x40046130) + [!provide] PROVIDE (r_llc_util_get_free_conhdl = 0x400460c8) + [!provide] PROVIDE (r_llc_util_get_nb_active_link = 0x40046100) + [!provide] PROVIDE (r_llc_util_set_auth_payl_to_margin = 0x400461f4) + [!provide] PROVIDE (r_llc_util_set_llcp_discard_enable = 0x400461c8) + [!provide] PROVIDE (r_llc_util_update_channel_map = 0x400461ac) + [!provide] PROVIDE (r_llc_version_rd_event_send = 0x40044e60) + [!provide] PROVIDE (r_lld_adv_start = 0x40048b38) + [!provide] PROVIDE (r_lld_adv_stop = 0x40048ea0) + [!provide] PROVIDE (r_lld_ch_map_ind = 0x4004a2f4) + [!provide] PROVIDE (r_lld_con_param_req = 0x40049f0c) + [!provide] PROVIDE (r_lld_con_param_rsp = 0x40049e00) + [!provide] PROVIDE (r_lld_con_start = 0x400491f8) + [!provide] PROVIDE (r_lld_con_stop = 0x40049fdc) + [!provide] PROVIDE (r_lld_con_update_after_param_req = 0x40049bcc) + [!provide] PROVIDE (r_lld_con_update_ind = 0x4004a30c) + [!provide] PROVIDE (r_lld_con_update_req = 0x40049b60) + [!provide] PROVIDE (r_lld_core_reset = 0x40048a9c) + [!provide] PROVIDE (r_lld_crypt_isr = 0x4004a324) + [!provide] PROVIDE (r_lld_evt_adv_create = 0x400481f4) + [!provide] PROVIDE (r_lld_evt_canceled = 0x400485c8) + [!provide] PROVIDE (r_lld_evt_channel_next = 0x40046aac) + [!provide] PROVIDE (r_lld_evt_deffered_elt_handler = 0x400482bc) + [!provide] PROVIDE (r_lld_evt_delete_elt_handler = 0x40046974) + [!provide] PROVIDE (r_lld_evt_delete_elt_push = 0x40046a3c) + [!provide] PROVIDE (r_lld_evt_drift_compute = 0x40047670) + [!provide] PROVIDE (r_lld_evt_elt_delete = 0x40047538) + [!provide] PROVIDE (r_lld_evt_elt_insert = 0x400474c8) + [!provide] PROVIDE (r_lld_evt_end = 0x400483e8) + [!provide] PROVIDE (r_lld_evt_end_isr = 0x4004862c) + [!provide] PROVIDE (r_lld_evt_init = 0x40046b3c) + [!provide] PROVIDE (r_lld_evt_init_evt = 0x40046cd0) + [!provide] PROVIDE (r_lld_evt_move_to_master = 0x40047ba0) + [!provide] PROVIDE (r_lld_evt_move_to_slave = 0x40047e18) + [!provide] PROVIDE (r_lld_evt_prevent_stop = 0x40047adc) + [!provide] PROVIDE (r_lld_evt_restart = 0x40046d50) + [!provide] PROVIDE (r_lld_evt_rx = 0x40048578) + [!provide] PROVIDE (r_lld_evt_rx_isr = 0x40048678) + [!provide] PROVIDE (r_lld_evt_scan_create = 0x40047ae8) + [!provide] PROVIDE (r_lld_evt_schedule = 0x40047908) + [!provide] PROVIDE (r_lld_evt_schedule_next = 0x400477dc) + [!provide] PROVIDE (r_lld_evt_schedule_next_instant = 0x400476a8) + [!provide] PROVIDE (r_lld_evt_slave_update = 0x40048138) + [!provide] PROVIDE (r_lld_evt_update_create = 0x40047cd8) + [!provide] PROVIDE (r_lld_get_mode = 0x40049ff8) + [!provide] PROVIDE (r_lld_init = 0x4004873c) + [!provide] PROVIDE (r_lld_move_to_master = 0x400499e0) + [!provide] PROVIDE (r_lld_move_to_slave = 0x4004a024) + [!provide] PROVIDE (r_lld_pdu_adv_pack = 0x4004b488) + [!provide] PROVIDE (r_lld_pdu_check = 0x4004ac34) + [!provide] PROVIDE (r_lld_pdu_data_send = 0x4004b018) + [!provide] PROVIDE (r_lld_pdu_data_tx_push = 0x4004aecc) + [!provide] PROVIDE (r_lld_pdu_rx_handler = 0x4004b4d4) + [!provide] PROVIDE (r_lld_pdu_send_packet = 0x4004b774) + [!provide] PROVIDE (r_lld_pdu_tx_flush = 0x4004b414) + [!provide] PROVIDE (r_lld_pdu_tx_loop = 0x4004ae40) + [!provide] PROVIDE (r_lld_pdu_tx_prog = 0x4004b120) + [!provide] PROVIDE (r_lld_pdu_tx_push = 0x4004b080) + [!provide] PROVIDE (r_lld_ral_renew_req = 0x4004a73c) + [!provide] PROVIDE (r_lld_scan_start = 0x40048ee0) + [!provide] PROVIDE (r_lld_scan_stop = 0x40049190) + [!provide] PROVIDE (r_lld_test_mode_rx = 0x4004a540) + [!provide] PROVIDE (r_lld_test_mode_tx = 0x4004a350) + [!provide] PROVIDE (r_lld_test_stop = 0x4004a710) + [!provide] PROVIDE (r_lld_util_anchor_point_move = 0x4004bacc) + [!provide] PROVIDE (r_lld_util_compute_ce_max = 0x4004bc0c) + [!provide] PROVIDE (r_lld_util_connection_param_set = 0x4004ba40) + [!provide] PROVIDE (r_lld_util_dle_set_cs_fields = 0x4004ba90) + [!provide] PROVIDE (r_lld_util_eff_tx_time_set = 0x4004bd88) + [!provide] PROVIDE (r_lld_util_elt_programmed = 0x4004bce0) + [!provide] PROVIDE (r_lld_util_flush_list = 0x4004bbd8) + [!provide] PROVIDE (r_lld_util_freq2chnl = 0x4004b9e4) + [!provide] PROVIDE (r_lld_util_get_bd_address = 0x4004b8ac) + [!provide] PROVIDE (r_lld_util_get_local_offset = 0x4004ba10) + [!provide] PROVIDE (r_lld_util_get_peer_offset = 0x4004ba24) + [!provide] PROVIDE (r_lld_util_get_tx_pkt_cnt = 0x4004bd80) + [!provide] PROVIDE (r_lld_util_instant_get = 0x4004b890) + [!provide] PROVIDE (r_lld_util_instant_ongoing = 0x4004bbfc) + [!provide] PROVIDE (r_lld_util_priority_set = 0x4004bd10) + [!provide] PROVIDE (r_lld_util_priority_update = 0x4004bd78) + [!provide] PROVIDE (r_lld_util_ral_force_rpa_renew = 0x4004b980) + [!provide] PROVIDE (r_lld_util_set_bd_address = 0x4004b8f8) + [!provide] PROVIDE (r_lld_wlcoex_set = 0x4004bd98) + [!provide] PROVIDE (r_llm_ble_ready = 0x4004cc34) + [!provide] PROVIDE (r_llm_common_cmd_complete_send = 0x4004d288) + [!provide] PROVIDE (r_llm_common_cmd_status_send = 0x4004d2b4) + [!provide] PROVIDE (r_llm_con_req_ind = 0x4004cc54) + [!provide] PROVIDE (r_llm_con_req_tx_cfm = 0x4004d158) + [!provide] PROVIDE (r_llm_create_con = 0x4004de78) + [!provide] PROVIDE (r_llm_encryption_done = 0x4004dff8) + [!provide] PROVIDE (r_llm_encryption_start = 0x4004e128) + [!provide] PROVIDE (r_llm_end_evt_defer = 0x4004eb6c) + [!provide] PROVIDE (r_llm_init = 0x4004c9f8) + [!provide] PROVIDE (r_llm_le_adv_report_ind = 0x4004cdf4) + [!provide] PROVIDE (r_llm_pdu_defer = 0x4004ec48) + [!provide] PROVIDE (r_llm_ral_clear = 0x4004e1fc) + [!provide] PROVIDE (r_llm_ral_dev_add = 0x4004e23c) + [!provide] PROVIDE (r_llm_ral_dev_rm = 0x4004e3bc) + [!provide] PROVIDE (r_llm_ral_get_rpa = 0x4004e400) + [!provide] PROVIDE (r_llm_ral_set_timeout = 0x4004e4a0) + [!provide] PROVIDE (r_llm_ral_update = 0x4004e4f8) + [!provide] PROVIDE (r_llm_set_adv_data = 0x4004d960) + [!provide] PROVIDE (r_llm_set_adv_en = 0x4004d7ec) + [!provide] PROVIDE (r_llm_set_adv_param = 0x4004d5f4) + [!provide] PROVIDE (r_llm_set_scan_en = 0x4004db64) + [!provide] PROVIDE (r_llm_set_scan_param = 0x4004dac8) + [!provide] PROVIDE (r_llm_set_scan_rsp_data = 0x4004da14) + [!provide] PROVIDE (r_llm_test_mode_start_rx = 0x4004d534) + [!provide] PROVIDE (r_llm_test_mode_start_tx = 0x4004d2fc) + [!provide] PROVIDE (r_llm_util_adv_data_update = 0x4004e8fc) + [!provide] PROVIDE (r_llm_util_apply_bd_addr = 0x4004e868) + [!provide] PROVIDE (r_llm_util_bd_addr_in_ral = 0x4004eb08) + [!provide] PROVIDE (r_llm_util_bd_addr_in_wl = 0x4004e788) + [!provide] PROVIDE (r_llm_util_bd_addr_wl_position = 0x4004e720) + [!provide] PROVIDE (r_llm_util_bl_add = 0x4004e9ac) + [!provide] PROVIDE (r_llm_util_bl_check = 0x4004e930) + [!provide] PROVIDE (r_llm_util_bl_rem = 0x4004ea70) + [!provide] PROVIDE (r_llm_util_check_address_validity = 0x4004e7e4) + [!provide] PROVIDE (r_llm_util_check_evt_mask = 0x4004e8b0) + [!provide] PROVIDE (r_llm_util_check_map_validity = 0x4004e800) + [!provide] PROVIDE (r_llm_util_get_channel_map = 0x4004e8d4) + [!provide] PROVIDE (r_llm_util_get_supp_features = 0x4004e8e8) + [!provide] PROVIDE (r_llm_util_set_public_addr = 0x4004e89c) + [!provide] PROVIDE (r_llm_wl_clr = 0x4004dc54) + [!provide] PROVIDE (r_llm_wl_dev_add = 0x4004dcc0) + [!provide] PROVIDE (r_llm_wl_dev_add_hdl = 0x4004dd38) + [!provide] PROVIDE (r_llm_wl_dev_rem = 0x4004dcfc) + [!provide] PROVIDE (r_llm_wl_dev_rem_hdl = 0x4004dde0) + [!provide] PROVIDE (r_lm_acl_disc = 0x4004f148) + [!provide] PROVIDE (r_LM_AddSniff = 0x40022d20) + [!provide] PROVIDE (r_lm_add_sync = 0x40051358) + [!provide] PROVIDE (r_lm_afh_activate_timer = 0x4004f444) + [!provide] PROVIDE (r_lm_afh_ch_ass_en_get = 0x4004f3f8) + [!provide] PROVIDE (r_lm_afh_host_ch_class_get = 0x4004f410) + [!provide] PROVIDE (r_lm_afh_master_ch_map_get = 0x4004f43c) + [!provide] PROVIDE (r_lm_afh_peer_ch_class_set = 0x4004f418) + [!provide] PROVIDE (r_lm_check_active_sync = 0x40051334) + [!provide] PROVIDE (r_LM_CheckEdrFeatureRequest = 0x4002f90c) + [!provide] PROVIDE (r_LM_CheckSwitchInstant = 0x4002f8c0) + [!provide] PROVIDE (r_lm_check_sync_hl_rsp = 0x4005169c) + [!provide] PROVIDE (r_lm_clk_adj_ack_pending_clear = 0x4004f514) + [!provide] PROVIDE (r_lm_clk_adj_instant_pending_set = 0x4004f4d8) + [!provide] PROVIDE (r_LM_ComputePacketType = 0x4002f554) + [!provide] PROVIDE (r_LM_ComputeSniffSubRate = 0x400233ac) + [!provide] PROVIDE (r_lm_debug_key_compare_192 = 0x4004f3a8) + [!provide] PROVIDE (r_lm_debug_key_compare_256 = 0x4004f3d0) + [!provide] PROVIDE (r_lm_dhkey_calc_init = 0x40013234) + [!provide] PROVIDE (r_lm_dhkey_compare = 0x400132d8) + [!provide] PROVIDE (r_lm_dut_mode_en_get = 0x4004f3ec) + [!provide] PROVIDE (r_LM_ExtractMaxEncKeySize = 0x4001aca4) + [!provide] PROVIDE (r_lm_f1 = 0x40012bb8) + [!provide] PROVIDE (r_lm_f2 = 0x40012cfc) + [!provide] PROVIDE (r_lm_f3 = 0x40013050) + [!provide] PROVIDE (r_lm_g = 0x40012f90) + [!provide] PROVIDE (r_LM_GetAFHSwitchInstant = 0x4002f86c) + [!provide] PROVIDE (r_lm_get_auth_en = 0x4004f1ac) + [!provide] PROVIDE (r_lm_get_common_pkt_types = 0x4002fa1c) + [!provide] PROVIDE (r_LM_GetConnectionAcceptTimeout = 0x4004f1f4) + [!provide] PROVIDE (r_LM_GetFeature = 0x4002f924) + [!provide] PROVIDE (r_LM_GetLinkTimeout = 0x400233ec) + [!provide] PROVIDE (r_LM_GetLocalNameSeg = 0x4004f200) + [!provide] PROVIDE (r_lm_get_loopback_mode = 0x4004f248) + [!provide] PROVIDE (r_LM_GetMasterEncKeySize = 0x4001b29c) + [!provide] PROVIDE (r_LM_GetMasterEncRand = 0x4001b288) + [!provide] PROVIDE (r_LM_GetMasterKey = 0x4001b260) + [!provide] PROVIDE (r_LM_GetMasterKeyRand = 0x4001b274) + [!provide] PROVIDE (r_lm_get_min_sync_intv = 0x400517a8) + [!provide] PROVIDE (r_lm_get_nb_acl = 0x4004ef9c) + [!provide] PROVIDE (r_lm_get_nb_sync_link = 0x4005179c) + [!provide] PROVIDE (r_lm_get_nonce = 0x400131c4) + [!provide] PROVIDE (r_lm_get_oob_local_commit = 0x4004f374) + [!provide] PROVIDE (r_lm_get_oob_local_data_192 = 0x4004f2d4) + [!provide] PROVIDE (r_lm_get_oob_local_data_256 = 0x4004f318) + [!provide] PROVIDE (r_LM_GetPINType = 0x4004f1e8) + [!provide] PROVIDE (r_lm_get_priv_key_192 = 0x4004f278) + [!provide] PROVIDE (r_lm_get_priv_key_256 = 0x4004f2b8) + [!provide] PROVIDE (r_lm_get_pub_key_192 = 0x4004f258) + [!provide] PROVIDE (r_lm_get_pub_key_256 = 0x4004f298) + [!provide] PROVIDE (r_LM_GetQoSParam = 0x4002f6e0) + [!provide] PROVIDE (r_lm_get_sec_con_host_supp = 0x4004f1d4) + [!provide] PROVIDE (r_LM_GetSniffSubratingParam = 0x4002325c) + [!provide] PROVIDE (r_lm_get_sp_en = 0x4004f1c0) + [!provide] PROVIDE (r_LM_GetSwitchInstant = 0x4002f7f8) + [!provide] PROVIDE (r_lm_get_synchdl = 0x4005175c) + [!provide] PROVIDE (r_lm_get_sync_param = 0x400503b4) + [!provide] PROVIDE (r_lm_init = 0x4004ed34) + [!provide] PROVIDE (r_lm_init_sync = 0x400512d8) + [!provide] PROVIDE (r_lm_is_acl_con = 0x4004f47c) + [!provide] PROVIDE (r_lm_is_acl_con_role = 0x4004f49c) + [!provide] PROVIDE (r_lm_is_clk_adj_ack_pending = 0x4004f4e8) + [!provide] PROVIDE (r_lm_is_clk_adj_instant_pending = 0x4004f4c8) + [!provide] PROVIDE (r_lm_local_ext_fr_configured = 0x4004f540) + [!provide] PROVIDE (r_lm_look_for_stored_link_key = 0x4002f948) + [!provide] PROVIDE (r_lm_look_for_sync = 0x40051774) + [!provide] PROVIDE (r_lm_lt_addr_alloc = 0x4004ef1c) + [!provide] PROVIDE (r_lm_lt_addr_free = 0x4004ef74) + [!provide] PROVIDE (r_lm_lt_addr_reserve = 0x4004ef48) + [!provide] PROVIDE (r_LM_MakeCof = 0x4002f84c) + [!provide] PROVIDE (r_LM_MakeRandVec = 0x400112d8) + [!provide] PROVIDE (r_lm_master_clk_adj_req_handler = 0x40054180) + [!provide] PROVIDE (r_LM_MaxSlot = 0x4002f694) + [!provide] PROVIDE (r_lm_modif_sync = 0x40051578) + [!provide] PROVIDE (r_lm_n_is_zero = 0x40012170) + [!provide] PROVIDE (r_lm_num_clk_adj_ack_pending_set = 0x4004f500) + [!provide] PROVIDE (r_lm_oob_f1 = 0x40012e54) + [!provide] PROVIDE (r_lm_pca_sscan_link_get = 0x4004f560) + [!provide] PROVIDE (r_lm_pca_sscan_link_set = 0x4004f550) + [!provide] PROVIDE (nvds_null_read = 0x400542a0) + [!provide] PROVIDE (nvds_null_write = 0x400542a8) + [!provide] PROVIDE (nvds_null_erase = 0x400542b0) + [!provide] PROVIDE (nvds_read = 0x400542c4) + [!provide] PROVIDE (nvds_write = 0x400542fc) + [!provide] PROVIDE (nvds_erase = 0x40054334) + [!provide] PROVIDE (nvds_init_memory = 0x40054358) + [!provide] PROVIDE (r_lmp_pack = 0x4001135c) + [!provide] PROVIDE (r_lmp_unpack = 0x4001149c) + [!provide] PROVIDE (r_lm_read_features = 0x4004f0d8) + [!provide] PROVIDE (r_LM_RemoveSniff = 0x40023124) + [!provide] PROVIDE (r_LM_RemoveSniffSubrating = 0x400233c4) + [!provide] PROVIDE (r_lm_remove_sync = 0x400517c8) + [!provide] PROVIDE (r_lm_reset_sync = 0x40051304) + [!provide] PROVIDE (r_lm_role_switch_finished = 0x4004f028) + [!provide] PROVIDE (r_lm_role_switch_start = 0x4004efe0) + [!provide] PROVIDE (r_lm_sco_nego_end = 0x40051828) + [!provide] PROVIDE (r_LM_SniffSubrateNegoRequired = 0x40023334) + [!provide] PROVIDE (r_LM_SniffSubratingHlReq = 0x40023154) + [!provide] PROVIDE (r_LM_SniffSubratingPeerReq = 0x400231dc) + [!provide] PROVIDE (r_lm_sp_debug_mode_get = 0x4004f398) + [!provide] PROVIDE (r_lm_sp_n192_convert_wnaf = 0x400123c0) + [!provide] PROVIDE (r_lm_sp_n_one = 0x400123a4) + [!provide] PROVIDE (r_lm_sp_p192_add = 0x40012828) + [!provide] PROVIDE (r_lm_sp_p192_dbl = 0x4001268c) + [!provide] PROVIDE (r_lm_sp_p192_invert = 0x40012b6c) + [!provide] PROVIDE (r_lm_sp_p192_point_jacobian_to_affine = 0x40012468) + [!provide] PROVIDE (r_lm_sp_p192_points_jacobian_to_affine = 0x400124e4) + [!provide] PROVIDE (r_lm_sp_p192_point_to_inf = 0x40012458) + [!provide] PROVIDE (r_lm_sp_pre_compute_points = 0x40012640) + [!provide] PROVIDE (r_lm_sp_sha256_calculate = 0x400121a0) + [!provide] PROVIDE (r_LM_SuppressAclPacket = 0x4002f658) + [!provide] PROVIDE (r_lm_sync_flow_ctrl_en_get = 0x4004f404) + [!provide] PROVIDE (r_LM_UpdateAclEdrPacketType = 0x4002f5d8) + [!provide] PROVIDE (r_LM_UpdateAclPacketType = 0x4002f584) + [!provide] PROVIDE (r_modules_funcs = 0x3ffafd6c) + [!provide] PROVIDE (r_modules_funcs_p = 0x3ffafd68) + [!provide] PROVIDE (r_nvds_del = 0x400544c4) + [!provide] PROVIDE (r_nvds_get = 0x40054488) + [!provide] PROVIDE (r_nvds_init = 0x40054410) + [!provide] PROVIDE (r_nvds_lock = 0x400544fc) + [!provide] PROVIDE (r_nvds_put = 0x40054534) + [!provide] PROVIDE (rom_abs_temp = 0x400054f0) + [!provide] PROVIDE (rom_bb_bss_bw_40_en = 0x4000401c) + [!provide] PROVIDE (rom_bb_bss_cbw40_dig = 0x40003bac) + [!provide] PROVIDE (rom_bb_rx_ht20_cen_bcov_en = 0x40003734) + [!provide] PROVIDE (rom_bb_tx_ht20_cen = 0x40003760) + [!provide] PROVIDE (rom_bb_wdg_test_en = 0x40003b70) + [!provide] PROVIDE (rom_cbw2040_cfg = 0x400040b0) + [!provide] PROVIDE (rom_check_noise_floor = 0x40003c78) + [!provide] PROVIDE (rom_chip_i2c_readReg = 0x40004110) + [!provide] PROVIDE (rom_chip_i2c_writeReg = 0x40004168) + [!provide] PROVIDE (rom_chip_v7_bt_init = 0x40004d8c) + [!provide] PROVIDE (rom_chip_v7_rx_init = 0x40004cec) + [!provide] PROVIDE (rom_chip_v7_rx_rifs_en = 0x40003d90) + [!provide] PROVIDE (rom_chip_v7_tx_init = 0x40004d18) + [!provide] PROVIDE (rom_clk_force_on_vit = 0x40003710) + [!provide] PROVIDE (rom_correct_rf_ana_gain = 0x400062a8) + [!provide] PROVIDE (rom_dc_iq_est = 0x400055c8) + [!provide] PROVIDE (rom_disable_agc = 0x40002fa4) + [!provide] PROVIDE (rom_enable_agc = 0x40002fcc) + [!provide] PROVIDE (rom_en_pwdet = 0x4000506c) + [!provide] PROVIDE (rom_gen_rx_gain_table = 0x40003e3c) + [!provide] PROVIDE (rom_get_data_sat = 0x4000312c) + [!provide] PROVIDE (rom_get_fm_sar_dout = 0x40005204) + [!provide] PROVIDE (rom_get_power_db = 0x40005fc8) + [!provide] PROVIDE (rom_get_pwctrl_correct = 0x400065d4) + [!provide] PROVIDE (rom_get_rfcal_rxiq_data = 0x40005bbc) + [!provide] PROVIDE (rom_get_rf_gain_qdb = 0x40006290) + [!provide] PROVIDE (rom_get_sar_dout = 0x40006564) + 0x40004148 PROVIDE (rom_i2c_readReg = 0x40004148) + 0x400041c0 PROVIDE (rom_i2c_readReg_Mask = 0x400041c0) + 0x400041a4 PROVIDE (rom_i2c_writeReg = 0x400041a4) + 0x400041fc PROVIDE (rom_i2c_writeReg_Mask = 0x400041fc) + [!provide] PROVIDE (rom_index_to_txbbgain = 0x40004df8) + [!provide] PROVIDE (rom_iq_est_disable = 0x40005590) + [!provide] PROVIDE (rom_iq_est_enable = 0x40005514) + [!provide] PROVIDE (rom_linear_to_db = 0x40005f64) + [!provide] PROVIDE (rom_loopback_mode_en = 0x400030f8) + [!provide] PROVIDE (rom_meas_tone_pwr_db = 0x40006004) + [!provide] PROVIDE (rom_mhz2ieee = 0x4000404c) + [!provide] PROVIDE (rom_noise_floor_auto_set = 0x40003bdc) + [!provide] PROVIDE (rom_pbus_debugmode = 0x40004458) + [!provide] PROVIDE (rom_pbus_force_mode = 0x40004270) + [!provide] PROVIDE (rom_pbus_force_test = 0x400043c0) + [!provide] PROVIDE (rom_pbus_rd = 0x40004414) + [!provide] PROVIDE (rom_pbus_rd_addr = 0x40004334) + [!provide] PROVIDE (rom_pbus_rd_shift = 0x40004374) + [!provide] PROVIDE (rom_pbus_rx_dco_cal = 0x40005620) + [!provide] PROVIDE (rom_pbus_set_dco = 0x40004638) + [!provide] PROVIDE (rom_pbus_set_rxgain = 0x40004480) + [!provide] PROVIDE (rom_pbus_workmode = 0x4000446c) + [!provide] PROVIDE (rom_pbus_xpd_rx_off = 0x40004508) + [!provide] PROVIDE (rom_pbus_xpd_rx_on = 0x4000453c) + [!provide] PROVIDE (rom_pbus_xpd_tx_off = 0x40004590) + [!provide] PROVIDE (rom_pbus_xpd_tx_on = 0x400045e0) + [!provide] PROVIDE (rom_phy_disable_agc = 0x40002f6c) + [!provide] PROVIDE (rom_phy_disable_cca = 0x40003000) + [!provide] PROVIDE (rom_phy_enable_agc = 0x40002f88) + [!provide] PROVIDE (rom_phy_enable_cca = 0x4000302c) + [!provide] PROVIDE (rom_phy_freq_correct = 0x40004b44) + [!provide] PROVIDE (rom_phyFuns = 0x3ffae0c0) + [!provide] PROVIDE (rom_phy_get_noisefloor = 0x40003c2c) + [!provide] PROVIDE (rom_phy_get_vdd33 = 0x4000642c) + [!provide] PROVIDE (rom_pow_usr = 0x40003044) + [!provide] PROVIDE (rom_read_sar_dout = 0x400051c0) + [!provide] PROVIDE (rom_restart_cal = 0x400046e0) + [!provide] PROVIDE (rom_rfcal_pwrctrl = 0x40006058) + [!provide] PROVIDE (rom_rfcal_rxiq = 0x40005b4c) + [!provide] PROVIDE (rom_rfcal_txcap = 0x40005dec) + [!provide] PROVIDE (rom_rfpll_reset = 0x40004680) + [!provide] PROVIDE (rom_rfpll_set_freq = 0x400047f8) + [!provide] PROVIDE (rom_rtc_mem_backup = 0x40003db4) + [!provide] PROVIDE (rom_rtc_mem_recovery = 0x40003df4) + [!provide] PROVIDE (rom_rx_gain_force = 0x4000351c) + [!provide] PROVIDE (rom_rxiq_cover_mg_mp = 0x40005a68) + [!provide] PROVIDE (rom_rxiq_get_mis = 0x400058e4) + [!provide] PROVIDE (rom_rxiq_set_reg = 0x40005a00) + [!provide] PROVIDE (rom_set_cal_rxdc = 0x400030b8) + [!provide] PROVIDE (rom_set_chan_cal_interp = 0x40005ce0) + [!provide] PROVIDE (rom_set_channel_freq = 0x40004880) + [!provide] PROVIDE (rom_set_loopback_gain = 0x40003060) + [!provide] PROVIDE (rom_set_noise_floor = 0x40003d48) + [!provide] PROVIDE (rom_set_pbus_mem = 0x400031a4) + [!provide] PROVIDE (rom_set_rf_freq_offset = 0x40004ca8) + [!provide] PROVIDE (rom_set_rxclk_en = 0x40003594) + [!provide] PROVIDE (rom_set_txcap_reg = 0x40005d50) + [!provide] PROVIDE (rom_set_txclk_en = 0x40003564) + [!provide] PROVIDE (rom_spur_coef_cfg = 0x40003ac8) + [!provide] PROVIDE (rom_spur_reg_write_one_tone = 0x400037f0) + [!provide] PROVIDE (rom_start_tx_tone = 0x400036b4) + [!provide] PROVIDE (rom_start_tx_tone_step = 0x400035d0) + [!provide] PROVIDE (rom_stop_tx_tone = 0x40003f98) + [!provide] PROVIDE (_rom_store = 0x4000d66c) + [!provide] PROVIDE (_rom_store_table = 0x4000d4f8) + [!provide] PROVIDE (rom_target_power_add_backoff = 0x40006268) + [!provide] PROVIDE (rom_tx_atten_set_interp = 0x400061cc) + [!provide] PROVIDE (rom_txbbgain_to_index = 0x40004dc0) + [!provide] PROVIDE (rom_txcal_work_mode = 0x4000510c) + [!provide] PROVIDE (rom_txdc_cal_init = 0x40004e10) + [!provide] PROVIDE (rom_txdc_cal_v70 = 0x40004ea4) + [!provide] PROVIDE (rom_txiq_cover = 0x4000538c) + [!provide] PROVIDE (rom_txiq_get_mis_pwr = 0x400052dc) + [!provide] PROVIDE (rom_txiq_set_reg = 0x40005154) + [!provide] PROVIDE (rom_tx_pwctrl_bg_init = 0x4000662c) + [!provide] PROVIDE (rom_txtone_linear_pwr = 0x40005290) + [!provide] PROVIDE (rom_wait_rfpll_cal_end = 0x400047a8) + [!provide] PROVIDE (rom_write_gain_mem = 0x4000348c) + [!provide] PROVIDE (rom_write_rfpll_sdm = 0x40004740) + [!provide] PROVIDE (roundup2 = 0x4000ab7c) + [!provide] PROVIDE (r_plf_funcs_p = 0x3ffb8360) + [!provide] PROVIDE (r_rf_rw_bt_init = 0x40054868) + [!provide] PROVIDE (r_rf_rw_init = 0x40054b0c) + [!provide] PROVIDE (r_rf_rw_le_init = 0x400549d0) + [!provide] PROVIDE (r_rwble_activity_ongoing_check = 0x40054d8c) + [!provide] PROVIDE (r_rwble_init = 0x40054bf4) + [!provide] PROVIDE (r_rwble_isr = 0x40054e08) + [!provide] PROVIDE (r_rwble_reset = 0x40054ce8) + [!provide] PROVIDE (r_rwble_sleep_check = 0x40054d78) + [!provide] PROVIDE (r_rwble_version = 0x40054dac) + [!provide] PROVIDE (r_rwbt_init = 0x40055160) + [!provide] PROVIDE (r_rwbt_isr = 0x40055248) + [!provide] PROVIDE (r_rwbt_reset = 0x400551bc) + [!provide] PROVIDE (r_rwbt_sleep_check = 0x4005577c) + [!provide] PROVIDE (r_rwbt_sleep_enter = 0x400557a4) + [!provide] PROVIDE (r_rwbt_sleep_wakeup = 0x400557fc) + [!provide] PROVIDE (r_rwbt_sleep_wakeup_end = 0x400558cc) + [!provide] PROVIDE (r_rwbt_version = 0x4005520c) + [!provide] PROVIDE (r_rwip_assert_err = 0x40055f88) + [!provide] PROVIDE (r_rwip_check_wakeup_boundary = 0x400558fc) + [!provide] PROVIDE (r_rwip_ext_wakeup_enable = 0x40055f3c) + [!provide] PROVIDE (r_rwip_init = 0x4005595c) + [!provide] PROVIDE (r_rwip_pca_clock_dragging_only = 0x40055f48) + [!provide] PROVIDE (r_rwip_prevent_sleep_clear = 0x40055ec8) + [!provide] PROVIDE (r_rwip_prevent_sleep_set = 0x40055e64) + [!provide] PROVIDE (r_rwip_reset = 0x40055ab8) + [!provide] PROVIDE (r_rwip_schedule = 0x40055b38) + [!provide] PROVIDE (r_rwip_sleep = 0x40055b5c) + [!provide] PROVIDE (r_rwip_sleep_enable = 0x40055f30) + [!provide] PROVIDE (r_rwip_version = 0x40055b20) + [!provide] PROVIDE (r_rwip_wakeup = 0x40055dc4) + [!provide] PROVIDE (r_rwip_wakeup_delay_set = 0x40055e4c) + [!provide] PROVIDE (r_rwip_wakeup_end = 0x40055e18) + [!provide] PROVIDE (r_rwip_wlcoex_set = 0x40055f60) + [!provide] PROVIDE (r_SHA_256 = 0x40013a90) + [!provide] PROVIDE (rwip_coex_cfg = 0x3ff9914c) + [!provide] PROVIDE (rwip_priority = 0x3ff99159) + [!provide] PROVIDE (rwip_rf = 0x3ffbdb28) + [!provide] PROVIDE (rwip_rf_p_get = 0x400558f4) + [!provide] PROVIDE (r_XorKey = 0x400112c0) + [!provide] PROVIDE (sha_blk_bits = 0x3ff99290) + [!provide] PROVIDE (sha_blk_bits_bytes = 0x3ff99288) + [!provide] PROVIDE (sha_blk_hash_bytes = 0x3ff9928c) + [!provide] PROVIDE (sig_matrix = 0x3ffae293) + [!provide] PROVIDE (sip_after_tx_complete = 0x4000b358) + [!provide] PROVIDE (sip_alloc_to_host_evt = 0x4000ab9c) + [!provide] PROVIDE (sip_get_ptr = 0x4000b34c) + [!provide] PROVIDE (sip_get_state = 0x4000ae2c) + [!provide] PROVIDE (sip_init_attach = 0x4000ae58) + [!provide] PROVIDE (sip_install_rx_ctrl_cb = 0x4000ae10) + [!provide] PROVIDE (sip_install_rx_data_cb = 0x4000ae20) + [!provide] PROVIDE (sip_is_active = 0x4000b3c0) + [!provide] PROVIDE (sip_post_init = 0x4000aed8) + [!provide] PROVIDE (sip_reclaim_from_host_cmd = 0x4000adbc) + [!provide] PROVIDE (sip_reclaim_tx_data_pkt = 0x4000ad5c) + [!provide] PROVIDE (sip_send = 0x4000af54) + [!provide] PROVIDE (sip_to_host_chain_append = 0x4000aef8) + [!provide] PROVIDE (sip_to_host_evt_send_done = 0x4000ac04) + [!provide] PROVIDE (slc_add_credits = 0x4000baf4) + [!provide] PROVIDE (slc_enable = 0x4000b64c) + [!provide] PROVIDE (slc_from_host_chain_fetch = 0x4000b7e8) + [!provide] PROVIDE (slc_from_host_chain_recycle = 0x4000bb10) + [!provide] PROVIDE (slc_has_pkt_to_host = 0x4000b5fc) + [!provide] PROVIDE (slc_init_attach = 0x4000b918) + [!provide] PROVIDE (slc_init_credit = 0x4000badc) + [!provide] PROVIDE (slc_reattach = 0x4000b62c) + [!provide] PROVIDE (slc_send_to_host_chain = 0x4000b6a0) + [!provide] PROVIDE (slc_set_host_io_max_window = 0x4000b89c) + [!provide] PROVIDE (slc_to_host_chain_recycle = 0x4000b758) + [!provide] PROVIDE (specialModP256 = 0x4001600c) + [!provide] PROVIDE (__stack = 0x3ffe3f20) + [!provide] PROVIDE (__stack_app = 0x3ffe7e30) + [!provide] PROVIDE (_stack_sentry = 0x3ffe1320) + [!provide] PROVIDE (_stack_sentry_app = 0x3ffe5230) + [!provide] PROVIDE (_start = 0x40000704) + [!provide] PROVIDE (start_tb_console = 0x4005a980) + [!provide] PROVIDE (_stat_r = 0x4000bcb4) + [!provide] PROVIDE (_stext = 0x40000560) + [!provide] PROVIDE (SubtractBigHex256 = 0x40015bcc) + [!provide] PROVIDE (SubtractBigHexMod256 = 0x40015e8c) + [!provide] PROVIDE (SubtractBigHexUint32_256 = 0x40015f8c) + [!provide] PROVIDE (SubtractFromSelfBigHex256 = 0x40015c20) + [!provide] PROVIDE (SubtractFromSelfBigHexSign256 = 0x40015dc8) + [!provide] PROVIDE (sw_to_hw = 0x3ffb8d40) + 0x3ffae020 PROVIDE (syscall_table_ptr_app = 0x3ffae020) + 0x3ffae024 PROVIDE (syscall_table_ptr_pro = 0x3ffae024) + [!provide] PROVIDE (tdefl_compress = 0x400600bc) + [!provide] PROVIDE (tdefl_compress_buffer = 0x400607f4) + [!provide] PROVIDE (tdefl_compress_mem_to_mem = 0x40060900) + [!provide] PROVIDE (tdefl_compress_mem_to_output = 0x400608e0) + [!provide] PROVIDE (tdefl_get_adler32 = 0x400608d8) + [!provide] PROVIDE (tdefl_get_prev_return_status = 0x400608d0) + [!provide] PROVIDE (tdefl_init = 0x40060810) + [!provide] PROVIDE (tdefl_write_image_to_png_file_in_memory = 0x4006091c) + [!provide] PROVIDE (tdefl_write_image_to_png_file_in_memory_ex = 0x40060910) + [!provide] PROVIDE (tinfl_decompress = 0x4005ef30) + [!provide] PROVIDE (tinfl_decompress_mem_to_callback = 0x40060090) + [!provide] PROVIDE (tinfl_decompress_mem_to_mem = 0x40060050) + [!provide] PROVIDE (UartDev = 0x3ffe019c) + [!provide] PROVIDE (user_code_start = 0x3ffe0400) + [!provide] PROVIDE (veryBigHexP256 = 0x3ff9736c) + [!provide] PROVIDE (xthal_bcopy = 0x4000c098) + [!provide] PROVIDE (xthal_copy123 = 0x4000c124) + [!provide] PROVIDE (xthal_get_ccompare = 0x4000c078) + [!provide] PROVIDE (xthal_get_ccount = 0x4000c050) + [!provide] PROVIDE (xthal_get_interrupt = 0x4000c1e4) + [!provide] PROVIDE (xthal_get_intread = 0x4000c1e4) + [!provide] PROVIDE (Xthal_intlevel = 0x3ff9c2b4) + [!provide] PROVIDE (xthal_memcpy = 0x4000c0bc) + [!provide] PROVIDE (xthal_set_ccompare = 0x4000c058) + [!provide] PROVIDE (xthal_set_intclear = 0x4000c1ec) + 0x4000bfdc PROVIDE (_xtos_set_intlevel = 0x4000bfdc) + 0x3ffe01e0 PROVIDE (g_ticks_per_us_pro = 0x3ffe01e0) + 0x3ffe40f0 PROVIDE (g_ticks_per_us_app = 0x3ffe40f0) + 0x40063238 PROVIDE (esp_rom_spiflash_config_param = 0x40063238) + 0x400621b0 PROVIDE (esp_rom_spiflash_read_user_cmd = 0x400621b0) + 0x40062e60 PROVIDE (esp_rom_spiflash_write_encrypted_disable = 0x40062e60) + 0x40062df4 PROVIDE (esp_rom_spiflash_write_encrypted_enable = 0x40062df4) + 0x40062e1c PROVIDE (esp_rom_spiflash_prepare_encrypted_data = 0x40062e1c) + [!provide] PROVIDE (esp_rom_spiflash_select_qio_pins = 0x40061ddc) + [!provide] PROVIDE (esp_rom_spiflash_attach = 0x40062a6c) + 0x40062bc8 PROVIDE (esp_rom_spiflash_config_clk = 0x40062bc8) + 0x3ffae270 PROVIDE (g_rom_spiflash_chip = 0x3ffae270) + [!provide] PROVIDE (SPI_write_enable = 0x40062320) + [!provide] PROVIDE (hci_le_rd_rem_used_feats_cmd_handler = 0x400417b4) + [!provide] PROVIDE (hci_per_inq_mode_cmd_handler = 0x400519b0) + [!provide] PROVIDE (llcp_length_req_handler = 0x40043808) + [!provide] PROVIDE (llcp_unknown_rsp_handler = 0x40043ba8) + [!provide] PROVIDE (llcp_channel_map_req_handler = 0x4004291c) + [!provide] PROVIDE (llcp_con_up_req_handler = 0x400426f0) + [!provide] PROVIDE (FilePacketSendDeflatedReqMsgProc = 0x40008b24) + [!provide] PROVIDE (FilePacketSendReqMsgProc = 0x40008860) + [!provide] PROVIDE (FlashDwnLdDeflatedStartMsgProc = 0x40008ad8) + [!provide] PROVIDE (FlashDwnLdParamCfgMsgProc = 0x4000891c) + [!provide] PROVIDE (FlashDwnLdStartMsgProc = 0x40008820) + [!provide] PROVIDE (FlashDwnLdStopDeflatedReqMsgProc = 0x40008c18) + [!provide] PROVIDE (FlashDwnLdStopReqMsgProc = 0x400088ec) + [!provide] PROVIDE (MemDwnLdStartMsgProc = 0x40008948) + [!provide] PROVIDE (MemDwnLdStopReqMsgProc = 0x400089dc) + [!provide] PROVIDE (MemPacketSendReqMsgProc = 0x40008978) + [!provide] PROVIDE (uart_baudrate_detect = 0x40009034) + [!provide] PROVIDE (uart_buff_switch = 0x400093c0) + [!provide] PROVIDE (UartConnCheck = 0x40008738) + [!provide] PROVIDE (UartConnectProc = 0x40008a04) + [!provide] PROVIDE (UartDwnLdProc = 0x40008ce8) + [!provide] PROVIDE (UartRegReadProc = 0x40008a58) + [!provide] PROVIDE (UartRegWriteProc = 0x40008a14) + [!provide] PROVIDE (UartSetBaudProc = 0x40008aac) + [!provide] PROVIDE (UartSpiAttachProc = 0x40008a6c) + [!provide] PROVIDE (UartSpiReadProc = 0x40008a80) + [!provide] PROVIDE (VerifyFlashMd5Proc = 0x40008c44) + [!provide] PROVIDE (GetUartDevice = 0x40009598) + [!provide] PROVIDE (RcvMsg = 0x4000954c) + [!provide] PROVIDE (SendMsg = 0x40009384) + [!provide] PROVIDE (UartGetCmdLn = 0x40009564) + [!provide] PROVIDE (UartRxString = 0x400092fc) + [!provide] PROVIDE (Uart_Init = 0x40009120) + [!provide] PROVIDE (recv_packet = 0x40009424) + [!provide] PROVIDE (send_packet = 0x40009340) + [!provide] PROVIDE (uartAttach = 0x40008fd0) + [!provide] PROVIDE (uart_div_modify = 0x400090cc) + [!provide] PROVIDE (uart_rx_intr_handler = 0x40008f4c) + 0x400092d0 PROVIDE (uart_rx_one_char = 0x400092d0) + [!provide] PROVIDE (uart_rx_one_char_block = 0x400092a4) + [!provide] PROVIDE (uart_rx_readbuff = 0x40009394) + 0x40009258 PROVIDE (uart_tx_flush = 0x40009258) + 0x40009200 PROVIDE (uart_tx_one_char = 0x40009200) + [!provide] PROVIDE (uart_tx_one_char2 = 0x4000922c) + 0x40009028 PROVIDE (uart_tx_switch = 0x40009028) + [!provide] PROVIDE (rom_gpio_output_set = 0x40009b24) + [!provide] PROVIDE (rom_gpio_output_set_high = 0x40009b5c) + [!provide] PROVIDE (rom_gpio_input_get = 0x40009b88) + [!provide] PROVIDE (rom_gpio_input_get_high = 0x40009b9c) + 0x40009edc PROVIDE (rom_gpio_matrix_in = 0x40009edc) + [!provide] PROVIDE (rom_gpio_matrix_out = 0x40009f0c) + 0x40009fdc PROVIDE (rom_gpio_pad_select_gpio = 0x40009fdc) + [!provide] PROVIDE (rom_gpio_pad_set_drv = 0x4000a11c) + [!provide] PROVIDE (rom_gpio_pad_pulldown = 0x4000a348) + 0x4000a22c PROVIDE (rom_gpio_pad_pullup = 0x4000a22c) + [!provide] PROVIDE (rom_gpio_pad_hold = 0x4000a734) + [!provide] PROVIDE (rom_gpio_pad_unhold = 0x4000a484) + [!provide] PROVIDE (ets_aes_crypt = 0x4005c9b8) + [!provide] PROVIDE (ets_aes_disable = 0x4005c8f8) + [!provide] PROVIDE (ets_aes_enable = 0x4005c8cc) + [!provide] PROVIDE (ets_aes_set_endian = 0x4005c928) + [!provide] PROVIDE (ets_aes_setkey_dec = 0x4005c994) + [!provide] PROVIDE (ets_aes_setkey_enc = 0x4005c97c) + [!provide] PROVIDE (ets_bigint_disable = 0x4005c4e0) + [!provide] PROVIDE (ets_bigint_enable = 0x4005c498) + [!provide] PROVIDE (ets_bigint_mod_mult_getz = 0x4005c818) + [!provide] PROVIDE (ets_bigint_mod_mult_prepare = 0x4005c7b4) + [!provide] PROVIDE (ets_bigint_mod_power_getz = 0x4005c614) + [!provide] PROVIDE (ets_bigint_mod_power_prepare = 0x4005c54c) + [!provide] PROVIDE (ets_bigint_montgomery_mult_getz = 0x4005c7a4) + [!provide] PROVIDE (ets_bigint_montgomery_mult_prepare = 0x4005c6fc) + [!provide] PROVIDE (ets_bigint_mult_getz = 0x4005c6e8) + [!provide] PROVIDE (ets_bigint_mult_prepare = 0x4005c630) + [!provide] PROVIDE (ets_bigint_wait_finish = 0x4005c520) + [!provide] PROVIDE (ets_post = 0x4000673c) + [!provide] PROVIDE (ets_run = 0x400066bc) + [!provide] PROVIDE (ets_set_idle_cb = 0x40006674) + [!provide] PROVIDE (ets_task = 0x40006688) + [!provide] PROVIDE (ets_efuse_get_8M_clock = 0x40008710) + 0x40008658 PROVIDE (ets_efuse_get_spiconfig = 0x40008658) + [!provide] PROVIDE (ets_efuse_program_op = 0x40008628) + [!provide] PROVIDE (ets_efuse_read_op = 0x40008600) + [!provide] PROVIDE (ets_intr_lock = 0x400067b0) + [!provide] PROVIDE (ets_intr_unlock = 0x400067c4) + [!provide] PROVIDE (ets_isr_attach = 0x400067ec) + [!provide] PROVIDE (ets_waiti0 = 0x400067d8) + 0x4000681c PROVIDE (intr_matrix_set = 0x4000681c) + [!provide] PROVIDE (check_pos = 0x400068b8) + 0x4000689c PROVIDE (ets_set_appcpu_boot_addr = 0x4000689c) + [!provide] PROVIDE (ets_set_startup_callback = 0x4000688c) + [!provide] PROVIDE (ets_set_user_start = 0x4000687c) + [!provide] PROVIDE (ets_unpack_flash_code = 0x40007018) + [!provide] PROVIDE (ets_unpack_flash_code_legacy = 0x4000694c) + [!provide] PROVIDE (rom_main = 0x400076c4) + 0x40007cf8 PROVIDE (ets_write_char_uart = 0x40007cf8) + 0x40007d18 PROVIDE (ets_install_putc1 = 0x40007d18) + 0x40007d38 PROVIDE (ets_install_putc2 = 0x40007d38) + 0x40007d28 PROVIDE (ets_install_uart_printf = 0x40007d28) + 0x40007d54 PROVIDE (ets_printf = 0x40007d54) + [!provide] PROVIDE (rtc_boot_control = 0x4000821c) + 0x400081d4 PROVIDE (rtc_get_reset_reason = 0x400081d4) + [!provide] PROVIDE (rtc_get_wakeup_cause = 0x400081f4) + [!provide] PROVIDE (rtc_select_apb_bridge = 0x40008288) + 0x40008208 PROVIDE (set_rtc_memory_crc = 0x40008208) + 0x4000824c PROVIDE (software_reset = 0x4000824c) + 0x40008264 PROVIDE (software_reset_cpu = 0x40008264) + [!provide] PROVIDE (ets_secure_boot_check = 0x4005cb40) + [!provide] PROVIDE (ets_secure_boot_check_finish = 0x4005cc04) + [!provide] PROVIDE (ets_secure_boot_check_start = 0x4005cbcc) + [!provide] PROVIDE (ets_secure_boot_finish = 0x4005ca84) + [!provide] PROVIDE (ets_secure_boot_hash = 0x4005cad4) + [!provide] PROVIDE (ets_secure_boot_obtain = 0x4005cb14) + [!provide] PROVIDE (ets_secure_boot_rd_abstract = 0x4005cba8) + [!provide] PROVIDE (ets_secure_boot_rd_iv = 0x4005cb84) + [!provide] PROVIDE (ets_secure_boot_start = 0x4005ca34) + [!provide] PROVIDE (ets_sha_disable = 0x4005c0a8) + [!provide] PROVIDE (ets_sha_enable = 0x4005c07c) + [!provide] PROVIDE (ets_sha_finish = 0x4005c104) + [!provide] PROVIDE (ets_sha_init = 0x4005c0d4) + [!provide] PROVIDE (ets_sha_update = 0x4005c2a0) + 0x40008534 PROVIDE (ets_delay_us = 0x40008534) + 0x4000855c PROVIDE (ets_get_cpu_frequency = 0x4000855c) + 0x40008588 PROVIDE (ets_get_detected_xtal_freq = 0x40008588) + [!provide] PROVIDE (ets_get_xtal_scale = 0x4000856c) + 0x40008550 PROVIDE (ets_update_cpu_frequency_rom = 0x40008550) + [!provide] PROVIDE (hci_tl_env = 0x3ffb8154) + [!provide] PROVIDE (ld_acl_env = 0x3ffb8258) + [!provide] PROVIDE (ea_env = 0x3ffb80ec) + [!provide] PROVIDE (lc_sco_data_path_config = 0x3ffb81f8) + [!provide] PROVIDE (lc_sco_env = 0x3ffb81fc) + [!provide] PROVIDE (ld_active_ch_map = 0x3ffb8334) + [!provide] PROVIDE (ld_bcst_acl_env = 0x3ffb8274) + [!provide] PROVIDE (ld_csb_rx_env = 0x3ffb8278) + [!provide] PROVIDE (ld_csb_tx_env = 0x3ffb827c) + [!provide] PROVIDE (ld_env = 0x3ffb9510) + [!provide] PROVIDE (ld_fm_env = 0x3ffb8284) + [!provide] PROVIDE (ld_inq_env = 0x3ffb82e4) + [!provide] PROVIDE (ld_iscan_env = 0x3ffb82e8) + [!provide] PROVIDE (ld_page_env = 0x3ffb82f0) + [!provide] PROVIDE (ld_pca_env = 0x3ffb82f4) + [!provide] PROVIDE (ld_pscan_env = 0x3ffb8308) + [!provide] PROVIDE (ld_sched_env = 0x3ffb830c) + [!provide] PROVIDE (ld_sched_params = 0x3ffb96c0) + [!provide] PROVIDE (ld_sco_env = 0x3ffb824c) + [!provide] PROVIDE (ld_sscan_env = 0x3ffb832c) + [!provide] PROVIDE (ld_strain_env = 0x3ffb8330) + [!provide] PROVIDE (LM_Sniff = 0x3ffb8230) + [!provide] PROVIDE (LM_SniffSubRate = 0x3ffb8214) + [!provide] PROVIDE (prbs_64bytes = 0x3ff98992) + [!provide] PROVIDE (nvds_env = 0x3ffb8364) + [!provide] PROVIDE (nvds_magic_number = 0x3ff9912a) + [!provide] PROVIDE (TASK_DESC_LLD = 0x3ff98b58) + [!provide] PROVIDE (ld_acl_clk_isr = 0x40030cf8) + [!provide] PROVIDE (ld_acl_evt_canceled_cbk = 0x40033944) + [!provide] PROVIDE (ld_acl_rsw_evt_canceled_cbk = 0x40033364) + [!provide] PROVIDE (ld_acl_evt_stop_cbk = 0x40033870) + [!provide] PROVIDE (ld_acl_evt_start_cbk = 0x40030ab0) + [!provide] PROVIDE (ld_acl_sniff_evt_start_cbk = 0x40031360) + [!provide] PROVIDE (ld_acl_test_mode_update = 0x40032050) + [!provide] PROVIDE (ld_acl_resched = 0x40033814) + [!provide] PROVIDE (ld_acl_rx_isr = 0x40033aa8) + [!provide] PROVIDE (lc_acl_disc_ind_handler = 0x4002f270) + [!provide] PROVIDE (lc_pca_sscan_start_req_handler = 0x40029b34) + [!provide] PROVIDE (lmp_feats_req_ext_handler = 0x4002ccb0) + [!provide] PROVIDE (ld_pscan_em_init = 0x4003e5e8) + [!provide] PROVIDE (ld_acl_rsw_start = 0x40032e90) + [!provide] PROVIDE (ld_acl_sniff_enter = 0x40031244) + [!provide] PROVIDE (ld_acl_sniff_trans_sched = 0x40033734) + [!provide] PROVIDE (ld_acl_afh_apply = 0x40030e94) + [!provide] PROVIDE (ld_acl_afh_switch_on_cbk = 0x40030fa8) + [!provide] PROVIDE (ld_acl_afh_switch_off_cbk = 0x400310c4) + [!provide] PROVIDE (lc_pwr_decr_ind_handler = 0x4002859c) + [!provide] PROVIDE (lc_pwr_incr_ind_handler = 0x400284a8) + [!provide] PROVIDE (lc_pwr_max_ind_handler = 0x40028690) + [!provide] PROVIDE (lc_setup_sync_param_check = 0x4002354c) + [!provide] PROVIDE (lc_lmp_rsp_to_flow_spec_handler = 0x400297f0) + [!provide] PROVIDE (lc_lmp_rsp_to_ind_handler = 0x4002a674) + [!provide] PROVIDE (lc_pca_sscan_clk_ind_handler = 0x4002a38c) + [!provide] PROVIDE (lc_op_loc_unsniff_req_handler = 0x40028be0) + [!provide] PROVIDE (lc_op_loc_sniff_req_handler = 0x40028ccc) + [!provide] PROVIDE (lc_op_loc_switch_req_handler = 0x40028df4) + [!provide] PROVIDE (lc_op_loc_sync_con_req_handler = 0x40028f6c) + [!provide] PROVIDE (lm_sync_conf = 0x3ffb8348) + [!provide] PROVIDE (lm_nb_sync_active = 0x3ffb8346) + [!provide] PROVIDE (lm_sync_nego = 0x3ffb8345) + [!provide] PROVIDE (lm_nego_cnt = 0x3ffb8344) + [!provide] PROVIDE (lm_nego_cntl = 0x3ffb8342) + [!provide] PROVIDE (lm_nego_max_cnt = 0x3ffb8343) + [!provide] PROVIDE (lm_nego_pkt_used = 0x3ffb8340) + 0x4005cfec PROVIDE (esp_rom_crc32_le = crc32_le) + [!provide] PROVIDE (esp_rom_crc16_le = crc16_le) + [!provide] PROVIDE (esp_rom_crc8_le = crc8_le) + [!provide] PROVIDE (esp_rom_crc32_be = crc32_be) + [!provide] PROVIDE (esp_rom_crc16_be = crc16_be) + [!provide] PROVIDE (esp_rom_crc8_be = crc8_be) + 0x40009fdc PROVIDE (esp_rom_gpio_pad_select_gpio = rom_gpio_pad_select_gpio) + 0x4000a22c PROVIDE (esp_rom_gpio_pad_pullup_only = rom_gpio_pad_pullup) + [!provide] PROVIDE (esp_rom_gpio_pad_set_drv = rom_gpio_pad_set_drv) + [!provide] PROVIDE (esp_rom_gpio_pad_unhold = rom_gpio_pad_unhold) + 0x40009edc PROVIDE (esp_rom_gpio_connect_in_signal = rom_gpio_matrix_in) + [!provide] PROVIDE (esp_rom_gpio_connect_out_signal = rom_gpio_matrix_out) + [!provide] PROVIDE (esp_rom_efuse_mac_address_crc8 = esp_crc8) + 0x40008658 PROVIDE (esp_rom_efuse_get_flash_gpio_info = ets_efuse_get_spiconfig) + [!provide] PROVIDE (esp_rom_efuse_is_secure_boot_enabled = ets_efuse_secure_boot_enabled) + [!provide] PROVIDE (esp_rom_uart_flush_tx = uart_tx_flush) + [!provide] PROVIDE (esp_rom_uart_tx_one_char = uart_tx_one_char) + [!provide] PROVIDE (esp_rom_uart_tx_wait_idle = uart_tx_wait_idle) + [!provide] PROVIDE (esp_rom_uart_rx_one_char = uart_rx_one_char) + [!provide] PROVIDE (esp_rom_uart_rx_string = UartRxString) + [!provide] PROVIDE (esp_rom_uart_set_as_console = uart_tx_switch) + [!provide] PROVIDE (esp_rom_uart_putc = ets_write_char_uart) + [!provide] PROVIDE (esp_rom_uart_switch_buffer = uart_buff_switch) + 0x40009258 PROVIDE (esp_rom_output_flush_tx = uart_tx_flush) + 0x40009200 PROVIDE (esp_rom_output_tx_one_char = uart_tx_one_char) + [!provide] PROVIDE (esp_rom_output_tx_wait_idle = uart_tx_wait_idle) + 0x400092d0 PROVIDE (esp_rom_output_rx_one_char = uart_rx_one_char) + [!provide] PROVIDE (esp_rom_output_rx_string = UartRxString) + 0x40009028 PROVIDE (esp_rom_output_set_as_console = uart_tx_switch) + 0x40007cf8 PROVIDE (esp_rom_output_putc = ets_write_char_uart) + [!provide] PROVIDE (esp_rom_output_switch_buffer = uart_buff_switch) + 0x4005da7c PROVIDE (esp_rom_md5_init = 0x4005da7c) + 0x4005da9c PROVIDE (esp_rom_md5_update = 0x4005da9c) + 0x4005db1c PROVIDE (esp_rom_md5_final = 0x4005db1c) + 0x4000824c PROVIDE (esp_rom_software_reset_system = software_reset) + 0x40008264 PROVIDE (esp_rom_software_reset_cpu = software_reset_cpu) + 0x40007d54 PROVIDE (esp_rom_printf = ets_printf) + 0x40008534 PROVIDE (esp_rom_delay_us = ets_delay_us) + 0x40007d28 PROVIDE (esp_rom_install_uart_printf = ets_install_uart_printf) + 0x400081d4 PROVIDE (esp_rom_get_reset_reason = rtc_get_reset_reason) + 0x4000681c PROVIDE (esp_rom_route_intr_matrix = intr_matrix_set) + 0x4000855c PROVIDE (esp_rom_get_cpu_ticks_per_us = ets_get_cpu_frequency) + [!provide] PROVIDE (esp_rom_spiflash_set_bp = esp_rom_spiflash_lock) + [!provide] PROVIDE (esp_rom_spiflash_write_enable = SPI_write_enable) + 0x40004148 PROVIDE (esp_rom_regi2c_read = rom_i2c_readReg) + 0x400041c0 PROVIDE (esp_rom_regi2c_read_mask = rom_i2c_readReg_Mask) + 0x400041a4 PROVIDE (esp_rom_regi2c_write = rom_i2c_writeReg) + 0x400041fc PROVIDE (esp_rom_regi2c_write_mask = rom_i2c_writeReg_Mask) + 0x4006387c __absvdi2 = 0x4006387c + 0x40063868 __absvsi2 = 0x40063868 + 0x40002590 __adddf3 = 0x40002590 + 0x400020e8 __addsf3 = 0x400020e8 + 0x40002cbc __addvdi3 = 0x40002cbc + 0x40002c98 __addvsi3 = 0x40002c98 + 0x4000c818 __ashldi3 = 0x4000c818 + 0x4000c830 __ashrdi3 = 0x4000c830 + 0x40064b08 __bswapdi2 = 0x40064b08 + 0x40064ae0 __bswapsi2 = 0x40064ae0 + 0x40064b7c __clrsbdi2 = 0x40064b7c + 0x40064b64 __clrsbsi2 = 0x40064b64 + 0x4000ca50 __clzdi2 = 0x4000ca50 + 0x4000c7e8 __clzsi2 = 0x4000c7e8 + 0x40063820 __cmpdi2 = 0x40063820 + 0x4000ca64 __ctzdi2 = 0x4000ca64 + 0x4000c7f0 __ctzsi2 = 0x4000c7f0 + 0x400645a4 __divdc3 = 0x400645a4 + 0x40002954 __divdf3 = 0x40002954 + 0x4000ca84 __divdi3 = 0x4000ca84 + 0x4000c7b8 __divsi3 = 0x4000c7b8 + 0x400636a8 __eqdf2 = 0x400636a8 + 0x40063374 __eqsf2 = 0x40063374 + 0x40002c34 __extendsfdf2 = 0x40002c34 + 0x4000ca2c __ffsdi2 = 0x4000ca2c + 0x4000c804 __ffssi2 = 0x4000c804 + 0x40002ac4 __fixdfdi = 0x40002ac4 + 0x40002a78 __fixdfsi = 0x40002a78 + 0x4000244c __fixsfdi = 0x4000244c + 0x4000240c __fixsfsi = 0x4000240c + 0x40002b30 __fixunsdfsi = 0x40002b30 + 0x40002504 __fixunssfdi = 0x40002504 + 0x400024ac __fixunssfsi = 0x400024ac + 0x4000c988 __floatdidf = 0x4000c988 + 0x4000c8c0 __floatdisf = 0x4000c8c0 + 0x4000c944 __floatsidf = 0x4000c944 + 0x4000c870 __floatsisf = 0x4000c870 + 0x4000c978 __floatundidf = 0x4000c978 + 0x4000c8b0 __floatundisf = 0x4000c8b0 + 0x4000c938 __floatunsidf = 0x4000c938 + 0x4000c864 __floatunsisf = 0x4000c864 + 0x40064a70 __gcc_bcmp = 0x40064a70 + 0x40063768 __gedf2 = 0x40063768 + 0x4006340c __gesf2 = 0x4006340c + 0x400636dc __gtdf2 = 0x400636dc + 0x400633a0 __gtsf2 = 0x400633a0 + 0x40063704 __ledf2 = 0x40063704 + 0x400633c0 __lesf2 = 0x400633c0 + 0x4000c84c __lshrdi3 = 0x4000c84c + 0x40063790 __ltdf2 = 0x40063790 + 0x4006342c __ltsf2 = 0x4006342c + 0x4000cd4c __moddi3 = 0x4000cd4c + 0x4000c7c0 __modsi3 = 0x4000c7c0 + 0x40063c90 __muldc3 = 0x40063c90 + 0x4006358c __muldf3 = 0x4006358c + 0x4000c9fc __muldi3 = 0x4000c9fc + 0x400632c8 __mulsf3 = 0x400632c8 + 0x4000c7b0 __mulsi3 = 0x4000c7b0 + 0x40002d78 __mulvdi3 = 0x40002d78 + 0x40002d60 __mulvsi3 = 0x40002d60 + 0x400636a8 __nedf2 = 0x400636a8 + 0x400634a0 __negdf2 = 0x400634a0 + 0x4000ca14 __negdi2 = 0x4000ca14 + 0x400020c0 __negsf2 = 0x400020c0 + 0x40002e98 __negvdi2 = 0x40002e98 + 0x40002e78 __negvsi2 = 0x40002e78 + 0x40063374 __nesf2 = 0x40063374 + 0x3ff96544 __nsau_data = 0x3ff96544 + 0x40002f3c __paritysi2 = 0x40002f3c + 0x3ff96544 __popcount_tab = 0x3ff96544 + 0x40002ef8 __popcountdi2 = 0x40002ef8 + 0x40002ed0 __popcountsi2 = 0x40002ed0 + 0x400638e4 __powidf2 = 0x400638e4 + 0x400026e4 __subdf3 = 0x400026e4 + 0x400021d0 __subsf3 = 0x400021d0 + 0x40002d20 __subvdi3 = 0x40002d20 + 0x40002cf8 __subvsi3 = 0x40002cf8 + 0x40002b90 __truncdfsf2 = 0x40002b90 + 0x40063840 __ucmpdi2 = 0x40063840 + 0x40064bec __udiv_w_sdiv = 0x40064bec + 0x4000cff8 __udivdi3 = 0x4000cff8 + 0x40064bf4 __udivmoddi4 = 0x40064bf4 + 0x4000c7c8 __udivsi3 = 0x4000c7c8 + 0x4000d280 __umoddi3 = 0x4000d280 + 0x4000c7d0 __umodsi3 = 0x4000c7d0 + 0x4000c7d8 __umulsidi3 = 0x4000c7d8 + 0x400637f4 __unorddf2 = 0x400637f4 + 0x40063478 __unordsf2 = 0x40063478 + 0x40056340 abs = 0x40056340 + 0x4000c1f4 bzero = 0x4000c1f4 + 0x40056348 div = 0x40056348 + 0x4000c728 __dummy_lock = 0x4000c728 + 0x4000c730 __dummy_lock_try = 0x4000c730 + 0x4000c20c isascii = 0x4000c20c + 0x40000f2c isblank = 0x40000f2c + 0x40000f50 iscntrl = 0x40000f50 + 0x40000f94 isgraph = 0x40000f94 + 0x40000fa8 isprint = 0x40000fa8 + 0x40000fc0 ispunct = 0x40000fc0 + 0x40056678 __itoa = 0x40056678 + 0x400566b4 itoa = 0x400566b4 + 0x40056370 labs = 0x40056370 + 0x40056378 ldiv = 0x40056378 + 0x400562cc longjmp = 0x400562cc + 0x4000c220 memccpy = 0x4000c220 + 0x4000c244 memchr = 0x4000c244 + 0x4000c260 memcmp = 0x4000c260 + 0x4000c2c8 memcpy = 0x4000c2c8 + 0x4000c3c0 memmove = 0x4000c3c0 + 0x4000c400 memrchr = 0x4000c400 + 0x4000c44c memset = 0x4000c44c + 0x40056424 qsort = 0x40056424 + 0x4000c498 __sccl = 0x4000c498 + 0x40056268 setjmp = 0x40056268 + 0x40001210 strcasestr = 0x40001210 + 0x4000c518 strcat = 0x4000c518 + 0x4000c53c strchr = 0x4000c53c + 0x40001274 strcmp = 0x40001274 + 0x400013ac strcpy = 0x400013ac + 0x4000c558 strcspn = 0x4000c558 + 0x40001470 strlcat = 0x40001470 + 0x4000c584 strlcpy = 0x4000c584 + 0x400014c0 strlen = 0x400014c0 + 0x4000c5c4 strncat = 0x4000c5c4 + 0x4000c5f4 strncmp = 0x4000c5f4 + 0x400015d4 strncpy = 0x400015d4 + 0x4000c628 strnlen = 0x4000c628 + 0x40001708 strrchr = 0x40001708 + 0x40001734 strsep = 0x40001734 + 0x4000c648 strspn = 0x4000c648 + 0x4000c674 strstr = 0x4000c674 + 0x40058f3c __submore = 0x40058f3c + 0x4000c720 toascii = 0x4000c720 + 0x400561f0 __utoa = 0x400561f0 + 0x40056258 utoa = 0x40056258 + 0x3ffb3700 _heap_start = _heap_low_start + 0x400a0000 _sram1_iram_start = 0x400a0000 + 0x00000000 _sram1_iram_len = (_iram_end > _sram1_iram_start)?(_iram_end - _sram1_iram_start):0x0 + 0x40000000 _heap_end = ALIGN (((0x40000000 - _sram1_iram_len) - 0x3), 0x4) + 0x3ff80000 _data_seg_org = ORIGIN (rtc_data_seg) + 0x00000001 ASSERT ((_rodata_start == ORIGIN (default_rodata_seg)), .flash.appdesc section must be placed at the beginning of the rodata segment.) + +.rtc.text 0x400c0000 0x0 + 0x400c0000 . = ALIGN (0x4) + 0x400c0000 _rtc_text_start = ABSOLUTE (.) + *(.rtc.literal .rtc.text .rtc.text.*) + *rtc_wake_stub*.*(.literal .text .literal.* .text.*) + 0x400c0000 _rtc_text_end = ABSOLUTE (.) + +.rtc.dummy 0x3ff80000 0x0 + 0x3ff80000 _rtc_dummy_start = ABSOLUTE (.) + 0x3ff80000 _rtc_fast_start = ABSOLUTE (.) + 0x00000000 . = SIZEOF (.rtc.text) + 0x3ff80000 _rtc_dummy_end = ABSOLUTE (.) + +.rtc.force_fast + 0x3ff80000 0x0 + 0x3ff80000 . = ALIGN (0x4) + 0x3ff80000 _rtc_force_fast_start = ABSOLUTE (.) + *(.rtc.force_fast .rtc.force_fast.*) + 0x3ff80000 . = ALIGN (0x4) + 0x3ff80000 _rtc_force_fast_end = ABSOLUTE (.) + +.rtc.data 0x50000000 0x0 + 0x50000000 _rtc_data_start = ABSOLUTE (.) + *(.rtc.data .rtc.data.*) + *(.rtc.rodata .rtc.rodata.*) + *rtc_wake_stub*.*(.data .rodata .data.* .rodata.*) + 0x50000000 _rtc_data_end = ABSOLUTE (.) + +.rtc.bss 0x50000000 0x0 + 0x50000000 _rtc_bss_start = ABSOLUTE (.) + *rtc_wake_stub*.*(.bss .bss.*) + *rtc_wake_stub*.*(COMMON) + *(.rtc.bss) + 0x50000000 _rtc_bss_end = ABSOLUTE (.) + +.rtc_noinit 0x50000000 0x0 + 0x50000000 . = ALIGN (0x4) + 0x50000000 _rtc_noinit_start = ABSOLUTE (.) + *(.rtc_noinit .rtc_noinit.*) + 0x50000000 . = ALIGN (0x4) + 0x50000000 _rtc_noinit_end = ABSOLUTE (.) + +.rtc.force_slow + 0x50000000 0x28 + 0x50000000 . = ALIGN (0x4) + 0x50000000 _rtc_force_slow_start = ABSOLUTE (.) + *(.rtc.force_slow .rtc.force_slow.*) + .rtc.force_slow.7 + 0x50000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x50000028 . = ALIGN (0x4) + 0x50000028 _rtc_force_slow_end = ABSOLUTE (.) + +.rtc_fast_reserved + 0x3ff82000 0x0 + 0x3ff82000 . = ALIGN (0x4) + 0x3ff82000 _rtc_fast_reserved_start = ABSOLUTE (.) + *(.bootloader_data_rtc_mem .bootloader_data_rtc_mem.*) + 0x3ff82000 _rtc_fast_reserved_end = ABSOLUTE (.) + 0x00000000 _rtc_fast_reserved_length = (_rtc_fast_reserved_end - _rtc_fast_reserved_start) + 0x00000001 ASSERT ((_rtc_fast_reserved_length <= LENGTH (rtc_fast_reserved_seg)), RTC FAST reserved segment data does not fit.) + +.rtc_slow_reserved + 0x50001fe8 0x18 + 0x50001fe8 . = ALIGN (0x4) + 0x50001fe8 _rtc_slow_reserved_start = ABSOLUTE (.) + *(.rtc_timer_data_in_rtc_mem .rtc_timer_data_in_rtc_mem.*) + .rtc_timer_data_in_rtc_mem + 0x50001fe8 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x50002000 _rtc_slow_reserved_end = ABSOLUTE (.) + 0x00000018 _rtc_slow_reserved_length = (_rtc_slow_reserved_end - _rtc_slow_reserved_start) + 0x00000018 _rtc_reserved_length = _rtc_slow_reserved_length + 0x00000001 ASSERT ((_rtc_slow_reserved_length <= LENGTH (rtc_slow_reserved_seg)), RTC SLOW reserved segment data does not fit.) + 0x00000028 _rtc_slow_length = (ORIGIN (rtc_slow_seg) == ORIGIN (rtc_data_location))?(_rtc_force_slow_end - _rtc_data_start):(_rtc_force_slow_end - _rtc_force_slow_start) + 0x00000000 _rtc_fast_length = (ORIGIN (rtc_slow_seg) == ORIGIN (rtc_data_location))?(_rtc_force_fast_end - _rtc_fast_start):(_rtc_noinit_end - _rtc_fast_start) + 0x00000000 ASSERT ((_rtc_slow_length <= LENGTH (rtc_slow_seg)), RTC_SLOW segment data does not fit.) + 0x00000000 ASSERT ((_rtc_fast_length <= LENGTH (rtc_data_seg)), RTC_FAST segment data does not fit.) + +.iram0.vectors 0x40080000 0x404 + 0x40080000 _iram_start = ABSOLUTE (.) + 0x40080000 _vector_table = ABSOLUTE (.) + 0x00000000 . = 0x0 + *(.WindowVectors.text) + .WindowVectors.text + 0x40080000 0x16a esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x40080000 _WindowOverflow4 + 0x40080040 _WindowUnderflow4 + 0x40080050 _xt_alloca_exc + 0x40080080 _WindowOverflow8 + 0x400800c0 _WindowUnderflow8 + 0x40080100 _WindowOverflow12 + 0x40080140 _WindowUnderflow12 + 0x00000180 . = 0x180 + *fill* 0x4008016a 0x16 + *(.Level2InterruptVector.text) + .Level2InterruptVector.text + 0x40080180 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x40080180 _Level2Vector + 0x000001c0 . = 0x1c0 + *fill* 0x40080186 0x3a + *(.Level3InterruptVector.text) + .Level3InterruptVector.text + 0x400801c0 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x400801c0 _Level3Vector + 0x00000200 . = 0x200 + *fill* 0x400801c6 0x3a + *(.Level4InterruptVector.text) + .Level4InterruptVector.text + 0x40080200 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x40080200 _Level4Vector + 0x00000240 . = 0x240 + *fill* 0x40080206 0x3a + *(.Level5InterruptVector.text) + .Level5InterruptVector.text + 0x40080240 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x40080240 _Level5Vector + 0x00000280 . = 0x280 + *fill* 0x40080246 0x3a + *(.DebugExceptionVector.text) + .DebugExceptionVector.text + 0x40080280 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x40080280 _DebugExceptionVector + 0x000002c0 . = 0x2c0 + *fill* 0x40080286 0x3a + *(.NMIExceptionVector.text) + .NMIExceptionVector.text + 0x400802c0 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x400802c0 _NMIExceptionVector + 0x00000300 . = 0x300 + *fill* 0x400802c6 0x3a + *(.KernelExceptionVector.text) + .KernelExceptionVector.text + 0x40080300 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x40080300 _KernelExceptionVector + 0x00000340 . = 0x340 + *fill* 0x40080306 0x3a + *(.UserExceptionVector.text) + .UserExceptionVector.text + 0x40080340 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x40080340 _UserExceptionVector + 0x000003c0 . = 0x3c0 + *fill* 0x40080346 0x7a + *(.DoubleExceptionVector.text) + .DoubleExceptionVector.text + 0x400803c0 0xe esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x11 (size before relaxing) + 0x400803c0 _DoubleExceptionVector + 0x00000400 . = 0x400 + *fill* 0x400803ce 0x32 + *(._invalid_pc_placeholder.text) + ._invalid_pc_placeholder.text + 0x40080400 0x3 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x40080400 _invalid_pc_placeholder + *(.*Vector.literal) + *fill* 0x40080403 0x1 + .DoubleExceptionVector.literal + 0x40080404 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .KernelExceptionVector.literal + 0x40080404 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .UserExceptionVector.literal + 0x40080404 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .Level2InterruptVector.literal + 0x40080404 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .Level3InterruptVector.literal + 0x40080404 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .Level4InterruptVector.literal + 0x40080404 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .Level5InterruptVector.literal + 0x40080404 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .NMIExceptionVector.literal + 0x40080404 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + +.iram0.text 0x40080404 0xbcdf + 0x40080404 _iram_text_start = ABSOLUTE (.) + *(.iram1 .iram1.*) + .iram1.8.literal + 0x40080404 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xc (size before relaxing) + .iram1.0.literal + 0x4008040c 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.5.literal + 0x4008040c 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x8 (size before relaxing) + .iram1.1.literal + 0x4008040c 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.4.literal + 0x4008040c 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.7.literal + 0x4008040c 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x18 (size before relaxing) + .iram1.6.literal + 0x40080410 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x18 (size before relaxing) + .iram1.12.literal + 0x40080414 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x4 (size before relaxing) + .iram1.7.literal + 0x40080414 0x2c esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x58 (size before relaxing) + .iram1.13.literal + 0x40080440 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x4 (size before relaxing) + .iram1.6.literal + 0x40080440 0x4 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x20 (size before relaxing) + .iram1.8.literal + 0x40080444 0xc esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x44 (size before relaxing) + .iram1.11.literal + 0x40080450 0x14 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x24 (size before relaxing) + .iram1.14.literal + 0x40080464 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x40080464 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x4 (size before relaxing) + .iram1.1.literal + 0x40080464 0x10 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x18 (size before relaxing) + .iram1.8.literal + 0x40080474 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.3.literal + 0x40080478 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0xc (size before relaxing) + .iram1.2.literal + 0x40080480 0x28 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x40 (size before relaxing) + .iram1.8.literal + 0x400804a8 0x2c esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x44 (size before relaxing) + .iram1.14.literal + 0x400804d4 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x4 (size before relaxing) + .iram1.15.literal + 0x400804d4 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x10 (size before relaxing) + .iram1.9.literal + 0x400804d4 0x14 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x44 (size before relaxing) + .iram1.16.literal + 0x400804e8 0x20 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x50 (size before relaxing) + .iram1.7.literal + 0x40080508 0x10 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x14 (size before relaxing) + .iram1.2.literal + 0x40080518 0x1c esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x2c (size before relaxing) + .iram1.3.literal + 0x40080534 0xc esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x38 (size before relaxing) + .iram1.5.literal + 0x40080540 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x40080540 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .iram1.literal + 0x40080548 0x10 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + 0x1c (size before relaxing) + .iram1.0.literal + 0x40080558 0x4 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x1c (size before relaxing) + .iram1.0.literal + 0x4008055c 0x4 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x10 (size before relaxing) + .iram1.0.literal + 0x40080560 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0xc (size before relaxing) + .iram1.1.literal + 0x40080560 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x8 (size before relaxing) + .iram1.2.literal + 0x40080560 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x8 (size before relaxing) + .iram1.literal + 0x40080560 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + 0x24 (size before relaxing) + .iram1.1.literal + 0x40080568 0x10 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x20 (size before relaxing) + .iram1.2.literal + 0x40080578 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x8 (size before relaxing) + .iram1.0.literal + 0x40080578 0xc esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x10 (size before relaxing) + .iram1.3.literal + 0x40080584 0x14 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x40 (size before relaxing) + .iram1.4.literal + 0x40080598 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0xc (size before relaxing) + .iram1.literal + 0x40080598 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + 0x4 (size before relaxing) + .iram1.2.literal + 0x40080598 0xc esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + .iram1.0.literal + 0x400805a4 0x1c esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + 0x20 (size before relaxing) + .iram1.0.literal + 0x400805c0 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x8 (size before relaxing) + .iram1.5.literal + 0x400805c0 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x400805c0 0x4 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x8 (size before relaxing) + .iram1.1.literal + 0x400805c4 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x400805c4 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.1.literal + 0x400805c8 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0xc (size before relaxing) + .iram1.2.literal + 0x400805cc 0x14 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x28 (size before relaxing) + .iram1.7.literal + 0x400805e0 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0xc (size before relaxing) + .iram1.8.literal + 0x400805e4 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0xc (size before relaxing) + .iram1.0.literal + 0x400805e8 0x34 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x48 (size before relaxing) + .iram1.2.literal + 0x4008061c 0x0 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x8 (size before relaxing) + .iram1.1.literal + 0x4008061c 0x14 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x28 (size before relaxing) + .iram1.3.literal + 0x40080630 0x4 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x28 (size before relaxing) + .iram1.4.literal + 0x40080634 0x0 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x4 (size before relaxing) + .iram1.5.literal + 0x40080634 0x10 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x50 (size before relaxing) + .iram1.6.literal + 0x40080644 0x0 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x8 (size before relaxing) + .iram1.0.literal + 0x40080644 0x4 esp-idf/soc/libsoc.a(dport_access.c.obj) + .iram1.1.literal + 0x40080648 0x0 esp-idf/soc/libsoc.a(dport_access.c.obj) + 0x4 (size before relaxing) + .iram1.1.literal + 0x40080648 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .iram1.2.literal + 0x40080650 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0xc (size before relaxing) + .iram1.0.literal + 0x40080654 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0xc (size before relaxing) + .iram1.4.literal + 0x40080658 0xc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x34 (size before relaxing) + .iram1.5.literal + 0x40080664 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x30 (size before relaxing) + .iram1.8.literal + 0x40080664 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x4 (size before relaxing) + .iram1.9.literal + 0x40080664 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x4 (size before relaxing) + .iram1.3.literal + 0x40080664 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x40 (size before relaxing) + .iram1.5.literal + 0x40080674 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x20 (size before relaxing) + .iram1.6.literal + 0x40080684 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .iram1.7.literal + 0x40080694 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0xc (size before relaxing) + .iram1.2.literal + 0x40080694 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + 0x44 (size before relaxing) + .iram1.2.literal + 0x400806b4 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .iram1.4.literal + 0x400806b8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .iram1.5.literal + 0x400806bc 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .iram1.0.literal + 0x400806c0 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4c (size before relaxing) + .iram1.3.literal + 0x400806f8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xc (size before relaxing) + .iram1.0.literal + 0x400806f8 0x4 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x14 (size before relaxing) + .iram1.16.literal + 0x400806fc 0xc esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x10 (size before relaxing) + .iram1.4.literal + 0x40080708 0x8 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x34 (size before relaxing) + .iram1.9.literal + 0x40080710 0x8 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x28 (size before relaxing) + .iram1.1.literal + 0x40080718 0x0 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.2.literal + 0x40080718 0x0 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.3.literal + 0x40080718 0x8 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x24 (size before relaxing) + .iram1.5.literal + 0x40080720 0x0 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.6.literal + 0x40080720 0x0 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.7.literal + 0x40080720 0x0 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.8.literal + 0x40080720 0x0 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.10.literal + 0x40080720 0x0 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.11.literal + 0x40080720 0x0 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.13.literal + 0x40080720 0x0 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.14.literal + 0x40080720 0x0 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.18.literal + 0x40080720 0x0 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x8 (size before relaxing) + .iram1.22.literal + 0x40080720 0x0 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x8 (size before relaxing) + .iram1.0.literal + 0x40080720 0x4 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0x8 (size before relaxing) + .iram1.0.literal + 0x40080724 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .iram1.1.literal + 0x40080734 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x40080734 0x4 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0x8 (size before relaxing) + .iram1.literal + 0x40080738 0x44 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0xac (size before relaxing) + .iram1.2.literal + 0x4008077c 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x4 (size before relaxing) + .iram1.4.literal + 0x4008077c 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x4 (size before relaxing) + .iram1.3.literal + 0x4008077c 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x4 (size before relaxing) + .iram1.5.literal + 0x4008077c 0x30 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x70 (size before relaxing) + .iram1.6.literal + 0x400807ac 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x10 (size before relaxing) + .iram1.1.literal + 0x400807ac 0x4 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .iram1.3.literal + 0x400807b0 0x0 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + 0xc (size before relaxing) + .iram1.0.literal + 0x400807b0 0x10 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + 0x14 (size before relaxing) + .iram1.0.literal + 0x400807c0 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + 0x4 (size before relaxing) + .iram1.1.literal + 0x400807c0 0x3c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x54 (size before relaxing) + .iram1.2.literal + 0x400807fc 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x4 (size before relaxing) + .iram1.4.literal + 0x400807fc 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x4 (size before relaxing) + .iram1.16.literal + 0x400807fc 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x1c (size before relaxing) + .iram1.6.literal + 0x40080804 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .iram1.7.literal + 0x40080814 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x8 (size before relaxing) + .iram1.8.literal + 0x40080818 0x38 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x68 (size before relaxing) + .iram1.9.literal + 0x40080850 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x14 (size before relaxing) + .iram1.0.literal + 0x40080860 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + 0x4 (size before relaxing) + .iram1.1.literal + 0x40080860 0xc esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x20 (size before relaxing) + .iram1.2.literal + 0x4008086c 0x10 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x28 (size before relaxing) + .iram1.3.literal + 0x4008087c 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x4 (size before relaxing) + .iram1.6.literal + 0x4008087c 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x4 (size before relaxing) + .iram1.7.literal + 0x4008087c 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x4 (size before relaxing) + .iram1.literal + 0x4008087c 0x0 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + 0xc (size before relaxing) + .literal.spi_flash_encrypt_ll_enable + 0x4008087c 0x4 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_encrypt_ll_disable + 0x40080880 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_encrypt_ll_plaintext_save + 0x40080880 0x14 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + 0x1c (size before relaxing) + .literal.spi_flash_encryption_hal_enable + 0x40080894 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_encryption_hal_disable + 0x40080894 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_encryption_hal_prepare + 0x40080894 0x8 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_encryption_hal_done + 0x4008089c 0x4 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + .literal.spi_flash_ll_set_read_mode + 0x400808a0 0x10 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x20 (size before relaxing) + .literal.spi_flash_ll_program_page + 0x400808b0 0x4 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_hal_configure_host_io_mode + 0x400808b4 0x8 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x28 (size before relaxing) + .literal.spi_flash_hal_common_command + 0x400808bc 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x1c (size before relaxing) + .literal.spi_flash_hal_read + 0x400808bc 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x10 (size before relaxing) + .literal.spi_flash_hal_erase_chip + 0x400808bc 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_hal_erase_sector + 0x400808bc 0x4 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_hal_erase_block + 0x400808c0 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_hal_program_page + 0x400808c0 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_hal_set_write_protect + 0x400808c0 0x4 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_hal_check_status + 0x400808c4 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_hal_resume + 0x400808c4 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_hal_suspend + 0x400808c4 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.wdt_hal_init + 0x400808c4 0x44 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x54 (size before relaxing) + .literal.wdt_hal_config_stage + 0x40080908 0xc esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x34 (size before relaxing) + .literal.wdt_hal_write_protect_disable + 0x40080914 0x0 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.wdt_hal_enable + 0x40080914 0x0 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.wdt_hal_handle_intr + 0x40080914 0x0 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.wdt_hal_feed + 0x40080914 0x0 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.wdt_hal_set_flashboot_en + 0x40080914 0x4 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .literal.esp_cpu_stall + 0x40080918 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x20 (size before relaxing) + .literal.esp_cpu_unstall + 0x40080934 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x20 (size before relaxing) + .literal.esp_ptr_executable + 0x40080938 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + 0x20 (size before relaxing) + .literal.esp_ptr_byte_accessible + 0x4008094c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + 0x8 (size before relaxing) + .literal.periph_rcc_acquire_enter + 0x40080950 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x8 (size before relaxing) + .literal.periph_rcc_acquire_exit + 0x40080954 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x8 (size before relaxing) + .literal.periph_rcc_enter + 0x40080954 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x10 (size before relaxing) + .literal.periph_rcc_exit + 0x40080958 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x10 (size before relaxing) + .literal.regi2c_ctrl_read_reg_mask + 0x40080958 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x20 (size before relaxing) + .literal.regi2c_ctrl_write_reg + 0x40080960 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x20 (size before relaxing) + .literal.rtc_clk_32k_enable_common + 0x40080964 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_bbpll_disable + 0x40080978 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_bbpll_enable + 0x40080980 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x1c (size before relaxing) + .literal.rtc_clk_bbpll_configure + 0x40080980 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x3c (size before relaxing) + .literal.rtc_clk_32k_enable + 0x40080980 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_32k_enable_external + 0x40080980 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_32k_disable_external + 0x40080980 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x8 (size before relaxing) + .literal.rtc_clk_8m_enable + 0x40080980 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_8md256_enabled + 0x40080988 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_slow_src_set + 0x40080988 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x20 (size before relaxing) + .literal.rtc_clk_slow_src_get + 0x40080988 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_slow_freq_get_hz + 0x40080988 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_fast_src_set + 0x40080994 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x14 (size before relaxing) + .literal.rtc_clk_cpu_freq_mhz_to_config + 0x40080994 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_cpu_freq_get_config + 0x40080994 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x38 (size before relaxing) + .literal.rtc_clk_cpu_freq_to_pll_mhz + 0x400809a0 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x50 (size before relaxing) + .literal.rtc_clk_cpu_freq_to_rc_fast + 0x400809b0 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x38 (size before relaxing) + .literal.rtc_clk_cpu_freq_set_config + 0x400809b8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x30 (size before relaxing) + .literal.rtc_clk_cal_internal + 0x400809b8 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x84 (size before relaxing) + .literal.rtc_clk_cal + 0x400809ec 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x24 (size before relaxing) + .literal.rtc_time_get + 0x400809f4 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x3c (size before relaxing) + .literal.rtc_clk_wait_for_slow_cycle + 0x40080a0c 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x38 (size before relaxing) + .literal.rtc_clk_freq_cal + 0x40080a18 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x8 (size before relaxing) + .literal.enable_timer_group0_for_calibration + 0x40080a1c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x20 (size before relaxing) + .literal.abort + 0x40080a1c 0x14 esp-idf/esp_libc/libesp_libc.a(abort.c.obj) + 0x28 (size before relaxing) + .literal.ra_to_str + 0x40080a30 0x4 esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + 0x8 (size before relaxing) + .literal.__assert_func + 0x40080a34 0x20 esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + 0x40 (size before relaxing) + .literal.malloc + 0x40080a54 0x0 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + 0x4 (size before relaxing) + .literal.free 0x40080a54 0x0 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + 0x4 (size before relaxing) + .literal.calloc + 0x40080a54 0x4 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + 0x8 (size before relaxing) + .literal.__atomic_fetch_and_8 + 0x40080a58 0x4 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + 0x1c (size before relaxing) + .literal.__atomic_fetch_or_8 + 0x40080a5c 0x0 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + 0x1c (size before relaxing) + .literal.cache_sync + 0x40080a5c 0x4 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .literal.esp_cache_get_alignment + 0x40080a60 0xc esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + 0x18 (size before relaxing) + .literal.esp_cache_suspend_ext_mem_cache + 0x40080a6c 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + 0x4 (size before relaxing) + .literal.esp_cache_resume_ext_mem_cache + 0x40080a6c 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + 0x4 (size before relaxing) + .literal.prvAcquireItemNoSplit + 0x40080a6c 0x14 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x20 (size before relaxing) + .literal.prvCheckItemFitsByteBuffer + 0x40080a80 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x10 (size before relaxing) + .literal.prvCheckItemFitsDefault + 0x40080a84 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x18 (size before relaxing) + .literal.prvCopyItemAllowSplit + 0x40080a88 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x28 (size before relaxing) + .literal.prvCopyItemByteBuf + 0x40080a8c 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x18 (size before relaxing) + .literal.prvCopyItemNoSplit + 0x40080a90 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0xc (size before relaxing) + .literal.prvGetItemByteBuf + 0x40080a90 0x10 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x20 (size before relaxing) + .literal.prvGetItemDefault + 0x40080aa0 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x48 (size before relaxing) + .literal.prvReceiveGenericFromISR + 0x40080abc 0xc esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x24 (size before relaxing) + .literal.prvReturnItemByteBuf + 0x40080ac8 0xc esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x18 (size before relaxing) + .literal.prvReturnItemDefault + 0x40080ad4 0x20 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x40 (size before relaxing) + .literal.prvSendItemDoneNoSplit + 0x40080af4 0xc esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x40 (size before relaxing) + .literal.vRingbufferReturnItemFromISR + 0x40080b00 0xc esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x24 (size before relaxing) + .literal.xRingbufferReceiveFromISR + 0x40080b0c 0xc esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x1c (size before relaxing) + .literal.xRingbufferSendFromISR + 0x40080b18 0x8 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x28 (size before relaxing) + .literal.esp_rom_set_cpu_ticks_per_us + 0x40080b20 0x4 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + 0x8 (size before relaxing) + .literal.esp_error_check_failed_print + 0x40080b24 0x10 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x28 (size before relaxing) + .literal._esp_error_check_failed + 0x40080b34 0x8 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x10 (size before relaxing) + .literal.esp_restart_noos_dig + 0x40080b3c 0x0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0x1c (size before relaxing) + .literal.esp_system_abort + 0x40080b3c 0x0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0x4 (size before relaxing) + .literal.esp_vApplicationTickHook + 0x40080b3c 0x4 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .literal.panic_abort + 0x40080b40 0x8 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .literal.esp_restart_noos + 0x40080b48 0x28 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + 0x9c (size before relaxing) + .literal.esp_system_reset_modules_on_exit + 0x40080b70 0xc esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + 0x30 (size before relaxing) + .literal.vPortExitCritical + 0x40080b7c 0x2c esp-idf/freertos/libfreertos.a(port.c.obj) + 0x40 (size before relaxing) + .literal.vPortYieldOtherCore + 0x40080ba8 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x4 (size before relaxing) + .literal.xPortEnterCriticalTimeout + 0x40080ba8 0x1c esp-idf/freertos/libfreertos.a(port.c.obj) + 0x58 (size before relaxing) + .literal.xPortInIsrContext + 0x40080bc4 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x8 (size before relaxing) + .literal.xPortInterruptedFromISRContext + 0x40080bc8 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x4 (size before relaxing) + .literal.xPortStartScheduler + 0x40080bc8 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x14 (size before relaxing) + .literal.vPortSetupTimer + 0x40080bcc 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x8 (size before relaxing) + .literal.xPortSysTickHandler + 0x40080bcc 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x10 (size before relaxing) + .literal 0x40080bcc 0x24 esp-idf/freertos/libfreertos.a(portasm.S.obj) + 0xa4 (size before relaxing) + .literal.prvCopyDataFromQueue + 0x40080bf0 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x4 (size before relaxing) + .literal.prvCopyDataToQueue + 0x40080bf0 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xc (size before relaxing) + .literal.prvNotifyQueueSetContainer + 0x40080bf0 0x18 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x40 (size before relaxing) + .literal.xQueueGenericSendFromISR + 0x40080c08 0x10 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x34 (size before relaxing) + .literal.xQueueGiveFromISR + 0x40080c18 0xc esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x30 (size before relaxing) + .literal.xQueueReceiveFromISR + 0x40080c24 0x10 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x30 (size before relaxing) + .literal.prvCheckTaskCanBeScheduledSMP + 0x40080c34 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.prvIsYieldRequiredSMP + 0x40080c38 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x20 (size before relaxing) + .literal.prvResetNextTaskUnblockTime + 0x40080c44 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.prvSelectHighestPriorityTaskSMP + 0x40080c4c 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x24 (size before relaxing) + .literal.vTaskGenericNotifyGiveFromISR + 0x40080c60 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x50 (size before relaxing) + .literal.vTaskGetSnapshot + 0x40080c88 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4 (size before relaxing) + .literal.vTaskSwitchContext + 0x40080c88 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x34 (size before relaxing) + .literal.xTaskGetSchedulerState + 0x40080c8c 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xc (size before relaxing) + .literal.xTaskGetTickCount + 0x40080c90 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskGetTickCountFromISR + 0x40080c94 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + .literal.xTaskIncrementTick + 0x40080c94 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x70 (size before relaxing) + .literal.xTaskIncrementTickOtherCores + 0x40080cb4 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x2c (size before relaxing) + .literal.xTaskRemoveFromEventList + 0x40080cc0 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x5c (size before relaxing) + .literal.cache_hal_suspend + 0x40080cd4 0x14 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0x34 (size before relaxing) + .literal.cache_hal_resume + 0x40080ce8 0x0 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0x24 (size before relaxing) + .literal.cache_hal_is_cache_enabled + 0x40080ce8 0x0 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0x10 (size before relaxing) + .literal.cache_hal_get_cache_line_size + 0x40080ce8 0xc esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0x10 (size before relaxing) + .literal.mmu_ll_check_entry_valid + 0x40080cf4 0x10 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x18 (size before relaxing) + .literal.mmu_ll_get_entry_target + 0x40080d04 0x8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x1c (size before relaxing) + .literal.mmu_ll_entry_id_to_paddr_base + 0x40080d0c 0x4 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x18 (size before relaxing) + .literal.mmu_hal_ctx_init + 0x40080d10 0x4 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .literal.mmu_hal_check_valid_ext_vaddr_region + 0x40080d14 0x24 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x30 (size before relaxing) + .literal.mmu_hal_map_region + 0x40080d38 0x30 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x78 (size before relaxing) + .literal.mmu_hal_unmap_region + 0x40080d68 0x8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x68 (size before relaxing) + .literal.mmu_hal_vaddr_to_paddr + 0x40080d70 0x8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x54 (size before relaxing) + .literal.assert_valid_block + 0x40080d78 0x4 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x10 (size before relaxing) + .literal.multi_heap_aligned_alloc_impl_offs + 0x40080d7c 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x14 (size before relaxing) + .literal.multi_heap_aligned_alloc_offs + 0x40080d7c 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x4 (size before relaxing) + .literal.multi_heap_free_impl + 0x40080d7c 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x18 (size before relaxing) + .literal.multi_heap_get_allocated_size_impl + 0x40080d7c 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x4 (size before relaxing) + .literal.multi_heap_internal_lock + 0x40080d7c 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0xc (size before relaxing) + .literal.multi_heap_internal_unlock + 0x40080d7c 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0xc (size before relaxing) + .literal.multi_heap_malloc_impl + 0x40080d7c 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x14 (size before relaxing) + .literal.multi_heap_realloc_impl + 0x40080d7c 0xc esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x2c (size before relaxing) + .literal.tlsf_free + 0x40080d88 0x58 esp-idf/heap/libheap.a(tlsf.c.obj) + 0xa4 (size before relaxing) + .literal.tlsf_get_pool + 0x40080de0 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x4 (size before relaxing) + .literal.tlsf_malloc + 0x40080de0 0x38 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x9c (size before relaxing) + .literal.tlsf_memalign_offs + 0x40080e18 0xc esp-idf/heap/libheap.a(tlsf.c.obj) + 0xd8 (size before relaxing) + .literal.tlsf_realloc + 0x40080e24 0xc esp-idf/heap/libheap.a(tlsf.c.obj) + 0xd0 (size before relaxing) + .literal.esp_log + 0x40080e30 0x4 esp-idf/log/liblog.a(log.c.obj) + 0x8 (size before relaxing) + .literal.esp_log_impl_lock + 0x40080e34 0x4 esp-idf/log/liblog.a(log_lock.c.obj) + 0x10 (size before relaxing) + .literal.esp_log_impl_lock_timeout + 0x40080e38 0x0 esp-idf/log/liblog.a(log_lock.c.obj) + 0x10 (size before relaxing) + .literal.esp_log_impl_unlock + 0x40080e38 0x0 esp-idf/log/liblog.a(log_lock.c.obj) + 0xc (size before relaxing) + .literal.esp_log_early_timestamp + 0x40080e38 0x0 esp-idf/log/liblog.a(log_timestamp.c.obj) + 0x4 (size before relaxing) + .literal.esp_log_timestamp + 0x40080e38 0x4 esp-idf/log/liblog.a(log_timestamp.c.obj) + 0x1c (size before relaxing) + .literal.esp_log_level_get_timeout + 0x40080e3c 0x0 esp-idf/log/liblog.a(tag_log_level.c.obj) + 0x4 (size before relaxing) + .literal.esp_log_util_set_cache_enabled_cb + 0x40080e3c 0x4 esp-idf/log/liblog.a(util.c.obj) + .literal.check_chip_pointer_default + 0x40080e40 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0xc (size before relaxing) + .literal.detect_spi_flash_chip + 0x40080e44 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x24 (size before relaxing) + .literal.esp_flash_erase_region + 0x40080e50 0x14 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x24 (size before relaxing) + .literal.esp_flash_get_physical_size + 0x40080e64 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x8 (size before relaxing) + .literal.esp_flash_init_main + 0x40080e64 0x14 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x60 (size before relaxing) + .literal.esp_flash_is_quad_mode + 0x40080e78 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x4 (size before relaxing) + .literal.esp_flash_read + 0x40080e78 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x18 (size before relaxing) + .literal.esp_flash_read_encrypted + 0x40080e78 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x14 (size before relaxing) + .literal.esp_flash_write + 0x40080e78 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x3c (size before relaxing) + .literal.esp_flash_write_encrypted + 0x40080e84 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x64 (size before relaxing) + .literal.flash_end_flush_cache + 0x40080e94 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x4 (size before relaxing) + .literal.spiflash_start_default + 0x40080e94 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_needs_reset_check + 0x40080e94 0x4 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_set_erasing_flag + 0x40080e98 0x4 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .literal.spi_flash_brownout_need_reset + 0x40080e9c 0x0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0x8 (size before relaxing) + .literal.memspi_host_read_status_hs + 0x40080e9c 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x4 (size before relaxing) + .literal.memspi_host_read_id_hs + 0x40080e9c 0x8 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x1c (size before relaxing) + .literal.memspi_host_flush_cache + 0x40080ea4 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x8 (size before relaxing) + .literal.memspi_host_init_pointers + 0x40080ea4 0xc esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x18 (size before relaxing) + .literal.spi_flash_chip_gd_detect_size + 0x40080eb0 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_gd_probe + 0x40080eb0 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .literal.spi_flash_chip_gd_suspend_cmd_conf + 0x40080eb4 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_gd_set_io_mode + 0x40080eb4 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x1c (size before relaxing) + .literal.spi_flash_chip_gd_get_io_mode + 0x40080ec8 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_detect_size + 0x40080ec8 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_command_generic_program_4B + 0x40080ec8 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_command_generic_erase_sector_4B + 0x40080ec8 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_command_generic_erase_block_4B + 0x40080ec8 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_reset + 0x40080ec8 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_generic_erase_sector + 0x40080ec8 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_generic_erase_block + 0x40080ec8 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_generic_page_program + 0x40080ec8 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_generic_config_host_io_mode + 0x40080ec8 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x10 (size before relaxing) + .literal.spi_flash_chip_generic_write_encrypted + 0x40080ed0 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_generic_get_caps + 0x40080ed4 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_common_read_qe_sr + 0x40080ed4 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_common_write_qe_sr + 0x40080ed4 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_common_read_status_16b_rdsr_rdsr2 + 0x40080ed4 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_common_write_status_16b_wrsr + 0x40080ed4 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_suspend_cmd_conf + 0x40080ed4 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_read + 0x40080ed4 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x1c (size before relaxing) + .literal.spi_flash_chip_generic_write + 0x40080edc 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_generic_get_write_protect + 0x40080edc 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x10 (size before relaxing) + .literal.spi_flash_chip_generic_yield + 0x40080ee8 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_read_unique_id + 0x40080ee8 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x1c (size before relaxing) + .literal.spi_flash_common_read_status_8b_rdsr2 + 0x40080ef0 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_get_io_mode + 0x40080ef0 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_common_read_status_8b_rdsr + 0x40080ef0 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_common_write_status_8b_wrsr + 0x40080ef0 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_common_write_status_8b_wrsr2 + 0x40080ef0 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_common_set_io_mode + 0x40080ef0 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_set_io_mode + 0x40080ef0 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_chip_issi_probe + 0x40080ef0 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_issi_set_io_mode + 0x40080ef4 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_chip_issi_get_io_mode + 0x40080efc 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_mxic_detect_size + 0x40080efc 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_winbond_suspend_cmd_conf + 0x40080efc 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_command_winbond_program_4B + 0x40080efc 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_winbond_page_program + 0x40080efc 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_command_winbond_erase_sector_4B + 0x40080efc 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_winbond_erase_sector + 0x40080efc 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_command_erase_block_4B + 0x40080efc 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_winbond_erase_block + 0x40080efc 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_winbond_read + 0x40080efc 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x1c (size before relaxing) + .literal.delay_us + 0x40080f04 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .literal.get_buffer_malloc + 0x40080f04 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xc (size before relaxing) + .literal.main_flash_op_status + 0x40080f08 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .literal.main_flash_region_protected + 0x40080f08 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x8 (size before relaxing) + .literal.release_buffer_malloc + 0x40080f08 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_os_check_yield + 0x40080f08 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_os_yield + 0x40080f14 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xc (size before relaxing) + .literal.delay_us + 0x40080f14 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x4 (size before relaxing) + .literal 0x40080f14 0x0 C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + 0x4 (size before relaxing) + .literal 0x40080f14 0x4 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + 0x2c (size before relaxing) + .iram1.8 0x40080f18 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.0 0x40080f48 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xb (size before relaxing) + *fill* 0x40080f50 0x0 + .iram1.5 0x40080f50 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x18 (size before relaxing) + .iram1.1 0x40080f64 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xb (size before relaxing) + *fill* 0x40080f6c 0x0 + .iram1.4 0x40080f6c 0x11 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + *fill* 0x40080f7d 0x3 + .iram1.7 0x40080f80 0x23 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x2f (size before relaxing) + *fill* 0x40080fa3 0x1 + .iram1.6 0x40080fa4 0x23 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x2f (size before relaxing) + *fill* 0x40080fc7 0x1 + .iram1.12 0x40080fc8 0x8 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0xb (size before relaxing) + 0x40080fc8 spi_flash_disable_cache + *fill* 0x40080fd0 0x0 + .iram1.7 0x40080fd0 0xe2 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0xfa (size before relaxing) + 0x40080fd0 spi_flash_disable_interrupts_caches_and_other_cpu + *fill* 0x400810b2 0x2 + .iram1.13 0x400810b4 0x8 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0xb (size before relaxing) + 0x400810b4 spi_flash_restore_cache + *fill* 0x400810bc 0x0 + .iram1.6 0x400810bc 0x46 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x52 (size before relaxing) + 0x400810bc spi_flash_op_block_func + *fill* 0x40081102 0x2 + .iram1.8 0x40081104 0x92 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0xa5 (size before relaxing) + 0x40081104 spi_flash_enable_interrupts_caches_and_other_cpu + *fill* 0x40081196 0x2 + .iram1.11 0x40081198 0xbb esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0xbf (size before relaxing) + 0x40081198 spi_flash_enable_cache + *fill* 0x40081253 0x1 + .iram1.14 0x40081254 0x11 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x40081254 spi_flash_cache_enabled + *fill* 0x40081265 0x3 + .iram1.0 0x40081268 0x1c esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x20 (size before relaxing) + .iram1.1 0x40081284 0x52 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x56 (size before relaxing) + 0x40081284 spi_flash_check_and_flush_cache + *fill* 0x400812d6 0x2 + .iram1.8 0x400812d8 0xa esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x400812d8 spi_flash_guard_set + *fill* 0x400812e2 0x2 + .iram1.3 0x400812e4 0x6c esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x70 (size before relaxing) + .iram1.2 0x40081350 0xe3 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0xf6 (size before relaxing) + *fill* 0x40081433 0x1 + .iram1.8 0x40081434 0xa3 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0xb7 (size before relaxing) + 0x40081434 call_start_cpu1 + *fill* 0x400814d7 0x1 + .iram1.14 0x400814d8 0x8 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0xb (size before relaxing) + *fill* 0x400814e0 0x0 + .iram1.15 0x400814e0 0x18 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x24 (size before relaxing) + .iram1.9 0x400814f8 0xda esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0xf2 (size before relaxing) + 0x400814f8 do_multicore_settings + *fill* 0x400815d2 0x2 + .iram1.16 0x400815d4 0xaa esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0xc2 (size before relaxing) + 0x400815d4 call_start_cpu0 + *fill* 0x4008167e 0x2 + .iram1.7 0x40081680 0x61 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + *fill* 0x400816e1 0x3 + .iram1.2 0x400816e4 0x6e esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x7e (size before relaxing) + 0x400816e4 esp_ipc_isr_stall_other_cpu + *fill* 0x40081752 0x2 + .iram1.3 0x40081754 0x83 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x8e (size before relaxing) + 0x40081754 esp_ipc_isr_release_other_cpu + *fill* 0x400817d7 0x1 + .iram1.5 0x400817d8 0xf esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x400817d8 esp_ipc_isr_stall_abort + *fill* 0x400817e7 0x1 + .iram1.0 0x400817e8 0x20 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + 0x400817e8 esp_ipc_isr_port_int_trigger + .iram1 0x40081808 0x91 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + 0x95 (size before relaxing) + 0x40081808 xt_highint4 + 0x40081899 ld_include_highint_hdl + *fill* 0x40081899 0x3 + .iram1.0 0x4008189c 0x64 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x70 (size before relaxing) + .iram1.0 0x40081900 0x27 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x2e (size before relaxing) + 0x40081900 start_cpu_other_cores + *fill* 0x40081927 0x1 + .iram1.0 0x40081928 0x1b esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x23 (size before relaxing) + *fill* 0x40081943 0x1 + .iram1.1 0x40081944 0x12 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x16 (size before relaxing) + 0x40081944 panicHandler + *fill* 0x40081956 0x2 + .iram1.2 0x40081958 0x12 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x16 (size before relaxing) + 0x40081958 xt_unhandled_exception + *fill* 0x4008196a 0x2 + .iram1 0x4008196c 0x63 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + 0x4008196c esp_ipc_isr_handler + *fill* 0x400819cf 0x1 + .iram1.1 0x400819d0 0x2f esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x3b (size before relaxing) + *fill* 0x400819ff 0x1 + .iram1.2 0x40081a00 0x18 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .iram1.0 0x40081a18 0x52 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x56 (size before relaxing) + 0x40081a18 esp_backtrace_get_next_frame + *fill* 0x40081a6a 0x2 + .iram1.3 0x40081a6c 0x101 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x111 (size before relaxing) + 0x40081a6c esp_backtrace_print_from_frame + *fill* 0x40081b6d 0x3 + .iram1.4 0x40081b70 0x28 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x2c (size before relaxing) + 0x40081b70 esp_backtrace_print + .iram1 0x40081b98 0x1d esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + 0x40081b98 esp_backtrace_get_start + *fill* 0x40081bb5 0x3 + .iram1.2 0x40081bb8 0x54 esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + 0x40081bb8 esp_rom_output_tx_wait_idle + .iram1.0 0x40081c0c 0x66 esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + 0x40081c0c esp_rom_gpio_connect_out_signal + *fill* 0x40081c72 0x2 + .iram1.0 0x40081c74 0x18 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x1c (size before relaxing) + 0x40081c74 efuse_hal_chip_revision + .iram1.5 0x40081c8c 0x28 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x40081c8c efuse_hal_flash_encryption_enabled + .iram1.0 0x40081cb4 0x49 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x40081cb4 efuse_hal_get_major_chip_version + *fill* 0x40081cfd 0x3 + .iram1.1 0x40081d00 0x10 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x40081d00 efuse_hal_get_minor_chip_version + .iram1.0 0x40081d10 0x16 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x40081d26 0x2 + .iram1.1 0x40081d28 0x2d esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x31 (size before relaxing) + 0x40081d28 heap_caps_malloc + *fill* 0x40081d55 0x3 + .iram1.2 0x40081d58 0x67 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x76 (size before relaxing) + 0x40081d58 heap_caps_malloc_default + *fill* 0x40081dbf 0x1 + .iram1.7 0x40081dc0 0x2b esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x2f (size before relaxing) + 0x40081dc0 heap_caps_realloc + *fill* 0x40081deb 0x1 + .iram1.8 0x40081dec 0x2e esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x32 (size before relaxing) + 0x40081dec heap_caps_calloc + *fill* 0x40081e1a 0x2 + .iram1.0 0x40081e1c 0xb1 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0xc1 (size before relaxing) + *fill* 0x40081ecd 0x3 + .iram1.2 0x40081ed0 0x20 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x23 (size before relaxing) + *fill* 0x40081ef0 0x0 + .iram1.1 0x40081ef0 0x60 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x40081ef0 heap_caps_free + .iram1.3 0x40081f50 0xea esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0xf2 (size before relaxing) + 0x40081f50 heap_caps_aligned_alloc_base + *fill* 0x4008203a 0x2 + .iram1.4 0x4008203c 0x10 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x14 (size before relaxing) + 0x4008203c heap_caps_malloc_base + .iram1.5 0x4008204c 0x162 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x172 (size before relaxing) + 0x4008204c heap_caps_realloc_base + *fill* 0x400821ae 0x2 + .iram1.6 0x400821b0 0x30 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x34 (size before relaxing) + 0x400821b0 heap_caps_calloc_base + .iram1.0 0x400821e0 0x15 esp-idf/soc/libsoc.a(dport_access.c.obj) + 0x400821e0 esp_dport_access_reg_read + *fill* 0x400821f5 0x3 + .iram1.1 0x400821f8 0xc esp-idf/soc/libsoc.a(dport_access.c.obj) + 0x400821f8 esp_dport_access_sequence_reg_read + .iram1.1 0x40082204 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x40082204 esp_clk_cpu_freq + .iram1.2 0x40082214 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x40082214 esp_clk_apb_freq + *fill* 0x4008222a 0x2 + .iram1.0 0x4008222c 0x39 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x40 (size before relaxing) + *fill* 0x40082265 0x3 + .iram1.4 0x40082268 0x74 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x8f (size before relaxing) + 0x40082268 esp_intr_noniram_disable + *fill* 0x400822dc 0x0 + .iram1.5 0x400822dc 0x64 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x7f (size before relaxing) + 0x400822dc esp_intr_noniram_enable + *fill* 0x40082340 0x0 + .iram1.8 0x40082340 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x13 (size before relaxing) + 0x40082340 esp_intr_enable_source + *fill* 0x40082350 0x0 + .iram1.9 0x40082350 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x13 (size before relaxing) + 0x40082350 esp_intr_disable_source + *fill* 0x40082360 0x0 + .iram1.3 0x40082360 0xea esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x102 (size before relaxing) + 0x40082360 esp_intr_disable + *fill* 0x4008244a 0x2 + .iram1.5 0x4008244c 0x4c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x58 (size before relaxing) + .iram1.6 0x40082498 0x32 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x40082498 rtc_isr_noniram_disable + *fill* 0x400824ca 0x2 + .iram1.7 0x400824cc 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x400824cc rtc_isr_noniram_enable + *fill* 0x400824ea 0x2 + .iram1.2 0x400824ec 0xb7 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + 0xcb (size before relaxing) + *fill* 0x400825a3 0x1 + .iram1.2 0x400825a4 0x3f esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x400825a4 rtc_clk_get_lact_compensation_delay + *fill* 0x400825e3 0x1 + .iram1.4 0x400825e4 0x33 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x400825e4 rtc_clk_xtal_freq_get + 0x400825e4 rtc_get_xtal + *fill* 0x40082617 0x1 + .iram1.5 0x40082618 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40082618 rtc_clk_apb_freq_update + *fill* 0x40082631 0x3 + .iram1.0 0x40082634 0xd1 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xe1 (size before relaxing) + 0x40082634 rtc_clk_cpu_freq_to_xtal + *fill* 0x40082705 0x3 + .iram1.3 0x40082708 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x19 (size before relaxing) + 0x40082708 rtc_clk_cpu_set_to_default_config + *fill* 0x40082719 0x3 + .iram1.0 0x4008271c 0x24 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x2f (size before relaxing) + *fill* 0x40082740 0x0 + .iram1.16 0x40082740 0x17 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x1a (size before relaxing) + *fill* 0x40082757 0x1 + .iram1.4 0x40082758 0xa5 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0xbd (size before relaxing) + *fill* 0x400827fd 0x3 + .iram1.9 0x40082800 0x5e esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x6a (size before relaxing) + *fill* 0x4008285e 0x2 + .iram1.1 0x40082860 0x13 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x40082860 _lock_init + *fill* 0x40082873 0x1 + .iram1.2 0x40082874 0x13 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x40082874 _lock_init_recursive + *fill* 0x40082887 0x1 + .iram1.3 0x40082888 0x37 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x47 (size before relaxing) + 0x40082888 _lock_close_recursive + 0x40082888 _lock_close + *fill* 0x400828bf 0x1 + .iram1.5 0x400828c0 0xe esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x12 (size before relaxing) + 0x400828c0 _lock_acquire + *fill* 0x400828ce 0x2 + .iram1.6 0x400828d0 0xe esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x12 (size before relaxing) + 0x400828d0 _lock_acquire_recursive + *fill* 0x400828de 0x2 + .iram1.7 0x400828e0 0x10 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x14 (size before relaxing) + 0x400828e0 _lock_try_acquire + .iram1.8 0x400828f0 0x10 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x14 (size before relaxing) + 0x400828f0 _lock_try_acquire_recursive + .iram1.10 0x40082900 0xf esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x40082900 _lock_release + *fill* 0x4008290f 0x1 + .iram1.11 0x40082910 0xf esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x40082910 _lock_release_recursive + *fill* 0x4008291f 0x1 + .iram1.13 0x40082920 0x13 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x40082920 __retarget_lock_init_recursive + *fill* 0x40082933 0x1 + .iram1.14 0x40082934 0xf esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x40082934 __retarget_lock_close + *fill* 0x40082943 0x1 + .iram1.18 0x40082944 0x13 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x17 (size before relaxing) + 0x40082944 __retarget_lock_acquire_recursive + *fill* 0x40082957 0x1 + .iram1.22 0x40082958 0x13 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x17 (size before relaxing) + 0x40082958 __retarget_lock_release_recursive + *fill* 0x4008296b 0x1 + .iram1.0 0x4008296c 0x1b esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0x4008296c esp_system_get_time + *fill* 0x40082987 0x1 + .iram1.0 0x40082988 0x4f esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x40082988 esp_timer_impl_get_counter_reg + *fill* 0x400829d7 0x1 + .iram1.1 0x400829d8 0x13 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x16 (size before relaxing) + 0x400829d8 esp_timer_get_time + 0x400829d8 esp_timer_impl_get_time + *fill* 0x400829eb 0x1 + .iram1.0 0x400829ec 0x16 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0x400829ec xt_unhandled_interrupt + *fill* 0x40082a02 0x2 + .iram1 0x40082a04 0x4e2 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x506 (size before relaxing) + 0x40082a04 xt_debugexception + 0x40082ad8 _xt_user_exit + 0x40082e0c _xt_medint2_exit + 0x40082ebc _xt_medint3_exit + 0x40082ed8 xt_highint5 + 0x40082ee0 xt_nmi + *fill* 0x40082ee6 0x2 + .iram1.2 0x40082ee8 0x8 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0xb (size before relaxing) + *fill* 0x40082ef0 0x0 + .iram1.4 0x40082ef0 0x8 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0xb (size before relaxing) + *fill* 0x40082ef8 0x0 + .iram1.3 0x40082ef8 0x8 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0xb (size before relaxing) + *fill* 0x40082f00 0x0 + .iram1.5 0x40082f00 0x219 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x231 (size before relaxing) + *fill* 0x40083119 0x3 + .iram1.6 0x4008311c 0x1d esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x29 (size before relaxing) + *fill* 0x40083139 0x3 + .iram1.1 0x4008313c 0x6d esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x4008313c esp_mmu_paddr_find_caps + *fill* 0x400831a9 0x3 + .iram1.3 0x400831ac 0x15 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + 0x19 (size before relaxing) + *fill* 0x400831c1 0x3 + .iram1.0 0x400831c4 0x6a esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + 0x6e (size before relaxing) + 0x400831c4 esp_heap_adjust_alignment_to_hw + *fill* 0x4008322e 0x2 + .iram1.0 0x40083230 0xa esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + 0xd (size before relaxing) + 0x40083230 esp_flash_encryption_enabled + *fill* 0x4008323a 0x2 + .iram1.1 0x4008323c 0x2ec esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x4008323c bootloader_flash_execute_command_common + .iram1.2 0x40083528 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x40083528 bootloader_execute_flash_command + .iram1.4 0x40083548 0x2a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x2e (size before relaxing) + 0x40083548 bootloader_read_flash_id + *fill* 0x40083572 0x2 + .iram1.16 0x40083574 0x96 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x9e (size before relaxing) + 0x40083574 bootloader_flash_reset_chip + *fill* 0x4008360a 0x2 + .iram1.6 0x4008360c 0x6e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x4008360c bootloader_flash_cs_timing_config + *fill* 0x4008367a 0x2 + .iram1.7 0x4008367c 0x4c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x4008367c bootloader_flash_clock_config + .iram1.8 0x400836c8 0x202 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x20e (size before relaxing) + 0x400836c8 bootloader_flash_gpio_config + *fill* 0x400838ca 0x2 + .iram1.9 0x400838cc 0xb3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x400838cc bootloader_flash_dummy_config + *fill* 0x4008397f 0x1 + .iram1.0 0x40083980 0x1e esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + 0x40083980 bootloader_common_get_chip_ver_pkg + *fill* 0x4008399e 0x2 + .iram1.1 0x400839a0 0x57 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x66 (size before relaxing) + *fill* 0x400839f7 0x1 + .iram1.2 0x400839f8 0x58 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x60 (size before relaxing) + .iram1.3 0x40083a50 0xf esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x40083a50 esp_crosscore_int_send_yield + *fill* 0x40083a5f 0x1 + .iram1.6 0x40083a60 0xf esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x40083a60 esp_crosscore_int_send_print_backtrace + *fill* 0x40083a6f 0x1 + .iram1.7 0x40083a70 0xf esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x40083a70 esp_crosscore_int_send_twdt_abort + *fill* 0x40083a7f 0x1 + .iram1 0x40083a80 0x40 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + 0x48 (size before relaxing) + 0x40083a80 _xt_panic + *fill* 0x40083ac0 0x0 + *fill* 0x40083ac0 0x0 + *fill* 0x40083ac0 0x0 + *fill* 0x40083ac0 0x0 + *fill* 0x40083ac0 0x0 + *fill* 0x40083ac0 0x0 + *fill* 0x40083ac0 0x0 + *fill* 0x40083ac0 0x0 + *fill* 0x40083ac0 0x0 + *fill* 0x40083ac0 0x0 + *fill* 0x40083ac0 0x0 + *fill* 0x40083ac0 0x0 + *fill* 0x40083ac0 0x0 + *fill* 0x40083ac0 0x0 + .iram1.10 0x40083ac0 0x5 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x40083ac0 esp_mspi_pin_init + *fill* 0x40083ac5 0x3 + .iram1.11 0x40083ac8 0x7 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x40083ac8 spi_flash_init_chip_state + *fill* 0x40083acf 0x1 + .iram1.13 0x40083ad0 0x7 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x40083ad0 esp_mspi_32bit_address_flash_feature_check + *fill* 0x40083ad7 0x0 + *fill* 0x40083ad7 0x0 + *fill* 0x40083ad7 0x0 + *fill* 0x40083ad7 0x0 + *fill* 0x40083ad7 0x0 + *fill* 0x40083ad7 0x0 + *fill* 0x40083ad7 0x0 + *fill* 0x40083ad7 0x0 + *fill* 0x40083ad7 0x0 + *fill* 0x40083ad7 0x1 + .iram1 0x40083ad8 0xa esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + 0x40083ad8 esp_ipc_isr_waiting_for_finish_cmd + *fill* 0x40083ae2 0x0 + *fill* 0x40083ae2 0x0 + *fill* 0x40083ae2 0x0 + *fill* 0x40083ae2 0x0 + *fill* 0x40083ae2 0x0 + *fill* 0x40083ae2 0x0 + *fill* 0x40083ae2 0x0 + *fill* 0x40083ae2 0x0 + *fill* 0x40083ae2 0x0 + *fill* 0x40083ae2 0x0 + *fill* 0x40083ae2 0x0 + *fill* 0x40083ae2 0x2 + .iram1.2 0x40083ae4 0x7 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x40083ae4 efuse_hal_get_disable_wafer_version_major + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *fill* 0x40083aeb 0x0 + *libesp_driver_gptimer.a:gptimer.*(.literal.gptimer_default_isr .text.gptimer_default_isr) + *libesp_driver_i2c.a:i2c_master.*(.literal.i2c_master_isr_handler_default .text.i2c_master_isr_handler_default) + *libesp_driver_mcpwm.a:mcpwm_cap.*(.literal.mcpwm_capture_default_isr .text.mcpwm_capture_default_isr) + *libesp_driver_mcpwm.a:mcpwm_cmpr.*(.literal.mcpwm_comparator_default_isr .text.mcpwm_comparator_default_isr) + *libesp_driver_mcpwm.a:mcpwm_fault.*(.literal.mcpwm_gpio_fault_default_isr .text.mcpwm_gpio_fault_default_isr) + *libesp_driver_mcpwm.a:mcpwm_oper.*(.literal.mcpwm_operator_default_isr .text.mcpwm_operator_default_isr) + *libesp_driver_mcpwm.a:mcpwm_timer.*(.literal.mcpwm_timer_default_isr .text.mcpwm_timer_default_isr) + *libesp_driver_rmt.a:rmt_encoder.*(.literal.rmt_encoder_reset .text.rmt_encoder_reset) + *libesp_driver_rmt.a:rmt_rx.*(.literal.rmt_isr_handle_rx_done .text.rmt_isr_handle_rx_done) + *libesp_driver_rmt.a:rmt_rx.*(.literal.rmt_rx_default_isr .text.rmt_rx_default_isr) + *libesp_driver_rmt.a:rmt_tx.*(.literal.rmt_encode_check_result .text.rmt_encode_check_result) + *libesp_driver_rmt.a:rmt_tx.*(.literal.rmt_isr_handle_tx_done .text.rmt_isr_handle_tx_done) + *libesp_driver_rmt.a:rmt_tx.*(.literal.rmt_isr_handle_tx_threshold .text.rmt_isr_handle_tx_threshold) + *libesp_driver_rmt.a:rmt_tx.*(.literal.rmt_tx_default_isr .text.rmt_tx_default_isr) + *libesp_driver_rmt.a:rmt_tx.*(.literal.rmt_tx_do_transaction .text.rmt_tx_do_transaction) + *libesp_driver_rmt.a:rmt_tx.*(.literal.rmt_tx_mark_eof .text.rmt_tx_mark_eof) + *libesp_event.a:default_event_loop.*(.literal.esp_event_isr_post .text.esp_event_isr_post) + *libesp_event.a:esp_event.*(.literal.esp_event_isr_post_to .text.esp_event_isr_post_to) + *libesp_hal_gpio.a:gpio_hal.*(.literal.gpio_hal_isolate_in_sleep .text.gpio_hal_isolate_in_sleep) + *libesp_hal_gpspi.a:spi_hal_iram.*(.literal .literal.* .text .text.*) + *libesp_hal_gpspi.a:spi_slave_hal_iram.*(.literal .literal.* .text .text.*) + *libesp_hal_i2c.a:i2c_hal_iram.*(.literal .literal.* .text .text.*) + *libesp_hal_ledc.a:ledc_hal_iram.*(.literal .literal.* .text .text.*) + *libesp_hal_mspi.a:spi_flash_encrypt_hal_iram.*(.literal .literal.* .text .text.*) + *fill* 0x40083aeb 0x1 + .text.spi_flash_encrypt_ll_enable + 0x40083aec 0x1b esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + *fill* 0x40083b07 0x1 + .text.spi_flash_encrypt_ll_disable + 0x40083b08 0x1b esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + *fill* 0x40083b23 0x1 + .text.spi_flash_encrypt_ll_plaintext_save + 0x40083b24 0x43 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + 0x46 (size before relaxing) + *fill* 0x40083b67 0x1 + .text.spi_flash_encryption_hal_enable + 0x40083b68 0x8 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + 0xb (size before relaxing) + 0x40083b68 spi_flash_encryption_hal_enable + *fill* 0x40083b70 0x0 + .text.spi_flash_encryption_hal_disable + 0x40083b70 0x8 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + 0xb (size before relaxing) + 0x40083b70 spi_flash_encryption_hal_disable + *fill* 0x40083b78 0x0 + .text.spi_flash_encryption_hal_prepare + 0x40083b78 0x20 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + 0x24 (size before relaxing) + 0x40083b78 spi_flash_encryption_hal_prepare + .text.spi_flash_encryption_hal_done + 0x40083b98 0x10 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + 0x40083b98 spi_flash_encryption_hal_done + *fill* 0x40083ba8 0x0 + *fill* 0x40083ba8 0x0 + *fill* 0x40083ba8 0x0 + *fill* 0x40083ba8 0x0 + *fill* 0x40083ba8 0x0 + .text.spi_flash_encryption_hal_destroy + 0x40083ba8 0x5 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + 0x40083ba8 spi_flash_encryption_hal_destroy + *fill* 0x40083bad 0x3 + .text.spi_flash_encryption_hal_check + 0x40083bb0 0xe esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + 0x40083bb0 spi_flash_encryption_hal_check + *libesp_hal_mspi.a:spi_flash_hal_iram.*(.literal .literal.* .text .text.*) + *fill* 0x40083bbe 0x2 + .text.spi_flash_ll_set_read_mode + 0x40083bc0 0xba esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + *fill* 0x40083c7a 0x2 + .text.spi_flash_ll_program_page + 0x40083c7c 0x62 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + *fill* 0x40083cde 0x2 + .text.spi_flash_hal_configure_host_io_mode + 0x40083ce0 0x195 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x40083ce0 spi_flash_hal_configure_host_io_mode + *fill* 0x40083e75 0x3 + .text.spi_flash_hal_common_command + 0x40083e78 0x1d9 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x40083e78 spi_flash_hal_common_command + *fill* 0x40084051 0x3 + .text.spi_flash_hal_read + 0x40084054 0x100 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x40084054 spi_flash_hal_read + .text.spi_flash_hal_erase_chip + 0x40084154 0x22 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x40084154 spi_flash_hal_erase_chip + *fill* 0x40084176 0x2 + .text.spi_flash_hal_erase_sector + 0x40084178 0x5a esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x40084178 spi_flash_hal_erase_sector + *fill* 0x400841d2 0x2 + .text.spi_flash_hal_erase_block + 0x400841d4 0x52 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x400841d4 spi_flash_hal_erase_block + *fill* 0x40084226 0x2 + .text.spi_flash_hal_program_page + 0x40084228 0x52 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x40084228 spi_flash_hal_program_page + *fill* 0x4008427a 0x2 + .text.spi_flash_hal_set_write_protect + 0x4008427c 0x3c esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x4008427c spi_flash_hal_set_write_protect + .text.spi_flash_hal_check_status + 0x400842b8 0x32 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x400842b8 spi_flash_hal_check_status + *fill* 0x400842ea 0x2 + .text.spi_flash_hal_resume + 0x400842ec 0x6 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x9 (size before relaxing) + 0x400842ec spi_flash_hal_resume + *fill* 0x400842f2 0x2 + .text.spi_flash_hal_suspend + 0x400842f4 0x6 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x9 (size before relaxing) + 0x400842f4 spi_flash_hal_suspend + *fill* 0x400842fa 0x0 + *fill* 0x400842fa 0x0 + *fill* 0x400842fa 0x2 + .text.spi_flash_hal_poll_cmd_done + 0x400842fc 0xf esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x400842fc spi_flash_hal_poll_cmd_done + *fill* 0x4008430b 0x1 + .text.spi_flash_hal_device_config + 0x4008430c 0xdb esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x4008430c spi_flash_hal_device_config + *fill* 0x400843e7 0x0 + *fill* 0x400843e7 0x0 + *fill* 0x400843e7 0x0 + *fill* 0x400843e7 0x0 + *fill* 0x400843e7 0x0 + *fill* 0x400843e7 0x0 + *fill* 0x400843e7 0x0 + *fill* 0x400843e7 0x1 + .text.spi_flash_hal_setup_read_suspend + 0x400843e8 0x7 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x400843e8 spi_flash_hal_setup_read_suspend + *fill* 0x400843ef 0x0 + *fill* 0x400843ef 0x0 + *libesp_hal_timg.a:timer_hal.*(.literal.timer_hal_capture_and_get_counter_value .text.timer_hal_capture_and_get_counter_value) + *libesp_hal_wdt.a:wdt_hal_iram.*(.literal .literal.* .text .text.*) + *fill* 0x400843ef 0x1 + .text.wdt_hal_init + 0x400843f0 0x298 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x400843f0 wdt_hal_init + .text.wdt_hal_config_stage + 0x40084688 0x16d esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x174 (size before relaxing) + 0x40084688 wdt_hal_config_stage + *fill* 0x400847f5 0x3 + .text.wdt_hal_write_protect_disable + 0x400847f8 0x22 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x400847f8 wdt_hal_write_protect_disable + *fill* 0x4008481a 0x2 + .text.wdt_hal_enable + 0x4008481c 0x50 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x4008481c wdt_hal_enable + .text.wdt_hal_handle_intr + 0x4008486c 0x50 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x4008486c wdt_hal_handle_intr + .text.wdt_hal_feed + 0x400848bc 0x2a esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x400848bc wdt_hal_feed + *fill* 0x400848e6 0x2 + .text.wdt_hal_set_flashboot_en + 0x400848e8 0x49 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x400848e8 wdt_hal_set_flashboot_en + *fill* 0x40084931 0x0 + *fill* 0x40084931 0x3 + .text.wdt_hal_write_protect_enable + 0x40084934 0x20 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x40084934 wdt_hal_write_protect_enable + .text.wdt_hal_disable + 0x40084954 0x32 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x40084954 wdt_hal_disable + *fill* 0x40084986 0x0 + *fill* 0x40084986 0x0 + *fill* 0x40084986 0x2 + .text.wdt_hal_is_enabled + 0x40084988 0x22 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x40084988 wdt_hal_is_enabled + *libesp_hw_support.a:clk_utils.*(.literal .literal.* .text .text.*) + *fill* 0x400849aa 0x2 + .text.esp_clk_utils_mspi_speed_mode_sync_before_cpu_freq_switching + 0x400849ac 0x5 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + 0x400849ac esp_clk_utils_mspi_speed_mode_sync_before_cpu_freq_switching + *libesp_hw_support.a:cpu.*(.literal.esp_cpu_compare_and_set .text.esp_cpu_compare_and_set) + *fill* 0x400849b1 0x3 + .text.esp_cpu_compare_and_set + 0x400849b4 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x400849b4 esp_cpu_compare_and_set + *libesp_hw_support.a:cpu.*(.literal.esp_cpu_reset .text.esp_cpu_reset) + *libesp_hw_support.a:cpu.*(.literal.esp_cpu_stall .text.esp_cpu_stall) + .text.esp_cpu_stall + 0x400849c8 0x87 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x400849c8 esp_cpu_stall + *libesp_hw_support.a:cpu.*(.literal.esp_cpu_unstall .text.esp_cpu_unstall) + *fill* 0x40084a4f 0x1 + .text.esp_cpu_unstall + 0x40084a50 0x59 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x40084a50 esp_cpu_unstall + *fill* 0x40084aa9 0x0 + *libesp_hw_support.a:cpu.*(.literal.esp_cpu_wait_for_intr .text.esp_cpu_wait_for_intr) + *fill* 0x40084aa9 0x3 + .text.esp_cpu_wait_for_intr + 0x40084aac 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x40084aac esp_cpu_wait_for_intr + *libesp_hw_support.a:esp_clk_tree.*(.literal.esp_clk_tree_enable_power .text.esp_clk_tree_enable_power) + *libesp_hw_support.a:esp_clk_tree.*(.literal.esp_clk_tree_enable_src .text.esp_clk_tree_enable_src) + .text.esp_clk_tree_enable_src + 0x40084ab4 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + 0x40084ab4 esp_clk_tree_enable_src + *libesp_hw_support.a:esp_clk_tree.*(.literal.esp_clk_tree_is_power_on .text.esp_clk_tree_is_power_on) + *libesp_hw_support.a:esp_memory_utils.*(.literal .literal.* .text .text.*) + *fill* 0x40084abb 0x1 + .text.esp_ptr_executable + 0x40084abc 0x5a esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + 0x40084abc esp_ptr_executable + *fill* 0x40084b16 0x2 + .text.esp_ptr_byte_accessible + 0x40084b18 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + 0x40084b18 esp_ptr_byte_accessible + *fill* 0x40084b31 0x0 + *fill* 0x40084b31 0x0 + *libesp_hw_support.a:mspi_timing_tuning.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:periph_ctrl.*(.literal.periph_module_reset .text.periph_module_reset) + *libesp_hw_support.a:periph_ctrl.*(.literal.periph_rcc_acquire_enter .text.periph_rcc_acquire_enter) + *fill* 0x40084b31 0x3 + .text.periph_rcc_acquire_enter + 0x40084b34 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x13 (size before relaxing) + 0x40084b34 periph_rcc_acquire_enter + *fill* 0x40084b44 0x0 + *libesp_hw_support.a:periph_ctrl.*(.literal.periph_rcc_acquire_exit .text.periph_rcc_acquire_exit) + *fill* 0x40084b44 0x0 + .text.periph_rcc_acquire_exit + 0x40084b44 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x40084b44 periph_rcc_acquire_exit + *fill* 0x40084b5c 0x0 + *libesp_hw_support.a:periph_ctrl.*(.literal.periph_rcc_enter .text.periph_rcc_enter) + .text.periph_rcc_enter + 0x40084b5c 0x1f esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x2a (size before relaxing) + 0x40084b5c periph_rcc_enter + *libesp_hw_support.a:periph_ctrl.*(.literal.periph_rcc_exit .text.periph_rcc_exit) + *fill* 0x40084b7b 0x1 + .text.periph_rcc_exit + 0x40084b7c 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x23 (size before relaxing) + 0x40084b7c periph_rcc_exit + *fill* 0x40084b98 0x0 + *libesp_hw_support.a:periph_ctrl.*(.literal.periph_rcc_release_enter .text.periph_rcc_release_enter) + *libesp_hw_support.a:periph_ctrl.*(.literal.periph_rcc_release_exit .text.periph_rcc_release_exit) + *libesp_hw_support.a:periph_ctrl.*(.literal.wifi_module_disable .text.wifi_module_disable) + *libesp_hw_support.a:periph_ctrl.*(.literal.wifi_module_enable .text.wifi_module_enable) + *libesp_hw_support.a:regi2c_ctrl.*(.literal.regi2c_ctrl_read_reg .text.regi2c_ctrl_read_reg) + *libesp_hw_support.a:regi2c_ctrl.*(.literal.regi2c_ctrl_read_reg_mask .text.regi2c_ctrl_read_reg_mask) + *fill* 0x40084b98 0x0 + .text.regi2c_ctrl_read_reg_mask + 0x40084b98 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x67 (size before relaxing) + 0x40084b98 regi2c_ctrl_read_reg_mask + *fill* 0x40084bf0 0x0 + *libesp_hw_support.a:regi2c_ctrl.*(.literal.regi2c_ctrl_write_reg .text.regi2c_ctrl_write_reg) + *fill* 0x40084bf0 0x0 + .text.regi2c_ctrl_write_reg + 0x40084bf0 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x63 (size before relaxing) + 0x40084bf0 regi2c_ctrl_write_reg + *fill* 0x40084c40 0x0 + *libesp_hw_support.a:regi2c_ctrl.*(.literal.regi2c_ctrl_write_reg_mask .text.regi2c_ctrl_write_reg_mask) + *libesp_hw_support.a:regi2c_ctrl.*(.literal.regi2c_enter_critical .text.regi2c_enter_critical) + *libesp_hw_support.a:regi2c_ctrl.*(.literal.regi2c_exit_critical .text.regi2c_exit_critical) + *libesp_hw_support.a:rtc_clk.*(.literal .literal.* .text .text.*) + *fill* 0x40084c40 0x0 + .text.rtc_clk_32k_enable_common + 0x40084c40 0x90 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_bbpll_disable + 0x40084cd0 0x3e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + *fill* 0x40084d0e 0x2 + .text.rtc_clk_bbpll_enable + 0x40084d10 0x66 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x76 (size before relaxing) + *fill* 0x40084d76 0x2 + .text.rtc_clk_bbpll_configure + 0x40084d78 0x198 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x1ac (size before relaxing) + .text.rtc_clk_32k_enable + 0x40084f10 0x35 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x39 (size before relaxing) + 0x40084f10 rtc_clk_32k_enable + *fill* 0x40084f45 0x3 + .text.rtc_clk_32k_enable_external + 0x40084f48 0xa esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xe (size before relaxing) + 0x40084f48 rtc_clk_32k_enable_external + *fill* 0x40084f52 0x2 + .text.rtc_clk_32k_disable_external + 0x40084f54 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40084f54 rtc_clk_32k_disable_external + .text.rtc_clk_8m_enable + 0x40084f6c 0x9d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40084f6c rtc_clk_8m_enable + *fill* 0x40085009 0x3 + .text.rtc_clk_8md256_enabled + 0x4008500c 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4008500c rtc_clk_8md256_enabled + .text.rtc_clk_slow_src_set + 0x40085024 0xb6 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xbe (size before relaxing) + 0x40085024 rtc_clk_slow_src_set + *fill* 0x400850da 0x2 + .text.rtc_clk_slow_src_get + 0x400850dc 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x400850dc rtc_clk_slow_src_get + *fill* 0x400850f6 0x2 + .text.rtc_clk_slow_freq_get_hz + 0x400850f8 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x28 (size before relaxing) + 0x400850f8 rtc_clk_slow_freq_get_hz + .text.rtc_clk_fast_src_set + 0x4008511c 0x47 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4a (size before relaxing) + 0x4008511c rtc_clk_fast_src_set + *fill* 0x40085163 0x1 + .text.rtc_clk_cpu_freq_mhz_to_config + 0x40085164 0x64 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40085164 rtc_clk_cpu_freq_mhz_to_config + .text.rtc_clk_cpu_freq_get_config + 0x400851c8 0xc9 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xd9 (size before relaxing) + 0x400851c8 rtc_clk_cpu_freq_get_config + *fill* 0x40085291 0x3 + .text.rtc_clk_cpu_freq_to_pll_mhz + 0x40085294 0x14c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x158 (size before relaxing) + .text.rtc_clk_cpu_freq_to_rc_fast + 0x400853e0 0x8e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x96 (size before relaxing) + *fill* 0x4008546e 0x2 + .text.rtc_clk_cpu_freq_set_config + 0x40085470 0x74 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x93 (size before relaxing) + 0x40085470 rtc_clk_cpu_freq_set_config + *fill* 0x400854e4 0x0 + *fill* 0x400854e4 0x0 + *fill* 0x400854e4 0x0 + *fill* 0x400854e4 0x0 + *fill* 0x400854e4 0x0 + *fill* 0x400854e4 0x0 + *fill* 0x400854e4 0x0 + *fill* 0x400854e4 0x0 + *fill* 0x400854e4 0x0 + *fill* 0x400854e4 0x0 + *fill* 0x400854e4 0x0 + *libesp_hw_support.a:rtc_init.*(.literal.rtc_vddsdio_get_config .text.rtc_vddsdio_get_config) + *libesp_hw_support.a:rtc_init.*(.literal.rtc_vddsdio_set_config .text.rtc_vddsdio_set_config) + *libesp_hw_support.a:rtc_sleep.*(.literal.rtc_sleep_pd .text.rtc_sleep_pd) + *libesp_hw_support.a:rtc_sleep.*(.literal.rtc_sleep_start .text.rtc_sleep_start) + *libesp_hw_support.a:rtc_time.*(.literal .literal.* .text .text.*) + *fill* 0x400854e4 0x0 + .text.rtc_clk_cal_internal + 0x400854e4 0x244 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x25c (size before relaxing) + .text.rtc_clk_cal + 0x40085728 0xc5 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0xcd (size before relaxing) + 0x40085728 rtc_clk_cal + *fill* 0x400857ed 0x3 + .text.rtc_time_get + 0x400857f0 0x9c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0xa4 (size before relaxing) + 0x400857f0 rtc_time_get + .text.rtc_clk_wait_for_slow_cycle + 0x4008588c 0xa7 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x4008588c rtc_clk_wait_for_slow_cycle + *fill* 0x40085933 0x1 + .text.rtc_clk_freq_cal + 0x40085934 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x40085934 rtc_clk_freq_cal + 0x40085934 rtc_clk_freq_to_period + *fill* 0x4008594e 0x2 + .text.enable_timer_group0_for_calibration + 0x40085950 0x5f esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x67 (size before relaxing) + *fill* 0x400859af 0x0 + *fill* 0x400859af 0x0 + *fill* 0x400859af 0x0 + *fill* 0x400859af 0x0 + *libesp_hw_support.a:rtc_wdt.*(.literal .literal.* .text .text.*) + *libesp_libc.a:abort.*(.literal .literal.* .text .text.*) + *fill* 0x400859af 0x1 + .text.abort 0x400859b0 0x8c esp-idf/esp_libc/libesp_libc.a(abort.c.obj) + 0x90 (size before relaxing) + 0x400859b0 abort + *fill* 0x40085a3c 0x0 + *libesp_libc.a:assert.*(.literal .literal.* .text .text.*) + .text.ra_to_str + 0x40085a3c 0x2f esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + *fill* 0x40085a6b 0x1 + .text.__assert_func + 0x40085a6c 0x108 esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + 0x114 (size before relaxing) + 0x40085a6c __assert_func + *fill* 0x40085b74 0x0 + .text.esp_libc_include_assert_impl + 0x40085b74 0x5 esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + 0x40085b74 esp_libc_include_assert_impl + *libesp_libc.a:heap.*(.literal .literal.* .text .text.*) + *fill* 0x40085b79 0x3 + .text.malloc 0x40085b7c 0xc esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + 0x10 (size before relaxing) + 0x40085b7c pvalloc + 0x40085b7c valloc + 0x40085b7c malloc + .text.free 0x40085b88 0xa esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + 0xe (size before relaxing) + 0x40085b88 free + 0x40085b88 cfree + *fill* 0x40085b92 0x2 + .text.calloc 0x40085b94 0x2c esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + 0x30 (size before relaxing) + 0x40085b94 calloc + *fill* 0x40085bc0 0x0 + *fill* 0x40085bc0 0x0 + .text.esp_libc_include_heap_impl + 0x40085bc0 0x5 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + 0x40085bc0 esp_libc_include_heap_impl + *libesp_libc.a:stdatomic.*(.literal .literal.* .text .text.*) + *fill* 0x40085bc5 0x3 + .text.__atomic_fetch_and_8 + 0x40085bc8 0x5f esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + 0x6f (size before relaxing) + 0x40085bc8 __atomic_fetch_and_8 + *fill* 0x40085c27 0x1 + .text.__atomic_fetch_or_8 + 0x40085c28 0x5f esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + 0x6f (size before relaxing) + 0x40085c28 __atomic_fetch_or_8 + *fill* 0x40085c87 0x0 + *fill* 0x40085c87 0x0 + *libesp_mm.a:cache_esp32.*(.literal .literal.* .text .text.*) + *fill* 0x40085c87 0x1 + .text.cache_sync + 0x40085c88 0x22 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + 0x40085c88 cache_sync + *fill* 0x40085caa 0x0 + *libesp_mm.a:esp_cache_msync.*(.literal .literal.* .text .text.*) + *fill* 0x40085caa 0x2 + .text.esp_cache_get_alignment + 0x40085cac 0x42 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + 0x4a (size before relaxing) + 0x40085cac esp_cache_get_alignment + *fill* 0x40085cee 0x0 + *libesp_mm.a:esp_cache_utils.*(.literal .literal.* .text .text.*) + *fill* 0x40085cee 0x2 + .text.esp_cache_suspend_ext_mem_cache + 0x40085cf0 0xf esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + 0x40085cf0 esp_cache_suspend_ext_mem_cache + *fill* 0x40085cff 0x1 + .text.esp_cache_resume_ext_mem_cache + 0x40085d00 0xf esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + 0x40085d00 esp_cache_resume_ext_mem_cache + *fill* 0x40085d0f 0x0 + *fill* 0x40085d0f 0x0 + *libesp_ringbuf.a:ringbuf.*(.literal.prvAcquireItemNoSplit .text.prvAcquireItemNoSplit) + *fill* 0x40085d0f 0x1 + .text.prvAcquireItemNoSplit + 0x40085d10 0xb2 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x40085dc2 0x0 + *libesp_ringbuf.a:ringbuf.*(.literal.prvCheckItemAvail .text.prvCheckItemAvail) + *fill* 0x40085dc2 0x2 + .text.prvCheckItemAvail + 0x40085dc4 0x49 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *libesp_ringbuf.a:ringbuf.*(.literal.prvCheckItemFitsByteBuffer .text.prvCheckItemFitsByteBuffer) + *fill* 0x40085e0d 0x3 + .text.prvCheckItemFitsByteBuffer + 0x40085e10 0x6a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x40085e7a 0x0 + *libesp_ringbuf.a:ringbuf.*(.literal.prvCheckItemFitsDefault .text.prvCheckItemFitsDefault) + *fill* 0x40085e7a 0x2 + .text.prvCheckItemFitsDefault + 0x40085e7c 0xaa esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x40085f26 0x0 + *libesp_ringbuf.a:ringbuf.*(.literal.prvCopyItemAllowSplit .text.prvCopyItemAllowSplit) + *fill* 0x40085f26 0x2 + .text.prvCopyItemAllowSplit + 0x40085f28 0xfe esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x102 (size before relaxing) + *fill* 0x40086026 0x0 + *libesp_ringbuf.a:ringbuf.*(.literal.prvCopyItemByteBuf .text.prvCopyItemByteBuf) + *fill* 0x40086026 0x2 + .text.prvCopyItemByteBuf + 0x40086028 0x89 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x8d (size before relaxing) + *fill* 0x400860b1 0x0 + *libesp_ringbuf.a:ringbuf.*(.literal.prvCopyItemNoSplit .text.prvCopyItemNoSplit) + *fill* 0x400860b1 0x3 + .text.prvCopyItemNoSplit + 0x400860b4 0x24 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x28 (size before relaxing) + *fill* 0x400860d8 0x0 + *libesp_ringbuf.a:ringbuf.*(.literal.prvGetItemByteBuf .text.prvGetItemByteBuf) + .text.prvGetItemByteBuf + 0x400860d8 0xdf esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0xe3 (size before relaxing) + *libesp_ringbuf.a:ringbuf.*(.literal.prvGetItemDefault .text.prvGetItemDefault) + *fill* 0x400861b7 0x1 + .text.prvGetItemDefault + 0x400861b8 0x156 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x16a (size before relaxing) + *fill* 0x4008630e 0x0 + *libesp_ringbuf.a:ringbuf.*(.literal.prvReceiveGenericFromISR .text.prvReceiveGenericFromISR) + *fill* 0x4008630e 0x2 + .text.prvReceiveGenericFromISR + 0x40086310 0xa7 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0xae (size before relaxing) + *fill* 0x400863b7 0x0 + *libesp_ringbuf.a:ringbuf.*(.literal.prvReturnItemByteBuf .text.prvReturnItemByteBuf) + *fill* 0x400863b7 0x1 + .text.prvReturnItemByteBuf + 0x400863b8 0x4c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x4f (size before relaxing) + *fill* 0x40086404 0x0 + *libesp_ringbuf.a:ringbuf.*(.literal.prvReturnItemDefault .text.prvReturnItemDefault) + *fill* 0x40086404 0x0 + .text.prvReturnItemDefault + 0x40086404 0x148 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x150 (size before relaxing) + *fill* 0x4008654c 0x0 + *libesp_ringbuf.a:ringbuf.*(.literal.prvSendItemDoneNoSplit .text.prvSendItemDoneNoSplit) + .text.prvSendItemDoneNoSplit + 0x4008654c 0x123 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x127 (size before relaxing) + *libesp_ringbuf.a:ringbuf.*(.literal.vRingbufferReturnItemFromISR .text.vRingbufferReturnItemFromISR) + *fill* 0x4008666f 0x1 + .text.vRingbufferReturnItemFromISR + 0x40086670 0x5b esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x66 (size before relaxing) + 0x40086670 vRingbufferReturnItemFromISR + *fill* 0x400866cb 0x0 + *libesp_ringbuf.a:ringbuf.*(.literal.xRingbufferReceiveFromISR .text.xRingbufferReceiveFromISR) + *fill* 0x400866cb 0x1 + .text.xRingbufferReceiveFromISR + 0x400866cc 0x54 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x58 (size before relaxing) + 0x400866cc xRingbufferReceiveFromISR + *fill* 0x40086720 0x0 + *libesp_ringbuf.a:ringbuf.*(.literal.xRingbufferReceiveSplitFromISR .text.xRingbufferReceiveSplitFromISR) + *libesp_ringbuf.a:ringbuf.*(.literal.xRingbufferReceiveUpToFromISR .text.xRingbufferReceiveUpToFromISR) + *libesp_ringbuf.a:ringbuf.*(.literal.xRingbufferSendFromISR .text.xRingbufferSendFromISR) + .text.xRingbufferSendFromISR + 0x40086720 0xd8 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0xe8 (size before relaxing) + 0x40086720 xRingbufferSendFromISR + *libesp_rom.a:esp_rom_print.*(.literal .literal.* .text .text.*) + *libesp_rom.a:esp_rom_spiflash.*(.literal .literal.* .text .text.*) + *libesp_rom.a:esp_rom_sys.*(.literal .literal.* .text .text.*) + .text.esp_rom_set_cpu_ticks_per_us + 0x400867f8 0xf esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + 0x400867f8 esp_rom_set_cpu_ticks_per_us + *libesp_system.a:esp_err.*(.literal .literal.* .text .text.*) + *fill* 0x40086807 0x1 + .text.esp_error_check_failed_print + 0x40086808 0x47 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x4f (size before relaxing) + *fill* 0x4008684f 0x1 + .text._esp_error_check_failed + 0x40086850 0x2a esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x32 (size before relaxing) + 0x40086850 _esp_error_check_failed + *fill* 0x4008687a 0x0 + *fill* 0x4008687a 0x0 + *libesp_system.a:esp_system_chip.*(.literal.esp_restart_noos_dig .text.esp_restart_noos_dig) + *fill* 0x4008687a 0x2 + .text.esp_restart_noos_dig + 0x4008687c 0x63 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0x6f (size before relaxing) + 0x4008687c esp_restart_noos_dig + *fill* 0x400868df 0x0 + *libesp_system.a:esp_system_chip.*(.literal.esp_system_abort .text.esp_system_abort) + *fill* 0x400868df 0x1 + .text.esp_system_abort + 0x400868e0 0x8 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0xc (size before relaxing) + 0x400868e0 esp_system_abort + *fill* 0x400868e8 0x0 + *libesp_system.a:freertos_hooks.*(.literal.esp_vApplicationTickHook .text.esp_vApplicationTickHook) + .text.esp_vApplicationTickHook + 0x400868e8 0x27 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x400868e8 esp_vApplicationTickHook + *libesp_system.a:image_process.*(.literal .literal.* .text .text.*) + *libesp_system.a:panic.*(.literal.panic_abort .text.panic_abort) + *fill* 0x4008690f 0x1 + .text.panic_abort + 0x40086910 0x16 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x40086910 panic_abort + *fill* 0x40086926 0x0 + *libesp_system.a:reset_reason.*(.literal.esp_reset_reason_set_hint .text.esp_reset_reason_set_hint) + *libesp_system.a:system_internal.*(.literal.esp_restart_noos .text.esp_restart_noos) + *fill* 0x40086926 0x2 + .text.esp_restart_noos + 0x40086928 0x130 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + 0x178 (size before relaxing) + 0x40086928 esp_restart_noos + *fill* 0x40086a58 0x0 + *libesp_system.a:system_internal.*(.literal.esp_system_reset_modules_on_exit .text.esp_system_reset_modules_on_exit) + .text.esp_system_reset_modules_on_exit + 0x40086a58 0xa1 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + 0xb1 (size before relaxing) + 0x40086a58 esp_system_reset_modules_on_exit + *libesp_system.a:system_time.*(.literal.esp_system_get_time .text.esp_system_get_time) + *libesp_system.a:system_time.*(.literal.esp_system_get_time_resolution .text.esp_system_get_time_resolution) + *libesp_system.a:ubsan.*(.literal .literal.* .text .text.*) + *fill* 0x40086af9 0x3 + .text.__ubsan_include + 0x40086afc 0x5 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + 0x40086afc __ubsan_include + *libesp_wifi.a:esp_adapter.*(.literal.coex_pti_get_wrapper .text.coex_pti_get_wrapper) + *libesp_wifi.a:wifi_netif.*(.literal.wifi_sta_receive .text.wifi_sta_receive) + *libesp_wifi.a:wifi_netif.*(.literal.wifi_transmit_wrap .text.wifi_transmit_wrap) + *libfreertos.a:event_groups.*(.literal.xEventGroupGetBitsFromISR .text.xEventGroupGetBitsFromISR) + *libfreertos.a:list.*(.literal.uxListRemove .text.uxListRemove) + *fill* 0x40086b01 0x3 + .text.uxListRemove + 0x40086b04 0x52 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x40086b04 uxListRemove + *libfreertos.a:list.*(.literal.vListInsertEnd .text.vListInsertEnd) + *fill* 0x40086b56 0x2 + .text.vListInsertEnd + 0x40086b58 0x39 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x40086b58 vListInsertEnd + *libfreertos.a:port.*(.literal.vPortAssertIfInISR .text.vPortAssertIfInISR) + *libfreertos.a:port.*(.literal.vPortExitCritical .text.vPortExitCritical) + *fill* 0x40086b91 0x3 + .text.vPortExitCritical + 0x40086b94 0x9b esp-idf/freertos/libfreertos.a(port.c.obj) + 0x9e (size before relaxing) + 0x40086b94 vPortExitCritical + *fill* 0x40086c2f 0x0 + *libfreertos.a:port.*(.literal.vPortSetStackWatchpoint .text.vPortSetStackWatchpoint) + *libfreertos.a:port.*(.literal.vPortYieldOtherCore .text.vPortYieldOtherCore) + *fill* 0x40086c2f 0x1 + .text.vPortYieldOtherCore + 0x40086c30 0xa esp-idf/freertos/libfreertos.a(port.c.obj) + 0xe (size before relaxing) + 0x40086c30 vPortYieldOtherCore + *fill* 0x40086c3a 0x0 + *libfreertos.a:port.*(.literal.xPortEnterCriticalTimeout .text.xPortEnterCriticalTimeout) + *fill* 0x40086c3a 0x2 + .text.xPortEnterCriticalTimeout + 0x40086c3c 0x15b esp-idf/freertos/libfreertos.a(port.c.obj) + 0x163 (size before relaxing) + 0x40086c3c xPortEnterCriticalTimeout + *fill* 0x40086d97 0x0 + *libfreertos.a:port.*(.literal.xPortInIsrContext .text.xPortInIsrContext) + *fill* 0x40086d97 0x1 + .text.xPortInIsrContext + 0x40086d98 0x22 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x40086d98 xPortInIsrContext + *fill* 0x40086dba 0x0 + *libfreertos.a:port.*(.literal.xPortInterruptedFromISRContext .text.xPortInterruptedFromISRContext) + *fill* 0x40086dba 0x2 + .text.xPortInterruptedFromISRContext + 0x40086dbc 0x18 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x40086dbc xPortInterruptedFromISRContext + *fill* 0x40086dd4 0x0 + *libfreertos.a:port.*(.literal.xPortStartScheduler .text.xPortStartScheduler) + .text.xPortStartScheduler + 0x40086dd4 0x2a esp-idf/freertos/libfreertos.a(port.c.obj) + 0x36 (size before relaxing) + 0x40086dd4 xPortStartScheduler + *libfreertos.a:port_systick.*(.literal .literal.* .text .text.*) + *fill* 0x40086dfe 0x2 + .text.vPortSetupTimer + 0x40086e00 0xb esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x11 (size before relaxing) + 0x40086e00 vPortSetupTimer + *fill* 0x40086e0b 0x1 + .text.xPortSysTickHandler + 0x40086e0c 0x27 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x2f (size before relaxing) + 0x40086e0c xPortSysTickHandler + *fill* 0x40086e33 0x0 + *fill* 0x40086e33 0x0 + *libfreertos.a:portasm.*(.literal .literal.* .text .text.*) + *fill* 0x40086e33 0x1 + .text 0x40086e34 0x25a esp-idf/freertos/libfreertos.a(portasm.S.obj) + 0x26a (size before relaxing) + 0x40086e34 _frxt_setup_switch + 0x40086e4c _frxt_int_enter + 0x40086e90 _frxt_int_exit + 0x40086ee0 _frxt_timer_int + 0x40086f08 _frxt_tick_timer_init + 0x40086f24 _frxt_dispatch + 0x40086f88 vPortYield + 0x40086fec vPortYieldFromInt + 0x40087020 _frxt_task_coproc_state + 0x40087060 _frxt_coproc_exc_hook + *fill* 0x4008708e 0x0 + *libfreertos.a:queue.*(.literal.prvCopyDataFromQueue .text.prvCopyDataFromQueue) + *fill* 0x4008708e 0x2 + .text.prvCopyDataFromQueue + 0x40087090 0x23 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x400870b3 0x0 + *libfreertos.a:queue.*(.literal.prvCopyDataToQueue .text.prvCopyDataToQueue) + *fill* 0x400870b3 0x1 + .text.prvCopyDataToQueue + 0x400870b4 0x89 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x4008713d 0x0 + *libfreertos.a:queue.*(.literal.prvNotifyQueueSetContainer .text.prvNotifyQueueSetContainer) + *fill* 0x4008713d 0x3 + .text.prvNotifyQueueSetContainer + 0x40087140 0xa8 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xbc (size before relaxing) + *fill* 0x400871e8 0x0 + *libfreertos.a:queue.*(.literal.uxQueueMessagesWaitingFromISR .text.uxQueueMessagesWaitingFromISR) + *libfreertos.a:queue.*(.literal.xQueueGenericSendFromISR .text.xQueueGenericSendFromISR) + .text.xQueueGenericSendFromISR + 0x400871e8 0xde esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xee (size before relaxing) + 0x400871e8 xQueueGenericSendFromISR + *libfreertos.a:queue.*(.literal.xQueueGetMutexHolderFromISR .text.xQueueGetMutexHolderFromISR) + *libfreertos.a:queue.*(.literal.xQueueGiveFromISR .text.xQueueGiveFromISR) + *fill* 0x400872c6 0x2 + .text.xQueueGiveFromISR + 0x400872c8 0xc2 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xca (size before relaxing) + 0x400872c8 xQueueGiveFromISR + *fill* 0x4008738a 0x0 + *libfreertos.a:queue.*(.literal.xQueueIsQueueEmptyFromISR .text.xQueueIsQueueEmptyFromISR) + *libfreertos.a:queue.*(.literal.xQueueIsQueueFullFromISR .text.xQueueIsQueueFullFromISR) + *libfreertos.a:queue.*(.literal.xQueuePeekFromISR .text.xQueuePeekFromISR) + *libfreertos.a:queue.*(.literal.xQueueReceiveFromISR .text.xQueueReceiveFromISR) + *fill* 0x4008738a 0x2 + .text.xQueueReceiveFromISR + 0x4008738c 0x86 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x92 (size before relaxing) + 0x4008738c xQueueReceiveFromISR + *fill* 0x40087412 0x0 + *libfreertos.a:queue.*(.literal.xQueueSelectFromSetFromISR .text.xQueueSelectFromSetFromISR) + *libfreertos.a:stream_buffer.*(.literal.prvBytesInBuffer .text.prvBytesInBuffer) + *libfreertos.a:stream_buffer.*(.literal.prvReadMessageFromBuffer .text.prvReadMessageFromBuffer) + *libfreertos.a:stream_buffer.*(.literal.prvWriteMessageToBuffer .text.prvWriteMessageToBuffer) + *libfreertos.a:stream_buffer.*(.literal.xStreamBufferReceiveCompletedFromISR .text.xStreamBufferReceiveCompletedFromISR) + *libfreertos.a:stream_buffer.*(.literal.xStreamBufferReceiveFromISR .text.xStreamBufferReceiveFromISR) + *libfreertos.a:stream_buffer.*(.literal.xStreamBufferSendCompletedFromISR .text.xStreamBufferSendCompletedFromISR) + *libfreertos.a:stream_buffer.*(.literal.xStreamBufferSendFromISR .text.xStreamBufferSendFromISR) + *libfreertos.a:tasks.*(.literal.prvCheckTaskCanBeScheduledSMP .text.prvCheckTaskCanBeScheduledSMP) + *fill* 0x40087412 0x2 + .text.prvCheckTaskCanBeScheduledSMP + 0x40087414 0x46 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x4008745a 0x0 + *libfreertos.a:tasks.*(.literal.prvIsYieldRequiredSMP .text.prvIsYieldRequiredSMP) + *fill* 0x4008745a 0x2 + .text.prvIsYieldRequiredSMP + 0x4008745c 0xa5 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x40087501 0x0 + *libfreertos.a:tasks.*(.literal.prvResetNextTaskUnblockTime .text.prvResetNextTaskUnblockTime) + *fill* 0x40087501 0x3 + .text.prvResetNextTaskUnblockTime + 0x40087504 0x3c esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x40087540 0x0 + *libfreertos.a:tasks.*(.literal.prvSelectHighestPriorityTaskSMP .text.prvSelectHighestPriorityTaskSMP) + .text.prvSelectHighestPriorityTaskSMP + 0x40087540 0x1d3 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x1d6 (size before relaxing) + *libfreertos.a:tasks.*(.literal.prvTaskIsTaskSuspended .text.prvTaskIsTaskSuspended) + *libfreertos.a:tasks.*(.literal.uxTaskPriorityGetFromISR .text.uxTaskPriorityGetFromISR) + *libfreertos.a:tasks.*(.literal.vTaskGenericNotifyGiveFromISR .text.vTaskGenericNotifyGiveFromISR) + *fill* 0x40087713 0x1 + .text.vTaskGenericNotifyGiveFromISR + 0x40087714 0x198 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x1ac (size before relaxing) + 0x40087714 vTaskGenericNotifyGiveFromISR + *fill* 0x400878ac 0x0 + *libfreertos.a:tasks.*(.literal.vTaskGetSnapshot .text.vTaskGetSnapshot) + .text.vTaskGetSnapshot + 0x400878ac 0x25 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x29 (size before relaxing) + 0x400878ac vTaskGetSnapshot + *libfreertos.a:tasks.*(.literal.vTaskSwitchContext .text.vTaskSwitchContext) + *fill* 0x400878d1 0x3 + .text.vTaskSwitchContext + 0x400878d4 0xa4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xbb (size before relaxing) + 0x400878d4 vTaskSwitchContext + *fill* 0x40087978 0x0 + *libfreertos.a:tasks.*(.literal.xTaskGenericNotifyFromISR .text.xTaskGenericNotifyFromISR) + *libfreertos.a:tasks.*(.literal.xTaskGetSchedulerState .text.xTaskGetSchedulerState) + *fill* 0x40087978 0x0 + .text.xTaskGetSchedulerState + 0x40087978 0x37 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x40087978 xTaskGetSchedulerState + *fill* 0x400879af 0x0 + *libfreertos.a:tasks.*(.literal.xTaskGetTickCount .text.xTaskGetTickCount) + *fill* 0x400879af 0x1 + .text.xTaskGetTickCount + 0x400879b0 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x400879b0 xTaskGetTickCount + *fill* 0x400879bd 0x0 + *libfreertos.a:tasks.*(.literal.xTaskGetTickCountFromISR .text.xTaskGetTickCountFromISR) + *fill* 0x400879bd 0x3 + .text.xTaskGetTickCountFromISR + 0x400879c0 0x1e esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x22 (size before relaxing) + 0x400879c0 xTaskGetTickCountFromISR + *fill* 0x400879de 0x0 + *libfreertos.a:tasks.*(.literal.xTaskIncrementTick .text.xTaskIncrementTick) + *fill* 0x400879de 0x2 + .text.xTaskIncrementTick + 0x400879e0 0x2ca esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x2e1 (size before relaxing) + 0x400879e0 xTaskIncrementTick + *fill* 0x40087caa 0x0 + *libfreertos.a:tasks.*(.literal.xTaskIncrementTickOtherCores .text.xTaskIncrementTickOtherCores) + *fill* 0x40087caa 0x2 + .text.xTaskIncrementTickOtherCores + 0x40087cac 0x80 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x88 (size before relaxing) + 0x40087cac xTaskIncrementTickOtherCores + *fill* 0x40087d2c 0x0 + *libfreertos.a:tasks.*(.literal.xTaskRemoveFromEventList .text.xTaskRemoveFromEventList) + .text.xTaskRemoveFromEventList + 0x40087d2c 0x1fc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x213 (size before relaxing) + 0x40087d2c xTaskRemoveFromEventList + *libfreertos.a:tasks.*(.literal.xTaskResumeFromISR .text.xTaskResumeFromISR) + *libfreertos.a:timers.*(.literal.xTimerGenericCommand .text.xTimerGenericCommand) + *libfreertos.a:timers.*(.literal.xTimerPendFunctionCallFromISR .text.xTimerPendFunctionCallFromISR) + *libgcc.a:lib2funcs.*(.literal .literal.* .text .text.*) + *libgcov.a:(.literal .literal.* .text .text.*) + *libhal.a:cache_hal_esp32.*(.literal .literal.* .text .text.*) + *fill* 0x40087f28 0x0 + .text.cache_hal_suspend + 0x40087f28 0xdc esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0xe8 (size before relaxing) + 0x40087f28 cache_hal_suspend + .text.cache_hal_resume + 0x40088004 0x7e esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0x8e (size before relaxing) + 0x40088004 cache_hal_resume + *fill* 0x40088082 0x2 + .text.cache_hal_is_cache_enabled + 0x40088084 0x25 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0x29 (size before relaxing) + 0x40088084 cache_hal_is_cache_enabled + *fill* 0x400880a9 0x3 + .text.cache_hal_get_cache_line_size + 0x400880ac 0x29 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0x400880ac cache_hal_get_cache_line_size + *fill* 0x400880d5 0x3 + .text.cache_hal_init + 0x400880d8 0x5 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0x400880d8 cache_hal_init + *fill* 0x400880dd 0x0 + *fill* 0x400880dd 0x0 + *fill* 0x400880dd 0x0 + *libhal.a:mmu_hal.*(.literal .literal.* .text .text.*) + *fill* 0x400880dd 0x3 + .text.mmu_ll_check_entry_valid + 0x400880e0 0x3f esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x43 (size before relaxing) + *fill* 0x4008811f 0x1 + .text.mmu_ll_get_entry_target + 0x40088120 0x48 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x50 (size before relaxing) + .text.mmu_ll_entry_id_to_paddr_base + 0x40088168 0x41 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x49 (size before relaxing) + *fill* 0x400881a9 0x3 + .text.mmu_hal_ctx_init + 0x400881ac 0xe esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x400881ac mmu_hal_ctx_init + *fill* 0x400881ba 0x2 + .text.mmu_hal_check_valid_ext_vaddr_region + 0x400881bc 0xa2 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x400881bc mmu_hal_check_valid_ext_vaddr_region + *fill* 0x4008825e 0x2 + .text.mmu_hal_map_region + 0x40088260 0x175 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x189 (size before relaxing) + 0x40088260 mmu_hal_map_region + *fill* 0x400883d5 0x3 + .text.mmu_hal_unmap_region + 0x400883d8 0x13f esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x14b (size before relaxing) + 0x400883d8 mmu_hal_unmap_region + *fill* 0x40088517 0x1 + .text.mmu_hal_vaddr_to_paddr + 0x40088518 0xd2 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0xe6 (size before relaxing) + 0x40088518 mmu_hal_vaddr_to_paddr + *fill* 0x400885ea 0x0 + *fill* 0x400885ea 0x0 + *fill* 0x400885ea 0x0 + *fill* 0x400885ea 0x2 + .text.mmu_hal_pages_to_bytes + 0x400885ec 0x8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x400885ec mmu_hal_pages_to_bytes + *fill* 0x400885f4 0x0 + *fill* 0x400885f4 0x0 + *fill* 0x400885f4 0x0 + *libheap.a:multi_heap.*(.literal.assert_valid_block .text.assert_valid_block) + .text.assert_valid_block + 0x400885f4 0x28 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x30 (size before relaxing) + *fill* 0x4008861c 0x0 + *libheap.a:multi_heap.*(.literal.multi_heap_aligned_alloc_impl .text.multi_heap_aligned_alloc_impl) + *libheap.a:multi_heap.*(.literal.multi_heap_aligned_alloc_impl_offs .text.multi_heap_aligned_alloc_impl_offs) + .text.multi_heap_aligned_alloc_impl_offs + 0x4008861c 0x5e esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x72 (size before relaxing) + 0x4008861c multi_heap_aligned_alloc_impl_offs + *libheap.a:multi_heap.*(.literal.multi_heap_aligned_alloc_offs .text.multi_heap_aligned_alloc_offs) + *fill* 0x4008867a 0x2 + .text.multi_heap_aligned_alloc_offs + 0x4008867c 0x15 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x4008867c multi_heap_aligned_alloc_offs + *fill* 0x40088691 0x0 + *libheap.a:multi_heap.*(.literal.multi_heap_free_impl .text.multi_heap_free_impl) + *fill* 0x40088691 0x3 + .text.multi_heap_free_impl + 0x40088694 0x46 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x56 (size before relaxing) + 0x40088694 multi_heap_free + 0x40088694 multi_heap_free_impl + 0x40088694 multi_heap_aligned_free + *fill* 0x400886da 0x0 + *libheap.a:multi_heap.*(.literal.multi_heap_get_allocated_size_impl .text.multi_heap_get_allocated_size_impl) + *fill* 0x400886da 0x2 + .text.multi_heap_get_allocated_size_impl + 0x400886dc 0xc esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x10 (size before relaxing) + 0x400886dc multi_heap_get_allocated_size + 0x400886dc multi_heap_get_allocated_size_impl + *fill* 0x400886e8 0x0 + *libheap.a:multi_heap.*(.literal.multi_heap_get_block_address_impl .text.multi_heap_get_block_address_impl) + *libheap.a:multi_heap.*(.literal.multi_heap_get_first_block .text.multi_heap_get_first_block) + *libheap.a:multi_heap.*(.literal.multi_heap_get_full_block_size .text.multi_heap_get_full_block_size) + *libheap.a:multi_heap.*(.literal.multi_heap_get_next_block .text.multi_heap_get_next_block) + *libheap.a:multi_heap.*(.literal.multi_heap_internal_lock .text.multi_heap_internal_lock) + .text.multi_heap_internal_lock + 0x400886e8 0x24 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x28 (size before relaxing) + 0x400886e8 multi_heap_internal_lock + *libheap.a:multi_heap.*(.literal.multi_heap_internal_unlock .text.multi_heap_internal_unlock) + .text.multi_heap_internal_unlock + 0x4008870c 0x1f esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x26 (size before relaxing) + 0x4008870c multi_heap_internal_unlock + *libheap.a:multi_heap.*(.literal.multi_heap_is_free .text.multi_heap_is_free) + *libheap.a:multi_heap.*(.literal.multi_heap_malloc_impl .text.multi_heap_malloc_impl) + *fill* 0x4008872b 0x1 + .text.multi_heap_malloc_impl + 0x4008872c 0x4e esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x62 (size before relaxing) + 0x4008872c multi_heap_malloc_impl + 0x4008872c multi_heap_malloc + *fill* 0x4008877a 0x0 + *libheap.a:multi_heap.*(.literal.multi_heap_realloc_impl .text.multi_heap_realloc_impl) + *fill* 0x4008877a 0x2 + .text.multi_heap_realloc_impl + 0x4008877c 0x6e esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x86 (size before relaxing) + 0x4008877c multi_heap_realloc_impl + 0x4008877c multi_heap_realloc + *fill* 0x400887ea 0x0 + *libheap.a:multi_heap.*(.literal.multi_heap_set_lock .text.multi_heap_set_lock) + *fill* 0x400887ea 0x2 + .text.multi_heap_set_lock + 0x400887ec 0x7 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x400887ec multi_heap_set_lock + *libheap.a:tlsf.*(.literal.tlsf_alloc_overhead .text.tlsf_alloc_overhead) + *fill* 0x400887f3 0x1 + .text.tlsf_alloc_overhead + 0x400887f4 0x7 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x400887f4 tlsf_alloc_overhead + *libheap.a:tlsf.*(.literal.tlsf_block_size .text.tlsf_block_size) + *fill* 0x400887fb 0x1 + .text.tlsf_block_size + 0x400887fc 0x12 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x400887fc tlsf_block_size + *libheap.a:tlsf.*(.literal.tlsf_free .text.tlsf_free) + *fill* 0x4008880e 0x2 + .text.tlsf_free + 0x40088810 0x404 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x418 (size before relaxing) + 0x40088810 tlsf_free + *fill* 0x40088c14 0x0 + *libheap.a:tlsf.*(.literal.tlsf_get_pool .text.tlsf_get_pool) + .text.tlsf_get_pool + 0x40088c14 0xc esp-idf/heap/libheap.a(tlsf.c.obj) + 0x10 (size before relaxing) + 0x40088c14 tlsf_get_pool + *libheap.a:tlsf.*(.literal.tlsf_malloc .text.tlsf_malloc) + .text.tlsf_malloc + 0x40088c20 0x3f6 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x40e (size before relaxing) + 0x40088c20 tlsf_malloc + *libheap.a:tlsf.*(.literal.tlsf_memalign .text.tlsf_memalign) + *libheap.a:tlsf.*(.literal.tlsf_memalign_offs .text.tlsf_memalign_offs) + *fill* 0x40089016 0x2 + .text.tlsf_memalign_offs + 0x40089018 0x6a3 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x6c7 (size before relaxing) + 0x40089018 tlsf_memalign_offs + *fill* 0x400896bb 0x0 + *libheap.a:tlsf.*(.literal.tlsf_realloc .text.tlsf_realloc) + *fill* 0x400896bb 0x1 + .text.tlsf_realloc + 0x400896bc 0x57a esp-idf/heap/libheap.a(tlsf.c.obj) + 0x59e (size before relaxing) + 0x400896bc tlsf_realloc + *fill* 0x40089c36 0x0 + *libheap.a:tlsf.*(.literal.tlsf_size .text.tlsf_size) + *fill* 0x40089c36 0x2 + .text.tlsf_size + 0x40089c38 0xa esp-idf/heap/libheap.a(tlsf.c.obj) + 0x40089c38 tlsf_size + *liblog.a:log.*(.literal .literal.* .text .text.*) + *fill* 0x40089c42 0x2 + .text.esp_log 0x40089c44 0x40 esp-idf/log/liblog.a(log.c.obj) + 0x40089c44 esp_log + *fill* 0x40089c84 0x0 + *liblog.a:log_format_text.*(.literal .literal.* .text .text.*) + *liblog.a:log_lock.*(.literal .literal.* .text .text.*) + .text.esp_log_impl_lock + 0x40089c84 0x27 esp-idf/log/liblog.a(log_lock.c.obj) + 0x32 (size before relaxing) + 0x40089c84 esp_log_impl_lock + *fill* 0x40089cab 0x1 + .text.esp_log_impl_lock_timeout + 0x40089cac 0x38 esp-idf/log/liblog.a(log_lock.c.obj) + 0x40 (size before relaxing) + 0x40089cac esp_log_impl_lock_timeout + .text.esp_log_impl_unlock + 0x40089ce4 0x1b esp-idf/log/liblog.a(log_lock.c.obj) + 0x1f (size before relaxing) + 0x40089ce4 esp_log_impl_unlock + *fill* 0x40089cff 0x0 + *liblog.a:log_print.*(.literal .literal.* .text .text.*) + *liblog.a:log_timestamp.*(.literal.esp_log_early_timestamp .text.esp_log_early_timestamp) + *fill* 0x40089cff 0x1 + .text.esp_log_early_timestamp + 0x40089d00 0x1c esp-idf/log/liblog.a(log_timestamp.c.obj) + 0x40089d00 esp_log_early_timestamp + *fill* 0x40089d1c 0x0 + *liblog.a:log_timestamp.*(.literal.esp_log_timestamp .text.esp_log_timestamp) + .text.esp_log_timestamp + 0x40089d1c 0x48 esp-idf/log/liblog.a(log_timestamp.c.obj) + 0x57 (size before relaxing) + 0x40089d1c esp_log_timestamp + *liblog.a:log_timestamp_common.*(.literal .literal.* .text .text.*) + *liblog.a:log_write.*(.literal.esp_log_write .text.esp_log_write) + *liblog.a:log_write.*(.literal.esp_log_writev .text.esp_log_writev) + *liblog.a:tag_log_level.*(.literal.esp_log_level_get_timeout .text.esp_log_level_get_timeout) + *fill* 0x40089d64 0x0 + .text.esp_log_level_get_timeout + 0x40089d64 0x11 esp-idf/log/liblog.a(tag_log_level.c.obj) + 0x40089d64 esp_log_level_get_timeout + *fill* 0x40089d75 0x0 + *liblog.a:util.*(.literal .literal.* .text .text.*) + *fill* 0x40089d75 0x3 + .text.esp_log_util_set_cache_enabled_cb + 0x40089d78 0xa esp-idf/log/liblog.a(util.c.obj) + 0x40089d78 esp_log_util_set_cache_enabled_cb + *fill* 0x40089d82 0x0 + *libnet80211.a:(.wifi0iram .wifi0iram.*) + *libnet80211.a:(.wifirxiram .wifirxiram.*) + *libnet80211.a:(.wifislprxiram .wifislprxiram.*) + *libpp.a:(.wifi0iram .wifi0iram.*) + *libpp.a:(.wifiorslpiram .wifiorslpiram.*) + *libpp.a:(.wifirxiram .wifirxiram.*) + *libpp.a:(.wifislprxiram .wifislprxiram.*) + *librtc.a:(.literal .literal.* .text .text.*) + *libsoc.a:lldesc.*(.literal .literal.* .text .text.*) + *libspi_flash.a:esp_flash_api.*(.literal.check_chip_pointer_default .text.check_chip_pointer_default) + *fill* 0x40089d82 0x2 + .text.check_chip_pointer_default + 0x40089d84 0x22 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x40089da6 0x0 + *libspi_flash.a:esp_flash_api.*(.literal.detect_spi_flash_chip .text.detect_spi_flash_chip) + *fill* 0x40089da6 0x2 + .text.detect_spi_flash_chip + 0x40089da8 0x8a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x92 (size before relaxing) + *fill* 0x40089e32 0x0 + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_chip_driver_initialized .text.esp_flash_chip_driver_initialized) + *fill* 0x40089e32 0x2 + .text.esp_flash_chip_driver_initialized + 0x40089e34 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x40089e34 esp_flash_chip_driver_initialized + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_erase_chip .text.esp_flash_erase_chip) + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_erase_region .text.esp_flash_erase_region) + .text.esp_flash_erase_region + 0x40089e44 0x23e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x242 (size before relaxing) + 0x40089e44 esp_flash_erase_region + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_get_chip_write_protect .text.esp_flash_get_chip_write_protect) + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_get_io_mode .text.esp_flash_get_io_mode) + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_get_physical_size .text.esp_flash_get_physical_size) + *fill* 0x4008a082 0x2 + .text.esp_flash_get_physical_size + 0x4008a084 0x6e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x4008a084 esp_flash_get_physical_size + *fill* 0x4008a0f2 0x0 + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_get_protected_region .text.esp_flash_get_protected_region) + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_get_size .text.esp_flash_get_size) + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_init .text.esp_flash_init) + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_init_main .text.esp_flash_init_main) + *fill* 0x4008a0f2 0x2 + .text.esp_flash_init_main + 0x4008a0f4 0x16e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x18e (size before relaxing) + 0x4008a0f4 esp_flash_init_main + *fill* 0x4008a262 0x0 + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_is_quad_mode .text.esp_flash_is_quad_mode) + *fill* 0x4008a262 0x2 + .text.esp_flash_is_quad_mode + 0x4008a264 0x1d esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x4008a264 esp_flash_is_quad_mode + *fill* 0x4008a281 0x0 + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_read .text.esp_flash_read) + *fill* 0x4008a281 0x3 + .text.esp_flash_read + 0x4008a284 0x132 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x4008a284 esp_flash_read + *fill* 0x4008a3b6 0x0 + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_read_encrypted .text.esp_flash_read_encrypted) + *fill* 0x4008a3b6 0x2 + .text.esp_flash_read_encrypted + 0x4008a3b8 0x62 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x66 (size before relaxing) + 0x4008a3b8 esp_flash_read_encrypted + *fill* 0x4008a41a 0x0 + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_set_chip_write_protect .text.esp_flash_set_chip_write_protect) + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_set_io_mode .text.esp_flash_set_io_mode) + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_set_protected_region .text.esp_flash_set_protected_region) + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_write .text.esp_flash_write) + *fill* 0x4008a41a 0x2 + .text.esp_flash_write + 0x4008a41c 0x19a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x19e (size before relaxing) + 0x4008a41c esp_flash_write + *fill* 0x4008a5b6 0x0 + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_write_encrypted .text.esp_flash_write_encrypted) + *fill* 0x4008a5b6 0x2 + .text.esp_flash_write_encrypted + 0x4008a5b8 0x296 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x29e (size before relaxing) + 0x4008a5b8 esp_flash_write_encrypted + *fill* 0x4008a84e 0x0 + *libspi_flash.a:esp_flash_api.*(.literal.flash_end_flush_cache .text.flash_end_flush_cache) + *fill* 0x4008a84e 0x2 + .text.flash_end_flush_cache + 0x4008a850 0x46 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x4008a896 0x0 + *libspi_flash.a:esp_flash_api.*(.literal.read_unique_id .text.read_unique_id) + *libspi_flash.a:esp_flash_api.*(.literal.spiflash_end_default .text.spiflash_end_default) + *fill* 0x4008a896 0x2 + .text.spiflash_end_default + 0x4008a898 0x1a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *libspi_flash.a:esp_flash_api.*(.literal.spiflash_start_core .text.spiflash_start_core) + *fill* 0x4008a8b2 0x2 + .text.spiflash_start_core + 0x4008a8b4 0x4b esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *libspi_flash.a:esp_flash_api.*(.literal.spiflash_start_default .text.spiflash_start_default) + *fill* 0x4008a8ff 0x1 + .text.spiflash_start_default + 0x4008a900 0x11 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x4008a911 0x0 + *libspi_flash.a:flash_brownout_hook.*(.literal .literal.* .text .text.*) + *fill* 0x4008a911 0x3 + .text.spi_flash_needs_reset_check + 0x4008a914 0x16 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0x4008a914 spi_flash_needs_reset_check + *fill* 0x4008a92a 0x2 + .text.spi_flash_set_erasing_flag + 0x4008a92c 0xb esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0x4008a92c spi_flash_set_erasing_flag + *fill* 0x4008a937 0x1 + .text.spi_flash_brownout_need_reset + 0x4008a938 0x21 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0x4008a938 spi_flash_brownout_need_reset + *fill* 0x4008a959 0x0 + *fill* 0x4008a959 0x0 + *fill* 0x4008a959 0x0 + *libspi_flash.a:memspi_host_driver.*(.literal .literal.* .text .text.*) + *fill* 0x4008a959 0x3 + .text.memspi_host_read_status_hs + 0x4008a95c 0x37 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x4008a95c memspi_host_read_status_hs + *fill* 0x4008a993 0x1 + .text.memspi_host_read_id_hs + 0x4008a994 0x82 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x86 (size before relaxing) + 0x4008a994 memspi_host_read_id_hs + *fill* 0x4008aa16 0x2 + .text.memspi_host_flush_cache + 0x4008aa18 0x19 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x4008aa18 memspi_host_flush_cache + *fill* 0x4008aa31 0x3 + .text.memspi_host_init_pointers + 0x4008aa34 0x4e esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x4008aa34 memspi_host_init_pointers + *fill* 0x4008aa82 0x0 + *fill* 0x4008aa82 0x2 + .text.memspi_host_write_data_slicer + 0x4008aa84 0x33 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x4008aa84 memspi_host_write_data_slicer + *fill* 0x4008aab7 0x1 + .text.memspi_host_read_data_slicer + 0x4008aab8 0x2a esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x4008aab8 memspi_host_read_data_slicer + *fill* 0x4008aae2 0x0 + *fill* 0x4008aae2 0x0 + *fill* 0x4008aae2 0x0 + *libspi_flash.a:spi_flash_chip_boya.*(.literal .literal.* .text .text.*) + *libspi_flash.a:spi_flash_chip_gd.*(.literal .literal.* .text .text.*) + *fill* 0x4008aae2 0x2 + .text.spi_flash_chip_gd_detect_size + 0x4008aae4 0x35 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x4008aae4 spi_flash_chip_gd_detect_size + *fill* 0x4008ab19 0x3 + .text.spi_flash_chip_gd_probe + 0x4008ab1c 0x4d esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x4008ab1c spi_flash_chip_gd_probe + *fill* 0x4008ab69 0x3 + .text.spi_flash_chip_gd_suspend_cmd_conf + 0x4008ab6c 0x36 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x4008ab6c spi_flash_chip_gd_suspend_cmd_conf + *fill* 0x4008aba2 0x2 + .text.spi_flash_chip_gd_set_io_mode + 0x4008aba4 0x40 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x44 (size before relaxing) + 0x4008aba4 spi_flash_chip_gd_set_io_mode + .text.spi_flash_chip_gd_get_io_mode + 0x4008abe4 0x1e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x4008abe4 spi_flash_chip_gd_get_io_mode + *fill* 0x4008ac02 0x2 + .text.spi_flash_chip_gd_get_caps + 0x4008ac04 0x19 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x4008ac04 spi_flash_chip_gd_get_caps + *fill* 0x4008ac1d 0x0 + *fill* 0x4008ac1d 0x0 + *fill* 0x4008ac1d 0x0 + *fill* 0x4008ac1d 0x0 + *libspi_flash.a:spi_flash_chip_generic.*(.literal .literal.* .text .text.*) + *fill* 0x4008ac1d 0x3 + .text.spi_flash_chip_generic_detect_size + 0x4008ac20 0x41 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4008ac20 spi_flash_chip_generic_detect_size + *fill* 0x4008ac61 0x3 + .text.spi_flash_command_generic_program_4B + 0x4008ac64 0x34 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .text.spi_flash_command_generic_erase_sector_4B + 0x4008ac98 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .text.spi_flash_command_generic_erase_block_4B + 0x4008acc8 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .text.spi_flash_chip_generic_reset + 0x4008acf8 0x55 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4008acf8 spi_flash_chip_generic_reset + *fill* 0x4008ad4d 0x3 + .text.spi_flash_chip_generic_erase_sector + 0x4008ad50 0xa2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0xa6 (size before relaxing) + 0x4008ad50 spi_flash_chip_generic_erase_sector + *fill* 0x4008adf2 0x2 + .text.spi_flash_chip_generic_erase_block + 0x4008adf4 0xa2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4008adf4 spi_flash_chip_generic_erase_block + *fill* 0x4008ae96 0x2 + .text.spi_flash_chip_generic_page_program + 0x4008ae98 0x86 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x8a (size before relaxing) + 0x4008ae98 spi_flash_chip_generic_page_program + *fill* 0x4008af1e 0x2 + .text.spi_flash_chip_generic_config_host_io_mode + 0x4008af20 0x159 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4008af20 spi_flash_chip_generic_config_host_io_mode + *fill* 0x4008b079 0x3 + .text.spi_flash_chip_generic_write_encrypted + 0x4008b07c 0xce esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4008b07c spi_flash_chip_generic_write_encrypted + *fill* 0x4008b14a 0x2 + .text.spi_flash_chip_generic_get_caps + 0x4008b14c 0x71 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4008b14c spi_flash_chip_generic_get_caps + *fill* 0x4008b1bd 0x3 + .text.spi_flash_common_read_qe_sr + 0x4008b1c0 0x34 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .text.spi_flash_common_write_qe_sr + 0x4008b1f4 0x2e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x4008b222 0x2 + .text.spi_flash_common_read_status_16b_rdsr_rdsr2 + 0x4008b224 0x38 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x3c (size before relaxing) + 0x4008b224 spi_flash_common_read_status_16b_rdsr_rdsr2 + .text.spi_flash_common_write_status_16b_wrsr + 0x4008b25c 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4008b25c spi_flash_common_write_status_16b_wrsr + *fill* 0x4008b271 0x3 + .text.spi_flash_chip_generic_suspend_cmd_conf + 0x4008b274 0x36 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4008b274 spi_flash_chip_generic_suspend_cmd_conf + *fill* 0x4008b2aa 0x2 + .text.spi_flash_chip_generic_read + 0x4008b2ac 0xbe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0xc2 (size before relaxing) + 0x4008b2ac spi_flash_chip_generic_read + *fill* 0x4008b36a 0x2 + .text.spi_flash_chip_generic_write + 0x4008b36c 0xa0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4008b36c spi_flash_chip_generic_write + .text.spi_flash_chip_generic_get_write_protect + 0x4008b40c 0x38 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4008b40c spi_flash_chip_generic_get_write_protect + .text.spi_flash_chip_generic_yield + 0x4008b444 0x46 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4008b444 spi_flash_chip_generic_yield + *fill* 0x4008b48a 0x2 + .text.spi_flash_chip_generic_read_unique_id + 0x4008b48c 0x80 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x84 (size before relaxing) + 0x4008b48c spi_flash_chip_generic_read_unique_id + .text.spi_flash_common_read_status_8b_rdsr2 + 0x4008b50c 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4008b50c spi_flash_common_read_status_8b_rdsr2 + *fill* 0x4008b521 0x3 + .text.spi_flash_chip_generic_get_io_mode + 0x4008b524 0x1e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4008b524 spi_flash_chip_generic_get_io_mode + *fill* 0x4008b542 0x2 + .text.spi_flash_common_read_status_8b_rdsr + 0x4008b544 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4008b544 spi_flash_common_read_status_8b_rdsr + *fill* 0x4008b559 0x3 + .text.spi_flash_common_write_status_8b_wrsr + 0x4008b55c 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4008b55c spi_flash_common_write_status_8b_wrsr + *fill* 0x4008b571 0x3 + .text.spi_flash_common_write_status_8b_wrsr2 + 0x4008b574 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4008b574 spi_flash_common_write_status_8b_wrsr2 + *fill* 0x4008b589 0x3 + .text.spi_flash_common_set_io_mode + 0x4008b58c 0x98 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x9c (size before relaxing) + 0x4008b58c spi_flash_common_set_io_mode + .text.spi_flash_chip_generic_set_io_mode + 0x4008b624 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4008b624 spi_flash_chip_generic_set_io_mode + *fill* 0x4008b63c 0x0 + *fill* 0x4008b63c 0x0 + .text.spi_flash_chip_generic_probe + 0x4008b63c 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4008b63c spi_flash_chip_generic_probe + *fill* 0x4008b643 0x0 + *fill* 0x4008b643 0x1 + .text.spi_flash_chip_generic_erase_chip + 0x4008b644 0x8e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4008b644 spi_flash_chip_generic_erase_chip + *fill* 0x4008b6d2 0x0 + *fill* 0x4008b6d2 0x0 + *fill* 0x4008b6d2 0x0 + *fill* 0x4008b6d2 0x2 + .text.spi_flash_chip_generic_set_write_protect + 0x4008b6d4 0x4f esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4008b6d4 spi_flash_chip_generic_set_write_protect + *fill* 0x4008b723 0x1 + .text.spi_flash_chip_generic_read_reg + 0x4008b724 0x12 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4008b724 spi_flash_chip_generic_read_reg + *fill* 0x4008b736 0x2 + .text.spi_flash_chip_generic_wait_idle + 0x4008b738 0x96 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4008b738 spi_flash_chip_generic_wait_idle + *fill* 0x4008b7ce 0x0 + *fill* 0x4008b7ce 0x0 + *fill* 0x4008b7ce 0x0 + *fill* 0x4008b7ce 0x0 + *fill* 0x4008b7ce 0x0 + *fill* 0x4008b7ce 0x0 + *fill* 0x4008b7ce 0x0 + *fill* 0x4008b7ce 0x0 + *fill* 0x4008b7ce 0x2 + .text.spi_flash_chip_generic_read_unique_id_none + 0x4008b7d0 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4008b7d0 spi_flash_chip_generic_read_unique_id_none + *fill* 0x4008b7d8 0x0 + *fill* 0x4008b7d8 0x0 + *fill* 0x4008b7d8 0x0 + *fill* 0x4008b7d8 0x0 + *fill* 0x4008b7d8 0x0 + *libspi_flash.a:spi_flash_chip_issi.*(.literal .literal.* .text .text.*) + .text.spi_flash_chip_issi_probe + 0x4008b7d8 0x29 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x4008b7d8 spi_flash_chip_issi_probe + *fill* 0x4008b801 0x3 + .text.spi_flash_chip_issi_set_io_mode + 0x4008b804 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x18 (size before relaxing) + 0x4008b804 spi_flash_chip_issi_set_io_mode + .text.spi_flash_chip_issi_get_io_mode + 0x4008b818 0x1f esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x4008b818 spi_flash_chip_issi_get_io_mode + *fill* 0x4008b837 0x1 + .text.spi_flash_chip_issi_get_caps + 0x4008b838 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x4008b838 spi_flash_chip_issi_get_caps + *fill* 0x4008b83f 0x0 + *libspi_flash.a:spi_flash_chip_mxic.*(.literal .literal.* .text .text.*) + *fill* 0x4008b83f 0x1 + .text.spi_flash_chip_mxic_detect_size + 0x4008b840 0x41 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x4008b840 spi_flash_chip_mxic_detect_size + *fill* 0x4008b881 0x3 + .text.spi_flash_chip_mxic_probe + 0x4008b884 0x25 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x4008b884 spi_flash_chip_mxic_probe + *fill* 0x4008b8a9 0x0 + *fill* 0x4008b8a9 0x3 + .text.spi_flash_chip_mxic_get_caps + 0x4008b8ac 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x4008b8ac spi_flash_chip_mxic_get_caps + *libspi_flash.a:spi_flash_chip_th.*(.literal .literal.* .text .text.*) + *libspi_flash.a:spi_flash_chip_winbond.*(.literal .literal.* .text .text.*) + *fill* 0x4008b8b3 0x1 + .text.spi_flash_chip_winbond_suspend_cmd_conf + 0x4008b8b4 0x36 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x4008b8b4 spi_flash_chip_winbond_suspend_cmd_conf + *fill* 0x4008b8ea 0x2 + .text.spi_flash_command_winbond_program_4B + 0x4008b8ec 0x4a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + *fill* 0x4008b936 0x2 + .text.spi_flash_chip_winbond_page_program + 0x4008b938 0x68 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x70 (size before relaxing) + 0x4008b938 spi_flash_chip_winbond_page_program + .text.spi_flash_command_winbond_erase_sector_4B + 0x4008b9a0 0x46 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + *fill* 0x4008b9e6 0x2 + .text.spi_flash_chip_winbond_erase_sector + 0x4008b9e8 0xa6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x4008b9e8 spi_flash_chip_winbond_erase_sector + *fill* 0x4008ba8e 0x2 + .text.spi_flash_command_erase_block_4B + 0x4008ba90 0x49 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + *fill* 0x4008bad9 0x3 + .text.spi_flash_chip_winbond_erase_block + 0x4008badc 0xa6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x4008badc spi_flash_chip_winbond_erase_block + *fill* 0x4008bb82 0x2 + .text.spi_flash_chip_winbond_read + 0x4008bb84 0xbe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0xc2 (size before relaxing) + 0x4008bb84 spi_flash_chip_winbond_read + *fill* 0x4008bc42 0x2 + .text.spi_flash_chip_winbond_probe + 0x4008bc44 0x16 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x4008bc44 spi_flash_chip_winbond_probe + *fill* 0x4008bc5a 0x2 + .text.spi_flash_chip_winbond_get_caps + 0x4008bc5c 0x19 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x4008bc5c spi_flash_chip_winbond_get_caps + *fill* 0x4008bc75 0x0 + *fill* 0x4008bc75 0x0 + *fill* 0x4008bc75 0x0 + *fill* 0x4008bc75 0x0 + *fill* 0x4008bc75 0x0 + *fill* 0x4008bc75 0x0 + *fill* 0x4008bc75 0x0 + *libspi_flash.a:spi_flash_os_func_app.*(.literal.delay_us .text.delay_us) + *fill* 0x4008bc75 0x3 + .text.delay_us + 0x4008bc78 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + *fill* 0x4008bc88 0x0 + *libspi_flash.a:spi_flash_os_func_app.*(.literal.get_buffer_malloc .text.get_buffer_malloc) + .text.get_buffer_malloc + 0x4008bc88 0x3b esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x3f (size before relaxing) + *libspi_flash.a:spi_flash_os_func_app.*(.literal.main_flash_op_status .text.main_flash_op_status) + *fill* 0x4008bcc3 0x1 + .text.main_flash_op_status + 0x4008bcc4 0xb esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xe (size before relaxing) + *fill* 0x4008bccf 0x0 + *libspi_flash.a:spi_flash_os_func_app.*(.literal.main_flash_region_protected .text.main_flash_region_protected) + *fill* 0x4008bccf 0x1 + .text.main_flash_region_protected + 0x4008bcd0 0x2d esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x31 (size before relaxing) + *fill* 0x4008bcfd 0x0 + *libspi_flash.a:spi_flash_os_func_app.*(.literal.release_buffer_malloc .text.release_buffer_malloc) + *fill* 0x4008bcfd 0x3 + .text.release_buffer_malloc + 0x4008bd00 0xa esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xe (size before relaxing) + *fill* 0x4008bd0a 0x0 + *libspi_flash.a:spi_flash_os_func_app.*(.literal.spi23_end .text.spi23_end) + *libspi_flash.a:spi_flash_os_func_app.*(.literal.spi23_start .text.spi23_start) + *libspi_flash.a:spi_flash_os_func_app.*(.literal.spi_flash_os_check_yield .text.spi_flash_os_check_yield) + *fill* 0x4008bd0a 0x2 + .text.spi_flash_os_check_yield + 0x4008bd0c 0x33 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + *fill* 0x4008bd3f 0x0 + *libspi_flash.a:spi_flash_os_func_app.*(.literal.spi_flash_os_yield .text.spi_flash_os_yield) + *fill* 0x4008bd3f 0x1 + .text.spi_flash_os_yield + 0x4008bd40 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x20 (size before relaxing) + *fill* 0x4008bd58 0x0 + *libspi_flash.a:spi_flash_os_func_noos.*(.literal.delay_us .text.delay_us) + .text.delay_us + 0x4008bd58 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + *libspi_flash.a:spi_flash_os_func_noos.*(.literal.esp_flash_app_disable_os_functions .text.esp_flash_app_disable_os_functions) + *libspi_flash.a:spi_flash_os_func_noos.*(.literal.get_temp_buffer_not_supported .text.get_temp_buffer_not_supported) + *libspi_flash.a:spi_flash_wrap.*(.literal .literal.* .text .text.*) + *libxt_hal.a:(.literal .literal.* .text .text.*) + .text 0x4008bd68 0x137 C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + 0x4008bd68 xthal_window_spill_nw + 0x4008bd68 xthal_spill_registers_into_stack_nw + 0x4008be7c xthal_window_spill + *fill* 0x4008be9f 0x1 + .text 0x4008bea0 0x8 C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + 0x4008bea0 xthal_set_intclear + .text 0x4008bea8 0x3e C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + 0x4008bea8 xthal_restore_extra_nw + *fill* 0x4008bee6 0x2 + .text 0x4008bee8 0x3e C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + 0x4008bee8 xthal_save_extra_nw + *libxtensa.a:(EXCLUDE_FILE(*libxtensa.a:xtensa_intr.* *libxtensa.a:xt_trax.*) .literal EXCLUDE_FILE(*libxtensa.a:xtensa_intr.* *libxtensa.a:xt_trax.*) .literal.* EXCLUDE_FILE(*libxtensa.a:xtensa_intr.* *libxtensa.a:xt_trax.*) .text EXCLUDE_FILE(*libxtensa.a:xtensa_intr.* *libxtensa.a:xt_trax.*) .text.*) + *fill* 0x4008bf26 0x2 + .text 0x4008bf28 0x186 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + 0x18e (size before relaxing) + 0x4008bf28 _xt_context_save + 0x4008bfcc _xt_context_restore + 0x4008c010 _xt_coproc_init + 0x4008c024 _xt_coproc_release + 0x4008c068 _xt_coproc_savecs + 0x4008c08c _xt_coproc_restorecs + *fill* 0x4008c0ae 0x0 + *fill* 0x4008c0ae 0x2 + .text 0x4008c0b0 0x33 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + 0x4008c0b0 xt_ints_on + 0x4008c0c8 xt_ints_off + +.dram0.data 0x3ffb0000 0x2b0c + 0x3ffb0000 _data_start = ABSOLUTE (.) + *(.gnu.linkonce.d.*) + *(.data1) + *(.sdata) + *(.sdata.*) + *(.gnu.linkonce.s.*) + *(.gnu.linkonce.s2.*) + *(.jcr) + *(.data .data.*) + .data.esp_flash_registered_chips + 0x3ffb0000 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + 0x3ffb0000 esp_flash_registered_chips + .data.default_registered_chips + 0x3ffb0004 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .data.s_flash_op_cpu + 0x3ffb001c 0x4 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .data.esp_ipc_isr_end_fl + 0x3ffb0020 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x3ffb0020 esp_ipc_isr_end_fl + .data.s_ipc_isr_mux + 0x3ffb0024 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .data.s_panic_uart + 0x3ffb002c 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .data.rtc_wdt_ctx + 0x3ffb0030 0x8 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .data 0x3ffb0038 0x10 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .data.hooks_spinlock + 0x3ffb0048 0x8 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .data.esp_log_vprint_func + 0x3ffb0050 0x4 esp-idf/log/liblog.a(log_write.c.obj) + 0x3ffb0050 esp_log_vprint_func + .data.esp_log_default_level + 0x3ffb0054 0x4 esp-idf/log/liblog.a(log_level.c.obj) + 0x3ffb0054 esp_log_default_level + .data.malloc_alwaysinternal_limit + 0x3ffb0058 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .data.first_call$0 + 0x3ffb005c 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + *fill* 0x3ffb005d 0x3 + .data.s_esp_rtc_time_lock + 0x3ffb0060 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .data.spinlock + 0x3ffb0068 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .data.periph_spinlock + 0x3ffb0070 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .data.rtc_spinlock + 0x3ffb0078 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x3ffb0078 rtc_spinlock + .data.s_reserved_pin_mask + 0x3ffb0080 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .data.mux 0x3ffb0088 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .data.s_config + 0x3ffb0090 0x78 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .data.xKernelLock + 0x3ffb0108 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .data.lock_init_spinlock + 0x3ffb0110 0x8 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .data.s_atomic_lock + 0x3ffb0118 0x8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .data.stdout 0x3ffb0120 0x4 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + 0x3ffb0120 stdout + .data.stdin 0x3ffb0124 0x4 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + 0x3ffb0124 stdin + .data.__stdout + 0x3ffb0128 0x4c esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + .data.__stdin 0x3ffb0174 0x4c esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + .data.s_stub_table + 0x3ffb01c0 0x90 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + .data.pthread_lazy_init_lock + 0x3ffb0250 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x3ffb0250 pthread_lazy_init_lock + .data.s_keys_lock + 0x3ffb0258 0x8 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .data.s_registered_select_lock + 0x3ffb0260 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .data.s_context + 0x3ffb0268 0x78 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .data.uart_selectlock + 0x3ffb02e0 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .data.uart_context + 0x3ffb02e8 0xc0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .data.s_fd_table + 0x3ffb03a8 0xc0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .data.g_manual_de_pin + 0x3ffb0468 0x4 esp-idf/main/libmain.a(main.c.obj) + *fill* 0x3ffb046c 0x4 + .data 0x3ffb0470 0x400 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + 0x3ffb0470 _xt_interrupt_table + 0x3ffb0670 _xt_exception_table + .data 0x3ffb0870 0x14 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x3ffb0870 _xt_coproc_owner_sa + 0x3ffb0880 _xt_coproc_owner_sa_lock + *fill* 0x3ffb0884 0x4 + .data.gpio_context + 0x3ffb0888 0x20 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .data._gpio_hal + 0x3ffb08a8 0x4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .data.s_cache_drv + 0x3ffb08ac 0x8 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .data.reason_spinlock + 0x3ffb08b4 0x8 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .data.spinlock + 0x3ffb08bc 0x8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .data.mbedtls_free_func + 0x3ffb08c4 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform.c.obj) + .data.mbedtls_calloc_func + 0x3ffb08c8 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform.c.obj) + .data.mbedtls_threading_psa_rngdata_mutex + 0x3ffb08cc 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + 0x3ffb08cc mbedtls_threading_psa_rngdata_mutex + .data.mbedtls_threading_psa_globaldata_mutex + 0x3ffb08d4 0x8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + 0x3ffb08d4 mbedtls_threading_psa_globaldata_mutex + .data.mbedtls_mutex_unlock_ptr + 0x3ffb08dc 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + 0x3ffb08dc mbedtls_mutex_unlock_ptr + .data.mbedtls_mutex_lock_ptr + 0x3ffb08e0 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + 0x3ffb08e0 mbedtls_mutex_lock_ptr + .data._ZN10__cxxabiv119__terminate_handlerE + 0x3ffb08e4 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_term_handler.o) + 0x3ffb08e4 __cxxabiv1::__terminate_handler + .data 0x3ffb08e8 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_environ.c.o) + 0x3ffb08e8 environ + *(.dram1 .dram1.*) + .dram1.2 0x3ffb08ec 0x24 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .dram1.1 0x3ffb0910 0x30 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .dram1.7 0x3ffb0940 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .dram1.6 0x3ffb0968 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .dram1.8 0x3ffb097c 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x3ffb097c esp_flash_noos_functions + .dram1.5 0x3ffb09a4 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x3ffb09a4 spi_flash_chip_generic_timeout + .dram1.4 0x3ffb09b8 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .dram1.3 0x3ffb09d0 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x3ffb09d0 rom_flash_chip_dummy_hpm + .dram1.2 0x3ffb09d4 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x3ffb09d4 rom_flash_chip_dummy + .dram1.1 0x3ffb09d8 0x6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x3ffb09de 0x2 + .dram1.0 0x3ffb09e0 0x6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x3ffb09e6 0x2 + .dram1.0 0x3ffb09e8 0x58 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .dram1.6 0x3ffb0a40 0x8 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x3ffb0a40 g_flash_guard_default_ops + .dram1.13 0x3ffb0a48 0x1b esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x3ffb0a63 0x1 + .dram1.11 0x3ffb0a64 0x21 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x3ffb0a85 0x3 + .dram1.9 0x3ffb0a88 0x3b esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x3ffb0ac3 0x1 + .dram1.7 0x3ffb0ac4 0x3e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x3ffb0b02 0x2 + .dram1.5 0x3ffb0b04 0x1b esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x3ffb0b1f 0x1 + .dram1.2 0x3ffb0b20 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .dram1.1 0x3ffb0b24 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .dram1.0 0x3ffb0b34 0xa esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x3ffb0b3e 0x2 + .dram1.1 0x3ffb0b40 0xa8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .dram1.0 0x3ffb0be8 0xa8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .dram1.1 0x3ffb0c90 0x8 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .dram1.0 0x3ffb0c98 0x28 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + 0x3ffb0c98 GPIO_PIN_MUX_REG_OFFSET + .dram1.4 0x3ffb0cc0 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .dram1.3 0x3ffb0cc8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .dram1.2 0x3ffb0ccc 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .dram1.1 0x3ffb0cd0 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .dram1.0 0x3ffb0cd4 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .dram1.3 0x3ffb0cd8 0x2b esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + *fill* 0x3ffb0d03 0x1 + .dram1.1 0x3ffb0d04 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .dram1.1 0x3ffb0d08 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + *fill* 0x3ffb0d1a 0x2 + .dram1.0 0x3ffb0d1c 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3ffb0d1c FreeRTOS_openocd_params + *fill* 0x3ffb0d2c 0x4 + .dram1.3 0x3ffb0d30 0xc00 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3ffb0d30 port_IntStack + .dram1.2 0x3ffb1930 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3ffb1930 offset_xCoreID + .dram1.1 0x3ffb1934 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3ffb1934 offset_cpsa + .dram1.0 0x3ffb1938 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3ffb1938 offset_pxEndOfStack + .dram1.0 0x3ffb193c 0x4 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.1 0x3ffb1940 0x19 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x3ffb1959 0x3 + .dram1.0 0x3ffb195c 0x28 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_periph.c.obj) + 0x3ffb195c rtc_io_num_map + *libesp_driver_rmt.a:rmt_tx.*(.rodata.rmt_isr_handle_tx_done .rodata.rmt_isr_handle_tx_done.str1.4 .sdata2.rmt_isr_handle_tx_done .srodata.rmt_isr_handle_tx_done) + *libesp_hal_gpio.a:gpio_hal.*(.rodata.gpio_hal_isolate_in_sleep .rodata.gpio_hal_isolate_in_sleep.str1.4 .sdata2.gpio_hal_isolate_in_sleep .srodata.gpio_hal_isolate_in_sleep) + *libesp_hal_gpspi.a:spi_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hal_gpspi.a:spi_slave_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hal_i2c.a:i2c_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hal_ledc.a:ledc_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hal_mspi.a:spi_flash_encrypt_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.spi_flash_encrypt_ll_plaintext_save.str1.4 + 0x3ffb1984 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + 0xed (size before relaxing) + .rodata.__func__$0 + 0x3ffb1984 0x24 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + *libesp_hal_mspi.a:spi_flash_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hal_wdt.a:wdt_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.wdt_hal_config_stage.str1.4 + 0x3ffb19a8 0x0 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x60 (size before relaxing) + *libesp_hw_support.a:clk_utils.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hw_support.a:cpu.*(.rodata.esp_cpu_stall .rodata.esp_cpu_stall.str1.4 .sdata2.esp_cpu_stall .srodata.esp_cpu_stall) + .rodata.esp_cpu_stall.str1.4 + 0x3ffb19a8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x52 (size before relaxing) + *libesp_hw_support.a:esp_memory_utils.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hw_support.a:mspi_timing_tuning.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hw_support.a:rtc_clk.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.rtc_clk_apll_coeff_calc.str1.4 + 0x3ffb19a8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xab (size before relaxing) + .rodata.rtc_clk_cpu_freq_get_config.str1.4 + 0x3ffb19a8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x31 (size before relaxing) + .rodata.str1.4 + 0x3ffb19a8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x95 (size before relaxing) + .rodata.__func__$27 + 0x3ffb19a8 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + *fill* 0x3ffb19c3 0x1 + .rodata.__func__$24 + 0x3ffb19c4 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + *libesp_libc.a:abort.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.abort.str1.4 + 0x3ffb19db 0x0 esp-idf/esp_libc/libesp_libc.a(abort.c.obj) + 0x26 (size before relaxing) + *libesp_libc.a:assert.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.__assert_func.str1.4 + 0x3ffb19db 0x0 esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + 0x36 (size before relaxing) + *libesp_libc.a:heap.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_libc.a:stdatomic.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_mm.a:cache_esp32.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_mm.a:esp_cache_msync.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.esp_cache_msync.str1.4 + 0x3ffb19db 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + 0x230 (size before relaxing) + *fill* 0x3ffb19db 0x1 + .rodata.__FUNCTION__$0 + 0x3ffb19dc 0x18 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + *libesp_mm.a:esp_cache_utils.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_rom.a:esp_rom_print.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_rom.a:esp_rom_spiflash.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_rom.a:esp_rom_sys.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_system.a:esp_err.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.esp_error_check_failed_print.str1.4 + 0x3ffb19f4 0x0 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x5c (size before relaxing) + .rodata._esp_error_check_failed.str1.4 + 0x3ffb19f4 0x0 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x10 (size before relaxing) + *libesp_system.a:image_process.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_system.a:reset_reason.*(.rodata.esp_reset_reason_set_hint .rodata.esp_reset_reason_set_hint.str1.4 .sdata2.esp_reset_reason_set_hint .srodata.esp_reset_reason_set_hint) + *libesp_system.a:ubsan.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libgcov.a:(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libhal.a:cache_hal_esp32.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.cache_hal_get_cache_line_size.str1.4 + 0x3ffb19f4 0x0 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0x50 (size before relaxing) + .rodata.__func__$0 + 0x3ffb19f4 0x1e esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + *libhal.a:mmu_hal.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.mmu_ll_entry_id_to_vaddr_base.str1.4 + 0x3ffb1a12 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x37 (size before relaxing) + .rodata.mmu_ll_check_entry_valid.str1.4 + 0x3ffb1a12 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x1d (size before relaxing) + .rodata.mmu_ll_get_entry_target.str1.4 + 0x3ffb1a12 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x2b (size before relaxing) + .rodata.mmu_hal_paddr_to_vaddr.str1.4 + 0x3ffb1a12 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x52 (size before relaxing) + .rodata.mmu_hal_map_region.str1.4 + 0x3ffb1a12 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0xd5 (size before relaxing) + .rodata.mmu_hal_vaddr_to_paddr.str1.4 + 0x3ffb1a12 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x5f (size before relaxing) + *fill* 0x3ffb1a12 0x2 + .rodata.__func__$2 + 0x3ffb1a14 0x1e esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x3ffb1a32 0x2 + .rodata.__func__$3 + 0x3ffb1a34 0x18 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .rodata.__func__$4 + 0x3ffb1a4c 0x19 esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x3ffb1a65 0x3 + .rodata.__func__$5 + 0x3ffb1a68 0x17 esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x3ffb1a7f 0x1 + .rodata.__func__$6 + 0x3ffb1a80 0x15 esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x3ffb1a95 0x3 + .rodata.__func__$7 + 0x3ffb1a98 0x13 esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x3ffb1aab 0x1 + .rodata.__func__$8 + 0x3ffb1aac 0x14 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .rodata.__func__$9 + 0x3ffb1ac0 0x13 esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x3ffb1ad3 0x1 + .rodata.__func__$12 + 0x3ffb1ad4 0x19 esp-idf/hal/libhal.a(mmu_hal.c.obj) + *libheap.a:multi_heap.*(.rodata.assert_valid_block .rodata.assert_valid_block.str1.4 .sdata2.assert_valid_block .srodata.assert_valid_block) + .rodata.assert_valid_block.str1.4 + 0x3ffb1aed 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x32 (size before relaxing) + *libheap.a:multi_heap.*(.rodata.multi_heap_get_first_block .rodata.multi_heap_get_first_block.str1.4 .sdata2.multi_heap_get_first_block .srodata.multi_heap_get_first_block) + .rodata.multi_heap_get_first_block.str1.4 + 0x3ffb1aed 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0xd (size before relaxing) + *libheap.a:multi_heap.*(.rodata.multi_heap_get_next_block .rodata.multi_heap_get_next_block.str1.4 .sdata2.multi_heap_get_next_block .srodata.multi_heap_get_next_block) + *libheap.a:tlsf.*(.rodata.tlsf_free .rodata.tlsf_free.str1.4 .sdata2.tlsf_free .srodata.tlsf_free) + .rodata.tlsf_free.str1.4 + 0x3ffb1aed 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x110 (size before relaxing) + *libheap.a:tlsf.*(.rodata.tlsf_malloc .rodata.tlsf_malloc.str1.4 .sdata2.tlsf_malloc .srodata.tlsf_malloc) + .rodata.tlsf_malloc.str1.4 + 0x3ffb1aed 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x1e7 (size before relaxing) + *libheap.a:tlsf.*(.rodata.tlsf_memalign_offs .rodata.tlsf_memalign_offs.str1.4 .sdata2.tlsf_memalign_offs .srodata.tlsf_memalign_offs) + .rodata.tlsf_memalign_offs.str1.4 + 0x3ffb1aed 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x2b (size before relaxing) + *libheap.a:tlsf.*(.rodata.tlsf_realloc .rodata.tlsf_realloc.str1.4 .sdata2.tlsf_realloc .srodata.tlsf_realloc) + .rodata.tlsf_realloc.str1.4 + 0x3ffb1aed 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x2e (size before relaxing) + *liblog.a:log.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *liblog.a:log_format_text.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *liblog.a:log_lock.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *liblog.a:log_print.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *liblog.a:log_timestamp_common.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *liblog.a:util.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libphy.a:(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libsoc.a:lldesc.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:flash_brownout_hook.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:memspi_host_driver.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.memspi_host_read_id_hs.str1.4 + 0x3ffb1aed 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x1a (size before relaxing) + *fill* 0x3ffb1aed 0x3 + .rodata.TAG 0x3ffb1af0 0x7 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + *libspi_flash.a:spi_flash_chip_boya.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:spi_flash_chip_gd.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *fill* 0x3ffb1af7 0x1 + .rodata.esp_flash_chip_gd + 0x3ffb1af8 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x3ffb1af8 esp_flash_chip_gd + .rodata.chip_name + 0x3ffb1b74 0x3 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + *libspi_flash.a:spi_flash_chip_generic.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.spi_flash_chip_generic_read.str1.4 + 0x3ffb1b77 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x39 (size before relaxing) + .rodata.spi_flash_chip_generic_get_write_protect.str1.4 + 0x3ffb1b77 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4c (size before relaxing) + .rodata.spi_flash_chip_generic_read_unique_id.str1.4 + 0x3ffb1b77 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x48 (size before relaxing) + *fill* 0x3ffb1b77 0x1 + .rodata.__func__$0 + 0x3ffb1b78 0x29 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x3ffb1ba1 0x3 + .rodata.esp_flash_chip_generic + 0x3ffb1ba4 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x3ffb1ba4 esp_flash_chip_generic + .rodata.chip_name + 0x3ffb1c20 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .rodata.TAG 0x3ffb1c28 0xd esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *libspi_flash.a:spi_flash_chip_issi.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *fill* 0x3ffb1c35 0x3 + .rodata.esp_flash_chip_issi + 0x3ffb1c38 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x3ffb1c38 esp_flash_chip_issi + .rodata.chip_name + 0x3ffb1cb4 0x5 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + *libspi_flash.a:spi_flash_chip_mxic.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *fill* 0x3ffb1cb9 0x3 + .rodata.esp_flash_chip_mxic + 0x3ffb1cbc 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x3ffb1cbc esp_flash_chip_mxic + .rodata.chip_name + 0x3ffb1d38 0x5 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + *libspi_flash.a:spi_flash_chip_th.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:spi_flash_chip_winbond.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.spi_flash_chip_winbond_read.str1.4 + 0x3ffb1d3d 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x39 (size before relaxing) + *fill* 0x3ffb1d3d 0x3 + .rodata.esp_flash_chip_winbond + 0x3ffb1d40 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x3ffb1d40 esp_flash_chip_winbond + .rodata.chip_name + 0x3ffb1dbc 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .rodata.TAG 0x3ffb1dc4 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + *libspi_flash.a:spi_flash_os_func_app.*(.rodata.spi_flash_os_check_yield .rodata.spi_flash_os_check_yield.str1.4 .sdata2.spi_flash_os_check_yield .srodata.spi_flash_os_check_yield) + .rodata.spi_flash_os_check_yield.str1.4 + 0x3ffb1dcc 0xd40 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x47 (size before relaxing) + *libspi_flash.a:spi_flash_wrap.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + 0x3ffb2b0c _data_end = ABSOLUTE (.) + +.ext_ram_noinit + 0x3f800000 0x0 + 0x3f800000 _ext_ram_noinit_start = ABSOLUTE (.) + *(.ext_ram_noinit*) + 0x3f800000 . = ALIGN (0x4) + 0x3f800000 _ext_ram_noinit_end = ABSOLUTE (.) + +.noinit 0x3ffb2b0c 0x0 + 0x3ffb2b0c . = ALIGN (0x4) + 0x3ffb2b0c _noinit_start = ABSOLUTE (.) + *(.noinit .noinit.*) + 0x3ffb2b0c . = ALIGN (0x4) + 0x3ffb2b0c _noinit_end = ABSOLUTE (.) + +.ext_ram.bss 0x3f800000 0x0 + 0x3f800000 . = ALIGN (0x4) + 0x3f800000 _ext_ram_bss_start = ABSOLUTE (.) + 0x3f800000 . = ALIGN (0x4) + 0x3f800000 _ext_ram_bss_end = ABSOLUTE (.) + +.dram0.bss 0x3ffb2b10 0xbf0 + 0x3ffb2b10 . = ALIGN (0x8) + 0x3ffb2b10 _bss_start = ABSOLUTE (.) + *(.bss .bss.*) + .bss.s_open_count + 0x3ffb2b10 0x4 esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + .bss.vfs_console + 0x3ffb2b14 0x8 esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + .bss.primary_vfs + 0x3ffb2b1c 0x4 esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + .bss.app_elf_sha256_str + 0x3ffb2b20 0xa esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0x3ffb2b20 app_elf_sha256_str + *fill* 0x3ffb2b2a 0x2 + .bss.esp_flash_default_chip + 0x3ffb2b2c 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x3ffb2b2c esp_flash_default_chip + .bss.flash_erasing + 0x3ffb2b30 0x1 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .bss.flash_brownout_needs_reset + 0x3ffb2b31 0x1 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .bss.s_flash_op_complete + 0x3ffb2b32 0x1 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .bss.s_flash_op_can_start + 0x3ffb2b33 0x1 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .bss.s_flash_op_mutex + 0x3ffb2b34 0x4 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .bss.s_flash_op_cache_state + 0x3ffb2b38 0x8 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .bss.s_flash_guard_ops + 0x3ffb2b40 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .bss.s_no_block_func_arg + 0x3ffb2b44 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.s_no_block_func_and_arg_are_ready + 0x3ffb2b4c 0x2 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + *fill* 0x3ffb2b4e 0x2 + .bss.s_no_block_func + 0x3ffb2b50 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.s_wait_for + 0x3ffb2b58 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.s_func_arg + 0x3ffb2b60 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.s_func 0x3ffb2b68 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.s_ipc_ack + 0x3ffb2b70 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.s_ipc_mutex + 0x3ffb2b78 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.s_ipc_task_handle + 0x3ffb2b80 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.shutdown_handlers + 0x3ffb2b88 0x14 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .bss.s_errno_array$1 + 0x3ffb2b9c 0x8 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .bss.s_resume_cores + 0x3ffb2ba4 0x1 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + *fill* 0x3ffb2ba5 0x3 + .bss.s_cpu_inited + 0x3ffb2ba8 0x2 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + *fill* 0x3ffb2baa 0x2 + .bss.s_cpu_up 0x3ffb2bac 0x2 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + *fill* 0x3ffb2bae 0x2 + .bss.esp_ipc_isr_finish_cmd + 0x3ffb2bb0 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .bss.s_stored_interrupt_level + 0x3ffb2bb4 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .bss.s_count_of_nested_calls + 0x3ffb2bb8 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .bss.s_stall_state + 0x3ffb2bc0 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .bss.esp_ipc_func_arg + 0x3ffb2bc4 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x3ffb2bc4 esp_ipc_func_arg + .bss.esp_ipc_func + 0x3ffb2bc8 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x3ffb2bc8 esp_ipc_func + .bss.esp_ipc_isr_start_fl + 0x3ffb2bcc 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x3ffb2bcc esp_ipc_isr_start_fl + .bss.int_wdt_cpu1_ticked + 0x3ffb2bd0 0x1 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x3ffb2bd0 int_wdt_cpu1_ticked + *fill* 0x3ffb2bd1 0x3 + .bss.iwdt_context + 0x3ffb2bd4 0x8 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .bss.g_panic_abort_details + 0x3ffb2bdc 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x3ffb2bdc g_panic_abort_details + .bss.g_panic_abort + 0x3ffb2be0 0x1 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x3ffb2be0 g_panic_abort + .bss.s_system_full_inited + 0x3ffb2be1 0x1 esp-idf/esp_system/libesp_system.a(startup.c.obj) + *fill* 0x3ffb2be2 0x2 + .bss.s_system_inited + 0x3ffb2be4 0x2 esp-idf/esp_system/libesp_system.a(startup.c.obj) + *fill* 0x3ffb2be6 0x2 + .bss.g_startup_time + 0x3ffb2be8 0x8 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x3ffb2be8 g_startup_time + .bss.g_exc_frames + 0x3ffb2bf0 0x8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x3ffb2bf0 g_exc_frames + .bss.tick_cb 0x3ffb2bf8 0x40 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .bss.idle_cb 0x3ffb2c38 0x40 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .bss.s_ctx 0x3ffb2c78 0x1 esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x3ffb2c79 0x3 + .bss.s_cache_status + 0x3ffb2c7c 0x8 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .bss.base$0 0x3ffb2c84 0x4 esp-idf/log/liblog.a(log_timestamp.c.obj) + .bss.esp_log_cache_enabled + 0x3ffb2c88 0x4 esp-idf/log/liblog.a(util.c.obj) + .bss.s_log_tags + 0x3ffb2c8c 0x4 esp-idf/log/liblog.a(log_linked_list.c.obj) + .bss.s_log_cache_misses + 0x3ffb2c90 0x4 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .bss.s_log_cache_entry_count + 0x3ffb2c94 0x4 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .bss.s_log_cache_max_generation + 0x3ffb2c98 0x4 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .bss.s_log_cache + 0x3ffb2c9c 0xf8 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .bss.s_log_mutex + 0x3ffb2d94 0x4 esp-idf/log/liblog.a(log_lock.c.obj) + .bss.alloc_failed_callback + 0x3ffb2d98 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .bss.registered_heaps + 0x3ffb2d9c 0x4 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x3ffb2d9c registered_heaps + .bss.non_iram_int_disabled_flag + 0x3ffb2da0 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x3ffb2da2 0x2 + .bss.non_iram_int_disabled + 0x3ffb2da4 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .bss.non_iram_int_mask + 0x3ffb2dac 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .bss.vector_desc_head + 0x3ffb2db4 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .bss.ref_counts + 0x3ffb2db8 0xf esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + *fill* 0x3ffb2dc7 0x1 + .bss.s_rtc_isr_handle + 0x3ffb2dc8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .bss.s_calibrated_freq + 0x3ffb2dcc 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .bss.s_brownout_callback + 0x3ffb2dd4 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .bss.s_cur_pll_freq + 0x3ffb2dd8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .bss.s_other_cpu_startup_done + 0x3ffb2ddc 0x1 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + *fill* 0x3ffb2ddd 0x3 + .bss.uxSchedulerSuspended + 0x3ffb2de0 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xIdleTaskHandle + 0x3ffb2de8 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xNextTaskUnblockTime + 0x3ffb2df0 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxTaskNumber + 0x3ffb2df4 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xNumOfOverflows + 0x3ffb2df8 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xYieldPending + 0x3ffb2dfc 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xPendedTicks + 0x3ffb2e04 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xSchedulerRunning + 0x3ffb2e08 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxTopReadyPriority + 0x3ffb2e0c 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xTickCount + 0x3ffb2e10 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxCurrentNumberOfTasks + 0x3ffb2e14 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xSuspendedTaskList + 0x3ffb2e18 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxDeletedTasksWaitingCleanUp + 0x3ffb2e2c 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xTasksWaitingTermination + 0x3ffb2e30 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xPendingReadyList + 0x3ffb2e44 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.pxOverflowDelayedTaskList + 0x3ffb2e6c 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.pxDelayedTaskList + 0x3ffb2e70 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xDelayedTaskList2 + 0x3ffb2e74 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xDelayedTaskList1 + 0x3ffb2e88 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.pxReadyTasksLists + 0x3ffb2e9c 0x1f4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.pxCurrentTCBs + 0x3ffb3090 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3ffb3090 pxCurrentTCBs + .bss.port_switch_flag + 0x3ffb3098 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3ffb3098 port_switch_flag + .bss.port_uxOldInterruptState + 0x3ffb30a0 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3ffb30a0 port_uxOldInterruptState + .bss.port_uxCriticalNesting + 0x3ffb30a8 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3ffb30a8 port_uxCriticalNesting + .bss.port_interruptNesting + 0x3ffb30b0 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3ffb30b0 port_interruptNesting + .bss.port_xSchedulerRunning + 0x3ffb30b8 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3ffb30b8 port_xSchedulerRunning + .bss._xt_tick_divisor + 0x3ffb30c0 0x4 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + 0x3ffb30c0 _xt_tick_divisor + .bss.s_common_recursive_mutex + 0x3ffb30c4 0x54 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x3ffb30c4 __lock___atexit_recursive_mutex + 0x3ffb30c4 __lock___sinit_recursive_mutex + 0x3ffb30c4 __lock___sfp_recursive_mutex + 0x3ffb30c4 __lock___env_recursive_mutex + 0x3ffb30c4 __lock___malloc_recursive_mutex + .bss.s_common_mutex + 0x3ffb3118 0x54 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x3ffb3118 __lock___at_quick_exit_mutex + 0x3ffb3118 __lock___tz_mutex + 0x3ffb3118 __lock___arc4random_mutex + 0x3ffb3118 __lock___dd_hash_mutex + .bss.__lock___libc_recursive_mutex + 0x3ffb316c 0x54 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x3ffb316c __lock___libc_recursive_mutex + .bss.s_time_lock + 0x3ffb31c0 0x4 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + *fill* 0x3ffb31c4 0x4 + .bss.s_adjtime_total_correction_us + 0x3ffb31c8 0x8 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .bss.s_adjtime_start_us + 0x3ffb31d0 0x8 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .bss.s_boot_time_lock + 0x3ffb31d8 0x4 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + *fill* 0x3ffb31dc 0x4 + .bss.s_microseconds_offset + 0x3ffb31e0 0x8 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + 0x3ffb31e0 s_microseconds_offset + .bss.read_buf 0x3ffb31e8 0x80 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + .bss.write_buf + 0x3ffb3268 0x80 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + .bss.s_keys 0x3ffb32e8 0x4 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x3ffb32e8 s_keys + *fill* 0x3ffb32ec 0x4 + .bss.s_correction_us + 0x3ffb32f0 0x8 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .bss.s_uart_select_count + 0x3ffb32f8 0xc esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .bss.s_registered_select_num + 0x3ffb3304 0x4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .bss.s_registered_selects + 0x3ffb3308 0x4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .bss.pat_flg$38 + 0x3ffb330c 0x1 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + *fill* 0x3ffb330d 0x3 + .bss.p_uart_obj + 0x3ffb3310 0xc esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .bss._ZL13s_nvs_handles + 0x3ffb331c 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .bss._ZN3nvs19NVSPartitionManager8instanceE + 0x3ffb3328 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x3ffb3328 nvs::NVSPartitionManager::instance + .bss._ZN3nvs4Lock10mSemaphoreE + 0x3ffb332c 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + 0x3ffb332c nvs::Lock::mSemaphore + .bss.s_fd_table_lock + 0x3ffb3330 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .bss.s_vfs_count + 0x3ffb3334 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .bss.s_vfs 0x3ffb3338 0x20 esp-idf/vfs/libvfs.a(vfs.c.obj) + .bss.g_fds 0x3ffb3358 0x4 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .bss.g_device_count + 0x3ffb335c 0x4 esp-idf/main/libmain.a(main.c.obj) + .bss.g_devices + 0x3ffb3360 0x4 esp-idf/main/libmain.a(main.c.obj) + .bss.g_rtu_ctx + 0x3ffb3364 0xcc esp-idf/main/libmain.a(main.c.obj) + .bss.g_device_cfg + 0x3ffb3430 0x140 esp-idf/main/libmain.a(main.c.obj) + .bss._efs 0x3ffb3570 0xc esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .bss.s_partition_list_lock + 0x3ffb357c 0x4 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .bss.s_partition_list + 0x3ffb3580 0x4 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .bss.s_mmu_ctx + 0x3ffb3584 0x80 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .bss.reason 0x3ffb3604 0x8 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .bss.p_twdt_obj + 0x3ffb360c 0x4 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .bss.g_twdt_isr + 0x3ffb3610 0x1 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x3ffb3610 g_twdt_isr + *fill* 0x3ffb3611 0x3 + .bss.init_context + 0x3ffb3614 0xc esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .bss.global_data + 0x3ffb3620 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .bss.global_data + 0x3ffb362c 0xb8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + .bss.curr_partition$2 + 0x3ffb36e4 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .bss._ZN12_GLOBAL__N_1L13__new_handlerE + 0x3ffb36e8 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + .bss._ZL4init 0x3ffb36ec 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + .bss._ZN17__eh_globals_init7_S_initE + 0x3ffb36f0 0x1 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + 0x3ffb36f0 __eh_globals_init::_S_init + *fill* 0x3ffb36f1 0x3 + .bss._ZN12_GLOBAL__N_1L10eh_globalsE + 0x3ffb36f4 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + *(.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) + *(.ext_ram.bss .ext_ram.bss.*) + *(COMMON) + 0x3ffb3700 . = ALIGN (0x8) + *fill* 0x3ffb36fc 0x4 + 0x3ffb3700 _bss_end = ABSOLUTE (.) + 0x00000001 ASSERT (((_bss_end - ORIGIN (dram0_0_seg)) <= LENGTH (dram0_0_seg)), DRAM segment data does not fit.) + +.flash.appdesc 0x3f400020 0x100 + 0x3f400020 _rodata_reserved_start = ABSOLUTE (.) + 0x3f400020 _rodata_start = ABSOLUTE (.) + *(.rodata_desc .rodata_desc.*) + .rodata_desc 0x3f400020 0x100 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0x3f400020 esp_app_desc + *(.rodata_custom_desc .rodata_custom_desc.*) + 0x3f400120 . = ALIGN (ALIGNOF (.flash.rodata)) + 0x00000001 ASSERT ((ADDR (.flash.rodata) == (ADDR (.flash.appdesc) + SIZEOF (.flash.appdesc))), The gap between .flash.appdesc and .flash.rodata must not exist to produce the final bin image.) + +.flash.rodata 0x3f400120 0xbf30 + 0x3f400120 _flash_rodata_start = ABSOLUTE (.) + 0x3f400120 _esp_trace_encoder_array_start = ABSOLUTE (.) + *(SORT_BY_NAME(.esp_trace_encoder_desc)) + 0x3f400120 _esp_trace_encoder_array_end = ABSOLUTE (.) + 0x3f400120 _esp_trace_transport_array_start = ABSOLUTE (.) + *(SORT_BY_NAME(.esp_trace_transport_desc)) + 0x3f400120 _esp_trace_transport_array_end = ABSOLUTE (.) + *(EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_os_func_app.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *liblog.a:util.* *liblog.a:log_timestamp_common.* *liblog.a:log_print.* *liblog.a:log_lock.* *liblog.a:log_format_text.* *liblog.a:log.* *libheap.a:tlsf.* *libheap.a:multi_heap.* *libhal.a:mmu_hal.* *libhal.a:cache_hal_esp32.* *libesp_system.a:ubsan.* *libesp_system.a:reset_reason.* *libesp_system.a:image_process.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_mm.a:esp_cache_utils.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:cache_esp32.* *libesp_libc.a:stdatomic.* *libesp_libc.a:heap.* *libesp_libc.a:assert.* *libesp_libc.a:abort.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:clk_utils.* *libesp_hal_wdt.a:wdt_hal_iram.* *libesp_hal_mspi.a:spi_flash_hal_iram.* *libesp_hal_mspi.a:spi_flash_encrypt_hal_iram.* *libesp_hal_ledc.a:ledc_hal_iram.* *libesp_hal_i2c.a:i2c_hal_iram.* *libesp_hal_gpspi.a:spi_slave_hal_iram.* *libesp_hal_gpspi.a:spi_hal_iram.* *libesp_hal_gpio.a:gpio_hal.* *libesp_driver_rmt.a:rmt_tx.* *libphy.a *libgcov.a) .rodata EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_os_func_app.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *liblog.a:util.* *liblog.a:log_timestamp_common.* *liblog.a:log_print.* *liblog.a:log_lock.* *liblog.a:log_format_text.* *liblog.a:log.* *libheap.a:tlsf.* *libheap.a:multi_heap.* *libhal.a:mmu_hal.* *libhal.a:cache_hal_esp32.* *libesp_system.a:ubsan.* *libesp_system.a:reset_reason.* *libesp_system.a:image_process.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_mm.a:esp_cache_utils.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:cache_esp32.* *libesp_libc.a:stdatomic.* *libesp_libc.a:heap.* *libesp_libc.a:assert.* *libesp_libc.a:abort.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:clk_utils.* *libesp_hal_wdt.a:wdt_hal_iram.* *libesp_hal_mspi.a:spi_flash_hal_iram.* *libesp_hal_mspi.a:spi_flash_encrypt_hal_iram.* *libesp_hal_ledc.a:ledc_hal_iram.* *libesp_hal_i2c.a:i2c_hal_iram.* *libesp_hal_gpspi.a:spi_slave_hal_iram.* *libesp_hal_gpspi.a:spi_hal_iram.* *libesp_hal_gpio.a:gpio_hal.* *libesp_driver_rmt.a:rmt_tx.* *libphy.a *libgcov.a) .rodata.* EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_os_func_app.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *liblog.a:util.* *liblog.a:log_timestamp_common.* *liblog.a:log_print.* *liblog.a:log_lock.* *liblog.a:log_format_text.* *liblog.a:log.* *libheap.a:tlsf.* *libheap.a:multi_heap.* *libhal.a:mmu_hal.* *libhal.a:cache_hal_esp32.* *libesp_system.a:ubsan.* *libesp_system.a:reset_reason.* *libesp_system.a:image_process.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_mm.a:esp_cache_utils.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:cache_esp32.* *libesp_libc.a:stdatomic.* *libesp_libc.a:heap.* *libesp_libc.a:assert.* *libesp_libc.a:abort.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:clk_utils.* *libesp_hal_wdt.a:wdt_hal_iram.* *libesp_hal_mspi.a:spi_flash_hal_iram.* *libesp_hal_mspi.a:spi_flash_encrypt_hal_iram.* *libesp_hal_ledc.a:ledc_hal_iram.* *libesp_hal_i2c.a:i2c_hal_iram.* *libesp_hal_gpspi.a:spi_slave_hal_iram.* *libesp_hal_gpspi.a:spi_hal_iram.* *libesp_hal_gpio.a:gpio_hal.* *libesp_driver_rmt.a:rmt_tx.* *libphy.a *libgcov.a) .sdata2 EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_os_func_app.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *liblog.a:util.* *liblog.a:log_timestamp_common.* *liblog.a:log_print.* *liblog.a:log_lock.* *liblog.a:log_format_text.* *liblog.a:log.* *libheap.a:tlsf.* *libheap.a:multi_heap.* *libhal.a:mmu_hal.* *libhal.a:cache_hal_esp32.* *libesp_system.a:ubsan.* *libesp_system.a:reset_reason.* *libesp_system.a:image_process.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_mm.a:esp_cache_utils.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:cache_esp32.* *libesp_libc.a:stdatomic.* *libesp_libc.a:heap.* *libesp_libc.a:assert.* *libesp_libc.a:abort.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:clk_utils.* *libesp_hal_wdt.a:wdt_hal_iram.* *libesp_hal_mspi.a:spi_flash_hal_iram.* *libesp_hal_mspi.a:spi_flash_encrypt_hal_iram.* *libesp_hal_ledc.a:ledc_hal_iram.* *libesp_hal_i2c.a:i2c_hal_iram.* *libesp_hal_gpspi.a:spi_slave_hal_iram.* *libesp_hal_gpspi.a:spi_hal_iram.* *libesp_hal_gpio.a:gpio_hal.* *libesp_driver_rmt.a:rmt_tx.* *libphy.a *libgcov.a) .sdata2.* EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_os_func_app.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *liblog.a:util.* *liblog.a:log_timestamp_common.* *liblog.a:log_print.* *liblog.a:log_lock.* *liblog.a:log_format_text.* *liblog.a:log.* *libheap.a:tlsf.* *libheap.a:multi_heap.* *libhal.a:mmu_hal.* *libhal.a:cache_hal_esp32.* *libesp_system.a:ubsan.* *libesp_system.a:reset_reason.* *libesp_system.a:image_process.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_mm.a:esp_cache_utils.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:cache_esp32.* *libesp_libc.a:stdatomic.* *libesp_libc.a:heap.* *libesp_libc.a:assert.* *libesp_libc.a:abort.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:clk_utils.* *libesp_hal_wdt.a:wdt_hal_iram.* *libesp_hal_mspi.a:spi_flash_hal_iram.* *libesp_hal_mspi.a:spi_flash_encrypt_hal_iram.* *libesp_hal_ledc.a:ledc_hal_iram.* *libesp_hal_i2c.a:i2c_hal_iram.* *libesp_hal_gpspi.a:spi_slave_hal_iram.* *libesp_hal_gpspi.a:spi_hal_iram.* *libesp_hal_gpio.a:gpio_hal.* *libesp_driver_rmt.a:rmt_tx.* *libphy.a *libgcov.a) .srodata EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_os_func_app.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *liblog.a:util.* *liblog.a:log_timestamp_common.* *liblog.a:log_print.* *liblog.a:log_lock.* *liblog.a:log_format_text.* *liblog.a:log.* *libheap.a:tlsf.* *libheap.a:multi_heap.* *libhal.a:mmu_hal.* *libhal.a:cache_hal_esp32.* *libesp_system.a:ubsan.* *libesp_system.a:reset_reason.* *libesp_system.a:image_process.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_mm.a:esp_cache_utils.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:cache_esp32.* *libesp_libc.a:stdatomic.* *libesp_libc.a:heap.* *libesp_libc.a:assert.* *libesp_libc.a:abort.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:clk_utils.* *libesp_hal_wdt.a:wdt_hal_iram.* *libesp_hal_mspi.a:spi_flash_hal_iram.* *libesp_hal_mspi.a:spi_flash_encrypt_hal_iram.* *libesp_hal_ledc.a:ledc_hal_iram.* *libesp_hal_i2c.a:i2c_hal_iram.* *libesp_hal_gpspi.a:spi_slave_hal_iram.* *libesp_hal_gpspi.a:spi_hal_iram.* *libesp_hal_gpio.a:gpio_hal.* *libesp_driver_rmt.a:rmt_tx.* *libphy.a *libgcov.a) .srodata.*) + .rodata.console_open.str1.4 + 0x3f400120 0x8773 esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + 0xc (size before relaxing) + .rodata.esp_vfs_dev_console_register.str1.4 + 0x3f408893 0x0 esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + 0xd (size before relaxing) + *fill* 0x3f408893 0x1 + .rodata.s_vfs_console + 0x3f408894 0x34 esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + .rodata.s_vfs_console_select + 0x3f4088c8 0x18 esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + .rodata.s_vfs_console_dir + 0x3f4088e0 0x40 esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + .rodata.__esp_system_init_fn_init_show_app_info.str1.4 + 0x3f408920 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0xee (size before relaxing) + .rodata.__esp_system_init_fn_init_efuse_show_app_info.str1.4 + 0x3f408920 0x0 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + 0xa2 (size before relaxing) + .rodata.__esp_system_init_fn_init_efuse.str1.4 + 0x3f408920 0x0 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + 0x31 (size before relaxing) + .rodata.__FUNCTION__$0 + 0x3f408920 0x20 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .rodata.spi_bus_add_flash_device.str1.4 + 0x3f408940 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x5c (size before relaxing) + .rodata.esp_flash_init_default_chip.str1.4 + 0x3f408940 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x124 (size before relaxing) + .rodata.__esp_system_init_fn_init_flash.str1.4 + 0x3f408940 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x14 (size before relaxing) + .rodata.__func__$0 + 0x3f408940 0x20 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.__FUNCTION__$1 + 0x3f408960 0x1c esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.TAG 0x3f40897c 0xa esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.spi_flash_chip_list_check.str1.4 + 0x3f408986 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + 0xbd (size before relaxing) + .rodata.spi_flash_init_lock.str1.4 + 0x3f408986 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x45 (size before relaxing) + .rodata.str1.4 + 0x3f408986 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x101 (size before relaxing) + *fill* 0x3f408986 0x2 + .rodata.__func__$0 + 0x3f408988 0x1c esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .rodata.__func__$1 + 0x3f4089a4 0x31 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + *fill* 0x3f4089d5 0x3 + .rodata.__func__$2 + 0x3f4089d8 0x32 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + *fill* 0x3f408a0a 0x2 + .rodata.__func__$3 + 0x3f408a0c 0x14 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .rodata.s_merge_contiguous_pages.str1.4 + 0x3f408a20 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x44 (size before relaxing) + .rodata.spi_flash_munmap.str1.4 + 0x3f408a20 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x32 (size before relaxing) + .rodata.__func__$1 + 0x3f408a20 0x11 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .rodata.esp_mspi_get_io.str1.4 + 0x3f408a31 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x3f (size before relaxing) + *fill* 0x3f408a31 0x3 + .rodata.__func__$0 + 0x3f408a34 0x10 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .rodata.s_mspi_io_num_default + 0x3f408a44 0x6 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + *fill* 0x3f408a4a 0x2 + .rodata 0x3f408a4c 0x2a2 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x3f408cee 0x2 + .rodata.__func__$0 + 0x3f408cf0 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .rodata.__func__$1 + 0x3f408d00 0x17 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x3f408d17 0x1 + .rodata.io_mode_str + 0x3f408d18 0xb4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .rodata.str1.4 + 0x3f408dcc 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x42 (size before relaxing) + .rodata.esp_ipc_init.str1.4 + 0x3f408dcc 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x15 (size before relaxing) + .rodata.__func__$0 + 0x3f408dcc 0x9 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + *fill* 0x3f408dd5 0x3 + .rodata.__func__$1 + 0x3f408dd8 0xd esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .rodata.__esp_system_init_fn_init_show_cpu_freq.str1.4 + 0x3f408de5 0x0 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + 0x51 (size before relaxing) + .rodata.start_other_core.str1.4 + 0x3f408de5 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0xb9 (size before relaxing) + .rodata.system_early_init.str1.4 + 0x3f408de5 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x82 (size before relaxing) + *fill* 0x3f408de5 0x3 + .rodata 0x3f408de8 0x8 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .rodata.str1.4 + 0x3f408df0 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x33 (size before relaxing) + .rodata.__func__$0 + 0x3f408df0 0x1e esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .rodata.select_rtc_slow_clk.str1.4 + 0x3f408e0e 0x0 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x51 (size before relaxing) + .rodata.esp_clk_init.str1.4 + 0x3f408e0e 0x0 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x68 (size before relaxing) + *fill* 0x3f408e0e 0x2 + .rodata.__func__$0 + 0x3f408e10 0xd esp-idf/esp_system/libesp_system.a(clk.c.obj) + *fill* 0x3f408e1d 0x3 + .rodata 0x3f408e20 0x10 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .rodata 0x3f408e30 0x10 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .rodata.esp_panic_handler_increment_entry_count.str1.4 + 0x3f408e40 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x4c (size before relaxing) + .rodata.esp_panic_handler.str1.4 + 0x3f408e40 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x87 (size before relaxing) + .rodata.do_system_init_fn.str1.4 + 0x3f408e40 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x46 (size before relaxing) + .rodata.g_startup_fn + 0x3f408e40 0x8 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x3f408e40 g_startup_fn + .rodata.frame_to_panic_info.str1.4 + 0x3f408e48 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x8 (size before relaxing) + .rodata.print_state_for_core.str1.4 + 0x3f408e48 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x3 (size before relaxing) + .rodata.print_debug_exception_details.str1.4 + 0x3f408e48 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x93 (size before relaxing) + .rodata.print_illegal_instruction_details.str1.4 + 0x3f408e48 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x1a (size before relaxing) + .rodata.print_cache_err_details.str1.4 + 0x3f408e48 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x5f (size before relaxing) + .rodata.panic_print_registers.str1.4 + 0x3f408e48 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x1a1 (size before relaxing) + .rodata 0x3f408e48 0x60 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.panic_arch_fill_info.str1.4 + 0x3f408ea8 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x21 (size before relaxing) + .rodata.panic_soc_fill_info.str1.4 + 0x3f408ea8 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0xf (size before relaxing) + .rodata.str1.4 + 0x3f408ea8 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x28b (size before relaxing) + .rodata.pseudo_reason$0 + 0x3f408ea8 0x20 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.reason$1 + 0x3f408ec8 0xa0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.str1.4 + 0x3f408f68 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0xbd (size before relaxing) + .rodata.str1.1 + 0x3f408f68 0x10e esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + 0xf0 (size before relaxing) + *fill* 0x3f409076 0x2 + .rodata.__func__$0 + 0x3f409078 0x20 esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + .rodata.esp_log_cache_set_level.str1.4 + 0x3f409098 0x0 esp-idf/log/liblog.a(log_binary_heap.c.obj) + 0x95 (size before relaxing) + .rodata.__func__$0 + 0x3f409098 0x18 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .rodata.__func__$6 + 0x3f4090b0 0x11 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x3f4090c1 0x3 + .rodata.__func__$7 + 0x3f4090c4 0x12 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x3f4090d6 0x2 + .rodata.__func__$12 + 0x3f4090d8 0x19 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x3f4090f1 0x3 + .rodata.__func__$13 + 0x3f4090f4 0x11 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.register_heap.str1.4 + 0x3f409105 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x43 (size before relaxing) + .rodata.heap_caps_init.str1.4 + 0x3f409105 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x11c (size before relaxing) + *fill* 0x3f409105 0x3 + .rodata.__func__$1 + 0x3f409108 0x14 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .rodata.__func__$2 + 0x3f40911c 0xf esp-idf/heap/libheap.a(heap_caps_init.c.obj) + *fill* 0x3f40912b 0x1 + .rodata.__func__$3 + 0x3f40912c 0xe esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .rodata.s_prepare_reserved_regions.str1.4 + 0x3f40913a 0x0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0xfa (size before relaxing) + *fill* 0x3f40913a 0x2 + .rodata.__func__$0 + 0x3f40913c 0x1b esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + *fill* 0x3f409157 0x1 + .rodata.soc_memory_region_count + 0x3f409158 0x4 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x3f409158 soc_memory_region_count + .rodata.soc_memory_regions + 0x3f40915c 0x35c esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x3f40915c soc_memory_regions + .rodata.str1.4 + 0x3f4094b8 0x0 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x27 (size before relaxing) + .rodata.soc_memory_types + 0x3f4094b8 0x50 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x3f4094b8 soc_memory_types + .rodata.str1.4 + 0x3f409508 0x0 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x179 (size before relaxing) + .rodata.__func__$0 + 0x3f409508 0x17 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + *fill* 0x3f40951f 0x1 + .rodata.__func__$1 + 0x3f409520 0x18 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .rodata.__func__$2 + 0x3f409538 0xf esp-idf/heap/libheap.a(heap_caps_base.c.obj) + *fill* 0x3f409547 0x1 + .rodata.GPIO_PIN_MUX_REG + 0x3f409548 0xa0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + 0x3f409548 GPIO_PIN_MUX_REG + .rodata.find_desc_for_source.str1.4 + 0x3f4095e8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x39 (size before relaxing) + .rodata.is_vect_desc_usable.str1.4 + 0x3f4095e8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x49 (size before relaxing) + .rodata.esp_intr_alloc_intrstatus_bind.str1.4 + 0x3f4095e8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0xb2 (size before relaxing) + .rodata.intr_free_for_current_cpu.str1.4 + 0x3f4095e8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x4 (size before relaxing) + .rodata.__func__$0 + 0x3f4095e8 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x3f4095f9 0x3 + .rodata.__func__$1 + 0x3f4095fc 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x3f409616 0x2 + .rodata.__func__$2 + 0x3f409618 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x3f40962e 0x2 + .rodata.__func__$3 + 0x3f409630 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x3f409649 0x3 + .rodata.__func__$5 + 0x3f40964c 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.__func__$6 + 0x3f409660 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.periph_module_enable.str1.4 + 0x3f409675 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x4a (size before relaxing) + *fill* 0x3f409675 0x3 + .rodata.__func__$2 + 0x3f409678 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .rodata.esp_clk_tree_src_get_freq_hz.str1.4 + 0x3f40968d 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + 0xc1 (size before relaxing) + *fill* 0x3f40968d 0x3 + .rodata.__FUNCTION__$0 + 0x3f409690 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + *fill* 0x3f4096ad 0x3 + .rodata.g_spi_lock_main_flash_dev + 0x3f4096b0 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + 0x3f4096b0 g_spi_lock_main_flash_dev + .rodata.clk_tree_rtc_slow_calibration.str1.4 + 0x3f4096b4 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x4f (size before relaxing) + .rodata.esp_clk_tree_lp_fast_get_freq_hz.str1.4 + 0x3f4096b4 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x6 (size before relaxing) + .rodata.__func__$0 + 0x3f4096b4 0x21 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + *fill* 0x3f4096d5 0x3 + .rodata.__func__$1 + 0x3f4096d8 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .rodata.rtcio_ll_force_hold_disable.str1.4 + 0x3f4096f6 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + 0xe8 (size before relaxing) + *fill* 0x3f4096f6 0x2 + .rodata.__func__$0 + 0x3f4096f8 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata 0x3f409714 0x5 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .rodata.rtc_clk_cal_internal.str1.4 + 0x3f409719 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x9b (size before relaxing) + .rodata.rtc_clk_cal_ratio.str1.4 + 0x3f409719 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0xf (size before relaxing) + .rodata.rtc_time_get.str1.4 + 0x3f409719 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x5c (size before relaxing) + .rodata.rtc_clk_wait_for_slow_cycle.str1.4 + 0x3f409719 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x29 (size before relaxing) + *fill* 0x3f409719 0x3 + .rodata.__func__$9 + 0x3f40971c 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.__func__$1 + 0x3f409728 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.esp_cpu_intr_get_desc.str1.4 + 0x3f40973d 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + 0x82 (size before relaxing) + *fill* 0x3f40973d 0x3 + .rodata.__func__$0 + 0x3f409740 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + *fill* 0x3f409756 0x2 + .rodata.intr_desc_table + 0x3f409758 0x200 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .rodata.s_sleep_hook_register.str1.4 + 0x3f409958 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x4b (size before relaxing) + .rodata.str1.4 + 0x3f409958 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x1ec (size before relaxing) + .rodata.esp_sleep_sub_mode_config.str1.4 + 0x3f409958 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x70 (size before relaxing) + .rodata.esp_sleep_sub_mode_dump_config.str1.4 + 0x3f409958 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x29 (size before relaxing) + .rodata.s_submode2str + 0x3f409958 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.main_task.str1.4 + 0x3f409980 0x0 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0xba (size before relaxing) + .rodata.esp_startup_start_app.str1.4 + 0x3f409980 0x0 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0x40 (size before relaxing) + .rodata.__func__$0 + 0x3f409980 0xa esp-idf/freertos/libfreertos.a(app_startup.c.obj) + *fill* 0x3f40998a 0x2 + .rodata.__func__$1 + 0x3f40998c 0x16 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .rodata.prvNotifyQueueSetContainer.str1.4 + 0x3f4099a2 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x8f (size before relaxing) + .rodata.xQueueGenericReset.str1.4 + 0x3f4099a2 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x2c (size before relaxing) + .rodata.xQueueGenericCreateStatic.str1.4 + 0x3f4099a2 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x37 (size before relaxing) + .rodata.xQueueGenericGetStaticBuffers.str1.4 + 0x3f4099a2 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xf (size before relaxing) + .rodata.xQueueGetMutexHolder.str1.4 + 0x3f4099a2 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xb (size before relaxing) + .rodata.xQueueCreateCountingSemaphoreStatic.str1.4 + 0x3f4099a2 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x8 (size before relaxing) + .rodata.xQueueGenericSend.str1.4 + 0x3f4099a2 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xfb (size before relaxing) + .rodata.prvInitialiseMutex.str1.4 + 0x3f4099a2 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x3b (size before relaxing) + .rodata.xQueueGiveMutexRecursive.str1.4 + 0x3f4099a2 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x8 (size before relaxing) + .rodata.xQueueGiveFromISR.str1.4 + 0x3f4099a2 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x7d (size before relaxing) + .rodata.xQueueReceive.str1.4 + 0x3f4099a2 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x66 (size before relaxing) + .rodata.xQueueReceiveFromISR.str1.4 + 0x3f4099a2 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x52 (size before relaxing) + *fill* 0x3f4099a2 0x2 + .rodata.__func__$2 + 0x3f4099a4 0xd esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3f4099b1 0x3 + .rodata.__func__$4 + 0x3f4099b4 0x17 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3f4099cb 0x1 + .rodata.__func__$7 + 0x3f4099cc 0x15 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3f4099e1 0x3 + .rodata.__func__$9 + 0x3f4099e4 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$11 + 0x3f4099f8 0x12 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3f409a0a 0x2 + .rodata.__func__$12 + 0x3f409a0c 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3f409a25 0x3 + .rodata.__func__$13 + 0x3f409a28 0x1b esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3f409a43 0x1 + .rodata.__func__$14 + 0x3f409a44 0x12 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3f409a56 0x2 + .rodata.__func__$16 + 0x3f409a58 0x24 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$17 + 0x3f409a7c 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3f409a95 0x3 + .rodata.__func__$18 + 0x3f409a98 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3f409ab1 0x3 + .rodata.__func__$20 + 0x3f409ab4 0x15 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3f409ac9 0x3 + .rodata.__func__$21 + 0x3f409acc 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$22 + 0x3f409ae0 0x1e esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3f409afe 0x2 + .rodata.__func__$23 + 0x3f409b00 0x1a esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3f409b1a 0x2 + .rodata.__func__$24 + 0x3f409b1c 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$25 + 0x3f409b30 0x13 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.prvIsYieldRequiredSMP.str1.4 + 0x3f409b43 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4a (size before relaxing) + .rodata.prvSelectHighestPriorityTaskSMP.str1.4 + 0x3f409b43 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x27 (size before relaxing) + .rodata.prvDeleteTCB.str1.4 + 0x3f409b43 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x32 (size before relaxing) + .rodata.prvInitialiseNewTask.str1.4 + 0x3f409b43 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x14 (size before relaxing) + .rodata.eTaskGetState.str1.4 + 0x3f409b43 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x6 (size before relaxing) + .rodata.xTaskIncrementTick.str1.4 + 0x3f409b43 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8e (size before relaxing) + .rodata.vTaskPlaceOnEventList.str1.4 + 0x3f409b43 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xc (size before relaxing) + .rodata.xTaskRemoveFromEventList.str1.4 + 0x3f409b43 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x49 (size before relaxing) + .rodata.vTaskSetTimeOutState.str1.4 + 0x3f409b43 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xa (size before relaxing) + .rodata.xTaskCheckForTimeOut.str1.4 + 0x3f409b43 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xe (size before relaxing) + .rodata.vTaskPrioritySet.str1.4 + 0x3f409b43 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x17 (size before relaxing) + .rodata.vTaskDelete.str1.4 + 0x3f409b43 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x7f (size before relaxing) + .rodata.xTaskResumeAll.str1.4 + 0x3f409b43 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x7f (size before relaxing) + .rodata.xTaskPriorityDisinherit.str1.4 + 0x3f409b43 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x41 (size before relaxing) + .rodata.vTaskPriorityDisinheritAfterTimeout.str1.4 + 0x3f409b43 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x2b (size before relaxing) + .rodata.ulTaskGenericNotifyTake.str1.4 + 0x3f409b43 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x12 (size before relaxing) + .rodata.xTaskGenericNotify.str1.4 + 0x3f409b43 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x83 (size before relaxing) + .rodata.xTaskIncrementTickOtherCores.str1.4 + 0x3f409b43 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x55 (size before relaxing) + .rodata.xTaskCreatePinnedToCore.str1.4 + 0x3f409b43 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xbc (size before relaxing) + .rodata.xTaskCreateStaticPinnedToCore.str1.4 + 0x3f409b43 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x65 (size before relaxing) + .rodata.prvCreateIdleTasks.str1.4 + 0x3f409b43 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x5 (size before relaxing) + .rodata.vTaskStartScheduler.str1.4 + 0x3f409b43 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x12 (size before relaxing) + .rodata.xTaskGetIdleTaskHandleForCore.str1.4 + 0x3f409b43 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xbe (size before relaxing) + *fill* 0x3f409b43 0x1 + .rodata.__func__$2 + 0x3f409b44 0x21 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f409b65 0x3 + .rodata.__func__$3 + 0x3f409b68 0x1e esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f409b86 0x2 + .rodata.__func__$4 + 0x3f409b88 0x1e esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f409ba6 0x2 + .rodata.__func__$5 + 0x3f409ba8 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f409bbd 0x3 + .rodata.__func__$6 + 0x3f409bc0 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$7 + 0x3f409bd8 0x1d esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f409bf5 0x3 + .rodata.__func__$9 + 0x3f409bf8 0x1e esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f409c16 0x2 + .rodata.__func__$11 + 0x3f409c18 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f409c2b 0x1 + .rodata.__func__$13 + 0x3f409c2c 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$14 + 0x3f409c44 0x24 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$15 + 0x3f409c68 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$17 + 0x3f409c80 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f409c95 0x3 + .rodata.__func__$20 + 0x3f409c98 0x19 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f409cb1 0x3 + .rodata.__func__$23 + 0x3f409cb4 0x16 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f409cca 0x2 + .rodata.__func__$24 + 0x3f409ccc 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$25 + 0x3f409cec 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f409cff 0x1 + .rodata.__func__$30 + 0x3f409d00 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f409d0e 0x2 + .rodata.__func__$31 + 0x3f409d10 0xf esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f409d1f 0x1 + .rodata.__func__$32 + 0x3f409d20 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$37 + 0x3f409d34 0x16 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f409d4a 0x2 + .rodata.__func__$38 + 0x3f409d4c 0x11 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f409d5d 0x3 + .rodata.__func__$40 + 0x3f409d60 0xb esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f409d6b 0x1 + .rodata.__func__$42 + 0x3f409d6c 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f409d79 0x3 + .rodata.__func__$43 + 0x3f409d7c 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.uxTopUsedPriority + 0x3f409d88 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3f409d88 uxTopUsedPriority + .rodata.vPortTaskWrapper.str1.4 + 0x3f409d8c 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x4d (size before relaxing) + .rodata.vPortTLSPointersDelCb.str1.4 + 0x3f409d8c 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x67 (size before relaxing) + .rodata.pxPortInitialiseStack.str1.4 + 0x3f409d8c 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x65 (size before relaxing) + .rodata.xPortEnterCriticalTimeout.str1.4 + 0x3f409d8c 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0xef (size before relaxing) + .rodata.vPortExitCritical.str1.4 + 0x3f409d8c 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x40 (size before relaxing) + .rodata.vApplicationStackOverflowHook.str1.4 + 0x3f409d8c 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3c (size before relaxing) + .rodata.__func__$0 + 0x3f409d8c 0x11 esp-idf/freertos/libfreertos.a(port.c.obj) + *fill* 0x3f409d9d 0x3 + .rodata.__func__$1 + 0x3f409da0 0x12 esp-idf/freertos/libfreertos.a(port.c.obj) + *fill* 0x3f409db2 0x2 + .rodata.__func__$2 + 0x3f409db4 0x11 esp-idf/freertos/libfreertos.a(port.c.obj) + *fill* 0x3f409dc5 0x3 + .rodata.__func__$4 + 0x3f409dc8 0x16 esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.prvTaskDeleteWithCaps.str1.4 + 0x3f409dde 0x0 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + 0xc0 (size before relaxing) + *fill* 0x3f409dde 0x2 + .rodata.__func__$1 + 0x3f409de0 0x19 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + *fill* 0x3f409df9 0x3 + .rodata.__func__$2 + 0x3f409dfc 0x15 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .rodata.vApplicationGetIdleTaskMemory.str1.4 + 0x3f409e11 0x0 esp-idf/freertos/libfreertos.a(port_common.c.obj) + 0x5a (size before relaxing) + *fill* 0x3f409e11 0x3 + .rodata.__func__$1 + 0x3f409e14 0x1e esp-idf/freertos/libfreertos.a(port_common.c.obj) + .rodata.__esp_system_init_fn_init_libc_stdio.str1.4 + 0x3f409e32 0x0 esp-idf/esp_libc/libesp_libc.a(init.c.obj) + 0xd (size before relaxing) + .rodata.str1.4 + 0x3f409e32 0x0 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x99 (size before relaxing) + .rodata.esp_libc_locks_init.str1.4 + 0x3f409e32 0x0 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0xa5 (size before relaxing) + *fill* 0x3f409e32 0x2 + .rodata.__func__$4 + 0x3f409e34 0x14 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .rodata.__func__$3 + 0x3f409e48 0x13 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + *fill* 0x3f409e5b 0x1 + .rodata.__func__$2 + 0x3f409e5c 0x15 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + *fill* 0x3f409e71 0x3 + .rodata.__func__$1 + 0x3f409e74 0x15 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + *fill* 0x3f409e89 0x3 + .rodata.__func__$0 + 0x3f409e8c 0xc esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .rodata.esp_libc_init_global_stdio.str1.4 + 0x3f409e98 0x0 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + 0x56 (size before relaxing) + .rodata.__func__$0 + 0x3f409e98 0x1b esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + .rodata.pthread_exit.str1.4 + 0x3f409eb3 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x57 (size before relaxing) + .rodata.pthread_mutex_unlock.str1.4 + 0x3f409eb3 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x23 (size before relaxing) + *fill* 0x3f409eb3 0x1 + .rodata.__func__$0 + 0x3f409eb4 0x15 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_cleanup_thread_specific_data_callback.str1.4 + 0x3f409ec9 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x3d (size before relaxing) + *fill* 0x3f409ec9 0x3 + .rodata.__func__$0 + 0x3f409ecc 0x2e esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .rodata.esp_timer_impl_init_system_time.str1.4 + 0x3f409efa 0x0 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0x46 (size before relaxing) + .rodata.uart_access.str1.4 + 0x3f409efa 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0xb (size before relaxing) + .rodata.uart_rx_char.str1.4 + 0x3f409efa 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0xca (size before relaxing) + .rodata.uart_tx_char.str1.4 + 0x3f409efa 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x90 (size before relaxing) + .rodata.uart_fcntl.str1.4 + 0x3f409efa 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x44 (size before relaxing) + .rodata.uart_return_char.str1.4 + 0x3f409efa 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x1d (size before relaxing) + .rodata.uart_read.str1.4 + 0x3f409efa 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0xa (size before relaxing) + .rodata.uart_vfs_dev_register.str1.4 + 0x3f409efa 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x87 (size before relaxing) + *fill* 0x3f409efa 0x2 + .rodata.__func__$0 + 0x3f409efc 0x16 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x3f409f12 0x2 + .rodata.__func__$1 + 0x3f409f14 0xb esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x3f409f1f 0x1 + .rodata.__func__$2 + 0x3f409f20 0x11 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x3f409f31 0x3 + .rodata.__func__$3 + 0x3f409f34 0xa esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x3f409f3e 0x2 + .rodata.__func__$4 + 0x3f409f40 0xb esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x3f409f4b 0x1 + .rodata.__func__$5 + 0x3f409f4c 0xb esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x3f409f57 0x1 + .rodata.__func__$6 + 0x3f409f58 0xb esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x3f409f63 0x1 + .rodata.__func__$7 + 0x3f409f64 0x15 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x3f409f79 0x3 + .rodata.__func__$8 + 0x3f409f7c 0x14 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .rodata.__func__$9 + 0x3f409f90 0xb esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x3f409f9b 0x1 + .rodata.s_vfs_uart + 0x3f409f9c 0x34 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .rodata.s_vfs_uart_select + 0x3f409fd0 0x18 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .rodata.s_vfs_uart_dir + 0x3f409fe8 0x40 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .rodata.s_uart_mount_points + 0x3f40a028 0xc esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .rodata.s_ctx 0x3f40a034 0xc esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .rodata.uart_reenable_intr_mask.str1.4 + 0x3f40a040 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x2c (size before relaxing) + .rodata.uart_pattern_enqueue.str1.4 + 0x3f40a040 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x46 (size before relaxing) + .rodata.uart_set_word_length.str1.4 + 0x3f40a040 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x24 (size before relaxing) + .rodata.uart_set_baudrate.str1.4 + 0x3f40a040 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x54 (size before relaxing) + .rodata.uart_set_hw_flow_ctrl.str1.4 + 0x3f40a040 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x58 (size before relaxing) + .rodata.uart_pattern_pop_pos.str1.4 + 0x3f40a040 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x27 (size before relaxing) + .rodata.uart_enable_tx_intr.str1.4 + 0x3f40a040 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x30 (size before relaxing) + .rodata._uart_set_pin6.str1.4 + 0x3f40a040 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x171 (size before relaxing) + .rodata.uart_param_config.str1.4 + 0x3f40a040 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x80 (size before relaxing) + .rodata.uart_wait_tx_done.str1.4 + 0x3f40a040 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x98 (size before relaxing) + .rodata.uart_tx_chars.str1.4 + 0x3f40a040 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x21 (size before relaxing) + .rodata.uart_write_bytes_with_break.str1.4 + 0x3f40a040 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x71 (size before relaxing) + .rodata.uart_driver_delete.str1.4 + 0x3f40a040 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x1a (size before relaxing) + .rodata.uart_driver_install.str1.4 + 0x3f40a040 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x1c8 (size before relaxing) + .rodata.__FUNCTION__$39 + 0x3f40a040 0x13 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + *fill* 0x3f40a053 0x1 + .rodata.__FUNCTION__$37 + 0x3f40a054 0x14 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__$34 + 0x3f40a068 0x1b esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + *fill* 0x3f40a083 0x1 + .rodata.__FUNCTION__$33 + 0x3f40a084 0x18 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__$32 + 0x3f40a09c 0x10 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__$30 + 0x3f40a0ac 0x11 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + *fill* 0x3f40a0bd 0x3 + .rodata.__func__$28 + 0x3f40a0c0 0x12 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + *fill* 0x3f40a0d2 0x2 + .rodata.__FUNCTION__$27 + 0x3f40a0d4 0x12 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + *fill* 0x3f40a0e6 0x2 + .rodata.__FUNCTION__$26 + 0x3f40a0e8 0x11 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + *fill* 0x3f40a0f9 0x3 + .rodata.__FUNCTION__$25 + 0x3f40a0fc 0x12 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + *fill* 0x3f40a10e 0x2 + .rodata.__FUNCTION__$20 + 0x3f40a110 0xf esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + *fill* 0x3f40a11f 0x1 + .rodata.__FUNCTION__$19 + 0x3f40a120 0x14 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.__FUNCTION__$17 + 0x3f40a134 0x19 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + *fill* 0x3f40a14d 0x3 + .rodata.__FUNCTION__$14 + 0x3f40a150 0x17 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .rodata.nvs_flash_init.str1.4 + 0x3f40a167 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + *fill* 0x3f40a167 0x1 + .rodata._ZTVN3nvs9PartitionE + 0x3f40a168 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x3f40a168 vtable for nvs::Partition + .rodata._ZTVN3nvs12NVSPartitionE + 0x3f40a19c 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x3f40a19c vtable for nvs::NVSPartition + .rodata._ZTVN3nvs19NVSPartitionManagerE + 0x3f40a1d0 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x3f40a1d0 vtable for nvs::NVSPartitionManager + .rodata.esp_vfs_register_fs_common.str1.4 + 0x3f40a1e0 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x1 (size before relaxing) + .rodata.esp_minify_vfs.str1.4 + 0x3f40a1e0 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x27 (size before relaxing) + .rodata.translate_path.str1.4 + 0x3f40a1e0 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x43 (size before relaxing) + .rodata.__func__$1 + 0x3f40a1e0 0xf esp-idf/vfs/libvfs.a(vfs.c.obj) + .rodata.vfs_null_open.str1.4 + 0x3f40a1ef 0x0 esp-idf/vfs/libvfs.a(nullfs.c.obj) + 0x2 (size before relaxing) + .rodata.esp_vfs_null_register.str1.4 + 0x3f40a1ef 0x0 esp-idf/vfs/libvfs.a(nullfs.c.obj) + 0xa (size before relaxing) + *fill* 0x3f40a1ef 0x1 + .rodata.s_vfs_null + 0x3f40a1f0 0x34 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .rodata.s_vfs_null_dir + 0x3f40a224 0x40 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .rodata.print_device_type_mix.str1.4 + 0x3f40a264 0x0 esp-idf/main/libmain.a(main.c.obj) + 0xfd (size before relaxing) + .rodata.modbus_rtu_task.str1.4 + 0x3f40a264 0x0 esp-idf/main/libmain.a(main.c.obj) + 0xbe (size before relaxing) + .rodata.spiffs_init.str1.4 + 0x3f40a264 0x0 esp-idf/main/libmain.a(main.c.obj) + 0x62 (size before relaxing) + .rodata.spiffs_list_files.str1.4 + 0x3f40a264 0x0 esp-idf/main/libmain.a(main.c.obj) + 0xa6 (size before relaxing) + .rodata.modbus_uart_init.str1.4 + 0x3f40a264 0x0 esp-idf/main/libmain.a(main.c.obj) + 0x117 (size before relaxing) + .rodata.file_exists.str1.4 + 0x3f40a264 0x0 esp-idf/main/libmain.a(main.c.obj) + 0x2 (size before relaxing) + .rodata.app_main.str1.4 + 0x3f40a264 0x0 esp-idf/main/libmain.a(main.c.obj) + 0xc30 (size before relaxing) + .rodata.__func__$0 + 0x3f40a264 0x10 esp-idf/main/libmain.a(main.c.obj) + .rodata.__func__$1 + 0x3f40a274 0x9 esp-idf/main/libmain.a(main.c.obj) + .rodata.parse_point_type.str1.4 + 0x3f40a27d 0x0 esp-idf/main/libmain.a(modbus_points.c.obj) + 0x39 (size before relaxing) + .rodata.parse_data_type.str1.4 + 0x3f40a27d 0x0 esp-idf/main/libmain.a(modbus_points.c.obj) + 0x27 (size before relaxing) + .rodata.parse_pics_data_type.str1.4 + 0x3f40a27d 0x0 esp-idf/main/libmain.a(modbus_points.c.obj) + 0x1f (size before relaxing) + .rodata.append_helper_points.str1.4 + 0x3f40a27d 0x0 esp-idf/main/libmain.a(modbus_points.c.obj) + 0xb (size before relaxing) + .rodata.modbus_points_load.str1.4 + 0x3f40a27d 0x0 esp-idf/main/libmain.a(modbus_points.c.obj) + 0x1d0 (size before relaxing) + .rodata.modbus_rtu_add_device.str1.4 + 0x3f40a27d 0x0 esp-idf/main/libmain.a(modbus_rtu.c.obj) + 0x4e (size before relaxing) + .rodata.modbus_rtu_process_request.str1.4 + 0x3f40a27d 0x0 esp-idf/main/libmain.a(modbus_rtu.c.obj) + 0x2c (size before relaxing) + .rodata.copy_str.str1.4 + 0x3f40a27d 0x0 esp-idf/main/libmain.a(config_store.c.obj) + 0x1 (size before relaxing) + .rodata.set_device_defaults.str1.4 + 0x3f40a27d 0x0 esp-idf/main/libmain.a(config_store.c.obj) + 0xa (size before relaxing) + .rodata.parse_parity.str1.4 + 0x3f40a27d 0x0 esp-idf/main/libmain.a(config_store.c.obj) + 0x14 (size before relaxing) + .rodata.parse_bool.str1.4 + 0x3f40a27d 0x0 esp-idf/main/libmain.a(config_store.c.obj) + 0x1e (size before relaxing) + .rodata.config_store_load.str1.4 + 0x3f40a27d 0x0 esp-idf/main/libmain.a(config_store.c.obj) + 0x84 (size before relaxing) + .rodata.vfs_spiffs_telldir.str1.4 + 0x3f40a27d 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x2d (size before relaxing) + .rodata.esp_spiffs_init.str1.4 + 0x3f40a27d 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x46f (size before relaxing) + .rodata.vfs_spiffs_update_mtime_value.str1.4 + 0x3f40a27d 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x29 (size before relaxing) + .rodata.vfs_spiffs_utime.str1.4 + 0x3f40a27d 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x5 (size before relaxing) + .rodata.vfs_spiffs_opendir.str1.4 + 0x3f40a27d 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x5 (size before relaxing) + .rodata.vfs_spiffs_rename.str1.4 + 0x3f40a27d 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x8 (size before relaxing) + .rodata.vfs_spiffs_stat.str1.4 + 0x3f40a27d 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x3 (size before relaxing) + .rodata.esp_vfs_spiffs_register.str1.4 + 0x3f40a27d 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x10 (size before relaxing) + *fill* 0x3f40a27d 0x3 + .rodata.__func__$0 + 0x3f40a280 0x10 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .rodata.__func__$1 + 0x3f40a290 0x11 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x3f40a2a1 0x3 + .rodata.__func__$2 + 0x3f40a2a4 0x10 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .rodata.__func__$3 + 0x3f40a2b4 0x12 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x3f40a2c6 0x2 + .rodata.__func__$4 + 0x3f40a2c8 0x12 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x3f40a2da 0x2 + .rodata.__func__$5 + 0x3f40a2dc 0x13 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x3f40a2ef 0x1 + .rodata.__func__$6 + 0x3f40a2f0 0x13 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x3f40a303 0x1 + .rodata.__func__$7 + 0x3f40a304 0x15 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x3f40a319 0x3 + .rodata.__func__$8 + 0x3f40a31c 0x13 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x3f40a32f 0x1 + .rodata.__func__$9 + 0x3f40a330 0x13 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x3f40a343 0x1 + .rodata.__func__$10 + 0x3f40a344 0x14 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .rodata.__func__$11 + 0x3f40a358 0x14 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .rodata.__func__$12 + 0x3f40a36c 0x11 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x3f40a37d 0x3 + .rodata.__func__$13 + 0x3f40a380 0x18 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .rodata.s_vfs_spiffs + 0x3f40a398 0x34 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .rodata.s_vfs_spiffs_dir + 0x3f40a3cc 0x40 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .rodata.spiffs_api_read.str1.4 + 0x3f40a40c 0x0 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x47 (size before relaxing) + .rodata.spiffs_api_write.str1.4 + 0x3f40a40c 0x0 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x40 (size before relaxing) + .rodata.spiffs_api_erase.str1.4 + 0x3f40a40c 0x0 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x40 (size before relaxing) + .rodata.spiffs_api_check.str1.4 + 0x3f40a40c 0x0 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x30 (size before relaxing) + .rodata.str1.4 + 0x3f40a40c 0x0 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x75 (size before relaxing) + .rodata.spiffs_check_report_str$0 + 0x3f40a40c 0x1c esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + .rodata.spiffs_check_type_str$1 + 0x3f40a428 0xc esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + .rodata.str1.4 + 0x3f40a434 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0x23 (size before relaxing) + *fill* 0x3f40a434 0xc + .rodata 0x3f40a440 0x24 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x3f40a440 _xt_coproc_sa_offset + .rodata.clk_hal_lp_slow_get_freq_hz.str1.4 + 0x3f40a464 0x0 esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) + 0x3f (size before relaxing) + .rodata.clk_hal_cpu_get_freq_hz.str1.4 + 0x3f40a464 0x0 esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) + 0x28 (size before relaxing) + .rodata.get_flash_clock_divider.str1.4 + 0x3f40a464 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + 0x7c (size before relaxing) + .rodata.load_partitions.str1.4 + 0x3f40a464 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x66 (size before relaxing) + .rodata.ensure_partitions_loaded.str1.4 + 0x3f40a464 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x2b (size before relaxing) + .rodata.esp_partition_blockdev_erase.str1.4 + 0x3f40a464 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x3f (size before relaxing) + .rodata.esp_partition_next.str1.4 + 0x3f40a464 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x3 (size before relaxing) + .rodata.esp_partition_get.str1.4 + 0x3f40a464 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x11 (size before relaxing) + .rodata.__func__$4 + 0x3f40a464 0x12 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + *fill* 0x3f40a476 0x2 + .rodata.__func__$5 + 0x3f40a478 0x13 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.esp_partition_write.str1.4 + 0x3f40a48b 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x46 (size before relaxing) + *fill* 0x3f40a48b 0x1 + .rodata.__func__$0 + 0x3f40a48c 0x13 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + *fill* 0x3f40a49f 0x1 + .rodata.__func__$1 + 0x3f40a4a0 0x1a esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + *fill* 0x3f40a4ba 0x2 + .rodata.__func__$2 + 0x3f40a4bc 0x18 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .rodata.__func__$3 + 0x3f40a4d4 0x17 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + *fill* 0x3f40a4eb 0x1 + .rodata.__func__$4 + 0x3f40a4ec 0x14 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .rodata.__func__$5 + 0x3f40a500 0x13 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .rodata.gpio_input_disable.str1.4 + 0x3f40a513 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x32 (size before relaxing) + .rodata.gpio_ll_pullup_en.str1.4 + 0x3f40a513 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0xe6 (size before relaxing) + .rodata.gpio_sleep_output_enable.str1.4 + 0x3f40a513 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x1b (size before relaxing) + .rodata.gpio_pullup_en.str1.4 + 0x3f40a513 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x36 (size before relaxing) + .rodata.gpio_set_direction.str1.4 + 0x3f40a513 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x29 (size before relaxing) + *fill* 0x3f40a513 0x1 + .rodata.__FUNCTION__$29 + 0x3f40a514 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + *fill* 0x3f40a527 0x1 + .rodata.__FUNCTION__$30 + 0x3f40a528 0x12 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + *fill* 0x3f40a53a 0x2 + .rodata.__FUNCTION__$31 + 0x3f40a53c 0x12 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + *fill* 0x3f40a54e 0x2 + .rodata.__FUNCTION__$32 + 0x3f40a550 0x11 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + *fill* 0x3f40a561 0x3 + .rodata.__FUNCTION__$45 + 0x3f40a564 0xf esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + *fill* 0x3f40a573 0x1 + .rodata.__FUNCTION__$47 + 0x3f40a574 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + *fill* 0x3f40a587 0x1 + .rodata.__FUNCTION__$48 + 0x3f40a588 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + *fill* 0x3f40a59b 0x1 + .rodata.__FUNCTION__$50 + 0x3f40a59c 0xf esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + *fill* 0x3f40a5ab 0x1 + .rodata.__FUNCTION__$51 + 0x3f40a5ac 0xf esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + *fill* 0x3f40a5bb 0x1 + .rodata.__FUNCTION__$52 + 0x3f40a5bc 0x10 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$53 + 0x3f40a5cc 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + *fill* 0x3f40a5df 0x1 + .rodata.__FUNCTION__$54 + 0x3f40a5e0 0x14 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$55 + 0x3f40a5f4 0x12 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + *fill* 0x3f40a606 0x2 + .rodata.__FUNCTION__$56 + 0x3f40a608 0x12 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + *fill* 0x3f40a61a 0x2 + .rodata.__FUNCTION__$59 + 0x3f40a61c 0x12 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + *fill* 0x3f40a62e 0x2 + .rodata.__func__$63 + 0x3f40a630 0x12 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + *fill* 0x3f40a642 0x2 + .rodata.__FUNCTION__$64 + 0x3f40a644 0xf esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.rtcio_ll_iomux_func_sel.str1.4 + 0x3f40a653 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + 0xf4 (size before relaxing) + .rodata.rtcio_ll_function_select.str1.4 + 0x3f40a653 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + 0x174 (size before relaxing) + .rodata.rtc_gpio_init.str1.4 + 0x3f40a653 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + 0x30 (size before relaxing) + *fill* 0x3f40a653 0x1 + .rodata.__func__$9 + 0x3f40a654 0x1a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + *fill* 0x3f40a66e 0x2 + .rodata.__FUNCTION__$10 + 0x3f40a670 0x16 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + *fill* 0x3f40a686 0x2 + .rodata.__func__$15 + 0x3f40a688 0x17 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + *fill* 0x3f40a69f 0x1 + .rodata.__FUNCTION__$16 + 0x3f40a6a0 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + *fill* 0x3f40a6b3 0x1 + .rodata.__FUNCTION__$25 + 0x3f40a6b4 0x10 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__func__$26 + 0x3f40a6c4 0x18 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__func__$27 + 0x3f40a6dc 0x19 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.uart_hal_rxfifo_rst.str1.4 + 0x3f40a6f5 0x0 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal_iram.c.obj) + 0xca (size before relaxing) + .rodata.uart_hal_write_txfifo.str1.4 + 0x3f40a6f5 0x0 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal_iram.c.obj) + 0x90 (size before relaxing) + *fill* 0x3f40a6f5 0x3 + .rodata.__func__$0 + 0x3f40a6f8 0x14 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal_iram.c.obj) + .rodata.__func__$1 + 0x3f40a70c 0x15 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal_iram.c.obj) + *fill* 0x3f40a721 0x3 + .rodata.__func__$2 + 0x3f40a724 0x13 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal_iram.c.obj) + *fill* 0x3f40a737 0x1 + .rodata.uart_periph_signal + 0x3f40a738 0x54 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_periph.c.obj) + 0x3f40a738 uart_periph_signal + .rodata.s_get_bus_mask.str1.4 + 0x3f40a78c 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x91 (size before relaxing) + .rodata.s_reserve_irom_region.str1.4 + 0x3f40a78c 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0xbe (size before relaxing) + .rodata.s_reserve_drom_region.str1.4 + 0x3f40a78c 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x8b (size before relaxing) + .rodata.esp_mmu_map_init.str1.4 + 0x3f40a78c 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x93 (size before relaxing) + .rodata.esp_mmu_map_get_max_consecutive_free_block_size.str1.4 + 0x3f40a78c 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x46 (size before relaxing) + .rodata.esp_mmu_map.str1.4 + 0x3f40a78c 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x12e (size before relaxing) + .rodata.esp_mmu_unmap.str1.4 + 0x3f40a78c 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x8c (size before relaxing) + .rodata.esp_mmu_vaddr_to_paddr.str1.4 + 0x3f40a78c 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x64 (size before relaxing) + .rodata.__FUNCTION__$1 + 0x3f40a78c 0x17 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x3f40a7a3 0x1 + .rodata.__FUNCTION__$2 + 0x3f40a7a4 0xe esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x3f40a7b2 0x2 + .rodata.__func__$3 + 0x3f40a7b4 0xc esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.__FUNCTION__$4 + 0x3f40a7c0 0xc esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.__func__$7 + 0x3f40a7cc 0x16 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x3f40a7e2 0x2 + .rodata.__func__$8 + 0x3f40a7e4 0x14 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.__func__$9 + 0x3f40a7f8 0x16 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x3f40a80e 0x2 + .rodata.__func__$10 + 0x3f40a810 0x11 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.str1.4 + 0x3f40a821 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x5 (size before relaxing) + *fill* 0x3f40a821 0x3 + .rodata.g_mmu_mem_regions + 0x3f40a824 0x48 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + 0x3f40a824 g_mmu_mem_regions + .rodata.str1.4 + 0x3f40a86c 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x7f (size before relaxing) + .rodata.__func__$8 + 0x3f40a86c 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.str1.4 + 0x3f40a894 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x58 (size before relaxing) + .rodata.esp_crosscore_int_init.str1.4 + 0x3f40a894 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x2f (size before relaxing) + .rodata.__func__$0 + 0x3f40a894 0x17 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + *fill* 0x3f40a8ab 0x1 + .rodata.__func__$1 + 0x3f40a8ac 0x17 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .rodata.add_entry.str1.4 + 0x3f40a8c3 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xa8 (size before relaxing) + .rodata.delete_entry.str1.4 + 0x3f40a8c3 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x48 (size before relaxing) + .rodata.task_wdt_timeout_abort.str1.4 + 0x3f40a8c3 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xb0 (size before relaxing) + .rodata.esp_task_wdt_add.str1.4 + 0x3f40a8c3 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x30 (size before relaxing) + .rodata.subscribe_idle.str1.4 + 0x3f40a8c3 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xa8 (size before relaxing) + .rodata.esp_task_wdt_init.str1.4 + 0x3f40a8c3 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x81 (size before relaxing) + .rodata.esp_task_wdt_print_triggered_tasks.str1.4 + 0x3f40a8c3 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xad (size before relaxing) + .rodata.task_wdt_isr.str1.4 + 0x3f40a8c3 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x27 (size before relaxing) + *fill* 0x3f40a8c3 0x1 + .rodata.__FUNCTION__$5 + 0x3f40a8c4 0x13 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x3f40a8d7 0x1 + .rodata.__FUNCTION__$7 + 0x3f40a8d8 0xa esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x3f40a8e2 0x2 + .rodata.__FUNCTION__$8 + 0x3f40a8e4 0x11 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x3f40a8f5 0x3 + .rodata.__func__$12 + 0x3f40a8f8 0xf esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x3f40a907 0x1 + .rodata.__func__$13 + 0x3f40a908 0xd esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x3f40a915 0x3 + .rodata.__FUNCTION__$14 + 0x3f40a918 0x12 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x3f40a92a 0x2 + .rodata.__func__$15 + 0x3f40a92c 0x17 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x3f40a943 0x1 + .rodata.esp_unknown_msg + 0x3f40a944 0x6 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .rodata.str1.4 + 0x3f40a94a 0x0 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + 0x1786 (size before relaxing) + *fill* 0x3f40a94a 0x2 + .rodata.esp_err_msg_table + 0x3f40a94c 0x6b8 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .rodata.str1.4 + 0x3f40b004 0x0 esp-idf/soc/libsoc.a(interrupts.c.obj) + 0x2cd (size before relaxing) + .rodata.esp_isr_names + 0x3f40b004 0x114 esp-idf/soc/libsoc.a(interrupts.c.obj) + 0x3f40b004 esp_isr_names + .rodata.rtc_io_desc + 0x3f40b118 0x3f0 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_periph.c.obj) + 0x3f40b118 rtc_io_desc + .rodata 0x3f40b508 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .rodata.prvReturnItemByteBuf.str1.4 + 0x3f40b51c 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x7f (size before relaxing) + .rodata.prvGetItemByteBuf.str1.4 + 0x3f40b51c 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x127 (size before relaxing) + .rodata.prvCheckItemFitsByteBuffer.str1.4 + 0x3f40b51c 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x66 (size before relaxing) + .rodata.prvReturnItemDefault.str1.4 + 0x3f40b51c 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x165 (size before relaxing) + .rodata.prvGetItemDefault.str1.4 + 0x3f40b51c 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x186 (size before relaxing) + .rodata.prvAcquireItemNoSplit.str1.4 + 0x3f40b51c 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x64 (size before relaxing) + .rodata.prvSendItemDoneNoSplit.str1.4 + 0x3f40b51c 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x7e (size before relaxing) + .rodata.prvInitializeNewRingbuffer.str1.4 + 0x3f40b51c 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x3b (size before relaxing) + .rodata.prvReceiveGeneric.str1.4 + 0x3f40b51c 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x35 (size before relaxing) + .rodata.xRingbufferCreate.str1.4 + 0x3f40b51c 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x2f (size before relaxing) + .rodata.xRingbufferCreateStatic.str1.4 + 0x3f40b51c 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x82 (size before relaxing) + .rodata.xRingbufferSendAcquire.str1.4 + 0x3f40b51c 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x81 (size before relaxing) + .rodata.xRingbufferSendComplete.str1.4 + 0x3f40b51c 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x16 (size before relaxing) + .rodata.xRingbufferSend.str1.4 + 0x3f40b51c 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x28 (size before relaxing) + .rodata.xRingbufferReceive.str1.4 + 0x3f40b51c 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x5b (size before relaxing) + .rodata.xRingbufferReceiveUpTo.str1.4 + 0x3f40b51c 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x38 (size before relaxing) + .rodata.xRingbufferGetStaticBuffer.str1.4 + 0x3f40b51c 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x3d (size before relaxing) + .rodata.vRingbufferDeleteWithCaps.str1.4 + 0x3f40b51c 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x20 (size before relaxing) + .rodata.__func__$0 + 0x3f40b51c 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x3f40b536 0x2 + .rodata.__func__$1 + 0x3f40b538 0x1b esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x3f40b553 0x1 + .rodata.__func__$7 + 0x3f40b554 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x3f40b56e 0x2 + .rodata.__func__$9 + 0x3f40b570 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x3f40b582 0x2 + .rodata.__func__$11 + 0x3f40b584 0x1d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x3f40b5a1 0x3 + .rodata.__func__$12 + 0x3f40b5a4 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x3f40b5ba 0x2 + .rodata.__func__$14 + 0x3f40b5bc 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x3f40b5d3 0x1 + .rodata.__func__$17 + 0x3f40b5d4 0x19 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x3f40b5ed 0x3 + .rodata.__func__$18 + 0x3f40b5f0 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x3f40b60a 0x2 + .rodata.__func__$19 + 0x3f40b60c 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x3f40b61e 0x2 + .rodata.__func__$21 + 0x3f40b620 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x3f40b637 0x1 + .rodata.__func__$22 + 0x3f40b638 0x10 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$25 + 0x3f40b648 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$26 + 0x3f40b660 0x14 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$27 + 0x3f40b674 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$28 + 0x3f40b68c 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x3f40b6a3 0x1 + .rodata.__func__$29 + 0x3f40b6a4 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x3f40b6ba 0x2 + .rodata.__func__$30 + 0x3f40b6bc 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x3f40b6ce 0x2 + .rodata.__func__$31 + 0x3f40b6d0 0x15 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x3f40b6e5 0x3 + .rodata.__func__$32 + 0x3f40b6e8 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x3f40b6fe 0x2 + .rodata.__func__$33 + 0x3f40b700 0x1b esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x3f40b71b 0x1 + .rodata.__func__$34 + 0x3f40b71c 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x3f40b72f 0x1 + .rodata.__func__$35 + 0x3f40b730 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x3f40b742 0x2 + .rodata.__func__$36 + 0x3f40b744 0x15 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x3f40b759 0x3 + .rodata 0x3f40b75c 0x20 C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + 0x3f40b75c Xthal_intlevel + .rodata.memset_func + 0x3f40b77c 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform_util.c.obj) + .rodata.esp_ota_get_running_partition.str1.4 + 0x3f40b780 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x5f (size before relaxing) + .rodata.__func__$1 + 0x3f40b780 0x1e esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata._ZSt7nothrow + 0x3f40b79e 0x1 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + 0x3f40b79e std::nothrow + .rodata._ZTSSt9exception + 0x3f40b79f 0xd C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + 0x3f40b79f typeinfo name for std::exception + .rodata._ZTISt9exception + 0x3f40b7ac 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + 0x3f40b7ac typeinfo for std::exception + .rodata._ZTSSt9bad_alloc + 0x3f40b7b4 0xd C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + 0x3f40b7b4 typeinfo name for std::bad_alloc + *fill* 0x3f40b7c1 0x3 + .rodata._ZTISt9bad_alloc + 0x3f40b7c4 0xc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + 0x3f40b7c4 typeinfo for std::bad_alloc + .rodata._ZTVN10__cxxabiv120__si_class_type_infoE + 0x3f40b7d0 0x2c C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + 0x3f40b7d0 vtable for __cxxabiv1::__si_class_type_info + .rodata._ZNKSt9bad_alloc4whatEv.str1.1 + 0x3f40b7fc 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + 0xf (size before relaxing) + .rodata._ZTVSt9bad_alloc + 0x3f40b7fc 0x14 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + 0x3f40b7fc vtable for std::bad_alloc + .rodata._ZTVN10__cxxabiv117__class_type_infoE + 0x3f40b810 0x2c C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + 0x3f40b810 vtable for __cxxabiv1::__class_type_info + .rodata 0x3f40b83c 0x180 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_ctype_ctype_.c.o) + 0x3f40b83c _ctype_b + .rodata 0x3f40b9bc 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_environ.c.o) + .rodata.str1.1 + 0x3f40b9c0 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vfprintf.c.o) + 0xf (size before relaxing) + .rodata 0x3f40b9c0 0x90 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vfprintf.c.o) + .rodata 0x3f40ba50 0x340 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_table.c.o) + *(.rodata_wlog_error .rodata_wlog_error.*) + *(.rodata_wlog_info .rodata_wlog_info.*) + *(.rodata_wlog_warning .rodata_wlog_warning.*) + *libesp_driver_rmt.a:rmt_tx.*(.rodata.__FUNCTION__$0 .rodata.__FUNCTION__$10 .rodata.__FUNCTION__$11 .rodata.__FUNCTION__$12 .rodata.__FUNCTION__$15 .rodata.__FUNCTION__$16 .rodata.__FUNCTION__$17 .rodata.__FUNCTION__$2 .rodata.__FUNCTION__$3 .rodata.__FUNCTION__$4 .rodata.__FUNCTION__$5 .rodata.__FUNCTION__$6 .rodata.__FUNCTION__$7 .rodata.__FUNCTION__$8 .rodata.__func__$1 .rodata.__func__$13 .rodata.__func__$14 .rodata.__func__$9 .rodata.rmt_del_tx_channel.str1.4 .rodata.rmt_ll_tx_set_carrier_high_low_ticks.str1.4 .rodata.rmt_new_sync_manager.str1.4 .rodata.rmt_new_tx_channel.str1.4 .rodata.rmt_transmit.str1.4 .rodata.rmt_tx_create_trans_queue.str1.4 .rodata.rmt_tx_destroy.str1.4 .rodata.rmt_tx_disable.str1.4 .rodata.rmt_tx_enable.str1.4 .rodata.rmt_tx_register_event_callbacks.str1.4 .rodata.rmt_tx_register_to_group.str1.4 .rodata.rmt_tx_switch_gpio.str1.4 .rodata.rmt_tx_wait_all_done.str1.4) + *libesp_hal_gpio.a:gpio_hal.*(.rodata.__func__$4) + *libesp_hw_support.a:cpu.*(.rodata.__func__$0 .rodata.__func__$1 .rodata.__func__$2) + .rodata.__func__$1 + 0x3f40bd90 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .rodata.__func__$2 + 0x3f40bda0 0xe esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + *libesp_system.a:reset_reason.*(.rodata.__func__$0) + *libheap.a:multi_heap.*(.rodata.__func__$0 .rodata.__func__$1 .rodata.__func__$2 .rodata.__func__$3 .rodata.__func__$4 .rodata.__func__$5 .rodata.__func__$6 .rodata.__func__$7 .rodata.__func__$8 .rodata.multi_heap_dump.str1.4 .rodata.multi_heap_dump_tlsf.str1.4 .rodata.multi_heap_find_containing_block_impl.str1.4 .rodata.multi_heap_register_impl.str1.4) + .rodata.multi_heap_register_impl.str1.4 + 0x3f40bdae 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x2f (size before relaxing) + *fill* 0x3f40bdae 0x2 + .rodata.__func__$4 + 0x3f40bdb0 0x18 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$0 + 0x3f40bdc8 0x19 esp-idf/heap/libheap.a(multi_heap.c.obj) + *libheap.a:tlsf.*(.rodata.__func__$0 .rodata.__func__$1 .rodata.__func__$10 .rodata.__func__$11 .rodata.__func__$12 .rodata.__func__$13 .rodata.__func__$14 .rodata.__func__$15 .rodata.__func__$16 .rodata.__func__$17 .rodata.__func__$19 .rodata.__func__$2 .rodata.__func__$20 .rodata.__func__$3 .rodata.__func__$5 .rodata.__func__$6 .rodata.__func__$7 .rodata.__func__$8 .rodata.__func__$9 .rodata.control_construct.str1.4 .rodata.default_walker.str1.4 .rodata.tlsf_add_pool.str1.4 .rodata.tlsf_check.str1.4 .rodata.tlsf_create.str1.4 .rodata.tlsf_remove_pool.str1.4) + .rodata.control_construct.str1.4 + 0x3f40bde1 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + 0xca (size before relaxing) + .rodata.default_walker.str1.4 + 0x3f40bde1 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x26 (size before relaxing) + .rodata.tlsf_check.str1.4 + 0x3f40bde1 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x4a (size before relaxing) + .rodata.tlsf_add_pool.str1.4 + 0x3f40bde1 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x176 (size before relaxing) + .rodata.tlsf_remove_pool.str1.4 + 0x3f40bde1 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x116 (size before relaxing) + .rodata.tlsf_create.str1.4 + 0x3f40bde1 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x32 (size before relaxing) + *fill* 0x3f40bde1 0x3 + .rodata.__func__$0 + 0x3f40bde4 0x10 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$1 + 0x3f40bdf4 0xd esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3f40be01 0x3 + .rodata.__func__$2 + 0x3f40be04 0x11 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3f40be15 0x3 + .rodata.__func__$3 + 0x3f40be18 0xd esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3f40be25 0x3 + .rodata.__func__$5 + 0x3f40be28 0x11 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3f40be39 0x3 + .rodata.__func__$6 + 0x3f40be3c 0xa esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3f40be46 0x2 + .rodata.__func__$7 + 0x3f40be48 0x13 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3f40be5b 0x1 + .rodata.__func__$8 + 0x3f40be5c 0xc esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$9 + 0x3f40be68 0x10 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$10 + 0x3f40be78 0x13 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3f40be8b 0x1 + .rodata.__func__$11 + 0x3f40be8c 0x16 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3f40bea2 0x2 + .rodata.__func__$12 + 0x3f40bea4 0x12 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3f40beb6 0x2 + .rodata.__func__$13 + 0x3f40beb8 0x12 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3f40beca 0x2 + .rodata.__func__$14 + 0x3f40becc 0x12 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3f40bede 0x2 + .rodata.__func__$16 + 0x3f40bee0 0xa esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3f40beea 0x2 + .rodata.__func__$17 + 0x3f40beec 0x12 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3f40befe 0x2 + .rodata.__func__$19 + 0x3f40bf00 0x9 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3f40bf09 0x3 + .rodata.__func__$20 + 0x3f40bf0c 0xb esp-idf/heap/libheap.a(tlsf.c.obj) + *libspi_flash.a:spi_flash_os_func_app.*(.rodata.__func__$0 .rodata.esp_flash_spi23_default_os_functions) + *fill* 0x3f40bf17 0x1 + .rodata.__func__$0 + 0x3f40bf18 0x19 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + *(.irom1.text) + *(.gnu.linkonce.r.*) + *(.rodata1) + 0x3f40bf34 . = ALIGN (0x4) + *fill* 0x3f40bf31 0x3 + 0x3f40bf34 __XT_EXCEPTION_TABLE_ = ABSOLUTE (.) + *(.xt_except_table) + *(.gcc_except_table .gcc_except_table.*) + .gcc_except_table._ZnajRKSt9nothrow_t + 0x3f40bf34 0x10 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) + .gcc_except_table.__cxa_get_globals_fast + 0x3f40bf44 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + .gcc_except_table.__cxa_get_globals + 0x3f40bf48 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + .gcc_except_table._ZN10__cxxabiv111__terminateEPFvvE + 0x3f40bf4c 0x10 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + *(.gnu.linkonce.e.*) + 0x3f40bf5c . = ALIGN (0x4) + 0x3f40bf5c __XT_EXCEPTION_DESCS_ = ABSOLUTE (.) + *(.xt_except_desc) + *(.gnu.linkonce.h.*) + 0x3f40bf5c __XT_EXCEPTION_DESCS_END__ = ABSOLUTE (.) + *(.xt_except_desc_end) + 0x3f40bf5c . = ALIGN (0x4) + 0x3f40bf5c __preinit_array_start = ABSOLUTE (.) + 0x3f40bf5c . = ALIGN (0x4) + 0x3f40bf5c __bothinit_array_start = ABSOLUTE (.) + *(.preinit_array) + 0x3f40bf5c __preinit_array_end = ABSOLUTE (.) + 0x3f40bf5c . = ALIGN (0x4) + 0x3f40bf5c __init_array_start = ABSOLUTE (.) + *(SORT_BY_INIT_PRIORITY(EXCLUDE_FILE(*crtbegin.* *crtend.*) .ctors.*)) + *(EXCLUDE_FILE(*crtbegin.* *crtend.*) .ctors) + .ctors 0x3f40bf5c 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .ctors 0x3f40bf60 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .ctors 0x3f40bf64 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + 0x3f40bf68 __init_array_end = ABSOLUTE (.) + 0x3f40bf68 __bothinit_array_end = ABSOLUTE (.) + 0x3f40bf68 . = ALIGN (0x4) + 0x3f40bf68 soc_reserved_memory_region_start = ABSOLUTE (.) + *(.reserved_memory_address) + .reserved_memory_address + 0x3f40bf68 0x48 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x3f40bfb0 soc_reserved_memory_region_end = ABSOLUTE (.) + 0x3f40bfb0 . = ALIGN (0x4) + 0x3f40bfb0 _esp_system_init_fn_array_start = ABSOLUTE (.) + *(SORT_BY_INIT_PRIORITY(.esp_system_init_fn.*)) + .esp_system_init_fn.1 + 0x3f40bfb0 0x8 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .esp_system_init_fn.10 + 0x3f40bfb8 0x8 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .esp_system_init_fn.20 + 0x3f40bfc0 0x8 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .esp_system_init_fn.21 + 0x3f40bfc8 0x8 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .esp_system_init_fn.100 + 0x3f40bfd0 0x8 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .esp_system_init_fn.101 + 0x3f40bfd8 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .esp_system_init_fn.102 + 0x3f40bfe0 0x8 esp-idf/esp_libc/libesp_libc.a(init.c.obj) + .esp_system_init_fn.103 + 0x3f40bfe8 0x8 esp-idf/esp_security/libesp_security.a(init.c.obj) + .esp_system_init_fn.104 + 0x3f40bff0 0x8 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .esp_system_init_fn.104 + 0x3f40bff8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_psa_crypto_init.c.obj) + .esp_system_init_fn.105 + 0x3f40c000 0x8 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .esp_system_init_fn.110 + 0x3f40c008 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .esp_system_init_fn.118 + 0x3f40c010 0x8 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .esp_system_init_fn.119 + 0x3f40c018 0x8 esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + .esp_system_init_fn.120 + 0x3f40c020 0x8 esp-idf/esp_libc/libesp_libc.a(init.c.obj) + .esp_system_init_fn.130 + 0x3f40c028 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .esp_system_init_fn.140 + 0x3f40c030 0x8 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .esp_system_init_fn.999 + 0x3f40c038 0x8 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + 0x3f40c040 _esp_system_init_fn_array_end = ABSOLUTE (.) + 0x3f40c040 _rodata_end = ABSOLUTE (.) + 0x3f40c040 _lit4_start = ABSOLUTE (.) + *(*.lit4) + *(.lit4.*) + *(.gnu.linkonce.lit4.*) + 0x3f40c040 _lit4_end = ABSOLUTE (.) + 0x3f40c040 . = ALIGN (0x4) + 0x3f40c040 _thread_local_start = ABSOLUTE (.) + 0x3f40c040 _picolibc_reent_stub_start = ABSOLUTE (.) + *(.tdata.errno) + .tdata.errno 0x3f40c040 0x4 esp-idf/esp_libc/libesp_libc.a(errno.c.obj) + 0x3f40c040 errno + *(.tdata.tls_stdin) + .tdata.tls_stdin + 0x3f40c044 0x4 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + 0x3f40c044 tls_stdin + *(.tdata.tls_stdout) + .tdata.tls_stdout + 0x3f40c048 0x4 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + 0x3f40c048 tls_stdout + *(.tdata.tls_stderr) + .tdata.tls_stderr + 0x3f40c04c 0x4 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + 0x3f40c04c tls_stderr + 0x3f40c050 _picolibc_reent_stub_end = ABSOLUTE (.) + *(.tdata) + *(.tdata.*) + *(.tbss) + *(.tbss.*) + 0x3f40c050 _thread_local_end = ABSOLUTE (.) + 0x00000001 ASSERT (((_picolibc_reent_stub_end - _picolibc_reent_stub_start) == 0x10), Newlib _reent stub have wrong size) + 0x00000010 _flash_rodata_align = ALIGNOF (.flash.rodata) + +.flash.rodata_noload + 0x3f40c050 0x0 + 0x3f40c050 _rodata_reserved_end = ABSOLUTE (.) + *(.rodata_wlog_debug .rodata_wlog_debug.*) + *(.rodata_wlog_verbose .rodata_wlog_verbose.*) + +.flash.text 0x400d0020 0x1cb7a + 0x400d0020 _stext = . + 0x400d0020 _instruction_reserved_start = ABSOLUTE (.) + 0x400d0020 _text_start = ABSOLUTE (.) + *(EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_os_func_noos.* *libspi_flash.a:spi_flash_os_func_app.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:esp_flash_api.* *libsoc.a:lldesc.* *liblog.a:util.* *liblog.a:tag_log_level.* *liblog.a:log_write.* *liblog.a:log_timestamp_common.* *liblog.a:log_timestamp.* *liblog.a:log_print.* *liblog.a:log_lock.* *liblog.a:log_format_text.* *liblog.a:log.* *libheap.a:tlsf.* *libheap.a:multi_heap.* *libhal.a:mmu_hal.* *libhal.a:cache_hal_esp32.* *libgcc.a:lib2funcs.* *libfreertos.a:timers.* *libfreertos.a:tasks.* *libfreertos.a:stream_buffer.* *libfreertos.a:queue.* *libfreertos.a:portasm.* *libfreertos.a:port_systick.* *libfreertos.a:port.* *libfreertos.a:list.* *libfreertos.a:event_groups.* *libesp_wifi.a:wifi_netif.* *libesp_wifi.a:esp_adapter.* *libesp_system.a:ubsan.* *libesp_system.a:system_time.* *libesp_system.a:system_internal.* *libesp_system.a:reset_reason.* *libesp_system.a:panic.* *libesp_system.a:image_process.* *libesp_system.a:freertos_hooks.* *libesp_system.a:esp_system_chip.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_ringbuf.a:ringbuf.* *libesp_mm.a:esp_cache_utils.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:cache_esp32.* *libesp_libc.a:stdatomic.* *libesp_libc.a:heap.* *libesp_libc.a:assert.* *libesp_libc.a:abort.* *libesp_hw_support.a:rtc_wdt.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:regi2c_ctrl.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:esp_clk_tree.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:clk_utils.* *libesp_hal_wdt.a:wdt_hal_iram.* *libesp_hal_timg.a:timer_hal.* *libesp_hal_mspi.a:spi_flash_hal_iram.* *libesp_hal_mspi.a:spi_flash_encrypt_hal_iram.* *libesp_hal_ledc.a:ledc_hal_iram.* *libesp_hal_i2c.a:i2c_hal_iram.* *libesp_hal_gpspi.a:spi_slave_hal_iram.* *libesp_hal_gpspi.a:spi_hal_iram.* *libesp_hal_gpio.a:gpio_hal.* *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libesp_driver_rmt.a:rmt_tx.* *libesp_driver_rmt.a:rmt_rx.* *libesp_driver_rmt.a:rmt_encoder.* *libesp_driver_mcpwm.a:mcpwm_timer.* *libesp_driver_mcpwm.a:mcpwm_oper.* *libesp_driver_mcpwm.a:mcpwm_fault.* *libesp_driver_mcpwm.a:mcpwm_cmpr.* *libesp_driver_mcpwm.a:mcpwm_cap.* *libesp_driver_i2c.a:i2c_master.* *libesp_driver_gptimer.a:gptimer.* *libxtensa.a *libxt_hal.a *librtc.a *libgcov.a) .literal EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_os_func_noos.* *libspi_flash.a:spi_flash_os_func_app.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:esp_flash_api.* *libsoc.a:lldesc.* *liblog.a:util.* *liblog.a:tag_log_level.* *liblog.a:log_write.* *liblog.a:log_timestamp_common.* *liblog.a:log_timestamp.* *liblog.a:log_print.* *liblog.a:log_lock.* *liblog.a:log_format_text.* *liblog.a:log.* *libheap.a:tlsf.* *libheap.a:multi_heap.* *libhal.a:mmu_hal.* *libhal.a:cache_hal_esp32.* *libgcc.a:lib2funcs.* *libfreertos.a:timers.* *libfreertos.a:tasks.* *libfreertos.a:stream_buffer.* *libfreertos.a:queue.* *libfreertos.a:portasm.* *libfreertos.a:port_systick.* *libfreertos.a:port.* *libfreertos.a:list.* *libfreertos.a:event_groups.* *libesp_wifi.a:wifi_netif.* *libesp_wifi.a:esp_adapter.* *libesp_system.a:ubsan.* *libesp_system.a:system_time.* *libesp_system.a:system_internal.* *libesp_system.a:reset_reason.* *libesp_system.a:panic.* *libesp_system.a:image_process.* *libesp_system.a:freertos_hooks.* *libesp_system.a:esp_system_chip.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_ringbuf.a:ringbuf.* *libesp_mm.a:esp_cache_utils.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:cache_esp32.* *libesp_libc.a:stdatomic.* *libesp_libc.a:heap.* *libesp_libc.a:assert.* *libesp_libc.a:abort.* *libesp_hw_support.a:rtc_wdt.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:regi2c_ctrl.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:esp_clk_tree.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:clk_utils.* *libesp_hal_wdt.a:wdt_hal_iram.* *libesp_hal_timg.a:timer_hal.* *libesp_hal_mspi.a:spi_flash_hal_iram.* *libesp_hal_mspi.a:spi_flash_encrypt_hal_iram.* *libesp_hal_ledc.a:ledc_hal_iram.* *libesp_hal_i2c.a:i2c_hal_iram.* *libesp_hal_gpspi.a:spi_slave_hal_iram.* *libesp_hal_gpspi.a:spi_hal_iram.* *libesp_hal_gpio.a:gpio_hal.* *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libesp_driver_rmt.a:rmt_tx.* *libesp_driver_rmt.a:rmt_rx.* *libesp_driver_rmt.a:rmt_encoder.* *libesp_driver_mcpwm.a:mcpwm_timer.* *libesp_driver_mcpwm.a:mcpwm_oper.* *libesp_driver_mcpwm.a:mcpwm_fault.* *libesp_driver_mcpwm.a:mcpwm_cmpr.* *libesp_driver_mcpwm.a:mcpwm_cap.* *libesp_driver_i2c.a:i2c_master.* *libesp_driver_gptimer.a:gptimer.* *libxtensa.a *libxt_hal.a *librtc.a *libgcov.a) .literal.* EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_os_func_noos.* *libspi_flash.a:spi_flash_os_func_app.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:esp_flash_api.* *libsoc.a:lldesc.* *liblog.a:util.* *liblog.a:tag_log_level.* *liblog.a:log_write.* *liblog.a:log_timestamp_common.* *liblog.a:log_timestamp.* *liblog.a:log_print.* *liblog.a:log_lock.* *liblog.a:log_format_text.* *liblog.a:log.* *libheap.a:tlsf.* *libheap.a:multi_heap.* *libhal.a:mmu_hal.* *libhal.a:cache_hal_esp32.* *libgcc.a:lib2funcs.* *libfreertos.a:timers.* *libfreertos.a:tasks.* *libfreertos.a:stream_buffer.* *libfreertos.a:queue.* *libfreertos.a:portasm.* *libfreertos.a:port_systick.* *libfreertos.a:port.* *libfreertos.a:list.* *libfreertos.a:event_groups.* *libesp_wifi.a:wifi_netif.* *libesp_wifi.a:esp_adapter.* *libesp_system.a:ubsan.* *libesp_system.a:system_time.* *libesp_system.a:system_internal.* *libesp_system.a:reset_reason.* *libesp_system.a:panic.* *libesp_system.a:image_process.* *libesp_system.a:freertos_hooks.* *libesp_system.a:esp_system_chip.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_ringbuf.a:ringbuf.* *libesp_mm.a:esp_cache_utils.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:cache_esp32.* *libesp_libc.a:stdatomic.* *libesp_libc.a:heap.* *libesp_libc.a:assert.* *libesp_libc.a:abort.* *libesp_hw_support.a:rtc_wdt.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:regi2c_ctrl.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:esp_clk_tree.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:clk_utils.* *libesp_hal_wdt.a:wdt_hal_iram.* *libesp_hal_timg.a:timer_hal.* *libesp_hal_mspi.a:spi_flash_hal_iram.* *libesp_hal_mspi.a:spi_flash_encrypt_hal_iram.* *libesp_hal_ledc.a:ledc_hal_iram.* *libesp_hal_i2c.a:i2c_hal_iram.* *libesp_hal_gpspi.a:spi_slave_hal_iram.* *libesp_hal_gpspi.a:spi_hal_iram.* *libesp_hal_gpio.a:gpio_hal.* *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libesp_driver_rmt.a:rmt_tx.* *libesp_driver_rmt.a:rmt_rx.* *libesp_driver_rmt.a:rmt_encoder.* *libesp_driver_mcpwm.a:mcpwm_timer.* *libesp_driver_mcpwm.a:mcpwm_oper.* *libesp_driver_mcpwm.a:mcpwm_fault.* *libesp_driver_mcpwm.a:mcpwm_cmpr.* *libesp_driver_mcpwm.a:mcpwm_cap.* *libesp_driver_i2c.a:i2c_master.* *libesp_driver_gptimer.a:gptimer.* *libxtensa.a *libxt_hal.a *librtc.a *libgcov.a) .text EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_os_func_noos.* *libspi_flash.a:spi_flash_os_func_app.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:esp_flash_api.* *libsoc.a:lldesc.* *liblog.a:util.* *liblog.a:tag_log_level.* *liblog.a:log_write.* *liblog.a:log_timestamp_common.* *liblog.a:log_timestamp.* *liblog.a:log_print.* *liblog.a:log_lock.* *liblog.a:log_format_text.* *liblog.a:log.* *libheap.a:tlsf.* *libheap.a:multi_heap.* *libhal.a:mmu_hal.* *libhal.a:cache_hal_esp32.* *libgcc.a:lib2funcs.* *libfreertos.a:timers.* *libfreertos.a:tasks.* *libfreertos.a:stream_buffer.* *libfreertos.a:queue.* *libfreertos.a:portasm.* *libfreertos.a:port_systick.* *libfreertos.a:port.* *libfreertos.a:list.* *libfreertos.a:event_groups.* *libesp_wifi.a:wifi_netif.* *libesp_wifi.a:esp_adapter.* *libesp_system.a:ubsan.* *libesp_system.a:system_time.* *libesp_system.a:system_internal.* *libesp_system.a:reset_reason.* *libesp_system.a:panic.* *libesp_system.a:image_process.* *libesp_system.a:freertos_hooks.* *libesp_system.a:esp_system_chip.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_ringbuf.a:ringbuf.* *libesp_mm.a:esp_cache_utils.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:cache_esp32.* *libesp_libc.a:stdatomic.* *libesp_libc.a:heap.* *libesp_libc.a:assert.* *libesp_libc.a:abort.* *libesp_hw_support.a:rtc_wdt.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:regi2c_ctrl.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:esp_clk_tree.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:clk_utils.* *libesp_hal_wdt.a:wdt_hal_iram.* *libesp_hal_timg.a:timer_hal.* *libesp_hal_mspi.a:spi_flash_hal_iram.* *libesp_hal_mspi.a:spi_flash_encrypt_hal_iram.* *libesp_hal_ledc.a:ledc_hal_iram.* *libesp_hal_i2c.a:i2c_hal_iram.* *libesp_hal_gpspi.a:spi_slave_hal_iram.* *libesp_hal_gpspi.a:spi_hal_iram.* *libesp_hal_gpio.a:gpio_hal.* *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libesp_driver_rmt.a:rmt_tx.* *libesp_driver_rmt.a:rmt_rx.* *libesp_driver_rmt.a:rmt_encoder.* *libesp_driver_mcpwm.a:mcpwm_timer.* *libesp_driver_mcpwm.a:mcpwm_oper.* *libesp_driver_mcpwm.a:mcpwm_fault.* *libesp_driver_mcpwm.a:mcpwm_cmpr.* *libesp_driver_mcpwm.a:mcpwm_cap.* *libesp_driver_i2c.a:i2c_master.* *libesp_driver_gptimer.a:gptimer.* *libxtensa.a *libxt_hal.a *librtc.a *libgcov.a) .text.*) + .literal.console_start_select + 0x400d0020 0x4 esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + .literal.console_end_select + 0x400d0024 0x0 esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + 0x4 (size before relaxing) + .literal.console_open + 0x400d0024 0xc esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + 0x10 (size before relaxing) + .literal.console_write + 0x400d0030 0x0 esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + 0x8 (size before relaxing) + .literal.console_fstat + 0x400d0030 0x0 esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + 0x8 (size before relaxing) + .literal.console_close + 0x400d0030 0x4 esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + 0x10 (size before relaxing) + .literal.console_read + 0x400d0034 0x0 esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + 0x8 (size before relaxing) + .literal.console_fcntl + 0x400d0034 0x0 esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + 0x8 (size before relaxing) + .literal.console_fsync + 0x400d0034 0x0 esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + 0x8 (size before relaxing) + .literal.console_access + 0x400d0034 0x0 esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_dev_console_register + 0x400d0034 0x8 esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + 0xc (size before relaxing) + .literal.esp_stdio_register + 0x400d003c 0x0 esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + 0xc (size before relaxing) + .literal.__esp_system_init_fn_init_vfs_console + 0x400d003c 0x0 esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + 0x4 (size before relaxing) + .literal.esp_app_format_init_elf_sha256 + 0x400d003c 0x8 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .literal.esp_app_get_elf_sha256 + 0x400d0044 0x4 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0xc (size before relaxing) + .literal.__esp_system_init_fn_init_show_app_info + 0x400d0048 0x38 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0x6c (size before relaxing) + .literal.__esp_system_init_fn_init_efuse_check + 0x400d0080 0x0 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + 0x8 (size before relaxing) + .literal.__esp_system_init_fn_init_efuse_show_app_info + 0x400d0080 0x1c esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + 0x40 (size before relaxing) + .literal.__esp_system_init_fn_init_efuse + 0x400d009c 0x8 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + 0x18 (size before relaxing) + .literal.esp_efuse_check_errors + 0x400d00a4 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x4 (size before relaxing) + .literal.esp_flash_init_default_chip + 0x400d00a4 0x2c esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x58 (size before relaxing) + .literal.esp_flash_app_init + 0x400d00d0 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x14 (size before relaxing) + .literal.__esp_system_init_fn_init_flash + 0x400d00d4 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x24 (size before relaxing) + .literal.spi_flash_chip_list_check + 0x400d00e4 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + 0x44 (size before relaxing) + .literal.spi_flash_init_lock + 0x400d010c 0x10 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x18 (size before relaxing) + .literal.spi_flash_op_lock + 0x400d011c 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_op_unlock + 0x400d011c 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_mmap + 0x400d011c 0x4 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x18 (size before relaxing) + .literal.spi_flash_munmap + 0x400d0120 0xc esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x1c (size before relaxing) + .literal.spi_flash_cache2phys + 0x400d012c 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x4 (size before relaxing) + .literal.esp_mspi_get_io + 0x400d012c 0x14 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x1c (size before relaxing) + .literal.esp_mspi_pin_reserve + 0x400d0140 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x8 (size before relaxing) + .literal.esp_ipc_call_and_wait + 0x400d0140 0x18 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x40 (size before relaxing) + .literal.esp_ipc_init + 0x400d0158 0x1c esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x38 (size before relaxing) + .literal.esp_ipc_call_blocking + 0x400d0174 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x4 (size before relaxing) + .literal.esp_ipc_call_nonblocking + 0x400d0174 0xc esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x28 (size before relaxing) + .literal.esp_register_shutdown_handler + 0x400d0180 0x4 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .literal.esp_restart + 0x400d0184 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0xc (size before relaxing) + .literal.__esp_system_init_fn_init_show_cpu_freq + 0x400d0184 0xc esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + 0x24 (size before relaxing) + .literal.__esp_system_init_fn_init_brownout + 0x400d0190 0x0 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + 0x4 (size before relaxing) + .literal.__esp_system_init_fn_init_newlib_time + 0x400d0190 0x0 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + 0x4 (size before relaxing) + .literal.__esp_system_init_fn_init_disable_rtc_wdt + 0x400d0190 0x4 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + 0x10 (size before relaxing) + .literal.restore_app_mmu_from_pro_mmu + 0x400d0194 0x8 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .literal.core_intr_matrix_clear + 0x400d019c 0x4 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .literal.sys_rtc_init + 0x400d01a0 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x4 (size before relaxing) + .literal.mspi_init + 0x400d01a0 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x10 (size before relaxing) + .literal.start_other_core + 0x400d01a0 0x30 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x74 (size before relaxing) + .literal.system_early_init + 0x400d01d0 0x24 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x8c (size before relaxing) + .literal.startup_resume_other_cores + 0x400d01f4 0x4 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .literal.esp_ipc_isr_init + 0x400d01f8 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x8 (size before relaxing) + .literal.esp_ipc_isr_port_init + 0x400d01fc 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + 0xc (size before relaxing) + .literal.select_rtc_slow_clk + 0x400d01fc 0x8 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x3c (size before relaxing) + .literal.esp_rtc_init + 0x400d0204 0x10 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x18 (size before relaxing) + .literal.esp_clk_init + 0x400d0214 0x18 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x78 (size before relaxing) + .literal.esp_perip_clk_init + 0x400d022c 0x30 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x60 (size before relaxing) + .literal.esp_cache_err_int_init + 0x400d025c 0x8 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x1c (size before relaxing) + .literal.esp_cache_err_get_cpuid + 0x400d0264 0x8 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x10 (size before relaxing) + .literal.esp_int_wdt_init + 0x400d026c 0x18 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x44 (size before relaxing) + .literal.esp_int_wdt_cpu_init + 0x400d0284 0x4 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x14 (size before relaxing) + .literal.do_system_init_fn + 0x400d0288 0x14 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x24 (size before relaxing) + .literal.do_core_init + 0x400d029c 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x4 (size before relaxing) + .literal.do_secondary_init + 0x400d029c 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x10 (size before relaxing) + .literal.start_cpu0_default + 0x400d029c 0x4 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x14 (size before relaxing) + .literal.frame_to_panic_info + 0x400d02a0 0x8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x14 (size before relaxing) + .literal.panic_handler + 0x400d02a8 0x14 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x60 (size before relaxing) + .literal.print_state_for_core + 0x400d02bc 0x8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x14 (size before relaxing) + .literal.print_state + 0x400d02c4 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x18 (size before relaxing) + .literal.panic_restart + 0x400d02c4 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0xc (size before relaxing) + .literal.print_debug_exception_details + 0x400d02c4 0x20 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x40 (size before relaxing) + .literal.print_illegal_instruction_details + 0x400d02e4 0x14 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x34 (size before relaxing) + .literal.print_cache_err_details + 0x400d02f8 0x10 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x34 (size before relaxing) + .literal.panic_print_registers + 0x400d0308 0x28 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x84 (size before relaxing) + .literal.panic_arch_fill_info + 0x400d0330 0x10 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .literal.panic_soc_fill_info + 0x400d0340 0x10 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x14 (size before relaxing) + .literal.panic_print_backtrace + 0x400d0350 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x4 (size before relaxing) + .literal.esp_log_is_tag_loggable + 0x400d0350 0x0 esp-idf/log/liblog.a(log_level.c.obj) + 0x4 (size before relaxing) + .literal.esp_log_linked_list_get_level + 0x400d0350 0x8 esp-idf/log/liblog.a(log_linked_list.c.obj) + .literal.fix_cache_generation_overflow + 0x400d0358 0xc esp-idf/log/liblog.a(log_binary_heap.c.obj) + .literal.heap_swap + 0x400d0364 0x0 esp-idf/log/liblog.a(log_binary_heap.c.obj) + 0x4 (size before relaxing) + .literal.heap_bubble_down + 0x400d0364 0x0 esp-idf/log/liblog.a(log_binary_heap.c.obj) + 0x8 (size before relaxing) + .literal.esp_log_cache_get_level + 0x400d0364 0x14 esp-idf/log/liblog.a(log_binary_heap.c.obj) + 0x2c (size before relaxing) + .literal.esp_log_cache_add + 0x400d0378 0x0 esp-idf/log/liblog.a(log_binary_heap.c.obj) + 0x18 (size before relaxing) + .literal.heap_caps_get_free_size + 0x400d0378 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0xc (size before relaxing) + .literal.heap_caps_get_info + 0x400d037c 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x10 (size before relaxing) + .literal.heap_caps_get_largest_free_block + 0x400d037c 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x4 (size before relaxing) + .literal.sorted_add_to_registered_heaps + 0x400d037c 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x4 (size before relaxing) + .literal.register_heap + 0x400d037c 0x10 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x18 (size before relaxing) + .literal.heap_caps_enable_nonos_stack_heaps + 0x400d038c 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0xc (size before relaxing) + .literal.heap_caps_init + 0x400d038c 0x38 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x90 (size before relaxing) + .literal.__esp_system_init_fn_init_heap + 0x400d03c4 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x4 (size before relaxing) + .literal.s_get_num_reserved_regions + 0x400d03c4 0x8 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .literal.s_prepare_reserved_regions + 0x400d03cc 0x20 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0x40 (size before relaxing) + .literal.soc_get_available_memory_region_max_count + 0x400d03ec 0x4 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0x8 (size before relaxing) + .literal.soc_get_available_memory_regions + 0x400d03f0 0x8 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0x20 (size before relaxing) + .literal.calc_checksum + 0x400d03f8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .literal.esp_clk_slowclk_cal_get + 0x400d03fc 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .literal.esp_rtc_get_time_us + 0x400d0400 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x38 (size before relaxing) + .literal.esp_clk_slowclk_cal_set + 0x400d0408 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x8 (size before relaxing) + .literal.insert_vector_desc + 0x400d0408 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .literal.find_desc_for_int + 0x400d040c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x4 (size before relaxing) + .literal.get_desc_for_int + 0x400d040c 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x1c (size before relaxing) + .literal.find_desc_for_source + 0x400d0414 0xc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x14 (size before relaxing) + .literal.is_vect_desc_usable + 0x400d0420 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x18 (size before relaxing) + .literal.get_available_int + 0x400d0428 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x28 (size before relaxing) + .literal.esp_intr_ptr_in_isr_region + 0x400d042c 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .literal.esp_intr_alloc_intrstatus_bind + 0x400d0444 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x9c (size before relaxing) + .literal.esp_intr_alloc_intrstatus + 0x400d0470 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x4 (size before relaxing) + .literal.esp_intr_alloc + 0x400d0470 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x4 (size before relaxing) + .literal.intr_free_for_current_cpu + 0x400d0470 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x30 (size before relaxing) + .literal.esp_intr_free + 0x400d0478 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x14 (size before relaxing) + .literal.intr_free_for_other_cpu + 0x400d047c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x4 (size before relaxing) + .literal.s_rtc_isr_noniram_hook + 0x400d047c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .literal.s_rtc_isr_noniram_hook_relieve + 0x400d0480 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x4 (size before relaxing) + .literal.rtc_isr_ensure_installed + 0x400d0480 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x28 (size before relaxing) + .literal.rtc_isr_register + 0x400d0498 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x24 (size before relaxing) + .literal.esp_gpio_reserve + 0x400d049c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + 0x8 (size before relaxing) + .literal.esp_gpio_revoke + 0x400d04a0 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + 0x8 (size before relaxing) + .literal.clk_tree_rtc_slow_calibration + 0x400d04a0 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x24 (size before relaxing) + .literal.esp_clk_tree_rc_fast_d256_get_freq_hz + 0x400d04b0 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x18 (size before relaxing) + .literal.esp_clk_tree_xtal32k_get_freq_hz + 0x400d04b8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x18 (size before relaxing) + .literal.esp_clk_tree_lp_slow_get_freq_hz + 0x400d04b8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x14 (size before relaxing) + .literal.esp_clk_tree_rc_fast_get_freq_hz + 0x400d04b8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x8 (size before relaxing) + .literal.esp_clk_tree_lp_fast_get_freq_hz + 0x400d04bc 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x20 (size before relaxing) + .literal.rtcio_ll_force_hold_disable + 0x400d04cc 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + 0x20 (size before relaxing) + .literal.esp_deep_sleep_wakeup_io_reset + 0x400d04e8 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + 0xc (size before relaxing) + .literal.esp_brownout_init + 0x400d04f0 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + 0x14 (size before relaxing) + .literal.esp_chip_info + 0x400d04f8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + 0xc (size before relaxing) + .literal.sar_periph_ctrl_init + 0x400d04fc 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .literal.esp_cpu_intr_get_desc + 0x400d0504 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + 0x14 (size before relaxing) + .literal.esp_sleep_sub_mode_config + 0x400d0514 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x38 (size before relaxing) + .literal.esp_sleep_sub_mode_force_disable + 0x400d0528 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x20 (size before relaxing) + .literal.esp_sleep_sub_mode_dump_config + 0x400d0528 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x18 (size before relaxing) + .literal.other_cpu_startup_idle_hook_cb + 0x400d0534 0x4 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .literal.main_task + 0x400d0538 0x24 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0x60 (size before relaxing) + .literal.esp_startup_start_app + 0x400d055c 0x1c esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0x38 (size before relaxing) + .literal.esp_startup_start_app_other_cores + 0x400d0578 0x4 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0x18 (size before relaxing) + .literal._xt_tick_divisor_init + 0x400d057c 0x4 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + 0xc (size before relaxing) + .literal.xQueueCreateWithCaps + 0x400d0580 0x0 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + 0x14 (size before relaxing) + .literal.vQueueDeleteWithCaps + 0x400d0580 0xc esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + 0x20 (size before relaxing) + .literal.xSemaphoreCreateGenericWithCaps + 0x400d058c 0x0 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + 0x18 (size before relaxing) + .literal.vSemaphoreDeleteWithCaps + 0x400d058c 0x4 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + 0x1c (size before relaxing) + .literal.pvPortMalloc + 0x400d0590 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x8 (size before relaxing) + .literal.vPortFree + 0x400d0590 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x4 (size before relaxing) + .literal.xPortCheckValidTCBMem + 0x400d0590 0xc esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x14 (size before relaxing) + .literal.xPortcheckValidStackMem + 0x400d059c 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x14 (size before relaxing) + .literal.vApplicationGetIdleTaskMemory + 0x400d059c 0x10 esp-idf/freertos/libfreertos.a(port_common.c.obj) + 0x20 (size before relaxing) + .literal.__esp_system_init_fn_init_libc + 0x400d05ac 0x0 esp-idf/esp_libc/libesp_libc.a(init.c.obj) + 0x4 (size before relaxing) + .literal.__esp_system_init_fn_init_libc_stdio + 0x400d05ac 0x4 esp-idf/esp_libc/libesp_libc.a(init.c.obj) + 0x8 (size before relaxing) + .literal.esp_libc_locks_init + 0x400d05b0 0x20 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x38 (size before relaxing) + .literal.adjust_boot_time + 0x400d05d0 0x8 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + 0x18 (size before relaxing) + .literal.get_adjusted_boot_time + 0x400d05d8 0x4 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + 0x10 (size before relaxing) + .literal.adjtime_corr_stop + 0x400d05dc 0x0 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + 0x14 (size before relaxing) + .literal._gettimeofday_r + 0x400d05dc 0x4 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + 0x14 (size before relaxing) + .literal.settimeofday + 0x400d05e0 0x0 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + 0x10 (size before relaxing) + .literal.esp_libc_time_init + 0x400d05e0 0x0 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + 0x4 (size before relaxing) + .literal.open 0x400d05e0 0x0 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + 0x8 (size before relaxing) + .literal.close + 0x400d05e0 0x0 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + 0x4 (size before relaxing) + .literal.read 0x400d05e0 0x0 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + 0x4 (size before relaxing) + .literal.write + 0x400d05e0 0x0 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + 0x4 (size before relaxing) + .literal.lseek + 0x400d05e0 0x0 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + 0x4 (size before relaxing) + .literal.gettimeofday + 0x400d05e0 0x0 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + 0x4 (size before relaxing) + .literal.fcntl + 0x400d05e0 0x0 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + 0x4 (size before relaxing) + .literal.fstat + 0x400d05e0 0x0 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + 0x4 (size before relaxing) + .literal.esp_time_impl_get_time_since_boot + 0x400d05e0 0x4 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + 0x8 (size before relaxing) + .literal.esp_time_impl_set_boot_time + 0x400d05e4 0xc esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + 0x14 (size before relaxing) + .literal.esp_time_impl_get_boot_time + 0x400d05f0 0x0 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + 0x14 (size before relaxing) + .literal.esp_set_time_from_rtc + 0x400d05f0 0x0 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + 0xc (size before relaxing) + .literal.esp_sync_timekeeping_timers + 0x400d05f0 0x0 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + 0x1c (size before relaxing) + .literal.esp_libc_init + 0x400d05f0 0x10 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + 0x1c (size before relaxing) + .literal.esp_libc_init_global_stdio + 0x400d0600 0x18 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + 0x28 (size before relaxing) + .literal.pthread_mutex_lock_internal + 0x400d0618 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x10 (size before relaxing) + .literal.pthread_mutex_init + 0x400d0618 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x14 (size before relaxing) + .literal.pthread_mutex_init_if_static + 0x400d0618 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x10 (size before relaxing) + .literal.pthread_mutex_lock + 0x400d061c 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x8 (size before relaxing) + .literal.pthread_mutex_unlock + 0x400d061c 0xc esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x20 (size before relaxing) + .literal.find_key + 0x400d0628 0x8 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x10 (size before relaxing) + .literal.pthread_cleanup_thread_specific_data_callback + 0x400d0630 0xc esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x1c (size before relaxing) + .literal.pthread_key_create + 0x400d063c 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x14 (size before relaxing) + .literal.pthread_getspecific + 0x400d063c 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x8 (size before relaxing) + .literal.pthread_setspecific + 0x400d063c 0x4 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x20 (size before relaxing) + .literal.esp_timer_early_init + 0x400d0640 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + 0x8 (size before relaxing) + .literal.__esp_system_init_fn_esp_timer_init_nonos + 0x400d0640 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + 0x4 (size before relaxing) + .literal.esp_timer_impl_init_system_time + 0x400d0640 0x10 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0x28 (size before relaxing) + .literal.esp_timer_impl_early_init + 0x400d0650 0x30 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x48 (size before relaxing) + .literal.uart_get_avail_data_len + 0x400d0680 0x4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .literal.uart_read_char + 0x400d0684 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x4 (size before relaxing) + .literal.unregister_select + 0x400d0684 0xc esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x1c (size before relaxing) + .literal.uart_end_select + 0x400d0690 0x4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x20 (size before relaxing) + .literal.register_select + 0x400d0694 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x1c (size before relaxing) + .literal.uart_start_select + 0x400d0694 0x4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x40 (size before relaxing) + .literal.select_notif_callback_isr + 0x400d0698 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x20 (size before relaxing) + .literal.uart_access + 0x400d0698 0x10 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x1c (size before relaxing) + .literal.uart_open + 0x400d06a8 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x10 (size before relaxing) + .literal.uart_rx_char + 0x400d06b0 0x1c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x30 (size before relaxing) + .literal.uart_tx_char + 0x400d06cc 0x14 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x30 (size before relaxing) + .literal.uart_fcntl + 0x400d06e0 0x14 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x1c (size before relaxing) + .literal.uart_close + 0x400d06f4 0x4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x10 (size before relaxing) + .literal.uart_return_char + 0x400d06f8 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x14 (size before relaxing) + .literal.uart_fsync + 0x400d0700 0x4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x20 (size before relaxing) + .literal.uart_read + 0x400d0704 0xc esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x40 (size before relaxing) + .literal.uart_write + 0x400d0710 0x4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x1c (size before relaxing) + .literal.uart_fstat + 0x400d0714 0x4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x18 (size before relaxing) + .literal.esp_vfs_uart_get_vfs + 0x400d0718 0x4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .literal.uart_vfs_dev_register + 0x400d071c 0x10 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x1c (size before relaxing) + .literal.__esp_system_init_fn_init_vfs_uart + 0x400d072c 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x4 (size before relaxing) + .literal.uart_pattern_queue_update + 0x400d072c 0x4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .literal.uart_reenable_intr_mask + 0x400d0730 0x10 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x24 (size before relaxing) + .literal.uart_pattern_enqueue + 0x400d0740 0x4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x18 (size before relaxing) + .literal.uart_pattern_link_free + 0x400d0744 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x14 (size before relaxing) + .literal.uart_release_pin + 0x400d0744 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x24 (size before relaxing) + .literal.uart_try_set_iomux_pin + 0x400d074c 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x14 (size before relaxing) + .literal.uart_ll_enable_bus_clock + 0x400d0754 0x4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x10 (size before relaxing) + .literal.uart_module_disable + 0x400d0758 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x18 (size before relaxing) + .literal.uart_ll_reset_register + 0x400d0758 0x4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x28 (size before relaxing) + .literal.uart_module_enable + 0x400d075c 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x2c (size before relaxing) + .literal.uart_enable_tx_write_fifo + 0x400d075c 0x4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x28 (size before relaxing) + .literal.uart_check_buf_full + 0x400d0760 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x18 (size before relaxing) + .literal.uart_rx_intr_handler_default + 0x400d0760 0x18 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x114 (size before relaxing) + .literal.uart_free_driver_obj + 0x400d0778 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x28 (size before relaxing) + .literal.uart_alloc_driver_obj + 0x400d0778 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x30 (size before relaxing) + .literal.uart_disable_intr_mask + 0x400d0778 0x4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x24 (size before relaxing) + .literal.uart_pattern_queue_reset + 0x400d077c 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x3c (size before relaxing) + .literal.uart_disable_rx_intr + 0x400d0784 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x4 (size before relaxing) + .literal.uart_disable_tx_intr + 0x400d0784 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x4 (size before relaxing) + .literal.uart_enable_tx_intr + 0x400d0784 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x30 (size before relaxing) + .literal.uart_tx_all + 0x400d078c 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x44 (size before relaxing) + .literal._uart_set_pin6 + 0x400d078c 0x28 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0xb8 (size before relaxing) + .literal.uart_param_config + 0x400d07b4 0x2c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0xbc (size before relaxing) + .literal.uart_intr_config + 0x400d07e0 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x40 (size before relaxing) + .literal.uart_wait_tx_done + 0x400d07e8 0x10 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x6c (size before relaxing) + .literal.uart_write_bytes + 0x400d07f8 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x34 (size before relaxing) + .literal.uart_read_bytes + 0x400d0800 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x5c (size before relaxing) + .literal.uart_get_buffered_data_len + 0x400d0808 0x4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x30 (size before relaxing) + .literal.uart_driver_delete + 0x400d080c 0xc esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x4c (size before relaxing) + .literal.uart_driver_install + 0x400d0818 0x30 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0xc4 (size before relaxing) + .literal.uart_is_driver_installed + 0x400d0848 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x4 (size before relaxing) + .literal.uart_set_select_notif_callback + 0x400d0848 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x4 (size before relaxing) + .literal.uart_get_selectlock + 0x400d0848 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x4 (size before relaxing) + .literal._ZZL24close_handles_and_deinitPKcENKUlR14NVSHandleEntryE_clES2_ + 0x400d0848 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x8 (size before relaxing) + .literal._ZSt9__find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZL24close_handles_and_deinitPKcEUlRS1_E_EEET_SC_SC_T0_ + 0x400d084c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._ZSt7find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEZL24close_handles_and_deinitPKcEUlRS1_E_ET_S8_S8_T0_ + 0x400d084c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal.nvs_flash_init_partition + 0x400d084c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .literal.nvs_flash_init + 0x400d084c 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x8 (size before relaxing) + .literal._ZL24close_handles_and_deinitPKc + 0x400d0850 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x18 (size before relaxing) + .literal.nvs_flash_erase_partition + 0x400d0854 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x1c (size before relaxing) + .literal.nvs_flash_erase + 0x400d0854 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN9__gnu_cxx5__ops11__pred_iterIZN3nvs7Storage26eraseMismatchedBlobIndexesER14intrusive_listINS3_13BlobIndexNodeEEEUlRKS5_E_EENS0_10_Iter_predIT_EESC_ + 0x400d0854 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN9__gnu_cxx5__ops11__pred_iterIZN3nvs7Storage20eraseOrphanDataBlobsER14intrusive_listINS3_13BlobIndexNodeEEEUlRKS5_E_EENS0_10_Iter_predIT_EESC_ + 0x400d0854 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + .literal._ZZN3nvs7Storage26eraseMismatchedBlobIndexesER14intrusive_listINS0_13BlobIndexNodeEEENKUlRKS2_E_clES6_ + 0x400d0854 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4 (size before relaxing) + .literal._ZSt9__find_ifIN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZNS2_26eraseMismatchedBlobIndexesERS4_EUlRKS3_E_EEET_SE_SE_T0_ + 0x400d0854 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4 (size before relaxing) + .literal._ZSt7find_ifIN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE8iteratorEZNS2_26eraseMismatchedBlobIndexesERS4_EUlRKS3_E_ET_SA_SA_T0_ + 0x400d0854 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x10 (size before relaxing) + .literal._ZZN3nvs7Storage20eraseOrphanDataBlobsER14intrusive_listINS0_13BlobIndexNodeEEENKUlRKS2_E_clES6_ + 0x400d0854 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4 (size before relaxing) + .literal._ZSt9__find_ifIN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZNS2_20eraseOrphanDataBlobsERS4_EUlRKS3_E_EEET_SE_SE_T0_ + 0x400d0854 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4 (size before relaxing) + .literal._ZSt7find_ifIN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE8iteratorEZNS2_20eraseOrphanDataBlobsERS4_EUlRKS3_E_ET_SA_SA_T0_ + 0x400d0854 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x10 (size before relaxing) + .literal._ZN3nvs4Item6getKeyEPcj + 0x400d0854 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage20eraseOrphanDataBlobsER14intrusive_listINS0_13BlobIndexNodeEE + 0x400d0858 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x14 (size before relaxing) + .literal._ZSt9__fill_a1IhiEN9__gnu_cxx11__enable_ifIXaasrSt9__is_byteIT_E7__valueoosrSt10__are_sameIS3_T0_E7__valuesrSt20__memcpyable_integerIS6_E7__widthEvE6__typeEPS3_SC_RKS6_ + 0x400d0858 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs7Storage19populateBlobIndicesER14intrusive_listINS0_13BlobIndexNodeEE + 0x400d0858 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x10 (size before relaxing) + .literal._ZN3nvs7Storage26eraseMismatchedBlobIndexesER14intrusive_listINS0_13BlobIndexNodeEE + 0x400d0858 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x1c (size before relaxing) + .literal._ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE17clearAndFreeNodesEv + 0x400d0858 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + .literal._ZNKSt14default_deleteIA_N3nvs4PageEEclIS1_EENSt9enable_ifIXsrSt14is_convertibleIPA_T_PS2_E5valueEvE4typeEPS7_ + 0x400d0858 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + .literal._ZNSt10unique_ptrIA_N3nvs4PageESt14default_deleteIS2_EED5Ev + 0x400d0858 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE17clearAndFreeNodesEv + 0x400d0858 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs7Storage15clearNamespacesEv + 0x400d0858 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs7Storage4initEmm + 0x400d0858 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x38 (size before relaxing) + .literal._ZN3nvs7StorageD2Ev + 0x400d085c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs12NVSPartitionD2Ev + 0x400d085c 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .literal._ZN3nvs12NVSPartitionD0Ev + 0x400d0864 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs12NVSPartition8read_rawEjPvj + 0x400d0864 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs12NVSPartition4readEjPvj + 0x400d0864 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs12NVSPartition9write_rawEjPKvj + 0x400d0864 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs12NVSPartition5writeEjPKvj + 0x400d0864 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs12NVSPartition11erase_rangeEjj + 0x400d0864 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs12NVSPartitionC2EPK15esp_partition_t + 0x400d0864 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs16partition_lookup20lookup_nvs_partitionEPKcPPNS_9PartitionE + 0x400d0864 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + 0x10 (size before relaxing) + .literal._ZN3nvs19NVSPartitionManagerD5Ev + 0x400d0868 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0xc (size before relaxing) + .literal._ZZN3nvs19NVSPartitionManager24lookup_storage_from_nameEPKcENKUlRNS_7StorageEE_clES4_ + 0x400d086c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x4 (size before relaxing) + .literal._ZSt9__find_ifIN14intrusive_listIN3nvs7StorageEE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZNS1_19NVSPartitionManager24lookup_storage_from_nameEPKcEUlRS2_E_EEET_SE_SE_T0_ + 0x400d086c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x4 (size before relaxing) + .literal._ZSt7find_ifIN14intrusive_listIN3nvs7StorageEE8iteratorEZNS1_19NVSPartitionManager24lookup_storage_from_nameEPKcEUlRS2_E_ET_SA_SA_T0_ + 0x400d086c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs7StorageC5EPNS_9PartitionE + 0x400d086c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs19NVSPartitionManager12get_instanceEv + 0x400d086c 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs19NVSPartitionManager24lookup_storage_from_nameEPKc + 0x400d0870 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs19NVSPartitionManager11init_customEPNS_9PartitionEmm + 0x400d0870 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x20 (size before relaxing) + .literal._ZN3nvs19NVSPartitionManager14init_partitionEPKc + 0x400d0870 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x14 (size before relaxing) + .literal._ZN3nvs19NVSPartitionManager16deinit_partitionEPKc + 0x400d0874 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x20 (size before relaxing) + .literal._ZNK3nvs4Item14calculateCrc32Ev + 0x400d0878 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0xc (size before relaxing) + .literal._ZNK3nvs4Item26calculateCrc32WithoutValueEv + 0x400d087c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0xc (size before relaxing) + .literal._ZNK3nvs4Item22checkHeaderConsistencyEh + 0x400d087c 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs4LockC2Ev + 0x400d0880 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs4LockD2Ev + 0x400d0884 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs8HashList4findEjRKNS_4ItemE + 0x400d0884 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs8HashList5clearEv + 0x400d0884 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs8HashListD2Ev + 0x400d0884 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs8HashList5eraseEj + 0x400d0884 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs8HashList6insertERKNS_4ItemEj + 0x400d0884 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x10 (size before relaxing) + .literal._ZN3nvs4ItemC5EhNS_8ItemTypeEhPKch + 0x400d0884 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs4PageC2Ev + 0x400d0884 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs4Page6Header14calculateCrc32Ev + 0x400d0884 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs4Page10initializeEv + 0x400d0884 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x8 (size before relaxing) + .literal._ZNK3nvs4Page12getSeqNumberERm + 0x400d0884 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs4Page12setSeqNumberEm + 0x400d0884 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page5eraseEv + 0x400d0888 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs4Page15alterEntryStateEjNS0_10EntryStateE + 0x400d0888 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs4Page10writeEntryERKNS_4ItemE + 0x400d0888 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs4Page9copyItemsERS0_ + 0x400d0888 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x1c (size before relaxing) + .literal._ZN3nvs4Page20alterEntryRangeStateEjjNS0_10EntryStateE + 0x400d088c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs4Page17eraseEntryAndSpanEj + 0x400d088c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x28 (size before relaxing) + .literal._ZN3nvs4Page8findItemEhNS_8ItemTypeEPKcRjRNS_4ItemEhNS_9VerOffsetE + 0x400d088c 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x20 (size before relaxing) + .literal._ZN3nvs4Page9eraseItemEhNS_8ItemTypeEPKchNS_9VerOffsetE + 0x400d0890 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs4Page15mLoadEntryTableEv + 0x400d0890 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x40 (size before relaxing) + .literal._ZN3nvs4Page4loadEPNS_9PartitionEm + 0x400d0890 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x24 (size before relaxing) + .literal._ZZN3nvs11PageManager4loadEPNS_9PartitionEmmENKUlRKNS_4PageEE_clES5_ + 0x400d089c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x4 (size before relaxing) + .literal._ZSt9__find_ifIN14intrusive_listIN3nvs4PageEE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZNS1_11PageManager4loadEPNS1_9PartitionEmmEUlRKS2_E_EEET_SF_SF_T0_ + 0x400d089c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x4 (size before relaxing) + .literal._ZSt7find_ifIN14intrusive_listIN3nvs4PageEE8iteratorEZNS1_11PageManager4loadEPNS1_9PartitionEmmEUlRKS2_E_ET_SB_SB_T0_ + 0x400d089c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN14intrusive_listIN3nvs4PageEE5clearEv + 0x400d089c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs11PageManager12activatePageEv + 0x400d089c 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x14 (size before relaxing) + .literal._ZN14intrusive_listIN3nvs4PageEE6insertENS2_8iteratorEPS1_ + 0x400d08a0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs11PageManager4loadEPNS_9PartitionEmm + 0x400d08a0 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x6c (size before relaxing) + .literal.esp_get_free_index + 0x400d08a8 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.free_proxy_members + 0x400d08ac 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_duplicate_fs_ops + 0x400d08ac 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x24 (size before relaxing) + .literal.esp_vfs_free_fs_ops + 0x400d08ac 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0xc (size before relaxing) + .literal.esp_vfs_register_fs_common + 0x400d08ac 0x8 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x24 (size before relaxing) + .literal.esp_vfs_register_fs + 0x400d08b4 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x10 (size before relaxing) + .literal.get_vfs_for_index + 0x400d08b4 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.register_fd + 0x400d08b4 0x8 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x14 (size before relaxing) + .literal.unregister_fd + 0x400d08bc 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x18 (size before relaxing) + .literal.get_vfs_for_fd + 0x400d08bc 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.get_local_fd + 0x400d08bc 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4 (size before relaxing) + .literal.translate_path + 0x400d08bc 0x10 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x1c (size before relaxing) + .literal.get_vfs_for_path + 0x400d08cc 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x10 (size before relaxing) + .literal.get_vfs_count + 0x400d08d0 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4 (size before relaxing) + .literal.esp_vfs_open + 0x400d08d0 0x4 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + 0x10 (size before relaxing) + .literal.esp_vfs_write + 0x400d08d4 0x4 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + 0xc (size before relaxing) + .literal.esp_vfs_lseek + 0x400d08d8 0x4 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + 0xc (size before relaxing) + .literal.esp_vfs_read + 0x400d08dc 0x4 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + 0xc (size before relaxing) + .literal.esp_vfs_close + 0x400d08e0 0x4 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + 0x10 (size before relaxing) + .literal.esp_vfs_fstat + 0x400d08e4 0x4 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + 0xc (size before relaxing) + .literal.esp_vfs_fcntl_r + 0x400d08e8 0x4 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + 0xc (size before relaxing) + .literal.esp_vfs_fsync + 0x400d08ec 0x4 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + 0xc (size before relaxing) + .literal.esp_vfs_opendir + 0x400d08f0 0x4 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + 0xc (size before relaxing) + .literal.esp_vfs_readdir + 0x400d08f4 0x4 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_closedir + 0x400d08f8 0x4 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_access + 0x400d08fc 0x4 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + 0xc (size before relaxing) + .literal.esp_vfs_select_triggered + 0x400d0900 0x0 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + 0xc (size before relaxing) + .literal.esp_vfs_select_triggered_isr + 0x400d0900 0x0 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + 0xc (size before relaxing) + .literal.vfs_null_write + 0x400d0900 0x8 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .literal.vfs_null_lseek + 0x400d0908 0x4 esp-idf/vfs/libvfs.a(nullfs.c.obj) + 0x8 (size before relaxing) + .literal.vfs_null_read + 0x400d090c 0x4 esp-idf/vfs/libvfs.a(nullfs.c.obj) + 0x8 (size before relaxing) + .literal.vfs_null_pread + 0x400d0910 0x4 esp-idf/vfs/libvfs.a(nullfs.c.obj) + 0x8 (size before relaxing) + .literal.vfs_null_pwrite + 0x400d0914 0x4 esp-idf/vfs/libvfs.a(nullfs.c.obj) + 0x8 (size before relaxing) + .literal.vfs_null_get_empty_fd + 0x400d0918 0x0 esp-idf/vfs/libvfs.a(nullfs.c.obj) + 0x4 (size before relaxing) + .literal.vfs_null_close + 0x400d0918 0x4 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .literal.vfs_null_fcntl + 0x400d091c 0x4 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .literal.vfs_null_ioctl + 0x400d0920 0x4 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .literal.vfs_null_fsync + 0x400d0924 0x4 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .literal.vfs_null_open + 0x400d0928 0x8 esp-idf/vfs/libvfs.a(nullfs.c.obj) + 0x14 (size before relaxing) + .literal.vfs_null_stat + 0x400d0930 0x8 esp-idf/vfs/libvfs.a(nullfs.c.obj) + 0x14 (size before relaxing) + .literal.vfs_null_fstat + 0x400d0938 0x4 esp-idf/vfs/libvfs.a(nullfs.c.obj) + 0xc (size before relaxing) + .literal.esp_vfs_null_register + 0x400d093c 0x8 esp-idf/vfs/libvfs.a(nullfs.c.obj) + 0xc (size before relaxing) + .literal.__esp_system_init_fn_init_vfs_nullfs + 0x400d0944 0x0 esp-idf/vfs/libvfs.a(nullfs.c.obj) + 0x4 (size before relaxing) + .literal.print_device_type_mix + 0x400d0944 0x10 esp-idf/main/libmain.a(main.c.obj) + 0x30 (size before relaxing) + .literal.modbus_override_task + 0x400d0954 0x8 esp-idf/main/libmain.a(main.c.obj) + 0x8c (size before relaxing) + .literal.modbus_rtu_task + 0x400d095c 0x20 esp-idf/main/libmain.a(main.c.obj) + 0x68 (size before relaxing) + .literal.spiffs_init + 0x400d097c 0xc esp-idf/main/libmain.a(main.c.obj) + 0x30 (size before relaxing) + .literal.spiffs_list_files + 0x400d0988 0x10 esp-idf/main/libmain.a(main.c.obj) + 0x44 (size before relaxing) + .literal.modbus_uart_init + 0x400d0998 0x14 esp-idf/main/libmain.a(main.c.obj) + 0x68 (size before relaxing) + .literal.file_exists + 0x400d09ac 0x4 esp-idf/main/libmain.a(main.c.obj) + 0xc (size before relaxing) + .literal.app_main + 0x400d09b0 0x118 esp-idf/main/libmain.a(main.c.obj) + 0x38c (size before relaxing) + .literal.find_point_rw + 0x400d0ac8 0x0 esp-idf/main/libmain.a(modbus_memory.c.obj) + 0x4 (size before relaxing) + .literal.find_point_ro + 0x400d0ac8 0x0 esp-idf/main/libmain.a(modbus_memory.c.obj) + 0x4 (size before relaxing) + .literal.sync_points_controlled_by + 0x400d0ac8 0x0 esp-idf/main/libmain.a(modbus_memory.c.obj) + 0x14 (size before relaxing) + .literal.write_point_words + 0x400d0ac8 0x0 esp-idf/main/libmain.a(modbus_memory.c.obj) + 0xc (size before relaxing) + .literal.find_pics_point_rw + 0x400d0ac8 0x0 esp-idf/main/libmain.a(modbus_memory.c.obj) + 0x8 (size before relaxing) + .literal.write_pics_staging_word + 0x400d0ac8 0x0 esp-idf/main/libmain.a(modbus_memory.c.obj) + 0x4 (size before relaxing) + .literal.apply_pics_to_official_point + 0x400d0ac8 0x28 esp-idf/main/libmain.a(modbus_memory.c.obj) + 0x8c (size before relaxing) + .literal.modbus_memory_reset + 0x400d0af0 0x0 esp-idf/main/libmain.a(modbus_memory.c.obj) + 0x4 (size before relaxing) + .literal.modbus_memory_init + 0x400d0af0 0x0 esp-idf/main/libmain.a(modbus_memory.c.obj) + 0x4 (size before relaxing) + .literal.modbus_memory_read_coil + 0x400d0af0 0x0 esp-idf/main/libmain.a(modbus_memory.c.obj) + 0x4 (size before relaxing) + .literal.modbus_memory_write_coil + 0x400d0af0 0x0 esp-idf/main/libmain.a(modbus_memory.c.obj) + 0x10 (size before relaxing) + .literal.modbus_memory_read_discrete_input + 0x400d0af0 0x0 esp-idf/main/libmain.a(modbus_memory.c.obj) + 0x4 (size before relaxing) + .literal.modbus_memory_write_discrete_input + 0x400d0af0 0x0 esp-idf/main/libmain.a(modbus_memory.c.obj) + 0x4 (size before relaxing) + .literal.modbus_memory_read_input_register + 0x400d0af0 0x0 esp-idf/main/libmain.a(modbus_memory.c.obj) + 0x4 (size before relaxing) + .literal.modbus_memory_write_input_register + 0x400d0af0 0x0 esp-idf/main/libmain.a(modbus_memory.c.obj) + 0x4 (size before relaxing) + .literal.modbus_memory_read_holding_register + 0x400d0af0 0x0 esp-idf/main/libmain.a(modbus_memory.c.obj) + 0x4 (size before relaxing) + .literal.modbus_memory_write_holding_register + 0x400d0af0 0x0 esp-idf/main/libmain.a(modbus_memory.c.obj) + 0xc (size before relaxing) + .literal.modbus_memory_read_bit + 0x400d0af0 0x0 esp-idf/main/libmain.a(modbus_memory.c.obj) + 0x8 (size before relaxing) + .literal.modbus_memory_write_bit + 0x400d0af0 0x0 esp-idf/main/libmain.a(modbus_memory.c.obj) + 0x8 (size before relaxing) + .literal.modbus_memory_read_reg + 0x400d0af0 0x0 esp-idf/main/libmain.a(modbus_memory.c.obj) + 0x8 (size before relaxing) + .literal.modbus_memory_write_reg + 0x400d0af0 0x0 esp-idf/main/libmain.a(modbus_memory.c.obj) + 0x8 (size before relaxing) + .literal.modbus_memory_valid_bit_range + 0x400d0af0 0x0 esp-idf/main/libmain.a(modbus_memory.c.obj) + 0x4 (size before relaxing) + .literal.modbus_memory_write_coils + 0x400d0af0 0x0 esp-idf/main/libmain.a(modbus_memory.c.obj) + 0x8 (size before relaxing) + .literal.modbus_memory_write_holding_registers + 0x400d0af0 0x0 esp-idf/main/libmain.a(modbus_memory.c.obj) + 0x14 (size before relaxing) + .literal.infer_point_type_from_address + 0x400d0af0 0x10 esp-idf/main/libmain.a(modbus_points.c.obj) + .literal.normalize_address + 0x400d0b00 0x4 esp-idf/main/libmain.a(modbus_points.c.obj) + 0x1c (size before relaxing) + .literal.db_has_duplicate_pics_range + 0x400d0b04 0x0 esp-idf/main/libmain.a(modbus_points.c.obj) + 0x4 (size before relaxing) + .literal.trim_whitespace + 0x400d0b04 0x8 esp-idf/main/libmain.a(modbus_points.c.obj) + 0x10 (size before relaxing) + .literal.str_equals + 0x400d0b0c 0x0 esp-idf/main/libmain.a(modbus_points.c.obj) + 0x4 (size before relaxing) + .literal.parse_point_type + 0x400d0b0c 0x10 esp-idf/main/libmain.a(modbus_points.c.obj) + 0x20 (size before relaxing) + .literal.parse_data_type + 0x400d0b1c 0x14 esp-idf/main/libmain.a(modbus_points.c.obj) + 0x28 (size before relaxing) + .literal.parse_pics_data_type + 0x400d0b30 0x10 esp-idf/main/libmain.a(modbus_points.c.obj) + 0x20 (size before relaxing) + .literal.db_has_duplicate_name + 0x400d0b40 0x0 esp-idf/main/libmain.a(modbus_points.c.obj) + 0x4 (size before relaxing) + .literal.parse_u32 + 0x400d0b40 0x0 esp-idf/main/libmain.a(modbus_points.c.obj) + 0x4 (size before relaxing) + .literal.append_helper_points + 0x400d0b40 0x4 esp-idf/main/libmain.a(modbus_points.c.obj) + 0x1c (size before relaxing) + .literal.modbus_points_reset + 0x400d0b44 0x0 esp-idf/main/libmain.a(modbus_points.c.obj) + 0x4 (size before relaxing) + .literal.validate_control_mapping + 0x400d0b44 0x0 esp-idf/main/libmain.a(modbus_points.c.obj) + 0x4 (size before relaxing) + .literal.parse_csv_line + 0x400d0b44 0x0 esp-idf/main/libmain.a(modbus_points.c.obj) + 0x4c (size before relaxing) + .literal.modbus_points_load + 0x400d0b44 0x28 esp-idf/main/libmain.a(modbus_points.c.obj) + 0xa0 (size before relaxing) + .literal.modbus_rtu_crc16 + 0x400d0b6c 0x4 esp-idf/main/libmain.a(modbus_rtu.c.obj) + 0x8 (size before relaxing) + .literal.build_exception_response + 0x400d0b70 0x0 esp-idf/main/libmain.a(modbus_rtu.c.obj) + 0x4 (size before relaxing) + .literal.handle_read_bits + 0x400d0b70 0x0 esp-idf/main/libmain.a(modbus_rtu.c.obj) + 0x20 (size before relaxing) + .literal.handle_read_registers + 0x400d0b70 0x0 esp-idf/main/libmain.a(modbus_rtu.c.obj) + 0x20 (size before relaxing) + .literal.handle_write_single_coil + 0x400d0b70 0x4 esp-idf/main/libmain.a(modbus_rtu.c.obj) + 0x20 (size before relaxing) + .literal.handle_write_single_register + 0x400d0b74 0x0 esp-idf/main/libmain.a(modbus_rtu.c.obj) + 0x18 (size before relaxing) + .literal.handle_write_multiple_coils + 0x400d0b74 0x0 esp-idf/main/libmain.a(modbus_rtu.c.obj) + 0x1c (size before relaxing) + .literal.handle_write_multiple_registers + 0x400d0b74 0x0 esp-idf/main/libmain.a(modbus_rtu.c.obj) + 0x20 (size before relaxing) + .literal.modbus_rtu_init + 0x400d0b74 0x0 esp-idf/main/libmain.a(modbus_rtu.c.obj) + 0x4 (size before relaxing) + .literal.modbus_rtu_add_device + 0x400d0b74 0xc esp-idf/main/libmain.a(modbus_rtu.c.obj) + 0x14 (size before relaxing) + .literal.modbus_rtu_read_frame + 0x400d0b80 0x0 esp-idf/main/libmain.a(modbus_rtu.c.obj) + 0x8 (size before relaxing) + .literal.modbus_rtu_process_request + 0x400d0b80 0x4 esp-idf/main/libmain.a(modbus_rtu.c.obj) + 0x44 (size before relaxing) + .literal.copy_str + 0x400d0b84 0x4 esp-idf/main/libmain.a(config_store.c.obj) + 0x8 (size before relaxing) + .literal.set_device_defaults + 0x400d0b88 0x4 esp-idf/main/libmain.a(config_store.c.obj) + 0x10 (size before relaxing) + .literal.trim_whitespace + 0x400d0b8c 0x0 esp-idf/main/libmain.a(config_store.c.obj) + 0x10 (size before relaxing) + .literal.parse_i32 + 0x400d0b8c 0x0 esp-idf/main/libmain.a(config_store.c.obj) + 0x4 (size before relaxing) + .literal.str_ieq + 0x400d0b8c 0x0 esp-idf/main/libmain.a(config_store.c.obj) + 0x8 (size before relaxing) + .literal.parse_parity + 0x400d0b8c 0xc esp-idf/main/libmain.a(config_store.c.obj) + 0x18 (size before relaxing) + .literal.parse_device_section_index + 0x400d0b98 0x0 esp-idf/main/libmain.a(config_store.c.obj) + 0x20 (size before relaxing) + .literal.parse_u32 + 0x400d0b98 0x0 esp-idf/main/libmain.a(config_store.c.obj) + 0x4 (size before relaxing) + .literal.parse_bool + 0x400d0b98 0x18 esp-idf/main/libmain.a(config_store.c.obj) + 0x30 (size before relaxing) + .literal.config_store_set_defaults + 0x400d0bb0 0x4 esp-idf/main/libmain.a(config_store.c.obj) + 0xc (size before relaxing) + .literal.config_store_load + 0x400d0bb4 0x44 esp-idf/main/libmain.a(config_store.c.obj) + 0xec (size before relaxing) + .literal.esp_spiffs_get_empty + 0x400d0bf8 0x4 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .literal.spiffs_res_to_errno + 0x400d0bfc 0x34 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .literal.vfs_spiffs_mkdir + 0x400d0c30 0x4 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .literal.vfs_spiffs_rmdir + 0x400d0c34 0x4 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .literal.vfs_spiffs_link + 0x400d0c38 0x4 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .literal.esp_spiffs_by_label + 0x400d0c3c 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x8 (size before relaxing) + .literal.vfs_spiffs_telldir + 0x400d0c3c 0xc esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x10 (size before relaxing) + .literal.esp_spiffs_free + 0x400d0c48 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x1c (size before relaxing) + .literal.esp_spiffs_init + 0x400d0c48 0x5c esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x15c (size before relaxing) + .literal.vfs_spiffs_get_mtime + 0x400d0ca4 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x4 (size before relaxing) + .literal.vfs_spiffs_update_mtime_value + 0x400d0ca4 0x4 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x18 (size before relaxing) + .literal.vfs_spiffs_utime + 0x400d0ca8 0xc esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x28 (size before relaxing) + .literal.vfs_spiffs_ftruncate + 0x400d0cb4 0x4 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x14 (size before relaxing) + .literal.vfs_spiffs_truncate + 0x400d0cb8 0x8 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x30 (size before relaxing) + .literal.vfs_spiffs_close + 0x400d0cc0 0x4 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x14 (size before relaxing) + .literal.vfs_spiffs_closedir + 0x400d0cc4 0x8 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x28 (size before relaxing) + .literal.vfs_spiffs_seekdir + 0x400d0ccc 0x8 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x40 (size before relaxing) + .literal.vfs_spiffs_readdir_r + 0x400d0cd4 0xc esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x34 (size before relaxing) + .literal.vfs_spiffs_readdir + 0x400d0ce0 0x8 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x18 (size before relaxing) + .literal.vfs_spiffs_opendir + 0x400d0ce8 0x10 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x30 (size before relaxing) + .literal.vfs_spiffs_rename + 0x400d0cf8 0x10 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x2c (size before relaxing) + .literal.vfs_spiffs_unlink + 0x400d0d08 0x8 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x24 (size before relaxing) + .literal.vfs_spiffs_stat + 0x400d0d10 0xc esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x3c (size before relaxing) + .literal.vfs_spiffs_fsync + 0x400d0d1c 0x4 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x14 (size before relaxing) + .literal.vfs_spiffs_fstat + 0x400d0d20 0xc esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x30 (size before relaxing) + .literal.vfs_spiffs_update_mtime + 0x400d0d2c 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x1c (size before relaxing) + .literal.vfs_spiffs_open + 0x400d0d2c 0x8 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x2c (size before relaxing) + .literal.vfs_spiffs_read + 0x400d0d34 0x4 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x14 (size before relaxing) + .literal.vfs_spiffs_lseek + 0x400d0d38 0x4 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x14 (size before relaxing) + .literal.vfs_spiffs_write + 0x400d0d3c 0x4 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x14 (size before relaxing) + .literal.esp_spiffs_info + 0x400d0d40 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0xc (size before relaxing) + .literal.esp_vfs_spiffs_register + 0x400d0d40 0x10 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x2c (size before relaxing) + .literal.spiffs_api_lock + 0x400d0d50 0x0 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x4 (size before relaxing) + .literal.spiffs_api_unlock + 0x400d0d50 0x0 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x4 (size before relaxing) + .literal.spiffs_api_read + 0x400d0d50 0x8 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x14 (size before relaxing) + .literal.spiffs_api_write + 0x400d0d58 0x4 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x14 (size before relaxing) + .literal.spiffs_api_erase + 0x400d0d5c 0x4 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x14 (size before relaxing) + .literal.spiffs_api_check + 0x400d0d60 0xc esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x18 (size before relaxing) + .literal.spiffs_hydro_write + 0x400d0d6c 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x8 (size before relaxing) + .literal.spiffs_fflush_cache + 0x400d0d6c 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x10 (size before relaxing) + .literal.spiffs_hydro_read + 0x400d0d6c 0xc esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x48 (size before relaxing) + .literal.spiffs_stat_pix + 0x400d0d78 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x10 (size before relaxing) + .literal.spiffs_read_dir_v + 0x400d0d78 0xc esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x14 (size before relaxing) + .literal.SPIFFS_format + 0x400d0d84 0x4 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x20 (size before relaxing) + .literal.SPIFFS_mount + 0x400d0d88 0x8 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x30 (size before relaxing) + .literal.SPIFFS_unmount + 0x400d0d90 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x14 (size before relaxing) + .literal.SPIFFS_open + 0x400d0d90 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x78 (size before relaxing) + .literal.SPIFFS_read + 0x400d0d90 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x8 (size before relaxing) + .literal.SPIFFS_write + 0x400d0d90 0x4 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x60 (size before relaxing) + .literal.SPIFFS_lseek + 0x400d0d94 0x8 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x3c (size before relaxing) + .literal.SPIFFS_remove + 0x400d0d9c 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x48 (size before relaxing) + .literal.SPIFFS_ftruncate + 0x400d0d9c 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x34 (size before relaxing) + .literal.SPIFFS_stat + 0x400d0d9c 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x28 (size before relaxing) + .literal.SPIFFS_fstat + 0x400d0d9c 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x24 (size before relaxing) + .literal.SPIFFS_fflush + 0x400d0d9c 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x1c (size before relaxing) + .literal.SPIFFS_close + 0x400d0d9c 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x24 (size before relaxing) + .literal.SPIFFS_rename + 0x400d0d9c 0x4 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x5c (size before relaxing) + .literal.SPIFFS_update_meta + 0x400d0da0 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x3c (size before relaxing) + .literal.SPIFFS_fupdate_meta + 0x400d0da0 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x2c (size before relaxing) + .literal.SPIFFS_opendir + 0x400d0da0 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0xc (size before relaxing) + .literal.SPIFFS_readdir + 0x400d0da0 0x8 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x18 (size before relaxing) + .literal.SPIFFS_closedir + 0x400d0da8 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0xc (size before relaxing) + .literal.SPIFFS_info + 0x400d0da8 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x14 (size before relaxing) + .literal.spiffs_obj_lu_scan_v + 0x400d0da8 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x8 (size before relaxing) + .literal.spiffs_update_ix_map + 0x400d0da8 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x4 (size before relaxing) + .literal.spiffs_hash + 0x400d0da8 0x4 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + .literal.spiffs_obj_lu_find_id_and_span_v + 0x400d0dac 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x8 (size before relaxing) + .literal.spiffs_page_data_check + 0x400d0dac 0x1c esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x28 (size before relaxing) + .literal.spiffs_page_index_check + 0x400d0dc8 0x14 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x28 (size before relaxing) + .literal.spiffs_object_find_object_index_header_by_name_v + 0x400d0ddc 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x10 (size before relaxing) + .literal.spiffs_obj_lu_find_free_obj_id_compact_v + 0x400d0ddc 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x14 (size before relaxing) + .literal.spiffs_obj_lu_find_free_obj_id_bitmap_v + 0x400d0ddc 0x4 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x14 (size before relaxing) + .literal.spiffs_phys_cpy + 0x400d0de0 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x8 (size before relaxing) + .literal.spiffs_obj_lu_find_entry_visitor + 0x400d0de0 0x8 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x14 (size before relaxing) + .literal.spiffs_erase_block + 0x400d0de8 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0xc (size before relaxing) + .literal.spiffs_obj_lu_scan + 0x400d0de8 0x4 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x24 (size before relaxing) + .literal.spiffs_obj_lu_find_id + 0x400d0dec 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0xc (size before relaxing) + .literal.spiffs_obj_lu_find_free + 0x400d0dec 0x4 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x14 (size before relaxing) + .literal.spiffs_obj_lu_find_id_and_span + 0x400d0df0 0x4 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x10 (size before relaxing) + .literal.spiffs_page_allocate_data + 0x400d0df4 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x14 (size before relaxing) + .literal.spiffs_page_delete + 0x400d0df4 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x8 (size before relaxing) + .literal.spiffs_page_move + 0x400d0df4 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x18 (size before relaxing) + .literal.spiffs_cb_object_event + 0x400d0df4 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0xc (size before relaxing) + .literal.spiffs_object_create + 0x400d0df4 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x24 (size before relaxing) + .literal.spiffs_object_update_index_hdr + 0x400d0df4 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x2c (size before relaxing) + .literal.spiffs_object_open_by_page + 0x400d0df4 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x1c (size before relaxing) + .literal.spiffs_object_append + 0x400d0df4 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x84 (size before relaxing) + .literal.spiffs_object_modify + 0x400d0df4 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x6c (size before relaxing) + .literal.spiffs_object_find_object_index_header_by_name + 0x400d0df4 0x4 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x10 (size before relaxing) + .literal.spiffs_object_truncate + 0x400d0df8 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x84 (size before relaxing) + .literal.spiffs_object_read + 0x400d0df8 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x30 (size before relaxing) + .literal.spiffs_obj_lu_find_free_obj_id + 0x400d0df8 0x8 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x24 (size before relaxing) + .literal.spiffs_fd_find_new + 0x400d0e00 0x8 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x10 (size before relaxing) + .literal.spiffs_fd_return + 0x400d0e08 0x4 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x8 (size before relaxing) + .literal.spiffs_fd_get + 0x400d0e0c 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x8 (size before relaxing) + .literal.spiffs_fd_temporal_cache_rehash + 0x400d0e0c 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x8 (size before relaxing) + .literal.spiffs_cache_page_remove_oldest + 0x400d0e0c 0x0 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + 0x4 (size before relaxing) + .literal.spiffs_cache_drop_page + 0x400d0e0c 0x0 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + 0x8 (size before relaxing) + .literal.spiffs_phys_rd + 0x400d0e0c 0x0 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + 0x14 (size before relaxing) + .literal.spiffs_phys_wr + 0x400d0e0c 0x0 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + 0xc (size before relaxing) + .literal.spiffs_cache_page_allocate_by_fd + 0x400d0e0c 0x0 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + 0x8 (size before relaxing) + .literal.spiffs_cache_fd_release + 0x400d0e0c 0x0 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + 0x4 (size before relaxing) + .literal.spiffs_cache_init + 0x400d0e0c 0x0 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + 0xc (size before relaxing) + .literal.spiffs_gc_erase_block + 0x400d0e0c 0x0 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + 0x8 (size before relaxing) + .literal.spiffs_gc_quick + 0x400d0e0c 0x0 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + 0x10 (size before relaxing) + .literal.spiffs_gc_erase_page_stats + 0x400d0e0c 0x0 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + 0x8 (size before relaxing) + .literal.spiffs_gc_find_candidate + 0x400d0e0c 0x0 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + 0x14 (size before relaxing) + .literal.spiffs_gc_clean + 0x400d0e0c 0x0 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + 0x6c (size before relaxing) + .literal.spiffs_gc_check + 0x400d0e0c 0x0 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + 0x14 (size before relaxing) + .literal.clk_hal_lp_slow_get_freq_hz + 0x400d0e0c 0x10 esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) + 0x20 (size before relaxing) + .literal.clk_hal_xtal_get_freq_mhz + 0x400d0e1c 0x4 esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) + .literal.clk_hal_apll_get_freq_hz + 0x400d0e20 0x0 esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) + 0x1c (size before relaxing) + .literal.clk_hal_soc_root_get_freq_mhz + 0x400d0e20 0x8 esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) + 0x24 (size before relaxing) + .literal.clk_hal_cpu_get_freq_hz + 0x400d0e28 0xc esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) + 0x30 (size before relaxing) + .literal.clk_hal_ahb_get_freq_hz + 0x400d0e34 0x4 esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) + 0x10 (size before relaxing) + .literal.clk_hal_apb_get_freq_hz + 0x400d0e38 0x0 esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_ll_calculate_clock_reg + 0x400d0e38 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + 0x4 (size before relaxing) + .literal.get_flash_clock_divider + 0x400d0e38 0x10 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + 0x24 (size before relaxing) + .literal.spi_flash_cal_clock + 0x400d0e48 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_hal_init + 0x400d0e48 0x10 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + 0x24 (size before relaxing) + .literal.spi_flash_hal_supports_direct_write + 0x400d0e58 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_hal_supports_direct_read + 0x400d0e58 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + 0x4 (size before relaxing) + .literal.is_partition_encrypted + 0x400d0e58 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x4 (size before relaxing) + .literal.load_partitions + 0x400d0e58 0x28 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x64 (size before relaxing) + .literal.ensure_partitions_loaded + 0x400d0e80 0x8 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x24 (size before relaxing) + .literal.iterator_create + 0x400d0e88 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x8 (size before relaxing) + .literal.esp_partition_iterator_release + 0x400d0e88 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x4 (size before relaxing) + .literal.esp_partition_next + 0x400d0e88 0xc esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x28 (size before relaxing) + .literal.esp_partition_find_err + 0x400d0e94 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0xc (size before relaxing) + .literal.esp_partition_find + 0x400d0e94 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x4 (size before relaxing) + .literal.esp_partition_get + 0x400d0e94 0x8 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x10 (size before relaxing) + .literal.esp_partition_find_first_err + 0x400d0e9c 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0xc (size before relaxing) + .literal.esp_partition_find_first + 0x400d0e9c 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x4 (size before relaxing) + .literal.esp_partition_write + 0x400d0e9c 0xc esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x1c (size before relaxing) + .literal.esp_partition_read_raw + 0x400d0ea8 0x4 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x14 (size before relaxing) + .literal.esp_partition_write_raw + 0x400d0eac 0x4 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x14 (size before relaxing) + .literal.esp_partition_erase_range + 0x400d0eb0 0x4 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x14 (size before relaxing) + .literal.esp_partition_mmap + 0x400d0eb4 0x4 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x18 (size before relaxing) + .literal.esp_partition_munmap + 0x400d0eb8 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x4 (size before relaxing) + .literal.esp_partition_read + 0x400d0eb8 0x4 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x24 (size before relaxing) + .literal.esp_partition_is_flash_region_writable + 0x400d0ebc 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0xc (size before relaxing) + .literal.esp_partition_main_flash_region_safe + 0x400d0ebc 0x4 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x8 (size before relaxing) + .literal.gpio_input_disable + 0x400d0ec0 0x18 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x24 (size before relaxing) + .literal.gpio_ll_pullup_en + 0x400d0ed8 0x10 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x1c (size before relaxing) + .literal.gpio_pullup_en + 0x400d0ee8 0x10 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x38 (size before relaxing) + .literal.gpio_pulldown_dis + 0x400d0ef8 0x4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x38 (size before relaxing) + .literal.gpio_intr_disable + 0x400d0efc 0x4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x24 (size before relaxing) + .literal.gpio_input_enable + 0x400d0f00 0x4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x24 (size before relaxing) + .literal.gpio_output_disable + 0x400d0f04 0xc esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x34 (size before relaxing) + .literal.gpio_output_enable + 0x400d0f10 0x8 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x30 (size before relaxing) + .literal.gpio_od_disable + 0x400d0f18 0x4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x20 (size before relaxing) + .literal.gpio_od_enable + 0x400d0f1c 0x4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x20 (size before relaxing) + .literal.gpio_set_level + 0x400d0f20 0x4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x20 (size before relaxing) + .literal.gpio_set_direction + 0x400d0f24 0x8 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x40 (size before relaxing) + .literal.gpio_reset_pin + 0x400d0f2c 0x4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x4c (size before relaxing) + .literal.gpio_iomux_input + 0x400d0f30 0x4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x30 (size before relaxing) + .literal.gpio_iomux_output + 0x400d0f34 0x4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x30 (size before relaxing) + .literal.gpio_matrix_input + 0x400d0f38 0x4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x24 (size before relaxing) + .literal.gpio_matrix_output + 0x400d0f3c 0x4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x24 (size before relaxing) + .literal.rtcio_ll_iomux_func_sel + 0x400d0f40 0xc esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + 0x1c (size before relaxing) + .literal.rtcio_ll_function_select + 0x400d0f4c 0xc esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + 0x28 (size before relaxing) + .literal.rtc_gpio_is_valid_gpio + 0x400d0f58 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + 0x4 (size before relaxing) + .literal.rtc_io_number_get + 0x400d0f58 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + 0x4 (size before relaxing) + .literal.rtc_gpio_deinit + 0x400d0f58 0x10 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + 0x2c (size before relaxing) + .literal.rtc_gpio_pullup_en + 0x400d0f68 0x8 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + 0x44 (size before relaxing) + .literal.rtc_gpio_pulldown_dis + 0x400d0f70 0x8 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + 0x44 (size before relaxing) + .literal.uart_hal_set_hw_flow_ctrl + 0x400d0f78 0x8 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + 0x14 (size before relaxing) + .literal.uart_hal_set_tx_idle_num + 0x400d0f80 0x4 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + .literal.uart_hal_set_txfifo_empty_thr + 0x400d0f84 0x4 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + .literal.uart_hal_init + 0x400d0f88 0x0 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + 0x10 (size before relaxing) + .literal.uart_hal_set_rx_timeout + 0x400d0f88 0x4 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + 0xc (size before relaxing) + .literal.uart_hal_txfifo_rst + 0x400d0f8c 0x4 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal_iram.c.obj) + 0xc (size before relaxing) + .literal.uart_hal_rxfifo_rst + 0x400d0f90 0xc esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal_iram.c.obj) + 0x2c (size before relaxing) + .literal.uart_hal_tx_break + 0x400d0f9c 0x4 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal_iram.c.obj) + .literal.uart_hal_write_txfifo + 0x400d0fa0 0x8 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal_iram.c.obj) + 0x2c (size before relaxing) + .literal.uart_hal_read_rxfifo + 0x400d0fa8 0x4 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal_iram.c.obj) + 0x2c (size before relaxing) + .literal.s_get_bus_mask + 0x400d0fac 0x30 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x40 (size before relaxing) + .literal.s_reserve_irom_region + 0x400d0fdc 0x18 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x24 (size before relaxing) + .literal.s_reserve_drom_region + 0x400d0ff4 0x10 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x24 (size before relaxing) + .literal.s_vaddr_to_paddr + 0x400d1004 0x4 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x10 (size before relaxing) + .literal.esp_mmu_map_init + 0x400d1008 0x1c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x3c (size before relaxing) + .literal.esp_mmu_map + 0x400d1024 0x34 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0xcc (size before relaxing) + .literal.esp_mmu_unmap + 0x400d1058 0xc esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x48 (size before relaxing) + .literal.esp_mmu_vaddr_to_paddr + 0x400d1064 0xc esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x34 (size before relaxing) + .literal.bootloader_init_mem + 0x400d1070 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x4 (size before relaxing) + .literal.bootloader_flash_update_id + 0x400d1070 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x8 (size before relaxing) + .literal.bootloader_flash_get_wp_pin + 0x400d1070 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x8 (size before relaxing) + .literal.esp_crosscore_int_init + 0x400d1070 0x1c esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x30 (size before relaxing) + .literal.find_entry_and_check_all_reset + 0x400d108c 0x4 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.find_entry_from_task_handle_and_check_all_reset + 0x400d1090 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x4 (size before relaxing) + .literal.task_wdt_timer_feed + 0x400d1090 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x8 (size before relaxing) + .literal.add_entry + 0x400d1090 0x18 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x5c (size before relaxing) + .literal.get_task_affinity + 0x400d10a8 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x4 (size before relaxing) + .literal.task_wdt_timeout_abort + 0x400d10a8 0x1c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x58 (size before relaxing) + .literal.task_wdt_timeout_handling + 0x400d10c4 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x40 (size before relaxing) + .literal.esp_task_wdt_add + 0x400d10c4 0x8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x20 (size before relaxing) + .literal.subscribe_idle + 0x400d10cc 0x18 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x34 (size before relaxing) + .literal.esp_task_wdt_init + 0x400d10e4 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x48 (size before relaxing) + .literal.esp_task_wdt_reset + 0x400d10f8 0x8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x40 (size before relaxing) + .literal.idle_hook_cb + 0x400d1100 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x4 (size before relaxing) + .literal.esp_task_wdt_print_triggered_tasks + 0x400d1100 0x1c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x40 (size before relaxing) + .literal.task_wdt_isr + 0x400d111c 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x64 (size before relaxing) + .literal.esp_task_wdt_impl_timer_allocate + 0x400d1130 0x8 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x44 (size before relaxing) + .literal.esp_task_wdt_impl_timer_feed + 0x400d1138 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0xc (size before relaxing) + .literal.esp_task_wdt_impl_timeout_triggered + 0x400d1138 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0xc (size before relaxing) + .literal.esp_task_wdt_impl_timer_restart + 0x400d1138 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x10 (size before relaxing) + .literal.esp_err_to_name + 0x400d1138 0x8 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .literal.brownout_hal_config + 0x400d1140 0x10 esp-idf/hal/libhal.a(brownout_hal.c.obj) + 0x1c (size before relaxing) + .literal.esp_cpu_configure_region_protection + 0x400d1150 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + 0x10 (size before relaxing) + .literal.__esp_system_init_fn_mbedtls_psa_crypto_init_fn + 0x400d1154 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_psa_crypto_init.c.obj) + 0x4 (size before relaxing) + .literal.psa_get_initialized + 0x400d1154 0xc esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + 0x1c (size before relaxing) + .literal.psa_remove_key_data_from_memory + 0x400d1160 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + 0x4 (size before relaxing) + .literal.psa_wipe_key_slot + 0x400d1160 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_psa_crypto_free + 0x400d1160 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + 0x34 (size before relaxing) + .literal.psa_crypto_init + 0x400d1164 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + 0x48 (size before relaxing) + .literal.psa_initialize_key_slots + 0x400d1164 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + 0x8 (size before relaxing) + .literal.psa_wipe_all_key_slots + 0x400d1168 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + 0x14 (size before relaxing) + .literal.psa_free_key_slot + 0x400d116c 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_calloc + 0x400d1170 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform.c.obj) + .literal.mbedtls_free + 0x400d1174 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform.c.obj) + .literal.mbedtls_platform_zeroize + 0x400d1178 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform_util.c.obj) + .literal.mbedtls_zeroize_and_free + 0x400d117c 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform_util.c.obj) + 0x8 (size before relaxing) + .literal.threading_mutex_lock_pthread + 0x400d117c 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + 0x4 (size before relaxing) + .literal.threading_mutex_unlock_pthread + 0x400d117c 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mutex_lock + 0x400d117c 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + .literal.mbedtls_mutex_unlock + 0x400d1180 0x4 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + .literal.esp_ota_get_running_partition + 0x400d1184 0x18 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x38 (size before relaxing) + .literal.esp_mbedtls_mem_calloc + 0x400d119c 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_mem.c.obj) + 0x4 (size before relaxing) + .literal.esp_mbedtls_mem_free + 0x400d119c 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_mem.c.obj) + 0x4 (size before relaxing) + .literal._ZdaPv + 0x400d119c 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opv.o) + 0x4 (size before relaxing) + .literal._ZSt15get_new_handlerv + 0x400d119c 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + .literal._ZnajRKSt9nothrow_t + 0x400d11a0 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) + 0xc (size before relaxing) + .literal._ZdlPv + 0x400d11a0 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_op.o) + 0x4 (size before relaxing) + .literal.__cxa_begin_catch + 0x400d11a0 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + 0x10 (size before relaxing) + .literal.__cxa_end_catch + 0x400d11a8 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + 0x14 (size before relaxing) + .literal._ZL15eh_globals_dtorPv + 0x400d11a8 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + 0x8 (size before relaxing) + .literal.__cxa_get_globals_fast + 0x400d11a8 0xc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + 0x10 (size before relaxing) + .literal.__cxa_get_globals + 0x400d11b4 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + 0x1c (size before relaxing) + .literal.startup._GLOBAL__sub_I__ZN17__eh_globals_init7_S_initE + 0x400d11b4 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + 0x10 (size before relaxing) + .literal._ZN10__cxxabiv111__terminateEPFvvE + 0x400d11b8 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + 0xc (size before relaxing) + .literal._ZSt13get_terminatev + 0x400d11b8 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .literal.unlikely._ZSt9terminatev + 0x400d11bc 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + 0x8 (size before relaxing) + .literal._Znaj + 0x400d11bc 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opv.o) + 0x4 (size before relaxing) + .literal._Znwj + 0x400d11bc 0xc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + 0x1c (size before relaxing) + .literal._ZN10__cxxabiv120__si_class_type_infoD2Ev + 0x400d11c8 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + 0x8 (size before relaxing) + .literal._ZN10__cxxabiv120__si_class_type_infoD0Ev + 0x400d11cc 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + 0x8 (size before relaxing) + .literal._ZNKSt9type_infoeqERKS_$isra$0 + 0x400d11cc 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + 0x4 (size before relaxing) + .literal._ZNK10__cxxabiv120__si_class_type_info12__do_dyncastEiNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE + 0x400d11cc 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + 0x8 (size before relaxing) + .literal._ZNK10__cxxabiv120__si_class_type_info20__do_find_public_srcEiPKvPKNS_17__class_type_infoES2_ + 0x400d11cc 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + 0x4 (size before relaxing) + .literal._ZNK10__cxxabiv120__si_class_type_info11__do_upcastEPKNS_17__class_type_infoEPKvRNS1_15__upcast_resultE + 0x400d11cc 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + 0x4 (size before relaxing) + .literal._ZNKSt9bad_alloc4whatEv + 0x400d11cc 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + .literal._ZNSt9bad_allocD2Ev + 0x400d11d0 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + 0x8 (size before relaxing) + .literal._ZNSt9bad_allocD0Ev + 0x400d11d0 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + 0x8 (size before relaxing) + .literal._ZN10__cxxabiv117__class_type_infoD2Ev + 0x400d11d0 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + 0x8 (size before relaxing) + .literal._ZN10__cxxabiv117__class_type_infoD0Ev + 0x400d11d4 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + 0x8 (size before relaxing) + .literal._ZNKSt9type_infoeqERKS_$isra$0 + 0x400d11d4 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + 0x4 (size before relaxing) + .literal._ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PKvRNS0_15__upcast_resultE + 0x400d11d4 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + 0x4 (size before relaxing) + .literal._ZNK10__cxxabiv117__class_type_info12__do_dyncastEiNS0_10__sub_kindEPKS0_PKvS3_S5_RNS0_16__dyncast_resultE + 0x400d11d4 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + 0x8 (size before relaxing) + .literal._ZNK10__cxxabiv117__class_type_info10__do_catchEPKSt9type_infoPPvj + 0x400d11d4 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + 0x4 (size before relaxing) + .literal._ZdlPvj + 0x400d11d4 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_ops.o) + 0x4 (size before relaxing) + .literal._Z12abort_returnIiET_v + 0x400d11d4 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x4 (size before relaxing) + .literal.__wrap__Unwind_DeleteException + 0x400d11d4 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x4 (size before relaxing) + .literal.__wrap___gxx_personality_v0 + 0x400d11d4 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x4 (size before relaxing) + .literal.__wrap___cxa_allocate_exception + 0x400d11d4 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x4 (size before relaxing) + .literal.__wrap___cxa_throw + 0x400d11d4 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x4 (size before relaxing) + .literal.__libc_init_array + 0x400d11d4 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_misc_init.c.o) + .literal.time 0x400d11dc 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_time_time.c.o) + 0x4 (size before relaxing) + .literal.__bufio_buffer_allocate_locked + 0x400d11dc 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + 0x8 (size before relaxing) + .literal.__bufio_fill_locked + 0x400d11dc 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + 0x4 (size before relaxing) + .literal.__bufio_flush + 0x400d11dc 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + 0x4 (size before relaxing) + .literal.__bufio_setdir_locked + 0x400d11dc 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + 0x4 (size before relaxing) + .literal.__bufio_put + 0x400d11dc 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + 0xc (size before relaxing) + .literal.__bufio_get + 0x400d11dc 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + 0x14 (size before relaxing) + .literal.__bufio_seek + 0x400d11e4 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + 0x4 (size before relaxing) + .literal.__bufio_close + 0x400d11e4 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + 0xc (size before relaxing) + .literal.fclose + 0x400d11e4 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fclose.c.o) + 0x8 (size before relaxing) + .literal.fflush + 0x400d11e4 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fflush.c.o) + 0xc (size before relaxing) + .literal.__funlockfile$isra$0 + 0x400d11e4 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgets.c.o) + 0x4 (size before relaxing) + .literal.fgets + 0x400d11e4 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgets.c.o) + 0x14 (size before relaxing) + .literal.__flockfile_init + 0x400d11e4 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_flockfile_init.c.o) + 0x10 (size before relaxing) + .literal.fopen + 0x400d11e4 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fopen.c.o) + 0xc (size before relaxing) + .literal.fprintf + 0x400d11e4 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fprintf.c.o) + 0x4 (size before relaxing) + .literal.printf + 0x400d11e4 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_printf.c.o) + 0x8 (size before relaxing) + .literal.__stdio_flags + 0x400d11e4 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_sflags.c.o) + .literal.snprintf + 0x400d11e8 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_snprintf.c.o) + 0xc (size before relaxing) + .literal.strtol + 0x400d11ec 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_strtol.c.o) + .literal.strtoul + 0x400d11f0 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_strtoul.c.o) + .literal.__ultoa_invert + 0x400d11f4 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vfprintf.c.o) + 0x8 (size before relaxing) + .literal.skip_to_arg + 0x400d11f4 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vfprintf.c.o) + .literal.vfprintf + 0x400d11f8 0x18 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vfprintf.c.o) + 0x4c (size before relaxing) + .literal.vprintf + 0x400d1210 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vprintf.c.o) + 0x8 (size before relaxing) + .literal.mulShiftAll64 + 0x400d1210 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtoa_ryu.c.o) + 0x14 (size before relaxing) + .literal.div10 + 0x400d1210 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtoa_ryu.c.o) + 0xc (size before relaxing) + .literal.__dtoa_engine + 0x400d1214 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtoa_ryu.c.o) + 0x60 (size before relaxing) + .literal.__log10Pow2 + 0x400d1218 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_log10.c.o) + .literal.__log10Pow5 + 0x400d121c 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_log10.c.o) + .literal.__pow5bits + 0x400d1220 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_pow5bits.c.o) + .literal.__pow5Factor + 0x400d1224 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_table.c.o) + 0xc (size before relaxing) + .literal.__double_computePow5 + 0x400d1228 0x10 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_table.c.o) + 0x28 (size before relaxing) + .literal.__double_computeInvPow5 + 0x400d1238 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_table.c.o) + 0x28 (size before relaxing) + .literal.__shiftright128 + 0x400d1240 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_umul128.c.o) + 0x8 (size before relaxing) + .literal.__dtox_engine + 0x400d1244 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtox_engine.c.o) + 0x8 (size before relaxing) + .literal.fdopen + 0x400d1248 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fdopen.c.o) + 0x38 (size before relaxing) + .literal.__funlockfile$isra$0 + 0x400d1270 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fseeko.c.o) + 0x4 (size before relaxing) + .literal.fseeko + 0x400d1270 0x4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fseeko.c.o) + 0x14 (size before relaxing) + .literal.gpio_hal_intr_disable + 0x400d1274 0x4 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .literal.gpio_hal_iomux_in + 0x400d1278 0x0 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + 0xc (size before relaxing) + .literal.gpio_hal_iomux_out + 0x400d1278 0x0 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + 0xc (size before relaxing) + .literal.gpio_hal_matrix_in + 0x400d1278 0x0 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + 0xc (size before relaxing) + .literal.gpio_hal_matrix_out + 0x400d1278 0x0 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + 0x14 (size before relaxing) + .literal.esp_clk_tree_src_get_freq_hz + 0x400d1278 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + 0x6c (size before relaxing) + .literal.periph_ll_get_clk_en_mask + 0x400d1294 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x18 (size before relaxing) + .literal.periph_ll_get_rst_en_mask + 0x400d129c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x10 (size before relaxing) + .literal.periph_ll_enable_clk_clear_rst + 0x400d129c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x20 (size before relaxing) + .literal.periph_module_enable + 0x400d12a0 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x34 (size before relaxing) + .literal.rtc_init + 0x400d12b4 0x84 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0xe8 (size before relaxing) + .literal.prvInitializeNewRingbuffer + 0x400d1338 0x3c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x4c (size before relaxing) + .literal.prvSendAcquireGeneric + 0x400d1374 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x28 (size before relaxing) + .literal.prvReceiveGeneric + 0x400d1374 0x10 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x34 (size before relaxing) + .literal.xRingbufferCreateStatic + 0x400d1384 0x14 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x2c (size before relaxing) + .literal.xRingbufferSend + 0x400d1398 0xc esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x1c (size before relaxing) + .literal.xRingbufferReceiveUpTo + 0x400d13a4 0xc esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x1c (size before relaxing) + .literal.vRingbufferReturnItem + 0x400d13b0 0x8 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x28 (size before relaxing) + .literal.vRingbufferDelete + 0x400d13b8 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x18 (size before relaxing) + .literal.xRingbufferGetCurFreeSize + 0x400d13bc 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x18 (size before relaxing) + .literal.xRingbufferGetStaticBuffer + 0x400d13c0 0x8 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x10 (size before relaxing) + .literal.xRingbufferCreateWithCaps + 0x400d13c8 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x14 (size before relaxing) + .literal.vRingbufferDeleteWithCaps + 0x400d13c8 0x8 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x20 (size before relaxing) + .literal.esp_vApplicationIdleHook + 0x400d13d0 0x4 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x8 (size before relaxing) + .literal.esp_register_freertos_idle_hook_for_cpu + 0x400d13d4 0x4 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x14 (size before relaxing) + .literal.esp_register_freertos_tick_hook_for_cpu + 0x400d13d8 0x4 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x14 (size before relaxing) + .literal.esp_deregister_freertos_idle_hook_for_cpu + 0x400d13dc 0x0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x10 (size before relaxing) + .literal.panic_print_char_uart + 0x400d13dc 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x8 (size before relaxing) + .literal.panic_print_char + 0x400d13e0 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x4 (size before relaxing) + .literal.panic_print_str + 0x400d13e0 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x4 (size before relaxing) + .literal.print_abort_details + 0x400d13e0 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x8 (size before relaxing) + .literal.panic_print_hex + 0x400d13e4 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x8 (size before relaxing) + .literal.panic_print_dec + 0x400d13e4 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x10 (size before relaxing) + .literal.esp_panic_handler_disable_timg_wdts + 0x400d13e8 0x8 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x20 (size before relaxing) + .literal.disable_all_wdts + 0x400d13f0 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x14 (size before relaxing) + .literal.esp_panic_handler_enable_rtc_wdt + 0x400d13f4 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x20 (size before relaxing) + .literal.esp_panic_handler_feed_wdts + 0x400d13f4 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x40 (size before relaxing) + .literal.esp_panic_handler_increment_entry_count + 0x400d13f8 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x10 (size before relaxing) + .literal.esp_panic_handler + 0x400d13fc 0x24 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0xa8 (size before relaxing) + .literal.vPortTaskWrapper + 0x400d1420 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x18 (size before relaxing) + .literal.vPortTLSPointersDelCb + 0x400d1428 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x1c (size before relaxing) + .literal.vPortCleanUpCoprocArea + 0x400d142c 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x4 (size before relaxing) + .literal.pxPortInitialiseStack + 0x400d142c 0x28 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x34 (size before relaxing) + .literal.vApplicationStackOverflowHook + 0x400d1454 0xc esp-idf/freertos/libfreertos.a(port.c.obj) + 0x14 (size before relaxing) + .literal.vPortTCBPreDeleteHook + 0x400d1460 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x8 (size before relaxing) + .literal.xQueueGenericReset + 0x400d1460 0x10 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x34 (size before relaxing) + .literal.prvInitialiseNewQueue + 0x400d1470 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x4 (size before relaxing) + .literal.xQueueGenericCreateStatic + 0x400d1470 0x10 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x24 (size before relaxing) + .literal.xQueueGenericGetStaticBuffers + 0x400d1480 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.xQueueGenericCreate + 0x400d1488 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.xQueueGetMutexHolder + 0x400d148c 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.xQueueCreateCountingSemaphoreStatic + 0x400d1494 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x14 (size before relaxing) + .literal.xQueueGenericSend + 0x400d149c 0x10 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x68 (size before relaxing) + .literal.prvInitialiseMutex + 0x400d14ac 0xc esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.xQueueCreateMutex + 0x400d14b8 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x8 (size before relaxing) + .literal.xQueueCreateMutexStatic + 0x400d14b8 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x8 (size before relaxing) + .literal.xQueueGiveMutexRecursive + 0x400d14b8 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.xQueueSemaphoreTake + 0x400d14c0 0xc esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x60 (size before relaxing) + .literal.xQueueTakeMutexRecursive + 0x400d14cc 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.uxQueueSpacesAvailable + 0x400d14d0 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x1c (size before relaxing) + .literal.vQueueDelete + 0x400d14d8 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.prvDeleteTCB + 0x400d14e0 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x24 (size before relaxing) + .literal.prvCheckTasksWaitingTermination + 0x400d14f0 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x28 (size before relaxing) + .literal.prvAddCurrentTaskToDelayedList + 0x400d1508 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x28 (size before relaxing) + .literal.prvIdleTask + 0x400d151c 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.prvInitialiseNewTask + 0x400d151c 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x20 (size before relaxing) + .literal.prvInitialiseTaskLists + 0x400d1524 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x38 (size before relaxing) + .literal.prvAddNewTaskToReadyList + 0x400d1534 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x34 (size before relaxing) + .literal.vTaskSuspendAll + 0x400d1540 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + .literal.vTaskPlaceOnEventList + 0x400d1544 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x2c (size before relaxing) + .literal.vTaskInternalSetTimeOutState + 0x400d1550 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.xTaskCheckForTimeOut + 0x400d1554 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3c (size before relaxing) + .literal.xTaskGetCurrentTaskHandle + 0x400d1568 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.uxTaskPriorityGet + 0x400d156c 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + .literal.vTaskPrioritySet + 0x400d156c 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3c (size before relaxing) + .literal.pcTaskGetName + 0x400d1574 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x18 (size before relaxing) + .literal.pvTaskGetThreadLocalStoragePointer + 0x400d1580 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4 (size before relaxing) + .literal.vTaskDelete + 0x400d1580 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x60 (size before relaxing) + .literal.vTaskDelay + 0x400d1588 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x28 (size before relaxing) + .literal.xTaskResumeAll + 0x400d158c 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x50 (size before relaxing) + .literal.xTaskPriorityInherit + 0x400d15a0 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x1c (size before relaxing) + .literal.xTaskPriorityDisinherit + 0x400d15a0 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3c (size before relaxing) + .literal.vTaskPriorityDisinheritAfterTimeout + 0x400d15b4 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3c (size before relaxing) + .literal.pvTaskIncrementMutexHeldCount + 0x400d15c4 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + .literal.ulTaskGenericNotifyTake + 0x400d15c4 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x34 (size before relaxing) + .literal.xTaskGenericNotify + 0x400d15d0 0x24 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x58 (size before relaxing) + .literal.xTaskCreatePinnedToCore + 0x400d15f4 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x2c (size before relaxing) + .literal.xTaskCreateStaticPinnedToCore + 0x400d1600 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x40 (size before relaxing) + .literal.prvCreateIdleTasks + 0x400d1610 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x18 (size before relaxing) + .literal.vTaskStartScheduler + 0x400d161c 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3c (size before relaxing) + .literal.xTaskGetCoreID + 0x400d162c 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4 (size before relaxing) + .literal.xTaskGetIdleTaskHandleForCore + 0x400d162c 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x1c (size before relaxing) + .literal.xTaskGetCurrentTaskHandleForCore + 0x400d1638 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x14 (size before relaxing) + .literal.vTaskSetThreadLocalStoragePointerAndDelCallback + 0x400d163c 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + .literal.multi_heap_register_impl + 0x400d163c 0xc esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x18 (size before relaxing) + .literal.multi_heap_get_info_impl + 0x400d1648 0x4 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x24 (size before relaxing) + .literal.control_construct + 0x400d164c 0x28 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x3c (size before relaxing) + .literal.default_walker + 0x400d1674 0xc esp-idf/heap/libheap.a(tlsf.c.obj) + 0x10 (size before relaxing) + .literal.tlsf_walk_pool + 0x400d1680 0x10 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x14 (size before relaxing) + .literal.tlsf_fit_size + 0x400d1690 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x4 (size before relaxing) + .literal.tlsf_add_pool + 0x400d1690 0x1c esp-idf/heap/libheap.a(tlsf.c.obj) + 0x44 (size before relaxing) + .literal.tlsf_create + 0x400d16ac 0x4 esp-idf/heap/libheap.a(tlsf.c.obj) + 0xc (size before relaxing) + .literal.tlsf_create_with_pool + 0x400d16b0 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + 0xc (size before relaxing) + .literal.log_level_get + 0x400d16b0 0x0 esp-idf/log/liblog.a(tag_log_level.c.obj) + 0x1c (size before relaxing) + .literal.esp_flash_read_chip_id + 0x400d16b0 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x4 (size before relaxing) + .literal.esp_flash_app_enable_os_functions + 0x400d16b0 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x10 (size before relaxing) + .literal.xt_int_has_handler + 0x400d16bc 0x8 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .literal.xt_set_interrupt_handler + 0x400d16c4 0x4 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0xc (size before relaxing) + .text.console_start_select + 0x400d16c8 0x31 esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + *fill* 0x400d16f9 0x3 + .text.console_end_select + 0x400d16fc 0x1e esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + 0x400d16fc console_end_select + *fill* 0x400d171a 0x2 + .text.console_open + 0x400d171c 0x33 esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + 0x400d171c console_open + *fill* 0x400d174f 0x1 + .text.console_write + 0x400d1750 0x16 esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + 0x400d1750 console_write + *fill* 0x400d1766 0x2 + .text.console_fstat + 0x400d1768 0x14 esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + 0x400d1768 console_fstat + .text.console_close + 0x400d177c 0x39 esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + 0x400d177c console_close + *fill* 0x400d17b5 0x3 + .text.console_read + 0x400d17b8 0x16 esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + 0x400d17b8 console_read + *fill* 0x400d17ce 0x2 + .text.console_fcntl + 0x400d17d0 0x16 esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + 0x400d17d0 console_fcntl + *fill* 0x400d17e6 0x2 + .text.console_fsync + 0x400d17e8 0x12 esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + 0x400d17e8 console_fsync + *fill* 0x400d17fa 0x2 + .text.console_access + 0x400d17fc 0x12 esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + 0x400d17fc console_access + *fill* 0x400d180e 0x2 + .text.esp_vfs_dev_console_register + 0x400d1810 0x14 esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + 0x18 (size before relaxing) + .text.esp_stdio_register + 0x400d1824 0x14 esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + 0x18 (size before relaxing) + 0x400d1824 esp_stdio_register + .text.__esp_system_init_fn_init_vfs_console + 0x400d1838 0xa esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + 0xd (size before relaxing) + *fill* 0x400d1842 0x2 + .text.esp_app_format_init_elf_sha256 + 0x400d1844 0x5c esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .text.esp_app_get_elf_sha256 + 0x400d18a0 0x44 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0x400d18a0 esp_app_get_elf_sha256 + .text.__esp_system_init_fn_init_show_app_info + 0x400d18e4 0xbd esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0xd5 (size before relaxing) + *fill* 0x400d19a1 0x3 + .text.__esp_system_init_fn_init_efuse_check + 0x400d19a4 0x12 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + 0x15 (size before relaxing) + *fill* 0x400d19b6 0x2 + .text.__esp_system_init_fn_init_efuse_show_app_info + 0x400d19b8 0x8c esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + 0x9c (size before relaxing) + .text.__esp_system_init_fn_init_efuse + 0x400d1a44 0x28 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + 0x30 (size before relaxing) + .text.esp_efuse_check_errors + 0x400d1a6c 0xa esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0xd (size before relaxing) + 0x400d1a6c esp_efuse_check_errors + *fill* 0x400d1a76 0x2 + .text.esp_flash_init_default_chip + 0x400d1a78 0xf2 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x10a (size before relaxing) + 0x400d1a78 esp_flash_init_default_chip + *fill* 0x400d1b6a 0x2 + .text.esp_flash_app_init + 0x400d1b6c 0x17 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x1f (size before relaxing) + 0x400d1b6c esp_flash_app_init + *fill* 0x400d1b83 0x1 + .text.__esp_system_init_fn_init_flash + 0x400d1b84 0x2f esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x37 (size before relaxing) + *fill* 0x400d1bb3 0x1 + .text.spi_flash_chip_list_check + 0x400d1bb4 0xa6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + 0x400d1bb4 spi_flash_chip_list_check + *fill* 0x400d1c5a 0x2 + .text.spi_flash_init_lock + 0x400d1c5c 0x22 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x26 (size before relaxing) + 0x400d1c5c spi_flash_init_lock + *fill* 0x400d1c7e 0x2 + .text.spi_flash_op_lock + 0x400d1c80 0x12 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x400d1c80 spi_flash_op_lock + *fill* 0x400d1c92 0x2 + .text.spi_flash_op_unlock + 0x400d1c94 0xd esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x10 (size before relaxing) + 0x400d1c94 spi_flash_op_unlock + *fill* 0x400d1ca1 0x3 + .text.spi_flash_mmap + 0x400d1ca4 0x90 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x97 (size before relaxing) + 0x400d1ca4 spi_flash_mmap + *fill* 0x400d1d34 0x0 + .text.spi_flash_munmap + 0x400d1d34 0x3e esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x4a (size before relaxing) + 0x400d1d34 spi_flash_munmap + *fill* 0x400d1d72 0x2 + .text.spi_flash_cache2phys + 0x400d1d74 0x25 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x29 (size before relaxing) + 0x400d1d74 spi_flash_cache2phys + *fill* 0x400d1d99 0x3 + .text.esp_mspi_get_io + 0x400d1d9c 0x54 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x58 (size before relaxing) + 0x400d1d9c esp_mspi_get_io + .text.esp_mspi_pin_reserve + 0x400d1df0 0x43 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x47 (size before relaxing) + 0x400d1df0 esp_mspi_pin_reserve + *fill* 0x400d1e33 0x1 + .text.esp_ipc_call_and_wait + 0x400d1e34 0xd9 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0xf5 (size before relaxing) + *fill* 0x400d1f0d 0x3 + .text.esp_ipc_init + 0x400d1f10 0x85 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x91 (size before relaxing) + *fill* 0x400d1f95 0x3 + .text.esp_ipc_call_blocking + 0x400d1f98 0x15 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x400d1f98 esp_ipc_call_blocking + *fill* 0x400d1fad 0x3 + .text.esp_ipc_call_nonblocking + 0x400d1fb0 0x9e esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0xae (size before relaxing) + 0x400d1fb0 esp_ipc_call_nonblocking + *fill* 0x400d204e 0x2 + .text.esp_register_shutdown_handler + 0x400d2050 0x32 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x400d2050 esp_register_shutdown_handler + *fill* 0x400d2082 0x2 + .text.esp_restart + 0x400d2084 0x20 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x26 (size before relaxing) + 0x400d2084 esp_restart + *fill* 0x400d20a4 0x0 + .text.__esp_system_init_fn_init_show_cpu_freq + 0x400d20a4 0x42 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + 0x4a (size before relaxing) + *fill* 0x400d20e6 0x2 + .text.__esp_system_init_fn_init_brownout + 0x400d20e8 0x10 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + 0x13 (size before relaxing) + *fill* 0x400d20f8 0x0 + .text.__esp_system_init_fn_init_newlib_time + 0x400d20f8 0xa esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + 0xd (size before relaxing) + *fill* 0x400d2102 0x2 + .text.__esp_system_init_fn_init_disable_rtc_wdt + 0x400d2104 0x20 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + 0x28 (size before relaxing) + .text.restore_app_mmu_from_pro_mmu + 0x400d2124 0x28 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .text.core_intr_matrix_clear + 0x400d214c 0x23 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + *fill* 0x400d216f 0x1 + .text.sys_rtc_init + 0x400d2170 0x8 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0xb (size before relaxing) + *fill* 0x400d2178 0x0 + .text.mspi_init + 0x400d2178 0x11 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x1d (size before relaxing) + *fill* 0x400d2189 0x3 + .text.start_other_core + 0x400d218c 0xe9 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x115 (size before relaxing) + *fill* 0x400d2275 0x3 + .text.system_early_init + 0x400d2278 0x162 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x192 (size before relaxing) + *fill* 0x400d23da 0x2 + .text.startup_resume_other_cores + 0x400d23dc 0x10 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x400d23dc startup_resume_other_cores + .text.esp_ipc_isr_init + 0x400d23ec 0x1f esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x400d23ec esp_ipc_isr_init + *fill* 0x400d240b 0x1 + .text.esp_ipc_isr_port_init + 0x400d240c 0x22 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + 0x26 (size before relaxing) + 0x400d240c esp_ipc_isr_port_init + *fill* 0x400d242e 0x2 + .text.select_rtc_slow_clk + 0x400d2430 0xc2 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0xde (size before relaxing) + *fill* 0x400d24f2 0x2 + .text.esp_rtc_init + 0x400d24f4 0x28 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x2b (size before relaxing) + 0x400d24f4 esp_rtc_init + *fill* 0x400d251c 0x0 + .text.esp_clk_init + 0x400d251c 0xf1 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x129 (size before relaxing) + 0x400d251c esp_clk_init + *fill* 0x400d260d 0x3 + .text.esp_perip_clk_init + 0x400d2610 0xea esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x112 (size before relaxing) + 0x400d2610 esp_perip_clk_init + *fill* 0x400d26fa 0x2 + .text.esp_cache_err_int_init + 0x400d26fc 0x54 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x5c (size before relaxing) + 0x400d26fc esp_cache_err_int_init + .text.esp_cache_err_get_cpuid + 0x400d2750 0x29 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x2d (size before relaxing) + 0x400d2750 esp_cache_err_get_cpuid + *fill* 0x400d2779 0x3 + .text.esp_int_wdt_init + 0x400d277c 0x96 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0xb2 (size before relaxing) + 0x400d277c esp_int_wdt_init + *fill* 0x400d2812 0x2 + .text.esp_int_wdt_cpu_init + 0x400d2814 0x2c esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x34 (size before relaxing) + 0x400d2814 esp_int_wdt_cpu_init + .text.do_system_init_fn + 0x400d2840 0x61 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x65 (size before relaxing) + *fill* 0x400d28a1 0x3 + .text.do_core_init + 0x400d28a4 0xa esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0xe (size before relaxing) + *fill* 0x400d28ae 0x2 + .text.do_secondary_init + 0x400d28b0 0x5e esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x62 (size before relaxing) + *fill* 0x400d290e 0x2 + .text.start_cpu0_default + 0x400d2910 0x1d esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x29 (size before relaxing) + 0x400d2910 start_cpu0 + *fill* 0x400d292d 0x3 + .text.frame_to_panic_info + 0x400d2930 0x49 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x51 (size before relaxing) + *fill* 0x400d2979 0x3 + .text.panic_handler + 0x400d297c 0xdc esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x108 (size before relaxing) + .text.print_state_for_core + 0x400d2a58 0x26 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x2a (size before relaxing) + *fill* 0x400d2a7e 0x2 + .text.print_state + 0x400d2a80 0x44 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x50 (size before relaxing) + .text.panic_restart + 0x400d2ac4 0xf esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x18 (size before relaxing) + 0x400d2ac4 panic_restart + *fill* 0x400d2ad3 0x1 + .text.print_debug_exception_details + 0x400d2ad4 0x50 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x68 (size before relaxing) + .text.print_illegal_instruction_details + 0x400d2b24 0x4e esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x66 (size before relaxing) + *fill* 0x400d2b72 0x2 + .text.print_cache_err_details + 0x400d2b74 0x51 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x64 (size before relaxing) + *fill* 0x400d2bc5 0x3 + .text.panic_print_registers + 0x400d2bc8 0xd7 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x113 (size before relaxing) + 0x400d2bc8 panic_print_registers + *fill* 0x400d2c9f 0x1 + .text.panic_arch_fill_info + 0x400d2ca0 0x32 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x400d2ca0 panic_arch_fill_info + *fill* 0x400d2cd2 0x2 + .text.panic_soc_fill_info + 0x400d2cd4 0x62 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x400d2cd4 panic_soc_fill_info + *fill* 0x400d2d36 0x2 + .text.panic_print_backtrace + 0x400d2d38 0x20 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x400d2d38 panic_print_backtrace + .text.esp_log_is_tag_loggable + 0x400d2d58 0x19 esp-idf/log/liblog.a(log_level.c.obj) + 0x1d (size before relaxing) + 0x400d2d58 esp_log_is_tag_loggable + *fill* 0x400d2d71 0x3 + .text.esp_log_linked_list_get_level + 0x400d2d74 0x2b esp-idf/log/liblog.a(log_linked_list.c.obj) + 0x400d2d74 esp_log_linked_list_get_level + *fill* 0x400d2d9f 0x1 + .text.fix_cache_generation_overflow + 0x400d2da0 0x2c esp-idf/log/liblog.a(log_binary_heap.c.obj) + .text.heap_swap + 0x400d2dcc 0x22 esp-idf/log/liblog.a(log_binary_heap.c.obj) + *fill* 0x400d2dee 0x2 + .text.heap_bubble_down + 0x400d2df0 0x3b esp-idf/log/liblog.a(log_binary_heap.c.obj) + *fill* 0x400d2e2b 0x1 + .text.esp_log_cache_get_level + 0x400d2e2c 0xb8 esp-idf/log/liblog.a(log_binary_heap.c.obj) + 0xbc (size before relaxing) + 0x400d2e2c esp_log_cache_get_level + .text.esp_log_cache_add + 0x400d2ee4 0x7b esp-idf/log/liblog.a(log_binary_heap.c.obj) + 0x7f (size before relaxing) + 0x400d2ee4 esp_log_cache_add + *fill* 0x400d2f5f 0x1 + .text.heap_caps_get_free_size + 0x400d2f60 0x2b esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x2f (size before relaxing) + 0x400d2f60 heap_caps_get_free_size + *fill* 0x400d2f8b 0x1 + .text.heap_caps_get_info + 0x400d2f8c 0x6d esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x71 (size before relaxing) + 0x400d2f8c heap_caps_get_info + *fill* 0x400d2ff9 0x3 + .text.heap_caps_get_largest_free_block + 0x400d2ffc 0x11 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x400d2ffc heap_caps_get_largest_free_block + *fill* 0x400d300d 0x3 + .text.sorted_add_to_registered_heaps + 0x400d3010 0x4f esp-idf/heap/libheap.a(heap_caps_init.c.obj) + *fill* 0x400d305f 0x1 + .text.register_heap + 0x400d3060 0x2c esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x32 (size before relaxing) + *fill* 0x400d308c 0x0 + .text.heap_caps_enable_nonos_stack_heaps + 0x400d308c 0x28 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x2c (size before relaxing) + 0x400d308c heap_caps_enable_nonos_stack_heaps + .text.heap_caps_init + 0x400d30b4 0x28f esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x2af (size before relaxing) + 0x400d30b4 heap_caps_init + *fill* 0x400d3343 0x1 + .text.__esp_system_init_fn_init_heap + 0x400d3344 0xa esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0xd (size before relaxing) + *fill* 0x400d334e 0x2 + .text.s_get_num_reserved_regions + 0x400d3350 0x11 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + *fill* 0x400d3361 0x3 + .text.s_prepare_reserved_regions + 0x400d3364 0xb0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0xb8 (size before relaxing) + .text.soc_get_available_memory_region_max_count + 0x400d3414 0x12 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0x400d3414 soc_get_available_memory_region_max_count + *fill* 0x400d3426 0x2 + .text.soc_get_available_memory_regions + 0x400d3428 0x112 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0x116 (size before relaxing) + 0x400d3428 soc_get_available_memory_regions + *fill* 0x400d353a 0x2 + .text.calc_checksum + 0x400d353c 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .text.esp_clk_slowclk_cal_get + 0x400d3560 0xd esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x400d3560 esp_clk_slowclk_cal_get + *fill* 0x400d356d 0x3 + .text.esp_rtc_get_time_us + 0x400d3570 0xc8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0xe7 (size before relaxing) + 0x400d3570 esp_rtc_get_time_us + *fill* 0x400d3638 0x0 + .text.esp_clk_slowclk_cal_set + 0x400d3638 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x13 (size before relaxing) + 0x400d3638 esp_clk_slowclk_cal_set + *fill* 0x400d3648 0x0 + .text.insert_vector_desc + 0x400d3648 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.find_desc_for_int + 0x400d3698 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.get_desc_for_int + 0x400d36bc 0x52 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x5e (size before relaxing) + *fill* 0x400d370e 0x2 + .text.find_desc_for_source + 0x400d3710 0x6b esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x400d377b 0x1 + .text.is_vect_desc_usable + 0x400d377c 0xe5 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0xe9 (size before relaxing) + *fill* 0x400d3861 0x3 + .text.get_available_int + 0x400d3864 0x14d esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x15d (size before relaxing) + *fill* 0x400d39b1 0x3 + .text.esp_intr_ptr_in_isr_region + 0x400d39b4 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x400d39b4 esp_intr_ptr_in_isr_region + .text.esp_intr_alloc_intrstatus_bind + 0x400d39ec 0x309 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x33d (size before relaxing) + 0x400d39ec esp_intr_alloc_intrstatus_bind + *fill* 0x400d3cf5 0x3 + .text.esp_intr_alloc_intrstatus + 0x400d3cf8 0x21 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x400d3cf8 esp_intr_alloc_intrstatus + *fill* 0x400d3d19 0x3 + .text.esp_intr_alloc + 0x400d3d1c 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x1c (size before relaxing) + 0x400d3d1c esp_intr_alloc + .text.intr_free_for_current_cpu + 0x400d3d34 0xd5 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0xe5 (size before relaxing) + *fill* 0x400d3e09 0x3 + .text.esp_intr_free + 0x400d3e0c 0x4e esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x52 (size before relaxing) + 0x400d3e0c esp_intr_free + *fill* 0x400d3e5a 0x2 + .text.intr_free_for_other_cpu + 0x400d3e5c 0xa esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0xe (size before relaxing) + *fill* 0x400d3e66 0x2 + .text.s_rtc_isr_noniram_hook + 0x400d3e68 0xf esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + *fill* 0x400d3e77 0x1 + .text.s_rtc_isr_noniram_hook_relieve + 0x400d3e78 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + *fill* 0x400d3e8a 0x2 + .text.rtc_isr_ensure_installed + 0x400d3e8c 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x63 (size before relaxing) + *fill* 0x400d3ee4 0x0 + .text.rtc_isr_register + 0x400d3ee4 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x6a (size before relaxing) + 0x400d3ee4 rtc_isr_register + *fill* 0x400d3f3a 0x2 + .text.esp_gpio_reserve + 0x400d3f3c 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + 0x400d3f3c esp_gpio_reserve + .text.esp_gpio_revoke + 0x400d3f54 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + 0x400d3f54 esp_gpio_revoke + *fill* 0x400d3f72 0x2 + .text.clk_tree_rtc_slow_calibration + 0x400d3f74 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x4c (size before relaxing) + .text.esp_clk_tree_rc_fast_d256_get_freq_hz + 0x400d3fb8 0x4e esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x5a (size before relaxing) + 0x400d3fb8 esp_clk_tree_rc_fast_d256_get_freq_hz + *fill* 0x400d4006 0x2 + .text.esp_clk_tree_xtal32k_get_freq_hz + 0x400d4008 0x4e esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x5a (size before relaxing) + 0x400d4008 esp_clk_tree_xtal32k_get_freq_hz + *fill* 0x400d4056 0x2 + .text.esp_clk_tree_lp_slow_get_freq_hz + 0x400d4058 0x3d esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x41 (size before relaxing) + 0x400d4058 esp_clk_tree_lp_slow_get_freq_hz + *fill* 0x400d4095 0x3 + .text.esp_clk_tree_rc_fast_get_freq_hz + 0x400d4098 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x400d4098 esp_clk_tree_rc_fast_get_freq_hz + *fill* 0x400d40b1 0x3 + .text.esp_clk_tree_lp_fast_get_freq_hz + 0x400d40b4 0x52 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x56 (size before relaxing) + 0x400d40b4 esp_clk_tree_lp_fast_get_freq_hz + *fill* 0x400d4106 0x2 + .text.rtcio_ll_force_hold_disable + 0x400d4108 0x63 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + *fill* 0x400d416b 0x1 + .text.esp_deep_sleep_wakeup_io_reset + 0x400d416c 0x64 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + 0x68 (size before relaxing) + 0x400d416c esp_deep_sleep_wakeup_io_reset + .text.esp_brownout_init + 0x400d41d0 0x47 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + 0x4b (size before relaxing) + 0x400d41d0 esp_brownout_init + *fill* 0x400d4217 0x1 + .text.esp_chip_info + 0x400d4218 0x9a esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + 0x9e (size before relaxing) + 0x400d4218 esp_chip_info + *fill* 0x400d42b2 0x2 + .text.sar_periph_ctrl_init + 0x400d42b4 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0x400d42b4 sar_periph_ctrl_init + .text.esp_cpu_intr_get_desc + 0x400d42cc 0x3d esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + 0x40 (size before relaxing) + 0x400d42cc esp_cpu_intr_get_desc + *fill* 0x400d4309 0x3 + .text.esp_sleep_sub_mode_config + 0x400d430c 0xa6 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0xb6 (size before relaxing) + 0x400d430c esp_sleep_sub_mode_config + *fill* 0x400d43b2 0x2 + .text.esp_sleep_sub_mode_force_disable + 0x400d43b4 0x55 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x61 (size before relaxing) + 0x400d43b4 esp_sleep_sub_mode_force_disable + *fill* 0x400d4409 0x3 + .text.esp_sleep_sub_mode_dump_config + 0x400d440c 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x44 (size before relaxing) + 0x400d440c esp_sleep_sub_mode_dump_config + .text.other_cpu_startup_idle_hook_cb + 0x400d444c 0x12 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + *fill* 0x400d445e 0x2 + .text.main_task + 0x400d4460 0xae esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0xd6 (size before relaxing) + *fill* 0x400d450e 0x2 + .text.esp_startup_start_app + 0x400d4510 0x45 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0x58 (size before relaxing) + 0x400d4510 esp_startup_start_app + *fill* 0x400d4555 0x3 + .text.esp_startup_start_app_other_cores + 0x400d4558 0x26 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0x36 (size before relaxing) + 0x400d4558 esp_startup_start_app_other_cores + *fill* 0x400d457e 0x2 + .text._xt_tick_divisor_init + 0x400d4580 0x1c esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + 0x1f (size before relaxing) + 0x400d4580 _xt_tick_divisor_init + *fill* 0x400d459c 0x0 + .text.xQueueCreateWithCaps + 0x400d459c 0x54 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + 0x60 (size before relaxing) + 0x400d459c xQueueCreateWithCaps + .text.vQueueDeleteWithCaps + 0x400d45f0 0x33 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + 0x3f (size before relaxing) + 0x400d45f0 vQueueDeleteWithCaps + *fill* 0x400d4623 0x1 + .text.xSemaphoreCreateGenericWithCaps + 0x400d4624 0x6c esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + 0x74 (size before relaxing) + 0x400d4624 xSemaphoreCreateGenericWithCaps + .text.vSemaphoreDeleteWithCaps + 0x400d4690 0x2f esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + 0x37 (size before relaxing) + 0x400d4690 vSemaphoreDeleteWithCaps + *fill* 0x400d46bf 0x1 + .text.pvPortMalloc + 0x400d46c0 0x12 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x400d46c0 pvPortMalloc + *fill* 0x400d46d2 0x2 + .text.vPortFree + 0x400d46d4 0xa esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0xe (size before relaxing) + 0x400d46d4 vPortFree + *fill* 0x400d46de 0x2 + .text.xPortCheckValidTCBMem + 0x400d46e0 0x49 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x400d46e0 xPortCheckValidTCBMem + *fill* 0x400d4729 0x3 + .text.xPortcheckValidStackMem + 0x400d472c 0x48 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x400d472c xPortcheckValidStackMem + .text.vApplicationGetIdleTaskMemory + 0x400d4774 0x40 esp-idf/freertos/libfreertos.a(port_common.c.obj) + 0x4b (size before relaxing) + 0x400d4774 vApplicationGetIdleTaskMemory + *fill* 0x400d47b4 0x0 + .text.__esp_system_init_fn_init_libc + 0x400d47b4 0xa esp-idf/esp_libc/libesp_libc.a(init.c.obj) + 0xd (size before relaxing) + *fill* 0x400d47be 0x2 + .text.__esp_system_init_fn_init_libc_stdio + 0x400d47c0 0xd esp-idf/esp_libc/libesp_libc.a(init.c.obj) + 0x10 (size before relaxing) + *fill* 0x400d47cd 0x3 + .text.esp_libc_locks_init + 0x400d47d0 0x5c esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x6e (size before relaxing) + 0x400d47d0 esp_libc_locks_init + 0x400d47d0 esp_newlib_locks_init + *fill* 0x400d482c 0x0 + .text.adjust_boot_time + 0x400d482c 0x12a esp-idf/esp_libc/libesp_libc.a(time.c.obj) + 0x12e (size before relaxing) + *fill* 0x400d4956 0x2 + .text.get_adjusted_boot_time + 0x400d4958 0x1a esp-idf/esp_libc/libesp_libc.a(time.c.obj) + 0x22 (size before relaxing) + *fill* 0x400d4972 0x2 + .text.adjtime_corr_stop + 0x400d4974 0x29 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + 0x34 (size before relaxing) + *fill* 0x400d499d 0x3 + .text._gettimeofday_r + 0x400d49a0 0x42 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + 0x4a (size before relaxing) + 0x400d49a0 _gettimeofday_r + *fill* 0x400d49e2 0x2 + .text.settimeofday + 0x400d49e4 0x3e esp-idf/esp_libc/libesp_libc.a(time.c.obj) + 0x49 (size before relaxing) + 0x400d49e4 settimeofday + *fill* 0x400d4a22 0x2 + .text.esp_libc_time_init + 0x400d4a24 0x8 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + 0xb (size before relaxing) + 0x400d4a24 esp_libc_time_init + 0x400d4a24 esp_newlib_time_init + *fill* 0x400d4a2c 0x0 + .text.open 0x400d4a2c 0x48 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + 0x4c (size before relaxing) + 0x400d4a2c open + .text.close 0x400d4a74 0x11 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + 0x400d4a74 close + *fill* 0x400d4a85 0x3 + .text.read 0x400d4a88 0x15 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + 0x400d4a88 read + *fill* 0x400d4a9d 0x3 + .text.write 0x400d4aa0 0x15 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + 0x400d4aa0 write + *fill* 0x400d4ab5 0x3 + .text.lseek 0x400d4ab8 0x15 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + 0x400d4ab8 lseek + *fill* 0x400d4acd 0x3 + .text.gettimeofday + 0x400d4ad0 0x10 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + 0x14 (size before relaxing) + 0x400d4ad0 gettimeofday + .text.fcntl 0x400d4ae0 0x38 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + 0x400d4ae0 fcntl + .text.fstat 0x400d4b18 0x10 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + 0x14 (size before relaxing) + 0x400d4b18 fstat + .text.esp_time_impl_get_time_since_boot + 0x400d4b28 0x1b esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + 0x400d4b28 esp_time_impl_get_time_since_boot + *fill* 0x400d4b43 0x1 + .text.esp_time_impl_set_boot_time + 0x400d4b44 0x23 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + 0x27 (size before relaxing) + 0x400d4b44 esp_time_impl_set_boot_time + *fill* 0x400d4b67 0x1 + .text.esp_time_impl_get_boot_time + 0x400d4b68 0x23 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + 0x27 (size before relaxing) + 0x400d4b68 esp_time_impl_get_boot_time + *fill* 0x400d4b8b 0x1 + .text.esp_set_time_from_rtc + 0x400d4b8c 0x24 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + 0x28 (size before relaxing) + 0x400d4b8c esp_set_time_from_rtc + .text.esp_sync_timekeeping_timers + 0x400d4bb0 0x4d esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + 0x5c (size before relaxing) + 0x400d4bb0 esp_sync_timekeeping_timers + *fill* 0x400d4bfd 0x3 + .text.esp_libc_init + 0x400d4c00 0x2e esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + 0x32 (size before relaxing) + 0x400d4c00 esp_setup_newlib_syscalls + 0x400d4c00 esp_newlib_init + 0x400d4c00 esp_libc_init + *fill* 0x400d4c2e 0x2 + .text.esp_libc_init_global_stdio + 0x400d4c30 0x4f esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + 0x5b (size before relaxing) + 0x400d4c30 esp_libc_init_global_stdio + *fill* 0x400d4c7f 0x1 + .text.pthread_mutex_lock_internal + 0x400d4c80 0x53 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x5f (size before relaxing) + *fill* 0x400d4cd3 0x1 + .text.pthread_mutex_init + 0x400d4cd4 0x6c esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x74 (size before relaxing) + 0x400d4cd4 pthread_mutex_init + .text.pthread_mutex_init_if_static + 0x400d4d40 0x33 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x3b (size before relaxing) + *fill* 0x400d4d73 0x1 + .text.pthread_mutex_lock + 0x400d4d74 0x24 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x28 (size before relaxing) + 0x400d4d74 pthread_mutex_lock + .text.pthread_mutex_unlock + 0x400d4d98 0x61 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x6d (size before relaxing) + 0x400d4d98 pthread_mutex_unlock + *fill* 0x400d4df9 0x3 + .text.find_key + 0x400d4dfc 0x2c esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x2f (size before relaxing) + *fill* 0x400d4e28 0x0 + .text.pthread_cleanup_thread_specific_data_callback + 0x400d4e28 0x3f esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x4a (size before relaxing) + *fill* 0x400d4e67 0x1 + .text.pthread_key_create + 0x400d4e68 0x49 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x4d (size before relaxing) + 0x400d4e68 pthread_key_create + *fill* 0x400d4eb1 0x3 + .text.pthread_getspecific + 0x400d4eb4 0x1c esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x20 (size before relaxing) + 0x400d4eb4 pthread_getspecific + .text.pthread_setspecific + 0x400d4ed0 0xb7 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0xc3 (size before relaxing) + 0x400d4ed0 pthread_setspecific + *fill* 0x400d4f87 0x1 + .text.esp_timer_early_init + 0x400d4f88 0xf esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + 0x13 (size before relaxing) + 0x400d4f88 esp_timer_early_init + *fill* 0x400d4f97 0x1 + .text.__esp_system_init_fn_esp_timer_init_nonos + 0x400d4f98 0xa esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + 0xd (size before relaxing) + *fill* 0x400d4fa2 0x2 + .text.esp_timer_impl_init_system_time + 0x400d4fa4 0x56 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0x5e (size before relaxing) + 0x400d4fa4 esp_timer_impl_init_system_time + *fill* 0x400d4ffa 0x2 + .text.esp_timer_impl_early_init + 0x400d4ffc 0xcb esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0xd3 (size before relaxing) + 0x400d4ffc esp_timer_impl_early_init + *fill* 0x400d50c7 0x1 + .text.uart_get_avail_data_len + 0x400d50c8 0x8e esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x400d5156 0x2 + .text.uart_read_char + 0x400d5158 0x22 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x400d517a 0x2 + .text.unregister_select + 0x400d517c 0x6b esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x76 (size before relaxing) + *fill* 0x400d51e7 0x1 + .text.uart_end_select + 0x400d51e8 0x7e esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x92 (size before relaxing) + *fill* 0x400d5266 0x2 + .text.register_select + 0x400d5268 0x51 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x55 (size before relaxing) + *fill* 0x400d52b9 0x3 + .text.uart_start_select + 0x400d52bc 0x1a5 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x1c5 (size before relaxing) + *fill* 0x400d5461 0x3 + .text.select_notif_callback_isr + 0x400d5464 0xde esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0xe6 (size before relaxing) + *fill* 0x400d5542 0x2 + .text.uart_access + 0x400d5544 0x62 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x400d55a6 0x2 + .text.uart_open + 0x400d55a8 0x48 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .text.uart_rx_char + 0x400d55f0 0xec esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0xf0 (size before relaxing) + .text.uart_tx_char + 0x400d56dc 0x7e esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x81 (size before relaxing) + *fill* 0x400d575a 0x2 + .text.uart_fcntl + 0x400d575c 0x62 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x400d57be 0x2 + .text.uart_close + 0x400d57c0 0x22 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x400d57e2 0x2 + .text.uart_return_char + 0x400d57e4 0x26 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x400d580a 0x2 + .text.uart_fsync + 0x400d580c 0x39 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x45 (size before relaxing) + *fill* 0x400d5845 0x3 + .text.uart_read + 0x400d5848 0x10b esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x123 (size before relaxing) + *fill* 0x400d5953 0x1 + .text.uart_write + 0x400d5954 0x7d esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x85 (size before relaxing) + *fill* 0x400d59d1 0x3 + .text.uart_fstat + 0x400d59d4 0x35 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + *fill* 0x400d5a09 0x3 + .text.esp_vfs_uart_get_vfs + 0x400d5a0c 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x400d5a0c esp_vfs_uart_get_vfs + .text.uart_vfs_dev_register + 0x400d5a14 0x26 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x2a (size before relaxing) + 0x400d5a14 uart_vfs_dev_register + *fill* 0x400d5a3a 0x2 + .text.__esp_system_init_fn_init_vfs_uart + 0x400d5a3c 0xa esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0xd (size before relaxing) + *fill* 0x400d5a46 0x2 + .text.uart_pattern_queue_update + 0x400d5a48 0x3d esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + *fill* 0x400d5a85 0x3 + .text.uart_reenable_intr_mask + 0x400d5a88 0x6d esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x75 (size before relaxing) + *fill* 0x400d5af5 0x3 + .text.uart_pattern_enqueue + 0x400d5af8 0x4c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x50 (size before relaxing) + .text.uart_pattern_link_free + 0x400d5b44 0x3c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x44 (size before relaxing) + .text.uart_release_pin + 0x400d5b80 0x1d4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x1dc (size before relaxing) + .text.uart_try_set_iomux_pin + 0x400d5d54 0x75 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x79 (size before relaxing) + *fill* 0x400d5dc9 0x3 + .text.uart_ll_enable_bus_clock + 0x400d5dcc 0x4d esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x54 (size before relaxing) + *fill* 0x400d5e19 0x3 + .text.uart_module_disable + 0x400d5e1c 0x48 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x57 (size before relaxing) + *fill* 0x400d5e64 0x0 + .text.uart_ll_reset_register + 0x400d5e64 0x8d esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0xa0 (size before relaxing) + *fill* 0x400d5ef1 0x3 + .text.uart_module_enable + 0x400d5ef4 0x92 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0xa6 (size before relaxing) + *fill* 0x400d5f86 0x2 + .text.uart_enable_tx_write_fifo + 0x400d5f88 0x9c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0xb0 (size before relaxing) + .text.uart_check_buf_full + 0x400d6024 0x62 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x72 (size before relaxing) + *fill* 0x400d6086 0x2 + .text.uart_rx_intr_handler_default + 0x400d6088 0x884 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x90f (size before relaxing) + *fill* 0x400d690c 0x0 + .text.uart_free_driver_obj + 0x400d690c 0x66 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x72 (size before relaxing) + *fill* 0x400d6972 0x2 + .text.uart_alloc_driver_obj + 0x400d6974 0xc3 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0xea (size before relaxing) + *fill* 0x400d6a37 0x1 + .text.uart_disable_intr_mask + 0x400d6a38 0x6d esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x75 (size before relaxing) + 0x400d6a38 uart_disable_intr_mask + *fill* 0x400d6aa5 0x3 + .text.uart_pattern_queue_reset + 0x400d6aa8 0xa1 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0xb5 (size before relaxing) + 0x400d6aa8 uart_pattern_queue_reset + *fill* 0x400d6b49 0x3 + .text.uart_disable_rx_intr + 0x400d6b4c 0x12 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x400d6b4c uart_disable_rx_intr + *fill* 0x400d6b5e 0x2 + .text.uart_disable_tx_intr + 0x400d6b60 0x11 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x400d6b60 uart_disable_tx_intr + *fill* 0x400d6b71 0x3 + .text.uart_enable_tx_intr + 0x400d6b74 0x90 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0xa0 (size before relaxing) + 0x400d6b74 uart_enable_tx_intr + .text.uart_tx_all + 0x400d6c04 0x161 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x185 (size before relaxing) + *fill* 0x400d6d65 0x3 + .text._uart_set_pin6 + 0x400d6d68 0x5b6 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x612 (size before relaxing) + 0x400d6d68 _uart_set_pin6 + *fill* 0x400d731e 0x2 + .text.uart_param_config + 0x400d7320 0x288 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x2d4 (size before relaxing) + 0x400d7320 uart_param_config + .text.uart_intr_config + 0x400d75a8 0xe5 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0xf9 (size before relaxing) + 0x400d75a8 uart_intr_config + *fill* 0x400d768d 0x3 + .text.uart_wait_tx_done + 0x400d7690 0x1ba esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x1e6 (size before relaxing) + 0x400d7690 uart_wait_tx_done + *fill* 0x400d784a 0x2 + .text.uart_write_bytes + 0x400d784c 0x8a esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x9a (size before relaxing) + 0x400d784c uart_write_bytes + *fill* 0x400d78d6 0x2 + .text.uart_read_bytes + 0x400d78d8 0x135 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x155 (size before relaxing) + 0x400d78d8 uart_read_bytes + *fill* 0x400d7a0d 0x3 + .text.uart_get_buffered_data_len + 0x400d7a10 0x7c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x8c (size before relaxing) + 0x400d7a10 uart_get_buffered_data_len + .text.uart_driver_delete + 0x400d7a8c 0xa8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0xc4 (size before relaxing) + 0x400d7a8c uart_driver_delete + .text.uart_driver_install + 0x400d7b34 0x27a esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x2d2 (size before relaxing) + 0x400d7b34 uart_driver_install + *fill* 0x400d7dae 0x2 + .text.uart_is_driver_installed + 0x400d7db0 0x1e esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x400d7db0 uart_is_driver_installed + *fill* 0x400d7dce 0x2 + .text.uart_set_select_notif_callback + 0x400d7dd0 0x16 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x400d7dd0 uart_set_select_notif_callback + *fill* 0x400d7de6 0x2 + .text.uart_get_selectlock + 0x400d7de8 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x400d7de8 uart_get_selectlock + .text._ZZL24close_handles_and_deinitPKcENKUlR14NVSHandleEntryE_clES2_ + 0x400d7df0 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x20 (size before relaxing) + .text._ZSt9__find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZL24close_handles_and_deinitPKcEUlRS1_E_EEET_SC_SC_T0_ + 0x400d7e0c 0x1b esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + *fill* 0x400d7e27 0x1 + .text._ZSt7find_ifIN14intrusive_listI14NVSHandleEntryE8iteratorEZL24close_handles_and_deinitPKcEUlRS1_E_ET_S8_S8_T0_ + 0x400d7e28 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .text.nvs_flash_init_partition + 0x400d7e38 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x32 (size before relaxing) + 0x400d7e38 nvs_flash_init_partition + *fill* 0x400d7e5a 0x2 + .text.nvs_flash_init + 0x400d7e5c 0xd esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + 0x400d7e5c nvs_flash_init + *fill* 0x400d7e69 0x3 + .text._ZL24close_handles_and_deinitPKc + 0x400d7e6c 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x48 (size before relaxing) + .text.nvs_flash_erase_partition + 0x400d7ea8 0x57 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x6e (size before relaxing) + 0x400d7ea8 nvs_flash_erase_partition + *fill* 0x400d7eff 0x1 + .text.nvs_flash_erase + 0x400d7f00 0xd esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + 0x400d7f00 nvs_flash_erase + *fill* 0x400d7f0d 0x3 + .text._ZN9__gnu_cxx5__ops11__pred_iterIZN3nvs7Storage26eraseMismatchedBlobIndexesER14intrusive_listINS3_13BlobIndexNodeEEEUlRKS5_E_EENS0_10_Iter_predIT_EESC_ + 0x400d7f10 0x1e esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + *fill* 0x400d7f2e 0x2 + .text._ZN9__gnu_cxx5__ops11__pred_iterIZN3nvs7Storage20eraseOrphanDataBlobsER14intrusive_listINS3_13BlobIndexNodeEEEUlRKS5_E_EENS0_10_Iter_predIT_EESC_ + 0x400d7f30 0x1e esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + *fill* 0x400d7f4e 0x2 + .text._ZZN3nvs7Storage26eraseMismatchedBlobIndexesER14intrusive_listINS0_13BlobIndexNodeEEENKUlRKS2_E_clES6_ + 0x400d7f50 0x4c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZSt9__find_ifIN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZNS2_26eraseMismatchedBlobIndexesERS4_EUlRKS3_E_EEET_SE_SE_T0_ + 0x400d7f9c 0x1a esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + *fill* 0x400d7fb6 0x2 + .text._ZSt7find_ifIN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE8iteratorEZNS2_26eraseMismatchedBlobIndexesERS4_EUlRKS3_E_ET_SA_SA_T0_ + 0x400d7fb8 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x36 (size before relaxing) + *fill* 0x400d7fea 0x2 + .text._ZZN3nvs7Storage20eraseOrphanDataBlobsER14intrusive_listINS0_13BlobIndexNodeEEENKUlRKS2_E_clES6_ + 0x400d7fec 0x45 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + *fill* 0x400d8031 0x3 + .text._ZSt9__find_ifIN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZNS2_20eraseOrphanDataBlobsERS4_EUlRKS3_E_EEET_SE_SE_T0_ + 0x400d8034 0x1a esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + *fill* 0x400d804e 0x2 + .text._ZSt7find_ifIN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE8iteratorEZNS2_20eraseOrphanDataBlobsERS4_EUlRKS3_E_ET_SA_SA_T0_ + 0x400d8050 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x36 (size before relaxing) + *fill* 0x400d8082 0x2 + .text._ZN3nvs4Item6getKeyEPcj + 0x400d8084 0x25 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x400d8084 nvs::Item::getKey(char*, unsigned int) + *fill* 0x400d80a9 0x3 + .text._ZN3nvs7Storage20eraseOrphanDataBlobsER14intrusive_listINS0_13BlobIndexNodeEE + 0x400d80ac 0x7a esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x86 (size before relaxing) + 0x400d80ac nvs::Storage::eraseOrphanDataBlobs(intrusive_list&) + *fill* 0x400d8126 0x2 + .text._ZSt9__fill_a1IhiEN9__gnu_cxx11__enable_ifIXaasrSt9__is_byteIT_E7__valueoosrSt10__are_sameIS3_T0_E7__valuesrSt20__memcpyable_integerIS6_E7__widthEvE6__typeEPS3_SC_RKS6_ + 0x400d8128 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x400d8128 __gnu_cxx::__enable_if::__value&&(std::__are_same::__value||std::__memcpyable_integer::__width), void>::__type std::__fill_a1(unsigned char*, unsigned char*, int const&) + .text._ZN3nvs7Storage19populateBlobIndicesER14intrusive_listINS0_13BlobIndexNodeEE + 0x400d8140 0x85 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8d (size before relaxing) + 0x400d8140 nvs::Storage::populateBlobIndices(intrusive_list&) + *fill* 0x400d81c5 0x3 + .text._ZN3nvs7Storage26eraseMismatchedBlobIndexesER14intrusive_listINS0_13BlobIndexNodeEE + 0x400d81c8 0xd3 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xe3 (size before relaxing) + 0x400d81c8 nvs::Storage::eraseMismatchedBlobIndexes(intrusive_list&) + *fill* 0x400d829b 0x1 + .text._ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE17clearAndFreeNodesEv + 0x400d829c 0x1f esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x23 (size before relaxing) + 0x400d829c intrusive_list::clearAndFreeNodes() + *fill* 0x400d82bb 0x1 + .text._ZNKSt14default_deleteIA_N3nvs4PageEEclIS1_EENSt9enable_ifIXsrSt14is_convertibleIPA_T_PS2_E5valueEvE4typeEPS7_ + 0x400d82bc 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x33 (size before relaxing) + 0x400d82bc std::enable_if::value, void>::type std::default_delete::operator()(nvs::Page*) const + *fill* 0x400d82ec 0x0 + .text._ZNSt10unique_ptrIA_N3nvs4PageESt14default_deleteIS2_EED2Ev + 0x400d82ec 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x16 (size before relaxing) + 0x400d82ec std::unique_ptr >::~unique_ptr() + 0x400d82ec std::unique_ptr >::~unique_ptr() + *fill* 0x400d82fe 0x2 + .text._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE17clearAndFreeNodesEv + 0x400d8300 0x1f esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x23 (size before relaxing) + 0x400d8300 intrusive_list::clearAndFreeNodes() + *fill* 0x400d831f 0x1 + .text._ZN3nvs7Storage15clearNamespacesEv + 0x400d8320 0xb esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xe (size before relaxing) + 0x400d8320 nvs::Storage::clearNamespaces() + *fill* 0x400d832b 0x1 + .text._ZN3nvs7Storage4initEmm + 0x400d832c 0x121 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x13d (size before relaxing) + 0x400d832c nvs::Storage::init(unsigned long, unsigned long) + *fill* 0x400d844d 0x3 + .text._ZN3nvs7StorageD2Ev + 0x400d8450 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x17 (size before relaxing) + 0x400d8450 nvs::Storage::~Storage() + 0x400d8450 nvs::Storage::~Storage() + *fill* 0x400d8460 0x0 + .text._ZN3nvs12NVSPartitionD2Ev + 0x400d8460 0xf esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x400d8460 nvs::NVSPartition::~NVSPartition() + 0x400d8460 nvs::NVSPartition::~NVSPartition() + *fill* 0x400d846f 0x1 + .text._ZN3nvs12NVSPartitionD0Ev + 0x400d8470 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x16 (size before relaxing) + 0x400d8470 nvs::NVSPartition::~NVSPartition() + *fill* 0x400d8482 0x2 + .text._ZN3nvs12NVSPartition8read_rawEjPvj + 0x400d8484 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x400d8484 nvs::NVSPartition::read_raw(unsigned int, void*, unsigned int) + *fill* 0x400d8499 0x3 + .text._ZN3nvs12NVSPartition4readEjPvj + 0x400d849c 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x400d849c nvs::NVSPartition::read(unsigned int, void*, unsigned int) + *fill* 0x400d84b1 0x3 + .text._ZN3nvs12NVSPartition9write_rawEjPKvj + 0x400d84b4 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x400d84b4 nvs::NVSPartition::write_raw(unsigned int, void const*, unsigned int) + *fill* 0x400d84c9 0x3 + .text._ZN3nvs12NVSPartition5writeEjPKvj + 0x400d84cc 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x400d84cc nvs::NVSPartition::write(unsigned int, void const*, unsigned int) + *fill* 0x400d84e1 0x3 + .text._ZN3nvs12NVSPartition11erase_rangeEjj + 0x400d84e4 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x14 (size before relaxing) + 0x400d84e4 nvs::NVSPartition::erase_range(unsigned int, unsigned int) + .text._ZN3nvs12NVSPartitionC2EPK15esp_partition_t + 0x400d84f4 0x1f esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x400d84f4 nvs::NVSPartition::NVSPartition(esp_partition_t const*) + 0x400d84f4 nvs::NVSPartition::NVSPartition(esp_partition_t const*) + *fill* 0x400d8513 0x1 + .text._ZN3nvs16partition_lookup20lookup_nvs_partitionEPKcPPNS_9PartitionE + 0x400d8514 0x41 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + 0x49 (size before relaxing) + 0x400d8514 nvs::partition_lookup::lookup_nvs_partition(char const*, nvs::Partition**) + *fill* 0x400d8555 0x3 + .text._ZN3nvs19NVSPartitionManagerD2Ev + 0x400d8558 0xa esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x400d8558 nvs::NVSPartitionManager::~NVSPartitionManager() + 0x400d8558 nvs::NVSPartitionManager::~NVSPartitionManager() + *fill* 0x400d8562 0x2 + .text._ZN3nvs19NVSPartitionManagerD0Ev + 0x400d8564 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x400d8564 nvs::NVSPartitionManager::~NVSPartitionManager() + *fill* 0x400d8576 0x2 + .text._ZZN3nvs19NVSPartitionManager24lookup_storage_from_nameEPKcENKUlRNS_7StorageEE_clES4_ + 0x400d8578 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .text._ZSt9__find_ifIN14intrusive_listIN3nvs7StorageEE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZNS1_19NVSPartitionManager24lookup_storage_from_nameEPKcEUlRS2_E_EEET_SE_SE_T0_ + 0x400d8594 0x1b esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + *fill* 0x400d85af 0x1 + .text._ZSt7find_ifIN14intrusive_listIN3nvs7StorageEE8iteratorEZNS1_19NVSPartitionManager24lookup_storage_from_nameEPKcEUlRS2_E_ET_SA_SA_T0_ + 0x400d85b0 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x14 (size before relaxing) + .text._ZN3nvs7StorageC2EPNS_9PartitionE + 0x400d85c0 0x2e esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x400d85c0 nvs::Storage::Storage(nvs::Partition*) + 0x400d85c0 nvs::Storage::Storage(nvs::Partition*) + *fill* 0x400d85ee 0x2 + .text._ZN3nvs19NVSPartitionManager12get_instanceEv + 0x400d85f0 0x39 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x400d85f0 nvs::NVSPartitionManager::get_instance() + *fill* 0x400d8629 0x3 + .text._ZN3nvs19NVSPartitionManager24lookup_storage_from_nameEPKc + 0x400d862c 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x14 (size before relaxing) + 0x400d862c nvs::NVSPartitionManager::lookup_storage_from_name(char const*) + .text._ZN3nvs19NVSPartitionManager11init_customEPNS_9PartitionEmm + 0x400d863c 0x90 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0xa0 (size before relaxing) + 0x400d863c nvs::NVSPartitionManager::init_custom(nvs::Partition*, unsigned long, unsigned long) + .text._ZN3nvs19NVSPartitionManager14init_partitionEPKc + 0x400d86cc 0x6e esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x7a (size before relaxing) + 0x400d86cc nvs::NVSPartitionManager::init_partition(char const*) + *fill* 0x400d873a 0x2 + .text._ZN3nvs19NVSPartitionManager16deinit_partitionEPKc + 0x400d873c 0x7d esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x91 (size before relaxing) + 0x400d873c nvs::NVSPartitionManager::deinit_partition(char const*) + *fill* 0x400d87b9 0x3 + .text._ZNK3nvs4Item14calculateCrc32Ev + 0x400d87bc 0x2c esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0x400d87bc nvs::Item::calculateCrc32() const + .text._ZNK3nvs4Item26calculateCrc32WithoutValueEv + 0x400d87e8 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0x400d87e8 nvs::Item::calculateCrc32WithoutValue() const + .text._ZNK3nvs4Item22checkHeaderConsistencyEh + 0x400d8810 0x10d esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0x111 (size before relaxing) + 0x400d8810 nvs::Item::checkHeaderConsistency(unsigned char) const + *fill* 0x400d891d 0x3 + .text._ZN3nvs4LockC2Ev + 0x400d8920 0xb esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + 0xe (size before relaxing) + 0x400d8920 nvs::Lock::Lock() + 0x400d8920 nvs::Lock::Lock() + *fill* 0x400d892b 0x1 + .text._ZN3nvs4LockD2Ev + 0x400d892c 0xb esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + 0xe (size before relaxing) + 0x400d892c nvs::Lock::~Lock() + 0x400d892c nvs::Lock::~Lock() + *fill* 0x400d8937 0x1 + .text._ZN3nvs8HashList4findEjRKNS_4ItemE + 0x400d8938 0x46 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x4a (size before relaxing) + 0x400d8938 nvs::HashList::find(unsigned int, nvs::Item const&) + *fill* 0x400d897e 0x2 + .text._ZN3nvs8HashList5clearEv + 0x400d8980 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x25 (size before relaxing) + 0x400d8980 nvs::HashList::clear() + *fill* 0x400d89a1 0x3 + .text._ZN3nvs8HashListD2Ev + 0x400d89a4 0xa esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0xe (size before relaxing) + 0x400d89a4 nvs::HashList::~HashList() + 0x400d89a4 nvs::HashList::~HashList() + *fill* 0x400d89ae 0x2 + .text._ZN3nvs8HashList5eraseEj + 0x400d89b0 0x72 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x76 (size before relaxing) + 0x400d89b0 nvs::HashList::erase(unsigned int) + *fill* 0x400d8a22 0x2 + .text._ZN3nvs8HashList6insertERKNS_4ItemEj + 0x400d8a24 0x69 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x71 (size before relaxing) + 0x400d8a24 nvs::HashList::insert(nvs::Item const&, unsigned int) + *fill* 0x400d8a8d 0x3 + .text._ZN3nvs4ItemC2EhNS_8ItemTypeEhPKch + 0x400d8a90 0x50 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x400d8a90 nvs::Item::Item(unsigned char, nvs::ItemType, unsigned char, char const*, unsigned char) + 0x400d8a90 nvs::Item::Item(unsigned char, nvs::ItemType, unsigned char, char const*, unsigned char) + .text._ZN3nvs4PageC2Ev + 0x400d8ae0 0x2e esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x400d8ae0 nvs::Page::Page() + 0x400d8ae0 nvs::Page::Page() + *fill* 0x400d8b0e 0x2 + .text._ZN3nvs4Page6Header14calculateCrc32Ev + 0x400d8b10 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x400d8b10 nvs::Page::Header::calculateCrc32() + .text._ZN3nvs4Page10initializeEv + 0x400d8b24 0x6a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x6e (size before relaxing) + 0x400d8b24 nvs::Page::initialize() + *fill* 0x400d8b8e 0x2 + .text._ZNK3nvs4Page12getSeqNumberERm + 0x400d8b90 0x29 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x400d8b90 nvs::Page::getSeqNumber(unsigned long&) const + *fill* 0x400d8bb9 0x3 + .text._ZN3nvs4Page12setSeqNumberEm + 0x400d8bbc 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x400d8bbc nvs::Page::setSeqNumber(unsigned long) + *fill* 0x400d8bd1 0x3 + .text._ZN3nvs4Page5eraseEv + 0x400d8bd4 0x3a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x400d8bd4 nvs::Page::erase() + *fill* 0x400d8c0e 0x2 + .text._ZN3nvs4Page15alterEntryStateEjNS0_10EntryStateE + 0x400d8c10 0x4c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x50 (size before relaxing) + 0x400d8c10 nvs::Page::alterEntryState(unsigned int, nvs::Page::EntryState) + .text._ZN3nvs4Page10writeEntryERKNS_4ItemE + 0x400d8c5c 0x5c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x400d8c5c nvs::Page::writeEntry(nvs::Item const&) + .text._ZN3nvs4Page9copyItemsERS0_ + 0x400d8cb8 0xb6 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0xc6 (size before relaxing) + 0x400d8cb8 nvs::Page::copyItems(nvs::Page&) + *fill* 0x400d8d6e 0x2 + .text._ZN3nvs4Page20alterEntryRangeStateEjjNS0_10EntryStateE + 0x400d8d70 0x76 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x400d8d70 nvs::Page::alterEntryRangeState(unsigned int, unsigned int, nvs::Page::EntryState) + *fill* 0x400d8de6 0x2 + .text._ZN3nvs4Page17eraseEntryAndSpanEj + 0x400d8de8 0x122 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x136 (size before relaxing) + 0x400d8de8 nvs::Page::eraseEntryAndSpan(unsigned int) + *fill* 0x400d8f0a 0x2 + .text._ZN3nvs4Page8findItemEhNS_8ItemTypeEPKcRjRNS_4ItemEhNS_9VerOffsetE + 0x400d8f0c 0x26f esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x277 (size before relaxing) + 0x400d8f0c nvs::Page::findItem(unsigned char, nvs::ItemType, char const*, unsigned int&, nvs::Item&, unsigned char, nvs::VerOffset) + *fill* 0x400d917b 0x1 + .text._ZN3nvs4Page9eraseItemEhNS_8ItemTypeEPKchNS_9VerOffsetE + 0x400d917c 0x3a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x3e (size before relaxing) + 0x400d917c nvs::Page::eraseItem(unsigned char, nvs::ItemType, char const*, unsigned char, nvs::VerOffset) + *fill* 0x400d91b6 0x2 + .text._ZN3nvs4Page15mLoadEntryTableEv + 0x400d91b8 0x3ec esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x40c (size before relaxing) + 0x400d91b8 nvs::Page::mLoadEntryTable() + .text._ZN3nvs4Page4loadEPNS_9PartitionEm + 0x400d95a4 0x141 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x149 (size before relaxing) + 0x400d95a4 nvs::Page::load(nvs::Partition*, unsigned long) + *fill* 0x400d96e5 0x3 + .text._ZZN3nvs11PageManager4loadEPNS_9PartitionEmmENKUlRKNS_4PageEE_clES5_ + 0x400d96e8 0x25 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + *fill* 0x400d970d 0x3 + .text._ZSt9__find_ifIN14intrusive_listIN3nvs4PageEE8iteratorEN9__gnu_cxx5__ops10_Iter_predIZNS1_11PageManager4loadEPNS1_9PartitionEmmEUlRKS2_E_EEET_SF_SF_T0_ + 0x400d9710 0x1b esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + *fill* 0x400d972b 0x1 + .text._ZSt7find_ifIN14intrusive_listIN3nvs4PageEE8iteratorEZNS1_11PageManager4loadEPNS1_9PartitionEmmEUlRKS2_E_ET_SB_SB_T0_ + 0x400d972c 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x14 (size before relaxing) + .text._ZN14intrusive_listIN3nvs4PageEE5clearEv + 0x400d973c 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x400d973c intrusive_list::clear() + *fill* 0x400d9751 0x3 + .text._ZN3nvs11PageManager12activatePageEv + 0x400d9754 0x40 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x4c (size before relaxing) + 0x400d9754 nvs::PageManager::activatePage() + .text._ZN14intrusive_listIN3nvs4PageEE6insertENS2_8iteratorEPS1_ + 0x400d9794 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x38 (size before relaxing) + 0x400d9794 intrusive_list::insert(intrusive_list::iterator, nvs::Page*) + .text._ZN3nvs11PageManager4loadEPNS_9PartitionEmm + 0x400d97c8 0x236 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x26e (size before relaxing) + 0x400d97c8 nvs::PageManager::load(nvs::Partition*, unsigned long, unsigned long) + *fill* 0x400d99fe 0x2 + .text.esp_get_free_index + 0x400d9a00 0x1b esp-idf/vfs/libvfs.a(vfs.c.obj) + *fill* 0x400d9a1b 0x1 + .text.free_proxy_members + 0x400d9a1c 0x12 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x16 (size before relaxing) + *fill* 0x400d9a2e 0x2 + .text.esp_vfs_duplicate_fs_ops + 0x400d9a30 0x9f esp-idf/vfs/libvfs.a(vfs.c.obj) + 0xaf (size before relaxing) + *fill* 0x400d9acf 0x1 + .text.esp_vfs_free_fs_ops + 0x400d9ad0 0x16 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x1e (size before relaxing) + *fill* 0x400d9ae6 0x2 + .text.esp_vfs_register_fs_common + 0x400d9ae8 0xd2 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0xd6 (size before relaxing) + *fill* 0x400d9bba 0x2 + .text.esp_vfs_register_fs + 0x400d9bbc 0x5a esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x62 (size before relaxing) + 0x400d9bbc esp_vfs_register_fs + *fill* 0x400d9c16 0x2 + .text.get_vfs_for_index + 0x400d9c18 0x22 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x400d9c18 get_vfs_for_index + *fill* 0x400d9c3a 0x2 + .text.register_fd + 0x400d9c3c 0x64 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x400d9c3c register_fd + .text.unregister_fd + 0x400d9ca0 0x68 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x70 (size before relaxing) + 0x400d9ca0 unregister_fd + .text.get_vfs_for_fd + 0x400d9d08 0x25 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x400d9d08 get_vfs_for_fd + *fill* 0x400d9d2d 0x3 + .text.get_local_fd + 0x400d9d30 0x21 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x400d9d30 get_local_fd + *fill* 0x400d9d51 0x3 + .text.translate_path + 0x400d9d54 0x3d esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x400d9d54 translate_path + *fill* 0x400d9d91 0x3 + .text.get_vfs_for_path + 0x400d9d94 0x70 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x400d9d94 get_vfs_for_path + .text.get_vfs_count + 0x400d9e04 0xa esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x400d9e04 get_vfs_count + *fill* 0x400d9e0e 0x2 + .text.esp_vfs_open + 0x400d9e10 0xd6 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + 0xda (size before relaxing) + 0x400d9e10 esp_vfs_open + 0x400d9e10 _open_r + *fill* 0x400d9ee6 0x2 + .text.esp_vfs_write + 0x400d9ee8 0x68 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + 0x70 (size before relaxing) + 0x400d9ee8 esp_vfs_write + 0x400d9ee8 _write_r + .text.esp_vfs_lseek + 0x400d9f50 0x68 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + 0x70 (size before relaxing) + 0x400d9f50 _lseek_r + 0x400d9f50 esp_vfs_lseek + .text.esp_vfs_read + 0x400d9fb8 0x68 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + 0x70 (size before relaxing) + 0x400d9fb8 esp_vfs_read + 0x400d9fb8 _read_r + .text.esp_vfs_close + 0x400da020 0x68 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + 0x70 (size before relaxing) + 0x400da020 esp_vfs_close + 0x400da020 _close_r + .text.esp_vfs_fstat + 0x400da088 0x64 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + 0x6c (size before relaxing) + 0x400da088 esp_vfs_fstat + 0x400da088 _fstat_r + .text.esp_vfs_fcntl_r + 0x400da0ec 0x68 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + 0x70 (size before relaxing) + 0x400da0ec _fcntl_r + 0x400da0ec esp_vfs_fcntl_r + .text.esp_vfs_fsync + 0x400da154 0x64 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + 0x68 (size before relaxing) + 0x400da154 esp_vfs_fsync + 0x400da154 fsync + .text.esp_vfs_opendir + 0x400da1b8 0x64 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + 0x400da1b8 esp_vfs_opendir + 0x400da1b8 opendir + .text.esp_vfs_readdir + 0x400da21c 0x57 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + 0x400da21c esp_vfs_readdir + 0x400da21c readdir + *fill* 0x400da273 0x1 + .text.esp_vfs_closedir + 0x400da274 0x57 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + 0x400da274 esp_vfs_closedir + 0x400da274 closedir + *fill* 0x400da2cb 0x1 + .text.esp_vfs_access + 0x400da2cc 0x62 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + 0x400da2cc access + 0x400da2cc esp_vfs_access + *fill* 0x400da32e 0x2 + .text.esp_vfs_select_triggered + 0x400da330 0x4b esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + 0x53 (size before relaxing) + 0x400da330 esp_vfs_select_triggered + *fill* 0x400da37b 0x1 + .text.esp_vfs_select_triggered_isr + 0x400da37c 0x4b esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + 0x4f (size before relaxing) + 0x400da37c esp_vfs_select_triggered_isr + *fill* 0x400da3c7 0x1 + .text.vfs_null_write + 0x400da3c8 0x2d esp-idf/vfs/libvfs.a(nullfs.c.obj) + *fill* 0x400da3f5 0x3 + .text.vfs_null_lseek + 0x400da3f8 0x45 esp-idf/vfs/libvfs.a(nullfs.c.obj) + *fill* 0x400da43d 0x3 + .text.vfs_null_read + 0x400da440 0x29 esp-idf/vfs/libvfs.a(nullfs.c.obj) + *fill* 0x400da469 0x3 + .text.vfs_null_pread + 0x400da46c 0x29 esp-idf/vfs/libvfs.a(nullfs.c.obj) + *fill* 0x400da495 0x3 + .text.vfs_null_pwrite + 0x400da498 0x2d esp-idf/vfs/libvfs.a(nullfs.c.obj) + *fill* 0x400da4c5 0x3 + .text.vfs_null_get_empty_fd + 0x400da4c8 0x26 esp-idf/vfs/libvfs.a(nullfs.c.obj) + *fill* 0x400da4ee 0x2 + .text.vfs_null_close + 0x400da4f0 0x1d esp-idf/vfs/libvfs.a(nullfs.c.obj) + *fill* 0x400da50d 0x3 + .text.vfs_null_fcntl + 0x400da510 0x28 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .text.vfs_null_ioctl + 0x400da538 0x2d esp-idf/vfs/libvfs.a(nullfs.c.obj) + *fill* 0x400da565 0x3 + .text.vfs_null_fsync + 0x400da568 0x1d esp-idf/vfs/libvfs.a(nullfs.c.obj) + *fill* 0x400da585 0x3 + .text.vfs_null_open + 0x400da588 0xa8 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .text.vfs_null_stat + 0x400da630 0x46 esp-idf/vfs/libvfs.a(nullfs.c.obj) + *fill* 0x400da676 0x2 + .text.vfs_null_fstat + 0x400da678 0x3f esp-idf/vfs/libvfs.a(nullfs.c.obj) + *fill* 0x400da6b7 0x1 + .text.esp_vfs_null_register + 0x400da6b8 0x14 esp-idf/vfs/libvfs.a(nullfs.c.obj) + 0x18 (size before relaxing) + 0x400da6b8 esp_vfs_null_register + .text.__esp_system_init_fn_init_vfs_nullfs + 0x400da6cc 0xa esp-idf/vfs/libvfs.a(nullfs.c.obj) + 0xd (size before relaxing) + *fill* 0x400da6d6 0x2 + .text.print_device_type_mix + 0x400da6d8 0x128 esp-idf/main/libmain.a(main.c.obj) + 0x140 (size before relaxing) + .text.modbus_override_task + 0x400da800 0x1eb esp-idf/main/libmain.a(main.c.obj) + 0x253 (size before relaxing) + *fill* 0x400da9eb 0x1 + .text.modbus_rtu_task + 0x400da9ec 0xeb esp-idf/main/libmain.a(main.c.obj) + 0x117 (size before relaxing) + *fill* 0x400daad7 0x1 + .text.spiffs_init + 0x400daad8 0x72 esp-idf/main/libmain.a(main.c.obj) + 0x8a (size before relaxing) + *fill* 0x400dab4a 0x2 + .text.spiffs_list_files + 0x400dab4c 0x76 esp-idf/main/libmain.a(main.c.obj) + 0x96 (size before relaxing) + *fill* 0x400dabc2 0x2 + .text.modbus_uart_init + 0x400dabc4 0x123 esp-idf/main/libmain.a(main.c.obj) + 0x15b (size before relaxing) + *fill* 0x400dace7 0x1 + .text.file_exists + 0x400dace8 0x20 esp-idf/main/libmain.a(main.c.obj) + 0x24 (size before relaxing) + .text.app_main + 0x400dad08 0x872 esp-idf/main/libmain.a(main.c.obj) + 0xa3a (size before relaxing) + 0x400dad08 app_main + *fill* 0x400db57a 0x2 + .text.find_point_rw + 0x400db57c 0x44 esp-idf/main/libmain.a(modbus_memory.c.obj) + .text.find_point_ro + 0x400db5c0 0x43 esp-idf/main/libmain.a(modbus_memory.c.obj) + *fill* 0x400db603 0x1 + .text.sync_points_controlled_by + 0x400db604 0xb4 esp-idf/main/libmain.a(modbus_memory.c.obj) + 0xbc (size before relaxing) + .text.write_point_words + 0x400db6b8 0x6c esp-idf/main/libmain.a(modbus_memory.c.obj) + 0x74 (size before relaxing) + .text.find_pics_point_rw + 0x400db724 0x26 esp-idf/main/libmain.a(modbus_memory.c.obj) + 0x2a (size before relaxing) + *fill* 0x400db74a 0x2 + .text.write_pics_staging_word + 0x400db74c 0x50 esp-idf/main/libmain.a(modbus_memory.c.obj) + 0x54 (size before relaxing) + .text.apply_pics_to_official_point + 0x400db79c 0x334 esp-idf/main/libmain.a(modbus_memory.c.obj) + 0x348 (size before relaxing) + .text.modbus_memory_reset + 0x400dbad0 0x48 esp-idf/main/libmain.a(modbus_memory.c.obj) + 0x400dbad0 modbus_memory_reset + .text.modbus_memory_init + 0x400dbb18 0x27 esp-idf/main/libmain.a(modbus_memory.c.obj) + 0x400dbb18 modbus_memory_init + *fill* 0x400dbb3f 0x1 + .text.modbus_memory_read_coil + 0x400dbb40 0x34 esp-idf/main/libmain.a(modbus_memory.c.obj) + 0x38 (size before relaxing) + 0x400dbb40 modbus_memory_read_coil + .text.modbus_memory_write_coil + 0x400dbb74 0x56 esp-idf/main/libmain.a(modbus_memory.c.obj) + 0x5e (size before relaxing) + 0x400dbb74 modbus_memory_write_coil + *fill* 0x400dbbca 0x2 + .text.modbus_memory_read_discrete_input + 0x400dbbcc 0x34 esp-idf/main/libmain.a(modbus_memory.c.obj) + 0x38 (size before relaxing) + 0x400dbbcc modbus_memory_read_discrete_input + .text.modbus_memory_write_discrete_input + 0x400dbc00 0x27 esp-idf/main/libmain.a(modbus_memory.c.obj) + 0x2b (size before relaxing) + 0x400dbc00 modbus_memory_write_discrete_input + *fill* 0x400dbc27 0x1 + .text.modbus_memory_read_input_register + 0x400dbc28 0x32 esp-idf/main/libmain.a(modbus_memory.c.obj) + 0x400dbc28 modbus_memory_read_input_register + *fill* 0x400dbc5a 0x2 + .text.modbus_memory_write_input_register + 0x400dbc5c 0x28 esp-idf/main/libmain.a(modbus_memory.c.obj) + 0x400dbc5c modbus_memory_write_input_register + .text.modbus_memory_read_holding_register + 0x400dbc84 0x32 esp-idf/main/libmain.a(modbus_memory.c.obj) + 0x400dbc84 modbus_memory_read_holding_register + *fill* 0x400dbcb6 0x2 + .text.modbus_memory_write_holding_register + 0x400dbcb8 0x38 esp-idf/main/libmain.a(modbus_memory.c.obj) + 0x40 (size before relaxing) + 0x400dbcb8 modbus_memory_write_holding_register + .text.modbus_memory_read_bit + 0x400dbcf0 0x23 esp-idf/main/libmain.a(modbus_memory.c.obj) + 0x2a (size before relaxing) + 0x400dbcf0 modbus_memory_read_bit + *fill* 0x400dbd13 0x1 + .text.modbus_memory_write_bit + 0x400dbd14 0x27 esp-idf/main/libmain.a(modbus_memory.c.obj) + 0x2a (size before relaxing) + 0x400dbd14 modbus_memory_write_bit + *fill* 0x400dbd3b 0x1 + .text.modbus_memory_read_reg + 0x400dbd3c 0x27 esp-idf/main/libmain.a(modbus_memory.c.obj) + 0x2a (size before relaxing) + 0x400dbd3c modbus_memory_read_reg + *fill* 0x400dbd63 0x1 + .text.modbus_memory_write_reg + 0x400dbd64 0x27 esp-idf/main/libmain.a(modbus_memory.c.obj) + 0x2e (size before relaxing) + 0x400dbd64 modbus_memory_write_reg + *fill* 0x400dbd8b 0x1 + .text.modbus_memory_valid_bit_range + 0x400dbd8c 0x2e esp-idf/main/libmain.a(modbus_memory.c.obj) + 0x400dbd8c modbus_memory_valid_bit_range + *fill* 0x400dbdba 0x2 + .text.modbus_memory_write_coils + 0x400dbdbc 0x4f esp-idf/main/libmain.a(modbus_memory.c.obj) + 0x400dbdbc modbus_memory_write_coils + *fill* 0x400dbe0b 0x1 + .text.modbus_memory_write_holding_registers + 0x400dbe0c 0x98 esp-idf/main/libmain.a(modbus_memory.c.obj) + 0xa8 (size before relaxing) + 0x400dbe0c modbus_memory_write_holding_registers + .text.infer_point_type_from_address + 0x400dbea4 0x4e esp-idf/main/libmain.a(modbus_points.c.obj) + *fill* 0x400dbef2 0x2 + .text.normalize_address + 0x400dbef4 0x98 esp-idf/main/libmain.a(modbus_points.c.obj) + .text.db_has_duplicate_pics_range + 0x400dbf8c 0x5b esp-idf/main/libmain.a(modbus_points.c.obj) + *fill* 0x400dbfe7 0x1 + .text.trim_whitespace + 0x400dbfe8 0x6a esp-idf/main/libmain.a(modbus_points.c.obj) + *fill* 0x400dc052 0x2 + .text.str_equals + 0x400dc054 0x2d esp-idf/main/libmain.a(modbus_points.c.obj) + *fill* 0x400dc081 0x3 + .text.parse_point_type + 0x400dc084 0x44 esp-idf/main/libmain.a(modbus_points.c.obj) + 0x50 (size before relaxing) + .text.parse_data_type + 0x400dc0c8 0x55 esp-idf/main/libmain.a(modbus_points.c.obj) + 0x65 (size before relaxing) + *fill* 0x400dc11d 0x3 + .text.parse_pics_data_type + 0x400dc120 0x52 esp-idf/main/libmain.a(modbus_points.c.obj) + 0x5e (size before relaxing) + *fill* 0x400dc172 0x2 + .text.db_has_duplicate_name + 0x400dc174 0x47 esp-idf/main/libmain.a(modbus_points.c.obj) + *fill* 0x400dc1bb 0x1 + .text.parse_u32 + 0x400dc1bc 0x38 esp-idf/main/libmain.a(modbus_points.c.obj) + .text.append_helper_points + 0x400dc1f4 0xea esp-idf/main/libmain.a(modbus_points.c.obj) + 0xf6 (size before relaxing) + *fill* 0x400dc2de 0x2 + .text.modbus_points_reset + 0x400dc2e0 0x18 esp-idf/main/libmain.a(modbus_points.c.obj) + 0x1c (size before relaxing) + 0x400dc2e0 modbus_points_reset + .text.validate_control_mapping + 0x400dc2f8 0x46 esp-idf/main/libmain.a(modbus_points.c.obj) + *fill* 0x400dc33e 0x2 + .text.parse_csv_line + 0x400dc340 0x25c esp-idf/main/libmain.a(modbus_points.c.obj) + 0x288 (size before relaxing) + .text.modbus_points_load + 0x400dc59c 0x232 esp-idf/main/libmain.a(modbus_points.c.obj) + 0x276 (size before relaxing) + 0x400dc59c modbus_points_load + *fill* 0x400dc7ce 0x2 + .text.modbus_rtu_crc16 + 0x400dc7d0 0x3f esp-idf/main/libmain.a(modbus_rtu.c.obj) + 0x400dc7d0 modbus_rtu_crc16 + *fill* 0x400dc80f 0x1 + .text.build_exception_response + 0x400dc810 0x44 esp-idf/main/libmain.a(modbus_rtu.c.obj) + .text.handle_read_bits + 0x400dc854 0x13c esp-idf/main/libmain.a(modbus_rtu.c.obj) + 0x14c (size before relaxing) + .text.handle_read_registers + 0x400dc990 0x122 esp-idf/main/libmain.a(modbus_rtu.c.obj) + 0x132 (size before relaxing) + *fill* 0x400dcab2 0x2 + .text.handle_write_single_coil + 0x400dcab4 0x110 esp-idf/main/libmain.a(modbus_rtu.c.obj) + 0x11c (size before relaxing) + .text.handle_write_single_register + 0x400dcbc4 0xcc esp-idf/main/libmain.a(modbus_rtu.c.obj) + 0xd8 (size before relaxing) + .text.handle_write_multiple_coils + 0x400dcc90 0x222 esp-idf/main/libmain.a(modbus_rtu.c.obj) + 0x232 (size before relaxing) + *fill* 0x400dceb2 0x2 + .text.handle_write_multiple_registers + 0x400dceb4 0x196 esp-idf/main/libmain.a(modbus_rtu.c.obj) + 0x1aa (size before relaxing) + *fill* 0x400dd04a 0x2 + .text.modbus_rtu_init + 0x400dd04c 0x18 esp-idf/main/libmain.a(modbus_rtu.c.obj) + 0x400dd04c modbus_rtu_init + .text.modbus_rtu_add_device + 0x400dd064 0x82 esp-idf/main/libmain.a(modbus_rtu.c.obj) + 0x86 (size before relaxing) + 0x400dd064 modbus_rtu_add_device + *fill* 0x400dd0e6 0x2 + .text.modbus_rtu_read_frame + 0x400dd0e8 0x56 esp-idf/main/libmain.a(modbus_rtu.c.obj) + 0x400dd0e8 modbus_rtu_read_frame + *fill* 0x400dd13e 0x2 + .text.modbus_rtu_process_request + 0x400dd140 0x284 esp-idf/main/libmain.a(modbus_rtu.c.obj) + 0x298 (size before relaxing) + 0x400dd140 modbus_rtu_process_request + .text.copy_str + 0x400dd3c4 0x32 esp-idf/main/libmain.a(config_store.c.obj) + *fill* 0x400dd3f6 0x2 + .text.set_device_defaults + 0x400dd3f8 0x36 esp-idf/main/libmain.a(config_store.c.obj) + 0x3a (size before relaxing) + *fill* 0x400dd42e 0x2 + .text.trim_whitespace + 0x400dd430 0x6a esp-idf/main/libmain.a(config_store.c.obj) + *fill* 0x400dd49a 0x2 + .text.parse_i32 + 0x400dd49c 0x3e esp-idf/main/libmain.a(config_store.c.obj) + *fill* 0x400dd4da 0x2 + .text.str_ieq 0x400dd4dc 0x58 esp-idf/main/libmain.a(config_store.c.obj) + 0x5c (size before relaxing) + .text.parse_parity + 0x400dd534 0x60 esp-idf/main/libmain.a(config_store.c.obj) + .text.parse_device_section_index + 0x400dd594 0xbe esp-idf/main/libmain.a(config_store.c.obj) + 0xd6 (size before relaxing) + *fill* 0x400dd652 0x2 + .text.parse_u32 + 0x400dd654 0x3e esp-idf/main/libmain.a(config_store.c.obj) + *fill* 0x400dd692 0x2 + .text.parse_bool + 0x400dd694 0x78 esp-idf/main/libmain.a(config_store.c.obj) + 0x84 (size before relaxing) + .text.config_store_set_defaults + 0x400dd70c 0x5b esp-idf/main/libmain.a(config_store.c.obj) + 0x400dd70c config_store_set_defaults + *fill* 0x400dd767 0x1 + .text.config_store_load + 0x400dd768 0x3d8 esp-idf/main/libmain.a(config_store.c.obj) + 0x440 (size before relaxing) + 0x400dd768 config_store_load + .text.esp_spiffs_get_empty + 0x400ddb40 0x23 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x400ddb63 0x1 + .text.spiffs_res_to_errno + 0x400ddb64 0xb9 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x400ddc1d 0x3 + .text.vfs_spiffs_mkdir + 0x400ddc20 0x14 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .text.vfs_spiffs_rmdir + 0x400ddc34 0x14 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .text.vfs_spiffs_link + 0x400ddc48 0x14 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .text.esp_spiffs_by_label + 0x400ddc5c 0x4c esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .text.vfs_spiffs_telldir + 0x400ddca8 0x1a esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x1d (size before relaxing) + *fill* 0x400ddcc2 0x2 + .text.esp_spiffs_free + 0x400ddcc4 0x3a esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x4e (size before relaxing) + *fill* 0x400ddcfe 0x2 + .text.esp_spiffs_init + 0x400ddd00 0x3b8 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x478 (size before relaxing) + .text.vfs_spiffs_get_mtime + 0x400de0b8 0x1a esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x400de0d2 0x2 + .text.vfs_spiffs_update_mtime_value + 0x400de0d4 0x3a esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x42 (size before relaxing) + *fill* 0x400de10e 0x2 + .text.vfs_spiffs_utime + 0x400de110 0x4e esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x5e (size before relaxing) + *fill* 0x400de15e 0x2 + .text.vfs_spiffs_ftruncate + 0x400de160 0x32 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x3e (size before relaxing) + *fill* 0x400de192 0x2 + .text.vfs_spiffs_truncate + 0x400de194 0x66 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x7e (size before relaxing) + *fill* 0x400de1fa 0x2 + .text.vfs_spiffs_close + 0x400de1fc 0x30 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x3c (size before relaxing) + .text.vfs_spiffs_closedir + 0x400de22c 0x46 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x56 (size before relaxing) + *fill* 0x400de272 0x2 + .text.vfs_spiffs_seekdir + 0x400de274 0xc8 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0xe8 (size before relaxing) + .text.vfs_spiffs_readdir_r + 0x400de33c 0xed esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0xf9 (size before relaxing) + *fill* 0x400de429 0x3 + .text.vfs_spiffs_readdir + 0x400de42c 0x39 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x3d (size before relaxing) + *fill* 0x400de465 0x3 + .text.vfs_spiffs_opendir + 0x400de468 0x83 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x93 (size before relaxing) + *fill* 0x400de4eb 0x1 + .text.vfs_spiffs_rename + 0x400de4ec 0x52 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x62 (size before relaxing) + *fill* 0x400de53e 0x2 + .text.vfs_spiffs_unlink + 0x400de540 0x40 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x50 (size before relaxing) + .text.vfs_spiffs_stat + 0x400de580 0x9e esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0xaa (size before relaxing) + *fill* 0x400de61e 0x2 + .text.vfs_spiffs_fsync + 0x400de620 0x2e esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x3a (size before relaxing) + *fill* 0x400de64e 0x2 + .text.vfs_spiffs_fstat + 0x400de650 0x70 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x80 (size before relaxing) + .text.vfs_spiffs_update_mtime + 0x400de6c0 0x3e esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x4a (size before relaxing) + *fill* 0x400de6fe 0x2 + .text.vfs_spiffs_open + 0x400de700 0x5e esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x6e (size before relaxing) + *fill* 0x400de75e 0x2 + .text.vfs_spiffs_read + 0x400de760 0x34 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x40 (size before relaxing) + .text.vfs_spiffs_lseek + 0x400de794 0x34 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x40 (size before relaxing) + .text.vfs_spiffs_write + 0x400de7c8 0x34 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x40 (size before relaxing) + .text.esp_spiffs_info + 0x400de7fc 0x2d esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x31 (size before relaxing) + 0x400de7fc esp_spiffs_info + *fill* 0x400de829 0x3 + .text.esp_vfs_spiffs_register + 0x400de82c 0x80 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x90 (size before relaxing) + 0x400de82c esp_vfs_spiffs_register + .text.spiffs_api_lock + 0x400de8ac 0x12 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x400de8ac spiffs_api_lock + *fill* 0x400de8be 0x2 + .text.spiffs_api_unlock + 0x400de8c0 0x16 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x400de8c0 spiffs_api_unlock + *fill* 0x400de8d6 0x2 + .text.spiffs_api_read + 0x400de8d8 0x34 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x3c (size before relaxing) + 0x400de8d8 spiffs_api_read + .text.spiffs_api_write + 0x400de90c 0x34 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x3c (size before relaxing) + 0x400de90c spiffs_api_write + .text.spiffs_api_erase + 0x400de940 0x30 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x38 (size before relaxing) + 0x400de940 spiffs_api_erase + .text.spiffs_api_check + 0x400de970 0x32 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x36 (size before relaxing) + 0x400de970 spiffs_api_check + *fill* 0x400de9a2 0x2 + .text.spiffs_hydro_write + 0x400de9a4 0x56 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + *fill* 0x400de9fa 0x2 + .text.spiffs_fflush_cache + 0x400de9fc 0x72 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + *fill* 0x400dea6e 0x2 + .text.spiffs_hydro_read + 0x400dea70 0x10a esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x126 (size before relaxing) + *fill* 0x400deb7a 0x2 + .text.spiffs_stat_pix + 0x400deb7c 0xaa esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + *fill* 0x400dec26 0x2 + .text.spiffs_read_dir_v + 0x400dec28 0xc2 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0xc6 (size before relaxing) + *fill* 0x400decea 0x2 + .text.SPIFFS_format + 0x400decec 0x72 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x400decec SPIFFS_format + *fill* 0x400ded5e 0x2 + .text.SPIFFS_mount + 0x400ded60 0x112 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x11e (size before relaxing) + 0x400ded60 SPIFFS_mount + *fill* 0x400dee72 0x2 + .text.SPIFFS_unmount + 0x400dee74 0x53 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x5b (size before relaxing) + 0x400dee74 SPIFFS_unmount + *fill* 0x400deec7 0x1 + .text.SPIFFS_open + 0x400deec8 0x1c3 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x1f7 (size before relaxing) + 0x400deec8 SPIFFS_open + *fill* 0x400df08b 0x1 + .text.SPIFFS_read + 0x400df08c 0x1e esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x400df08c SPIFFS_read + *fill* 0x400df0aa 0x2 + .text.SPIFFS_write + 0x400df0ac 0x208 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x22c (size before relaxing) + 0x400df0ac SPIFFS_write + .text.SPIFFS_lseek + 0x400df2b4 0x118 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x130 (size before relaxing) + 0x400df2b4 SPIFFS_lseek + .text.SPIFFS_remove + 0x400df3cc 0xe5 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x105 (size before relaxing) + 0x400df3cc SPIFFS_remove + *fill* 0x400df4b1 0x3 + .text.SPIFFS_ftruncate + 0x400df4b4 0xa7 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0xb7 (size before relaxing) + 0x400df4b4 SPIFFS_ftruncate + *fill* 0x400df55b 0x1 + .text.SPIFFS_stat + 0x400df55c 0x76 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x82 (size before relaxing) + 0x400df55c SPIFFS_stat + *fill* 0x400df5d2 0x2 + .text.SPIFFS_fstat + 0x400df5d4 0x6e esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x7e (size before relaxing) + 0x400df5d4 SPIFFS_fstat + *fill* 0x400df642 0x2 + .text.SPIFFS_fflush + 0x400df644 0x50 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x58 (size before relaxing) + 0x400df644 SPIFFS_fflush + .text.SPIFFS_close + 0x400df694 0x68 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x74 (size before relaxing) + 0x400df694 SPIFFS_close + .text.SPIFFS_rename + 0x400df6fc 0x12e esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x151 (size before relaxing) + 0x400df6fc SPIFFS_rename + *fill* 0x400df82a 0x2 + .text.SPIFFS_update_meta + 0x400df82c 0xd0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0xef (size before relaxing) + 0x400df82c SPIFFS_update_meta + *fill* 0x400df8fc 0x0 + .text.SPIFFS_fupdate_meta + 0x400df8fc 0x98 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0xa4 (size before relaxing) + 0x400df8fc SPIFFS_fupdate_meta + .text.SPIFFS_opendir + 0x400df994 0x37 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x400df994 SPIFFS_opendir + *fill* 0x400df9cb 0x1 + .text.SPIFFS_readdir + 0x400df9cc 0x76 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x7a (size before relaxing) + 0x400df9cc SPIFFS_readdir + *fill* 0x400dfa42 0x2 + .text.SPIFFS_closedir + 0x400dfa44 0x29 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x400dfa44 SPIFFS_closedir + *fill* 0x400dfa6d 0x3 + .text.SPIFFS_info + 0x400dfa70 0x72 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x400dfa70 SPIFFS_info + *fill* 0x400dfae2 0x2 + .text.spiffs_obj_lu_scan_v + 0x400dfae4 0x35 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + *fill* 0x400dfb19 0x3 + .text.spiffs_update_ix_map + 0x400dfb1c 0xf3 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + *fill* 0x400dfc0f 0x1 + .text.spiffs_hash + 0x400dfc10 0x26 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + *fill* 0x400dfc36 0x2 + .text.spiffs_obj_lu_find_id_and_span_v + 0x400dfc38 0xa8 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + .text.spiffs_page_data_check + 0x400dfce0 0x9b esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + *fill* 0x400dfd7b 0x1 + .text.spiffs_page_index_check + 0x400dfd7c 0xab esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + *fill* 0x400dfe27 0x1 + .text.spiffs_object_find_object_index_header_by_name_v + 0x400dfe28 0x96 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + *fill* 0x400dfebe 0x2 + .text.spiffs_obj_lu_find_free_obj_id_compact_v + 0x400dfec0 0xa1 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0xa5 (size before relaxing) + *fill* 0x400dff61 0x3 + .text.spiffs_obj_lu_find_free_obj_id_bitmap_v + 0x400dff64 0xda esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0xde (size before relaxing) + *fill* 0x400e003e 0x2 + .text.spiffs_phys_cpy + 0x400e0040 0x48 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x4c (size before relaxing) + 0x400e0040 spiffs_phys_cpy + .text.spiffs_obj_lu_find_entry_visitor + 0x400e0088 0x1c6 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x1ca (size before relaxing) + 0x400e0088 spiffs_obj_lu_find_entry_visitor + *fill* 0x400e024e 0x2 + .text.spiffs_erase_block + 0x400e0250 0xce esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x400e0250 spiffs_erase_block + *fill* 0x400e031e 0x2 + .text.spiffs_obj_lu_scan + 0x400e0320 0x150 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x154 (size before relaxing) + 0x400e0320 spiffs_obj_lu_scan + .text.spiffs_obj_lu_find_id + 0x400e0470 0x2e esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x400e0470 spiffs_obj_lu_find_id + *fill* 0x400e049e 0x2 + .text.spiffs_obj_lu_find_free + 0x400e04a0 0x60 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x64 (size before relaxing) + 0x400e04a0 spiffs_obj_lu_find_free + .text.spiffs_obj_lu_find_id_and_span + 0x400e0500 0x82 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x86 (size before relaxing) + 0x400e0500 spiffs_obj_lu_find_id_and_span + *fill* 0x400e0582 0x2 + .text.spiffs_page_allocate_data + 0x400e0584 0x14d esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x15d (size before relaxing) + 0x400e0584 spiffs_page_allocate_data + *fill* 0x400e06d1 0x3 + .text.spiffs_page_delete + 0x400e06d4 0x79 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x81 (size before relaxing) + 0x400e06d4 spiffs_page_delete + *fill* 0x400e074d 0x3 + .text.spiffs_page_move + 0x400e0750 0x12e esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x136 (size before relaxing) + 0x400e0750 spiffs_page_move + *fill* 0x400e087e 0x2 + .text.spiffs_cb_object_event + 0x400e0880 0x157 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x400e0880 spiffs_cb_object_event + *fill* 0x400e09d7 0x1 + .text.spiffs_object_create + 0x400e09d8 0x16c esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x178 (size before relaxing) + 0x400e09d8 spiffs_object_create + .text.spiffs_object_update_index_hdr + 0x400e0b44 0x164 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x168 (size before relaxing) + 0x400e0b44 spiffs_object_update_index_hdr + .text.spiffs_object_open_by_page + 0x400e0ca8 0xc5 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0xc9 (size before relaxing) + 0x400e0ca8 spiffs_object_open_by_page + *fill* 0x400e0d6d 0x3 + .text.spiffs_object_append + 0x400e0d70 0x61c esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x664 (size before relaxing) + 0x400e0d70 spiffs_object_append + .text.spiffs_object_modify + 0x400e138c 0x4bc esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x4fc (size before relaxing) + 0x400e138c spiffs_object_modify + .text.spiffs_object_find_object_index_header_by_name + 0x400e1848 0x72 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x76 (size before relaxing) + 0x400e1848 spiffs_object_find_object_index_header_by_name + *fill* 0x400e18ba 0x2 + .text.spiffs_object_truncate + 0x400e18bc 0x4dc esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x51c (size before relaxing) + 0x400e18bc spiffs_object_truncate + .text.spiffs_object_read + 0x400e1d98 0x1ec esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x1fc (size before relaxing) + 0x400e1d98 spiffs_object_read + .text.spiffs_obj_lu_find_free_obj_id + 0x400e1f84 0x19c esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x1a0 (size before relaxing) + 0x400e1f84 spiffs_obj_lu_find_free_obj_id + .text.spiffs_fd_find_new + 0x400e2120 0xe5 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x400e2120 spiffs_fd_find_new + *fill* 0x400e2205 0x3 + .text.spiffs_fd_return + 0x400e2208 0x45 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x400e2208 spiffs_fd_return + *fill* 0x400e224d 0x3 + .text.spiffs_fd_get + 0x400e2250 0x3d esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x400e2250 spiffs_fd_get + *fill* 0x400e228d 0x3 + .text.spiffs_fd_temporal_cache_rehash + 0x400e2290 0x3a esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x3e (size before relaxing) + 0x400e2290 spiffs_fd_temporal_cache_rehash + *fill* 0x400e22ca 0x2 + .text.spiffs_cache_page_remove_oldest + 0x400e22cc 0x5c esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + .text.spiffs_cache_drop_page + 0x400e2328 0x1b esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + 0x1f (size before relaxing) + 0x400e2328 spiffs_cache_drop_page + *fill* 0x400e2343 0x1 + .text.spiffs_phys_rd + 0x400e2344 0x106 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + 0x10e (size before relaxing) + 0x400e2344 spiffs_phys_rd + *fill* 0x400e244a 0x2 + .text.spiffs_phys_wr + 0x400e244c 0xb1 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + 0xb5 (size before relaxing) + 0x400e244c spiffs_phys_wr + *fill* 0x400e24fd 0x3 + .text.spiffs_cache_page_allocate_by_fd + 0x400e2500 0x28 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + 0x2c (size before relaxing) + 0x400e2500 spiffs_cache_page_allocate_by_fd + .text.spiffs_cache_fd_release + 0x400e2528 0x40 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + 0x400e2528 spiffs_cache_fd_release + .text.spiffs_cache_init + 0x400e2568 0x9a esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + 0x400e2568 spiffs_cache_init + *fill* 0x400e2602 0x2 + .text.spiffs_gc_erase_block + 0x400e2604 0x38 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + 0x3c (size before relaxing) + .text.spiffs_gc_quick + 0x400e263c 0x14d esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + 0x400e263c spiffs_gc_quick + *fill* 0x400e2789 0x3 + .text.spiffs_gc_erase_page_stats + 0x400e278c 0xbc esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + 0x400e278c spiffs_gc_erase_page_stats + .text.spiffs_gc_find_candidate + 0x400e2848 0x200 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + 0x204 (size before relaxing) + 0x400e2848 spiffs_gc_find_candidate + .text.spiffs_gc_clean + 0x400e2a48 0x4c4 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + 0x4e8 (size before relaxing) + 0x400e2a48 spiffs_gc_clean + .text.spiffs_gc_check + 0x400e2f0c 0x12e esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + 0x136 (size before relaxing) + 0x400e2f0c spiffs_gc_check + *fill* 0x400e303a 0x2 + .text.clk_hal_lp_slow_get_freq_hz + 0x400e303c 0x39 esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) + 0x3d (size before relaxing) + 0x400e303c clk_hal_lp_slow_get_freq_hz + *fill* 0x400e3075 0x3 + .text.clk_hal_xtal_get_freq_mhz + 0x400e3078 0x33 esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) + 0x400e3078 clk_hal_xtal_get_freq_mhz + *fill* 0x400e30ab 0x1 + .text.clk_hal_apll_get_freq_hz + 0x400e30ac 0x7c esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) + 0x8c (size before relaxing) + 0x400e30ac clk_hal_apll_get_freq_hz + .text.clk_hal_soc_root_get_freq_mhz + 0x400e3128 0x68 esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) + 0x70 (size before relaxing) + 0x400e3128 clk_hal_soc_root_get_freq_mhz + .text.clk_hal_cpu_get_freq_hz + 0x400e3190 0xba esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) + 0xc2 (size before relaxing) + 0x400e3190 clk_hal_cpu_get_freq_hz + *fill* 0x400e324a 0x2 + .text.clk_hal_ahb_get_freq_hz + 0x400e324c 0x2d esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) + 0x31 (size before relaxing) + *fill* 0x400e3279 0x3 + .text.clk_hal_apb_get_freq_hz + 0x400e327c 0xa esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) + 0xd (size before relaxing) + 0x400e327c clk_hal_apb_get_freq_hz + *fill* 0x400e3286 0x2 + .text.spi_flash_ll_calculate_clock_reg + 0x400e3288 0x2d esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + *fill* 0x400e32b5 0x3 + .text.get_flash_clock_divider + 0x400e32b8 0x64 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + 0x78 (size before relaxing) + .text.spi_flash_cal_clock + 0x400e331c 0x19 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + 0x1d (size before relaxing) + *fill* 0x400e3335 0x3 + .text.spi_flash_hal_init + 0x400e3338 0xfa esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + 0xfe (size before relaxing) + 0x400e3338 spi_flash_hal_init + *fill* 0x400e3432 0x2 + .text.spi_flash_hal_supports_direct_write + 0x400e3434 0x12 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + 0x400e3434 spi_flash_hal_supports_direct_write + *fill* 0x400e3446 0x2 + .text.spi_flash_hal_supports_direct_read + 0x400e3448 0x12 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + 0x400e3448 spi_flash_hal_supports_direct_read + *fill* 0x400e345a 0x2 + .text.is_partition_encrypted + 0x400e345c 0x53 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x57 (size before relaxing) + *fill* 0x400e34af 0x1 + .text.load_partitions + 0x400e34b0 0x15e esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x17a (size before relaxing) + *fill* 0x400e360e 0x2 + .text.ensure_partitions_loaded + 0x400e3610 0x4c esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x58 (size before relaxing) + .text.iterator_create + 0x400e365c 0x24 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_iterator_release + 0x400e3680 0xa esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0xe (size before relaxing) + 0x400e3680 esp_partition_iterator_release + *fill* 0x400e368a 0x2 + .text.esp_partition_next + 0x400e368c 0x84 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x8c (size before relaxing) + 0x400e368c esp_partition_next + .text.esp_partition_find_err + 0x400e3710 0x5b esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x63 (size before relaxing) + 0x400e3710 esp_partition_find_err + *fill* 0x400e376b 0x1 + .text.esp_partition_find + 0x400e376c 0x1c esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x400e376c esp_partition_find + .text.esp_partition_get + 0x400e3788 0x19 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x1c (size before relaxing) + 0x400e3788 esp_partition_get + *fill* 0x400e37a1 0x3 + .text.esp_partition_find_first_err + 0x400e37a4 0x43 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x4b (size before relaxing) + 0x400e37a4 esp_partition_find_first_err + *fill* 0x400e37e7 0x1 + .text.esp_partition_find_first + 0x400e37e8 0x1c esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x400e37e8 esp_partition_find_first + .text.esp_partition_write + 0x400e3804 0x79 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x7d (size before relaxing) + 0x400e3804 esp_partition_write + *fill* 0x400e387d 0x3 + .text.esp_partition_read_raw + 0x400e3880 0x45 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x400e3880 esp_partition_read_raw + *fill* 0x400e38c5 0x3 + .text.esp_partition_write_raw + 0x400e38c8 0x4a esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x4e (size before relaxing) + 0x400e38c8 esp_partition_write_raw + *fill* 0x400e3912 0x2 + .text.esp_partition_erase_range + 0x400e3914 0x65 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x69 (size before relaxing) + 0x400e3914 esp_partition_erase_range + *fill* 0x400e3979 0x3 + .text.esp_partition_mmap + 0x400e397c 0x67 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x400e397c esp_partition_mmap + *fill* 0x400e39e3 0x1 + .text.esp_partition_munmap + 0x400e39e4 0xa esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0xe (size before relaxing) + 0x400e39e4 esp_partition_munmap + *fill* 0x400e39ee 0x2 + .text.esp_partition_read + 0x400e39f0 0x86 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x8a (size before relaxing) + 0x400e39f0 esp_partition_read + *fill* 0x400e3a76 0x2 + .text.esp_partition_is_flash_region_writable + 0x400e3a78 0x55 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x400e3a78 esp_partition_is_flash_region_writable + *fill* 0x400e3acd 0x3 + .text.esp_partition_main_flash_region_safe + 0x400e3ad0 0x39 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x3d (size before relaxing) + 0x400e3ad0 esp_partition_main_flash_region_safe + *fill* 0x400e3b09 0x3 + .text.gpio_input_disable + 0x400e3b0c 0x7d esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x85 (size before relaxing) + *fill* 0x400e3b89 0x3 + .text.gpio_ll_pullup_en + 0x400e3b8c 0x3f esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + *fill* 0x400e3bcb 0x1 + .text.gpio_pullup_en + 0x400e3bcc 0x8e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x9e (size before relaxing) + 0x400e3bcc gpio_pullup_en + *fill* 0x400e3c5a 0x2 + .text.gpio_pulldown_dis + 0x400e3c5c 0xa0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0xb0 (size before relaxing) + 0x400e3c5c gpio_pulldown_dis + .text.gpio_intr_disable + 0x400e3cfc 0x70 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x74 (size before relaxing) + 0x400e3cfc gpio_intr_disable + .text.gpio_input_enable + 0x400e3d6c 0x7d esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x85 (size before relaxing) + 0x400e3d6c gpio_input_enable + *fill* 0x400e3de9 0x3 + .text.gpio_output_disable + 0x400e3dec 0xfe esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x106 (size before relaxing) + 0x400e3dec gpio_output_disable + *fill* 0x400e3eea 0x2 + .text.gpio_output_enable + 0x400e3eec 0x104 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x108 (size before relaxing) + 0x400e3eec gpio_output_enable + .text.gpio_od_disable + 0x400e3ff0 0x7c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x84 (size before relaxing) + 0x400e3ff0 gpio_od_disable + .text.gpio_od_enable + 0x400e406c 0x7a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x82 (size before relaxing) + 0x400e406c gpio_od_enable + *fill* 0x400e40e6 0x2 + .text.gpio_set_level + 0x400e40e8 0xb6 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0xba (size before relaxing) + 0x400e40e8 gpio_set_level + *fill* 0x400e419e 0x2 + .text.gpio_set_direction + 0x400e41a0 0xed esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x105 (size before relaxing) + 0x400e41a0 gpio_set_direction + *fill* 0x400e428d 0x3 + .text.gpio_reset_pin + 0x400e4290 0xfc esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x118 (size before relaxing) + 0x400e4290 gpio_reset_pin + .text.gpio_iomux_input + 0x400e438c 0x7d esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x8d (size before relaxing) + 0x400e438c gpio_iomux_input + *fill* 0x400e4409 0x3 + .text.gpio_iomux_output + 0x400e440c 0x7d esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x89 (size before relaxing) + 0x400e440c gpio_iomux_output + *fill* 0x400e4489 0x3 + .text.gpio_matrix_input + 0x400e448c 0x88 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x8c (size before relaxing) + 0x400e448c gpio_matrix_input + .text.gpio_matrix_output + 0x400e4514 0x74 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x7c (size before relaxing) + 0x400e4514 gpio_matrix_output + .text.rtcio_ll_iomux_func_sel + 0x400e4588 0x61 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + *fill* 0x400e45e9 0x3 + .text.rtcio_ll_function_select + 0x400e45ec 0xa2 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + 0xaa (size before relaxing) + *fill* 0x400e468e 0x2 + .text.rtc_gpio_is_valid_gpio + 0x400e4690 0x25 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + 0x400e4690 rtc_gpio_is_valid_gpio + *fill* 0x400e46b5 0x3 + .text.rtc_io_number_get + 0x400e46b8 0x10 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + 0x400e46b8 rtc_io_number_get + .text.rtc_gpio_deinit + 0x400e46c8 0x49 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + 0x5d (size before relaxing) + 0x400e46c8 rtc_gpio_deinit + *fill* 0x400e4711 0x3 + .text.rtc_gpio_pullup_en + 0x400e4714 0x85 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + 0x9d (size before relaxing) + 0x400e4714 rtc_gpio_pullup_en + *fill* 0x400e4799 0x3 + .text.rtc_gpio_pulldown_dis + 0x400e479c 0x8a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + 0x9e (size before relaxing) + 0x400e479c rtc_gpio_pulldown_dis + *fill* 0x400e4826 0x2 + .text.uart_hal_set_hw_flow_ctrl + 0x400e4828 0x72 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + 0x400e4828 uart_hal_set_hw_flow_ctrl + *fill* 0x400e489a 0x2 + .text.uart_hal_set_tx_idle_num + 0x400e489c 0x22 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + 0x400e489c uart_hal_set_tx_idle_num + *fill* 0x400e48be 0x2 + .text.uart_hal_set_txfifo_empty_thr + 0x400e48c0 0x20 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + 0x400e48c0 uart_hal_set_txfifo_empty_thr + .text.uart_hal_init + 0x400e48e0 0xca esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + 0x400e48e0 uart_hal_init + *fill* 0x400e49aa 0x2 + .text.uart_hal_set_rx_timeout + 0x400e49ac 0x6d esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + 0x400e49ac uart_hal_set_rx_timeout + *fill* 0x400e4a19 0x3 + .text.uart_hal_txfifo_rst + 0x400e4a1c 0x2e esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal_iram.c.obj) + 0x400e4a1c uart_hal_txfifo_rst + *fill* 0x400e4a4a 0x2 + .text.uart_hal_rxfifo_rst + 0x400e4a4c 0x82 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal_iram.c.obj) + 0x400e4a4c uart_hal_rxfifo_rst + *fill* 0x400e4ace 0x2 + .text.uart_hal_tx_break + 0x400e4ad0 0x5e esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal_iram.c.obj) + 0x400e4ad0 uart_hal_tx_break + *fill* 0x400e4b2e 0x2 + .text.uart_hal_write_txfifo + 0x400e4b30 0x82 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal_iram.c.obj) + 0x85 (size before relaxing) + 0x400e4b30 uart_hal_write_txfifo + *fill* 0x400e4bb2 0x2 + .text.uart_hal_read_rxfifo + 0x400e4bb4 0xe8 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal_iram.c.obj) + 0xeb (size before relaxing) + 0x400e4bb4 uart_hal_read_rxfifo + *fill* 0x400e4c9c 0x0 + .text.s_get_bus_mask + 0x400e4c9c 0xd5 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0xd9 (size before relaxing) + *fill* 0x400e4d71 0x3 + .text.s_reserve_irom_region + 0x400e4d74 0x7c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x80 (size before relaxing) + .text.s_reserve_drom_region + 0x400e4df0 0x7c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x80 (size before relaxing) + .text.s_vaddr_to_paddr + 0x400e4e6c 0x1f esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x27 (size before relaxing) + *fill* 0x400e4e8b 0x1 + .text.esp_mmu_map_init + 0x400e4e8c 0x190 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x19c (size before relaxing) + 0x400e4e8c esp_mmu_map_init + .text.esp_mmu_map + 0x400e501c 0x3ca esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x419 (size before relaxing) + 0x400e501c esp_mmu_map + *fill* 0x400e53e6 0x2 + .text.esp_mmu_unmap + 0x400e53e8 0x126 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x141 (size before relaxing) + 0x400e53e8 esp_mmu_unmap + *fill* 0x400e550e 0x2 + .text.esp_mmu_vaddr_to_paddr + 0x400e5510 0xb6 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0xca (size before relaxing) + 0x400e5510 esp_mmu_vaddr_to_paddr + *fill* 0x400e55c6 0x2 + .text.bootloader_init_mem + 0x400e55c8 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0xb (size before relaxing) + 0x400e55c8 bootloader_init_mem + *fill* 0x400e55d0 0x0 + .text.bootloader_flash_update_id + 0x400e55d0 0xd esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x10 (size before relaxing) + 0x400e55d0 bootloader_flash_update_id + *fill* 0x400e55dd 0x3 + .text.bootloader_flash_get_wp_pin + 0x400e55e0 0x45 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x49 (size before relaxing) + 0x400e55e0 bootloader_flash_get_wp_pin + *fill* 0x400e5625 0x3 + .text.esp_crosscore_int_init + 0x400e5628 0x66 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x76 (size before relaxing) + 0x400e5628 esp_crosscore_int_init + *fill* 0x400e568e 0x2 + .text.find_entry_and_check_all_reset + 0x400e5690 0x36 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x400e56c6 0x2 + .text.find_entry_from_task_handle_and_check_all_reset + 0x400e56c8 0x37 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x400e56ff 0x1 + .text.task_wdt_timer_feed + 0x400e5700 0x24 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.add_entry + 0x400e5724 0x101 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x11d (size before relaxing) + *fill* 0x400e5825 0x3 + .text.get_task_affinity + 0x400e5828 0x25 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x400e584d 0x3 + .text.task_wdt_timeout_abort + 0x400e5850 0xac esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xbf (size before relaxing) + 0x400e5850 task_wdt_timeout_abort + *fill* 0x400e58fc 0x0 + .text.task_wdt_timeout_handling + 0x400e58fc 0xb3 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xc2 (size before relaxing) + *fill* 0x400e59af 0x1 + .text.esp_task_wdt_add + 0x400e59b0 0x44 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x50 (size before relaxing) + 0x400e59b0 esp_task_wdt_add + .text.subscribe_idle + 0x400e59f4 0x5b esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x6b (size before relaxing) + *fill* 0x400e5a4f 0x1 + .text.esp_task_wdt_init + 0x400e5a50 0xe0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xfc (size before relaxing) + 0x400e5a50 esp_task_wdt_init + .text.esp_task_wdt_reset + 0x400e5b30 0x8b esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xa2 (size before relaxing) + 0x400e5b30 esp_task_wdt_reset + *fill* 0x400e5bbb 0x1 + .text.idle_hook_cb + 0x400e5bbc 0xa esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xd (size before relaxing) + *fill* 0x400e5bc6 0x2 + .text.esp_task_wdt_print_triggered_tasks + 0x400e5bc8 0xd2 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x400e5bc8 esp_task_wdt_print_triggered_tasks + *fill* 0x400e5c9a 0x2 + .text.task_wdt_isr + 0x400e5c9c 0xb9 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xd8 (size before relaxing) + *fill* 0x400e5d55 0x3 + .text.esp_task_wdt_impl_timer_allocate + 0x400e5d58 0xdc esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0xec (size before relaxing) + 0x400e5d58 esp_task_wdt_impl_timer_allocate + .text.esp_task_wdt_impl_timer_feed + 0x400e5e34 0x1f esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x27 (size before relaxing) + 0x400e5e34 esp_task_wdt_impl_timer_feed + *fill* 0x400e5e53 0x1 + .text.esp_task_wdt_impl_timeout_triggered + 0x400e5e54 0x17 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x1f (size before relaxing) + 0x400e5e54 esp_task_wdt_impl_timeout_triggered + *fill* 0x400e5e6b 0x1 + .text.esp_task_wdt_impl_timer_restart + 0x400e5e6c 0x25 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x31 (size before relaxing) + 0x400e5e6c esp_task_wdt_impl_timer_restart + *fill* 0x400e5e91 0x3 + .text.esp_err_to_name + 0x400e5e94 0x2b esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + 0x400e5e94 esp_err_to_name + *fill* 0x400e5ebf 0x1 + .text.brownout_hal_config + 0x400e5ec0 0xb0 esp-idf/hal/libhal.a(brownout_hal.c.obj) + 0x400e5ec0 brownout_hal_config + .text.esp_cpu_configure_region_protection + 0x400e5f70 0x2f esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + 0x33 (size before relaxing) + 0x400e5f70 esp_cpu_configure_region_protection + *fill* 0x400e5f9f 0x1 + .text.__esp_system_init_fn_mbedtls_psa_crypto_init_fn + 0x400e5fa0 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_psa_crypto_init.c.obj) + 0x13 (size before relaxing) + *fill* 0x400e5fb0 0x0 + .text.psa_get_initialized + 0x400e5fb0 0x38 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + 0x44 (size before relaxing) + .text.psa_remove_key_data_from_memory + 0x400e5fe8 0x16 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + 0x1a (size before relaxing) + 0x400e5fe8 psa_remove_key_data_from_memory + *fill* 0x400e5ffe 0x2 + .text.psa_wipe_key_slot + 0x400e6000 0x4c esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + 0x50 (size before relaxing) + 0x400e6000 psa_wipe_key_slot + .text.mbedtls_psa_crypto_free + 0x400e604c 0x81 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + 0x90 (size before relaxing) + 0x400e604c mbedtls_psa_crypto_free + *fill* 0x400e60cd 0x3 + .text.psa_crypto_init + 0x400e60d0 0xd9 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + 0xf8 (size before relaxing) + 0x400e60d0 psa_crypto_init + *fill* 0x400e61a9 0x3 + .text.psa_initialize_key_slots + 0x400e61ac 0x1e esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + 0x22 (size before relaxing) + 0x400e61ac psa_initialize_key_slots + *fill* 0x400e61ca 0x2 + .text.psa_wipe_all_key_slots + 0x400e61cc 0x65 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + 0x6d (size before relaxing) + 0x400e61cc psa_wipe_all_key_slots + *fill* 0x400e6231 0x3 + .text.psa_free_key_slot + 0x400e6234 0x5e esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + 0x400e6234 psa_free_key_slot + *fill* 0x400e6292 0x2 + .text.mbedtls_calloc + 0x400e6294 0x14 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform.c.obj) + 0x400e6294 mbedtls_calloc + .text.mbedtls_free + 0x400e62a8 0xf esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform.c.obj) + 0x400e62a8 mbedtls_free + *fill* 0x400e62b7 0x1 + .text.mbedtls_platform_zeroize + 0x400e62b8 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform_util.c.obj) + 0x400e62b8 mbedtls_platform_zeroize + .text.mbedtls_zeroize_and_free + 0x400e62d0 0x13 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform_util.c.obj) + 0x1a (size before relaxing) + 0x400e62d0 mbedtls_zeroize_and_free + *fill* 0x400e62e3 0x1 + .text.threading_mutex_lock_pthread + 0x400e62e4 0x11 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + 0x15 (size before relaxing) + *fill* 0x400e62f5 0x3 + .text.threading_mutex_unlock_pthread + 0x400e62f8 0x11 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + 0x15 (size before relaxing) + *fill* 0x400e6309 0x3 + .text.mbedtls_mutex_lock + 0x400e630c 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + 0x400e630c mbedtls_mutex_lock + .text.mbedtls_mutex_unlock + 0x400e6324 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + 0x400e6324 mbedtls_mutex_unlock + .text.esp_ota_get_running_partition + 0x400e633c 0x7d esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x91 (size before relaxing) + 0x400e633c esp_ota_get_running_partition + *fill* 0x400e63b9 0x3 + .text.esp_mbedtls_mem_calloc + 0x400e63bc 0x16 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_mem.c.obj) + 0x400e63bc esp_mbedtls_mem_calloc + *fill* 0x400e63d2 0x2 + .text.esp_mbedtls_mem_free + 0x400e63d4 0xa esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_mem.c.obj) + 0xe (size before relaxing) + 0x400e63d4 esp_mbedtls_mem_free + *fill* 0x400e63de 0x2 + .text._ZdaPv 0x400e63e0 0xe C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opv.o) + 0x400e63e0 operator delete[](void*) + *fill* 0x400e63ee 0x2 + .text._ZSt15get_new_handlerv + 0x400e63f0 0x10 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + 0x400e63f0 std::get_new_handler() + .text._ZnajRKSt9nothrow_t + 0x400e6400 0x23 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) + 0x400e6400 operator new[](unsigned int, std::nothrow_t const&) + *fill* 0x400e6423 0x1 + .text._ZdlPv 0x400e6424 0xe C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_op.o) + 0x400e6424 operator delete(void*) + *fill* 0x400e6432 0x2 + .text.__cxa_begin_catch + 0x400e6434 0x56 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + 0x400e6434 __cxa_begin_catch + *fill* 0x400e648a 0x2 + .text.__cxa_end_catch + 0x400e648c 0x5e C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + 0x400e648c __cxa_end_catch + *fill* 0x400e64ea 0x2 + .text._ZL15eh_globals_dtorPv + 0x400e64ec 0x24 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + .text.__cxa_get_globals_fast + 0x400e6510 0x1e C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + 0x400e6510 __cxa_get_globals_fast + *fill* 0x400e652e 0x2 + .text.__cxa_get_globals + 0x400e6530 0x46 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + 0x400e6530 __cxa_get_globals + *fill* 0x400e6576 0x2 + .text.startup._GLOBAL__sub_I__ZN17__eh_globals_init7_S_initE + 0x400e6578 0x1d C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + *fill* 0x400e6595 0x3 + .text._ZN10__cxxabiv111__terminateEPFvvE + 0x400e6598 0x1a C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + 0x400e6598 __cxxabiv1::__terminate(void (*)()) + *fill* 0x400e65b2 0x2 + .text._ZSt13get_terminatev + 0x400e65b4 0x10 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + 0x400e65b4 std::get_terminate() + .text.unlikely._ZSt9terminatev + 0x400e65c4 0xf C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + 0x400e65c4 std::terminate() + *fill* 0x400e65d3 0x1 + .text._Znaj 0x400e65d4 0x10 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opv.o) + 0x400e65d4 operator new[](unsigned int) + .text._Znwj 0x400e65e4 0x3f C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + 0x400e65e4 operator new(unsigned int) + *fill* 0x400e6623 0x1 + .text._ZN10__cxxabiv120__si_class_type_infoD2Ev + 0x400e6624 0x12 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + 0x400e6624 __cxxabiv1::__si_class_type_info::~__si_class_type_info() + 0x400e6624 __cxxabiv1::__si_class_type_info::~__si_class_type_info() + *fill* 0x400e6636 0x2 + .text._ZN10__cxxabiv120__si_class_type_infoD0Ev + 0x400e6638 0x18 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + 0x400e6638 __cxxabiv1::__si_class_type_info::~__si_class_type_info() + .text._ZNKSt9type_infoeqERKS_$isra$0 + 0x400e6650 0x2e C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + *fill* 0x400e667e 0x2 + .text._ZNK10__cxxabiv120__si_class_type_info12__do_dyncastEiNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE + 0x400e6680 0x78 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + 0x400e6680 __cxxabiv1::__si_class_type_info::__do_dyncast(int, __cxxabiv1::__class_type_info::__sub_kind, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__dyncast_result&) const + .text._ZNK10__cxxabiv120__si_class_type_info20__do_find_public_srcEiPKvPKNS_17__class_type_infoES2_ + 0x400e66f8 0x2c C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + 0x400e66f8 __cxxabiv1::__si_class_type_info::__do_find_public_src(int, void const*, __cxxabiv1::__class_type_info const*, void const*) const + .text._ZNK10__cxxabiv120__si_class_type_info11__do_upcastEPKNS_17__class_type_infoEPKvRNS1_15__upcast_resultE + 0x400e6724 0x2a C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + 0x400e6724 __cxxabiv1::__si_class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__upcast_result&) const + *fill* 0x400e674e 0x2 + .text._ZNKSt9bad_alloc4whatEv + 0x400e6750 0x8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + 0x400e6750 std::bad_alloc::what() const + .text._ZNSt9bad_allocD2Ev + 0x400e6758 0x12 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + 0x400e6758 std::bad_alloc::~bad_alloc() + 0x400e6758 std::bad_alloc::~bad_alloc() + *fill* 0x400e676a 0x2 + .text._ZNSt9bad_allocD0Ev + 0x400e676c 0x18 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + 0x400e676c std::bad_alloc::~bad_alloc() + .text._ZN10__cxxabiv117__class_type_infoD2Ev + 0x400e6784 0x12 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + 0x400e6784 __cxxabiv1::__class_type_info::~__class_type_info() + 0x400e6784 __cxxabiv1::__class_type_info::~__class_type_info() + *fill* 0x400e6796 0x2 + .text._ZN10__cxxabiv117__class_type_infoD0Ev + 0x400e6798 0x18 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + 0x400e6798 __cxxabiv1::__class_type_info::~__class_type_info() + .text._ZNKSt9type_infoeqERKS_$isra$0 + 0x400e67b0 0x2e C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + *fill* 0x400e67de 0x2 + .text._ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PKvRNS0_15__upcast_resultE + 0x400e67e0 0x1e C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + 0x400e67e0 __cxxabiv1::__class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__upcast_result&) const + *fill* 0x400e67fe 0x2 + .text._ZNK10__cxxabiv117__class_type_info12__do_dyncastEiNS0_10__sub_kindEPKS0_PKvS3_S5_RNS0_16__dyncast_resultE + 0x400e6800 0x3a C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + 0x400e6800 __cxxabiv1::__class_type_info::__do_dyncast(int, __cxxabiv1::__class_type_info::__sub_kind, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__dyncast_result&) const + *fill* 0x400e683a 0x2 + .text._ZNK10__cxxabiv117__class_type_info10__do_catchEPKSt9type_infoPPvj + 0x400e683c 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + 0x400e683c __cxxabiv1::__class_type_info::__do_catch(std::type_info const*, void**, unsigned int) const + .text._ZdlPvj 0x400e6864 0xe C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_ops.o) + 0x400e6864 operator delete(void*, unsigned int) + *fill* 0x400e6872 0x2 + .text._Z12abort_returnIiET_v + 0x400e6874 0x6 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x9 (size before relaxing) + *fill* 0x400e687a 0x2 + .text.__wrap__Unwind_DeleteException + 0x400e687c 0x6 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x9 (size before relaxing) + 0x400e687c __wrap__Unwind_DeleteException + *fill* 0x400e6882 0x2 + .text.__wrap___gxx_personality_v0 + 0x400e6884 0x6 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x9 (size before relaxing) + 0x400e6884 __wrap___gxx_personality_v0 + *fill* 0x400e688a 0x2 + .text.__wrap___cxa_allocate_exception + 0x400e688c 0x6 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x9 (size before relaxing) + 0x400e688c __wrap___cxa_allocate_exception + *fill* 0x400e6892 0x2 + .text.__wrap___cxa_throw + 0x400e6894 0x6 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x9 (size before relaxing) + 0x400e6894 __wrap___cxa_throw + *fill* 0x400e689a 0x2 + .text.__libc_init_array + 0x400e689c 0x18 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_misc_init.c.o) + 0x400e689c __libc_init_array + .text.time 0x400e68b4 0x26 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_time_time.c.o) + 0x400e68b4 time + *fill* 0x400e68da 0x2 + .text.__bufio_buffer_allocate_locked + 0x400e68dc 0x44 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + 0x400e68dc __bufio_buffer_allocate_locked + .text.__bufio_fill_locked + 0x400e6920 0x40 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + 0x400e6920 __bufio_fill_locked + .text.__bufio_flush + 0x400e6960 0x10 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + 0x400e6960 __bufio_flush + .text.__bufio_setdir_locked + 0x400e6970 0x1f C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + 0x400e6970 __bufio_setdir_locked + *fill* 0x400e698f 0x1 + .text.__bufio_put + 0x400e6990 0x5e C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + 0x400e6990 __bufio_put + *fill* 0x400e69ee 0x2 + .text.__bufio_get + 0x400e69f0 0x6c C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + 0x400e69f0 __bufio_get + .text.__bufio_seek + 0x400e6a5c 0x58 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + 0x400e6a5c __bufio_seek + .text.__bufio_close + 0x400e6ab4 0x3c C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + 0x400e6ab4 __bufio_close + .text.fclose 0x400e6af0 0x31 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fclose.c.o) + 0x400e6af0 fclose + *fill* 0x400e6b21 0x3 + .text.fflush 0x400e6b24 0x3c C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fflush.c.o) + 0x400e6b24 fflush + .text.__funlockfile$isra$0 + 0x400e6b60 0x10 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgets.c.o) + .text.fgets 0x400e6b70 0x71 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgets.c.o) + 0x400e6b70 fgets + *fill* 0x400e6be1 0x3 + .text.__flockfile_init + 0x400e6be4 0x24 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_flockfile_init.c.o) + 0x400e6be4 __flockfile_init + .text.fopen 0x400e6c08 0x31 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fopen.c.o) + 0x400e6c08 fopen + *fill* 0x400e6c39 0x3 + .text.fprintf 0x400e6c3c 0x29 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fprintf.c.o) + 0x400e6c3c fprintf + *fill* 0x400e6c65 0x3 + .text.printf 0x400e6c68 0x2e C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_printf.c.o) + 0x400e6c68 printf + *fill* 0x400e6c96 0x2 + .text.__stdio_flags + 0x400e6c98 0x60 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_sflags.c.o) + 0x400e6c98 __stdio_flags + .text.snprintf + 0x400e6cf8 0x62 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_snprintf.c.o) + 0x400e6cf8 snprintf + *fill* 0x400e6d5a 0x2 + .text.strtol 0x400e6d5c 0xe2 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_strtol.c.o) + 0x400e6d5c strtol + *fill* 0x400e6e3e 0x2 + .text.strtoul 0x400e6e40 0xda C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_strtoul.c.o) + 0x400e6e40 strtoul + *fill* 0x400e6f1a 0x2 + .text.__ultoa_invert + 0x400e6f1c 0x61 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vfprintf.c.o) + *fill* 0x400e6f7d 0x3 + .text.skip_to_arg + 0x400e6f80 0x166 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vfprintf.c.o) + *fill* 0x400e70e6 0x2 + .text.vfprintf + 0x400e70e8 0xb09 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vfprintf.c.o) + 0x400e70e8 vfprintf + 0x400e70e8 __d_vfprintf + *fill* 0x400e7bf1 0x3 + .text.vprintf 0x400e7bf4 0x1a C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vprintf.c.o) + 0x400e7bf4 vprintf + *fill* 0x400e7c0e 0x2 + .text.mulShiftAll64 + 0x400e7c10 0x1ab C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtoa_ryu.c.o) + *fill* 0x400e7dbb 0x1 + .text.div10 0x400e7dbc 0x24 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtoa_ryu.c.o) + .text.__dtoa_engine + 0x400e7de0 0x510 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtoa_ryu.c.o) + 0x400e7de0 __dtoa_engine + .text.__log10Pow2 + 0x400e82f0 0xe C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_log10.c.o) + 0x400e82f0 __log10Pow2 + *fill* 0x400e82fe 0x2 + .text.__log10Pow5 + 0x400e8300 0xe C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_log10.c.o) + 0x400e8300 __log10Pow5 + *fill* 0x400e830e 0x2 + .text.__pow5bits + 0x400e8310 0x10 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_pow5bits.c.o) + 0x400e8310 __pow5bits + .text.__pow5Factor + 0x400e8320 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_table.c.o) + 0x400e8320 __pow5Factor + .text.__double_computePow5 + 0x400e8350 0xef C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_table.c.o) + 0x400e8350 __double_computePow5 + *fill* 0x400e843f 0x1 + .text.__double_computeInvPow5 + 0x400e8440 0xfa C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_table.c.o) + 0x400e8440 __double_computeInvPow5 + *fill* 0x400e853a 0x2 + .text.__shiftright128 + 0x400e853c 0x2c C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_umul128.c.o) + 0x400e853c __shiftright128 + .text.__dtox_engine + 0x400e8568 0x137 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtox_engine.c.o) + 0x400e8568 __dtox_engine + *fill* 0x400e869f 0x1 + .text.fdopen 0x400e86a0 0x8a C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fdopen.c.o) + 0x400e86a0 fdopen + *fill* 0x400e872a 0x2 + .text.__funlockfile$isra$0 + 0x400e872c 0x10 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fseeko.c.o) + .text.fseeko 0x400e873c 0xc8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fseeko.c.o) + 0x400e873c fseeko + *fill* 0x400e8804 0x0 + *fill* 0x400e8804 0x0 + *fill* 0x400e8804 0x0 + *fill* 0x400e8804 0x0 + *fill* 0x400e8804 0x0 + *fill* 0x400e8804 0x0 + *fill* 0x400e8804 0x0 + *fill* 0x400e8804 0x0 + *fill* 0x400e8804 0x0 + *fill* 0x400e8804 0x0 + .text.esp_vfs_include_console_register + 0x400e8804 0x5 esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + 0x400e8804 esp_vfs_include_console_register + *fill* 0x400e8809 0x0 + *fill* 0x400e8809 0x3 + .text.init_efuse_secure + 0x400e880c 0x7 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + *fill* 0x400e8813 0x0 + *fill* 0x400e8813 0x1 + .text.esp_efuse_startup_include_func + 0x400e8814 0x5 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + 0x400e8814 esp_efuse_startup_include_func + *fill* 0x400e8819 0x0 + *fill* 0x400e8819 0x3 + .text.esp_efuse_utility_check_errors + 0x400e881c 0x7 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x400e881c esp_efuse_utility_check_errors + *fill* 0x400e8823 0x1 + .text.__esp_system_init_fn_esp_security_init + 0x400e8824 0x7 esp-idf/esp_security/libesp_security.a(init.c.obj) + *fill* 0x400e882b 0x1 + .text.esp_security_init_include_impl + 0x400e882c 0x5 esp-idf/esp_security/libesp_security.a(init.c.obj) + 0x400e882c esp_security_init_include_impl + *fill* 0x400e8831 0x0 + *fill* 0x400e8831 0x0 + *fill* 0x400e8831 0x0 + *fill* 0x400e8831 0x3 + .text.esp_flash_spi_init_include_func + 0x400e8834 0x5 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x400e8834 esp_flash_spi_init_include_func + *fill* 0x400e8839 0x0 + *fill* 0x400e8839 0x0 + *fill* 0x400e8839 0x0 + *fill* 0x400e8839 0x0 + *fill* 0x400e8839 0x0 + *fill* 0x400e8839 0x0 + *fill* 0x400e8839 0x0 + *fill* 0x400e8839 0x0 + *fill* 0x400e8839 0x0 + *fill* 0x400e8839 0x0 + *fill* 0x400e8839 0x0 + *fill* 0x400e8839 0x0 + *fill* 0x400e8839 0x0 + *fill* 0x400e8839 0x0 + *fill* 0x400e8839 0x0 + *fill* 0x400e8839 0x0 + *fill* 0x400e8839 0x3 + .text.esp_system_include_startup_funcs + 0x400e883c 0x5 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + 0x400e883c esp_system_include_startup_funcs + *fill* 0x400e8841 0x0 + *fill* 0x400e8841 0x0 + *fill* 0x400e8841 0x0 + *fill* 0x400e8841 0x0 + *fill* 0x400e8841 0x0 + *fill* 0x400e8841 0x0 + *fill* 0x400e8841 0x0 + *fill* 0x400e8841 0x0 + *fill* 0x400e8841 0x0 + *fill* 0x400e8841 0x0 + *fill* 0x400e8841 0x0 + *fill* 0x400e8841 0x3 + .text.esp_cache_err_get_panic_info + 0x400e8844 0x5 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x400e8844 esp_cache_err_get_panic_info + *fill* 0x400e8849 0x0 + *fill* 0x400e8849 0x0 + *fill* 0x400e8849 0x0 + *fill* 0x400e8849 0x0 + *fill* 0x400e8849 0x0 + *fill* 0x400e8849 0x0 + *fill* 0x400e8849 0x0 + *fill* 0x400e8849 0x0 + *fill* 0x400e8849 0x0 + *fill* 0x400e8849 0x0 + *fill* 0x400e8849 0x0 + *fill* 0x400e8849 0x3 + .text.panic_soc_check_pseudo_cause + 0x400e884c 0x7 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x400e884c panic_soc_check_pseudo_cause + *fill* 0x400e8853 0x0 + *fill* 0x400e8853 0x1 + .text.panic_get_address + 0x400e8854 0x7 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x400e8854 panic_get_address + *fill* 0x400e885b 0x1 + .text.panic_get_cause + 0x400e885c 0x8 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x400e885c panic_get_cause + .text.panic_set_address + 0x400e8864 0x7 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x400e8864 panic_set_address + *fill* 0x400e886b 0x1 + .text.panic_clear_active_interrupts + 0x400e886c 0x5 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x400e886c panic_clear_active_interrupts + *fill* 0x400e8871 0x0 + *fill* 0x400e8871 0x0 + *fill* 0x400e8871 0x0 + *fill* 0x400e8871 0x0 + *fill* 0x400e8871 0x0 + *fill* 0x400e8871 0x3 + .text.heap_caps_match + 0x400e8874 0x2e esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x400e8874 heap_caps_match + *fill* 0x400e88a2 0x0 + *fill* 0x400e88a2 0x0 + *fill* 0x400e88a2 0x0 + *fill* 0x400e88a2 0x0 + *fill* 0x400e88a2 0x0 + *fill* 0x400e88a2 0x0 + *fill* 0x400e88a2 0x0 + *fill* 0x400e88a2 0x0 + *fill* 0x400e88a2 0x2 + .text.s_compare_reserved_regions + 0x400e88a4 0xc esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + *fill* 0x400e88b0 0x0 + *fill* 0x400e88b0 0x0 + *fill* 0x400e88b0 0x0 + *fill* 0x400e88b0 0x0 + *fill* 0x400e88b0 0x0 + *fill* 0x400e88b0 0x0 + *fill* 0x400e88b0 0x0 + *fill* 0x400e88b0 0x0 + *fill* 0x400e88b0 0x0 + .text.esp_intr_get_cpu + 0x400e88b0 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x400e88b0 esp_intr_get_cpu + *fill* 0x400e88ca 0x0 + *fill* 0x400e88ca 0x0 + *fill* 0x400e88ca 0x0 + *fill* 0x400e88ca 0x0 + *fill* 0x400e88ca 0x0 + *fill* 0x400e88ca 0x0 + *fill* 0x400e88ca 0x0 + *fill* 0x400e88ca 0x0 + *fill* 0x400e88ca 0x0 + *fill* 0x400e88ca 0x0 + *fill* 0x400e88ca 0x0 + *fill* 0x400e88ca 0x0 + *fill* 0x400e88ca 0x0 + *fill* 0x400e88ca 0x0 + *fill* 0x400e88ca 0x0 + *fill* 0x400e88ca 0x0 + *fill* 0x400e88ca 0x0 + *fill* 0x400e88ca 0x0 + *fill* 0x400e88ca 0x0 + *fill* 0x400e88ca 0x0 + *fill* 0x400e88ca 0x0 + *fill* 0x400e88ca 0x0 + *fill* 0x400e88ca 0x0 + *fill* 0x400e88ca 0x0 + *fill* 0x400e88ca 0x0 + *fill* 0x400e88ca 0x0 + *fill* 0x400e88ca 0x0 + *fill* 0x400e88ca 0x0 + *fill* 0x400e88ca 0x0 + *fill* 0x400e88ca 0x0 + *fill* 0x400e88ca 0x0 + *fill* 0x400e88ca 0x2 + .text.esp_libc_init_funcs + 0x400e88cc 0x5 esp-idf/esp_libc/libesp_libc.a(init.c.obj) + 0x400e88cc esp_libc_init_funcs + *fill* 0x400e88d1 0x0 + *fill* 0x400e88d1 0x3 + .text.esp_libc_include_pthread_impl + 0x400e88d4 0x5 esp-idf/esp_libc/libesp_libc.a(pthread.c.obj) + 0x400e88d4 esp_libc_include_pthread_impl + *fill* 0x400e88d9 0x3 + .text.esp_libc_include_getentropy_impl + 0x400e88dc 0x5 esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) + 0x400e88dc esp_libc_include_getentropy_impl + *fill* 0x400e88e1 0x0 + *fill* 0x400e88e1 0x0 + *fill* 0x400e88e1 0x0 + *fill* 0x400e88e1 0x0 + *fill* 0x400e88e1 0x0 + *fill* 0x400e88e1 0x0 + *fill* 0x400e88e1 0x0 + *fill* 0x400e88e1 0x0 + *fill* 0x400e88e1 0x0 + *fill* 0x400e88e1 0x3 + .text.esp_libc_include_syscalls_impl + 0x400e88e4 0x5 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + 0x400e88e4 esp_libc_include_syscalls_impl + *fill* 0x400e88e9 0x3 + .text.esp_libc_include_reent_syscalls_impl + 0x400e88ec 0x5 esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + 0x400e88ec esp_libc_include_reent_syscalls_impl + *fill* 0x400e88f1 0x0 + *fill* 0x400e88f1 0x0 + *fill* 0x400e88f1 0x0 + *fill* 0x400e88f1 0x0 + *fill* 0x400e88f1 0x0 + *fill* 0x400e88f1 0x3 + .text.esp_libc_include_init_funcs + 0x400e88f4 0x5 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + 0x400e88f4 esp_libc_include_init_funcs + *fill* 0x400e88f9 0x3 + .text.mutexattr_check + 0x400e88fc 0x11 esp-idf/pthread/libpthread.a(pthread.c.obj) + *fill* 0x400e890d 0x0 + *fill* 0x400e890d 0x0 + *fill* 0x400e890d 0x0 + *fill* 0x400e890d 0x3 + .text.pthread_include_pthread_impl + 0x400e8910 0x5 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x400e8910 pthread_include_pthread_impl + *fill* 0x400e8915 0x3 + .text.pthread_include_pthread_cond_var_impl + 0x400e8918 0x5 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + 0x400e8918 pthread_include_pthread_cond_var_impl + *fill* 0x400e891d 0x3 + .text.find_value + 0x400e8920 0x14 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + *fill* 0x400e8934 0x0 + *fill* 0x400e8934 0x0 + *fill* 0x400e8934 0x0 + *fill* 0x400e8934 0x0 + .text.pthread_include_pthread_local_storage_impl + 0x400e8934 0x5 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x400e8934 pthread_include_pthread_local_storage_impl + *fill* 0x400e8939 0x3 + .text.pthread_include_pthread_rwlock_impl + 0x400e893c 0x5 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + 0x400e893c pthread_include_pthread_rwlock_impl + *fill* 0x400e8941 0x3 + .text.pthread_include_pthread_semaphore_impl + 0x400e8944 0x5 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + 0x400e8944 pthread_include_pthread_semaphore_impl + *fill* 0x400e8949 0x3 + .text.__cxa_guard_dummy + 0x400e894c 0x5 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + 0x400e894c __cxa_guard_dummy + *fill* 0x400e8951 0x3 + .text.__cxx_init_dummy + 0x400e8954 0x5 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + 0x400e8954 __cxx_init_dummy + *fill* 0x400e8959 0x0 + *fill* 0x400e8959 0x0 + *fill* 0x400e8959 0x3 + .text.esp_timer_init_include_func + 0x400e895c 0x5 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + 0x400e895c esp_timer_init_include_func + *fill* 0x400e8961 0x0 + *fill* 0x400e8961 0x0 + *fill* 0x400e8961 0x0 + *fill* 0x400e8961 0x0 + *fill* 0x400e8961 0x0 + *fill* 0x400e8961 0x0 + *fill* 0x400e8961 0x0 + *fill* 0x400e8961 0x0 + *fill* 0x400e8961 0x0 + *fill* 0x400e8961 0x0 + *fill* 0x400e8961 0x0 + *fill* 0x400e8961 0x0 + *fill* 0x400e8961 0x0 + *fill* 0x400e8961 0x0 + *fill* 0x400e8961 0x0 + *fill* 0x400e8961 0x0 + *fill* 0x400e8961 0x0 + *fill* 0x400e8961 0x0 + *fill* 0x400e8961 0x0 + *fill* 0x400e8961 0x0 + *fill* 0x400e8961 0x3 + .text.uart_vfs_include_dev_init + 0x400e8964 0x5 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x400e8964 uart_vfs_include_dev_init + *fill* 0x400e8969 0x0 + *fill* 0x400e8969 0x3 + .text.uart_find_pattern_from_last + 0x400e896c 0x26 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + *fill* 0x400e8992 0x0 + *fill* 0x400e8992 0x0 + *fill* 0x400e8992 0x0 + *fill* 0x400e8992 0x0 + *fill* 0x400e8992 0x0 + *fill* 0x400e8992 0x0 + *fill* 0x400e8992 0x0 + *fill* 0x400e8992 0x0 + *fill* 0x400e8992 0x0 + *fill* 0x400e8992 0x0 + *fill* 0x400e8992 0x0 + *fill* 0x400e8992 0x0 + *fill* 0x400e8992 0x0 + *fill* 0x400e8992 0x0 + *fill* 0x400e8992 0x0 + *fill* 0x400e8992 0x0 + *fill* 0x400e8992 0x0 + *fill* 0x400e8992 0x0 + *fill* 0x400e8992 0x0 + *fill* 0x400e8992 0x0 + *fill* 0x400e8992 0x0 + *fill* 0x400e8992 0x2 + .text.nvs_sec_provider_include_impl + 0x400e8994 0x5 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + 0x400e8994 nvs_sec_provider_include_impl + *fill* 0x400e8999 0x0 + *fill* 0x400e8999 0x0 + *fill* 0x400e8999 0x3 + .text._ZN14intrusive_listI14NVSHandleEntryE5eraseENS1_8iteratorE + 0x400e899c 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x400e899c intrusive_list::erase(intrusive_list::iterator) + *fill* 0x400e89be 0x0 + *fill* 0x400e89be 0x0 + *fill* 0x400e89be 0x0 + *fill* 0x400e89be 0x0 + *fill* 0x400e89be 0x0 + *fill* 0x400e89be 0x0 + *fill* 0x400e89be 0x0 + *fill* 0x400e89be 0x0 + *fill* 0x400e89be 0x0 + *fill* 0x400e89be 0x0 + *fill* 0x400e89be 0x2 + .text._ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE9push_backEPS2_ + 0x400e89c0 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x400e89c0 intrusive_list::push_back(nvs::Storage::BlobIndexNode*) + *fill* 0x400e89e1 0x0 + *fill* 0x400e89e1 0x3 + .text._ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE5eraseENS3_8iteratorE + 0x400e89e4 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x400e89e4 intrusive_list::erase(intrusive_list::iterator) + *fill* 0x400e8a06 0x0 + *fill* 0x400e8a06 0x2 + .text._ZN19CompressedEnumTableIbLj1ELj256EE3setEjb + 0x400e8a08 0x36 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x400e8a08 CompressedEnumTable::set(unsigned int, bool) + *fill* 0x400e8a3e 0x2 + .text._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE9push_backEPS2_ + 0x400e8a40 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x400e8a40 intrusive_list::push_back(nvs::Storage::NamespaceEntry*) + *fill* 0x400e8a61 0x0 + *fill* 0x400e8a61 0x0 + *fill* 0x400e8a61 0x0 + *fill* 0x400e8a61 0x3 + .text._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE5eraseENS3_8iteratorE + 0x400e8a64 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x400e8a64 intrusive_list::erase(intrusive_list::iterator) + *fill* 0x400e8a86 0x0 + *fill* 0x400e8a86 0x0 + *fill* 0x400e8a86 0x0 + *fill* 0x400e8a86 0x0 + *fill* 0x400e8a86 0x2 + .text._ZNK3nvs15NVSHandleSimple18get_partition_nameEv + 0x400e8a88 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x400e8a88 nvs::NVSHandleSimple::get_partition_name() const + *fill* 0x400e8a9a 0x0 + *fill* 0x400e8a9a 0x2 + .text._ZN3nvs12NVSPartition18get_partition_nameEv + 0x400e8a9c 0xa esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x400e8a9c nvs::NVSPartition::get_partition_name() + *fill* 0x400e8aa6 0x2 + .text._ZN3nvs12NVSPartition11get_addressEv + 0x400e8aa8 0x9 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x400e8aa8 nvs::NVSPartition::get_address() + *fill* 0x400e8ab1 0x3 + .text._ZN3nvs12NVSPartition8get_sizeEv + 0x400e8ab4 0x9 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x400e8ab4 nvs::NVSPartition::get_size() + *fill* 0x400e8abd 0x3 + .text._ZN3nvs12NVSPartition12get_readonlyEv + 0x400e8ac0 0xa esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x400e8ac0 nvs::NVSPartition::get_readonly() + *fill* 0x400e8aca 0x0 + *fill* 0x400e8aca 0x0 + *fill* 0x400e8aca 0x0 + *fill* 0x400e8aca 0x0 + *fill* 0x400e8aca 0x0 + *fill* 0x400e8aca 0x0 + *fill* 0x400e8aca 0x0 + *fill* 0x400e8aca 0x0 + *fill* 0x400e8aca 0x0 + *fill* 0x400e8aca 0x0 + *fill* 0x400e8aca 0x0 + *fill* 0x400e8aca 0x0 + *fill* 0x400e8aca 0x2 + .text._ZN14intrusive_listIN3nvs9PartitionEE9push_backEPS1_ + 0x400e8acc 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x400e8acc intrusive_list::push_back(nvs::Partition*) + *fill* 0x400e8aed 0x3 + .text._ZN14intrusive_listIN3nvs9PartitionEE5eraseENS2_8iteratorE + 0x400e8af0 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x400e8af0 intrusive_list::erase(intrusive_list::iterator) + *fill* 0x400e8b12 0x2 + .text._ZN14intrusive_listIN3nvs7StorageEE9push_backEPS1_ + 0x400e8b14 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x400e8b14 intrusive_list::push_back(nvs::Storage*) + *fill* 0x400e8b35 0x0 + *fill* 0x400e8b35 0x3 + .text._ZN14intrusive_listIN3nvs15NVSHandleSimpleEE5eraseENS2_8iteratorE + 0x400e8b38 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x400e8b38 intrusive_list::erase(intrusive_list::iterator) + *fill* 0x400e8b59 0x3 + .text._ZN14intrusive_listIN3nvs7StorageEE5eraseENS2_8iteratorE + 0x400e8b5c 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x400e8b5c intrusive_list::erase(intrusive_list::iterator) + *fill* 0x400e8b7e 0x0 + *fill* 0x400e8b7e 0x0 + *fill* 0x400e8b7e 0x0 + *fill* 0x400e8b7e 0x0 + *fill* 0x400e8b7e 0x2 + .text._ZN3nvs4Lock4initEv + 0x400e8b80 0x7 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + 0x400e8b80 nvs::Lock::init() + *fill* 0x400e8b87 0x1 + .text._ZN3nvs8HashListC2Ev + 0x400e8b88 0xd esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x400e8b88 nvs::HashList::HashList() + 0x400e8b88 nvs::HashList::HashList() + *fill* 0x400e8b95 0x3 + .text._ZN3nvs8HashList13HashListBlockC2Ev + 0x400e8b98 0x25 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x400e8b98 nvs::HashList::HashListBlock::HashListBlock() + 0x400e8b98 nvs::HashList::HashListBlock::HashListBlock() + *fill* 0x400e8bbd 0x0 + *fill* 0x400e8bbd 0x3 + .text._ZN14intrusive_listIN3nvs8HashList13HashListBlockEE5eraseENS3_8iteratorE + 0x400e8bc0 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x400e8bc0 intrusive_list::erase(intrusive_list::iterator) + *fill* 0x400e8be2 0x0 + *fill* 0x400e8be2 0x0 + *fill* 0x400e8be2 0x0 + *fill* 0x400e8be2 0x2 + .text._ZN14intrusive_listIN3nvs8HashList13HashListBlockEE9push_backEPS2_ + 0x400e8be4 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x400e8be4 intrusive_list::push_back(nvs::HashList::HashListBlock*) + *fill* 0x400e8c05 0x0 + *fill* 0x400e8c05 0x0 + *fill* 0x400e8c05 0x3 + .text._ZN3nvs4Page20updateFirstUsedEntryEjj + 0x400e8c08 0x55 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x400e8c08 nvs::Page::updateFirstUsedEntry(unsigned int, unsigned int) + *fill* 0x400e8c5d 0x0 + *fill* 0x400e8c5d 0x3 + .text._ZNK3nvs4Page9readEntryEjRNS_4ItemE + 0x400e8c60 0x2a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x400e8c60 nvs::Page::readEntry(unsigned int, nvs::Item&) const + *fill* 0x400e8c8a 0x0 + *fill* 0x400e8c8a 0x0 + *fill* 0x400e8c8a 0x0 + *fill* 0x400e8c8a 0x2 + .text._ZN19CompressedEnumTableIN3nvs4Page10EntryStateELj2ELj126EE3setEjS2_ + 0x400e8c8c 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x400e8c8c CompressedEnumTable::set(unsigned int, nvs::Page::EntryState) + *fill* 0x400e8cc4 0x0 + *fill* 0x400e8cc4 0x0 + *fill* 0x400e8cc4 0x0 + *fill* 0x400e8cc4 0x0 + *fill* 0x400e8cc4 0x0 + *fill* 0x400e8cc4 0x0 + *fill* 0x400e8cc4 0x0 + *fill* 0x400e8cc4 0x0 + .text._ZN14intrusive_listIN3nvs4PageEE9push_backEPS1_ + 0x400e8cc4 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x400e8cc4 intrusive_list::push_back(nvs::Page*) + *fill* 0x400e8ce5 0x3 + .text._ZN14intrusive_listIN3nvs4PageEE5eraseENS2_8iteratorE + 0x400e8ce8 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x400e8ce8 intrusive_list::erase(intrusive_list::iterator) + *fill* 0x400e8d09 0x0 + *fill* 0x400e8d09 0x3 + .text._ZN14intrusive_listIN3nvs4PageEE10push_frontEPS1_ + 0x400e8d0c 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x400e8d0c intrusive_list::push_front(nvs::Page*) + *fill* 0x400e8d2c 0x0 + .text.include_esp_phy_override + 0x400e8d2c 0x5 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + 0x400e8d2c include_esp_phy_override + *fill* 0x400e8d31 0x0 + *fill* 0x400e8d31 0x3 + .text.is_path_prefix_valid + 0x400e8d34 0x31 esp-idf/vfs/libvfs.a(vfs.c.obj) + *fill* 0x400e8d65 0x0 + *fill* 0x400e8d65 0x0 + *fill* 0x400e8d65 0x0 + *fill* 0x400e8d65 0x0 + *fill* 0x400e8d65 0x0 + *fill* 0x400e8d65 0x0 + *fill* 0x400e8d65 0x0 + *fill* 0x400e8d65 0x0 + *fill* 0x400e8d65 0x0 + *fill* 0x400e8d65 0x0 + *fill* 0x400e8d65 0x0 + *fill* 0x400e8d65 0x0 + *fill* 0x400e8d65 0x0 + *fill* 0x400e8d65 0x0 + *fill* 0x400e8d65 0x0 + *fill* 0x400e8d65 0x0 + *fill* 0x400e8d65 0x3 + .text.vfs_include_syscalls_impl + 0x400e8d68 0x5 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + 0x400e8d68 vfs_include_syscalls_impl + *fill* 0x400e8d6d 0x0 + *fill* 0x400e8d6d 0x0 + *fill* 0x400e8d6d 0x0 + *fill* 0x400e8d6d 0x0 + *fill* 0x400e8d6d 0x0 + *fill* 0x400e8d6d 0x0 + *fill* 0x400e8d6d 0x0 + *fill* 0x400e8d6d 0x0 + *fill* 0x400e8d6d 0x0 + *fill* 0x400e8d6d 0x0 + *fill* 0x400e8d6d 0x0 + *fill* 0x400e8d6d 0x0 + *fill* 0x400e8d6d 0x3 + .text.esp_vfs_include_nullfs_register + 0x400e8d70 0x5 esp-idf/vfs/libvfs.a(nullfs.c.obj) + 0x400e8d70 esp_vfs_include_nullfs_register + *fill* 0x400e8d75 0x3 + .text.cfg_parity_to_uart + 0x400e8d78 0x18 esp-idf/main/libmain.a(main.c.obj) + .text.cfg_stop_bits_to_uart + 0x400e8d90 0x10 esp-idf/main/libmain.a(main.c.obj) + .text.data_type_internal_cost + 0x400e8da0 0x26 esp-idf/main/libmain.a(main.c.obj) + *fill* 0x400e8dc6 0x2 + .text.pics_type_cost + 0x400e8dc8 0x18 esp-idf/main/libmain.a(main.c.obj) + *fill* 0x400e8de0 0x0 + *fill* 0x400e8de0 0x0 + *fill* 0x400e8de0 0x0 + *fill* 0x400e8de0 0x0 + *fill* 0x400e8de0 0x0 + *fill* 0x400e8de0 0x0 + .text.mem_to_point_type + 0x400e8de0 0x20 esp-idf/main/libmain.a(modbus_memory.c.obj) + *fill* 0x400e8e00 0x0 + *fill* 0x400e8e00 0x0 + *fill* 0x400e8e00 0x0 + *fill* 0x400e8e00 0x0 + *fill* 0x400e8e00 0x0 + *fill* 0x400e8e00 0x0 + *fill* 0x400e8e00 0x0 + *fill* 0x400e8e00 0x0 + *fill* 0x400e8e00 0x0 + *fill* 0x400e8e00 0x0 + *fill* 0x400e8e00 0x0 + *fill* 0x400e8e00 0x0 + *fill* 0x400e8e00 0x0 + *fill* 0x400e8e00 0x0 + .text.validate_type_and_datatype + 0x400e8e00 0x2e esp-idf/main/libmain.a(modbus_points.c.obj) + *fill* 0x400e8e2e 0x2 + .text.data_type_reg_span + 0x400e8e30 0x25 esp-idf/main/libmain.a(modbus_points.c.obj) + *fill* 0x400e8e55 0x3 + .text.db_has_duplicate_type_offset + 0x400e8e58 0x30 esp-idf/main/libmain.a(modbus_points.c.obj) + .text.ranges_overlap + 0x400e8e88 0x38 esp-idf/main/libmain.a(modbus_points.c.obj) + *fill* 0x400e8ec0 0x0 + *fill* 0x400e8ec0 0x0 + *fill* 0x400e8ec0 0x0 + *fill* 0x400e8ec0 0x0 + *fill* 0x400e8ec0 0x0 + *fill* 0x400e8ec0 0x0 + *fill* 0x400e8ec0 0x0 + .text.modbus_points_find_by_pics_range + 0x400e8ec0 0x46 esp-idf/main/libmain.a(modbus_points.c.obj) + 0x400e8ec0 modbus_points_find_by_pics_range + *fill* 0x400e8f06 0x2 + .text.modbus_points_init + 0x400e8f08 0xf esp-idf/main/libmain.a(modbus_points.c.obj) + 0x400e8f08 modbus_points_init + *fill* 0x400e8f17 0x1 + .text.modbus_points_type_to_mem + 0x400e8f18 0x10 esp-idf/main/libmain.a(modbus_points.c.obj) + 0x400e8f18 modbus_points_type_to_mem + .text.modbus_points_is_bit_type + 0x400e8f28 0x11 esp-idf/main/libmain.a(modbus_points.c.obj) + 0x400e8f28 modbus_points_is_bit_type + *fill* 0x400e8f39 0x3 + .text.modbus_points_is_writable_type + 0x400e8f3c 0x17 esp-idf/main/libmain.a(modbus_points.c.obj) + 0x400e8f3c modbus_points_is_writable_type + *fill* 0x400e8f53 0x0 + *fill* 0x400e8f53 0x0 + *fill* 0x400e8f53 0x1 + .text.get_u16_be + 0x400e8f54 0x11 esp-idf/main/libmain.a(modbus_rtu.c.obj) + *fill* 0x400e8f65 0x3 + .text.put_u16_be + 0x400e8f68 0xe esp-idf/main/libmain.a(modbus_rtu.c.obj) + *fill* 0x400e8f76 0x0 + *fill* 0x400e8f76 0x0 + *fill* 0x400e8f76 0x0 + *fill* 0x400e8f76 0x0 + *fill* 0x400e8f76 0x0 + *fill* 0x400e8f76 0x2 + .text.modbus_rtu_find_device + 0x400e8f78 0x33 esp-idf/main/libmain.a(modbus_rtu.c.obj) + 0x400e8f78 modbus_rtu_find_device + *fill* 0x400e8fab 0x0 + *fill* 0x400e8fab 0x0 + *fill* 0x400e8fab 0x0 + *fill* 0x400e8fab 0x0 + *fill* 0x400e8fab 0x0 + *fill* 0x400e8fab 0x0 + *fill* 0x400e8fab 0x0 + *fill* 0x400e8fab 0x0 + *fill* 0x400e8fab 0x0 + *fill* 0x400e8fab 0x0 + *fill* 0x400e8fab 0x1 + .text.spiffs_mode_conv + 0x400e8fac 0x42 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + *fill* 0x400e8fee 0x0 + *fill* 0x400e8fee 0x0 + *fill* 0x400e8fee 0x0 + *fill* 0x400e8fee 0x0 + *fill* 0x400e8fee 0x0 + *fill* 0x400e8fee 0x0 + *fill* 0x400e8fee 0x0 + *fill* 0x400e8fee 0x0 + *fill* 0x400e8fee 0x0 + *fill* 0x400e8fee 0x0 + *fill* 0x400e8fee 0x0 + *fill* 0x400e8fee 0x0 + *fill* 0x400e8fee 0x0 + *fill* 0x400e8fee 0x0 + *fill* 0x400e8fee 0x0 + *fill* 0x400e8fee 0x0 + *fill* 0x400e8fee 0x0 + *fill* 0x400e8fee 0x0 + *fill* 0x400e8fee 0x0 + *fill* 0x400e8fee 0x0 + *fill* 0x400e8fee 0x0 + *fill* 0x400e8fee 0x0 + *fill* 0x400e8fee 0x0 + *fill* 0x400e8fee 0x0 + *fill* 0x400e8fee 0x0 + *fill* 0x400e8fee 0x0 + *fill* 0x400e8fee 0x0 + *fill* 0x400e8fee 0x0 + *fill* 0x400e8fee 0x2 + .text.SPIFFS_errno + 0x400e8ff0 0x8 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x400e8ff0 SPIFFS_errno + .text.SPIFFS_clearerr + 0x400e8ff8 0xa esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x400e8ff8 SPIFFS_clearerr + *fill* 0x400e9002 0x0 + *fill* 0x400e9002 0x0 + *fill* 0x400e9002 0x0 + *fill* 0x400e9002 0x0 + *fill* 0x400e9002 0x0 + *fill* 0x400e9002 0x0 + *fill* 0x400e9002 0x0 + *fill* 0x400e9002 0x0 + *fill* 0x400e9002 0x0 + *fill* 0x400e9002 0x0 + *fill* 0x400e9002 0x0 + *fill* 0x400e9002 0x0 + *fill* 0x400e9002 0x0 + *fill* 0x400e9002 0x0 + *fill* 0x400e9002 0x0 + *fill* 0x400e9002 0x0 + *fill* 0x400e9002 0x0 + *fill* 0x400e9002 0x0 + *fill* 0x400e9002 0x0 + *fill* 0x400e9002 0x0 + *fill* 0x400e9002 0x0 + *fill* 0x400e9002 0x0 + *fill* 0x400e9002 0x0 + *fill* 0x400e9002 0x0 + *fill* 0x400e9002 0x0 + *fill* 0x400e9002 0x0 + *fill* 0x400e9002 0x0 + *fill* 0x400e9002 0x0 + *fill* 0x400e9002 0x0 + *fill* 0x400e9002 0x0 + *fill* 0x400e9002 0x0 + *fill* 0x400e9002 0x0 + *fill* 0x400e9002 0x0 + *fill* 0x400e9002 0x0 + *fill* 0x400e9002 0x2 + .text.spiffs_cache_page_get + 0x400e9004 0x4a esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + *fill* 0x400e904e 0x2 + .text.spiffs_cache_page_free + 0x400e9050 0x6c esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + .text.spiffs_cache_page_allocate + 0x400e90bc 0x45 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + *fill* 0x400e9101 0x0 + *fill* 0x400e9101 0x0 + *fill* 0x400e9101 0x0 + *fill* 0x400e9101 0x3 + .text.spiffs_cache_page_get_by_fd + 0x400e9104 0x46 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + 0x400e9104 spiffs_cache_page_get_by_fd + *fill* 0x400e914a 0x0 + *fill* 0x400e914a 0x0 + *fill* 0x400e914a 0x0 + *fill* 0x400e914a 0x0 + *fill* 0x400e914a 0x0 + *fill* 0x400e914a 0x0 + *fill* 0x400e914a 0x0 + *fill* 0x400e914a 0x0 + *fill* 0x400e914a 0x0 + *fill* 0x400e914a 0x0 + *fill* 0x400e914a 0x0 + *fill* 0x400e914a 0x0 + *fill* 0x400e914a 0x0 + *fill* 0x400e914a 0x0 + *fill* 0x400e914a 0x0 + *fill* 0x400e914a 0x0 + *fill* 0x400e914a 0x0 + *fill* 0x400e914a 0x0 + *fill* 0x400e914a 0x0 + *fill* 0x400e914a 0x0 + *fill* 0x400e914a 0x0 + *fill* 0x400e914a 0x0 + *fill* 0x400e914a 0x0 + *fill* 0x400e914a 0x0 + *fill* 0x400e914a 0x0 + *fill* 0x400e914a 0x0 + *fill* 0x400e914a 0x0 + *fill* 0x400e914a 0x0 + *fill* 0x400e914a 0x0 + *fill* 0x400e914a 0x0 + *fill* 0x400e914a 0x0 + *fill* 0x400e914a 0x0 + *fill* 0x400e914a 0x0 + *fill* 0x400e914a 0x0 + *fill* 0x400e914a 0x0 + *fill* 0x400e914a 0x0 + *fill* 0x400e914a 0x0 + *fill* 0x400e914a 0x0 + *fill* 0x400e914a 0x0 + *fill* 0x400e914a 0x0 + *fill* 0x400e914a 0x0 + *fill* 0x400e914a 0x0 + *fill* 0x400e914a 0x0 + *fill* 0x400e914a 0x2 + .text.uart_hal_set_stop_bits + 0x400e914c 0x5d esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + 0x400e914c uart_hal_set_stop_bits + *fill* 0x400e91a9 0x3 + .text.uart_hal_set_data_bit_num + 0x400e91ac 0x1f esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + 0x400e91ac uart_hal_set_data_bit_num + *fill* 0x400e91cb 0x1 + .text.uart_hal_set_parity + 0x400e91cc 0x35 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + 0x400e91cc uart_hal_set_parity + *fill* 0x400e9201 0x0 + *fill* 0x400e9201 0x0 + *fill* 0x400e9201 0x3 + .text.uart_hal_set_rxfifo_full_thr + 0x400e9204 0x1d esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + 0x400e9204 uart_hal_set_rxfifo_full_thr + *fill* 0x400e9221 0x0 + *fill* 0x400e9221 0x3 + .text.uart_hal_get_symb_len + 0x400e9224 0x65 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + 0x400e9224 uart_hal_get_symb_len + *fill* 0x400e9289 0x0 + *fill* 0x400e9289 0x0 + *fill* 0x400e9289 0x0 + *fill* 0x400e9289 0x0 + *fill* 0x400e9289 0x0 + *fill* 0x400e9289 0x0 + *fill* 0x400e9289 0x3 + .text.s_mem_caps_check + 0x400e928c 0x25 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x400e92b1 0x3 + .text.s_find_available_region + 0x400e92b4 0x2a esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x400e92de 0x2 + .text.s_is_enclosed + 0x400e92e0 0x1d esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x400e92fd 0x3 + .text.s_is_overlapped + 0x400e9300 0x36 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x400e9336 0x0 + *fill* 0x400e9336 0x0 + *fill* 0x400e9336 0x0 + *fill* 0x400e9336 0x0 + *fill* 0x400e9336 0x0 + *fill* 0x400e9336 0x0 + *fill* 0x400e9336 0x0 + *fill* 0x400e9336 0x0 + *fill* 0x400e9336 0x0 + *fill* 0x400e9336 0x0 + *fill* 0x400e9336 0x0 + *fill* 0x400e9336 0x0 + *fill* 0x400e9336 0x0 + *fill* 0x400e9336 0x0 + *fill* 0x400e9336 0x0 + *fill* 0x400e9336 0x0 + *fill* 0x400e9336 0x0 + *fill* 0x400e9336 0x0 + *fill* 0x400e9336 0x0 + *fill* 0x400e9336 0x0 + *fill* 0x400e9336 0x0 + *fill* 0x400e9336 0x0 + *fill* 0x400e9336 0x0 + *fill* 0x400e9336 0x0 + *fill* 0x400e9336 0x2 + .text.mbedtls_psa_crypto_init_include_impl + 0x400e9338 0x5 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_psa_crypto_init.c.obj) + 0x400e9338 mbedtls_psa_crypto_init_include_impl + *fill* 0x400e933d 0x0 + *fill* 0x400e933d 0x0 + *fill* 0x400e933d 0x0 + *fill* 0x400e933d 0x0 + *fill* 0x400e933d 0x0 + *fill* 0x400e933d 0x0 + *fill* 0x400e933d 0x0 + *fill* 0x400e933d 0x0 + *fill* 0x400e933d 0x3 + .text.mpu_hal_set_region_access + 0x400e9340 0x4c esp-idf/esp_hal_security/libesp_hal_security.a(mpu_hal.c.obj) + 0x400e9340 mpu_hal_set_region_access + *fill* 0x400e938c 0x0 + *fill* 0x400e938c 0x0 + *fill* 0x400e938c 0x0 + *fill* 0x400e938c 0x0 + *fill* 0x400e938c 0x0 + *fill* 0x400e938c 0x0 + *fill* 0x400e938c 0x0 + *fill* 0x400e938c 0x0 + *fill* 0x400e938c 0x0 + *fill* 0x400e938c 0x0 + *fill* 0x400e938c 0x0 + *fill* 0x400e938c 0x0 + *fill* 0x400e938c 0x0 + *fill* 0x400e938c 0x0 + *fill* 0x400e938c 0x0 + *fill* 0x400e938c 0x0 + *fill* 0x400e938c 0x0 + .text._ZNSt9type_infoD2Ev + 0x400e938c 0x5 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + 0x400e938c std::type_info::~type_info() + 0x400e938c std::type_info::~type_info() + *fill* 0x400e9391 0x3 + .text._ZNKSt9type_info14__is_pointer_pEv + 0x400e9394 0x7 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + 0x400e9394 std::type_info::__is_pointer_p() const + 0x400e9394 std::type_info::__is_function_p() const + *fill* 0x400e939b 0x0 + *fill* 0x400e939b 0x1 + .text._ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PPv + 0x400e939c 0x2f C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + 0x400e939c __cxxabiv1::__class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void**) const + *fill* 0x400e93cb 0x1 + .text._ZNK10__cxxabiv117__class_type_info20__do_find_public_srcEiPKvPKS0_S2_ + 0x400e93cc 0xc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + 0x400e93cc __cxxabiv1::__class_type_info::__do_find_public_src(int, void const*, __cxxabiv1::__class_type_info const*, void const*) const + *fill* 0x400e93d8 0x0 + *fill* 0x400e93d8 0x0 + *fill* 0x400e93d8 0x0 + *fill* 0x400e93d8 0x0 + *fill* 0x400e93d8 0x0 + .text._ZNSt9exceptionD2Ev + 0x400e93d8 0x5 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + 0x400e93d8 std::exception::~exception() + 0x400e93d8 std::exception::~exception() + *fill* 0x400e93dd 0x3 + .text 0x400e93e0 0x59 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + 0x400e93e0 __divsf3 + *fill* 0x400e9439 0x0 + *fill* 0x400e9439 0x0 + *fill* 0x400e9439 0x0 + *fill* 0x400e9439 0x0 + *fill* 0x400e9439 0x0 + *fill* 0x400e9439 0x3 + .text.tolower 0x400e943c 0x10 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_ctype_tolower.c.o) + 0x400e943c tolower + .text.strncasecmp + 0x400e944c 0x38 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strncasecmp.c.o) + 0x400e944c strncasecmp + *fill* 0x400e9484 0x0 + .text.__bufio_flush_locked + 0x400e9484 0x6b C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + 0x400e9484 __bufio_flush_locked + *fill* 0x400e94ef 0x0 + *fill* 0x400e94ef 0x0 + *fill* 0x400e94ef 0x1 + .text.__bufio_setvbuf + 0x400e94f0 0x38 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + 0x400e94f0 __bufio_setvbuf + *fill* 0x400e9528 0x0 + *fill* 0x400e9528 0x0 + *fill* 0x400e9528 0x0 + *fill* 0x400e9528 0x0 + *fill* 0x400e9528 0x0 + *fill* 0x400e9528 0x0 + *fill* 0x400e9528 0x0 + *fill* 0x400e9528 0x0 + *fill* 0x400e9528 0x0 + *fill* 0x400e9528 0x0 + *fill* 0x400e9528 0x0 + *fill* 0x400e9528 0x0 + *fill* 0x400e9528 0x0 + *fill* 0x400e9528 0x0 + *fill* 0x400e9528 0x0 + *fill* 0x400e9528 0x0 + *fill* 0x400e9528 0x0 + .text.__umul128 + 0x400e9528 0x43 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_umul128.c.o) + 0x400e9528 __umul128 + *fill* 0x400e956b 0x0 + *fill* 0x400e956b 0x0 + *fill* 0x400e956b 0x1 + .text.getc_unlocked + 0x400e956c 0x96 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgetc.c.o) + 0x400e956c getc_unlocked + *fill* 0x400e9602 0x2 + .text.__file_str_put + 0x400e9604 0x16 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_filestrput.c.o) + 0x400e9604 __file_str_put + *fill* 0x400e961a 0x0 + *(EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifi0iram EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifi0iram.*) + *(.wifiextrairam .wifiextrairam.*) + *(EXCLUDE_FILE(*libpp.a) .wifiorslpiram EXCLUDE_FILE(*libpp.a) .wifiorslpiram.*) + *(EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifirxiram EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifirxiram.*) + *(.wifislpiram .wifislpiram.*) + *(EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifislprxiram EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifislprxiram.*) + *libesp_driver_gptimer.a:gptimer.*(.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_set_alarm_action .literal.gptimer_set_raw_count .literal.gptimer_start .literal.gptimer_stop .literal.gptimer_unregister_from_group .text .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_set_alarm_action .text.gptimer_set_raw_count .text.gptimer_start .text.gptimer_stop .text.gptimer_unregister_from_group) + *libesp_driver_i2c.a:i2c_master.*(.literal.i2c_del_master_bus .literal.i2c_master_bus_add_device .literal.i2c_master_bus_destroy .literal.i2c_master_bus_reset .literal.i2c_master_bus_rm_device .literal.i2c_master_bus_wait_all_done .literal.i2c_master_device_change_address .literal.i2c_master_execute_defined_operations .literal.i2c_master_get_bus_handle .literal.i2c_master_multi_buffer_transmit .literal.i2c_master_probe .literal.i2c_master_receive .literal.i2c_master_register_event_callbacks .literal.i2c_master_transmit .literal.i2c_master_transmit_receive .literal.i2c_new_master_bus .literal.i2c_param_master_config .literal.s_i2c_asynchronous_transaction .literal.s_i2c_err_log_print .literal.s_i2c_hw_fsm_reset .literal.s_i2c_master_clear_bus .literal.s_i2c_read_command .literal.s_i2c_send_command_async .literal.s_i2c_send_commands .literal.s_i2c_start_end_command .literal.s_i2c_synchronous_transaction .literal.s_i2c_transaction_start .literal.s_i2c_write_command .text .text.i2c_del_master_bus .text.i2c_master_bus_add_device .text.i2c_master_bus_destroy .text.i2c_master_bus_reset .text.i2c_master_bus_rm_device .text.i2c_master_bus_wait_all_done .text.i2c_master_device_change_address .text.i2c_master_execute_defined_operations .text.i2c_master_get_bus_handle .text.i2c_master_multi_buffer_transmit .text.i2c_master_probe .text.i2c_master_receive .text.i2c_master_register_event_callbacks .text.i2c_master_transmit .text.i2c_master_transmit_receive .text.i2c_new_master_bus .text.i2c_param_master_config .text.s_i2c_asynchronous_transaction .text.s_i2c_err_log_print .text.s_i2c_hw_fsm_reset .text.s_i2c_master_clear_bus .text.s_i2c_read_command .text.s_i2c_send_command_async .text.s_i2c_send_commands .text.s_i2c_start_end_command .text.s_i2c_synchronous_transaction .text.s_i2c_transaction_start .text.s_i2c_write_command) + *libesp_driver_mcpwm.a:mcpwm_cap.*(.literal.mcpwm_cap_timer_destroy .literal.mcpwm_cap_timer_register_to_group .literal.mcpwm_cap_timer_unregister_from_group .literal.mcpwm_capture_channel_destroy .literal.mcpwm_capture_channel_disable .literal.mcpwm_capture_channel_enable .literal.mcpwm_capture_channel_register_event_callbacks .literal.mcpwm_capture_channel_register_to_timer .literal.mcpwm_capture_channel_trigger_soft_catch .literal.mcpwm_capture_channel_unregister_from_timer .literal.mcpwm_capture_get_latched_value .literal.mcpwm_capture_timer_disable .literal.mcpwm_capture_timer_enable .literal.mcpwm_capture_timer_get_resolution .literal.mcpwm_capture_timer_set_phase_on_sync .literal.mcpwm_capture_timer_start .literal.mcpwm_capture_timer_stop .literal.mcpwm_del_capture_channel .literal.mcpwm_del_capture_timer .literal.mcpwm_ll_capture_set_prescale .literal.mcpwm_new_capture_channel .literal.mcpwm_new_capture_timer .text .text.mcpwm_cap_timer_destroy .text.mcpwm_cap_timer_register_to_group .text.mcpwm_cap_timer_unregister_from_group .text.mcpwm_capture_channel_destroy .text.mcpwm_capture_channel_disable .text.mcpwm_capture_channel_enable .text.mcpwm_capture_channel_register_event_callbacks .text.mcpwm_capture_channel_register_to_timer .text.mcpwm_capture_channel_trigger_soft_catch .text.mcpwm_capture_channel_unregister_from_timer .text.mcpwm_capture_get_latched_value .text.mcpwm_capture_timer_disable .text.mcpwm_capture_timer_enable .text.mcpwm_capture_timer_get_resolution .text.mcpwm_capture_timer_set_phase_on_sync .text.mcpwm_capture_timer_start .text.mcpwm_capture_timer_stop .text.mcpwm_del_capture_channel .text.mcpwm_del_capture_timer .text.mcpwm_ll_capture_set_prescale .text.mcpwm_new_capture_channel .text.mcpwm_new_capture_timer) + *libesp_driver_mcpwm.a:mcpwm_cmpr.*(.literal.mcpwm_comparator_destroy .literal.mcpwm_comparator_register_event_callbacks .literal.mcpwm_comparator_register_to_operator .literal.mcpwm_comparator_set_compare_value .literal.mcpwm_comparator_unregister_from_operator .literal.mcpwm_del_comparator .literal.mcpwm_new_comparator .text .text.mcpwm_comparator_destroy .text.mcpwm_comparator_register_event_callbacks .text.mcpwm_comparator_register_to_operator .text.mcpwm_comparator_set_compare_value .text.mcpwm_comparator_unregister_from_operator .text.mcpwm_del_comparator .text.mcpwm_ll_operator_enable_update_compare_on_sync .text.mcpwm_ll_operator_enable_update_compare_on_tep .text.mcpwm_ll_operator_enable_update_compare_on_tez .text.mcpwm_new_comparator) + *libesp_driver_mcpwm.a:mcpwm_fault.*(.literal.mcpwm_del_fault .literal.mcpwm_del_gpio_fault .literal.mcpwm_del_soft_fault .literal.mcpwm_fault_register_event_callbacks .literal.mcpwm_gpio_fault_destroy .literal.mcpwm_gpio_fault_register_to_group .literal.mcpwm_gpio_fault_unregister_from_group .literal.mcpwm_new_gpio_fault .literal.mcpwm_new_soft_fault .literal.mcpwm_soft_fault_activate .text .text.mcpwm_del_fault .text.mcpwm_del_gpio_fault .text.mcpwm_del_soft_fault .text.mcpwm_fault_register_event_callbacks .text.mcpwm_gpio_fault_destroy .text.mcpwm_gpio_fault_register_to_group .text.mcpwm_gpio_fault_unregister_from_group .text.mcpwm_ll_fault_set_active_level .text.mcpwm_new_gpio_fault .text.mcpwm_new_soft_fault .text.mcpwm_soft_fault_activate) + *libesp_driver_mcpwm.a:mcpwm_oper.*(.literal.mcpwm_del_operator .literal.mcpwm_ll_carrier_set_first_pulse_width .literal.mcpwm_ll_carrier_set_prescale .literal.mcpwm_new_operator .literal.mcpwm_operator_apply_carrier .literal.mcpwm_operator_connect_timer .literal.mcpwm_operator_destroy .literal.mcpwm_operator_recover_from_fault .literal.mcpwm_operator_register_event_callbacks .literal.mcpwm_operator_register_to_group .literal.mcpwm_operator_set_brake_on_fault .literal.mcpwm_operator_unregister_from_group .text .text.mcpwm_del_operator .text.mcpwm_ll_brake_enable_cbc_mode .text.mcpwm_ll_brake_enable_oneshot_mode .text.mcpwm_ll_carrier_set_first_pulse_width .text.mcpwm_ll_carrier_set_prescale .text.mcpwm_ll_deadtime_enable_update_delay_on_sync .text.mcpwm_ll_deadtime_enable_update_delay_on_tep .text.mcpwm_ll_deadtime_enable_update_delay_on_tez .text.mcpwm_new_operator .text.mcpwm_operator_apply_carrier .text.mcpwm_operator_connect_timer .text.mcpwm_operator_destroy .text.mcpwm_operator_recover_from_fault .text.mcpwm_operator_register_event_callbacks .text.mcpwm_operator_register_to_group .text.mcpwm_operator_set_brake_on_fault .text.mcpwm_operator_unregister_from_group) + *libesp_driver_mcpwm.a:mcpwm_timer.*(.literal.mcpwm_del_timer .literal.mcpwm_ll_timer_set_clock_prescale .literal.mcpwm_ll_timer_set_count_mode .literal.mcpwm_ll_timer_set_start_stop_command .literal.mcpwm_new_timer .literal.mcpwm_timer_destroy .literal.mcpwm_timer_disable .literal.mcpwm_timer_enable .literal.mcpwm_timer_get_phase .literal.mcpwm_timer_register_event_callbacks .literal.mcpwm_timer_register_to_group .literal.mcpwm_timer_set_period .literal.mcpwm_timer_set_phase_on_sync .literal.mcpwm_timer_start_stop .literal.mcpwm_timer_unregister_from_group .text .text.mcpwm_del_timer .text.mcpwm_ll_timer_set_clock_prescale .text.mcpwm_ll_timer_set_count_mode .text.mcpwm_ll_timer_set_start_stop_command .text.mcpwm_new_timer .text.mcpwm_timer_destroy .text.mcpwm_timer_disable .text.mcpwm_timer_enable .text.mcpwm_timer_get_phase .text.mcpwm_timer_register_event_callbacks .text.mcpwm_timer_register_to_group .text.mcpwm_timer_set_period .text.mcpwm_timer_set_phase_on_sync .text.mcpwm_timer_start_stop .text.mcpwm_timer_unregister_from_group) + *libesp_driver_rmt.a:rmt_encoder.*(.literal.rmt_alloc_encoder_mem .literal.rmt_del_encoder .text .text.rmt_alloc_encoder_mem .text.rmt_del_encoder) + *libesp_driver_rmt.a:rmt_rx.*(.literal.rmt_del_rx_channel .literal.rmt_new_rx_channel .literal.rmt_receive .literal.rmt_rx_demodulate_carrier .literal.rmt_rx_destroy .literal.rmt_rx_disable .literal.rmt_rx_enable .literal.rmt_rx_register_event_callbacks .literal.rmt_rx_register_to_group .literal.rmt_rx_unregister_from_group .text .text.rmt_del_rx_channel .text.rmt_new_rx_channel .text.rmt_receive .text.rmt_rx_demodulate_carrier .text.rmt_rx_destroy .text.rmt_rx_disable .text.rmt_rx_enable .text.rmt_rx_register_event_callbacks .text.rmt_rx_register_to_group .text.rmt_rx_unregister_from_group) + *libesp_driver_rmt.a:rmt_tx.*(.literal.rmt_del_sync_manager .literal.rmt_del_tx_channel .literal.rmt_ll_tx_set_carrier_high_low_ticks .literal.rmt_new_sync_manager .literal.rmt_new_tx_channel .literal.rmt_sync_reset .literal.rmt_transmit .literal.rmt_tx_create_trans_queue .literal.rmt_tx_destroy .literal.rmt_tx_disable .literal.rmt_tx_enable .literal.rmt_tx_modulate_carrier .literal.rmt_tx_register_event_callbacks .literal.rmt_tx_register_to_group .literal.rmt_tx_switch_gpio .literal.rmt_tx_unregister_from_group .literal.rmt_tx_wait_all_done .text .text.rmt_del_sync_manager .text.rmt_del_tx_channel .text.rmt_ll_tx_set_carrier_high_low_ticks .text.rmt_new_sync_manager .text.rmt_new_tx_channel .text.rmt_sync_reset .text.rmt_transmit .text.rmt_tx_create_trans_queue .text.rmt_tx_destroy .text.rmt_tx_disable .text.rmt_tx_enable .text.rmt_tx_modulate_carrier .text.rmt_tx_register_event_callbacks .text.rmt_tx_register_to_group .text.rmt_tx_switch_gpio .text.rmt_tx_unregister_from_group .text.rmt_tx_wait_all_done) + *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) + *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.find_and_unregister_handler .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 .literal.loop_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.find_and_unregister_handler .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 .text.loop_remove_handler) + *libesp_hal_gpio.a:gpio_hal.*(.literal.gpio_hal_intr_disable .literal.gpio_hal_intr_enable_on_core .literal.gpio_hal_iomux_in .literal.gpio_hal_iomux_out .literal.gpio_hal_matrix_in .literal.gpio_hal_matrix_out .text .text.gpio_hal_intr_disable .text.gpio_hal_intr_enable_on_core .text.gpio_hal_iomux_in .text.gpio_hal_iomux_out .text.gpio_hal_matrix_in .text.gpio_hal_matrix_out) + *fill* 0x400e961a 0x2 + .text.gpio_hal_intr_disable + 0x400e961c 0x6c esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + 0x400e961c gpio_hal_intr_disable + .text.gpio_hal_iomux_in + 0x400e9688 0x60 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + 0x400e9688 gpio_hal_iomux_in + .text.gpio_hal_iomux_out + 0x400e96e8 0x31 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + 0x400e96e8 gpio_hal_iomux_out + *fill* 0x400e9719 0x3 + .text.gpio_hal_matrix_in + 0x400e971c 0x2f esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + 0x400e971c gpio_hal_matrix_in + *fill* 0x400e974b 0x1 + .text.gpio_hal_matrix_out + 0x400e974c 0x3b esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + 0x400e974c gpio_hal_matrix_out + *fill* 0x400e9787 0x0 + *fill* 0x400e9787 0x0 + *libesp_hal_timg.a:timer_hal.*(.literal.timer_hal_deinit .literal.timer_hal_init .text .text.timer_hal_deinit .text.timer_hal_init .text.timer_hal_set_counter_value) + *libesp_hw_support.a:cpu.*(.literal.esp_cpu_set_watchpoint .text .text.esp_cpu_clear_breakpoint .text.esp_cpu_clear_watchpoint .text.esp_cpu_set_breakpoint .text.esp_cpu_set_watchpoint) + *fill* 0x400e9787 0x1 + .text.esp_cpu_set_breakpoint + 0x400e9788 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x400e9788 esp_cpu_set_breakpoint + *libesp_hw_support.a:esp_clk_tree.*(.literal.esp_clk_tree_src_get_freq_hz .text .text.esp_clk_tree_initialize .text.esp_clk_tree_src_get_freq_hz) + .text.esp_clk_tree_src_get_freq_hz + 0x400e97ac 0x172 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + 0x1a6 (size before relaxing) + 0x400e97ac esp_clk_tree_src_get_freq_hz + *fill* 0x400e991e 0x2 + .text.esp_clk_tree_initialize + 0x400e9920 0x5 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + 0x400e9920 esp_clk_tree_initialize + *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_rst_en_mask .literal.periph_ll_reset .literal.periph_ll_wifi_module_disable_clk_set_rst .literal.periph_ll_wifi_module_enable_clk_clear_rst .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_rst_en_mask .text.periph_ll_reset .text.periph_ll_wifi_module_disable_clk_set_rst .text.periph_ll_wifi_module_enable_clk_clear_rst .text.periph_module_disable .text.periph_module_enable) + *fill* 0x400e9925 0x3 + .text.periph_ll_get_clk_en_mask + 0x400e9928 0xaa esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + *fill* 0x400e99d2 0x2 + .text.periph_ll_get_rst_en_mask + 0x400e99d4 0x86 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + *fill* 0x400e9a5a 0x2 + .text.periph_ll_enable_clk_clear_rst + 0x400e9a5c 0x51 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x5d (size before relaxing) + *fill* 0x400e9aad 0x3 + .text.periph_module_enable + 0x400e9ab0 0x6f esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x86 (size before relaxing) + 0x400e9ab0 periph_module_enable + *fill* 0x400e9b1f 0x0 + *fill* 0x400e9b1f 0x0 + *fill* 0x400e9b1f 0x0 + *fill* 0x400e9b1f 0x0 + *libesp_hw_support.a:regi2c_ctrl.*(.literal.regi2c_saradc_disable .literal.regi2c_saradc_enable .text .text.regi2c_saradc_disable .text.regi2c_saradc_enable) + *libesp_hw_support.a:rtc_init.*(.literal.rtc_init .text .text.rtc_init) + *fill* 0x400e9b1f 0x1 + .text.rtc_init + 0x400e9b20 0x3ab esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x3cf (size before relaxing) + 0x400e9b20 rtc_init + *fill* 0x400e9ecb 0x0 + *libesp_hw_support.a:rtc_sleep.*(.literal.rtc_deep_sleep_start .literal.rtc_sleep_get_default_config .literal.rtc_sleep_init .literal.rtc_sleep_low_init .text .text.rtc_deep_sleep_start .text.rtc_sleep_get_default_config .text.rtc_sleep_init .text.rtc_sleep_low_init) + *libesp_ringbuf.a:ringbuf.*(.literal.prvGetFreeSize .literal.prvInitializeNewRingbuffer .literal.prvReceiveGeneric .literal.prvSendAcquireGeneric .literal.vRingbufferDelete .literal.vRingbufferDeleteWithCaps .literal.vRingbufferGetInfo .literal.vRingbufferReset .literal.vRingbufferReturnItem .literal.xRingbufferAddToQueueSetRead .literal.xRingbufferCreate .literal.xRingbufferCreateNoSplit .literal.xRingbufferCreateStatic .literal.xRingbufferCreateWithCaps .literal.xRingbufferGetCurFreeSize .literal.xRingbufferGetMaxItemSize .literal.xRingbufferGetStaticBuffer .literal.xRingbufferPrintInfo .literal.xRingbufferReceive .literal.xRingbufferReceiveSplit .literal.xRingbufferReceiveUpTo .literal.xRingbufferRemoveFromQueueSetRead .literal.xRingbufferSend .literal.xRingbufferSendAcquire .literal.xRingbufferSendComplete .text .text.prvGetCurMaxSizeAllowSplit .text.prvGetCurMaxSizeByteBuf .text.prvGetCurMaxSizeNoSplit .text.prvGetFreeSize .text.prvInitializeNewRingbuffer .text.prvReceiveGeneric .text.prvSendAcquireGeneric .text.vRingbufferDelete .text.vRingbufferDeleteWithCaps .text.vRingbufferGetInfo .text.vRingbufferReset .text.vRingbufferReturnItem .text.xRingbufferAddToQueueSetRead .text.xRingbufferCreate .text.xRingbufferCreateNoSplit .text.xRingbufferCreateStatic .text.xRingbufferCreateWithCaps .text.xRingbufferGetCurFreeSize .text.xRingbufferGetMaxItemSize .text.xRingbufferGetStaticBuffer .text.xRingbufferPrintInfo .text.xRingbufferReceive .text.xRingbufferReceiveSplit .text.xRingbufferReceiveUpTo .text.xRingbufferRemoveFromQueueSetRead .text.xRingbufferSend .text.xRingbufferSendAcquire .text.xRingbufferSendComplete) + *fill* 0x400e9ecb 0x1 + .text.prvInitializeNewRingbuffer + 0x400e9ecc 0xc1 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0xc9 (size before relaxing) + *fill* 0x400e9f8d 0x3 + .text.prvSendAcquireGeneric + 0x400e9f90 0xd6 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0xee (size before relaxing) + *fill* 0x400ea066 0x2 + .text.prvReceiveGeneric + 0x400ea068 0xf7 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x107 (size before relaxing) + *fill* 0x400ea15f 0x1 + .text.xRingbufferCreateStatic + 0x400ea160 0x85 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x89 (size before relaxing) + 0x400ea160 xRingbufferCreateStatic + *fill* 0x400ea1e5 0x3 + .text.xRingbufferSend + 0x400ea1e8 0x65 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x400ea1e8 xRingbufferSend + *fill* 0x400ea24d 0x3 + .text.xRingbufferReceiveUpTo + 0x400ea250 0x5a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x62 (size before relaxing) + 0x400ea250 xRingbufferReceiveUpTo + *fill* 0x400ea2aa 0x2 + .text.vRingbufferReturnItem + 0x400ea2ac 0x5c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x6e (size before relaxing) + 0x400ea2ac vRingbufferReturnItem + *fill* 0x400ea308 0x0 + .text.vRingbufferDelete + 0x400ea308 0x27 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x2f (size before relaxing) + 0x400ea308 vRingbufferDelete + *fill* 0x400ea32f 0x1 + .text.xRingbufferGetCurFreeSize + 0x400ea330 0x30 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x38 (size before relaxing) + 0x400ea330 xRingbufferGetCurFreeSize + .text.xRingbufferGetStaticBuffer + 0x400ea360 0x3a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x400ea360 xRingbufferGetStaticBuffer + *fill* 0x400ea39a 0x2 + .text.xRingbufferCreateWithCaps + 0x400ea39c 0x52 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x5e (size before relaxing) + 0x400ea39c xRingbufferCreateWithCaps + *fill* 0x400ea3ee 0x2 + .text.vRingbufferDeleteWithCaps + 0x400ea3f0 0x38 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x44 (size before relaxing) + 0x400ea3f0 vRingbufferDeleteWithCaps + *fill* 0x400ea428 0x0 + .text.prvGetCurMaxSizeNoSplit + 0x400ea428 0x40 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvGetCurMaxSizeAllowSplit + 0x400ea468 0x51 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x400ea4b9 0x3 + .text.prvGetCurMaxSizeByteBuf + 0x400ea4bc 0x20 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x400ea4dc 0x0 + *fill* 0x400ea4dc 0x0 + *fill* 0x400ea4dc 0x0 + *fill* 0x400ea4dc 0x0 + *fill* 0x400ea4dc 0x0 + *fill* 0x400ea4dc 0x0 + *fill* 0x400ea4dc 0x0 + *fill* 0x400ea4dc 0x0 + *fill* 0x400ea4dc 0x0 + *fill* 0x400ea4dc 0x0 + *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) + *libesp_system.a:freertos_hooks.*(.literal.esp_deregister_freertos_idle_hook .literal.esp_deregister_freertos_idle_hook_for_cpu .literal.esp_deregister_freertos_tick_hook .literal.esp_deregister_freertos_tick_hook_for_cpu .literal.esp_register_freertos_idle_hook .literal.esp_register_freertos_idle_hook_for_cpu .literal.esp_register_freertos_tick_hook .literal.esp_register_freertos_tick_hook_for_cpu .literal.esp_vApplicationIdleHook .text .text.esp_deregister_freertos_idle_hook .text.esp_deregister_freertos_idle_hook_for_cpu .text.esp_deregister_freertos_tick_hook .text.esp_deregister_freertos_tick_hook_for_cpu .text.esp_register_freertos_idle_hook .text.esp_register_freertos_idle_hook_for_cpu .text.esp_register_freertos_tick_hook .text.esp_register_freertos_tick_hook_for_cpu .text.esp_vApplicationIdleHook) + .text.esp_vApplicationIdleHook + 0x400ea4dc 0x30 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x33 (size before relaxing) + 0x400ea4dc esp_vApplicationIdleHook + *fill* 0x400ea50c 0x0 + .text.esp_register_freertos_idle_hook_for_cpu + 0x400ea50c 0x51 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x59 (size before relaxing) + 0x400ea50c esp_register_freertos_idle_hook_for_cpu + *fill* 0x400ea55d 0x3 + .text.esp_register_freertos_tick_hook_for_cpu + 0x400ea560 0x4d esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x55 (size before relaxing) + 0x400ea560 esp_register_freertos_tick_hook_for_cpu + *fill* 0x400ea5ad 0x3 + .text.esp_deregister_freertos_idle_hook_for_cpu + 0x400ea5b0 0x3c esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x40 (size before relaxing) + 0x400ea5b0 esp_deregister_freertos_idle_hook_for_cpu + *fill* 0x400ea5ec 0x0 + *fill* 0x400ea5ec 0x0 + *fill* 0x400ea5ec 0x0 + *libesp_system.a:panic.*(.literal.disable_all_wdts .literal.esp_panic_handler .literal.esp_panic_handler_disable_timg_wdts .literal.esp_panic_handler_enable_rtc_wdt .literal.esp_panic_handler_feed_wdts .literal.esp_panic_handler_increment_entry_count .literal.panic_print_char .literal.panic_print_char_uart .literal.panic_print_dec .literal.panic_print_hex .literal.panic_print_str .literal.print_abort_details .text .text.disable_all_wdts .text.esp_panic_handler .text.esp_panic_handler_disable_timg_wdts .text.esp_panic_handler_enable_rtc_wdt .text.esp_panic_handler_feed_wdts .text.esp_panic_handler_increment_entry_count .text.esp_reset_reason_get_hint .text.esp_reset_reason_set_hint .text.panic_print_char .text.panic_print_char_uart .text.panic_print_dec .text.panic_print_hex .text.panic_print_str .text.print_abort_details) + .text.panic_print_char_uart + 0x400ea5ec 0x38 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .text.panic_print_char + 0x400ea624 0xb esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0xe (size before relaxing) + 0x400ea624 panic_print_char + *fill* 0x400ea62f 0x1 + .text.panic_print_str + 0x400ea630 0x1e esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x400ea630 panic_print_str + *fill* 0x400ea64e 0x2 + .text.print_abort_details + 0x400ea650 0xd esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x10 (size before relaxing) + *fill* 0x400ea65d 0x3 + .text.panic_print_hex + 0x400ea660 0x2c esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x2f (size before relaxing) + 0x400ea660 panic_print_hex + *fill* 0x400ea68c 0x0 + .text.panic_print_dec + 0x400ea68c 0x40 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x46 (size before relaxing) + 0x400ea68c panic_print_dec + *fill* 0x400ea6cc 0x0 + .text.esp_panic_handler_disable_timg_wdts + 0x400ea6cc 0x3e esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x4e (size before relaxing) + 0x400ea6cc esp_panic_handler_disable_timg_wdts + *fill* 0x400ea70a 0x2 + .text.disable_all_wdts + 0x400ea70c 0x1a esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x26 (size before relaxing) + *fill* 0x400ea726 0x2 + .text.esp_panic_handler_enable_rtc_wdt + 0x400ea728 0x42 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x56 (size before relaxing) + 0x400ea728 esp_panic_handler_enable_rtc_wdt + *fill* 0x400ea76a 0x2 + .text.esp_panic_handler_feed_wdts + 0x400ea76c 0x76 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x9a (size before relaxing) + 0x400ea76c esp_panic_handler_feed_wdts + *fill* 0x400ea7e2 0x2 + .text.esp_panic_handler_increment_entry_count + 0x400ea7e4 0x25 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x29 (size before relaxing) + 0x400ea7e4 esp_panic_handler_increment_entry_count + *fill* 0x400ea809 0x3 + .text.esp_panic_handler + 0x400ea80c 0x12a esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x178 (size before relaxing) + 0x400ea80c esp_panic_handler + *fill* 0x400ea936 0x0 + *fill* 0x400ea936 0x0 + *fill* 0x400ea936 0x0 + *fill* 0x400ea936 0x0 + *fill* 0x400ea936 0x0 + *fill* 0x400ea936 0x0 + *fill* 0x400ea936 0x0 + *fill* 0x400ea936 0x0 + *fill* 0x400ea936 0x2 + .text.esp_reset_reason_set_hint + 0x400ea938 0x5 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x400ea938 esp_reset_reason_set_hint + *fill* 0x400ea93d 0x3 + .text.esp_reset_reason_get_hint + 0x400ea940 0x7 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x400ea940 esp_reset_reason_get_hint + *fill* 0x400ea947 0x0 + *libesp_system.a:reset_reason.*(.literal.esp_reset_reason .literal.esp_reset_reason_clear_hint .literal.esp_reset_reason_get_hint .literal.esp_reset_reason_init .text .text.esp_reset_reason .text.esp_reset_reason_clear_hint .text.esp_reset_reason_get_hint .text.esp_reset_reason_init .text.get_reset_reason) + *libesp_system.a:system_internal.*(.text) + *libesp_system.a:system_time.*(.text) + *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_delete_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_flexible_period_get_wrapper .text.coex_schm_flexible_period_set_wrapper .text.coex_schm_get_phase_by_idx_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_delete_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) + *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) + *libfreertos.a:event_groups.*(.literal.vEventGroupClearBitsCallback .literal.vEventGroupDelete .literal.vEventGroupSetBitsCallback .literal.xEventGroupClearBits .literal.xEventGroupCreate .literal.xEventGroupCreateStatic .literal.xEventGroupGetStaticBuffer .literal.xEventGroupSetBits .literal.xEventGroupSync .literal.xEventGroupWaitBits .text .text.prvTestWaitCondition .text.vEventGroupClearBitsCallback .text.vEventGroupDelete .text.vEventGroupSetBitsCallback .text.xEventGroupClearBits .text.xEventGroupCreate .text.xEventGroupCreateStatic .text.xEventGroupGetStaticBuffer .text.xEventGroupSetBits .text.xEventGroupSync .text.xEventGroupWaitBits) + *libfreertos.a:list.*(.text .text.vListInitialise .text.vListInitialiseItem .text.vListInsert) + *fill* 0x400ea947 0x1 + .text.vListInitialise + 0x400ea948 0x24 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x400ea948 vListInitialise + .text.vListInitialiseItem + 0x400ea96c 0xc esp-idf/freertos/libfreertos.a(list.c.obj) + 0x400ea96c vListInitialiseItem + .text.vListInsert + 0x400ea978 0x5c esp-idf/freertos/libfreertos.a(list.c.obj) + 0x400ea978 vListInsert + *libfreertos.a:port.*(.literal.pxPortInitialiseStack .literal.vApplicationStackOverflowHook .literal.vPortCleanUpCoprocArea .literal.vPortEndScheduler .literal.vPortExitCriticalCompliance .literal.vPortTCBPreDeleteHook .literal.vPortTLSPointersDelCb .literal.vPortTaskWrapper .literal.xPortEnterCriticalTimeoutCompliance .text .text.pxPortInitialiseStack .text.vApplicationStackOverflowHook .text.vPortCleanUpCoprocArea .text.vPortEndScheduler .text.vPortExitCriticalCompliance .text.vPortTCBPreDeleteHook .text.vPortTLSPointersDelCb .text.vPortTaskWrapper .text.xPortEnterCriticalTimeoutCompliance .text.xPortGetTickRateHz) + .text.vPortTaskWrapper + 0x400ea9d4 0x26 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x32 (size before relaxing) + *fill* 0x400ea9fa 0x2 + .text.vPortTLSPointersDelCb + 0x400ea9fc 0x54 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x58 (size before relaxing) + .text.vPortCleanUpCoprocArea + 0x400eaa50 0x16 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x1a (size before relaxing) + *fill* 0x400eaa66 0x2 + .text.pxPortInitialiseStack + 0x400eaa68 0x9d esp-idf/freertos/libfreertos.a(port.c.obj) + 0xa1 (size before relaxing) + 0x400eaa68 pxPortInitialiseStack + *fill* 0x400eab05 0x3 + .text.vApplicationStackOverflowHook + 0x400eab08 0x3d esp-idf/freertos/libfreertos.a(port.c.obj) + 0x400eab08 vApplicationStackOverflowHook + *fill* 0x400eab45 0x3 + .text.vPortTCBPreDeleteHook + 0x400eab48 0x12 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x16 (size before relaxing) + 0x400eab48 vPortTCBPreDeleteHook + *fill* 0x400eab5a 0x0 + *fill* 0x400eab5a 0x0 + *fill* 0x400eab5a 0x0 + *fill* 0x400eab5a 0x0 + *libfreertos.a:queue.*(.literal.prvInitialiseMutex .literal.prvInitialiseNewQueue .literal.uxQueueMessagesWaiting .literal.uxQueueSpacesAvailable .literal.vQueueDelete .literal.vQueueWaitForMessageRestricted .literal.xQueueAddToSet .literal.xQueueCreateCountingSemaphore .literal.xQueueCreateCountingSemaphoreStatic .literal.xQueueCreateMutex .literal.xQueueCreateMutexStatic .literal.xQueueCreateSet .literal.xQueueGenericCreate .literal.xQueueGenericCreateStatic .literal.xQueueGenericGetStaticBuffers .literal.xQueueGenericReset .literal.xQueueGenericSend .literal.xQueueGetMutexHolder .literal.xQueueGiveMutexRecursive .literal.xQueuePeek .literal.xQueueReceive .literal.xQueueRemoveFromSet .literal.xQueueSelectFromSet .literal.xQueueSemaphoreTake .literal.xQueueTakeMutexRecursive .text .text.prvGetDisinheritPriorityAfterTimeout .text.prvInitialiseMutex .text.prvInitialiseNewQueue .text.uxQueueMessagesWaiting .text.uxQueueSpacesAvailable .text.vQueueDelete .text.vQueueWaitForMessageRestricted .text.xQueueAddToSet .text.xQueueCreateCountingSemaphore .text.xQueueCreateCountingSemaphoreStatic .text.xQueueCreateMutex .text.xQueueCreateMutexStatic .text.xQueueCreateSet .text.xQueueGenericCreate .text.xQueueGenericCreateStatic .text.xQueueGenericGetStaticBuffers .text.xQueueGenericReset .text.xQueueGenericSend .text.xQueueGetMutexHolder .text.xQueueGiveMutexRecursive .text.xQueuePeek .text.xQueueReceive .text.xQueueRemoveFromSet .text.xQueueSelectFromSet .text.xQueueSemaphoreTake .text.xQueueTakeMutexRecursive) + *fill* 0x400eab5a 0x2 + .text.xQueueGenericReset + 0x400eab5c 0xb3 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xc7 (size before relaxing) + 0x400eab5c xQueueGenericReset + *fill* 0x400eac0f 0x1 + .text.prvInitialiseNewQueue + 0x400eac10 0x1f esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x23 (size before relaxing) + *fill* 0x400eac2f 0x1 + .text.xQueueGenericCreateStatic + 0x400eac30 0x8e esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x9a (size before relaxing) + 0x400eac30 xQueueGenericCreateStatic + *fill* 0x400eacbe 0x2 + .text.xQueueGenericGetStaticBuffers + 0x400eacc0 0x40 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x44 (size before relaxing) + 0x400eacc0 xQueueGenericGetStaticBuffers + .text.xQueueGenericCreate + 0x400ead00 0x54 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x5c (size before relaxing) + 0x400ead00 xQueueGenericCreate + .text.xQueueGetMutexHolder + 0x400ead54 0x36 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x3a (size before relaxing) + 0x400ead54 xQueueGetMutexHolder + *fill* 0x400ead8a 0x2 + .text.xQueueCreateCountingSemaphoreStatic + 0x400ead8c 0x44 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x400ead8c xQueueCreateCountingSemaphoreStatic + .text.xQueueGenericSend + 0x400eadd0 0x13c esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x16c (size before relaxing) + 0x400eadd0 xQueueGenericSend + .text.prvInitialiseMutex + 0x400eaf0c 0x3e esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x400eaf4a 0x2 + .text.xQueueCreateMutex + 0x400eaf4c 0x16 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x1a (size before relaxing) + 0x400eaf4c xQueueCreateMutex + *fill* 0x400eaf62 0x2 + .text.xQueueCreateMutexStatic + 0x400eaf64 0x1a esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x1e (size before relaxing) + 0x400eaf64 xQueueCreateMutexStatic + *fill* 0x400eaf7e 0x2 + .text.xQueueGiveMutexRecursive + 0x400eaf80 0x40 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x48 (size before relaxing) + 0x400eaf80 xQueueGiveMutexRecursive + .text.xQueueSemaphoreTake + 0x400eafc0 0x108 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x134 (size before relaxing) + 0x400eafc0 xQueueSemaphoreTake + .text.xQueueTakeMutexRecursive + 0x400eb0c8 0x40 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x44 (size before relaxing) + 0x400eb0c8 xQueueTakeMutexRecursive + .text.uxQueueSpacesAvailable + 0x400eb108 0x32 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x3a (size before relaxing) + 0x400eb108 uxQueueSpacesAvailable + *fill* 0x400eb13a 0x2 + .text.vQueueDelete + 0x400eb13c 0x24 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x27 (size before relaxing) + 0x400eb13c vQueueDelete + *fill* 0x400eb160 0x0 + .text.prvGetDisinheritPriorityAfterTimeout + 0x400eb160 0x1e esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x400eb17e 0x0 + *fill* 0x400eb17e 0x0 + *fill* 0x400eb17e 0x0 + *fill* 0x400eb17e 0x0 + *fill* 0x400eb17e 0x0 + *fill* 0x400eb17e 0x0 + *fill* 0x400eb17e 0x0 + *fill* 0x400eb17e 0x0 + *fill* 0x400eb17e 0x0 + *libfreertos.a:stream_buffer.*(.literal.prvInitialiseNewStreamBuffer .literal.prvReadBytesFromBuffer .literal.prvWriteBytesToBuffer .literal.vStreamBufferDelete .literal.xStreamBufferBytesAvailable .literal.xStreamBufferGenericCreate .literal.xStreamBufferGenericCreateStatic .literal.xStreamBufferGetStaticBuffers .literal.xStreamBufferIsEmpty .literal.xStreamBufferIsFull .literal.xStreamBufferNextMessageLengthBytes .literal.xStreamBufferReceive .literal.xStreamBufferReset .literal.xStreamBufferSend .literal.xStreamBufferSetTriggerLevel .literal.xStreamBufferSpacesAvailable .text .text.prvInitialiseNewStreamBuffer .text.prvReadBytesFromBuffer .text.prvWriteBytesToBuffer .text.vStreamBufferDelete .text.xStreamBufferBytesAvailable .text.xStreamBufferGenericCreate .text.xStreamBufferGenericCreateStatic .text.xStreamBufferGetStaticBuffers .text.xStreamBufferIsEmpty .text.xStreamBufferIsFull .text.xStreamBufferNextMessageLengthBytes .text.xStreamBufferReceive .text.xStreamBufferReset .text.xStreamBufferSend .text.xStreamBufferSetTriggerLevel .text.xStreamBufferSpacesAvailable) + *libfreertos.a:tasks.*(.literal.eTaskGetState .literal.pcTaskGetName .literal.prvAddCurrentTaskToDelayedList .literal.prvAddNewTaskToReadyList .literal.prvCheckTasksWaitingTermination .literal.prvCreateIdleTasks .literal.prvDeleteTCB .literal.prvIdleTask .literal.prvInitialiseNewTask .literal.prvInitialiseTaskLists .literal.prvReleaseKernelLock .literal.prvTakeKernelLock .literal.prvTaskPriorityRaise .literal.prvTaskPriorityRestore .literal.pvTaskGetCurrentTCBForCore .literal.pvTaskGetThreadLocalStoragePointer .literal.pvTaskIncrementMutexHeldCount .literal.pxGetTaskListByIndex .literal.pxTaskGetStackStart .literal.ulTaskGenericNotifyTake .literal.ulTaskGenericNotifyValueClear .literal.uxTaskGetNumberOfTasks .literal.uxTaskGetSnapshotAll .literal.uxTaskGetStackHighWaterMark .literal.uxTaskGetStackHighWaterMark2 .literal.uxTaskPriorityGet .literal.uxTaskResetEventItemValue .literal.vTaskDelay .literal.vTaskDelete .literal.vTaskEndScheduler .literal.vTaskInternalSetTimeOutState .literal.vTaskMissedYield .literal.vTaskPlaceOnEventList .literal.vTaskPlaceOnEventListRestricted .literal.vTaskPlaceOnUnorderedEventList .literal.vTaskPriorityDisinheritAfterTimeout .literal.vTaskPrioritySet .literal.vTaskRemoveFromUnorderedEventList .literal.vTaskResume .literal.vTaskSetThreadLocalStoragePointer .literal.vTaskSetThreadLocalStoragePointerAndDelCallback .literal.vTaskSetTimeOutState .literal.vTaskStartScheduler .literal.vTaskSuspend .literal.vTaskSuspendAll .literal.xTaskAbortDelay .literal.xTaskCatchUpTicks .literal.xTaskCheckForTimeOut .literal.xTaskCreatePinnedToCore .literal.xTaskCreateStaticPinnedToCore .literal.xTaskDelayUntil .literal.xTaskGenericNotify .literal.xTaskGenericNotifyStateClear .literal.xTaskGenericNotifyWait .literal.xTaskGetCoreID .literal.xTaskGetCurrentTaskHandle .literal.xTaskGetCurrentTaskHandleForCore .literal.xTaskGetHandle .literal.xTaskGetIdleTaskHandle .literal.xTaskGetIdleTaskHandleForCore .literal.xTaskGetNext .literal.xTaskGetStackStart .literal.xTaskGetStaticBuffers .literal.xTaskPriorityDisinherit .literal.xTaskPriorityInherit .literal.xTaskResumeAll .text .text.eTaskGetState .text.pcTaskGetName .text.prvAddCurrentTaskToDelayedList .text.prvAddNewTaskToReadyList .text.prvCheckTasksWaitingTermination .text.prvCreateIdleTasks .text.prvDeleteTCB .text.prvIdleTask .text.prvInitialiseNewTask .text.prvInitialiseTaskLists .text.prvReleaseKernelLock .text.prvSearchForNameWithinSingleList .text.prvTakeKernelLock .text.prvTaskCheckFreeStackSpace .text.prvTaskPriorityRaise .text.prvTaskPriorityRestore .text.pvTaskGetCurrentTCBForCore .text.pvTaskGetThreadLocalStoragePointer .text.pvTaskIncrementMutexHeldCount .text.pxGetTaskListByIndex .text.pxTaskGetStackStart .text.ulTaskGenericNotifyTake .text.ulTaskGenericNotifyValueClear .text.uxTaskGetNumberOfTasks .text.uxTaskGetSnapshotAll .text.uxTaskGetStackHighWaterMark .text.uxTaskGetStackHighWaterMark2 .text.uxTaskPriorityGet .text.uxTaskResetEventItemValue .text.vTaskDelay .text.vTaskDelete .text.vTaskEndScheduler .text.vTaskInternalSetTimeOutState .text.vTaskMissedYield .text.vTaskPlaceOnEventList .text.vTaskPlaceOnEventListRestricted .text.vTaskPlaceOnUnorderedEventList .text.vTaskPriorityDisinheritAfterTimeout .text.vTaskPrioritySet .text.vTaskRemoveFromUnorderedEventList .text.vTaskResume .text.vTaskSetThreadLocalStoragePointer .text.vTaskSetThreadLocalStoragePointerAndDelCallback .text.vTaskSetTimeOutState .text.vTaskStartScheduler .text.vTaskSuspend .text.vTaskSuspendAll .text.xTaskAbortDelay .text.xTaskCatchUpTicks .text.xTaskCheckForTimeOut .text.xTaskCreatePinnedToCore .text.xTaskCreateStaticPinnedToCore .text.xTaskDelayUntil .text.xTaskGenericNotify .text.xTaskGenericNotifyStateClear .text.xTaskGenericNotifyWait .text.xTaskGetCoreID .text.xTaskGetCurrentTaskHandle .text.xTaskGetCurrentTaskHandleForCore .text.xTaskGetHandle .text.xTaskGetIdleTaskHandle .text.xTaskGetIdleTaskHandleForCore .text.xTaskGetNext .text.xTaskGetStackStart .text.xTaskGetStaticBuffers .text.xTaskPriorityDisinherit .text.xTaskPriorityInherit .text.xTaskResumeAll .text.xTimerCreateTimerTask) + *fill* 0x400eb17e 0x2 + .text.prvDeleteTCB + 0x400eb180 0x3c esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4b (size before relaxing) + *fill* 0x400eb1bc 0x0 + .text.prvCheckTasksWaitingTermination + 0x400eb1bc 0x96 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x9e (size before relaxing) + *fill* 0x400eb252 0x2 + .text.prvAddCurrentTaskToDelayedList + 0x400eb254 0x116 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x11e (size before relaxing) + *fill* 0x400eb36a 0x2 + .text.prvIdleTask + 0x400eb36c 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x12 (size before relaxing) + *fill* 0x400eb378 0x0 + .text.prvInitialiseNewTask + 0x400eb378 0xa0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xa8 (size before relaxing) + .text.prvInitialiseTaskLists + 0x400eb418 0x65 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x75 (size before relaxing) + *fill* 0x400eb47d 0x3 + .text.prvAddNewTaskToReadyList + 0x400eb480 0x1a4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x1b3 (size before relaxing) + *fill* 0x400eb624 0x0 + .text.vTaskSuspendAll + 0x400eb624 0x2e esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x32 (size before relaxing) + 0x400eb624 vTaskSuspendAll + *fill* 0x400eb652 0x2 + .text.vTaskPlaceOnEventList + 0x400eb654 0x47 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x57 (size before relaxing) + 0x400eb654 vTaskPlaceOnEventList + *fill* 0x400eb69b 0x1 + .text.vTaskInternalSetTimeOutState + 0x400eb69c 0x19 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x400eb69c vTaskInternalSetTimeOutState + *fill* 0x400eb6b5 0x3 + .text.xTaskCheckForTimeOut + 0x400eb6b8 0xb3 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xbe (size before relaxing) + 0x400eb6b8 xTaskCheckForTimeOut + *fill* 0x400eb76b 0x1 + .text.xTaskGetCurrentTaskHandle + 0x400eb76c 0x1f esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x400eb76c xTaskGetCurrentTaskHandle + *fill* 0x400eb78b 0x1 + .text.uxTaskPriorityGet + 0x400eb78c 0x1f esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x26 (size before relaxing) + 0x400eb78c uxTaskPriorityGet + *fill* 0x400eb7ab 0x1 + .text.vTaskPrioritySet + 0x400eb7ac 0x173 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x187 (size before relaxing) + 0x400eb7ac vTaskPrioritySet + *fill* 0x400eb91f 0x1 + .text.pcTaskGetName + 0x400eb920 0x22 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x29 (size before relaxing) + 0x400eb920 pcTaskGetName + *fill* 0x400eb942 0x2 + .text.pvTaskGetThreadLocalStoragePointer + 0x400eb944 0x1c esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x20 (size before relaxing) + 0x400eb944 pvTaskGetThreadLocalStoragePointer + .text.vTaskDelete + 0x400eb960 0xf4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x117 (size before relaxing) + 0x400eb960 vTaskDelete + *fill* 0x400eba54 0x0 + .text.vTaskDelay + 0x400eba54 0x3b esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4f (size before relaxing) + 0x400eba54 vTaskDelay + *fill* 0x400eba8f 0x1 + .text.xTaskResumeAll + 0x400eba90 0x1e4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x1f7 (size before relaxing) + 0x400eba90 xTaskResumeAll + *fill* 0x400ebc74 0x0 + .text.xTaskPriorityInherit + 0x400ebc74 0x110 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x117 (size before relaxing) + 0x400ebc74 xTaskPriorityInherit + *fill* 0x400ebd84 0x0 + .text.xTaskPriorityDisinherit + 0x400ebd84 0xe8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xf7 (size before relaxing) + 0x400ebd84 xTaskPriorityDisinherit + *fill* 0x400ebe6c 0x0 + .text.vTaskPriorityDisinheritAfterTimeout + 0x400ebe6c 0xf8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xff (size before relaxing) + 0x400ebe6c vTaskPriorityDisinheritAfterTimeout + *fill* 0x400ebf64 0x0 + .text.pvTaskIncrementMutexHeldCount + 0x400ebf64 0x47 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4a (size before relaxing) + 0x400ebf64 pvTaskIncrementMutexHeldCount + *fill* 0x400ebfab 0x1 + .text.ulTaskGenericNotifyTake + 0x400ebfac 0xea esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xfe (size before relaxing) + 0x400ebfac ulTaskGenericNotifyTake + *fill* 0x400ec096 0x2 + .text.xTaskGenericNotify + 0x400ec098 0x1cf esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x1e2 (size before relaxing) + 0x400ec098 xTaskGenericNotify + *fill* 0x400ec267 0x1 + .text.xTaskCreatePinnedToCore + 0x400ec268 0x8c esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xa0 (size before relaxing) + 0x400ec268 xTaskCreatePinnedToCore + .text.xTaskCreateStaticPinnedToCore + 0x400ec2f4 0xdc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xf0 (size before relaxing) + 0x400ec2f4 xTaskCreateStaticPinnedToCore + .text.prvCreateIdleTasks + 0x400ec3d0 0x8d esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x91 (size before relaxing) + *fill* 0x400ec45d 0x3 + .text.vTaskStartScheduler + 0x400ec460 0x61 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x74 (size before relaxing) + 0x400ec460 vTaskStartScheduler + *fill* 0x400ec4c1 0x3 + .text.xTaskGetCoreID + 0x400ec4c4 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x13 (size before relaxing) + 0x400ec4c4 xTaskGetCoreID + *fill* 0x400ec4d4 0x0 + .text.xTaskGetIdleTaskHandleForCore + 0x400ec4d4 0x38 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3c (size before relaxing) + 0x400ec4d4 xTaskGetIdleTaskHandleForCore + .text.xTaskGetCurrentTaskHandleForCore + 0x400ec50c 0x2b esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x400ec50c xTaskGetCurrentTaskHandleForCore + *fill* 0x400ec537 0x1 + .text.vTaskSetThreadLocalStoragePointerAndDelCallback + 0x400ec538 0x33 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x37 (size before relaxing) + 0x400ec538 vTaskSetThreadLocalStoragePointerAndDelCallback + *fill* 0x400ec56b 0x0 + *fill* 0x400ec56b 0x0 + *fill* 0x400ec56b 0x0 + *fill* 0x400ec56b 0x0 + *fill* 0x400ec56b 0x0 + *fill* 0x400ec56b 0x0 + *fill* 0x400ec56b 0x0 + *fill* 0x400ec56b 0x0 + *fill* 0x400ec56b 0x0 + *fill* 0x400ec56b 0x0 + *fill* 0x400ec56b 0x0 + *fill* 0x400ec56b 0x0 + *fill* 0x400ec56b 0x0 + *fill* 0x400ec56b 0x0 + *fill* 0x400ec56b 0x0 + *fill* 0x400ec56b 0x0 + *fill* 0x400ec56b 0x0 + *fill* 0x400ec56b 0x0 + *fill* 0x400ec56b 0x0 + *fill* 0x400ec56b 0x0 + *fill* 0x400ec56b 0x0 + *fill* 0x400ec56b 0x0 + *fill* 0x400ec56b 0x0 + *fill* 0x400ec56b 0x0 + *fill* 0x400ec56b 0x1 + .text.xTimerCreateTimerTask + 0x400ec56c 0x7 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x400ec56c xTimerCreateTimerTask + *fill* 0x400ec573 0x0 + *fill* 0x400ec573 0x0 + *fill* 0x400ec573 0x0 + *libfreertos.a:timers.*(.literal.pcTimerGetName .literal.prvCheckForValidListAndQueue .literal.prvGetNextExpireTime .literal.prvInitialiseNewTimer .literal.prvInsertTimerInActiveList .literal.prvProcessExpiredTimer .literal.prvProcessReceivedCommands .literal.prvProcessTimerOrBlockTask .literal.prvReloadTimer .literal.prvSampleTimeNow .literal.prvSwitchTimerLists .literal.prvTimerTask .literal.pvTimerGetTimerID .literal.uxTimerGetReloadMode .literal.vTimerSetReloadMode .literal.vTimerSetTimerID .literal.xTimerCreate .literal.xTimerCreateStatic .literal.xTimerCreateTimerTask .literal.xTimerGetExpiryTime .literal.xTimerGetPeriod .literal.xTimerGetReloadMode .literal.xTimerGetStaticBuffer .literal.xTimerGetTimerDaemonTaskHandle .literal.xTimerIsTimerActive .literal.xTimerPendFunctionCall .text .text.pcTimerGetName .text.prvCheckForValidListAndQueue .text.prvGetNextExpireTime .text.prvInitialiseNewTimer .text.prvInsertTimerInActiveList .text.prvProcessExpiredTimer .text.prvProcessReceivedCommands .text.prvProcessTimerOrBlockTask .text.prvReloadTimer .text.prvSampleTimeNow .text.prvSwitchTimerLists .text.prvTimerTask .text.pvTimerGetTimerID .text.uxTimerGetReloadMode .text.vTimerSetReloadMode .text.vTimerSetTimerID .text.xTimerCreate .text.xTimerCreateStatic .text.xTimerCreateTimerTask .text.xTimerGetExpiryTime .text.xTimerGetPeriod .text.xTimerGetReloadMode .text.xTimerGetStaticBuffer .text.xTimerGetTimerDaemonTaskHandle .text.xTimerIsTimerActive .text.xTimerPendFunctionCall) + *libheap.a:multi_heap.*(.literal.multi_heap_check .literal.multi_heap_dump .literal.multi_heap_dump_tlsf .literal.multi_heap_find_containing_block_impl .literal.multi_heap_get_info_impl .literal.multi_heap_register_impl .literal.multi_heap_reset_minimum_free_bytes .literal.multi_heap_restore_minimum_free_bytes .literal.multi_heap_walk .text .text.multi_heap_check .text.multi_heap_dump .text.multi_heap_dump_tlsf .text.multi_heap_find_containing_block_impl .text.multi_heap_free_size_impl .text.multi_heap_get_info_impl .text.multi_heap_get_info_tlsf .text.multi_heap_minimum_free_size_impl .text.multi_heap_register_impl .text.multi_heap_reset_minimum_free_bytes .text.multi_heap_restore_minimum_free_bytes .text.multi_heap_walk) + *fill* 0x400ec573 0x1 + .text.multi_heap_register_impl + 0x400ec574 0x48 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x50 (size before relaxing) + 0x400ec574 multi_heap_register + 0x400ec574 multi_heap_register_impl + .text.multi_heap_get_info_impl + 0x400ec5bc 0x5c esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x78 (size before relaxing) + 0x400ec5bc multi_heap_get_info_impl + 0x400ec5bc multi_heap_get_info + *fill* 0x400ec618 0x0 + .text.multi_heap_get_info_tlsf + 0x400ec618 0x26 esp-idf/heap/libheap.a(multi_heap.c.obj) + *fill* 0x400ec63e 0x2 + .text.multi_heap_free_size_impl + 0x400ec640 0xa esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x400ec640 multi_heap_free_size + 0x400ec640 multi_heap_free_size_impl + *fill* 0x400ec64a 0x0 + *libheap.a:tlsf.*(.literal.control_construct .literal.default_walker .literal.integrity_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_malloc_addr .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_find_containing_block .text.tlsf_fit_size .text.tlsf_malloc_addr .text.tlsf_pool_overhead .text.tlsf_remove_pool .text.tlsf_walk_pool) + *fill* 0x400ec64a 0x2 + .text.control_construct + 0x400ec64c 0x17c esp-idf/heap/libheap.a(tlsf.c.obj) + .text.default_walker + 0x400ec7c8 0x21 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x24 (size before relaxing) + *fill* 0x400ec7e9 0x3 + .text.tlsf_walk_pool + 0x400ec7ec 0x60 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x400ec7ec tlsf_walk_pool + .text.tlsf_fit_size + 0x400ec84c 0x62 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x400ec84c tlsf_fit_size + *fill* 0x400ec8ae 0x2 + .text.tlsf_add_pool + 0x400ec8b0 0x190 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x1a0 (size before relaxing) + 0x400ec8b0 tlsf_add_pool + .text.tlsf_create + 0x400eca40 0x2a esp-idf/heap/libheap.a(tlsf.c.obj) + 0x2e (size before relaxing) + 0x400eca40 tlsf_create + *fill* 0x400eca6a 0x2 + .text.tlsf_create_with_pool + 0x400eca6c 0x2b esp-idf/heap/libheap.a(tlsf.c.obj) + 0x33 (size before relaxing) + 0x400eca6c tlsf_create_with_pool + *fill* 0x400eca97 0x1 + .text.tlsf_pool_overhead + 0x400eca98 0x7 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x400eca98 tlsf_pool_overhead + *fill* 0x400eca9f 0x0 + *fill* 0x400eca9f 0x0 + *liblog.a:log_timestamp.*(.text) + *liblog.a:log_write.*(.literal.esp_log_set_vprintf .text .text.esp_log_set_vprintf) + *liblog.a:tag_log_level.*(.literal.esp_log_level_get .literal.esp_log_level_set .literal.log_level_get .literal.log_level_set .text .text.esp_log_level_get .text.esp_log_level_set .text.log_level_get .text.log_level_set) + *fill* 0x400eca9f 0x1 + .text.log_level_get + 0x400ecaa0 0x45 esp-idf/log/liblog.a(tag_log_level.c.obj) + 0x50 (size before relaxing) + *fill* 0x400ecae5 0x0 + *libphy.a:(.phyiram .phyiram.*) + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_app_disable_protect .literal.esp_flash_get_protectable_regions .literal.esp_flash_read_chip_id .literal.esp_flash_read_id .literal.esp_flash_read_unique_chip_id .literal.esp_flash_suspend_cmd_init .literal.find_region .text .text.esp_flash_app_disable_protect .text.esp_flash_get_protectable_regions .text.esp_flash_read_chip_id .text.esp_flash_read_id .text.esp_flash_read_unique_chip_id .text.esp_flash_suspend_cmd_init .text.find_region) + *fill* 0x400ecae5 0x3 + .text.esp_flash_read_chip_id + 0x400ecae8 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x14 (size before relaxing) + 0x400ecae8 esp_flash_read_chip_id + *libspi_flash.a:spi_flash_os_func_app.*(.literal.esp_flash_app_enable_os_functions .literal.esp_flash_deinit_os_functions .literal.esp_flash_init_os_functions .text .text.esp_flash_app_enable_os_functions .text.esp_flash_deinit_os_functions .text.esp_flash_init_main_bus_lock .text.esp_flash_init_os_functions .text.esp_flash_set_dangerous_write_protection .text.use_bus_lock) + .text.esp_flash_app_enable_os_functions + 0x400ecaf8 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x400ecaf8 esp_flash_app_enable_os_functions + *libspi_flash.a:spi_flash_os_func_noos.*(.text) + *libxtensa.a:xt_trax.*(.literal .literal.* .text .text.*) + *libxtensa.a:xtensa_intr.*(.literal .literal.* .text .text.*) + .text.xt_int_has_handler + 0x400ecb20 0x1b esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0x400ecb20 xt_int_has_handler + *fill* 0x400ecb3b 0x1 + .text.xt_set_interrupt_handler + 0x400ecb3c 0x4e esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0x400ecb3c xt_set_interrupt_handler + *fill* 0x400ecb8a 0x0 + *(.stub) + *(.gnu.warning) + *(.gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*) + *(.irom0.text) + 0x400ecb9a . = (. + 0x10) + *fill* 0x400ecb8a 0x10 + 0x400ecb9a _text_end = ABSOLUTE (.) + 0x400ecb9a _instruction_reserved_end = ABSOLUTE (.) + 0x400ecb9a _etext = . + 0x00000000 _flash_cache_start = ABSOLUTE (0x0) + +.iram0.text_end + 0x4008c0e3 0x1 + 0x4008c0e4 . = ALIGN (0x4) + *fill* 0x4008c0e3 0x1 + 0x4008c0e4 _iram_text_end = ABSOLUTE (.) + +.iram0.data 0x4008c0e4 0x0 + 0x4008c0e4 . = ALIGN (0x4) + 0x4008c0e4 _iram_data_start = ABSOLUTE (.) + *(.iram.data .iram.data.*) + 0x4008c0e4 _iram_data_end = ABSOLUTE (.) + +.iram0.bss 0x4008c0e4 0x0 + 0x4008c0e4 . = ALIGN (0x4) + 0x4008c0e4 _iram_bss_start = ABSOLUTE (.) + *(.iram.bss .iram.bss.*) + 0x4008c0e4 _iram_bss_end = ABSOLUTE (.) + 0x4008c0e4 . = ALIGN (0x4) + 0x4008c0e4 _iram_end = ABSOLUTE (.) + +.dram0.heap_start + 0x3ffb3700 0x0 + 0x3ffb3700 . = ALIGN (0x8) + 0x3ffb3700 _heap_low_start = ABSOLUTE (.) + +.noload 0x00000000 0x4 + 0x00000000 . = 0x0 + 0x00000000 0x4 LONG 0x0 + 0x00000004 _noload_keep_in_elf_start = ABSOLUTE (.) + *(.noload_keep_in_elf .noload_keep_in_elf.*) + 0x00000004 _noload_keep_in_elf_end = ABSOLUTE (.) + +.debug + *(.debug) + +.line + *(.line) + +.debug_srcinfo + *(.debug_srcinfo) + +.debug_sfnames + *(.debug_sfnames) + +.debug_aranges 0x00000000 0x6e50 + *(.debug_aranges) + .debug_aranges + 0x00000000 0x88 esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + .debug_aranges + 0x00000088 0x38 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_aranges + 0x000000c0 0x40 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .debug_aranges + 0x00000100 0xa0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_aranges + 0x000001a0 0x60 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_aranges + 0x00000200 0x28 esp-idf/esp_security/libesp_security.a(init.c.obj) + .debug_aranges + 0x00000228 0x78 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_aranges + 0x000002a0 0xc8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_aranges + 0x00000368 0x40 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_aranges + 0x000003a8 0x30 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_aranges + 0x000003d8 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_aranges + 0x000003f8 0x128 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_aranges + 0x00000520 0x38 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_aranges + 0x00000558 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_aranges + 0x00000588 0x48 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_aranges + 0x000005d0 0x68 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_aranges + 0x00000638 0x78 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_aranges + 0x000006b0 0x78 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_aranges + 0x00000728 0x78 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_aranges + 0x000007a0 0x58 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_aranges + 0x000007f8 0x120 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_aranges + 0x00000918 0x48 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_aranges + 0x00000960 0x30 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_aranges + 0x00000990 0x40 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .debug_aranges + 0x000009d0 0xb8 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_aranges + 0x00000a88 0x78 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_aranges + 0x00000b00 0x48 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_aranges + 0x00000b48 0x60 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_aranges + 0x00000ba8 0x28 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .debug_aranges + 0x00000bd0 0x20 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .debug_aranges + 0x00000bf0 0x20 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .debug_aranges + 0x00000c10 0x40 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_aranges + 0x00000c50 0x28 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_aranges + 0x00000c78 0x30 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_aranges + 0x00000ca8 0x30 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_aranges + 0x00000cd8 0x98 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_aranges + 0x00000d70 0x48 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_aranges + 0x00000db8 0x58 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_aranges + 0x00000e10 0x20 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .debug_aranges + 0x00000e30 0x80 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_aranges + 0x00000eb0 0x50 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_aranges + 0x00000f00 0x20 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .debug_aranges + 0x00000f20 0x68 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_aranges + 0x00000f88 0x20 esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + .debug_aranges + 0x00000fa8 0x20 esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + .debug_aranges + 0x00000fc8 0x50 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_aranges + 0x00001018 0x58 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_aranges + 0x00001070 0x90 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_aranges + 0x00001100 0x50 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .debug_aranges + 0x00001150 0x28 esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_aranges + 0x00001178 0x28 esp-idf/log/liblog.a(util.c.obj) + .debug_aranges + 0x000011a0 0x28 esp-idf/log/liblog.a(log.c.obj) + .debug_aranges + 0x000011c8 0x30 esp-idf/log/liblog.a(log_write.c.obj) + .debug_aranges + 0x000011f8 0x28 esp-idf/log/liblog.a(log_level.c.obj) + .debug_aranges + 0x00001220 0x40 esp-idf/log/liblog.a(tag_log_level.c.obj) + .debug_aranges + 0x00001260 0x40 esp-idf/log/liblog.a(log_linked_list.c.obj) + .debug_aranges + 0x000012a0 0x50 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .debug_aranges + 0x000012f0 0x30 esp-idf/log/liblog.a(log_lock.c.obj) + .debug_aranges + 0x00001320 0x130 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_aranges + 0x00001450 0x58 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_aranges + 0x000014a8 0xf8 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_aranges + 0x000015a0 0xd8 esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_aranges + 0x00001678 0x40 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_aranges + 0x000016b8 0x18 esp-idf/heap/libheap.a(memory_layout.c.obj) + .debug_aranges + 0x000016d0 0x50 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .debug_aranges + 0x00001720 0x18 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_aranges + 0x00001738 0x28 esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_aranges + 0x00001760 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_aranges + 0x000017c0 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_aranges + 0x000017f8 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_aranges + 0x00001860 0x100 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_aranges + 0x00001960 0xe0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_aranges + 0x00001a40 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_aranges + 0x00001a98 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_aranges + 0x00001ac8 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_aranges + 0x00001b08 0xf0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .debug_aranges + 0x00001bf8 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + .debug_aranges + 0x00001c20 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_aranges + 0x00001c68 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_aranges + 0x00001cb8 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .debug_aranges + 0x00001cf0 0x148 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_aranges + 0x00001e38 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_aranges + 0x00001e68 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_aranges + 0x00001ec8 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_aranges + 0x00001ee8 0x88 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_aranges + 0x00001f70 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .debug_aranges + 0x00001f90 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_aranges + 0x00001fe8 0x248 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_aranges + 0x00002230 0x38 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_aranges + 0x00002268 0x148 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_aranges + 0x000023b0 0x2c8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_aranges + 0x00002678 0xa8 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_aranges + 0x00002720 0x20 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_aranges + 0x00002740 0x28 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .debug_aranges + 0x00002768 0x68 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .debug_aranges + 0x000027d0 0x50 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_aranges + 0x00002820 0x28 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_aranges + 0x00002848 0x28 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_aranges + 0x00002870 0x40 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_aranges + 0x000028b0 0x30 esp-idf/esp_libc/libesp_libc.a(init.c.obj) + .debug_aranges + 0x000028e0 0x20 esp-idf/esp_libc/libesp_libc.a(abort.c.obj) + .debug_aranges + 0x00002900 0x38 esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + .debug_aranges + 0x00002938 0x80 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .debug_aranges + 0x000029b8 0xd8 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .debug_aranges + 0x00002a90 0x30 esp-idf/esp_libc/libesp_libc.a(pthread.c.obj) + .debug_aranges + 0x00002ac0 0x28 esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) + .debug_aranges + 0x00002ae8 0x130 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .debug_aranges + 0x00002c18 0x80 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .debug_aranges + 0x00002c98 0xb8 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .debug_aranges + 0x00002d50 0x30 esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + .debug_aranges + 0x00002d80 0x48 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + .debug_aranges + 0x00002dc8 0x38 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + .debug_aranges + 0x00002e00 0x20 esp-idf/esp_libc/libesp_libc.a(errno.c.obj) + .debug_aranges + 0x00002e20 0x1a0 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_aranges + 0x00002fc0 0x88 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_aranges + 0x00003048 0x60 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_aranges + 0x000030a8 0x78 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_aranges + 0x00003120 0x58 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_aranges + 0x00003178 0x50 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_aranges + 0x000031c8 0x30 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .debug_aranges + 0x000031f8 0x30 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .debug_aranges + 0x00003228 0x30 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_aranges + 0x00003258 0x68 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_aranges + 0x000032c0 0x110 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .debug_aranges + 0x000033d0 0x268 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .debug_aranges + 0x00003638 0x28 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .debug_aranges + 0x00003660 0x338 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_aranges + 0x00003998 0x1a8 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_aranges + 0x00003b40 0xc8 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_aranges + 0x00003c08 0x78 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_aranges + 0x00003c80 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_aranges + 0x00003ca8 0xc0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_aranges + 0x00003d68 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_aranges + 0x00003da0 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .debug_aranges + 0x00003dd8 0x60 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_aranges + 0x00003e38 0x128 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_aranges + 0x00003f60 0x80 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_aranges + 0x00003fe0 0x60 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .debug_aranges + 0x00004040 0x130 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_aranges + 0x00004170 0x130 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .debug_aranges + 0x000042a0 0xa0 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .debug_aranges + 0x00004340 0x78 esp-idf/main/libmain.a(main.c.obj) + .debug_aranges + 0x000043b8 0x120 esp-idf/main/libmain.a(modbus_memory.c.obj) + .debug_aranges + 0x000044d8 0xf8 esp-idf/main/libmain.a(modbus_points.c.obj) + .debug_aranges + 0x000045d0 0x90 esp-idf/main/libmain.a(modbus_rtu.c.obj) + .debug_aranges + 0x00004660 0x70 esp-idf/main/libmain.a(config_store.c.obj) + .debug_aranges + 0x000046d0 0x148 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .debug_aranges + 0x00004818 0x48 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + .debug_aranges + 0x00004860 0x178 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .debug_aranges + 0x000049d8 0x148 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + .debug_aranges + 0x00004b20 0x70 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + .debug_aranges + 0x00004b90 0x48 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + .debug_aranges + 0x00004bd8 0x20 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .debug_aranges + 0x00004bf8 0x20 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .debug_aranges + 0x00004c18 0x38 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_aranges + 0x00004c50 0x78 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .debug_aranges + 0x00004cc8 0x60 esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) + .debug_aranges + 0x00004d28 0x48 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + .debug_aranges + 0x00004d70 0x98 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + .debug_aranges + 0x00004e08 0x60 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_aranges + 0x00004e68 0xd8 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_aranges + 0x00004f40 0x78 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_aranges + 0x00004fb8 0x200 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .debug_aranges + 0x000051b8 0x100 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .debug_aranges + 0x000052b8 0xe8 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + .debug_aranges + 0x000053a0 0x40 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal_iram.c.obj) + .debug_aranges + 0x000053e0 0x18 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_periph.c.obj) + .debug_aranges + 0x000053f8 0xd8 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_aranges + 0x000054d0 0x18 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .debug_aranges + 0x000054e8 0x40 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .debug_aranges + 0x00005528 0x28 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + .debug_aranges + 0x00005550 0x30 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .debug_aranges + 0x00005580 0x20 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .debug_aranges + 0x000055a0 0x70 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .debug_aranges + 0x00005610 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_aranges + 0x00005630 0x48 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_aranges + 0x00005678 0xb0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_aranges + 0x00005728 0x78 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_aranges + 0x000057a0 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .debug_aranges + 0x000057c8 0x30 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_aranges + 0x000057f8 0x58 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_aranges + 0x00005850 0xe0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_aranges + 0x00005930 0x50 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_aranges + 0x00005980 0x20 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .debug_aranges + 0x000059a0 0x28 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_aranges + 0x000059c8 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_aranges + 0x000059f8 0x20 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_aranges + 0x00005a18 0x18 esp-idf/soc/libsoc.a(interrupts.c.obj) + .debug_aranges + 0x00005a30 0x50 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .debug_aranges + 0x00005a80 0x18 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_periph.c.obj) + .debug_aranges + 0x00005a98 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_aranges + 0x00005ab8 0x188 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_aranges + 0x00005c40 0x20 C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + .debug_aranges + 0x00005c60 0x20 C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + .debug_aranges + 0x00005c80 0x18 C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .debug_aranges + 0x00005c98 0x20 C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + .debug_aranges + 0x00005cb8 0x20 C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + .debug_aranges + 0x00005cd8 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_psa_crypto_init.c.obj) + .debug_aranges + 0x00005d00 0x5a8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .debug_aranges + 0x000062a8 0x80 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + .debug_aranges + 0x00006328 0x40 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform.c.obj) + .debug_aranges + 0x00006368 0x28 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform_util.c.obj) + .debug_aranges + 0x00006390 0x80 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + .debug_aranges + 0x00006410 0x20 esp-idf/esp_hal_security/libesp_hal_security.a(mpu_hal.c.obj) + .debug_aranges + 0x00006430 0x140 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_aranges + 0x00006570 0x28 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_mem.c.obj) + .debug_aranges + 0x00006598 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opv.o) + .debug_aranges + 0x000065b8 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + .debug_aranges + 0x000065e0 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) + .debug_aranges + 0x00006600 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_op.o) + .debug_aranges + 0x00006620 0x40 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + .debug_aranges + 0x00006660 0x40 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + .debug_aranges + 0x000066a0 0x58 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .debug_aranges + 0x000066f8 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opv.o) + .debug_aranges + 0x00006718 0x18 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_term_handler.o) + .debug_aranges + 0x00006730 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + .debug_aranges + 0x00006750 0x48 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + .debug_aranges + 0x00006798 0x40 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + .debug_aranges + 0x000067d8 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + .debug_aranges + 0x00006808 0x58 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + .debug_aranges + 0x00006860 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_ops.o) + .debug_aranges + 0x00006880 0x78 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .debug_aranges + 0x000068f8 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + .debug_aranges + 0x00006918 0xe8 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_aranges + 0x00006a00 0x18 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_ctype_ctype_.c.o) + .debug_aranges + 0x00006a18 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_ctype_tolower.c.o) + .debug_aranges + 0x00006a38 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_misc_init.c.o) + .debug_aranges + 0x00006a58 0x18 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_environ.c.o) + .debug_aranges + 0x00006a70 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strncasecmp.c.o) + .debug_aranges + 0x00006a90 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_time_time.c.o) + .debug_aranges + 0x00006ab0 0x68 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + .debug_aranges + 0x00006b18 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fclose.c.o) + .debug_aranges + 0x00006b38 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fflush.c.o) + .debug_aranges + 0x00006b58 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgets.c.o) + .debug_aranges + 0x00006b80 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_flockfile_init.c.o) + .debug_aranges + 0x00006ba0 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fopen.c.o) + .debug_aranges + 0x00006bc0 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fprintf.c.o) + .debug_aranges + 0x00006be0 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_printf.c.o) + .debug_aranges + 0x00006c00 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_sflags.c.o) + .debug_aranges + 0x00006c20 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_snprintf.c.o) + .debug_aranges + 0x00006c40 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_strtol.c.o) + .debug_aranges + 0x00006c60 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_strtoul.c.o) + .debug_aranges + 0x00006c80 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vfprintf.c.o) + .debug_aranges + 0x00006cb0 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vprintf.c.o) + .debug_aranges + 0x00006cd0 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtoa_ryu.c.o) + .debug_aranges + 0x00006d00 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_log10.c.o) + .debug_aranges + 0x00006d28 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_pow5bits.c.o) + .debug_aranges + 0x00006d48 0x30 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_table.c.o) + .debug_aranges + 0x00006d78 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_umul128.c.o) + .debug_aranges + 0x00006da0 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtox_engine.c.o) + .debug_aranges + 0x00006dc0 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fdopen.c.o) + .debug_aranges + 0x00006de0 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgetc.c.o) + .debug_aranges + 0x00006e08 0x20 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_filestrput.c.o) + .debug_aranges + 0x00006e28 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fseeko.c.o) + +.debug_pubnames + *(.debug_pubnames) + +.debug_info 0x00000000 0x174aa7 + *(.debug_info .gnu.linkonce.wi.*) + .debug_info 0x00000000 0x1c24 esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + .debug_info 0x00001c24 0x7c0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_info 0x000023e4 0x75f esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .debug_info 0x00002b43 0x1505 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_info 0x00004048 0xfb9 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_info 0x00005001 0x151 esp-idf/esp_security/libesp_security.a(init.c.obj) + .debug_info 0x00005152 0x490a esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_info 0x00009a5c 0x148c esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_info 0x0000aee8 0xc9d esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_info 0x0000bb85 0x17b esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_info 0x0000bd00 0xf3b esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_info 0x0000cc3b 0x2b33 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_info 0x0000f76e 0x1037 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_info 0x000107a5 0x116d esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_info 0x00011912 0x116a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_info 0x00012a7c 0x1686 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_info 0x00014102 0x30fb esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_info 0x000171fd 0xcc7 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_info 0x00017ec4 0xea7 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_info 0x00018d6b 0x427 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_info 0x00019192 0x51d3 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_info 0x0001e365 0xf5b esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_info 0x0001f2c0 0x351 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_info 0x0001f611 0x35ca esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .debug_info 0x00022bdb 0xe80 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_info 0x00023a5b 0x50e4 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_info 0x00028b3f 0x3a5 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_info 0x00028ee4 0xe92 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_info 0x00029d76 0x31b esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .debug_info 0x0002a091 0x23 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .debug_info 0x0002a0b4 0x24 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .debug_info 0x0002a0d8 0x3f63 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_info 0x0002e03b 0x35e5 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_info 0x00031620 0x45f esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_info 0x00031a7f 0x380d esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_info 0x0003528c 0x5366 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_info 0x0003a5f2 0x5c6 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_info 0x0003abb8 0xbe7 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_info 0x0003b79f 0x23 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .debug_info 0x0003b7c2 0xc23 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_info 0x0003c3e5 0x127f esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_info 0x0003d664 0x23 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .debug_info 0x0003d687 0xa48 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_info 0x0003e0cf 0x14be esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + .debug_info 0x0003f58d 0x184 esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + .debug_info 0x0003f711 0x2311 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_info 0x00041a22 0x26f9 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_info 0x0004411b 0x18c3 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_info 0x000459de 0xaa5 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .debug_info 0x00046483 0x26a esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_info 0x000466ed 0x2c4 esp-idf/log/liblog.a(util.c.obj) + .debug_info 0x000469b1 0x3a4 esp-idf/log/liblog.a(log.c.obj) + .debug_info 0x00046d55 0x38d esp-idf/log/liblog.a(log_write.c.obj) + .debug_info 0x000470e2 0x167 esp-idf/log/liblog.a(log_level.c.obj) + .debug_info 0x00047249 0x456 esp-idf/log/liblog.a(tag_log_level.c.obj) + .debug_info 0x0004769f 0x45f esp-idf/log/liblog.a(log_linked_list.c.obj) + .debug_info 0x00047afe 0x49c esp-idf/log/liblog.a(log_binary_heap.c.obj) + .debug_info 0x00047f9a 0x3df esp-idf/log/liblog.a(log_lock.c.obj) + .debug_info 0x00048379 0x23e9 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_info 0x0004a762 0x123f esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_info 0x0004b9a1 0x1920 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_info 0x0004d2c1 0x8754 esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_info 0x00055a15 0x975 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_info 0x0005638a 0x52d esp-idf/heap/libheap.a(memory_layout.c.obj) + .debug_info 0x000568b7 0xefb esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .debug_info 0x000577b2 0x2c3 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_info 0x00057a75 0x110 esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_info 0x00057b85 0x828 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_info 0x000583ad 0x181 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_info 0x0005852e 0xae5 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_info 0x00059013 0x2d8c esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_info 0x0005bd9f 0x16d3 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_info 0x0005d472 0x27e0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_info 0x0005fc52 0x1d8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_info 0x0005fe2a 0x9d9 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_info 0x00060803 0x24a5 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .debug_info 0x00062ca8 0xf4 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + .debug_info 0x00062d9c 0x743 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_info 0x000634df 0x207c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_info 0x0006555b 0x2904 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .debug_info 0x00067e5f 0x68bb esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_info 0x0006e71a 0x24ee esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_info 0x00070c08 0x22dd esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_info 0x00072ee5 0x22ff esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_info 0x000751e4 0x1abd esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_info 0x00076ca1 0x23f esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .debug_info 0x00076ee0 0xda5 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_info 0x00077c85 0x80ba esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_info 0x0007fd3f 0x8ab esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_info 0x000805ea 0x34ce esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_info 0x00083ab8 0x75f4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_info 0x0008b0ac 0x1d92 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_info 0x0008ce3e 0x24 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_info 0x0008ce62 0xe0 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .debug_info 0x0008cf42 0x164f esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .debug_info 0x0008e591 0x383 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_info 0x0008e914 0x4fd esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_info 0x0008ee11 0x1f3 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_info 0x0008f004 0x2fb esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_info 0x0008f2ff 0x18e esp-idf/esp_libc/libesp_libc.a(init.c.obj) + .debug_info 0x0008f48d 0x2f2 esp-idf/esp_libc/libesp_libc.a(abort.c.obj) + .debug_info 0x0008f77f 0x4f1 esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + .debug_info 0x0008fc70 0x53b esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .debug_info 0x000901ab 0x12a2 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .debug_info 0x0009144d 0x298 esp-idf/esp_libc/libesp_libc.a(pthread.c.obj) + .debug_info 0x000916e5 0x13a esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) + .debug_info 0x0009181f 0x27e4 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .debug_info 0x00094003 0xbd5 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .debug_info 0x00094bd8 0xc85 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .debug_info 0x0009585d 0x101 esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + .debug_info 0x0009595e 0x7c9 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + .debug_info 0x00096127 0x1100 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + .debug_info 0x00097227 0xa3 esp-idf/esp_libc/libesp_libc.a(errno.c.obj) + .debug_info 0x000972ca 0x29b6 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_info 0x00099c80 0x12a4 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_info 0x0009af24 0xb91 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_info 0x0009bab5 0xda0 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_info 0x0009c855 0x563 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_info 0x0009cdb8 0x1514 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_info 0x0009e2cc 0x228 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .debug_info 0x0009e4f4 0x16a esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .debug_info 0x0009e65e 0x33a esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_info 0x0009e998 0x2279 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_info 0x000a0c11 0x47c7 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .debug_info 0x000a53d8 0xb24f esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .debug_info 0x000b0627 0x212 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .debug_info 0x000b0839 0xcc06 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_info 0x000bd43f 0xcfa6 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_info 0x000ca3e5 0x6c7d esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_info 0x000d1062 0x14d8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_info 0x000d253a 0x1098 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_info 0x000d35d2 0x8d29 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_info 0x000dc2fb 0x29be esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_info 0x000decb9 0x281 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .debug_info 0x000def3a 0x3713 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_info 0x000e264d 0x7433 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_info 0x000e9a80 0x6f67 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_info 0x000f09e7 0x462 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .debug_info 0x000f0e49 0x3562 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_info 0x000f43ab 0x3a8b esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .debug_info 0x000f7e36 0x1c00 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .debug_info 0x000f9a36 0x378a esp-idf/main/libmain.a(main.c.obj) + .debug_info 0x000fd1c0 0x1d71 esp-idf/main/libmain.a(modbus_memory.c.obj) + .debug_info 0x000fef31 0x188c esp-idf/main/libmain.a(modbus_points.c.obj) + .debug_info 0x001007bd 0x18cb esp-idf/main/libmain.a(modbus_rtu.c.obj) + .debug_info 0x00102088 0x11cd esp-idf/main/libmain.a(config_store.c.obj) + .debug_info 0x00103255 0x4c54 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .debug_info 0x00107ea9 0xf0c esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + .debug_info 0x00108db5 0x3d1d esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .debug_info 0x0010cad2 0x4113 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + .debug_info 0x00110be5 0x1062 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + .debug_info 0x00111c47 0x162f esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + .debug_info 0x00113276 0x24 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .debug_info 0x0011329a 0x3b esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .debug_info 0x001132d5 0x56c esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_info 0x00113841 0x2f esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .debug_info 0x00113870 0xdd3 esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) + .debug_info 0x00114643 0x2ac9 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + .debug_info 0x0011710c 0x385f esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + .debug_info 0x0011a96b 0x429 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_info 0x0011ad94 0x24a7 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_info 0x0011d23b 0xd6d esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_info 0x0011dfa8 0x6c70 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .debug_info 0x00124c18 0x3149 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .debug_info 0x00127d61 0x2a69 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + .debug_info 0x0012a7ca 0x1ad3 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal_iram.c.obj) + .debug_info 0x0012c29d 0x35b esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_periph.c.obj) + .debug_info 0x0012c5f8 0x3473 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_info 0x0012fa6b 0x1c1 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .debug_info 0x0012fc2c 0xd98 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .debug_info 0x001309c4 0x146 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + .debug_info 0x00130b0a 0x1af esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .debug_info 0x00130cb9 0x194 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .debug_info 0x00130e4d 0x4333 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .debug_info 0x00135180 0x9f esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_info 0x0013521f 0xc76 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_info 0x00135e95 0x4008 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_info 0x00139e9d 0x1d9f esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_info 0x0013bc3c 0x217b esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .debug_info 0x0013ddb7 0x377 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_info 0x0013e12e 0x9aa esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_info 0x0013ead8 0x2b2d esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_info 0x00141605 0x3c8e esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_info 0x00145293 0x23 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .debug_info 0x001452b6 0x5bd esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_info 0x00145873 0x1ba esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_info 0x00145a2d 0x20fb esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_info 0x00147b28 0x258 esp-idf/soc/libsoc.a(interrupts.c.obj) + .debug_info 0x00147d80 0x1408 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .debug_info 0x00149188 0x37c esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_periph.c.obj) + .debug_info 0x00149504 0x17b esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_info 0x0014967f 0x403b esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_info 0x0014d6ba 0x5d C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + .debug_info 0x0014d717 0x78 C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + .debug_info 0x0014d78f 0x55 C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .debug_info 0x0014d7e4 0x7a C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + .debug_info 0x0014d85e 0x7a C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + .debug_info 0x0014d8d8 0x1b9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_psa_crypto_init.c.obj) + .debug_info 0x0014da91 0x12997 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .debug_info 0x00160428 0x14b0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + .debug_info 0x001618d8 0x245 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform.c.obj) + .debug_info 0x00161b1d 0x1dd esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform_util.c.obj) + .debug_info 0x00161cfa 0x88d esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + .debug_info 0x00162587 0x245 esp-idf/esp_hal_security/libesp_hal_security.a(mpu_hal.c.obj) + .debug_info 0x001627cc 0x36fd esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_info 0x00165ec9 0x162 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_mem.c.obj) + .debug_info 0x0016602b 0x89 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opv.o) + .debug_info 0x001660b4 0x147 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + .debug_info 0x001661fb 0x127 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) + .debug_info 0x00166322 0x5b1 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_op.o) + .debug_info 0x001668d3 0xe08 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + .debug_info 0x001676db 0x103c C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + .debug_info 0x00168717 0xaf5 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .debug_info 0x0016920c 0xad C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opv.o) + .debug_info 0x001692b9 0x8b0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_term_handler.o) + .debug_info 0x00169b69 0x8af C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + .debug_info 0x0016a418 0xa25 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + .debug_info 0x0016ae3d 0x57d C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + .debug_info 0x0016b3ba 0x263 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + .debug_info 0x0016b61d 0xa5d C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + .debug_info 0x0016c07a 0xa2 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_ops.o) + .debug_info 0x0016c11c 0x941 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .debug_info 0x0016ca5d 0x24 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + .debug_info 0x0016ca81 0x138f esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_info 0x0016de10 0xba C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_ctype_ctype_.c.o) + .debug_info 0x0016deca 0xda C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_ctype_tolower.c.o) + .debug_info 0x0016dfa4 0xd9 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_misc_init.c.o) + .debug_info 0x0016e07d 0x84 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_environ.c.o) + .debug_info 0x0016e101 0x1dc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strncasecmp.c.o) + .debug_info 0x0016e2dd 0x158 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_time_time.c.o) + .debug_info 0x0016e435 0xe46 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + .debug_info 0x0016f27b 0x27e C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fclose.c.o) + .debug_info 0x0016f4f9 0x2a9 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fflush.c.o) + .debug_info 0x0016f7a2 0x31f C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgets.c.o) + .debug_info 0x0016fac1 0x1f8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_flockfile_init.c.o) + .debug_info 0x0016fcb9 0x288 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fopen.c.o) + .debug_info 0x0016ff41 0x253 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fprintf.c.o) + .debug_info 0x00170194 0x24b C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_printf.c.o) + .debug_info 0x001703df 0x10f C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_sflags.c.o) + .debug_info 0x001704ee 0x32f C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_snprintf.c.o) + .debug_info 0x0017081d 0x222 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_strtol.c.o) + .debug_info 0x00170a3f 0x1e9 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_strtoul.c.o) + .debug_info 0x00170c28 0xcb0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vfprintf.c.o) + .debug_info 0x001718d8 0x237 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vprintf.c.o) + .debug_info 0x00171b0f 0x1151 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtoa_ryu.c.o) + .debug_info 0x00172c60 0xf9 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_log10.c.o) + .debug_info 0x00172d59 0xd0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_pow5bits.c.o) + .debug_info 0x00172e29 0x548 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_table.c.o) + .debug_info 0x00173371 0x291 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_umul128.c.o) + .debug_info 0x00173602 0x2e1 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtox_engine.c.o) + .debug_info 0x001738e3 0x6d0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fdopen.c.o) + .debug_info 0x00173fb3 0x40a C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgetc.c.o) + .debug_info 0x001743bd 0x226 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_filestrput.c.o) + .debug_info 0x001745e3 0x4c4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fseeko.c.o) + +.debug_abbrev 0x00000000 0x2e384 + *(.debug_abbrev) + .debug_abbrev 0x00000000 0x358 esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + .debug_abbrev 0x00000358 0x2e0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_abbrev 0x00000638 0x285 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .debug_abbrev 0x000008bd 0x386 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_abbrev 0x00000c43 0x321 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_abbrev 0x00000f64 0xfb esp-idf/esp_security/libesp_security.a(init.c.obj) + .debug_abbrev 0x0000105f 0x624 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_abbrev 0x00001683 0x45c esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_abbrev 0x00001adf 0x293 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_abbrev 0x00001d72 0xe0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_abbrev 0x00001e52 0x271 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_abbrev 0x000020c3 0x4f5 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_abbrev 0x000025b8 0x266 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_abbrev 0x0000281e 0x220 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_abbrev 0x00002a3e 0x285 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_abbrev 0x00002cc3 0x34b esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_abbrev 0x0000300e 0x48b esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_abbrev 0x00003499 0x352 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_abbrev 0x000037eb 0x39d esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_abbrev 0x00003b88 0x2ae esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_abbrev 0x00003e36 0x5da esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_abbrev 0x00004410 0x3aa esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_abbrev 0x000047ba 0x158 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_abbrev 0x00004912 0x36e esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .debug_abbrev 0x00004c80 0x2f0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_abbrev 0x00004f70 0x622 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_abbrev 0x00005592 0x22c esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_abbrev 0x000057be 0x325 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_abbrev 0x00005ae3 0x10c esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .debug_abbrev 0x00005bef 0x14 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .debug_abbrev 0x00005c03 0x14 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .debug_abbrev 0x00005c17 0x4a2 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_abbrev 0x000060b9 0x3fd esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_abbrev 0x000064b6 0x1cb esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_abbrev 0x00006681 0x3a6 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_abbrev 0x00006a27 0x5e8 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_abbrev 0x0000700f 0x2e4 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_abbrev 0x000072f3 0x3b2 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_abbrev 0x000076a5 0x14 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .debug_abbrev 0x000076b9 0x2c5 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_abbrev 0x0000797e 0x3c6 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_abbrev 0x00007d44 0x14 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .debug_abbrev 0x00007d58 0x291 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_abbrev 0x00007fe9 0x235 esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + .debug_abbrev 0x0000821e 0xf3 esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + .debug_abbrev 0x00008311 0x229 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_abbrev 0x0000853a 0x337 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_abbrev 0x00008871 0x3c3 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_abbrev 0x00008c34 0x27d esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .debug_abbrev 0x00008eb1 0x17b esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_abbrev 0x0000902c 0xf6 esp-idf/log/liblog.a(util.c.obj) + .debug_abbrev 0x00009122 0x22a esp-idf/log/liblog.a(log.c.obj) + .debug_abbrev 0x0000934c 0x1e6 esp-idf/log/liblog.a(log_write.c.obj) + .debug_abbrev 0x00009532 0x11b esp-idf/log/liblog.a(log_level.c.obj) + .debug_abbrev 0x0000964d 0x20c esp-idf/log/liblog.a(tag_log_level.c.obj) + .debug_abbrev 0x00009859 0x212 esp-idf/log/liblog.a(log_linked_list.c.obj) + .debug_abbrev 0x00009a6b 0x234 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .debug_abbrev 0x00009c9f 0x13a esp-idf/log/liblog.a(log_lock.c.obj) + .debug_abbrev 0x00009dd9 0x536 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_abbrev 0x0000a30f 0x4ec esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_abbrev 0x0000a7fb 0x3ef esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_abbrev 0x0000abea 0x4ed esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_abbrev 0x0000b0d7 0x353 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_abbrev 0x0000b42a 0xfc esp-idf/heap/libheap.a(memory_layout.c.obj) + .debug_abbrev 0x0000b526 0x3be esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .debug_abbrev 0x0000b8e4 0x9f esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_abbrev 0x0000b983 0xa5 esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_abbrev 0x0000ba28 0x242 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_abbrev 0x0000bc6a 0xc7 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_abbrev 0x0000bd31 0x302 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_abbrev 0x0000c033 0x5dc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_abbrev 0x0000c60f 0x312 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_abbrev 0x0000c921 0x39b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_abbrev 0x0000ccbc 0xca esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_abbrev 0x0000cd86 0x234 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_abbrev 0x0000cfba 0x4b5 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .debug_abbrev 0x0000d46f 0x80 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + .debug_abbrev 0x0000d4ef 0x2a8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_abbrev 0x0000d797 0x459 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_abbrev 0x0000dbf0 0x48d esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .debug_abbrev 0x0000e07d 0x6c2 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_abbrev 0x0000e73f 0x284 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_abbrev 0x0000e9c3 0x489 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_abbrev 0x0000ee4c 0x272 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_abbrev 0x0000f0be 0x3a7 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_abbrev 0x0000f465 0x12c esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .debug_abbrev 0x0000f591 0x2e6 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_abbrev 0x0000f877 0x726 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_abbrev 0x0000ff9d 0x360 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_abbrev 0x000102fd 0x40b esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_abbrev 0x00010708 0x521 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_abbrev 0x00010c29 0x617 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_abbrev 0x00011240 0x14 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_abbrev 0x00011254 0xa4 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .debug_abbrev 0x000112f8 0x442 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .debug_abbrev 0x0001173a 0x1a1 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_abbrev 0x000118db 0x14f esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_abbrev 0x00011a2a 0x175 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_abbrev 0x00011b9f 0x106 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_abbrev 0x00011ca5 0x135 esp-idf/esp_libc/libesp_libc.a(init.c.obj) + .debug_abbrev 0x00011dda 0x1bd esp-idf/esp_libc/libesp_libc.a(abort.c.obj) + .debug_abbrev 0x00011f97 0x256 esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + .debug_abbrev 0x000121ed 0x196 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .debug_abbrev 0x00012383 0x42f esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .debug_abbrev 0x000127b2 0x188 esp-idf/esp_libc/libesp_libc.a(pthread.c.obj) + .debug_abbrev 0x0001293a 0xf7 esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) + .debug_abbrev 0x00012a31 0x267 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .debug_abbrev 0x00012c98 0x33d esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .debug_abbrev 0x00012fd5 0x25e esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .debug_abbrev 0x00013233 0xc5 esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + .debug_abbrev 0x000132f8 0x1f1 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + .debug_abbrev 0x000134e9 0x2b2 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + .debug_abbrev 0x0001379b 0x6f esp-idf/esp_libc/libesp_libc.a(errno.c.obj) + .debug_abbrev 0x0001380a 0x569 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_abbrev 0x00013d73 0x36e esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_abbrev 0x000140e1 0x2ed esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_abbrev 0x000143ce 0x2cf esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_abbrev 0x0001469d 0x1d8 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_abbrev 0x00014875 0x54e esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_abbrev 0x00014dc3 0x13c esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .debug_abbrev 0x00014eff 0x112 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .debug_abbrev 0x00015011 0x1d9 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_abbrev 0x000151ea 0x56c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_abbrev 0x00015756 0x6ae esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .debug_abbrev 0x00015e04 0x6b0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .debug_abbrev 0x000164b4 0x151 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .debug_abbrev 0x00016605 0xfd4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_abbrev 0x000175d9 0xf37 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_abbrev 0x00018510 0xb7c esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_abbrev 0x0001908c 0x532 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_abbrev 0x000195be 0x534 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_abbrev 0x00019af2 0xdce esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_abbrev 0x0001a8c0 0x623 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_abbrev 0x0001aee3 0x1ca esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .debug_abbrev 0x0001b0ad 0x801 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_abbrev 0x0001b8ae 0xc21 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_abbrev 0x0001c4cf 0xd45 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_abbrev 0x0001d214 0x156 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .debug_abbrev 0x0001d36a 0x4c1 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_abbrev 0x0001d82b 0x56d esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .debug_abbrev 0x0001dd98 0x395 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .debug_abbrev 0x0001e12d 0x451 esp-idf/main/libmain.a(main.c.obj) + .debug_abbrev 0x0001e57e 0x2ff esp-idf/main/libmain.a(modbus_memory.c.obj) + .debug_abbrev 0x0001e87d 0x32d esp-idf/main/libmain.a(modbus_points.c.obj) + .debug_abbrev 0x0001ebaa 0x37f esp-idf/main/libmain.a(modbus_rtu.c.obj) + .debug_abbrev 0x0001ef29 0x2d9 esp-idf/main/libmain.a(config_store.c.obj) + .debug_abbrev 0x0001f202 0x4cf esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .debug_abbrev 0x0001f6d1 0x291 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + .debug_abbrev 0x0001f962 0x3e1 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .debug_abbrev 0x0001fd43 0x405 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + .debug_abbrev 0x00020148 0x30a esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + .debug_abbrev 0x00020452 0x302 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + .debug_abbrev 0x00020754 0x14 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .debug_abbrev 0x00020768 0x28 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .debug_abbrev 0x00020790 0x255 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_abbrev 0x000209e5 0x26 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .debug_abbrev 0x00020a0b 0x32a esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) + .debug_abbrev 0x00020d35 0x42f esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + .debug_abbrev 0x00021164 0x4c5 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + .debug_abbrev 0x00021629 0x23c esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_abbrev 0x00021865 0x429 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_abbrev 0x00021c8e 0x269 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_abbrev 0x00021ef7 0x661 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .debug_abbrev 0x00022558 0x488 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .debug_abbrev 0x000229e0 0x398 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + .debug_abbrev 0x00022d78 0x324 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal_iram.c.obj) + .debug_abbrev 0x0002309c 0xd4 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_periph.c.obj) + .debug_abbrev 0x00023170 0x545 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_abbrev 0x000236b5 0xbd esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .debug_abbrev 0x00023772 0x347 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .debug_abbrev 0x00023ab9 0xbe esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + .debug_abbrev 0x00023b77 0x14d esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .debug_abbrev 0x00023cc4 0xf1 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .debug_abbrev 0x00023db5 0x3eb esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .debug_abbrev 0x000241a0 0x62 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_abbrev 0x00024202 0x242 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_abbrev 0x00024444 0x668 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_abbrev 0x00024aac 0x44d esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_abbrev 0x00024ef9 0x1c3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .debug_abbrev 0x000250bc 0x192 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_abbrev 0x0002524e 0x2c9 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_abbrev 0x00025517 0x4f3 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_abbrev 0x00025a0a 0x405 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_abbrev 0x00025e0f 0x14 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .debug_abbrev 0x00025e23 0x1e9 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_abbrev 0x0002600c 0x110 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_abbrev 0x0002611c 0x238 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_abbrev 0x00026354 0x86 esp-idf/soc/libsoc.a(interrupts.c.obj) + .debug_abbrev 0x000263da 0x2d0 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .debug_abbrev 0x000266aa 0xbd esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_periph.c.obj) + .debug_abbrev 0x00026767 0x10b esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_abbrev 0x00026872 0x429 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_abbrev 0x00026c9b 0x14 C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + .debug_abbrev 0x00026caf 0x14 C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + .debug_abbrev 0x00026cc3 0x43 C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .debug_abbrev 0x00026d06 0x14 C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + .debug_abbrev 0x00026d1a 0x14 C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + .debug_abbrev 0x00026d2e 0x111 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_psa_crypto_init.c.obj) + .debug_abbrev 0x00026e3f 0x77a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .debug_abbrev 0x000275b9 0x44a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + .debug_abbrev 0x00027a03 0x1d2 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform.c.obj) + .debug_abbrev 0x00027bd5 0x15f esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform_util.c.obj) + .debug_abbrev 0x00027d34 0x213 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + .debug_abbrev 0x00027f47 0x13e esp-idf/esp_hal_security/libesp_hal_security.a(mpu_hal.c.obj) + .debug_abbrev 0x00028085 0x463 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_abbrev 0x000284e8 0xf8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_mem.c.obj) + .debug_abbrev 0x000285e0 0x91 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opv.o) + .debug_abbrev 0x00028671 0x15d C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + .debug_abbrev 0x000287ce 0x12b C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) + .debug_abbrev 0x000288f9 0x1b1 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_op.o) + .debug_abbrev 0x00028aaa 0x511 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + .debug_abbrev 0x00028fbb 0x5ce C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + .debug_abbrev 0x00029589 0x467 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .debug_abbrev 0x000299f0 0xaa C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opv.o) + .debug_abbrev 0x00029a9a 0x35c C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_term_handler.o) + .debug_abbrev 0x00029df6 0x32d C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + .debug_abbrev 0x0002a123 0x492 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + .debug_abbrev 0x0002a5b5 0x313 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + .debug_abbrev 0x0002a8c8 0x1f1 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + .debug_abbrev 0x0002aab9 0x47e C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + .debug_abbrev 0x0002af37 0xab C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_ops.o) + .debug_abbrev 0x0002afe2 0x42a C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .debug_abbrev 0x0002b40c 0x14 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + .debug_abbrev 0x0002b420 0x3f9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_abbrev 0x0002b819 0x6e C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_ctype_ctype_.c.o) + .debug_abbrev 0x0002b887 0xa7 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_ctype_tolower.c.o) + .debug_abbrev 0x0002b92e 0xa2 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_misc_init.c.o) + .debug_abbrev 0x0002b9d0 0x68 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_environ.c.o) + .debug_abbrev 0x0002ba38 0x112 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strncasecmp.c.o) + .debug_abbrev 0x0002bb4a 0xfb C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_time_time.c.o) + .debug_abbrev 0x0002bc45 0x3f2 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + .debug_abbrev 0x0002c037 0x184 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fclose.c.o) + .debug_abbrev 0x0002c1bb 0x181 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fflush.c.o) + .debug_abbrev 0x0002c33c 0x1c8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgets.c.o) + .debug_abbrev 0x0002c504 0x10b C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_flockfile_init.c.o) + .debug_abbrev 0x0002c60f 0x16a C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fopen.c.o) + .debug_abbrev 0x0002c779 0x15b C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fprintf.c.o) + .debug_abbrev 0x0002c8d4 0x15d C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_printf.c.o) + .debug_abbrev 0x0002ca31 0xac C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_sflags.c.o) + .debug_abbrev 0x0002cadd 0x1a0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_snprintf.c.o) + .debug_abbrev 0x0002cc7d 0x147 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_strtol.c.o) + .debug_abbrev 0x0002cdc4 0x147 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_strtoul.c.o) + .debug_abbrev 0x0002cf0b 0x370 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vfprintf.c.o) + .debug_abbrev 0x0002d27b 0x144 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vprintf.c.o) + .debug_abbrev 0x0002d3bf 0x397 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtoa_ryu.c.o) + .debug_abbrev 0x0002d756 0x94 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_log10.c.o) + .debug_abbrev 0x0002d7ea 0x75 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_pow5bits.c.o) + .debug_abbrev 0x0002d85f 0x15d C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_table.c.o) + .debug_abbrev 0x0002d9bc 0xf9 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_umul128.c.o) + .debug_abbrev 0x0002dab5 0x1a7 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtox_engine.c.o) + .debug_abbrev 0x0002dc5c 0x1b2 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fdopen.c.o) + .debug_abbrev 0x0002de0e 0x22a C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgetc.c.o) + .debug_abbrev 0x0002e038 0xeb C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_filestrput.c.o) + .debug_abbrev 0x0002e123 0x261 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fseeko.c.o) + +.debug_line 0x00000000 0xfed4d + *(.debug_line) + .debug_line 0x00000000 0x8ff esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + .debug_line 0x000008ff 0x870 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_line 0x0000116f 0x678 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .debug_line 0x000017e7 0x1577 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_line 0x00002d5e 0x12ba esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_line 0x00004018 0x25c esp-idf/esp_security/libesp_security.a(init.c.obj) + .debug_line 0x00004274 0x169b esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_line 0x0000590f 0x1084 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_line 0x00006993 0x5cd esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_line 0x00006f60 0x247 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_line 0x000071a7 0x5fe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_line 0x000077a5 0x2741 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_line 0x00009ee6 0x49c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_line 0x0000a382 0x52a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_line 0x0000a8ac 0x6ac esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_line 0x0000af58 0xdce esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_line 0x0000bd26 0xdfe esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_line 0x0000cb24 0xe6c esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_line 0x0000d990 0x10ae esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_line 0x0000ea3e 0x5c8 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_line 0x0000f006 0x40db esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_line 0x000130e1 0xb11 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_line 0x00013bf2 0x3c4 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_line 0x00013fb6 0x72a esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .debug_line 0x000146e0 0x72a esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_line 0x00014e0a 0x19c9 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_line 0x000167d3 0x618 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_line 0x00016deb 0xcfb esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_line 0x00017ae6 0x2a3 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .debug_line 0x00017d89 0x95 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .debug_line 0x00017e1e 0x1a5 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .debug_line 0x00017fc3 0xbd7 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_line 0x00018b9a 0x926 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_line 0x000194c0 0x433 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_line 0x000198f3 0x83d esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_line 0x0001a130 0x10aa esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_line 0x0001b1da 0x6af esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_line 0x0001b889 0xa3c esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_line 0x0001c2c5 0x15a esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .debug_line 0x0001c41f 0xba9 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_line 0x0001cfc8 0x11c9 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_line 0x0001e191 0xb6 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .debug_line 0x0001e247 0xa9b esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_line 0x0001ece2 0x338 esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + .debug_line 0x0001f01a 0x2e5 esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + .debug_line 0x0001f2ff 0x41d esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_line 0x0001f71c 0x9c8 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_line 0x000200e4 0x1694 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_line 0x00021778 0xb73 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .debug_line 0x000222eb 0x40d esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_line 0x000226f8 0x237 esp-idf/log/liblog.a(util.c.obj) + .debug_line 0x0002292f 0x36e esp-idf/log/liblog.a(log.c.obj) + .debug_line 0x00022c9d 0x33b esp-idf/log/liblog.a(log_write.c.obj) + .debug_line 0x00022fd8 0x17c esp-idf/log/liblog.a(log_level.c.obj) + .debug_line 0x00023154 0x468 esp-idf/log/liblog.a(tag_log_level.c.obj) + .debug_line 0x000235bc 0x57a esp-idf/log/liblog.a(log_linked_list.c.obj) + .debug_line 0x00023b36 0x713 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .debug_line 0x00024249 0x39b esp-idf/log/liblog.a(log_lock.c.obj) + .debug_line 0x000245e4 0x2190 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_line 0x00026774 0x12dd esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_line 0x00027a51 0x14e3 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_line 0x00028f34 0x93c2 esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_line 0x000322f6 0xad0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_line 0x00032dc6 0x239 esp-idf/heap/libheap.a(memory_layout.c.obj) + .debug_line 0x00032fff 0x1023 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .debug_line 0x00034022 0x1b6 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_line 0x000341d8 0x1a6 esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_line 0x0003437e 0xba4 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_line 0x00034f22 0x2a6 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_line 0x000351c8 0x8eb esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_line 0x00035ab3 0x32fc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_line 0x00038daf 0x1619 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_line 0x0003a3c8 0xa71 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_line 0x0003ae39 0x212 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_line 0x0003b04b 0x8da esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_line 0x0003b925 0x21e0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .debug_line 0x0003db05 0x196 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + .debug_line 0x0003dc9b 0x8c0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_line 0x0003e55b 0x1c27 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_line 0x00040182 0xb24 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .debug_line 0x00040ca6 0x3bbf esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_line 0x00044865 0x16c4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_line 0x00045f29 0x170f esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_line 0x00047638 0x4f3 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_line 0x00047b2b 0xadc esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_line 0x00048607 0x279 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .debug_line 0x00048880 0x9b7 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_line 0x00049237 0x4c89 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_line 0x0004dec0 0x9ed esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_line 0x0004e8ad 0x33d1 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_line 0x00051c7e 0x8ae9 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_line 0x0005a767 0x179b esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_line 0x0005bf02 0x4d4 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_line 0x0005c3d6 0x174 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .debug_line 0x0005c54a 0xd8d esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .debug_line 0x0005d2d7 0x56b esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_line 0x0005d842 0x481 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_line 0x0005dcc3 0x3f4 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_line 0x0005e0b7 0x5f6 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_line 0x0005e6ad 0x273 esp-idf/esp_libc/libesp_libc.a(init.c.obj) + .debug_line 0x0005e920 0x41f esp-idf/esp_libc/libesp_libc.a(abort.c.obj) + .debug_line 0x0005ed3f 0x663 esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + .debug_line 0x0005f3a2 0x4f9 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .debug_line 0x0005f89b 0xcff esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .debug_line 0x0006059a 0x29c esp-idf/esp_libc/libesp_libc.a(pthread.c.obj) + .debug_line 0x00060836 0x279 esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) + .debug_line 0x00060aaf 0x215e esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .debug_line 0x00062c0d 0xf39 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .debug_line 0x00063b46 0x8d0 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .debug_line 0x00064416 0x1e3 esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + .debug_line 0x000645f9 0x567 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + .debug_line 0x00064b60 0x52d esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + .debug_line 0x0006508d 0xe6 esp-idf/esp_libc/libesp_libc.a(errno.c.obj) + .debug_line 0x00065173 0x2a54 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_line 0x00067bc7 0xe93 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_line 0x00068a5a 0xb6b esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_line 0x000695c5 0x1058 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_line 0x0006a61d 0x962 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_line 0x0006af7f 0xd59 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_line 0x0006bcd8 0x264 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .debug_line 0x0006bf3c 0x28a esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .debug_line 0x0006c1c6 0x4d3 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_line 0x0006c699 0x152b esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_line 0x0006dbc4 0x25f2 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .debug_line 0x000701b6 0xb22f esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .debug_line 0x0007b3e5 0x2b9 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .debug_line 0x0007b69e 0x378f esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_line 0x0007ee2d 0x4cc0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_line 0x00083aed 0x11a2 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_line 0x00084c8f 0x8ac esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_line 0x0008553b 0x80b esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_line 0x00085d46 0x1c68 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_line 0x000879ae 0xc4e esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_line 0x000885fc 0x22b esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .debug_line 0x00088827 0x10e7 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_line 0x0008990e 0x47c1 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_line 0x0008e0cf 0x2075 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_line 0x00090144 0x3bc esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .debug_line 0x00090500 0x262a esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_line 0x00092b2a 0x369b esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .debug_line 0x000961c5 0xd65 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .debug_line 0x00096f2a 0x3915 esp-idf/main/libmain.a(main.c.obj) + .debug_line 0x0009a83f 0x24d9 esp-idf/main/libmain.a(modbus_memory.c.obj) + .debug_line 0x0009cd18 0x24f9 esp-idf/main/libmain.a(modbus_points.c.obj) + .debug_line 0x0009f211 0x22a4 esp-idf/main/libmain.a(modbus_rtu.c.obj) + .debug_line 0x000a14b5 0x16e3 esp-idf/main/libmain.a(config_store.c.obj) + .debug_line 0x000a2b98 0x34b0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .debug_line 0x000a6048 0x758 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + .debug_line 0x000a67a0 0x4f15 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .debug_line 0x000ab6b5 0x6f1c esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + .debug_line 0x000b25d1 0x105a esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + .debug_line 0x000b362b 0x1ea1 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + .debug_line 0x000b54cc 0x35d esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .debug_line 0x000b5829 0xd6 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .debug_line 0x000b58ff 0x618 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_line 0x000b5f17 0x973 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .debug_line 0x000b688a 0xda4 esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) + .debug_line 0x000b762e 0x9c1 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + .debug_line 0x000b7fef 0x1a70 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + .debug_line 0x000b9a5f 0x520 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_line 0x000b9f7f 0x24e0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_line 0x000bc45f 0xd4d esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_line 0x000bd1ac 0x6a75 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .debug_line 0x000c3c21 0x269c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .debug_line 0x000c62bd 0x1655 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + .debug_line 0x000c7912 0x98b esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal_iram.c.obj) + .debug_line 0x000c829d 0x1c8 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_periph.c.obj) + .debug_line 0x000c8465 0x3dc7 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_line 0x000cc22c 0x23c esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .debug_line 0x000cc468 0xf10 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .debug_line 0x000cd378 0x1c7 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + .debug_line 0x000cd53f 0x221 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .debug_line 0x000cd760 0x3e6 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .debug_line 0x000cdb46 0x15d7 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .debug_line 0x000cf11d 0xce esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_line 0x000cf1eb 0xfa5 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_line 0x000d0190 0x198b esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_line 0x000d1b1b 0x1d44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_line 0x000d385f 0x259 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .debug_line 0x000d3ab8 0x3ac esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_line 0x000d3e64 0x812 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_line 0x000d4676 0x2f5c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_line 0x000d75d2 0xad4 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_line 0x000d80a6 0x104 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .debug_line 0x000d81aa 0x580 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_line 0x000d872a 0x2e3 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_line 0x000d8a0d 0x36e esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_line 0x000d8d7b 0x9c esp-idf/soc/libsoc.a(interrupts.c.obj) + .debug_line 0x000d8e17 0xcf8 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .debug_line 0x000d9b0f 0x1cc esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_periph.c.obj) + .debug_line 0x000d9cdb 0x1d5 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_line 0x000d9eb0 0x4507 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_line 0x000de3b7 0x2ef C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + .debug_line 0x000de6a6 0x6a C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + .debug_line 0x000de710 0x50 C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .debug_line 0x000de760 0x66 C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + .debug_line 0x000de7c6 0x66 C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + .debug_line 0x000de82c 0x2c9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_psa_crypto_init.c.obj) + .debug_line 0x000deaf5 0x10847 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .debug_line 0x000ef33c 0x1904 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + .debug_line 0x000f0c40 0x2ef esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform.c.obj) + .debug_line 0x000f0f2f 0x264 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform_util.c.obj) + .debug_line 0x000f1193 0x6e2 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + .debug_line 0x000f1875 0x316 esp-idf/esp_hal_security/libesp_hal_security.a(mpu_hal.c.obj) + .debug_line 0x000f1b8b 0x36c1 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_line 0x000f524c 0x26a esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_mem.c.obj) + .debug_line 0x000f54b6 0x83 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opv.o) + .debug_line 0x000f5539 0xdc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + .debug_line 0x000f5615 0xc1 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) + .debug_line 0x000f56d6 0x99 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_op.o) + .debug_line 0x000f576f 0x48b C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + .debug_line 0x000f5bfa 0x3f6 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + .debug_line 0x000f5ff0 0x2d3 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .debug_line 0x000f62c3 0x89 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opv.o) + .debug_line 0x000f634c 0x8a C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_term_handler.o) + .debug_line 0x000f63d6 0x16d C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + .debug_line 0x000f6543 0x3d8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + .debug_line 0x000f691b 0x1eb C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + .debug_line 0x000f6b06 0xec C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + .debug_line 0x000f6bf2 0x499 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + .debug_line 0x000f708b 0x83 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_ops.o) + .debug_line 0x000f710e 0x285 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .debug_line 0x000f7393 0xf9 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + .debug_line 0x000f748c 0x829 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_line 0x000f7cb5 0x43 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_ctype_ctype_.c.o) + .debug_line 0x000f7cf8 0xa1 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_ctype_tolower.c.o) + .debug_line 0x000f7d99 0xa8 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_misc_init.c.o) + .debug_line 0x000f7e41 0x3a C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_environ.c.o) + .debug_line 0x000f7e7b 0x1d9 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strncasecmp.c.o) + .debug_line 0x000f8054 0xee C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_time_time.c.o) + .debug_line 0x000f8142 0xc1c C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + .debug_line 0x000f8d5e 0x12f C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fclose.c.o) + .debug_line 0x000f8e8d 0x183 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fflush.c.o) + .debug_line 0x000f9010 0x2a9 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgets.c.o) + .debug_line 0x000f92b9 0xa5 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_flockfile_init.c.o) + .debug_line 0x000f935e 0x10b C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fopen.c.o) + .debug_line 0x000f9469 0xe7 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fprintf.c.o) + .debug_line 0x000f9550 0x105 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_printf.c.o) + .debug_line 0x000f9655 0x170 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_sflags.c.o) + .debug_line 0x000f97c5 0x162 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_snprintf.c.o) + .debug_line 0x000f9927 0x43a C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_strtol.c.o) + .debug_line 0x000f9d61 0x3fe C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_strtoul.c.o) + .debug_line 0x000fa15f 0x2367 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vfprintf.c.o) + .debug_line 0x000fc4c6 0xc1 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vprintf.c.o) + .debug_line 0x000fc587 0x12e9 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtoa_ryu.c.o) + .debug_line 0x000fd870 0xd2 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_log10.c.o) + .debug_line 0x000fd942 0x97 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_pow5bits.c.o) + .debug_line 0x000fd9d9 0x608 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_table.c.o) + .debug_line 0x000fdfe1 0x1d4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_umul128.c.o) + .debug_line 0x000fe1b5 0x412 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtox_engine.c.o) + .debug_line 0x000fe5c7 0x181 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fdopen.c.o) + .debug_line 0x000fe748 0x28f C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgetc.c.o) + .debug_line 0x000fe9d7 0xdd C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_filestrput.c.o) + .debug_line 0x000feab4 0x299 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fseeko.c.o) + +.debug_frame 0x00000000 0x10f88 + *(.debug_frame) + .debug_frame 0x00000000 0x160 esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + .debug_frame 0x00000160 0x70 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_frame 0x000001d0 0x88 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .debug_frame 0x00000258 0x1a8 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_frame 0x00000400 0xe8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_frame 0x000004e8 0x40 esp-idf/esp_security/libesp_security.a(init.c.obj) + .debug_frame 0x00000528 0x130 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_frame 0x00000658 0x220 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_frame 0x00000878 0x88 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_frame 0x00000900 0x58 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_frame 0x00000958 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_frame 0x00000980 0x340 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_frame 0x00000cc0 0x70 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_frame 0x00000d30 0x58 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_frame 0x00000d88 0xa0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_frame 0x00000e28 0x100 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_frame 0x00000f28 0x130 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_frame 0x00001058 0x130 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_frame 0x00001188 0x130 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_frame 0x000012b8 0xd0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_frame 0x00001388 0x328 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_frame 0x000016b0 0xa0 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_frame 0x00001750 0x58 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_frame 0x000017a8 0x88 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .debug_frame 0x00001830 0x1f0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_frame 0x00001a20 0x130 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_frame 0x00001b50 0xa0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_frame 0x00001bf0 0xe8 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_frame 0x00001cd8 0x40 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .debug_frame 0x00001d18 0x88 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_frame 0x00001da0 0x40 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_frame 0x00001de0 0x58 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_frame 0x00001e38 0x58 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_frame 0x00001e90 0x190 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_frame 0x00002020 0xa0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_frame 0x000020c0 0xd0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_frame 0x00002190 0x148 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_frame 0x000022d8 0xb8 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_frame 0x00002390 0x100 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_frame 0x00002490 0x28 esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + .debug_frame 0x000024b8 0x28 esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + .debug_frame 0x000024e0 0xb8 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_frame 0x00002598 0xd0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_frame 0x00002668 0x178 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_frame 0x000027e0 0xb8 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .debug_frame 0x00002898 0x40 esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_frame 0x000028d8 0x40 esp-idf/log/liblog.a(util.c.obj) + .debug_frame 0x00002918 0x40 esp-idf/log/liblog.a(log.c.obj) + .debug_frame 0x00002958 0x58 esp-idf/log/liblog.a(log_write.c.obj) + .debug_frame 0x000029b0 0x40 esp-idf/log/liblog.a(log_level.c.obj) + .debug_frame 0x000029f0 0x88 esp-idf/log/liblog.a(tag_log_level.c.obj) + .debug_frame 0x00002a78 0x88 esp-idf/log/liblog.a(log_linked_list.c.obj) + .debug_frame 0x00002b00 0xb8 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .debug_frame 0x00002bb8 0x58 esp-idf/log/liblog.a(log_lock.c.obj) + .debug_frame 0x00002c10 0x358 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_frame 0x00002f68 0xd0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_frame 0x00003038 0x2b0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_frame 0x000032e8 0x250 esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_frame 0x00003538 0x88 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_frame 0x000035c0 0xb8 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .debug_frame 0x00003678 0x40 esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_frame 0x000036b8 0xe8 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_frame 0x000037a0 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_frame 0x00003810 0x100 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_frame 0x00003910 0x2c8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_frame 0x00003bd8 0x268 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_frame 0x00003e40 0xd0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_frame 0x00003f10 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_frame 0x00003f68 0x88 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_frame 0x00003ff0 0x298 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .debug_frame 0x00004288 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + .debug_frame 0x000042c8 0xa0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_frame 0x00004368 0xb8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_frame 0x00004420 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .debug_frame 0x00004490 0x3a0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_frame 0x00004830 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_frame 0x00004888 0xe8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_frame 0x00004970 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_frame 0x00004998 0x160 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_frame 0x00004af8 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .debug_frame 0x00004b20 0xd0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_frame 0x00004bf0 0x6a0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_frame 0x00005290 0x70 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_frame 0x00005300 0x3a0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_frame 0x000056a0 0x820 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_frame 0x00005ec0 0x1c0 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_frame 0x00006080 0x40 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .debug_frame 0x000060c0 0x100 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .debug_frame 0x000061c0 0xb8 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_frame 0x00006278 0x40 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_frame 0x000062b8 0x40 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_frame 0x000062f8 0x88 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_frame 0x00006380 0x58 esp-idf/esp_libc/libesp_libc.a(init.c.obj) + .debug_frame 0x000063d8 0x28 esp-idf/esp_libc/libesp_libc.a(abort.c.obj) + .debug_frame 0x00006400 0x70 esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + .debug_frame 0x00006470 0x148 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .debug_frame 0x000065b8 0x250 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .debug_frame 0x00006808 0x58 esp-idf/esp_libc/libesp_libc.a(pthread.c.obj) + .debug_frame 0x00006860 0x40 esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) + .debug_frame 0x000068a0 0x358 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .debug_frame 0x00006bf8 0x148 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .debug_frame 0x00006d40 0x1f0 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .debug_frame 0x00006f30 0x58 esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + .debug_frame 0x00006f88 0xa0 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + .debug_frame 0x00007028 0x70 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + .debug_frame 0x00007098 0x28 esp-idf/esp_libc/libesp_libc.a(errno.c.obj) + .debug_frame 0x000070c0 0x4a8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_frame 0x00007568 0x160 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_frame 0x000076c8 0xe8 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_frame 0x000077b0 0x130 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_frame 0x000078e0 0xd0 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_frame 0x000079b0 0xb8 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_frame 0x00007a68 0x58 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .debug_frame 0x00007ac0 0x58 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .debug_frame 0x00007b18 0x58 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_frame 0x00007b70 0x100 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_frame 0x00007c70 0x2f8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .debug_frame 0x00007f68 0x700 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .debug_frame 0x00008668 0x40 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .debug_frame 0x000086a8 0x970 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_frame 0x00009018 0x4c0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_frame 0x000094d8 0x220 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_frame 0x000096f8 0x130 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_frame 0x00009828 0x40 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_frame 0x00009868 0x208 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_frame 0x00009a70 0x70 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_frame 0x00009ae0 0x70 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .debug_frame 0x00009b50 0xe8 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_frame 0x00009c38 0x340 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_frame 0x00009f78 0x148 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_frame 0x0000a0c0 0xe8 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .debug_frame 0x0000a1a8 0x358 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_frame 0x0000a500 0x358 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .debug_frame 0x0000a858 0x1a8 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .debug_frame 0x0000aa00 0x130 esp-idf/main/libmain.a(main.c.obj) + .debug_frame 0x0000ab30 0x328 esp-idf/main/libmain.a(modbus_memory.c.obj) + .debug_frame 0x0000ae58 0x2b0 esp-idf/main/libmain.a(modbus_points.c.obj) + .debug_frame 0x0000b108 0x178 esp-idf/main/libmain.a(modbus_rtu.c.obj) + .debug_frame 0x0000b280 0x118 esp-idf/main/libmain.a(config_store.c.obj) + .debug_frame 0x0000b398 0x3a0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .debug_frame 0x0000b738 0xa0 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + .debug_frame 0x0000b7d8 0x430 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .debug_frame 0x0000bc08 0x3a0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + .debug_frame 0x0000bfa8 0x118 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + .debug_frame 0x0000c0c0 0xa0 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + .debug_frame 0x0000c160 0x70 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_frame 0x0000c1d0 0xe8 esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) + .debug_frame 0x0000c2b8 0xa0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + .debug_frame 0x0000c358 0x190 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + .debug_frame 0x0000c4e8 0xe8 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_frame 0x0000c5d0 0x250 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_frame 0x0000c820 0x130 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_frame 0x0000c950 0x5c8 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .debug_frame 0x0000cf18 0x2c8 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .debug_frame 0x0000d1e0 0x280 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + .debug_frame 0x0000d460 0x88 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal_iram.c.obj) + .debug_frame 0x0000d4e8 0x250 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_frame 0x0000d738 0x88 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .debug_frame 0x0000d7c0 0x40 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + .debug_frame 0x0000d800 0x58 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .debug_frame 0x0000d858 0x28 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .debug_frame 0x0000d880 0x118 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .debug_frame 0x0000d998 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_frame 0x0000d9c0 0xa0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_frame 0x0000da60 0x1d8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_frame 0x0000dc38 0x130 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_frame 0x0000dd68 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .debug_frame 0x0000dda8 0x58 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_frame 0x0000de00 0xd0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_frame 0x0000ded0 0x268 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_frame 0x0000e138 0xb8 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_frame 0x0000e1f0 0x40 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_frame 0x0000e230 0x58 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_frame 0x0000e288 0x28 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_frame 0x0000e2b0 0xb8 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .debug_frame 0x0000e368 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_frame 0x0000e390 0x460 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_frame 0x0000e7f0 0x40 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_psa_crypto_init.c.obj) + .debug_frame 0x0000e830 0x10c0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .debug_frame 0x0000f8f0 0x148 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + .debug_frame 0x0000fa38 0x88 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform.c.obj) + .debug_frame 0x0000fac0 0x40 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform_util.c.obj) + .debug_frame 0x0000fb00 0x148 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + .debug_frame 0x0000fc48 0x28 esp-idf/esp_hal_security/libesp_hal_security.a(mpu_hal.c.obj) + .debug_frame 0x0000fc70 0x388 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_frame 0x0000fff8 0x40 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_mem.c.obj) + .debug_frame 0x00010038 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opv.o) + .debug_frame 0x00010060 0x40 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + .debug_frame 0x000100a0 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) + .debug_frame 0x000100c8 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_op.o) + .debug_frame 0x000100f0 0x88 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + .debug_frame 0x00010178 0x88 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + .debug_frame 0x00010200 0xd0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .debug_frame 0x000102d0 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opv.o) + .debug_frame 0x000102f8 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + .debug_frame 0x00010320 0xa0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + .debug_frame 0x000103c0 0x88 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + .debug_frame 0x00010448 0x58 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + .debug_frame 0x000104a0 0xd0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + .debug_frame 0x00010570 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_ops.o) + .debug_frame 0x00010598 0x130 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .debug_frame 0x000106c8 0x280 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_frame 0x00010948 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_ctype_tolower.c.o) + .debug_frame 0x00010970 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_misc_init.c.o) + .debug_frame 0x00010998 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strncasecmp.c.o) + .debug_frame 0x000109c0 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_time_time.c.o) + .debug_frame 0x000109e8 0x100 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + .debug_frame 0x00010ae8 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fclose.c.o) + .debug_frame 0x00010b10 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fflush.c.o) + .debug_frame 0x00010b38 0x40 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgets.c.o) + .debug_frame 0x00010b78 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_flockfile_init.c.o) + .debug_frame 0x00010ba0 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fopen.c.o) + .debug_frame 0x00010bc8 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fprintf.c.o) + .debug_frame 0x00010bf0 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_printf.c.o) + .debug_frame 0x00010c18 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_sflags.c.o) + .debug_frame 0x00010c40 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_snprintf.c.o) + .debug_frame 0x00010c68 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_strtol.c.o) + .debug_frame 0x00010c90 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_strtoul.c.o) + .debug_frame 0x00010cb8 0x58 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vfprintf.c.o) + .debug_frame 0x00010d10 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vprintf.c.o) + .debug_frame 0x00010d38 0x58 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtoa_ryu.c.o) + .debug_frame 0x00010d90 0x40 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_log10.c.o) + .debug_frame 0x00010dd0 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_pow5bits.c.o) + .debug_frame 0x00010df8 0x58 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_table.c.o) + .debug_frame 0x00010e50 0x40 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_umul128.c.o) + .debug_frame 0x00010e90 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtox_engine.c.o) + .debug_frame 0x00010eb8 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fdopen.c.o) + .debug_frame 0x00010ee0 0x40 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgetc.c.o) + .debug_frame 0x00010f20 0x28 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_filestrput.c.o) + .debug_frame 0x00010f48 0x40 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fseeko.c.o) + +.debug_str 0x00000000 0x3b978 + *(.debug_str) + .debug_str 0x00000000 0x3b978 esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + 0x1559 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0x581 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + 0xbfd (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x1082 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0xf2c (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_security/libesp_security.a(init.c.obj) + 0x31d (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x2b82 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xd73 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0xe75 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0x36f (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + 0xb57 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x1c80 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0xd09 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x1417 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0xdb6 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0xe61 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x2146 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x833 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x80b (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x63a (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x27bd (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0xe63 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x96d (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + 0x29db (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + 0x758 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x35dc (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0x499 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0xd01 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + 0x97e (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + 0x9e (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + 0x93 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x32ab (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + 0x2158 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0xa0e (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x2ad7 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x3330 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x5d2 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0xf74 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + 0x9d (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x665 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0xe6b (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + 0x9b (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0xba3 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + 0x977 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + 0x2e1 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x186a (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x1938 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0xd76 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0xbff (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/log/liblog.a(log_timestamp.c.obj) + 0x3b9 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/log/liblog.a(util.c.obj) + 0x96a (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/log/liblog.a(log.c.obj) + 0x3f4 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/log/liblog.a(log_write.c.obj) + 0x431 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/log/liblog.a(log_level.c.obj) + 0x342 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/log/liblog.a(tag_log_level.c.obj) + 0x4b2 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/log/liblog.a(log_linked_list.c.obj) + 0x42e (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/log/liblog.a(log_binary_heap.c.obj) + 0x44d (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/log/liblog.a(log_lock.c.obj) + 0x9d0 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x1304 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0xf22 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0xa1f (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + 0xa42 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0xc60 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0xbe0 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x650 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + 0x923 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/soc/libsoc.a(dport_access.c.obj) + 0x2b8 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x58e (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + 0x2db (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x10fc (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x1385 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0xf6a (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x1f88 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + 0x334 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + 0x11d7 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + 0x130e (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + 0x313 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x769 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + 0x15f8 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + 0x21e8 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x3e36 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x1843 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x1e53 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + 0x17fd (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0x190e (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + 0x36c (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0xd7b (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x597c (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0x68f (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xe66 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x2378 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x1347 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/freertos/libfreertos.a(portasm.S.obj) + 0x9e (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + 0x2c4 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + 0xb95 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x3b7 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/freertos/libfreertos.a(port_common.c.obj) + 0x492 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x378 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x3c0 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_libc/libesp_libc.a(init.c.obj) + 0x35b (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_libc/libesp_libc.a(abort.c.obj) + 0x2f2 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + 0x394 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + 0x424 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0xfa9 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_libc/libesp_libc.a(pthread.c.obj) + 0x3cc (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) + 0x2c3 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + 0xd30 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + 0xdc2 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + 0x621 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + 0x2d4 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + 0xf4f (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + 0x8f8 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_libc/libesp_libc.a(errno.c.obj) + 0x26e (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x1623 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + 0xfd4 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0xc67 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + 0x77a (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + 0x481 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + 0x11cc (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + 0x405 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + 0x362 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0x4a9 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x1972 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x23c8 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x3673 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + 0x38c (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x8f92 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x85f8 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x6d79 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x12d7 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + 0x11e2 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x86f7 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0x14ae (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + 0x380 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x21e7 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x33ab (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x52eb (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + 0xb7c (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x12d6 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + 0x1367 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/vfs/libvfs.a(nullfs.c.obj) + 0x1581 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/main/libmain.a(main.c.obj) + 0x1c25 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/main/libmain.a(modbus_memory.c.obj) + 0xb23 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/main/libmain.a(modbus_points.c.obj) + 0x9e7 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/main/libmain.a(modbus_rtu.c.obj) + 0x7a0 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/main/libmain.a(config_store.c.obj) + 0x570 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x2659 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x15e6 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0xfd0 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x10c8 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + 0x8ef (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + 0xb82 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + 0x83 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + 0x9b (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0x3f8 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x9b (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) + 0x13cd (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + 0x1df0 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x1892 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + 0x4c1 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x1abf (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0xd69 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x22ef (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + 0x191e (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + 0x142f (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal_iram.c.obj) + 0xa96 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_periph.c.obj) + 0xa11 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x1425 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + 0x3c0 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + 0xd87 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + 0x31f (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + 0x32e (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + 0x305 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x2469 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x2a7 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + 0xee8 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x2638 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x1785 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + 0x16d3 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x360 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0xbcc (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x1423 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x2c27 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + 0x9b (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + 0xc4b (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + 0x354 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/hal/libhal.a(brownout_hal.c.obj) + 0x16ef (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/soc/libsoc.a(interrupts.c.obj) + 0x8d2 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + 0x7e5 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_periph.c.obj) + 0x969 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + 0x32d (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0xf99 (size before relaxing) + .debug_str 0x0003b978 0x0 C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + 0x82 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_psa_crypto_init.c.obj) + 0x3da (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + 0x52cd (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + 0xad3 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform.c.obj) + 0x38f (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform_util.c.obj) + 0x2e6 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + 0x6c9 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/esp_hal_security/libesp_hal_security.a(mpu_hal.c.obj) + 0x351 (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x24be (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_mem.c.obj) + 0x2d4 (size before relaxing) + .debug_str 0x0003b978 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opv.o) + 0x117 (size before relaxing) + .debug_str 0x0003b978 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + 0x19e (size before relaxing) + .debug_str 0x0003b978 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) + 0x170 (size before relaxing) + .debug_str 0x0003b978 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_op.o) + 0x2ae (size before relaxing) + .debug_str 0x0003b978 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + 0xb27 (size before relaxing) + .debug_str 0x0003b978 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + 0xd6d (size before relaxing) + .debug_str 0x0003b978 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + 0x92c (size before relaxing) + .debug_str 0x0003b978 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opv.o) + 0x12d (size before relaxing) + .debug_str 0x0003b978 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_term_handler.o) + 0x792 (size before relaxing) + .debug_str 0x0003b978 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + 0x438 (size before relaxing) + .debug_str 0x0003b978 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + 0x960 (size before relaxing) + .debug_str 0x0003b978 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + 0x49c (size before relaxing) + .debug_str 0x0003b978 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + 0x21f (size before relaxing) + .debug_str 0x0003b978 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + 0x8db (size before relaxing) + .debug_str 0x0003b978 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_ops.o) + 0x10c (size before relaxing) + .debug_str 0x0003b978 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + 0x99c (size before relaxing) + .debug_str 0x0003b978 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + 0xda (size before relaxing) + .debug_str 0x0003b978 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0xcef (size before relaxing) + .debug_str 0x0003b978 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_ctype_ctype_.c.o) + 0x191 (size before relaxing) + .debug_str 0x0003b978 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_ctype_tolower.c.o) + 0x193 (size before relaxing) + .debug_str 0x0003b978 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_misc_init.c.o) + 0x1cd (size before relaxing) + .debug_str 0x0003b978 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_environ.c.o) + 0x125 (size before relaxing) + .debug_str 0x0003b978 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strncasecmp.c.o) + 0x1ab (size before relaxing) + .debug_str 0x0003b978 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_time_time.c.o) + 0x1e6 (size before relaxing) + .debug_str 0x0003b978 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + 0x596 (size before relaxing) + .debug_str 0x0003b978 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fclose.c.o) + 0x264 (size before relaxing) + .debug_str 0x0003b978 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fflush.c.o) + 0x293 (size before relaxing) + .debug_str 0x0003b978 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgets.c.o) + 0x2a5 (size before relaxing) + .debug_str 0x0003b978 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_flockfile_init.c.o) + 0x292 (size before relaxing) + .debug_str 0x0003b978 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fopen.c.o) + 0x245 (size before relaxing) + .debug_str 0x0003b978 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fprintf.c.o) + 0x258 (size before relaxing) + .debug_str 0x0003b978 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_printf.c.o) + 0x257 (size before relaxing) + .debug_str 0x0003b978 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_sflags.c.o) + 0x1c5 (size before relaxing) + .debug_str 0x0003b978 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_snprintf.c.o) + 0x2b1 (size before relaxing) + .debug_str 0x0003b978 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_strtol.c.o) + 0x1fc (size before relaxing) + .debug_str 0x0003b978 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_strtoul.c.o) + 0x1e7 (size before relaxing) + .debug_str 0x0003b978 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vfprintf.c.o) + 0x443 (size before relaxing) + .debug_str 0x0003b978 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vprintf.c.o) + 0x258 (size before relaxing) + .debug_str 0x0003b978 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtoa_ryu.c.o) + 0x497 (size before relaxing) + .debug_str 0x0003b978 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_log10.c.o) + 0x1c1 (size before relaxing) + .debug_str 0x0003b978 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_pow5bits.c.o) + 0x1b4 (size before relaxing) + .debug_str 0x0003b978 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_table.c.o) + 0x2c7 (size before relaxing) + .debug_str 0x0003b978 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_umul128.c.o) + 0x21a (size before relaxing) + .debug_str 0x0003b978 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtox_engine.c.o) + 0x259 (size before relaxing) + .debug_str 0x0003b978 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fdopen.c.o) + 0x38d (size before relaxing) + .debug_str 0x0003b978 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgetc.c.o) + 0x378 (size before relaxing) + .debug_str 0x0003b978 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_filestrput.c.o) + 0x240 (size before relaxing) + .debug_str 0x0003b978 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fseeko.c.o) + 0x3cc (size before relaxing) + +.debug_loc 0x00000000 0x72dc7 + *(.debug_loc) + .debug_loc 0x00000000 0x272 esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + .debug_loc 0x00000272 0x10c esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_loc 0x0000037e 0x4d esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .debug_loc 0x000003cb 0x720 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_loc 0x00000aeb 0x68e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_loc 0x00001179 0x621 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_loc 0x0000179a 0x7c8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_loc 0x00001f62 0x12f esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_loc 0x00002091 0x5c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_loc 0x000020ed 0x1204 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_loc 0x000032f1 0x1a5 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_loc 0x00003496 0x14c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_loc 0x000035e2 0x2dd esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_loc 0x000038bf 0x48f esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_loc 0x00003d4e 0x456 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_loc 0x000041a4 0x1f2 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_loc 0x00004396 0x9b0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_loc 0x00004d46 0x18a esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_loc 0x00004ed0 0x16cc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_loc 0x0000659c 0x322 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_loc 0x000068be 0x13a esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_loc 0x000069f8 0x15 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .debug_loc 0x00006a0d 0x19d esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_loc 0x00006baa 0x4c6 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_loc 0x00007070 0x62 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_loc 0x000070d2 0x2c0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_loc 0x00007392 0x15 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .debug_loc 0x000073a7 0x262 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_loc 0x00007609 0xf2 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_loc 0x000076fb 0x4a esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_loc 0x00007745 0xa7 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_loc 0x000077ec 0x370 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_loc 0x00007b5c 0x84 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_loc 0x00007be0 0x117 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_loc 0x00007cf7 0x23e esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_loc 0x00007f35 0x6c6 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_loc 0x000085fb 0x433 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_loc 0x00008a2e 0x38 esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + .debug_loc 0x00008a66 0xd0 esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + .debug_loc 0x00008b36 0x45 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_loc 0x00008b7b 0x240 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_loc 0x00008dbb 0x1102 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_loc 0x00009ebd 0x54b esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .debug_loc 0x0000a408 0x22 esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_loc 0x0000a42a 0x2a esp-idf/log/liblog.a(log.c.obj) + .debug_loc 0x0000a454 0x22 esp-idf/log/liblog.a(log_write.c.obj) + .debug_loc 0x0000a476 0x4e esp-idf/log/liblog.a(log_level.c.obj) + .debug_loc 0x0000a4c4 0xae esp-idf/log/liblog.a(tag_log_level.c.obj) + .debug_loc 0x0000a572 0x1a7 esp-idf/log/liblog.a(log_linked_list.c.obj) + .debug_loc 0x0000a719 0x2d1 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .debug_loc 0x0000a9ea 0x125d esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_loc 0x0000bc47 0x821 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_loc 0x0000c468 0x8df esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_loc 0x0000cd47 0xbf88 esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_loc 0x00018ccf 0x3a1 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_loc 0x00019070 0x859 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .debug_loc 0x000198c9 0x44 esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_loc 0x0001990d 0x573 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_loc 0x00019e80 0x176 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_loc 0x00019ff6 0x179 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_loc 0x0001a16f 0x1b04 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_loc 0x0001bc73 0xa42 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_loc 0x0001c6b5 0x2dd esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_loc 0x0001c992 0x9e esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_loc 0x0001ca30 0x28b esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_loc 0x0001ccbb 0x1864 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .debug_loc 0x0001e51f 0x360 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_loc 0x0001e87f 0x5f1 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_loc 0x0001ee70 0x116 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .debug_loc 0x0001ef86 0x133a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_loc 0x000202c0 0x152 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_loc 0x00020412 0x56b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_loc 0x0002097d 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_loc 0x000209a1 0xca esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_loc 0x00020a6b 0x2b esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .debug_loc 0x00020a96 0x279 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_loc 0x00020d0f 0x1842 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_loc 0x00022551 0x44 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_loc 0x00022595 0x1f8a esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_loc 0x0002451f 0x37d3 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_loc 0x00027cf2 0x803 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_loc 0x000284f5 0x4dd esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .debug_loc 0x000289d2 0x1d7 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_loc 0x00028ba9 0xcc esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_loc 0x00028c75 0x22 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_loc 0x00028c97 0x8c esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_loc 0x00028d23 0x75 esp-idf/esp_libc/libesp_libc.a(abort.c.obj) + .debug_loc 0x00028d98 0x22f esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + .debug_loc 0x00028fc7 0x290 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .debug_loc 0x00029257 0x38a esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .debug_loc 0x000295e1 0x56 esp-idf/esp_libc/libesp_libc.a(pthread.c.obj) + .debug_loc 0x00029637 0x74 esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) + .debug_loc 0x000296ab 0x146f esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .debug_loc 0x0002ab1a 0x57c esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .debug_loc 0x0002b096 0x344 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .debug_loc 0x0002b3da 0x2b esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + .debug_loc 0x0002b405 0x94 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + .debug_loc 0x0002b499 0x52 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + .debug_loc 0x0002b4eb 0x156a esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_loc 0x0002ca55 0x53e esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_loc 0x0002cf93 0x569 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_loc 0x0002d4fc 0x648 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_loc 0x0002db44 0x472 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_loc 0x0002dfb6 0x29f esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_loc 0x0002e255 0x15 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_loc 0x0002e26a 0x484 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_loc 0x0002e6ee 0x1397 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .debug_loc 0x0002fa85 0x4d19 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .debug_loc 0x0003479e 0x4e esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .debug_loc 0x000347ec 0x1fec esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_loc 0x000367d8 0x3a9a esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_loc 0x0003a272 0x63c esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_loc 0x0003a8ae 0x1d9 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_loc 0x0003aa87 0x1e6 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_loc 0x0003ac6d 0xf30 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_loc 0x0003bb9d 0x4f3 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_loc 0x0003c090 0x6fe esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_loc 0x0003c78e 0x38ce esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_loc 0x0004005c 0x1383 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_loc 0x000413df 0x15e5 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_loc 0x000429c4 0x1f1a esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .debug_loc 0x000448de 0x34e esp-idf/vfs/libvfs.a(nullfs.c.obj) + .debug_loc 0x00044c2c 0xc4a esp-idf/main/libmain.a(main.c.obj) + .debug_loc 0x00045876 0x16a8 esp-idf/main/libmain.a(modbus_memory.c.obj) + .debug_loc 0x00046f1e 0xff2 esp-idf/main/libmain.a(modbus_points.c.obj) + .debug_loc 0x00047f10 0x10f2 esp-idf/main/libmain.a(modbus_rtu.c.obj) + .debug_loc 0x00049002 0x7b3 esp-idf/main/libmain.a(config_store.c.obj) + .debug_loc 0x000497b5 0x16c3 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .debug_loc 0x0004ae78 0x116 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + .debug_loc 0x0004af8e 0x2532 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .debug_loc 0x0004d4c0 0x3c19 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + .debug_loc 0x000510d9 0xa4a esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + .debug_loc 0x00051b23 0xf97 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + .debug_loc 0x00052aba 0x177 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_loc 0x00052c31 0x570 esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) + .debug_loc 0x000531a1 0x304 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + .debug_loc 0x000534a5 0xf84 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + .debug_loc 0x00054429 0x9a esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_loc 0x000544c3 0x12df esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_loc 0x000557a2 0x841 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_loc 0x00055fe3 0x306c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .debug_loc 0x0005904f 0x950 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .debug_loc 0x0005999f 0xce1 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + .debug_loc 0x0005a680 0x41f esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal_iram.c.obj) + .debug_loc 0x0005aa9f 0x2237 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_loc 0x0005ccd6 0x6b4 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .debug_loc 0x0005d38a 0xb7 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .debug_loc 0x0005d441 0xbc0 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .debug_loc 0x0005e001 0x1d5 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_loc 0x0005e1d6 0xca7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_loc 0x0005ee7d 0x793 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_loc 0x0005f610 0x16 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_loc 0x0005f626 0x11c esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_loc 0x0005f742 0xe6f esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_loc 0x000605b1 0x50a esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_loc 0x00060abb 0xd9 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_loc 0x00060b94 0xa9 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_loc 0x00060c3d 0x662 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .debug_loc 0x0006129f 0x23 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_loc 0x000612c2 0x2237 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_loc 0x000634f9 0x15 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_psa_crypto_init.c.obj) + .debug_loc 0x0006350e 0xcfec esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .debug_loc 0x000704fa 0xc05 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + .debug_loc 0x000710ff 0x7c esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform.c.obj) + .debug_loc 0x0007117b 0x2a esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform_util.c.obj) + .debug_loc 0x000711a5 0x38e esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + .debug_loc 0x00071533 0xa9 esp-idf/esp_hal_security/libesp_hal_security.a(mpu_hal.c.obj) + .debug_loc 0x000715dc 0x17c0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_loc 0x00072d9c 0x2b esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_mem.c.obj) + +.debug_macinfo + *(.debug_macinfo) + +.debug_pubtypes + *(.debug_pubtypes) + +.debug_ranges 0x00000000 0x7d10 + *(.debug_ranges) + .debug_ranges 0x00000000 0x78 esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + .debug_ranges 0x00000078 0x28 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_ranges 0x000000a0 0x30 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .debug_ranges 0x000000d0 0xa8 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_ranges 0x00000178 0x128 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_ranges 0x000002a0 0x18 esp-idf/esp_security/libesp_security.a(init.c.obj) + .debug_ranges 0x000002b8 0xa8 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_ranges 0x00000360 0xb8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_ranges 0x00000418 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_ranges 0x00000448 0x20 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_ranges 0x00000468 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_ranges 0x00000478 0x118 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_ranges 0x00000590 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_ranges 0x000005b8 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_ranges 0x000005d8 0x38 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_ranges 0x00000610 0x58 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_ranges 0x00000668 0x68 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_ranges 0x000006d0 0x68 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_ranges 0x00000738 0xc8 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_ranges 0x00000800 0x60 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_ranges 0x00000860 0x170 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_ranges 0x000009d0 0x38 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_ranges 0x00000a08 0x38 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_ranges 0x00000a40 0x30 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .debug_ranges 0x00000a70 0xa8 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_ranges 0x00000b18 0x98 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_ranges 0x00000bb0 0x38 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_ranges 0x00000be8 0x50 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_ranges 0x00000c38 0x18 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .debug_ranges 0x00000c50 0x30 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_ranges 0x00000c80 0x18 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_ranges 0x00000c98 0x20 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_ranges 0x00000cb8 0x20 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_ranges 0x00000cd8 0x88 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_ranges 0x00000d60 0x38 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_ranges 0x00000d98 0x48 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_ranges 0x00000de0 0x70 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_ranges 0x00000e50 0x88 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_ranges 0x00000ed8 0x70 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_ranges 0x00000f48 0x10 esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + .debug_ranges 0x00000f58 0x10 esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + .debug_ranges 0x00000f68 0x40 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_ranges 0x00000fa8 0x48 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_ranges 0x00000ff0 0x98 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_ranges 0x00001088 0x40 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .debug_ranges 0x000010c8 0x18 esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_ranges 0x000010e0 0x18 esp-idf/log/liblog.a(util.c.obj) + .debug_ranges 0x000010f8 0x48 esp-idf/log/liblog.a(log.c.obj) + .debug_ranges 0x00001140 0x20 esp-idf/log/liblog.a(log_write.c.obj) + .debug_ranges 0x00001160 0x18 esp-idf/log/liblog.a(log_level.c.obj) + .debug_ranges 0x00001178 0x30 esp-idf/log/liblog.a(tag_log_level.c.obj) + .debug_ranges 0x000011a8 0x30 esp-idf/log/liblog.a(log_linked_list.c.obj) + .debug_ranges 0x000011d8 0x40 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .debug_ranges 0x00001218 0x20 esp-idf/log/liblog.a(log_lock.c.obj) + .debug_ranges 0x00001238 0x1f8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_ranges 0x00001430 0xd8 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_ranges 0x00001508 0xe8 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_ranges 0x000015f0 0x188 esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_ranges 0x00001778 0x58 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_ranges 0x000017d0 0xe8 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .debug_ranges 0x000018b8 0x18 esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_ranges 0x000018d0 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_ranges 0x00001938 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_ranges 0x00001960 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_ranges 0x000019d0 0x198 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_ranges 0x00001b68 0xd0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_ranges 0x00001c38 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_ranges 0x00001c80 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_ranges 0x00001ca0 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_ranges 0x00001cd0 0x128 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .debug_ranges 0x00001df8 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + .debug_ranges 0x00001e10 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_ranges 0x00001e68 0xa0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_ranges 0x00001f08 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .debug_ranges 0x00001f48 0x1d8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_ranges 0x00002120 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_ranges 0x00002140 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_ranges 0x00002190 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_ranges 0x000021a0 0x78 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_ranges 0x00002218 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .debug_ranges 0x00002228 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_ranges 0x00002270 0x2b0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_ranges 0x00002520 0x28 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_ranges 0x00002548 0x1f8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_ranges 0x00002740 0x408 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_ranges 0x00002b48 0x128 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_ranges 0x00002c70 0x18 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .debug_ranges 0x00002c88 0x58 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .debug_ranges 0x00002ce0 0x40 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_ranges 0x00002d20 0x18 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_ranges 0x00002d38 0x18 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_ranges 0x00002d50 0x30 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_ranges 0x00002d80 0x20 esp-idf/esp_libc/libesp_libc.a(init.c.obj) + .debug_ranges 0x00002da0 0x10 esp-idf/esp_libc/libesp_libc.a(abort.c.obj) + .debug_ranges 0x00002db0 0x40 esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + .debug_ranges 0x00002df0 0x70 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .debug_ranges 0x00002e60 0xc8 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .debug_ranges 0x00002f28 0x20 esp-idf/esp_libc/libesp_libc.a(pthread.c.obj) + .debug_ranges 0x00002f48 0x18 esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) + .debug_ranges 0x00002f60 0x120 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .debug_ranges 0x00003080 0x70 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .debug_ranges 0x000030f0 0xc0 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .debug_ranges 0x000031b0 0x20 esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + .debug_ranges 0x000031d0 0x38 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + .debug_ranges 0x00003208 0x28 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + .debug_ranges 0x00003230 0x10 esp-idf/esp_libc/libesp_libc.a(errno.c.obj) + .debug_ranges 0x00003240 0x1e0 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_ranges 0x00003420 0x78 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_ranges 0x00003498 0x70 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_ranges 0x00003508 0x68 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_ranges 0x00003570 0x48 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_ranges 0x000035b8 0x40 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_ranges 0x000035f8 0x20 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .debug_ranges 0x00003618 0x20 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .debug_ranges 0x00003638 0x20 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_ranges 0x00003658 0x58 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_ranges 0x000036b0 0x150 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .debug_ranges 0x00003800 0x2c0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .debug_ranges 0x00003ac0 0x18 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .debug_ranges 0x00003ad8 0x340 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_ranges 0x00003e18 0x370 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_ranges 0x00004188 0xb8 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_ranges 0x00004240 0x68 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_ranges 0x000042a8 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_ranges 0x000042c0 0xb0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_ranges 0x00004370 0x58 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_ranges 0x000043c8 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .debug_ranges 0x000043f0 0x80 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_ranges 0x00004470 0x3f0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_ranges 0x00004860 0xe8 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_ranges 0x00004948 0x50 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .debug_ranges 0x00004998 0x138 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_ranges 0x00004ad0 0x168 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .debug_ranges 0x00004c38 0x90 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .debug_ranges 0x00004cc8 0x68 esp-idf/main/libmain.a(main.c.obj) + .debug_ranges 0x00004d30 0x110 esp-idf/main/libmain.a(modbus_memory.c.obj) + .debug_ranges 0x00004e40 0x100 esp-idf/main/libmain.a(modbus_points.c.obj) + .debug_ranges 0x00004f40 0x80 esp-idf/main/libmain.a(modbus_rtu.c.obj) + .debug_ranges 0x00004fc0 0x78 esp-idf/main/libmain.a(config_store.c.obj) + .debug_ranges 0x00005038 0x138 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .debug_ranges 0x00005170 0x38 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + .debug_ranges 0x000051a8 0x198 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .debug_ranges 0x00005340 0x230 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + .debug_ranges 0x00005570 0x90 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + .debug_ranges 0x00005600 0xb8 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + .debug_ranges 0x000056b8 0x28 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_ranges 0x000056e0 0x70 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .debug_ranges 0x00005750 0xf0 esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) + .debug_ranges 0x00005840 0x38 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + .debug_ranges 0x00005878 0xa0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + .debug_ranges 0x00005918 0x50 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_ranges 0x00005968 0x108 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_ranges 0x00005a70 0x80 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_ranges 0x00005af0 0x260 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .debug_ranges 0x00005d50 0xf0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .debug_ranges 0x00005e40 0x138 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + .debug_ranges 0x00005f78 0x30 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal_iram.c.obj) + .debug_ranges 0x00005fa8 0x128 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_ranges 0x000060d0 0x30 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .debug_ranges 0x00006100 0x18 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + .debug_ranges 0x00006118 0x20 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .debug_ranges 0x00006138 0x10 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .debug_ranges 0x00006148 0x60 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .debug_ranges 0x000061a8 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_ranges 0x000061b8 0x50 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_ranges 0x00006208 0xa0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_ranges 0x000062a8 0x68 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_ranges 0x00006310 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .debug_ranges 0x00006328 0x20 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_ranges 0x00006348 0x48 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_ranges 0x00006390 0xd0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_ranges 0x00006460 0x58 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_ranges 0x000064b8 0x18 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_ranges 0x000064d0 0x20 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_ranges 0x000064f0 0x10 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_ranges 0x00006500 0x40 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .debug_ranges 0x00006540 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_ranges 0x00006550 0x1a8 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_ranges 0x000066f8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_psa_crypto_init.c.obj) + .debug_ranges 0x00006710 0xfe0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .debug_ranges 0x000076f0 0x228 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + .debug_ranges 0x00007918 0x30 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform.c.obj) + .debug_ranges 0x00007948 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform_util.c.obj) + .debug_ranges 0x00007960 0x70 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + .debug_ranges 0x000079d0 0x58 esp-idf/esp_hal_security/libesp_hal_security.a(mpu_hal.c.obj) + .debug_ranges 0x00007a28 0x1f8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_ranges 0x00007c20 0x18 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_mem.c.obj) + .debug_ranges 0x00007c38 0xd8 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + +.debug_weaknames + *(.debug_weaknames) + +.debug_funcnames + *(.debug_funcnames) + +.debug_typenames + *(.debug_typenames) + +.debug_varnames + *(.debug_varnames) + +.debug_gnu_pubnames + *(.debug_gnu_pubnames) + +.debug_gnu_pubtypes + *(.debug_gnu_pubtypes) + +.debug_types + *(.debug_types) + +.debug_addr + *(.debug_addr) + +.debug_line_str + 0x00000000 0x16d5 + *(.debug_line_str) + .debug_line_str + 0x00000000 0x16d5 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opv.o) + 0x26e (size before relaxing) + .debug_line_str + 0x000016d5 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + 0x27a (size before relaxing) + .debug_line_str + 0x000016d5 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) + 0x274 (size before relaxing) + .debug_line_str + 0x000016d5 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_op.o) + 0x3a4 (size before relaxing) + .debug_line_str + 0x000016d5 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + 0x488 (size before relaxing) + .debug_line_str + 0x000016d5 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + 0x563 (size before relaxing) + .debug_line_str + 0x000016d5 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + 0x494 (size before relaxing) + .debug_line_str + 0x000016d5 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opv.o) + 0x26e (size before relaxing) + .debug_line_str + 0x000016d5 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_term_handler.o) + 0x49d (size before relaxing) + .debug_line_str + 0x000016d5 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + 0x43c (size before relaxing) + .debug_line_str + 0x000016d5 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + 0x399 (size before relaxing) + .debug_line_str + 0x000016d5 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + 0x372 (size before relaxing) + .debug_line_str + 0x000016d5 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + 0x308 (size before relaxing) + .debug_line_str + 0x000016d5 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + 0x390 (size before relaxing) + .debug_line_str + 0x000016d5 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_ops.o) + 0x26e (size before relaxing) + .debug_line_str + 0x000016d5 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + 0x3dc (size before relaxing) + .debug_line_str + 0x000016d5 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + 0xce (size before relaxing) + .debug_line_str + 0x000016d5 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_ctype_ctype_.c.o) + 0x18c (size before relaxing) + .debug_line_str + 0x000016d5 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_ctype_tolower.c.o) + 0x18f (size before relaxing) + .debug_line_str + 0x000016d5 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_misc_init.c.o) + 0x18c (size before relaxing) + .debug_line_str + 0x000016d5 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_environ.c.o) + 0x152 (size before relaxing) + .debug_line_str + 0x000016d5 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strncasecmp.c.o) + 0x206 (size before relaxing) + .debug_line_str + 0x000016d5 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_time_time.c.o) + 0x1f7 (size before relaxing) + .debug_line_str + 0x000016d5 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + 0x303 (size before relaxing) + .debug_line_str + 0x000016d5 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fclose.c.o) + 0x248 (size before relaxing) + .debug_line_str + 0x000016d5 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fflush.c.o) + 0x248 (size before relaxing) + .debug_line_str + 0x000016d5 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgets.c.o) + 0x245 (size before relaxing) + .debug_line_str + 0x000016d5 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_flockfile_init.c.o) + 0x246 (size before relaxing) + .debug_line_str + 0x000016d5 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fopen.c.o) + 0x24c (size before relaxing) + .debug_line_str + 0x000016d5 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fprintf.c.o) + 0x2a5 (size before relaxing) + .debug_line_str + 0x000016d5 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_printf.c.o) + 0x2a2 (size before relaxing) + .debug_line_str + 0x000016d5 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_sflags.c.o) + 0x198 (size before relaxing) + .debug_line_str + 0x000016d5 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_snprintf.c.o) + 0x2cb (size before relaxing) + .debug_line_str + 0x000016d5 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_strtol.c.o) + 0x1e7 (size before relaxing) + .debug_line_str + 0x000016d5 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_strtoul.c.o) + 0x1e9 (size before relaxing) + .debug_line_str + 0x000016d5 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vfprintf.c.o) + 0x2ea (size before relaxing) + .debug_line_str + 0x000016d5 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vprintf.c.o) + 0x2a5 (size before relaxing) + .debug_line_str + 0x000016d5 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtoa_ryu.c.o) + 0x24e (size before relaxing) + .debug_line_str + 0x000016d5 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_log10.c.o) + 0x1f3 (size before relaxing) + .debug_line_str + 0x000016d5 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_pow5bits.c.o) + 0x1fc (size before relaxing) + .debug_line_str + 0x000016d5 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_table.c.o) + 0x24a (size before relaxing) + .debug_line_str + 0x000016d5 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_umul128.c.o) + 0x1f9 (size before relaxing) + .debug_line_str + 0x000016d5 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtox_engine.c.o) + 0x259 (size before relaxing) + .debug_line_str + 0x000016d5 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fdopen.c.o) + 0x2eb (size before relaxing) + .debug_line_str + 0x000016d5 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgetc.c.o) + 0x2b1 (size before relaxing) + .debug_line_str + 0x000016d5 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_filestrput.c.o) + 0x2b3 (size before relaxing) + .debug_line_str + 0x000016d5 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fseeko.c.o) + 0x2cd (size before relaxing) + +.debug_loclists + 0x00000000 0x37f3 + *(.debug_loclists) + .debug_loclists + 0x00000000 0x36 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + .debug_loclists + 0x00000036 0x40 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) + .debug_loclists + 0x00000076 0x1c6 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + .debug_loclists + 0x0000023c 0x114 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + .debug_loclists + 0x00000350 0x60 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .debug_loclists + 0x000003b0 0x29 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opv.o) + .debug_loclists + 0x000003d9 0x5e C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + .debug_loclists + 0x00000437 0xd4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + .debug_loclists + 0x0000050b 0x96 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + .debug_loclists + 0x000005a1 0x29 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + .debug_loclists + 0x000005ca 0x131 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + .debug_loclists + 0x000006fb 0x88 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .debug_loclists + 0x00000783 0x2e C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_ctype_tolower.c.o) + .debug_loclists + 0x000007b1 0x29 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_misc_init.c.o) + .debug_loclists + 0x000007da 0xb4 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strncasecmp.c.o) + .debug_loclists + 0x0000088e 0x29 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_time_time.c.o) + .debug_loclists + 0x000008b7 0x4f6 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + .debug_loclists + 0x00000dad 0x56 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fclose.c.o) + .debug_loclists + 0x00000e03 0x54 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fflush.c.o) + .debug_loclists + 0x00000e57 0xa6 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgets.c.o) + .debug_loclists + 0x00000efd 0x5f C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fopen.c.o) + .debug_loclists + 0x00000f5c 0x34 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fprintf.c.o) + .debug_loclists + 0x00000f90 0x34 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_printf.c.o) + .debug_loclists + 0x00000fc4 0x6c C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_sflags.c.o) + .debug_loclists + 0x00001030 0x4d C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_snprintf.c.o) + .debug_loclists + 0x0000107d 0x17a C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_strtol.c.o) + .debug_loclists + 0x000011f7 0x162 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_strtoul.c.o) + .debug_loclists + 0x00001359 0xcfe C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vfprintf.c.o) + .debug_loclists + 0x00002057 0x29 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vprintf.c.o) + .debug_loclists + 0x00002080 0xade C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtoa_ryu.c.o) + .debug_loclists + 0x00002b5e 0x46 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_log10.c.o) + .debug_loclists + 0x00002ba4 0x29 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_pow5bits.c.o) + .debug_loclists + 0x00002bcd 0x5cb C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_table.c.o) + .debug_loclists + 0x00003198 0x196 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_umul128.c.o) + .debug_loclists + 0x0000332e 0x28b C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtox_engine.c.o) + .debug_loclists + 0x000035b9 0x5e C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fdopen.c.o) + .debug_loclists + 0x00003617 0xcb C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgetc.c.o) + .debug_loclists + 0x000036e2 0x17 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_filestrput.c.o) + .debug_loclists + 0x000036f9 0xfa C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fseeko.c.o) + +.debug_macro + *(.debug_macro) + +.debug_names + *(.debug_names) + +.debug_rnglists + 0x00000000 0x75e + *(.debug_rnglists) + .debug_rnglists + 0x00000000 0x13 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opv.o) + .debug_rnglists + 0x00000013 0x19 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + .debug_rnglists + 0x0000002c 0x13 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) + .debug_rnglists + 0x0000003f 0x13 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_op.o) + .debug_rnglists + 0x00000052 0x43 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + .debug_rnglists + 0x00000095 0x37 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + .debug_rnglists + 0x000000cc 0x3d C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .debug_rnglists + 0x00000109 0x13 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opv.o) + .debug_rnglists + 0x0000011c 0x1f C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + .debug_rnglists + 0x0000013b 0x3d C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + .debug_rnglists + 0x00000178 0x2b C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + .debug_rnglists + 0x000001a3 0x1f C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + .debug_rnglists + 0x000001c2 0x4c C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + .debug_rnglists + 0x0000020e 0x13 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_ops.o) + .debug_rnglists + 0x00000221 0x55 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .debug_rnglists + 0x00000276 0x13 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_ctype_tolower.c.o) + .debug_rnglists + 0x00000289 0x13 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_misc_init.c.o) + .debug_rnglists + 0x0000029c 0x2e C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strncasecmp.c.o) + .debug_rnglists + 0x000002ca 0x13 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_time_time.c.o) + .debug_rnglists + 0x000002dd 0x61 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + .debug_rnglists + 0x0000033e 0x13 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fclose.c.o) + .debug_rnglists + 0x00000351 0x13 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fflush.c.o) + .debug_rnglists + 0x00000364 0x25 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgets.c.o) + .debug_rnglists + 0x00000389 0x13 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_flockfile_init.c.o) + .debug_rnglists + 0x0000039c 0x13 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fopen.c.o) + .debug_rnglists + 0x000003af 0x13 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fprintf.c.o) + .debug_rnglists + 0x000003c2 0x13 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_printf.c.o) + .debug_rnglists + 0x000003d5 0x13 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_sflags.c.o) + .debug_rnglists + 0x000003e8 0x13 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_snprintf.c.o) + .debug_rnglists + 0x000003fb 0x2c C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_strtol.c.o) + .debug_rnglists + 0x00000427 0x2c C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_strtoul.c.o) + .debug_rnglists + 0x00000453 0xf6 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vfprintf.c.o) + .debug_rnglists + 0x00000549 0x13 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vprintf.c.o) + .debug_rnglists + 0x0000055c 0x106 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtoa_ryu.c.o) + .debug_rnglists + 0x00000662 0x19 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_log10.c.o) + .debug_rnglists + 0x0000067b 0x13 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_pow5bits.c.o) + .debug_rnglists + 0x0000068e 0x21 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_table.c.o) + .debug_rnglists + 0x000006af 0x19 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_umul128.c.o) + .debug_rnglists + 0x000006c8 0x23 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtox_engine.c.o) + .debug_rnglists + 0x000006eb 0x14 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fdopen.c.o) + .debug_rnglists + 0x000006ff 0x1a C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgetc.c.o) + .debug_rnglists + 0x00000719 0x13 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_filestrput.c.o) + .debug_rnglists + 0x0000072c 0x32 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fseeko.c.o) + +.debug_str_offsets + *(.debug_str_offsets) + +.comment 0x00000000 0x6f + *(.comment) + .comment 0x00000000 0x6f esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_security/libesp_security.a(init.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/log/liblog.a(log_timestamp.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/log/liblog.a(util.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/log/liblog.a(log.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/log/liblog.a(log_write.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/log/liblog.a(log_level.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/log/liblog.a(tag_log_level.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/log/liblog.a(log_linked_list.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/log/liblog.a(log_binary_heap.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/log/liblog.a(log_lock.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/soc/libsoc.a(dport_access.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/freertos/libfreertos.a(port_common.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_libc/libesp_libc.a(init.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_libc/libesp_libc.a(abort.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_libc/libesp_libc.a(pthread.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_libc/libesp_libc.a(errno.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/vfs/libvfs.a(nullfs.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/main/libmain.a(main.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/main/libmain.a(modbus_memory.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/main/libmain.a(modbus_points.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/main/libmain.a(modbus_rtu.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/main/libmain.a(config_store.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal_iram.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_periph.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/hal/libhal.a(brownout_hal.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/soc/libsoc.a(interrupts.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_periph.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + 0x41 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_psa_crypto_init.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform_util.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hal_security/libesp_hal_security.a(mpu_hal.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_mem.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opv.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_op.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opv.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_term_handler.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_ops.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_ctype_ctype_.c.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_ctype_tolower.c.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_misc_init.c.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_environ.c.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strncasecmp.c.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_time_time.c.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fclose.c.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fflush.c.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgets.c.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_flockfile_init.c.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fopen.c.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fprintf.c.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_printf.c.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_sflags.c.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_snprintf.c.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_strtol.c.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_strtoul.c.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vfprintf.c.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vprintf.c.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtoa_ryu.c.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_log10.c.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_pow5bits.c.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_table.c.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_umul128.c.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtox_engine.c.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fdopen.c.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgetc.c.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_filestrput.c.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fseeko.c.o) + 0x30 (size before relaxing) + +.note.GNU-stack + *(.note.GNU-stack) + +.xtensa.info 0x00000000 0x38 + *(.xtensa.info) + .xtensa.info 0x00000000 0x38 CMakeFiles/modbus_tcp_esp32.elf.dir/project_elf_src_esp32.c.obj + .xtensa.info 0x00000038 0x0 esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_stdio/libesp_stdio.a(stdio_simple.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_security/libesp_security.a(init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(system_time.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/log/liblog.a(log_timestamp.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/log/liblog.a(util.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/log/liblog.a(log.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/log/liblog.a(log_write.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/log/liblog.a(log_level.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/log/liblog.a(tag_log_level.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/log/liblog.a(log_linked_list.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/log/liblog.a(log_lock.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/heap/libheap.a(memory_layout.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/soc/libsoc.a(dport_access.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_uart.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(list.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_libc/libesp_libc.a(init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_libc/libesp_libc.a(abort.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_libc/libesp_libc.a(pthread.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_libc/libesp_libc.a(errno.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_libc/libesp_libc.a(random.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .xtensa.info 0x00000038 0x0 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xtensa.info 0x00000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .xtensa.info 0x00000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .xtensa.info 0x00000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .xtensa.info 0x00000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .xtensa.info 0x00000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xtensa.info 0x00000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .xtensa.info 0x00000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .xtensa.info 0x00000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .xtensa.info 0x00000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .xtensa.info 0x00000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .xtensa.info 0x00000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/vfs/libvfs.a(nullfs.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_dma.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/main/libmain.a(main.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/main/libmain.a(modbus_memory.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/main/libmain.a(modbus_points.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/main/libmain.a(modbus_rtu.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/main/libmain.a(config_store.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .xtensa.info 0x00000038 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .xtensa.info 0x00000038 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a(spi_periph.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal_iram.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_periph.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/soc/libsoc.a(interrupts.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_periph.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .xtensa.info 0x00000038 0x0 C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + .xtensa.info 0x00000038 0x0 C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + .xtensa.info 0x00000038 0x0 C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .xtensa.info 0x00000038 0x0 C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + .xtensa.info 0x00000038 0x0 C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_psa_crypto_init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_client.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_storage.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_hardware.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_xts.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_md5.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(constant_time.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform_util.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_hash.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hal_security/libesp_hal_security.a(sha_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hal_security/libesp_hal_security.a(aes_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hal_security/libesp_hal_security.a(mpu_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_libc/libesp_libc.a(rand.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_mem.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opv.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_op.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_unex_handler.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opv.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_term_handler.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_ops.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_bswapdi2.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_cmpdf2.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_truncdfsf2.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_moddi3.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + .xtensa.info 0x00000038 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memcpy.S.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memset.S.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strcmp.S.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strcpy.S.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strlen.S.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strncpy.S.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_ctype_ctype_.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_ctype_tolower.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_misc_init.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_search_qsort.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_div.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_environ.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_itoa.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_utoa.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_bzero.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memcmp.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memmove.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcat.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strchr.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcspn.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror_r.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strlcat.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strlcpy.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strncasecmp.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strncmp.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strstr.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_time_time.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fclose.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ferror.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fflush.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgets.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_flockfile_init.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fopen.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fprintf.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputc.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputs.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fread.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fwrite.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_printf.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_putchar.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_puts.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_setbuf.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_setvbuf.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_sflags.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_snprintf.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_strtol.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_strtoul.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vfprintf.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vprintf.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtoa_ryu.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_log10.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_pow5bits.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_table.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_umul128.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strnlen.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtox_engine.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fdopen.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgetc.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_filestrput.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fseeko.c.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_ashldi3.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_ashrdi3.o) + .xtensa.info 0x00000038 0x0 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_lshrdi3.o) + +.xt.prop 0x00000000 0x7e0 + *(.xt.prop .xt.prop.* .gnu.linkonce.prop.*) + .xt.prop._ZN14intrusive_listI14NVSHandleEntryE5eraseENS1_8iteratorE + 0x00000000 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN3nvs4Item6getKeyEPcj + 0x00000054 0x48 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .xt.prop._ZSt9__fill_a1IhiEN9__gnu_cxx11__enable_ifIXaasrSt9__is_byteIT_E7__valueoosrSt10__are_sameIS3_T0_E7__valuesrSt20__memcpyable_integerIS6_E7__widthEvE6__typeEPS3_SC_RKS6_ + 0x0000009c 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x30 (size before relaxing) + .xt.prop._ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE17clearAndFreeNodesEv + 0x000000c0 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x48 (size before relaxing) + .xt.prop._ZNKSt14default_deleteIA_N3nvs4PageEEclIS1_EENSt9enable_ifIXsrSt14is_convertibleIPA_T_PS2_E5valueEvE4typeEPS7_ + 0x000000fc 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x48 (size before relaxing) + .xt.prop._ZNSt10unique_ptrIA_N3nvs4PageESt14default_deleteIS2_EED5Ev + 0x00000138 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xc (size before relaxing) + .xt.prop._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE17clearAndFreeNodesEv + 0x00000138 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x48 (size before relaxing) + .xt.prop._ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE9push_backEPS2_ + 0x00000174 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE5eraseENS3_8iteratorE + 0x000001b0 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .xt.prop._ZN19CompressedEnumTableIbLj1ELj256EE3setEjb + 0x00000204 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE9push_backEPS2_ + 0x00000240 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .xt.prop._ZNSt10unique_ptrIA_N3nvs4PageESt14default_deleteIS2_EED2Ev + 0x0000027c 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE5eraseENS3_8iteratorE + 0x000002ac 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .xt.prop._ZTVN3nvs9PartitionE + 0x00000300 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .xt.prop._ZTVN3nvs12NVSPartitionE + 0x0000030c 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .xt.prop._ZN3nvs19NVSPartitionManagerD5Ev + 0x00000318 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.prop._ZN3nvs7StorageC5EPNS_9PartitionE + 0x00000324 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0xc (size before relaxing) + .xt.prop._ZN3nvs19NVSPartitionManagerD2Ev + 0x00000324 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.prop._ZN3nvs19NVSPartitionManagerD0Ev + 0x00000348 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.prop._ZN3nvs7StorageC2EPNS_9PartitionE + 0x0000036c 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs9PartitionEE9push_backEPS1_ + 0x00000390 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs9PartitionEE5eraseENS2_8iteratorE + 0x000003cc 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs7StorageEE9push_backEPS1_ + 0x00000420 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs15NVSHandleSimpleEE5eraseENS2_8iteratorE + 0x0000045c 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs7StorageEE5eraseENS2_8iteratorE + 0x000004b0 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.prop._ZTVN3nvs19NVSPartitionManagerE + 0x00000504 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs8HashList13HashListBlockEE5eraseENS3_8iteratorE + 0x00000510 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs8HashList13HashListBlockEE9push_backEPS2_ + 0x00000564 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .xt.prop._ZN3nvs4ItemC5EhNS_8ItemTypeEhPKch + 0x000005a0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0xc (size before relaxing) + .xt.prop._ZN3nvs4ItemC2EhNS_8ItemTypeEhPKch + 0x000005a0 0x6c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .xt.prop._ZN19CompressedEnumTableIN3nvs4Page10EntryStateELj2ELj126EE3setEjS2_ + 0x0000060c 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs4PageEE5clearEv + 0x00000648 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x48 (size before relaxing) + .xt.prop._ZN14intrusive_listIN3nvs4PageEE6insertENS2_8iteratorEPS1_ + 0x00000684 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x60 (size before relaxing) + .xt.prop._ZN14intrusive_listIN3nvs4PageEE9push_backEPS1_ + 0x000006d8 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs4PageEE5eraseENS2_8iteratorE + 0x00000714 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs4PageEE10push_frontEPS1_ + 0x00000768 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .xt.prop._ZTISt9exception + 0x000007a4 0xc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + .xt.prop._ZTISt9bad_alloc + 0x000007b0 0xc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + .xt.prop._ZTVN10__cxxabiv120__si_class_type_infoE + 0x000007bc 0xc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + .xt.prop._ZTVSt9bad_alloc + 0x000007c8 0xc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + .xt.prop._ZTVN10__cxxabiv117__class_type_infoE + 0x000007d4 0xc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + +.xt.lit 0x00000000 0x10 + *(.xt.lit .xt.lit.* .gnu.linkonce.p.*) + .xt.lit._ZN3nvs4Item6getKeyEPcj + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .xt.lit._ZSt9__fill_a1IhiEN9__gnu_cxx11__enable_ifIXaasrSt9__is_byteIT_E7__valueoosrSt10__are_sameIS3_T0_E7__valuesrSt20__memcpyable_integerIS6_E7__widthEvE6__typeEPS3_SC_RKS6_ + 0x00000008 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + .xt.lit._ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE17clearAndFreeNodesEv + 0x00000008 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + .xt.lit._ZNKSt14default_deleteIA_N3nvs4PageEEclIS1_EENSt9enable_ifIXsrSt14is_convertibleIPA_T_PS2_E5valueEvE4typeEPS7_ + 0x00000008 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + .xt.lit._ZNSt10unique_ptrIA_N3nvs4PageESt14default_deleteIS2_EED5Ev + 0x00000008 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + .xt.lit._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE17clearAndFreeNodesEv + 0x00000008 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + .xt.lit._ZN3nvs19NVSPartitionManagerD5Ev + 0x00000008 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.lit._ZN3nvs7StorageC5EPNS_9PartitionE + 0x00000010 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x8 (size before relaxing) + .xt.lit._ZN3nvs4ItemC5EhNS_8ItemTypeEhPKch + 0x00000010 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x8 (size before relaxing) + .xt.lit._ZN14intrusive_listIN3nvs4PageEE5clearEv + 0x00000010 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x8 (size before relaxing) + .xt.lit._ZN14intrusive_listIN3nvs4PageEE6insertENS2_8iteratorEPS1_ + 0x00000010 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x8 (size before relaxing) + +/DISCARD/ + *(.fini) + *(.eh_frame_hdr) + *(.eh_frame) + 0x00000001 ASSERT (((_iram_end - ORIGIN (iram0_0_seg)) <= LENGTH (iram0_0_seg)), IRAM0 segment data does not fit.) + 0x00000001 ASSERT (((_heap_low_start - ORIGIN (dram0_0_seg)) <= LENGTH (dram0_0_seg)), DRAM segment data does not fit.) +OUTPUT(modbus_tcp_esp32.elf elf32-xtensa-le) + +Cross Reference Table + +Symbol File +Cache_Flush_rom esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +Cache_Read_Disable_rom esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) +Cache_Read_Enable_rom esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) +CompressedEnumTable::set(unsigned int, bool) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +CompressedEnumTable::set(unsigned int, nvs::Page::EntryState) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +DEBUG_HELPER_TAG esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) +EFUSE esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_ABS_DONE_0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ABS_DONE_1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC1_TP_HIGH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC1_TP_LOW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC2_TP_HIGH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC2_TP_LOW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC_VREF esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_BLK3_PART_RESERVE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_BLOCK1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_BLOCK2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CHIP_CPU_FREQ_LOW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CHIP_CPU_FREQ_RATED esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CHIP_PACKAGE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +ESP_EFUSE_CHIP_PACKAGE_4BIT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CHIP_VER_REV1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CHIP_VER_REV2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CLK8M_FREQ esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CODING_SCHEME esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CONSOLE_DEBUG_DISABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_CUSTOM_MAC_CRC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DISABLE_APP_CPU esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DISABLE_BT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DISABLE_DL_CACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_DISABLE_DL_DECRYPT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_DISABLE_DL_ENCRYPT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_DISABLE_SDIO_HOST esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_CACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_FLASH_CRYPT_CNT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_FLASH_CRYPT_CONFIG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_JTAG_DISABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_KEY_STATUS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_MAC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_MAC_CRC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_MAC_CUSTOM esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_MAC_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_ADC1_TP_HIGH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_ADC1_TP_LOW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_ADC2_TP_HIGH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_ADC2_TP_LOW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_BLK3_PART_RESERVE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_BLOCK1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_RD_DIS_BLOCK2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_RD_DIS_BLOCK3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_RD_DIS_CODING_SCHEME esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_CUSTOM_MAC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_CUSTOM_MAC_CRC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_FLASH_CRYPT_CONFIG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_KEY_STATUS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_MAC_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_SECURE_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SECURE_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_CLK esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_CS0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_D esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_HD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_Q esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_UART_DOWNLOAD_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +ESP_EFUSE_VOL_LEVEL_HP_INV esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WAFER_VERSION_MINOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ABS_DONE_0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ABS_DONE_1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_TP_HIGH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_TP_LOW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC2_TP_HIGH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC2_TP_LOW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC_VREF esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_BLK3_PART_RESERVE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_BLOCK1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_WR_DIS_BLOCK2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_WR_DIS_BLOCK3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_WR_DIS_CLK8M_FREQ esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_CODING_SCHEME esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_CONSOLE_DEBUG_DISABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_CUSTOM_MAC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_CUSTOM_MAC_CRC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DISABLE_APP_CPU esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DISABLE_BT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DISABLE_DL_CACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DISABLE_DL_DECRYPT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DISABLE_DL_ENCRYPT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_CACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_WR_DIS_FLASH_CRYPT_CNT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_WR_DIS_FLASH_CRYPT_CONFIG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_JTAG_DISABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_KEY_STATUS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_MAC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_MAC_CRC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_MAC_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_RD_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +ESP_EFUSE_WR_DIS_SECURE_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_CLK esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_CS0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_Q esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_UART_DOWNLOAD_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_VOL_LEVEL_HP_INV esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_WR_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_XPD_SDIO_FORCE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_XPD_SDIO_REG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_XPD_SDIO_TIEH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_XPD_SDIO_FORCE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_XPD_SDIO_REG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_XPD_SDIO_TIEH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +FreeRTOS_openocd_params esp-idf/freertos/libfreertos.a(tasks.c.obj) +GPIO esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +GPIO_HOLD_MASK esp-idf/soc/libsoc.a(gpio_periph.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +GPIO_PIN_MUX_REG esp-idf/soc/libsoc.a(gpio_periph.c.obj) + esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +GPIO_PIN_MUX_REG_OFFSET esp-idf/soc/libsoc.a(gpio_periph.c.obj) + esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +MPI_BLOCK_BASES esp-idf/soc/libsoc.a(mpi_periph.c.obj) + esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) +MPI_OPERATIONS_REG esp-idf/soc/libsoc.a(mpi_periph.c.obj) + esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) +NVSHandleEntry::s_nvs_next_handle esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +NVSHandleEntry::~NVSHandleEntry() esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +NVSHandleEntry::~NVSHandleEntry() esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +RTCCNTL esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + esp-idf/hal/libhal.a(brownout_hal.c.obj) + esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) +RTCIO esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) +SENS esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) +SPI0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) +SPI1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a(spi_periph.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_dma.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +SPI2 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a(spi_periph.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_dma.c.obj) +SPI3 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a(spi_periph.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_dma.c.obj) +SPIFFS_bytes_to_ix_map_entries esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) +SPIFFS_check esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) +SPIFFS_clearerr esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) +SPIFFS_close esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) +SPIFFS_closedir esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) +SPIFFS_creat esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) +SPIFFS_eof esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) +SPIFFS_errno esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) +SPIFFS_fflush esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) +SPIFFS_format esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) +SPIFFS_fremove esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) +SPIFFS_fstat esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) +SPIFFS_ftruncate esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) +SPIFFS_fupdate_meta esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) +SPIFFS_gc esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) +SPIFFS_gc_quick esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) +SPIFFS_info esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) +SPIFFS_ix_map esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) +SPIFFS_ix_map_entries_to_bytes esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) +SPIFFS_ix_remap esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) +SPIFFS_ix_unmap esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) +SPIFFS_lseek esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) +SPIFFS_mount esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) +SPIFFS_mounted esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) +SPIFFS_open esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) +SPIFFS_open_by_dirent esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) +SPIFFS_open_by_page esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) +SPIFFS_opendir esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) +SPIFFS_probe_fs esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) +SPIFFS_read esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) +SPIFFS_readdir esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) +SPIFFS_remove esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) +SPIFFS_rename esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) +SPIFFS_set_file_callback_func esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) +SPIFFS_stat esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) +SPIFFS_tell esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) +SPIFFS_unmount esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) +SPIFFS_update_meta esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) +SPIFFS_write esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) +TIMERG0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) +TIMERG1 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) +UART0 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal_iram.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_uart.c.obj) + esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +UART1 esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal_iram.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_uart.c.obj) + esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) +UART2 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_uart.c.obj) + esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) +Xthal_intlevel C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) +_DebugExceptionVector esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_DoubleExceptionVector esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_KernelExceptionVector esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_Level2Vector esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_Level3Vector esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_Level4Vector esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_Level5Vector esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_NMIExceptionVector esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_UserExceptionVector esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_WindowOverflow12 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_WindowOverflow4 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_WindowOverflow8 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_WindowUnderflow12 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_WindowUnderflow4 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_WindowUnderflow8 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +__adddf3 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__ashldi3 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_ashldi3.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtox_engine.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_umul128.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtoa_ryu.c.o) +__ashrdi3 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_ashrdi3.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtox_engine.c.o) +__assert esp-idf/esp_libc/libesp_libc.a(assert.c.obj) +__assert_func esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal_iram.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(port_common.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_uart.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + esp-idf/heap/libheap.a(heap_caps_base.c.obj) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/log/liblog.a(log_binary_heap.c.obj) + esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +__atomic_add_fetch_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__atomic_and_fetch_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__atomic_compare_exchange esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__atomic_compare_exchange_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__atomic_exchange_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__atomic_fetch_add_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__atomic_fetch_and_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) +__atomic_fetch_nand_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__atomic_fetch_or_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) +__atomic_fetch_sub_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__atomic_fetch_xor_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__atomic_load esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__atomic_load_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) +__atomic_nand_fetch_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__atomic_or_fetch_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__atomic_store esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__atomic_store_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__atomic_sub_fetch_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__atomic_xor_fetch_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__bothinit_array_end C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_misc_init.c.o) +__bothinit_array_start C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_misc_init.c.o) +__bswapdi2 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_bswapdi2.o) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +__bswapsi2 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_bswapsi2.o) + esp-idf/esp_hal_security/libesp_hal_security.a(sha_hal.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +__bufio_buffer_allocate_locked C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fwrite.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fread.c.o) +__bufio_close C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fdopen.c.o) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +__bufio_fill_locked C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fread.c.o) +__bufio_flush C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fdopen.c.o) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +__bufio_flush_locked C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fwrite.c.o) +__bufio_get C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fdopen.c.o) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +__bufio_put C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fdopen.c.o) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +__bufio_seek C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fdopen.c.o) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +__bufio_setdir_locked C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fwrite.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fread.c.o) +__bufio_setvbuf C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fdopen.c.o) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +__cxa_begin_catch C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) +__cxa_end_catch C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) +__cxa_get_exception_ptr C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) +__cxa_get_globals C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) +__cxa_get_globals_fast C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) +__cxa_guard_abort esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) +__cxa_guard_acquire esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) +__cxa_guard_dummy esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) +__cxa_guard_release esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) +__cxa_pure_virtual C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +__cxx_eh_arena_size_get esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) +__cxx_init_dummy esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) +__cxxabiv1::__class_type_info::__do_catch(std::type_info const*, void**, unsigned int) const C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) +__cxxabiv1::__class_type_info::__do_dyncast(int, __cxxabiv1::__class_type_info::__sub_kind, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__dyncast_result&) const C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) +__cxxabiv1::__class_type_info::__do_find_public_src(int, void const*, __cxxabiv1::__class_type_info const*, void const*) const C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) +__cxxabiv1::__class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__upcast_result&) const C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) +__cxxabiv1::__class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void**) const C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) +__cxxabiv1::__class_type_info::~__class_type_info() C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) +__cxxabiv1::__class_type_info::~__class_type_info() C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) +__cxxabiv1::__class_type_info::~__class_type_info() C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) +__cxxabiv1::__forced_unwind::~__forced_unwind() C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) +__cxxabiv1::__forced_unwind::~__forced_unwind() C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) +__cxxabiv1::__forced_unwind::~__forced_unwind() C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) +__cxxabiv1::__foreign_exception::~__foreign_exception() C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) +__cxxabiv1::__foreign_exception::~__foreign_exception() C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) +__cxxabiv1::__foreign_exception::~__foreign_exception() C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) +__cxxabiv1::__si_class_type_info::__do_dyncast(int, __cxxabiv1::__class_type_info::__sub_kind, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__dyncast_result&) const C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) +__cxxabiv1::__si_class_type_info::__do_find_public_src(int, void const*, __cxxabiv1::__class_type_info const*, void const*) const C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) +__cxxabiv1::__si_class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__upcast_result&) const C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) +__cxxabiv1::__si_class_type_info::~__si_class_type_info() C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) +__cxxabiv1::__si_class_type_info::~__si_class_type_info() C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) +__cxxabiv1::__si_class_type_info::~__si_class_type_info() C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) +__cxxabiv1::__terminate(void (*)()) C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) +__cxxabiv1::__terminate_handler C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_term_handler.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) +__cxxabiv1::__unexpected(void (*)()) C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) +__cxxabiv1::__unexpected_handler C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_unex_handler.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) +__d_vfprintf C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vfprintf.c.o) +__divdf3 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdf3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__divdi3 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divdi3.o) + esp-idf/esp_libc/libesp_libc.a(time.c.obj) +__divsf3 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_divsf3.o) + esp-idf/main/libmain.a(main.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__double_computeInvPow5 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_table.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtoa_ryu.c.o) +__double_computePow5 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_table.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtoa_ryu.c.o) +__dso_handle esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) +__dtoa_engine C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtoa_ryu.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vfprintf.c.o) +__dtox_engine C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtox_engine.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vfprintf.c.o) +__eh_globals_init::_S_init C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) +__eqdf2 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_cmpdf2.o) +__errno esp-idf/esp_libc/libesp_libc.a(errno.c.obj) +__esp_idf_pthread_rwlock_lazy_allocation esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) +__extendsfdf2 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_extendsfdf2.o) + esp-idf/main/libmain.a(main.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__file_str_put C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_filestrput.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_snprintf.c.o) +__fixdfsi C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixdfsi.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__fixunsdfsi C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_fixunsdfsi.o) + esp-idf/main/libmain.a(modbus_memory.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__floatsidf C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + esp-idf/main/libmain.a(modbus_memory.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__floatunsidf C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_floatsidf.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__flockfile_init C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_flockfile_init.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fseeko.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgetc.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vfprintf.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_setvbuf.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_puts.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fwrite.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fread.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputs.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputc.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgets.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fflush.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ferror.c.o) +__frame_state_for(void*, frame_state*) esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__gedf2 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_cmpdf2.o) +__gnu_cxx::__enable_if::__value&&(std::__are_same::__value||std::__memcpyable_integer::__width), void>::__type std::__fill_a1(unsigned char*, unsigned char*, int const&) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +__gtdf2 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_cmpdf2.o) + esp-idf/main/libmain.a(modbus_memory.c.obj) +__itoa C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_itoa.c.o) +__ledf2 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_cmpdf2.o) +__libc_init_array C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_misc_init.c.o) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +__lock___arc4random_mutex esp-idf/esp_libc/libesp_libc.a(locks.c.obj) +__lock___at_quick_exit_mutex esp-idf/esp_libc/libesp_libc.a(locks.c.obj) +__lock___atexit_recursive_mutex esp-idf/esp_libc/libesp_libc.a(locks.c.obj) +__lock___dd_hash_mutex esp-idf/esp_libc/libesp_libc.a(locks.c.obj) +__lock___env_recursive_mutex esp-idf/esp_libc/libesp_libc.a(locks.c.obj) +__lock___libc_recursive_mutex esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_flockfile_init.c.o) +__lock___malloc_recursive_mutex esp-idf/esp_libc/libesp_libc.a(locks.c.obj) +__lock___sfp_recursive_mutex esp-idf/esp_libc/libesp_libc.a(locks.c.obj) +__lock___sinit_recursive_mutex esp-idf/esp_libc/libesp_libc.a(locks.c.obj) +__lock___tz_mutex esp-idf/esp_libc/libesp_libc.a(locks.c.obj) +__log10Pow2 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_log10.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtoa_ryu.c.o) +__log10Pow5 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_log10.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtoa_ryu.c.o) +__lshrdi3 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_lshrdi3.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_umul128.c.o) +__ltdf2 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_cmpdf2.o) + esp-idf/main/libmain.a(modbus_memory.c.obj) +__moddi3 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_moddi3.o) + esp-idf/esp_libc/libesp_libc.a(time.c.obj) +__muldf3 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_muldf3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__nedf2 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_cmpdf2.o) +__popcountsi2 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_popcountsi2.o) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +__pow5Factor C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_table.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtoa_ryu.c.o) +__pow5bits C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_pow5bits.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_table.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtoa_ryu.c.o) +__retarget_lock_acquire esp-idf/esp_libc/libesp_libc.a(locks.c.obj) +__retarget_lock_acquire_recursive esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fseeko.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgetc.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vfprintf.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_setvbuf.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_puts.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fwrite.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fread.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputs.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputc.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_flockfile_init.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgets.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fflush.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ferror.c.o) +__retarget_lock_close esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fclose.c.o) +__retarget_lock_close_recursive esp-idf/esp_libc/libesp_libc.a(locks.c.obj) +__retarget_lock_init esp-idf/esp_libc/libesp_libc.a(locks.c.obj) +__retarget_lock_init_recursive esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_flockfile_init.c.o) +__retarget_lock_release esp-idf/esp_libc/libesp_libc.a(locks.c.obj) +__retarget_lock_release_recursive esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fseeko.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgetc.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vfprintf.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_setvbuf.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_puts.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fwrite.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fread.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputs.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputc.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_flockfile_init.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgets.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fflush.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ferror.c.o) +__retarget_lock_try_acquire esp-idf/esp_libc/libesp_libc.a(locks.c.obj) +__retarget_lock_try_acquire_recursive esp-idf/esp_libc/libesp_libc.a(locks.c.obj) +__shiftright128 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_umul128.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_table.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtoa_ryu.c.o) +__stdio_flags C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_sflags.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fdopen.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fopen.c.o) +__subdf3 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_addsubdf3.o) +__sync_add_and_fetch_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__sync_and_and_fetch_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__sync_bool_compare_and_swap_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__sync_fetch_and_add_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__sync_fetch_and_and_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__sync_fetch_and_nand_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__sync_fetch_and_or_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__sync_fetch_and_sub_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__sync_fetch_and_xor_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__sync_lock_release_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__sync_lock_test_and_set_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__sync_nand_and_fetch_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__sync_or_and_fetch_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__sync_sub_and_fetch_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__sync_val_compare_and_swap_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__sync_xor_and_fetch_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__truncdfsf2 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_truncdfsf2.o) + esp-idf/main/libmain.a(modbus_memory.c.obj) +__ubsan_handle_add_overflow esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_builtin_unreachable esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_divrem_overflow esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_invalid_builtin esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_load_invalid_value esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_missing_return esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_mul_overflow esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_negate_overflow esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_nonnull_arg esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_nonnull_return esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_out_of_bounds esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_pointer_overflow esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_shift_out_of_bounds esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_sub_overflow esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_type_mismatch esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_type_mismatch_v1 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_handle_vla_bound_not_positive esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__ubsan_include esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +__udivdi3 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_udivdi3.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtoa_ryu.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vfprintf.c.o) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) + esp-idf/esp_libc/libesp_libc.a(time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +__umoddi3 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_umoddi3.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtoa_ryu.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vfprintf.c.o) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/esp_libc/libesp_libc.a(time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) +__umul128 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_umul128.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ryu_table.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_dtoa_ryu.c.o) +__unorddf2 C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti\libgcc.a(_cmpdf2.o) +__utoa C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_utoa.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_itoa.c.o) +__wrap__Unwind_Backtrace esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_DeleteException esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) +__wrap__Unwind_FindEnclosingFunction esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_Find_FDE esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_ForcedUnwind esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_GetCFA esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_GetDataRelBase esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_GetGR esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_GetIP esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_GetIPInfo esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_GetLanguageSpecificData esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_GetRegionStart esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_GetTextRelBase esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_RaiseException esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_Resume esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_Resume_or_Rethrow esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_SetGR esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_SetIP esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap___cxa_allocate_exception esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) +__wrap___cxa_call_unexpected esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap___cxa_throw esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) +__wrap___deregister_frame esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap___deregister_frame_info esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap___deregister_frame_info_bases esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap___gxx_personality_v0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) +__wrap___register_frame esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap___register_frame_info esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap___register_frame_info_bases esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap___register_frame_info_table esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap___register_frame_info_table_bases esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap___register_frame_table esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +_bss_end esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +_bss_start esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +_close_r esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +_ctype_b C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_ctype_ctype_.c.o) + esp-idf/main/libmain.a(config_store.c.obj) + esp-idf/main/libmain.a(modbus_points.c.obj) +_data_start esp-idf/heap/libheap.a(memory_layout.c.obj) +_esp_error_check_failed esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/main/libmain.a(main.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +_esp_error_check_failed_without_abort esp-idf/esp_system/libesp_system.a(esp_err.c.obj) +_esp_system_init_fn_array_end esp-idf/esp_system/libesp_system.a(startup.c.obj) +_esp_system_init_fn_array_start esp-idf/esp_system/libesp_system.a(startup.c.obj) +_exit esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +_fcntl_r esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +_flash_rodata_align esp-idf/freertos/libfreertos.a(port.c.obj) +_flash_rodata_start esp-idf/freertos/libfreertos.a(port.c.obj) +_frxt_coproc_exc_hook esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_frxt_dispatch esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +_frxt_int_enter esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_frxt_int_exit esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_frxt_setup_switch esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +_frxt_task_coproc_state esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) +_frxt_tick_timer_init esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +_frxt_timer_int esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_fstat_r esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +_getpid_r esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +_gettimeofday_r esp-idf/esp_libc/libesp_libc.a(time.c.obj) + esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +_heap_start esp-idf/heap/libheap.a(memory_layout.c.obj) +_instruction_reserved_end esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +_instruction_reserved_start esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +_invalid_pc_placeholder esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +_iram_end esp-idf/heap/libheap.a(memory_layout.c.obj) +_iram_start esp-idf/heap/libheap.a(memory_layout.c.obj) +_isatty_r esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) +_kill_r esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) +_link_r esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +_lock_acquire esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + esp-idf/esp_libc/libesp_libc.a(time.c.obj) +_lock_acquire_recursive esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +_lock_close esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +_lock_close_recursive esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +_lock_init esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +_lock_init_recursive esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +_lock_release esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + esp-idf/esp_libc/libesp_libc.a(time.c.obj) +_lock_release_recursive esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +_lock_try_acquire esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +_lock_try_acquire_recursive esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +_lseek_r esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +_open_r esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +_putc1 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) +_putc2 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) +_raise_r esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) +_read_r esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +_read_r_console esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) +_rename_r esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +_rodata_reserved_end esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +_rodata_reserved_start esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +_rtc_bss_end esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +_rtc_bss_start esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +_rtc_fast_reserved_end esp-idf/heap/libheap.a(memory_layout.c.obj) +_rtc_fast_reserved_start esp-idf/heap/libheap.a(memory_layout.c.obj) +_rtc_reserved_length esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +_rtc_slow_length esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +_rtc_slow_reserved_end esp-idf/heap/libheap.a(memory_layout.c.obj) +_rtc_slow_reserved_start esp-idf/heap/libheap.a(memory_layout.c.obj) +_sbrk_r esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) +_stat_r esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +_strerror_r C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror_r.c.o) +_system_r esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +_thread_local_end esp-idf/freertos/libfreertos.a(port.c.obj) +_thread_local_start esp-idf/freertos/libfreertos.a(port.c.obj) +_times_r esp-idf/esp_libc/libesp_libc.a(time.c.obj) +_tls_rand_next esp-idf/esp_libc/libesp_libc.a(rand.c.obj) +_uart_set_pin6 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/main/libmain.a(main.c.obj) +_unlink_r esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +_user_strerror C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror.c.o) +_vector_table esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +_write_r esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +_write_r_console esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) +_xt_alloca_exc esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_xt_context_restore esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) +_xt_context_save esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) +_xt_coproc_init esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +_xt_coproc_owner_sa esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) +_xt_coproc_owner_sa_lock esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) +_xt_coproc_release esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +_xt_coproc_restorecs esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_xt_coproc_sa_offset esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) +_xt_coproc_savecs esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +_xt_exception_table esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) +_xt_interrupt_table esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) +_xt_medint2_exit esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_xt_medint3_exit esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_xt_panic esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_xt_tick_divisor esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +_xt_tick_divisor_init esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +_xt_user_exit esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +_xtos_set_intlevel esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) +abort esp-idf/esp_libc/libesp_libc.a(abort.c.obj) + esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_term_handler.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_hal_security/libesp_hal_security.a(sha_hal.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + esp-idf/main/libmain.a(main.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +abort_expect_void esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +abort_expect_void_and_return esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +access esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) +adc_reset_lock_acquire esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) +adc_reset_lock_release esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) +adjtime esp-idf/esp_libc/libesp_libc.a(time.c.obj) +aes_hal_setkey esp-idf/esp_hal_security/libesp_hal_security.a(aes_hal.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) +aes_hal_transform_block esp-idf/esp_hal_security/libesp_hal_security.a(aes_hal.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) +aligned_alloc esp-idf/esp_libc/libesp_libc.a(heap.c.obj) +app_elf_sha256_str esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) +app_main esp-idf/main/libmain.a(main.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +block_absorb_post_hook esp-idf/heap/libheap.a(tlsf.c.obj) +bootloader_ana_clock_glitch_reset_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_atexit esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_clock_get_rated_freq_mhz esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) +bootloader_common_check_chip_revision_validity esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) +bootloader_common_check_chip_validity esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_common_check_long_hold_gpio esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_check_long_hold_gpio_level esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_erase_part_type_data esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_get_active_otadata esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_common_get_chip_ver_pkg esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_common_get_partition_description esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_common_get_sha256_of_partition esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) +bootloader_common_label_search esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_ota_select_crc esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_common_ota_select_invalid esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_common_ota_select_valid esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +bootloader_common_read_otadata esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_common_select_otadata esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +bootloader_common_vddsdio_configure esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_configure_spi_pins esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_debug_buffer esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_enable_wp esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_execute_flash_command esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_flash_clock_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +bootloader_flash_cs_timing_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +bootloader_flash_dummy_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +bootloader_flash_erase_range esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_flash_erase_sector esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_flash_execute_command_common esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_flash_get_spi_mode esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_flash_get_wp_pin esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +bootloader_flash_gpio_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +bootloader_flash_is_octal_mode_enabled esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_flash_read esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_flash_read_sfdp esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_flash_reset_chip esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) +bootloader_flash_unlock esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_flash_unlock_default esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_flash_update_id esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +bootloader_flash_update_size esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_flash_write esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_flash_xmc_startup esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_image_hdr esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_init_mem esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +bootloader_init_spi_flash esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_load_image esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_load_image_no_verify esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_mmap esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_mmap_get_free_pages esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_munmap esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_random_disable esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_random_enable esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) +bootloader_read_flash_id esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_reset esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_sha256_data esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_sha256_finish esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_sha256_flash_contents esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_sha256_hex_to_str esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_sha256_start esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_sha512_data esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +bootloader_sha512_finish esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +bootloader_sha512_start esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +bootloader_spi_flash_reset esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_utility_get_selected_boot_partition esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_utility_load_boot_image esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_utility_load_partition_table esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +brownout_hal_config esp-idf/hal/libhal.a(brownout_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) +bzero C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_bzero.c.o) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_common.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/esp_libc/libesp_libc.a(heap.c.obj) +cache_flash_mmu_set_rom esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +cache_hal_get_cache_line_size esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) +cache_hal_init esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +cache_hal_invalidate_addr esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) +cache_hal_is_cache_enabled esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +cache_hal_resume esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) +cache_hal_suspend esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) +cache_hal_vaddr_to_cache_level_id esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) +cache_register_writeback esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) +cache_sync esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +call_start_cpu0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +call_start_cpu1 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +calloc esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fdopen.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + esp-idf/main/libmain.a(modbus_points.c.obj) + esp-idf/main/libmain.a(main.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) +cfree esp-idf/esp_libc/libesp_libc.a(heap.c.obj) +clk_hal_apb_get_freq_hz esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) +clk_hal_apll_get_freq_hz esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) +clk_hal_clock_output_setup esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) +clk_hal_clock_output_teardown esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) +clk_hal_cpu_get_freq_hz esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) +clk_hal_lp_slow_get_freq_hz esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) +clk_hal_soc_root_get_freq_mhz esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) +clk_hal_xtal_get_freq_mhz esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) +clock_getres esp-idf/esp_libc/libesp_libc.a(time.c.obj) +clock_gettime esp-idf/esp_libc/libesp_libc.a(time.c.obj) + esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +clock_settime esp-idf/esp_libc/libesp_libc.a(time.c.obj) +close esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fdopen.c.o) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) +close_pending esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +closedir esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + esp-idf/main/libmain.a(main.c.obj) +config_store_load esp-idf/main/libmain.a(config_store.c.obj) + esp-idf/main/libmain.a(main.c.obj) +config_store_set_defaults esp-idf/main/libmain.a(config_store.c.obj) +console_access esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) +console_close esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) +console_end_select esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) +console_fcntl esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) +console_fstat esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) +console_fsync esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) +console_open esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) +console_read esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) +console_write esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) +creat esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +div C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_div.c.o) + esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) +do_multicore_settings esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +eTaskGetState esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +efuse_hal_blk_version esp-idf/hal/libhal.a(efuse_hal.c.obj) +efuse_hal_chip_revision esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) +efuse_hal_clear_program_registers esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +efuse_hal_flash_encryption_enabled esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +efuse_hal_get_chip_ver_pkg esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +efuse_hal_get_disable_blk_version_major esp-idf/hal/libhal.a(efuse_hal.c.obj) +efuse_hal_get_disable_wafer_version_major esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) +efuse_hal_get_mac esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +efuse_hal_get_major_chip_version esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/hal/libhal.a(efuse_hal.c.obj) +efuse_hal_get_minor_chip_version esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/hal/libhal.a(efuse_hal.c.obj) +efuse_hal_get_rated_freq_mhz esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) +efuse_hal_is_coding_error_in_block esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +efuse_hal_program esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +efuse_hal_read esp-idf/hal/libhal.a(efuse_hal.c.obj) +efuse_hal_set_timing esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +environ C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_environ.c.o) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +errno esp-idf/esp_libc/libesp_libc.a(errno.c.obj) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fseeko.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_strtoul.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_strtol.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_sflags.c.o) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + esp-idf/vfs/libvfs.a(nullfs.c.obj) + esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + esp-idf/esp_libc/libesp_libc.a(random.c.obj) + esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + esp-idf/esp_libc/libesp_libc.a(time.c.obj) + esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) + esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) +esp_aes_acquire_hardware esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) +esp_aes_cipher_abort esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +esp_aes_cipher_decrypt esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +esp_aes_cipher_decrypt_setup esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +esp_aes_cipher_encrypt esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +esp_aes_cipher_encrypt_setup esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +esp_aes_cipher_finish esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +esp_aes_cipher_set_iv esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +esp_aes_cipher_update esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +esp_aes_crypt_cbc esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) +esp_aes_crypt_cfb128 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) +esp_aes_crypt_cfb8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) +esp_aes_crypt_ctr esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) +esp_aes_crypt_ecb esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_xts.c.obj) +esp_aes_crypt_ofb esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) +esp_aes_crypt_xts esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_xts.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +esp_aes_free esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_common.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_xts.c.obj) +esp_aes_gcm_auth_decrypt esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) +esp_aes_gcm_crypt_and_tag esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) +esp_aes_gcm_finish esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) +esp_aes_gcm_free esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) +esp_aes_gcm_init esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) +esp_aes_gcm_setkey esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) +esp_aes_gcm_starts esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) +esp_aes_gcm_update esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) +esp_aes_gcm_update_ad esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) +esp_aes_init esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_common.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_xts.c.obj) +esp_aes_release_hardware esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) +esp_aes_setkey esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_common.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_xts.c.obj) +esp_aes_xts_free esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_xts.c.obj) +esp_aes_xts_init esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_xts.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +esp_aes_xts_setkey_dec esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_xts.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +esp_aes_xts_setkey_enc esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_xts.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +esp_app_desc esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) +esp_app_get_description esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) +esp_app_get_elf_sha256 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) +esp_backtrace_get_next_frame esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) +esp_backtrace_get_start esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) +esp_backtrace_print esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) +esp_backtrace_print_all_tasks esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) +esp_backtrace_print_from_frame esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) +esp_brownout_disable esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) +esp_brownout_init esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) +esp_brownout_register_callback esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) +esp_cache_err_get_cpuid esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +esp_cache_err_get_panic_info esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) +esp_cache_err_int_init esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_cache_get_alignment esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +esp_cache_get_line_size_by_addr esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) +esp_cache_msync esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) +esp_cache_resume_ext_mem_cache esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +esp_cache_suspend_ext_mem_cache esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +esp_cache_sync_ops_enter_critical_section esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) +esp_cache_sync_ops_exit_critical_section esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) +esp_chip_info esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_clk_apb_freq esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_clk_cpu_freq esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) +esp_clk_init esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_clk_private_lock esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_clk_private_unlock esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_clk_rtc_time esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) +esp_clk_slowclk_cal_get esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_clk_slowclk_cal_set esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +esp_clk_tree_enable_power esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) +esp_clk_tree_enable_src esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +esp_clk_tree_initialize esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_clk_tree_is_power_on esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) +esp_clk_tree_lp_fast_get_freq_hz esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) +esp_clk_tree_lp_slow_get_freq_hz esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) +esp_clk_tree_rc_fast_d256_get_freq_hz esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) +esp_clk_tree_rc_fast_get_freq_hz esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) +esp_clk_tree_src_get_freq_hz esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +esp_clk_tree_xtal32k_get_freq_hz esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) +esp_clk_utils_mspi_speed_mode_sync_after_cpu_freq_switching esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_clk_utils_mspi_speed_mode_sync_before_cpu_freq_switching esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) +esp_clk_xtal_freq esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) +esp_cmac_abort esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +esp_cmac_compute esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +esp_cmac_finish esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +esp_cmac_setup esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +esp_cmac_update esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +esp_cmac_verify_finish esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +esp_cpu_clear_breakpoint esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) +esp_cpu_clear_watchpoint esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) +esp_cpu_compare_and_set esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) +esp_cpu_configure_region_protection esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) +esp_cpu_intr_get_desc esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esp_cpu_reset esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) +esp_cpu_set_breakpoint esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) +esp_cpu_set_watchpoint esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +esp_cpu_stall esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) +esp_cpu_unstall esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_cpu_wait_for_intr esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) +esp_crosscore_int_init esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +esp_crosscore_int_send_freq_switch esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) +esp_crosscore_int_send_gdb_call esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) +esp_crosscore_int_send_print_backtrace esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_crosscore_int_send_twdt_abort esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_crosscore_int_send_yield esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +esp_crypto_aes_enable_periph_clk esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) +esp_crypto_aes_gcm_abort esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +esp_crypto_aes_gcm_decrypt esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +esp_crypto_aes_gcm_decrypt_setup esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +esp_crypto_aes_gcm_encrypt esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +esp_crypto_aes_gcm_encrypt_setup esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +esp_crypto_aes_gcm_finish esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +esp_crypto_aes_gcm_set_nonce esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +esp_crypto_aes_gcm_update esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +esp_crypto_aes_gcm_update_ad esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +esp_crypto_mpi_enable_periph_clk esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) +esp_crypto_mpi_lock_acquire esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) +esp_crypto_mpi_lock_release esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) +esp_crypto_sha_aes_lock_acquire esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) +esp_crypto_sha_aes_lock_release esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) +esp_crypto_sha_enable_periph_clk esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) +esp_deep_sleep esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_deep_sleep_deregister_hook esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_deep_sleep_deregister_phy_hook esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_deep_sleep_disable_rom_logging esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_deep_sleep_register_hook esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_deep_sleep_register_phy_hook esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_deep_sleep_start esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_deep_sleep_try esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_deep_sleep_try_to_start esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_deep_sleep_wakeup_io_reset esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_default_wake_deep_sleep esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_deregister_freertos_idle_hook esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) +esp_deregister_freertos_idle_hook_for_cpu esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +esp_deregister_freertos_tick_hook esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) +esp_deregister_freertos_tick_hook_for_cpu esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) +esp_dport_access_read_buffer esp-idf/soc/libsoc.a(dport_access_common.c.obj) + esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + esp-idf/esp_hal_security/libesp_hal_security.a(aes_hal.c.obj) + esp-idf/esp_hal_security/libesp_hal_security.a(sha_hal.c.obj) +esp_dport_access_reg_read esp-idf/soc/libsoc.a(dport_access.c.obj) + esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + esp-idf/esp_hal_security/libesp_hal_security.a(aes_hal.c.obj) + esp-idf/esp_hal_security/libesp_hal_security.a(sha_hal.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_uart.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +esp_dport_access_sequence_reg_read esp-idf/soc/libsoc.a(dport_access.c.obj) + esp-idf/soc/libsoc.a(dport_access_common.c.obj) + esp-idf/esp_hal_security/libesp_hal_security.a(sha_hal.c.obj) + esp-idf/hal/libhal.a(mmu_hal.c.obj) +esp_efuse_batch_write_begin esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_batch_write_cancel esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_batch_write_commit esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_block_is_empty esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_check_errors esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) +esp_efuse_destroy_block esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_disable_basic_rom_console esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +esp_efuse_disable_rom_download_mode esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_efuse_find_purpose esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_get_coding_scheme esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_get_field_size esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_get_key_dis_read esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_get_key_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_get_key_purpose esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_get_keypurpose_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_get_pkg_ver esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +esp_efuse_key_block_unused esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_read_block esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_read_field_bit esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_read_field_blob esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_efuse_read_field_cnt esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_efuse_read_reg esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_set_key_dis_read esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_set_key_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_set_read_protect esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_set_rom_log_scheme esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +esp_efuse_set_write_protect esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_startup_include_func esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) +esp_efuse_utility_apply_34_encoding esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_apply_new_coding_scheme esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_burn_chip esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_burn_chip_opt esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_burn_efuses esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_check_errors esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_clear_program_registers esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_count_once esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_debug_dump_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_debug_dump_pending esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_debug_dump_single_block esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_erase_virt_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_fill_buff esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_get_number_of_items esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_get_read_register_address esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_is_correct_written_data esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_process esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_read_reg esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_reset esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_update_virt_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_write_blob esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_write_cnt esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_write_reg esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_write_block esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_write_field_bit esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_write_field_blob esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_write_field_cnt esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_write_key esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_write_keys esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_write_reg esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_err_to_name esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) + esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + esp-idf/main/libmain.a(main.c.obj) +esp_err_to_name_r esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) +esp_fill_random esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_hardware.c.obj) + esp-idf/esp_libc/libesp_libc.a(random.c.obj) +esp_flash_app_disable_os_functions esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_app_disable_protect esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_app_enable_os_functions esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +esp_flash_app_init esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +esp_flash_chip_boya esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) +esp_flash_chip_driver_initialized esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_chip_gd esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) +esp_flash_chip_generic esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) +esp_flash_chip_issi esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) +esp_flash_chip_mxic esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) +esp_flash_chip_mxic_opi esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) +esp_flash_chip_th esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) +esp_flash_chip_winbond esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) +esp_flash_default_chip esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +esp_flash_deinit_os_functions esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +esp_flash_encryption_cfg_verify_release_mode esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_flash_encryption_enabled esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) +esp_flash_encryption_init_checks esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_flash_encryption_set_release_mode esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_flash_erase_chip esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_erase_region esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) +esp_flash_get_chip_write_protect esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_get_io_mode esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_get_physical_size esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_get_protectable_regions esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_get_protected_region esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_get_size esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) +esp_flash_init esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_init_default_chip esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +esp_flash_init_main esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +esp_flash_init_main_bus_lock esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) +esp_flash_init_os_functions esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +esp_flash_is_quad_mode esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +esp_flash_noos_functions esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +esp_flash_read esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) +esp_flash_read_chip_id esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_read_encrypted esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_flash_read_id esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_read_unique_chip_id esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_registered_chips esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_set_chip_write_protect esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_set_dangerous_write_protection esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_flash_set_io_mode esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_set_protected_region esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_spi_init_include_func esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +esp_flash_suspend_cmd_init esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_write esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) +esp_flash_write_encrypted esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) +esp_flash_write_protect_crypt_cnt esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_get_deep_sleep_wake_stub esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_get_flash_encryption_mode esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_get_free_heap_size esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) +esp_get_free_internal_heap_size esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) +esp_get_idf_version esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) +esp_get_minimum_free_heap_size esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) +esp_gpio_is_reserved esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +esp_gpio_reserve esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +esp_gpio_revoke esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +esp_heap_adjust_alignment_to_hw esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + esp-idf/heap/libheap.a(heap_caps_base.c.obj) +esp_hmac_abort_transparent esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +esp_hmac_compute_transparent esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +esp_hmac_finish_transparent esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +esp_hmac_setup_transparent esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +esp_hmac_update_transparent esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +esp_hmac_verify_finish_transparent esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +esp_image_bootloader_offset_get esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +esp_image_bootloader_offset_set esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_image_get_flash_size esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +esp_image_get_metadata esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +esp_image_verify esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_image_verify_bootloader esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +esp_image_verify_bootloader_data esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +esp_int_wdt_cpu_init esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +esp_int_wdt_init esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +esp_internal_aes_decrypt esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) +esp_internal_aes_encrypt esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) +esp_internal_sha1_process esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) +esp_internal_sha256_process esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) +esp_internal_sha512_process esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) +esp_intr_alloc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) +esp_intr_alloc_bind esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esp_intr_alloc_intrstatus esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +esp_intr_alloc_intrstatus_bind esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esp_intr_disable esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_intr_disable_source esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) +esp_intr_dump esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esp_intr_enable esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_intr_enable_source esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) +esp_intr_free esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_intr_get_cpu esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) +esp_intr_get_intno esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esp_intr_mark_shared esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esp_intr_noniram_disable esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +esp_intr_noniram_enable esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +esp_intr_ptr_in_isr_region esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esp_intr_reserve esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esp_intr_set_in_iram esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esp_ipc_call esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) +esp_ipc_call_blocking esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esp_ipc_call_nonblocking esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +esp_ipc_func esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) +esp_ipc_func_arg esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) +esp_ipc_isr_call esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) +esp_ipc_isr_call_blocking esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) +esp_ipc_isr_end_fl esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) +esp_ipc_isr_handler esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) +esp_ipc_isr_init esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) +esp_ipc_isr_port_init esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) +esp_ipc_isr_port_int_trigger esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) +esp_ipc_isr_release_other_cpu esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) +esp_ipc_isr_stall_abort esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) +esp_ipc_isr_stall_other_cpu esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) +esp_ipc_isr_stall_pause esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_ipc_isr_stall_resume esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_ipc_isr_start_fl esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) +esp_ipc_isr_waiting_for_finish_cmd esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) +esp_isr_names esp-idf/soc/libsoc.a(interrupts.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esp_libc_include_assert_impl esp-idf/esp_libc/libesp_libc.a(assert.c.obj) +esp_libc_include_getentropy_impl esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) +esp_libc_include_heap_impl esp-idf/esp_libc/libesp_libc.a(heap.c.obj) +esp_libc_include_init_funcs esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +esp_libc_include_pthread_impl esp-idf/esp_libc/libesp_libc.a(pthread.c.obj) +esp_libc_include_reent_syscalls_impl esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) +esp_libc_include_syscalls_impl esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +esp_libc_init esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + esp-idf/esp_libc/libesp_libc.a(init.c.obj) +esp_libc_init_funcs esp-idf/esp_libc/libesp_libc.a(init.c.obj) +esp_libc_init_global_stdio esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + esp-idf/esp_libc/libesp_libc.a(init.c.obj) +esp_libc_locks_init esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +esp_libc_time_init esp-idf/esp_libc/libesp_libc.a(time.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) +esp_light_sleep_start esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_log esp-idf/log/liblog.a(log.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + esp-idf/main/libmain.a(modbus_rtu.c.obj) + esp-idf/main/libmain.a(main.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) +esp_log_cache_add esp-idf/log/liblog.a(log_binary_heap.c.obj) + esp-idf/log/liblog.a(tag_log_level.c.obj) +esp_log_cache_clean esp-idf/log/liblog.a(log_binary_heap.c.obj) + esp-idf/log/liblog.a(tag_log_level.c.obj) +esp_log_cache_get_level esp-idf/log/liblog.a(log_binary_heap.c.obj) + esp-idf/log/liblog.a(tag_log_level.c.obj) +esp_log_cache_set_level esp-idf/log/liblog.a(log_binary_heap.c.obj) + esp-idf/log/liblog.a(tag_log_level.c.obj) +esp_log_default_level esp-idf/log/liblog.a(log_level.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/log/liblog.a(tag_log_level.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) +esp_log_early_timestamp esp-idf/log/liblog.a(log_timestamp.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +esp_log_impl_lock esp-idf/log/liblog.a(log_lock.c.obj) + esp-idf/log/liblog.a(tag_log_level.c.obj) +esp_log_impl_lock_timeout esp-idf/log/liblog.a(log_lock.c.obj) + esp-idf/log/liblog.a(tag_log_level.c.obj) +esp_log_impl_unlock esp-idf/log/liblog.a(log_lock.c.obj) + esp-idf/log/liblog.a(tag_log_level.c.obj) +esp_log_is_tag_loggable esp-idf/log/liblog.a(log_level.c.obj) + esp-idf/log/liblog.a(log.c.obj) +esp_log_level_get esp-idf/log/liblog.a(tag_log_level.c.obj) +esp_log_level_get_timeout esp-idf/log/liblog.a(tag_log_level.c.obj) + esp-idf/log/liblog.a(log_level.c.obj) +esp_log_level_set esp-idf/log/liblog.a(tag_log_level.c.obj) +esp_log_linked_list_clean esp-idf/log/liblog.a(log_linked_list.c.obj) + esp-idf/log/liblog.a(tag_log_level.c.obj) +esp_log_linked_list_get_level esp-idf/log/liblog.a(log_linked_list.c.obj) + esp-idf/log/liblog.a(tag_log_level.c.obj) +esp_log_linked_list_set_level esp-idf/log/liblog.a(log_linked_list.c.obj) + esp-idf/log/liblog.a(tag_log_level.c.obj) +esp_log_set_default_level esp-idf/log/liblog.a(log_level.c.obj) + esp-idf/log/liblog.a(tag_log_level.c.obj) +esp_log_set_vprintf esp-idf/log/liblog.a(log_write.c.obj) +esp_log_timestamp esp-idf/log/liblog.a(log_timestamp.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + esp-idf/main/libmain.a(modbus_rtu.c.obj) + esp-idf/main/libmain.a(main.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) +esp_log_util_is_constrained esp-idf/log/liblog.a(util.c.obj) +esp_log_util_set_cache_enabled_cb esp-idf/log/liblog.a(util.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +esp_log_va esp-idf/log/liblog.a(log.c.obj) + esp-idf/log/liblog.a(log_write.c.obj) +esp_log_vprint_func esp-idf/log/liblog.a(log_write.c.obj) + esp-idf/log/liblog.a(log.c.obj) +esp_log_write esp-idf/log/liblog.a(log_write.c.obj) +esp_log_writev esp-idf/log/liblog.a(log_write.c.obj) +esp_mbedtls_mem_calloc esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_mem.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform.c.obj) +esp_mbedtls_mem_free esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_mem.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform.c.obj) +esp_md5_hash_abort esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_md5.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +esp_md5_hash_clone esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_md5.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +esp_md5_hash_compute esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_md5.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +esp_md5_hash_finish esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_md5.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +esp_md5_hash_setup esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_md5.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +esp_md5_hash_update esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_md5.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +esp_mmu_map esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +esp_mmu_map_dump_mapped_blocks esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +esp_mmu_map_dump_mapped_blocks_private esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +esp_mmu_map_get_max_consecutive_free_block_size esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +esp_mmu_map_init esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_mmu_map_reserve_block_with_caps esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +esp_mmu_paddr_find_caps esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +esp_mmu_paddr_to_vaddr esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +esp_mmu_unmap esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +esp_mmu_vaddr_to_paddr esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +esp_mont_hw_op esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) +esp_mpi_disable_hardware_hw_op esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) +esp_mpi_enable_hardware_hw_op esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) +esp_mpi_hardware_words esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) +esp_mpi_interrupt_clear esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) +esp_mpi_interrupt_enable esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) +esp_mpi_mul_mpi_hw_op esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) +esp_mpi_mul_mpi_mod esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) +esp_mpi_mul_mpi_mod_hw_op esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) +esp_mpi_mult_mpi_failover_mod_mult_hw_op esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) +esp_mspi_32bit_address_flash_feature_check esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +esp_mspi_get_io esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +esp_mspi_pin_init esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_mspi_pin_reserve esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_newlib_init esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +esp_newlib_locks_init esp-idf/esp_libc/libesp_libc.a(locks.c.obj) +esp_newlib_time_init esp-idf/esp_libc/libesp_libc.a(time.c.obj) +esp_ota_abort esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_begin esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_check_rollback_is_possible esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_end esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_erase_last_boot_app_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_app_partition_count esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_boot_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_bootloader_description esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_last_invalid_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_next_update_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_partition_description esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_running_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) +esp_ota_get_state_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_invalidate_inactive_ota_data_slot esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_mark_app_invalid_rollback esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_mark_app_invalid_rollback_and_reboot esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_mark_app_valid_cancel_rollback esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_resume esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_set_boot_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_set_final_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_write esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_write_with_offset esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_panic_handler esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +esp_panic_handler_disable_timg_wdts esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +esp_panic_handler_enable_rtc_wdt esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +esp_panic_handler_feed_wdts esp-idf/esp_system/libesp_system.a(panic.c.obj) +esp_panic_handler_increment_entry_count esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +esp_panic_handler_reset_modules_on_exit_and_halt esp-idf/esp_system/libesp_system.a(panic.c.obj) +esp_partition_check_identity esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) +esp_partition_copy esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_deregister_external esp-idf/esp_partition/libesp_partition.a(partition.c.obj) +esp_partition_erase_range esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +esp_partition_find esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) +esp_partition_find_err esp-idf/esp_partition/libesp_partition.a(partition.c.obj) +esp_partition_find_first esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) +esp_partition_find_first_err esp-idf/esp_partition/libesp_partition.a(partition.c.obj) +esp_partition_get esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) +esp_partition_get_blockdev esp-idf/esp_partition/libesp_partition.a(partition.c.obj) +esp_partition_get_main_flash_sector_size esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) +esp_partition_get_sha256 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) +esp_partition_is_flash_region_writable esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) +esp_partition_iterator_release esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_main_flash_region_safe esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) +esp_partition_mmap esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) +esp_partition_munmap esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) +esp_partition_next esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) +esp_partition_ptr_get_blockdev esp-idf/esp_partition/libesp_partition.a(partition.c.obj) +esp_partition_read esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +esp_partition_read_raw esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +esp_partition_register_external esp-idf/esp_partition/libesp_partition.a(partition.c.obj) +esp_partition_table_verify esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +esp_partition_unload_all esp-idf/esp_partition/libesp_partition.a(partition.c.obj) +esp_partition_verify esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_verify_err esp-idf/esp_partition/libesp_partition.a(partition.c.obj) +esp_partition_write esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +esp_partition_write_raw esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +esp_perip_clk_init esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_phy_efuse_get_chip_ver_pkg esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +esp_phy_efuse_get_mac esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +esp_pm_register_inform_out_light_sleep_overhead_callback esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) +esp_pm_register_light_sleep_default_params_config_callback esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) +esp_pm_unregister_inform_out_light_sleep_overhead_callback esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) +esp_pm_unregister_light_sleep_default_params_config_callback esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) +esp_pthread_get_cfg esp-idf/pthread/libpthread.a(pthread.c.obj) +esp_pthread_get_default_config esp-idf/pthread/libpthread.a(pthread.c.obj) +esp_pthread_init esp-idf/pthread/libpthread.a(pthread.c.obj) +esp_pthread_set_cfg esp-idf/pthread/libpthread.a(pthread.c.obj) +esp_ptr_byte_accessible esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + esp-idf/freertos/libfreertos.a(heap_idf.c.obj) +esp_ptr_dma_ext_capable esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) +esp_ptr_executable esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +esp_ptr_external_ram esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) +esp_random esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) +esp_reent_cleanup esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +esp_register_freertos_idle_hook esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) +esp_register_freertos_idle_hook_for_cpu esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +esp_register_freertos_tick_hook esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) +esp_register_freertos_tick_hook_for_cpu esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) +esp_register_shutdown_handler esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) +esp_reset_reason_get_hint esp-idf/esp_system/libesp_system.a(panic.c.obj) +esp_reset_reason_set_hint esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) +esp_restart esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) +esp_restart_noos esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system.c.obj) +esp_restart_noos_dig esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +esp_rom_crc32_le esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +esp_rom_delay_us esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/main/libmain.a(main.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_libc/libesp_libc.a(time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) +esp_rom_efuse_get_flash_gpio_info esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +esp_rom_get_cpu_ticks_per_us esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +esp_rom_get_reset_reason esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_rom_gpio_connect_in_signal esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +esp_rom_gpio_connect_out_signal esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +esp_rom_gpio_pad_pullup_only esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +esp_rom_gpio_pad_select_gpio esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +esp_rom_install_channel_putc esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) +esp_rom_install_uart_printf esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_rom_md5_final esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_md5.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) +esp_rom_md5_init esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_md5.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) +esp_rom_md5_update esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_md5.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) +esp_rom_output_flush_tx esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) +esp_rom_output_putc esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) +esp_rom_output_rx_one_char esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) +esp_rom_output_set_as_console esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_rom_output_to_channels esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) +esp_rom_output_tx_one_char esp-idf/esp_stdio/libesp_stdio.a(stdio_simple.c.obj) +esp_rom_output_tx_wait_idle esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_uart.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_rom_printf esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) +esp_rom_regi2c_read esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) +esp_rom_regi2c_read_mask esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) +esp_rom_regi2c_write esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) +esp_rom_regi2c_write_mask esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) +esp_rom_route_intr_matrix esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_rom_set_cpu_ticks_per_us esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +esp_rom_software_reset_cpu esp-idf/esp_system/libesp_system.a(system_internal.c.obj) +esp_rom_software_reset_system esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) +esp_rom_spiflash_clear_bp esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_config_clk esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +esp_rom_spiflash_config_param esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +esp_rom_spiflash_config_readmode esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_erase_area esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_erase_block esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_erase_chip esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_erase_sector esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_lock esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_prepare_encrypted_data esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_read esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_read_status esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_read_statushigh esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_read_user_cmd esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_set_bp esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_unlock esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_wait_idle esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_rom_spiflash_write esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_write_disable esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_write_encrypted esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_write_encrypted_disable esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_write_encrypted_enable esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_write_status esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rtc_get_time_us esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + esp-idf/esp_system/libesp_system.a(system_time.c.obj) +esp_rtc_init esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_security_init_include_impl esp-idf/esp_security/libesp_security.a(init.c.obj) +esp_set_deep_sleep_wake_stub esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_set_time_from_rtc esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + esp-idf/esp_libc/libesp_libc.a(time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_setup_newlib_syscalls esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +esp_sha1_driver_abort esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) +esp_sha1_driver_clone esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) +esp_sha1_driver_compute esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) +esp_sha1_driver_finish esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) +esp_sha1_driver_update esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) +esp_sha1_finish esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) +esp_sha1_starts esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) +esp_sha1_update esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) +esp_sha256_driver_abort esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) +esp_sha256_driver_clone esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) +esp_sha256_driver_compute esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) +esp_sha256_driver_finish esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) +esp_sha256_driver_update esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) +esp_sha256_starts esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) +esp_sha512_driver_abort esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) +esp_sha512_driver_clone esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) +esp_sha512_driver_compute esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) +esp_sha512_driver_finish esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) +esp_sha512_driver_update esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) +esp_sha512_starts esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) +esp_sha_block esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) +esp_sha_hash_abort esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +esp_sha_hash_clone esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +esp_sha_hash_compute esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +esp_sha_hash_finish esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +esp_sha_hash_setup esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +esp_sha_hash_update esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +esp_sha_lock_engine esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) +esp_sha_lock_memory_block esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) +esp_sha_read_digest_state esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) +esp_sha_set_mode esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) +esp_sha_try_lock_engine esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) +esp_sha_unlock_engine esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) +esp_sha_unlock_memory_block esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) +esp_sleep_acquire_lp_use_xtal esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_config_gpio_isolate esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +esp_sleep_disable_bt_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_disable_ext1_wakeup_io esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_disable_wakeup_source esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_disable_wifi_beacon_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_disable_wifi_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_adc_tsens_monitor esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_bt_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_ext0_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_ext1_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_ext1_wakeup_io esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_gpio_switch esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +esp_sleep_enable_gpio_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_lowpower_analog_mode esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_timer_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_touchpad_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_uart_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_ulp_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_wifi_beacon_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_wifi_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_execute_event_callbacks esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_get_ext1_wakeup_status esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_get_touchpad_wakeup_status esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_get_wakeup_cause esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_get_wakeup_causes esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_gpio_pupd_config_workaround_apply esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_gpio_pupd_config_workaround_unapply esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_is_valid_wakeup_gpio esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_isolate_digital_gpio esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_overhead_out_time_refresh esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_pd_config esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_periph_use_8m esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_release_lp_use_xtal esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_set_console_uart_handling_mode esp-idf/esp_hw_support/libesp_hw_support.a(sleep_uart.c.obj) +esp_sleep_sub_mode_config esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +esp_sleep_sub_mode_dump_config esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +esp_sleep_sub_mode_force_disable esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +esp_spiffs_check esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) +esp_spiffs_format esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) +esp_spiffs_gc esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) +esp_spiffs_info esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + esp-idf/main/libmain.a(main.c.obj) +esp_spiffs_mounted esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) +esp_startup_start_app esp-idf/freertos/libfreertos.a(app_startup.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +esp_startup_start_app_other_cores esp-idf/freertos/libfreertos.a(app_startup.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +esp_stdio_register esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) +esp_sync_timekeeping_timers esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_system_abort esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + esp-idf/esp_libc/libesp_libc.a(abort.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +esp_system_console_put_char esp-idf/esp_stdio/libesp_stdio.a(stdio_simple.c.obj) + esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) +esp_system_get_time esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/esp_system/libesp_system.a(system_time.c.obj) + esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) +esp_system_get_time_resolution esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/esp_system/libesp_system.a(system_time.c.obj) + esp-idf/esp_libc/libesp_libc.a(time.c.obj) +esp_system_include_startup_funcs esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) +esp_system_reset_modules_on_exit esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) +esp_task_wdt_add esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_add_user esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_deinit esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_delete esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_delete_user esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_impl_timeout_triggered esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_impl_timer_allocate esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_impl_timer_feed esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_impl_timer_free esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_impl_timer_reconfigure esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_impl_timer_restart esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_impl_timer_stop esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_init esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +esp_task_wdt_isr_user_handler esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_print_triggered_tasks esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_reconfigure esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_reset esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_reset_user esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_restart esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_status esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_stop esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_time_impl_get_boot_time esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + esp-idf/esp_libc/libesp_libc.a(time.c.obj) +esp_time_impl_get_time esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + esp-idf/esp_libc/libesp_libc.a(time.c.obj) +esp_time_impl_get_time_since_boot esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + esp-idf/esp_libc/libesp_libc.a(time.c.obj) +esp_time_impl_set_boot_time esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + esp-idf/esp_libc/libesp_libc.a(time.c.obj) +esp_timer_early_init esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) +esp_timer_get_time esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_timer_impl_advance esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_timer_impl_deinit esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_timer_impl_early_init esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) +esp_timer_impl_get_alarm_reg esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_timer_impl_get_counter_reg esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_timer_impl_get_min_period_us esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) +esp_timer_impl_get_time esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) +esp_timer_impl_init esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_timer_impl_init_system_time esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) +esp_timer_impl_lock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) +esp_timer_impl_set esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_timer_impl_set_alarm esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) +esp_timer_impl_set_alarm_id esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) +esp_timer_impl_unlock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) +esp_timer_init_include_func esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) +esp_timer_private_advance esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_timer_private_lock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_timer_private_set esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_timer_private_unlock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_unregister_shutdown_handler esp-idf/esp_system/libesp_system.a(esp_system.c.obj) +esp_vApplicationIdleHook esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +esp_vApplicationTickHook esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +esp_vfs_access esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +esp_vfs_close esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +esp_vfs_closedir esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +esp_vfs_dump_fds esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_dump_registered_paths esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_fcntl_r esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +esp_vfs_fstat esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +esp_vfs_fsync esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +esp_vfs_ftruncate esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +esp_vfs_include_console_register esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) +esp_vfs_include_nullfs_register esp-idf/vfs/libvfs.a(nullfs.c.obj) +esp_vfs_ioctl esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +esp_vfs_link esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +esp_vfs_lseek esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +esp_vfs_mkdir esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +esp_vfs_null_get_vfs esp-idf/vfs/libvfs.a(nullfs.c.obj) +esp_vfs_null_register esp-idf/vfs/libvfs.a(nullfs.c.obj) +esp_vfs_open esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +esp_vfs_opendir esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +esp_vfs_pread esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +esp_vfs_pwrite esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +esp_vfs_read esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +esp_vfs_readdir esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +esp_vfs_readdir_r esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +esp_vfs_register esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_register_common esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_register_fd esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_register_fd_range esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_register_fd_with_local_fd esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_register_fs esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + esp-idf/vfs/libvfs.a(nullfs.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) +esp_vfs_register_fs_with_id esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_register_with_id esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_rename esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +esp_vfs_rewinddir esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +esp_vfs_rmdir esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +esp_vfs_seekdir esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +esp_vfs_select esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +esp_vfs_select_triggered esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +esp_vfs_select_triggered_isr esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +esp_vfs_set_readonly_flag esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_spiffs_register esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + esp-idf/main/libmain.a(main.c.obj) +esp_vfs_spiffs_unregister esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) +esp_vfs_stat esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +esp_vfs_telldir esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +esp_vfs_truncate esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +esp_vfs_uart_get_vfs esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) +esp_vfs_unlink esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +esp_vfs_unregister esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) +esp_vfs_unregister_fd esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_unregister_fs esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_unregister_fs_with_id esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_unregister_with_id esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_utime esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +esp_vfs_write esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +esp_wake_deep_sleep esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +ets_get_detected_xtal_freq esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +ets_install_putc1 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) +ets_install_putc2 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) +ets_isr_mask esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +ets_isr_unmask esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +ets_set_appcpu_boot_addr esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +ets_update_cpu_frequency_rom esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +fclose C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fclose.c.o) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + esp-idf/main/libmain.a(config_store.c.obj) + esp-idf/main/libmain.a(modbus_points.c.obj) + esp-idf/main/libmain.a(main.c.obj) +fcntl esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) +fdopen C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fdopen.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fopen.c.o) +ferror C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ferror.c.o) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) +ferror_unlocked C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_ferror.c.o) +fflush C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fflush.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fread.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fclose.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) +fgetc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgetc.c.o) +fgets C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgets.c.o) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/main/libmain.a(config_store.c.obj) + esp-idf/main/libmain.a(modbus_points.c.obj) +fopen C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fopen.c.o) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + esp-idf/main/libmain.a(config_store.c.obj) + esp-idf/main/libmain.a(modbus_points.c.obj) + esp-idf/main/libmain.a(main.c.obj) +forward_abort_uw_ctx esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +fprintf C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fprintf.c.o) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +fputc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputc.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_putchar.c.o) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +fputs C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputs.c.o) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +fread C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fread.c.o) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) +free esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_op.o) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + esp-idf/main/libmain.a(modbus_points.c.obj) + esp-idf/main/libmain.a(main.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/log/liblog.a(log_linked_list.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +fseeko C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fseeko.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fdopen.c.o) +fstat esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) +fstatvfs esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +fsync esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) +ftruncate esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +fwrite C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fwrite.c.o) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +g_exc_frames esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +g_flash_guard_default_ops esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +g_flash_guard_no_os_ops esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +g_mmu_mem_regions esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +g_panic_abort esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +g_panic_abort_details esp-idf/esp_system/libesp_system.a(panic.c.obj) +g_rom_flashchip esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +g_rom_spiflash_chip esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +g_rom_spiflash_dummy_len_plus esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +g_spi_lock_main_flash_dev esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) +g_startup_fn esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +g_startup_time esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + esp-idf/esp_system/libesp_system.a(system_time.c.obj) +g_ticks_per_us_app esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) +g_ticks_per_us_pro esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/log/liblog.a(log_timestamp.c.obj) +g_twdt_isr esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +get_fd_entry esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +get_local_fd esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +get_temp_buffer_not_supported esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) +get_vfs_count esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +get_vfs_for_fd esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +get_vfs_for_index esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +get_vfs_for_path esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +getc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgetc.c.o) +getc_unlocked C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgetc.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fread.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fgets.c.o) +getentropy esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) +getpid esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +getrandom esp-idf/esp_libc/libesp_libc.a(random.c.obj) + esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) +gettimeofday esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_time_time.c.o) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) +gpio_config esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_config_as_analog esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_deep_sleep_hold_dis esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_deep_sleep_hold_en esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_dump_io_configuration esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_func_sel esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +gpio_get_drive_capability esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_get_io_config esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_get_level esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_hal_intr_disable esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_hal_intr_enable_on_core esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_hal_iomux_in esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_hal_iomux_out esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_hal_isolate_in_sleep esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) +gpio_hal_matrix_in esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_hal_matrix_out esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_hold_dis esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_hold_en esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_input_enable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +gpio_install_isr_service esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_intr_disable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_intr_enable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_iomux_input esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +gpio_iomux_output esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +gpio_isr_handler_add esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_isr_handler_remove esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_isr_register esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_matrix_input esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +gpio_matrix_output esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +gpio_od_disable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_od_enable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_output_disable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +gpio_output_enable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_pulldown_dis esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_pulldown_en esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_pullup_dis esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_pullup_en esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_reset_pin esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/main/libmain.a(main.c.obj) +gpio_set_direction esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/main/libmain.a(main.c.obj) +gpio_set_drive_capability esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_set_intr_type esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_set_level esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/main/libmain.a(main.c.obj) +gpio_set_pull_mode esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_sleep_sel_dis esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +gpio_sleep_sel_en esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +gpio_sleep_set_direction esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +gpio_sleep_set_pull_mode esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +gpio_uninstall_isr_service esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_wakeup_disable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_wakeup_enable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +heap_caps_add_region esp-idf/heap/libheap.a(heap_caps_init.c.obj) +heap_caps_add_region_with_caps esp-idf/heap/libheap.a(heap_caps_init.c.obj) +heap_caps_aligned_alloc esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_aligned_alloc_base esp-idf/heap/libheap.a(heap_caps_base.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_aligned_alloc_default esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/esp_libc/libesp_libc.a(heap.c.obj) +heap_caps_aligned_calloc esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +heap_caps_aligned_free esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_calloc esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_mem.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +heap_caps_calloc_base esp-idf/heap/libheap.a(heap_caps_base.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_calloc_prefer esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_check_add_region_allowed esp-idf/heap/libheap.a(heap_caps_init.c.obj) +heap_caps_check_integrity esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_check_integrity_addr esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_check_integrity_all esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_dump esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_dump_all esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_enable_nonos_stack_heaps esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +heap_caps_free esp-idf/heap/libheap.a(heap_caps_base.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_mem.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_get_allocated_size esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_get_containing_block_size esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_get_free_size esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/main/libmain.a(main.c.obj) + esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) +heap_caps_get_info esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_get_largest_free_block esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/main/libmain.a(main.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) +heap_caps_get_minimum_free_size esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) +heap_caps_get_total_size esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_init esp-idf/heap/libheap.a(heap_caps_init.c.obj) +heap_caps_malloc esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +heap_caps_malloc_base esp-idf/heap/libheap.a(heap_caps_base.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_malloc_default esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/esp_libc/libesp_libc.a(heap.c.obj) +heap_caps_malloc_extmem_enable esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_malloc_prefer esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_match esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +heap_caps_monitor_local_minimum_free_size_start esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_monitor_local_minimum_free_size_stop esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_print_heap_info esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_realloc esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +heap_caps_realloc_base esp-idf/heap/libheap.a(heap_caps_base.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_realloc_default esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/esp_libc/libesp_libc.a(heap.c.obj) +heap_caps_realloc_prefer esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_register_failed_alloc_callback esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_walk esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_walk_all esp-idf/heap/libheap.a(heap_caps.c.obj) +include_esp_phy_override esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +int nvs::NVSHandle::get_item(char const*, long long&) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +int nvs::NVSHandle::get_item(char const*, long&) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +int nvs::NVSHandle::get_item(char const*, short&) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +int nvs::NVSHandle::get_item(char const*, signed char&) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +int nvs::NVSHandle::get_item(char const*, unsigned char&) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +int nvs::NVSHandle::get_item(char const*, unsigned long long&) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +int nvs::NVSHandle::get_item(char const*, unsigned long&) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +int nvs::NVSHandle::get_item(char const*, unsigned short&) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +int nvs::NVSHandle::set_item(char const*, long long) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +int nvs::NVSHandle::set_item(char const*, long) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +int nvs::NVSHandle::set_item(char const*, short) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +int nvs::NVSHandle::set_item(char const*, signed char) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +int nvs::NVSHandle::set_item(char const*, unsigned char) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +int nvs::NVSHandle::set_item(char const*, unsigned long long) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +int nvs::NVSHandle::set_item(char const*, unsigned long) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +int nvs::NVSHandle::set_item(char const*, unsigned short) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +int_wdt_cpu1_ticked esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) +intrusive_list::erase(intrusive_list::iterator) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +intrusive_list::push_back(NVSHandleEntry*) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +intrusive_list::erase(intrusive_list::iterator) esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) +intrusive_list::push_back(nvs::HashList::HashListBlock*) esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) +intrusive_list::erase(intrusive_list::iterator) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +intrusive_list::push_back(nvs::NVSHandleSimple*) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +intrusive_list::clear() esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +intrusive_list::erase(intrusive_list::iterator) esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +intrusive_list::insert(intrusive_list::iterator, nvs::Page*) esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +intrusive_list::push_back(nvs::Page*) esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +intrusive_list::push_front(nvs::Page*) esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +intrusive_list::erase(intrusive_list::iterator) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +intrusive_list::push_back(nvs::Partition*) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +intrusive_list::clearAndFreeNodes() esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +intrusive_list::erase(intrusive_list::iterator) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +intrusive_list::push_back(nvs::Storage::BlobIndexNode*) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +intrusive_list::clearAndFreeNodes() esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +intrusive_list::erase(intrusive_list::iterator) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +intrusive_list::push_back(nvs::Storage::NamespaceEntry*) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +intrusive_list::clearAndFreeNodes() esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +intrusive_list::erase(intrusive_list::iterator) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +intrusive_list::push_back(nvs::Storage::UsedPageNode*) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +intrusive_list::erase(intrusive_list::iterator) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +intrusive_list::push_back(nvs::Storage*) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +ioctl esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +isatty esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +itoa C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_itoa.c.o) + esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + esp-idf/esp_libc/libesp_libc.a(abort.c.obj) +ld_include_highint_hdl esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) +link esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +lseek esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fdopen.c.o) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +mallinfo esp-idf/esp_libc/libesp_libc.a(heap.c.obj) +malloc esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + esp-idf/log/liblog.a(log_linked_list.c.obj) +malloc_stats esp-idf/esp_libc/libesp_libc.a(heap.c.obj) +malloc_trim esp-idf/esp_libc/libesp_libc.a(heap.c.obj) +malloc_usable_size esp-idf/esp_libc/libesp_libc.a(heap.c.obj) +mallopt esp-idf/esp_libc/libesp_libc.a(heap.c.obj) +mbedtls_aes_cmac_prf_128 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) +mbedtls_aes_crypt_cbc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) +mbedtls_aes_crypt_cfb128 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) +mbedtls_aes_crypt_cfb8 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) +mbedtls_aes_crypt_ctr esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) +mbedtls_aes_crypt_ecb esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) +mbedtls_aes_crypt_ofb esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) +mbedtls_aes_crypt_xts esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) +mbedtls_aes_free esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) +mbedtls_aes_get_implementation esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) +mbedtls_aes_init esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) +mbedtls_aes_self_test esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) +mbedtls_aes_setkey_dec esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) +mbedtls_aes_setkey_enc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) +mbedtls_aes_xts_free esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) +mbedtls_aes_xts_init esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) +mbedtls_aes_xts_setkey_dec esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) +mbedtls_aes_xts_setkey_enc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) +mbedtls_asn1_find_named_data esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) +mbedtls_asn1_free_named_data_list esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) +mbedtls_asn1_free_named_data_list_shallow esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) +mbedtls_asn1_get_alg esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) +mbedtls_asn1_get_alg_null esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) +mbedtls_asn1_get_bitstring esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) +mbedtls_asn1_get_bitstring_null esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) +mbedtls_asn1_get_bool esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) +mbedtls_asn1_get_enum esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) +mbedtls_asn1_get_int esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +mbedtls_asn1_get_integer esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) +mbedtls_asn1_get_len esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) +mbedtls_asn1_get_mpi esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +mbedtls_asn1_get_sequence_of esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) +mbedtls_asn1_get_tag esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) +mbedtls_asn1_sequence_free esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) +mbedtls_asn1_store_named_data esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) +mbedtls_asn1_traverse_sequence_of esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) +mbedtls_asn1_write_algorithm_identifier esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) +mbedtls_asn1_write_algorithm_identifier_ext esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) +mbedtls_asn1_write_bitstring esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) +mbedtls_asn1_write_bool esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) +mbedtls_asn1_write_enum esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) +mbedtls_asn1_write_ia5_string esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) +mbedtls_asn1_write_int esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +mbedtls_asn1_write_integer esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) +mbedtls_asn1_write_len esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) +mbedtls_asn1_write_mpi esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +mbedtls_asn1_write_named_bitstring esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) +mbedtls_asn1_write_null esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) +mbedtls_asn1_write_octet_string esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) +mbedtls_asn1_write_oid esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) +mbedtls_asn1_write_printable_string esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) +mbedtls_asn1_write_raw_buffer esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) +mbedtls_asn1_write_tag esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) +mbedtls_asn1_write_tagged_string esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) +mbedtls_asn1_write_utf8_string esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) +mbedtls_calloc esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_storage.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_ccm_auth_decrypt esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) +mbedtls_ccm_encrypt_and_tag esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) +mbedtls_ccm_finish esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) +mbedtls_ccm_free esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) +mbedtls_ccm_init esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) +mbedtls_ccm_self_test esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) +mbedtls_ccm_set_lengths esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) +mbedtls_ccm_setkey esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) +mbedtls_ccm_star_auth_decrypt esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) +mbedtls_ccm_star_encrypt_and_tag esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) +mbedtls_ccm_starts esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) +mbedtls_ccm_update esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) +mbedtls_ccm_update_ad esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) +mbedtls_cipher_auth_decrypt_ext esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) +mbedtls_cipher_auth_encrypt_ext esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) +mbedtls_cipher_base_lookup_table esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) +mbedtls_cipher_check_tag esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) +mbedtls_cipher_cmac esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) +mbedtls_cipher_cmac_finish esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) +mbedtls_cipher_cmac_reset esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) +mbedtls_cipher_cmac_starts esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) +mbedtls_cipher_cmac_update esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) +mbedtls_cipher_crypt esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) +mbedtls_cipher_definitions esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) +mbedtls_cipher_finish esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) +mbedtls_cipher_finish_padded esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) +mbedtls_cipher_free esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) +mbedtls_cipher_info_from_psa esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) +mbedtls_cipher_info_from_string esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) +mbedtls_cipher_info_from_type esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) +mbedtls_cipher_info_from_values esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) +mbedtls_cipher_init esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) +mbedtls_cipher_list esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) +mbedtls_cipher_reset esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) +mbedtls_cipher_set_iv esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) +mbedtls_cipher_set_padding_mode esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) +mbedtls_cipher_setkey esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) +mbedtls_cipher_setup esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) +mbedtls_cipher_supported esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) +mbedtls_cipher_update esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) +mbedtls_cipher_update_ad esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) +mbedtls_cipher_values_from_psa esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) +mbedtls_cipher_write_tag esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) +mbedtls_cmac_self_test esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) +mbedtls_condition_variable_broadcast esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) +mbedtls_condition_variable_free esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) +mbedtls_condition_variable_init esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) +mbedtls_condition_variable_signal esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) +mbedtls_condition_variable_wait esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) +mbedtls_ct_memcmp esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_ct_memcpy_if esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) +mbedtls_ct_memcpy_offset esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(constant_time.c.obj) +mbedtls_ct_memmove_left esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +mbedtls_ct_zeroize_if esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +mbedtls_ecc_group_from_psa esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_ecc_group_to_psa esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) +mbedtls_ecdh_calc_secret esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) +mbedtls_ecdh_can_do esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) +mbedtls_ecdh_compute_shared esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) +mbedtls_ecdh_free esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) +mbedtls_ecdh_gen_public esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) +mbedtls_ecdh_get_grp_id esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) +mbedtls_ecdh_get_params esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) +mbedtls_ecdh_init esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) +mbedtls_ecdh_make_params esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) +mbedtls_ecdh_make_public esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) +mbedtls_ecdh_read_params esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) +mbedtls_ecdh_read_public esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) +mbedtls_ecdh_setup esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) +mbedtls_ecdsa_can_do esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) +mbedtls_ecdsa_der_to_raw esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) +mbedtls_ecdsa_free esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) +mbedtls_ecdsa_from_keypair esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) +mbedtls_ecdsa_genkey esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) +mbedtls_ecdsa_init esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) +mbedtls_ecdsa_raw_to_der esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) +mbedtls_ecdsa_read_signature esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) +mbedtls_ecdsa_read_signature_restartable esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) +mbedtls_ecdsa_sign esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) +mbedtls_ecdsa_sign_det_ext esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) +mbedtls_ecdsa_sign_det_restartable esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) +mbedtls_ecdsa_sign_restartable esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) +mbedtls_ecdsa_verify esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) +mbedtls_ecdsa_verify_restartable esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) +mbedtls_ecdsa_write_signature esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) +mbedtls_ecdsa_write_signature_restartable esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) +mbedtls_ecjpake_check esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) +mbedtls_ecjpake_derive_secret esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) +mbedtls_ecjpake_free esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) +mbedtls_ecjpake_init esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) +mbedtls_ecjpake_read_round_one esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) +mbedtls_ecjpake_read_round_two esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) +mbedtls_ecjpake_self_test esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) +mbedtls_ecjpake_set_point_format esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) +mbedtls_ecjpake_setup esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) +mbedtls_ecjpake_write_round_one esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) +mbedtls_ecjpake_write_round_two esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) +mbedtls_ecjpake_write_shared_key esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) +mbedtls_ecp_check_privkey esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) +mbedtls_ecp_check_pub_priv esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) +mbedtls_ecp_check_pubkey esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) +mbedtls_ecp_copy esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) +mbedtls_ecp_curve_info_from_grp_id esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) +mbedtls_ecp_curve_info_from_name esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) +mbedtls_ecp_curve_info_from_tls_id esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) +mbedtls_ecp_curve_list esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) +mbedtls_ecp_export esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) +mbedtls_ecp_gen_key esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) +mbedtls_ecp_gen_keypair esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) +mbedtls_ecp_gen_keypair_base esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) +mbedtls_ecp_gen_privkey esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) +mbedtls_ecp_get_type esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) +mbedtls_ecp_group_copy esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) +mbedtls_ecp_group_free esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) +mbedtls_ecp_group_init esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_ecp_group_load esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_ecp_grp_id_list esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) +mbedtls_ecp_is_zero esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) +mbedtls_ecp_keypair_calc_public esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) +mbedtls_ecp_keypair_free esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) +mbedtls_ecp_keypair_get_group_id esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) +mbedtls_ecp_keypair_init esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) +mbedtls_ecp_mul esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) +mbedtls_ecp_mul_restartable esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) +mbedtls_ecp_muladd esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) +mbedtls_ecp_muladd_restartable esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) +mbedtls_ecp_point_cmp esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) +mbedtls_ecp_point_free esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) +mbedtls_ecp_point_init esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) +mbedtls_ecp_point_read_binary esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) +mbedtls_ecp_point_read_string esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) +mbedtls_ecp_point_write_binary esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) +mbedtls_ecp_read_key esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) +mbedtls_ecp_self_test esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) +mbedtls_ecp_set_public_key esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) +mbedtls_ecp_set_zero esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) +mbedtls_ecp_tls_read_group esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) +mbedtls_ecp_tls_read_group_id esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) +mbedtls_ecp_tls_read_point esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) +mbedtls_ecp_tls_write_group esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) +mbedtls_ecp_tls_write_point esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) +mbedtls_ecp_write_key_ext esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) +mbedtls_ecp_write_public_key esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) +mbedtls_free esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform_util.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_gcm_auth_decrypt esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) +mbedtls_gcm_crypt_and_tag esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) +mbedtls_gcm_finish esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) +mbedtls_gcm_free esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) +mbedtls_gcm_init esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) +mbedtls_gcm_self_test esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) +mbedtls_gcm_setkey esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher_wrap.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) +mbedtls_gcm_starts esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) +mbedtls_gcm_update esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) +mbedtls_gcm_update_ad esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) +mbedtls_hardware_poll esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_hardware.c.obj) +mbedtls_hmac_drbg_free esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) +mbedtls_hmac_drbg_init esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) +mbedtls_hmac_drbg_random esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) +mbedtls_hmac_drbg_random_with_add esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_reseed esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_seed esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_seed_buf esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) +mbedtls_hmac_drbg_self_test esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_set_entropy_len esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_set_prediction_resistance esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_set_reseed_interval esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_update esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_update_seed_file esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_write_seed_file esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) +mbedtls_md esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +mbedtls_md_clone esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) +mbedtls_md_error_from_psa esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) +mbedtls_md_file esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) +mbedtls_md_finish esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +mbedtls_md_free esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +mbedtls_md_get_name esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) +mbedtls_md_get_size esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) +mbedtls_md_get_type esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) +mbedtls_md_hmac esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) +mbedtls_md_hmac_finish esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) +mbedtls_md_hmac_reset esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) +mbedtls_md_hmac_setup esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) +mbedtls_md_hmac_starts esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) +mbedtls_md_hmac_update esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) +mbedtls_md_info_from_ctx esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) +mbedtls_md_info_from_string esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) +mbedtls_md_info_from_type esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) +mbedtls_md_init esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +mbedtls_md_list esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) +mbedtls_md_setup esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +mbedtls_md_starts esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +mbedtls_md_update esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +mbedtls_mpi_add_abs esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) +mbedtls_mpi_add_int esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_mpi_add_mpi esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) +mbedtls_mpi_bitlen esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) +mbedtls_mpi_cmp_abs esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) +mbedtls_mpi_cmp_int esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) +mbedtls_mpi_cmp_mpi esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) +mbedtls_mpi_copy esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) +mbedtls_mpi_core_add esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) +mbedtls_mpi_core_add_if esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) +mbedtls_mpi_core_bigendian_to_host esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) +mbedtls_mpi_core_bitlen esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) +mbedtls_mpi_core_check_zero_ct esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) +mbedtls_mpi_core_clz esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) +mbedtls_mpi_core_cond_assign esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) +mbedtls_mpi_core_cond_swap esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) +mbedtls_mpi_core_exp_mod esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) +mbedtls_mpi_core_exp_mod_unsafe esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) +mbedtls_mpi_core_exp_mod_working_limbs esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) +mbedtls_mpi_core_fill_random esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) +mbedtls_mpi_core_from_mont_rep esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) +mbedtls_mpi_core_gcd_modinv_odd esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) +mbedtls_mpi_core_get_mont_r2_unsafe esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) +mbedtls_mpi_core_lt_ct esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) +mbedtls_mpi_core_mla esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) +mbedtls_mpi_core_montmul esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +mbedtls_mpi_core_montmul_init esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) +mbedtls_mpi_core_mul esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) +mbedtls_mpi_core_random esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) +mbedtls_mpi_core_read_be esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) +mbedtls_mpi_core_read_le esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) +mbedtls_mpi_core_shift_l esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) +mbedtls_mpi_core_shift_r esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) +mbedtls_mpi_core_sub esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) +mbedtls_mpi_core_sub_int esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) +mbedtls_mpi_core_to_mont_rep esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) +mbedtls_mpi_core_uint_le_mpi esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) +mbedtls_mpi_core_write_be esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) +mbedtls_mpi_core_write_le esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) +mbedtls_mpi_div_int esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) +mbedtls_mpi_div_mpi esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) +mbedtls_mpi_exp_mod esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) +mbedtls_mpi_exp_mod_soft esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) +mbedtls_mpi_exp_mod_unsafe esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +mbedtls_mpi_fill_random esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) +mbedtls_mpi_free esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_mpi_gcd esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) +mbedtls_mpi_gcd_modinv_odd esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) +mbedtls_mpi_gen_prime esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +mbedtls_mpi_get_bit esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) +mbedtls_mpi_grow esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) +mbedtls_mpi_init esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_mpi_inv_mod esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) +mbedtls_mpi_inv_mod_even_in_range esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) +mbedtls_mpi_inv_mod_odd esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) +mbedtls_mpi_is_prime_ext esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) +mbedtls_mpi_lsb esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) +mbedtls_mpi_lset esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) +mbedtls_mpi_lt_mpi_ct esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_mpi_mod_int esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) +mbedtls_mpi_mod_mpi esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) +mbedtls_mpi_mul_int esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) +mbedtls_mpi_mul_mpi esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) +mbedtls_mpi_random esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) +mbedtls_mpi_read_binary esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_mpi_read_binary_le esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) +mbedtls_mpi_read_file esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) +mbedtls_mpi_read_string esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) +mbedtls_mpi_safe_cond_assign esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) +mbedtls_mpi_safe_cond_swap esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) +mbedtls_mpi_self_test esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) +mbedtls_mpi_set_bit esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) +mbedtls_mpi_shift_l esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) +mbedtls_mpi_shift_r esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) +mbedtls_mpi_shrink esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) +mbedtls_mpi_size esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) +mbedtls_mpi_sub_abs esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) +mbedtls_mpi_sub_int esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_mpi_sub_mpi esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) +mbedtls_mpi_swap esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +mbedtls_mpi_write_binary esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_mpi_write_binary_le esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) +mbedtls_mpi_write_file esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) +mbedtls_mpi_write_string esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) +mbedtls_mutex_free esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +mbedtls_mutex_free_ptr esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) +mbedtls_mutex_init esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +mbedtls_mutex_init_ptr esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) +mbedtls_mutex_lock esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_mutex_lock_ptr esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) +mbedtls_mutex_unlock esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_mutex_unlock_ptr esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) +mbedtls_oid_get_cipher_alg esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) +mbedtls_oid_get_ec_grp esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) +mbedtls_oid_get_ec_grp_algid esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) +mbedtls_oid_get_md_hmac esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) +mbedtls_oid_get_oid_by_ec_grp esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) +mbedtls_oid_get_oid_by_ec_grp_algid esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) +mbedtls_oid_get_oid_by_md esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +mbedtls_oid_get_oid_by_pk_alg esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) +mbedtls_oid_get_pk_alg esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) +mbedtls_platform_set_calloc_free esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform.c.obj) +mbedtls_platform_setup esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform.c.obj) +mbedtls_platform_teardown esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform.c.obj) +mbedtls_platform_zeroize esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform_util.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_aead_abort esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_aead_decrypt esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_aead_decrypt_setup esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_aead_encrypt esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_aead_encrypt_setup esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_aead_finish esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_aead_set_lengths esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_aead_set_nonce esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_aead_update esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_aead_update_ad esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_asymmetric_decrypt esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_asymmetric_encrypt esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_cipher_abort esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_cipher_decrypt esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_cipher_decrypt_setup esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_cipher_encrypt esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_cipher_encrypt_setup esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_cipher_finish esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_cipher_set_iv esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_cipher_update esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_crypto_free esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_crypto_init_include_impl esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_psa_crypto_init.c.obj) +mbedtls_psa_ecdsa_sign_hash esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_ecdsa_verify_hash esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_ecp_export_key esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) +mbedtls_psa_ecp_export_public_key esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_ecp_generate_key esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_ecp_import_key esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_ecp_load_public_part esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) +mbedtls_psa_ecp_load_representation esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) +mbedtls_psa_external_get_random esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_hardware.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_ffdh_export_public_key esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_ffdh_generate_key esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_ffdh_import_key esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_ffdh_key_agreement esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_get_random esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) +mbedtls_psa_get_stats esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) +mbedtls_psa_hash_abort esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_hash_clone esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_hash_compute esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_hash_finish esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_hash_setup esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_hash_update esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_interruptible_set_max_ops esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_key_agreement_ecdh esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_mac_abort esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_mac_compute esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_mac_sign_finish esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_mac_sign_setup esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_mac_update esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_mac_verify_finish esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_mac_verify_setup esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_pake_abort esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_pake_get_implicit_key esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_pake_input esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_pake_output esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_pake_setup esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_rsa_export_key esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) +mbedtls_psa_rsa_export_public_key esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_rsa_generate_key esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_rsa_import_key esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_rsa_load_representation esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) +mbedtls_psa_rsa_sign_hash esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_rsa_verify_hash esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_sign_hash_abort esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_sign_hash_complete esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_sign_hash_get_num_ops esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_sign_hash_start esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_verify_hash_abort esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_verify_hash_complete esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_verify_hash_get_num_ops esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_psa_verify_hash_start esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_rsa_check_privkey esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +mbedtls_rsa_check_pub_priv esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +mbedtls_rsa_check_pubkey esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +mbedtls_rsa_complete esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +mbedtls_rsa_copy esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +mbedtls_rsa_deduce_crt esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +mbedtls_rsa_deduce_primes esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +mbedtls_rsa_deduce_private_exponent esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +mbedtls_rsa_export esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_export_crt esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +mbedtls_rsa_export_raw esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +mbedtls_rsa_free esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_gen_key esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_get_bitlen esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +mbedtls_rsa_get_len esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_get_md_alg esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +mbedtls_rsa_get_padding_mode esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +mbedtls_rsa_import esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +mbedtls_rsa_import_raw esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +mbedtls_rsa_init esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_parse_key esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_parse_pubkey esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_pkcs1_decrypt esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_pkcs1_encrypt esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_pkcs1_sign esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_pkcs1_verify esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_private esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +mbedtls_rsa_public esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +mbedtls_rsa_rsaes_oaep_decrypt esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_rsaes_oaep_encrypt esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_rsaes_pkcs1_v15_decrypt esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +mbedtls_rsa_rsaes_pkcs1_v15_encrypt esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +mbedtls_rsa_rsassa_pkcs1_v15_sign esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +mbedtls_rsa_rsassa_pkcs1_v15_verify esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +mbedtls_rsa_rsassa_pss_sign esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_rsassa_pss_sign_ext esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +mbedtls_rsa_rsassa_pss_sign_no_mode_check esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +mbedtls_rsa_rsassa_pss_verify esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +mbedtls_rsa_rsassa_pss_verify_ext esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_self_test esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +mbedtls_rsa_set_padding esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_validate_crt esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +mbedtls_rsa_validate_params esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +mbedtls_rsa_write_key esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_write_pubkey esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) +mbedtls_sha256 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) +mbedtls_sha256_clone esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) +mbedtls_sha256_finish esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) +mbedtls_sha256_free esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) +mbedtls_sha256_init esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) +mbedtls_sha256_self_test esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) +mbedtls_sha256_starts esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) +mbedtls_sha256_update esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) +mbedtls_sha384_self_test esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) +mbedtls_sha512 esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) +mbedtls_sha512_clone esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_hash.c.obj) +mbedtls_sha512_finish esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_hash.c.obj) +mbedtls_sha512_free esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_hash.c.obj) +mbedtls_sha512_init esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_hash.c.obj) +mbedtls_sha512_self_test esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) +mbedtls_sha512_starts esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_hash.c.obj) +mbedtls_sha512_update esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_hash.c.obj) +mbedtls_threading_key_slot_mutex esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_threading_psa_globaldata_mutex esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_threading_psa_rngdata_mutex esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +mbedtls_threading_readdir_mutex esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) +mbedtls_to_psa_error esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) +mbedtls_zeroize_and_free esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform_util.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_storage.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +memalign esp-idf/esp_libc/libesp_libc.a(heap.c.obj) +memcmp C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memcmp.c.o) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_storage.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +memcpy C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memcpy.S.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fwrite.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fread.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_utoa.c.o) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_hal_security/libesp_hal_security.a(aes_hal.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_md5.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_common.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_xts.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_storage.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + esp-idf/main/libmain.a(modbus_rtu.c.obj) + esp-idf/main/libmain.a(modbus_points.c.obj) + esp-idf/main/libmain.a(modbus_memory.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + esp-idf/heap/libheap.a(heap_caps_base.c.obj) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/log/liblog.a(log_linked_list.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) +memmove C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_memmove.c.o) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/main/libmain.a(config_store.c.obj) + esp-idf/main/libmain.a(modbus_points.c.obj) +memset C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_memset.S.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_snprintf.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_bzero.c.o) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ffdh.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(platform_util.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_md5.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha1.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_hmac_transparent.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_sha.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_client.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + esp-idf/main/libmain.a(config_store.c.obj) + esp-idf/main/libmain.a(modbus_rtu.c.obj) + esp-idf/main/libmain.a(modbus_points.c.obj) + esp-idf/main/libmain.a(modbus_memory.c.obj) + esp-idf/main/libmain.a(main.c.obj) + esp-idf/vfs/libvfs.a(nullfs.c.obj) + esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/esp_libc/libesp_libc.a(time.c.obj) + esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + esp-idf/esp_libc/libesp_libc.a(abort.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/heap/libheap.a(heap_caps_base.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/log/liblog.a(log_write.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) +memspi_host_erase_block esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +memspi_host_erase_chip esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +memspi_host_erase_sector esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +memspi_host_flush_cache esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +memspi_host_init_pointers esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +memspi_host_program_page esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +memspi_host_read esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +memspi_host_read_data_slicer esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +memspi_host_read_id_hs esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +memspi_host_read_status_hs esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +memspi_host_set_write_protect esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +memspi_host_write_data_slicer esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +mkdir esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +mmu_hal_bytes_to_pages esp-idf/hal/libhal.a(mmu_hal.c.obj) +mmu_hal_check_valid_ext_vaddr_region esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +mmu_hal_ctx_init esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +mmu_hal_init esp-idf/hal/libhal.a(mmu_hal.c.obj) +mmu_hal_map_region esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +mmu_hal_paddr_to_vaddr esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +mmu_hal_pages_to_bytes esp-idf/hal/libhal.a(mmu_hal.c.obj) +mmu_hal_unmap_all esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +mmu_hal_unmap_region esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +mmu_hal_vaddr_to_paddr esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +mmu_init esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +modbus_memory_deinit esp-idf/main/libmain.a(modbus_memory.c.obj) +modbus_memory_init esp-idf/main/libmain.a(modbus_memory.c.obj) + esp-idf/main/libmain.a(main.c.obj) +modbus_memory_read_bit esp-idf/main/libmain.a(modbus_memory.c.obj) + esp-idf/main/libmain.a(main.c.obj) +modbus_memory_read_coil esp-idf/main/libmain.a(modbus_memory.c.obj) + esp-idf/main/libmain.a(modbus_rtu.c.obj) +modbus_memory_read_coils esp-idf/main/libmain.a(modbus_memory.c.obj) +modbus_memory_read_discrete_input esp-idf/main/libmain.a(modbus_memory.c.obj) + esp-idf/main/libmain.a(modbus_rtu.c.obj) +modbus_memory_read_discrete_inputs esp-idf/main/libmain.a(modbus_memory.c.obj) +modbus_memory_read_holding_register esp-idf/main/libmain.a(modbus_memory.c.obj) + esp-idf/main/libmain.a(modbus_rtu.c.obj) +modbus_memory_read_holding_registers esp-idf/main/libmain.a(modbus_memory.c.obj) +modbus_memory_read_input_register esp-idf/main/libmain.a(modbus_memory.c.obj) + esp-idf/main/libmain.a(modbus_rtu.c.obj) +modbus_memory_read_input_registers esp-idf/main/libmain.a(modbus_memory.c.obj) +modbus_memory_read_reg esp-idf/main/libmain.a(modbus_memory.c.obj) + esp-idf/main/libmain.a(main.c.obj) +modbus_memory_reset esp-idf/main/libmain.a(modbus_memory.c.obj) +modbus_memory_valid_bit_range esp-idf/main/libmain.a(modbus_memory.c.obj) +modbus_memory_valid_reg_range esp-idf/main/libmain.a(modbus_memory.c.obj) +modbus_memory_write_bit esp-idf/main/libmain.a(modbus_memory.c.obj) + esp-idf/main/libmain.a(main.c.obj) +modbus_memory_write_coil esp-idf/main/libmain.a(modbus_memory.c.obj) + esp-idf/main/libmain.a(modbus_rtu.c.obj) +modbus_memory_write_coils esp-idf/main/libmain.a(modbus_memory.c.obj) + esp-idf/main/libmain.a(modbus_rtu.c.obj) +modbus_memory_write_discrete_input esp-idf/main/libmain.a(modbus_memory.c.obj) +modbus_memory_write_discrete_inputs esp-idf/main/libmain.a(modbus_memory.c.obj) +modbus_memory_write_holding_register esp-idf/main/libmain.a(modbus_memory.c.obj) + esp-idf/main/libmain.a(modbus_rtu.c.obj) +modbus_memory_write_holding_registers esp-idf/main/libmain.a(modbus_memory.c.obj) + esp-idf/main/libmain.a(modbus_rtu.c.obj) +modbus_memory_write_input_register esp-idf/main/libmain.a(modbus_memory.c.obj) +modbus_memory_write_input_registers esp-idf/main/libmain.a(modbus_memory.c.obj) +modbus_memory_write_reg esp-idf/main/libmain.a(modbus_memory.c.obj) + esp-idf/main/libmain.a(main.c.obj) +modbus_points_find_by_name esp-idf/main/libmain.a(modbus_points.c.obj) +modbus_points_find_by_pics_offset esp-idf/main/libmain.a(modbus_points.c.obj) +modbus_points_find_by_pics_range esp-idf/main/libmain.a(modbus_points.c.obj) + esp-idf/main/libmain.a(modbus_memory.c.obj) +modbus_points_find_by_type_offset esp-idf/main/libmain.a(modbus_points.c.obj) +modbus_points_init esp-idf/main/libmain.a(modbus_points.c.obj) + esp-idf/main/libmain.a(main.c.obj) +modbus_points_is_bit_type esp-idf/main/libmain.a(modbus_points.c.obj) + esp-idf/main/libmain.a(modbus_memory.c.obj) +modbus_points_is_reg_type esp-idf/main/libmain.a(modbus_points.c.obj) +modbus_points_is_writable_type esp-idf/main/libmain.a(modbus_points.c.obj) +modbus_points_load esp-idf/main/libmain.a(modbus_points.c.obj) + esp-idf/main/libmain.a(main.c.obj) +modbus_points_reset esp-idf/main/libmain.a(modbus_points.c.obj) +modbus_points_type_to_mem esp-idf/main/libmain.a(modbus_points.c.obj) + esp-idf/main/libmain.a(modbus_memory.c.obj) + esp-idf/main/libmain.a(main.c.obj) +modbus_rtu_add_device esp-idf/main/libmain.a(modbus_rtu.c.obj) + esp-idf/main/libmain.a(main.c.obj) +modbus_rtu_crc16 esp-idf/main/libmain.a(modbus_rtu.c.obj) +modbus_rtu_find_device esp-idf/main/libmain.a(modbus_rtu.c.obj) +modbus_rtu_init esp-idf/main/libmain.a(modbus_rtu.c.obj) + esp-idf/main/libmain.a(main.c.obj) +modbus_rtu_process_request esp-idf/main/libmain.a(modbus_rtu.c.obj) + esp-idf/main/libmain.a(main.c.obj) +modbus_rtu_read_frame esp-idf/main/libmain.a(modbus_rtu.c.obj) + esp-idf/main/libmain.a(main.c.obj) +modem_domain_pd_allowed esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) +mpi_hal_calc_hardware_words esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) +mpi_hal_clear_interrupt esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) +mpi_hal_disable_hardware_hw_op esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) +mpi_hal_enable_hardware_hw_op esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) +mpi_hal_interrupt_enable esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) +mpi_hal_read_result_hw_op esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_bignum.c.obj) +mpi_hal_set_mode esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) +mpi_hal_start_op esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) +mpi_hal_wait_op_complete esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) +mpi_hal_write_at_offset esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) +mpi_hal_write_m_prime esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) +mpi_hal_write_rinv esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) +mpi_hal_write_to_mem_block esp-idf/esp_hal_security/libesp_hal_security.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(bignum_alt.c.obj) +mpu_hal_set_region_access esp-idf/esp_hal_security/libesp_hal_security.a(mpu_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) +multi_heap_aligned_alloc esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_aligned_alloc_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_aligned_alloc_impl_offs esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_aligned_alloc_offs esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_base.c.obj) +multi_heap_aligned_free esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_check esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_dump esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_find_containing_block esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_find_containing_block_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_free esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_base.c.obj) +multi_heap_free_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_free_size esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_free_size_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_get_allocated_size esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_base.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_get_allocated_size_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_get_block_address esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_get_block_address_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_get_first_block esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_get_full_block_size esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_get_info esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_get_info_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_get_next_block esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_internal_lock esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_internal_unlock esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_is_free esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_malloc esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_base.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +multi_heap_malloc_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_minimum_free_size esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_minimum_free_size_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_realloc esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_base.c.obj) +multi_heap_realloc_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_register esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +multi_heap_register_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_reset_minimum_free_bytes esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_restore_minimum_free_bytes esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_set_lock esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +multi_heap_walk esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +nvs::HashList::HashList() esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) +nvs::HashList::HashList() esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::HashList::HashListBlock::HashListBlock() esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) +nvs::HashList::HashListBlock::HashListBlock() esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) +nvs::HashList::clear() esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::HashList::erase(unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::HashList::find(unsigned int, nvs::Item const&) esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::HashList::insert(nvs::Item const&, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::HashList::~HashList() esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) +nvs::HashList::~HashList() esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Item::Item(unsigned char, nvs::ItemType, unsigned char, char const*, unsigned char) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::Item::Item(unsigned char, nvs::ItemType, unsigned char, char const*, unsigned char) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::Item::calculateCrc32() const esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::Item::calculateCrc32(unsigned char const*, unsigned int, unsigned long*) esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Item::calculateCrc32WithoutValue() const esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) +nvs::Item::checkHeaderConsistency(unsigned char) const esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::Item::getKey(char*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Lock::Lock() esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs::Lock::Lock() esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) +nvs::Lock::init() esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs::Lock::mSemaphore esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) +nvs::Lock::uninit() esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) +nvs::Lock::~Lock() esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs::Lock::~Lock() esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) +nvs::NVSEncryptedPartition::NVSEncryptedPartition(esp_partition_t const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +nvs::NVSEncryptedPartition::NVSEncryptedPartition(esp_partition_t const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) +nvs::NVSEncryptedPartition::init(nvs_sec_cfg_t*) esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) +nvs::NVSEncryptedPartition::read(unsigned int, void*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +nvs::NVSEncryptedPartition::write(unsigned int, void const*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +nvs::NVSEncryptedPartition::~NVSEncryptedPartition() esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +nvs::NVSEncryptedPartition::~NVSEncryptedPartition() esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +nvs::NVSEncryptedPartition::~NVSEncryptedPartition() esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +nvs::NVSHandleSimple::calcEntriesInNamespace(unsigned int&) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::NVSHandleSimple::commit() esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::NVSHandleSimple::debugDump() esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::NVSHandleSimple::erase_all() esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::NVSHandleSimple::erase_item(char const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::NVSHandleSimple::fillStats(nvs_stats_t&) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::NVSHandleSimple::findEntry(nvs_opaque_iterator_t*, char const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::NVSHandleSimple::findEntryNs(nvs_opaque_iterator_t*) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs::NVSHandleSimple::find_key(char const*, nvs_type_t&) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::NVSHandleSimple::get_blob(char const*, void*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::NVSHandleSimple::get_item_size(nvs::ItemType, char const*, unsigned int&) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::NVSHandleSimple::get_partition_name() const esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs::NVSHandleSimple::get_storage() const esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs::NVSHandleSimple::get_string(char const*, char*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::NVSHandleSimple::get_typed_item(nvs::ItemType, char const*, void*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::NVSHandleSimple::get_used_entry_count(unsigned int&) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::NVSHandleSimple::nextEntry(nvs_opaque_iterator_t*) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::NVSHandleSimple::set_blob(char const*, void const*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::NVSHandleSimple::set_string(char const*, char const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::NVSHandleSimple::set_typed_item(nvs::ItemType, char const*, void const*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::NVSHandleSimple::~NVSHandleSimple() esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::NVSHandleSimple::~NVSHandleSimple() esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::NVSHandleSimple::~NVSHandleSimple() esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::NVSPartition::NVSPartition(esp_partition_t const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +nvs::NVSPartition::NVSPartition(esp_partition_t const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs::NVSPartition::erase_range(unsigned int, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +nvs::NVSPartition::get_address() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +nvs::NVSPartition::get_partition_name() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +nvs::NVSPartition::get_readonly() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +nvs::NVSPartition::get_size() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +nvs::NVSPartition::read(unsigned int, void*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +nvs::NVSPartition::read_raw(unsigned int, void*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +nvs::NVSPartition::write(unsigned int, void const*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +nvs::NVSPartition::write_raw(unsigned int, void const*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +nvs::NVSPartition::~NVSPartition() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +nvs::NVSPartition::~NVSPartition() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) +nvs::NVSPartition::~NVSPartition() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) +nvs::NVSPartitionManager::close_handle(nvs::NVSHandleSimple*) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::NVSPartitionManager::deinit_partition(char const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs::NVSPartitionManager::get_instance() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs::NVSPartitionManager::init_custom(nvs::Partition*, unsigned long, unsigned long) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs::NVSPartitionManager::init_partition(char const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs::NVSPartitionManager::instance esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +nvs::NVSPartitionManager::lookup_storage_from_name(char const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs::NVSPartitionManager::open_handle(char const*, char const*, nvs_open_mode_t, nvs::NVSHandleSimple**) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs::NVSPartitionManager::open_handles_size() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +nvs::NVSPartitionManager::secure_init_partition(char const*, nvs_sec_cfg_t*) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs::NVSPartitionManager::~NVSPartitionManager() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +nvs::NVSPartitionManager::~NVSPartitionManager() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +nvs::NVSPartitionManager::~NVSPartitionManager() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +nvs::Page::Header::calculateCrc32() esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::Page::Page() esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::Page::Page() esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +nvs::Page::alterEntryRangeState(unsigned int, unsigned int, nvs::Page::EntryState) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::Page::alterEntryState(unsigned int, nvs::Page::EntryState) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::Page::alterPageState(nvs::Page::PageState) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::Page::calcEntries(nvs_stats_t&) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +nvs::Page::cmpItem(unsigned char, nvs::ItemType, char const*, void const*, unsigned int, unsigned char, nvs::VerOffset) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Page::copyItems(nvs::Page&) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +nvs::Page::debugDump() const esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Page::erase() esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +nvs::Page::eraseEntryAndSpan(unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Page::eraseItem(unsigned char, nvs::ItemType, char const*, unsigned char, nvs::VerOffset) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Page::findItem(unsigned char, nvs::ItemType, char const*, unsigned char, nvs::VerOffset) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::Page::findItem(unsigned char, nvs::ItemType, char const*, unsigned int&, nvs::Item&, unsigned char, nvs::VerOffset) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Page::getSeqNumber(unsigned long&) const esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Page::getVarDataTailroom() const esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Page::initialize() esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::Page::load(nvs::Partition*, unsigned long) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +nvs::Page::mLoadEntryTable() esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::Page::markFreeing() esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +nvs::Page::markFull() esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Page::pageStateToName(nvs::Page::PageState) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::Page::readEntry(unsigned int, nvs::Item&) const esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::Page::readItem(unsigned char, nvs::ItemType, char const*, void*, unsigned int, unsigned char, nvs::VerOffset) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Page::readVariableLengthItemData(nvs::Item const&, unsigned int, void*) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Page::setSeqNumber(unsigned long) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +nvs::Page::setVersion(unsigned char) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::Page::updateFirstUsedEntry(unsigned int, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::Page::writeEntry(nvs::Item const&) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::Page::writeEntryData(unsigned char const*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +nvs::Page::writeItem(unsigned char, nvs::ItemType, char const*, void const*, unsigned int, unsigned char) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::PageManager::activatePage() esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +nvs::PageManager::fillStats(nvs_stats_t&) esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::PageManager::load(nvs::Partition*, unsigned long, unsigned long) esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::PageManager::requestNewPage() esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Storage::Storage(nvs::Partition*) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +nvs::Storage::Storage(nvs::Partition*) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +nvs::Storage::calcEntriesInNamespace(unsigned char, unsigned int&) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::Storage::clearNamespaces() esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Storage::cmpMultiPageBlob(unsigned char, char const*, void const*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Storage::createOrOpenNamespace(char const*, bool, unsigned char&) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +nvs::Storage::debugDump() esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs::Storage::eraseItem(unsigned char, nvs::ItemType, char const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::Storage::eraseMismatchedBlobIndexes(intrusive_list&) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Storage::eraseMultiPageBlob(unsigned char, char const*, nvs::VerOffset) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Storage::eraseNamespace(unsigned char) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::Storage::eraseOrphanDataBlobs(intrusive_list&) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Storage::fillEntryInfo(nvs::Item&, nvs_entry_info_t&) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Storage::fillStats(nvs_stats_t&) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs::Storage::findEntry(nvs_opaque_iterator_t*, char const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs::Storage::findEntryNs(nvs_opaque_iterator_t*, unsigned char) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::Storage::findItem(unsigned char, nvs::ItemType, char const*, nvs::Page*&, nvs::Item&, unsigned char, nvs::VerOffset, unsigned int*) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Storage::findKey(unsigned char, char const*, nvs::ItemType*) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::Storage::getItemDataSize(unsigned char, nvs::ItemType, char const*, unsigned int&) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::Storage::init(unsigned long, unsigned long) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +nvs::Storage::isValid() const esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs::Storage::nextEntry(nvs_opaque_iterator_t*) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs::Storage::populateBlobIndices(intrusive_list&) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Storage::readItem(unsigned char, nvs::ItemType, char const*, void*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::Storage::readMultiPageBlob(unsigned char, char const*, void*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Storage::writeItem(unsigned char, nvs::ItemType, char const*, void const*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +nvs::Storage::writeMultiPageBlob(unsigned char, char const*, void const*, unsigned int, nvs::VerOffset) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Storage::~Storage() esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +nvs::Storage::~Storage() esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +nvs::partition_lookup::lookup_nvs_encrypted_partition(char const*, nvs_sec_cfg_t*, nvs::Partition**) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +nvs::partition_lookup::lookup_nvs_partition(char const*, nvs::Partition**) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_close esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) +nvs_commit esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) +nvs_dump esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_entry_find esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_entry_find_in_handle esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_entry_info esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_entry_next esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_erase_all esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_erase_key esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) +nvs_find_key esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_deinit esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_deinit_partition esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_deregister_security_scheme esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) +nvs_flash_erase esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/main/libmain.a(main.c.obj) +nvs_flash_erase_partition esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_erase_partition_ptr esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_generate_keys esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_generate_keys_v2 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_get_default_security_scheme esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_init esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/main/libmain.a(main.c.obj) +nvs_flash_init_partition esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_init_partition_ptr esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_read_security_cfg esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_read_security_cfg_v2 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_register_security_scheme esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_secure_init esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_secure_init_partition esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_get_blob esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) +nvs_get_i16 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_get_i32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_get_i64 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_get_i8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_get_stats esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_get_str esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_get_u16 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_get_u32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_get_u64 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_get_u8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_get_used_entry_count esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_open esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) +nvs_open_from_partition esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_release_iterator esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_sec_provider_deregister esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) +nvs_sec_provider_include_impl esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) +nvs_set_blob esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) +nvs_set_i16 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_set_i32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_set_i64 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_set_i8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_set_str esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_set_u16 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_set_u32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_set_u64 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_set_u8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +offset_cpsa esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +offset_pxEndOfStack esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +offset_xCoreID esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +open esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fopen.c.o) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) +opendir esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + esp-idf/main/libmain.a(main.c.obj) +operator delete(void*) C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_op.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_ops.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opv.o) +operator delete(void*, unsigned int) C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_ops.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) +operator delete[](void*) C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(del_opv.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +operator new(unsigned int) C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opv.o) +operator new[](unsigned int) C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opv.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) +operator new[](unsigned int, std::nothrow_t const&) C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_opvnt.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +panicHandler esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) +panic_abort esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) +panic_arch_fill_info esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +panic_clear_active_interrupts esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) +panic_get_address esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +panic_get_cause esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +panic_prepare_frame_from_ctx esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) +panic_print_backtrace esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +panic_print_char esp-idf/esp_system/libesp_system.a(panic.c.obj) +panic_print_dec esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) +panic_print_hex esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) +panic_print_registers esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +panic_print_str esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +panic_restart esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) +panic_set_address esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +panic_soc_check_pseudo_cause esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +panic_soc_fill_info esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +pcTaskGetName esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) +periph_inform_out_light_sleep_overhead esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +periph_module_disable esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) +periph_module_enable esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +periph_module_reset esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) +periph_rcc_acquire_enter esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) +periph_rcc_acquire_exit esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) +periph_rcc_enter esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +periph_rcc_exit esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +periph_rcc_release_enter esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +periph_rcc_release_exit esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +phy_get_tsens_value esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +phy_i2c_enter_critical esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +phy_i2c_exit_critical esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +phy_module_disable esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) +phy_module_enable esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) +phy_module_has_clock_bits esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) +phy_set_pwdet_power esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +phy_set_tsens_power esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +port_IntStack esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +port_interruptNesting esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +port_start_app_hook esp-idf/freertos/libfreertos.a(app_startup.c.obj) +port_switch_flag esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +port_uxCriticalNesting esp-idf/freertos/libfreertos.a(port.c.obj) +port_uxOldInterruptState esp-idf/freertos/libfreertos.a(port.c.obj) +port_xSchedulerRunning esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +posix_memalign esp-idf/esp_libc/libesp_libc.a(heap.c.obj) +pread esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +printf C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_printf.c.o) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/main/libmain.a(modbus_points.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +prvReleaseKernelLock esp-idf/freertos/libfreertos.a(tasks.c.obj) +prvTakeKernelLock esp-idf/freertos/libfreertos.a(tasks.c.obj) +prvTaskPriorityRaise esp-idf/freertos/libfreertos.a(tasks.c.obj) +prvTaskPriorityRestore esp-idf/freertos/libfreertos.a(tasks.c.obj) +psa_aead_abort esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_aead_decrypt esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_aead_decrypt_setup esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_aead_encrypt esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_aead_encrypt_setup esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_aead_finish esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_aead_generate_nonce esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_aead_set_lengths esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_aead_set_nonce esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_aead_update esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_aead_update_ad esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_aead_verify esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_allocate_buffer_to_slot esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_asymmetric_decrypt esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_asymmetric_encrypt esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_can_do_hash esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_cipher_abort esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_cipher_decrypt esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_cipher_decrypt_setup esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_cipher_encrypt esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_cipher_encrypt_setup esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_cipher_finish esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_cipher_generate_iv esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_cipher_set_iv esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_cipher_update esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_copy_key esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_copy_key_material_into_slot esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) +psa_crypto_driver_pake_get_cipher_suite esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) +psa_crypto_driver_pake_get_password esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) +psa_crypto_driver_pake_get_password_len esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) +psa_crypto_driver_pake_get_peer esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) +psa_crypto_driver_pake_get_peer_len esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) +psa_crypto_driver_pake_get_user esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) +psa_crypto_driver_pake_get_user_len esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_crypto_pake.c.obj) +psa_crypto_init esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_psa_crypto_init.c.obj) +psa_crypto_local_input_alloc esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_crypto_local_input_free esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_crypto_local_output_alloc esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_crypto_local_output_free esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_custom_key_parameters_are_default esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_destroy_key esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) +psa_destroy_persistent_key esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_storage.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_export_public_key esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_get_builtin_key esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) +psa_driver_wrapper_get_key_buffer_size esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_export_key esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_export_key_internal esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_export_public_key esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_export_public_key_internal esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) +psa_export_public_key_iop_abort esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_export_public_key_iop_complete esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_export_public_key_iop_get_num_ops esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_export_public_key_iop_setup esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_format_key_data_for_storage esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_storage.c.obj) +psa_free_key_slot esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_free_persistent_key_data esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_storage.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) +psa_generate_key esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_generate_key_custom esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_generate_key_internal esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_generate_key_iop_abort esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_generate_key_iop_complete esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_generate_key_iop_get_num_ops esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_generate_key_iop_setup esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_generate_random esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) +psa_generic_status_to_mbedtls esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) +psa_get_and_lock_key_slot esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_get_key_attributes esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_hash_abort esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +psa_hash_clone esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) +psa_hash_compare esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_hash_compute esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) +psa_hash_finish esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +psa_hash_setup esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +psa_hash_update esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +psa_hash_verify esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_import_key esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) +psa_import_key_into_slot esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_initialize_key_slots esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_interruptible_get_max_ops esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_interruptible_set_max_ops esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_is_key_present_in_storage esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_storage.c.obj) +psa_is_ready_for_cipher esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_is_valid_key_id esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_its_get esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_storage.c.obj) +psa_its_get_info esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_storage.c.obj) +psa_its_remove esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_storage.c.obj) +psa_its_set esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_psa_its.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_storage.c.obj) +psa_key_agreement esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_key_agreement_iop_abort esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_key_agreement_iop_complete esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_key_agreement_iop_get_num_ops esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_key_agreement_iop_setup esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_key_agreement_raw_builtin esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_key_derivation_abort esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_key_derivation_get_capacity esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_key_derivation_input_bytes esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_key_derivation_input_integer esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_key_derivation_input_key esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_key_derivation_key_agreement esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_key_derivation_output_bytes esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_key_derivation_output_key esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_key_derivation_output_key_custom esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_key_derivation_set_capacity esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_key_derivation_setup esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_key_derivation_verify_bytes esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_key_derivation_verify_key esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_load_persistent_key esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_storage.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) +psa_mac_abort esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_mac_compute esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_mac_sign_finish esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_mac_sign_setup esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_mac_update esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_mac_verify esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_mac_verify_finish esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_mac_verify_setup esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_pake_abort esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_pake_get_shared_key esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_pake_input esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_pake_output esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_pake_set_context esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_pake_set_peer esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_pake_set_role esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_pake_set_user esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_pake_setup esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_parse_key_data_from_storage esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_storage.c.obj) +psa_pk_status_to_mbedtls esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) +psa_purge_key esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) +psa_raw_key_agreement esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_remove_key_data_from_memory esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_reserve_free_key_slot esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_reset_key_attributes esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_client.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_driver_esp_cmac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_save_persistent_key esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_storage.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_sign_hash esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_sign_hash_abort esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_sign_hash_builtin esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_sign_hash_complete esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_sign_hash_get_num_ops esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_sign_hash_start esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_sign_message esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_sign_message_builtin esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_status_to_mbedtls esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) +psa_to_md_errors esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) +psa_to_pk_ecdsa_errors esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) +psa_to_pk_rsa_errors esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(psa_util.c.obj) +psa_unregister_read esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_unregister_read_under_mutex esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_validate_key_persistence esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_validate_unstructured_key_bit_size esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_verify_hash esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_verify_hash_abort esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_verify_hash_builtin esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_verify_hash_complete esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_verify_hash_get_num_ops esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_verify_hash_start esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_verify_message esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_verify_message_builtin esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_wipe_all_key_slots esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) +psa_wipe_key_slot esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(psa_crypto_slot_management.c.obj) +pthread_attr_destroy esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_attr_getdetachstate esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_attr_getstacksize esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_attr_init esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_attr_setdetachstate esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_attr_setstacksize esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_cancel esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_cond_broadcast esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_cond_destroy esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_cond_init esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_cond_signal esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) +pthread_cond_timedwait esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_cond_wait esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_condattr_destroy esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_condattr_getclock esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_condattr_getpshared esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_condattr_init esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_condattr_setclock esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_condattr_setpshared esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_create esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_detach esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_equal esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_exit esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_getschedparam esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_getspecific esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_include_pthread_cond_var_impl esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_include_pthread_impl esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_include_pthread_local_storage_impl esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) +pthread_include_pthread_rwlock_impl esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_include_pthread_semaphore_impl esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) +pthread_internal_local_storage_destructor_callback esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_join esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_key_create esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_key_delete esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) +pthread_lazy_init_lock esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_mutex_destroy esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_mutex_init esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_mutex_lock esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_mutex_timedlock esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutex_trylock esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_mutex_unlock esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(threading.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_mutexattr_destroy esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutexattr_gettype esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutexattr_init esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutexattr_settype esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_once esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_rwlock_destroy esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_rwlock_init esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_rwlock_rdlock esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_rwlock_timedrdlock esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_rwlock_timedwrlock esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_rwlock_tryrdlock esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_rwlock_trywrlock esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_rwlock_unlock esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_rwlock_wrlock esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_self esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_setcancelstate esp-idf/esp_libc/libesp_libc.a(pthread.c.obj) +pthread_setschedparam esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_setschedprio esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_setspecific esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_sigmask esp-idf/esp_libc/libesp_libc.a(pthread.c.obj) +putc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputc.c.o) +putc_unlocked C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fputc.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_putchar.c.o) +putchar C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_putchar.c.o) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) +putchar_unlocked C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_putchar.c.o) +puts C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_puts.c.o) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(aes.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +pvPortMalloc esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(port_common.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +pvTaskGetCurrentTCBForCore esp-idf/freertos/libfreertos.a(tasks.c.obj) +pvTaskGetThreadLocalStoragePointer esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) +pvTaskIncrementMutexHeldCount esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +pvalloc esp-idf/esp_libc/libesp_libc.a(heap.c.obj) +pwrite esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +pxCurrentTCBs esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +pxPortInitialiseStack esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +pxTaskGetStackStart esp-idf/freertos/libfreertos.a(tasks.c.obj) +qsort C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_search_qsort.c.o) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) +rand esp-idf/esp_libc/libesp_libc.a(rand.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(rsa.c.obj) +range_read_addr_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +range_write_addr_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +read esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fdopen.c.o) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) +readdir esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + esp-idf/main/libmain.a(main.c.obj) +readdir_r esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +realloc esp-idf/esp_libc/libesp_libc.a(heap.c.obj) +regi2c_ctrl_read_reg esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) +regi2c_ctrl_read_reg_mask esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_hal_clock/libesp_hal_clock.a(clk_tree_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +regi2c_ctrl_write_reg esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +regi2c_ctrl_write_reg_mask esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +regi2c_enter_critical esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +regi2c_exit_critical esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +regi2c_saradc_disable esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) +regi2c_saradc_enable esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) +register_fd esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +registered_heaps esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/heap/libheap.a(heap_caps_base.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +rename esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +rewinddir esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +rmdir esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +rom_flash_chip_dummy esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +rom_flash_chip_dummy_hpm esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +rtc_clk_32k_bootstrap esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_32k_disable_external esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_32k_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_32k_enable_external esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_32k_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_8m_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_8m_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_8md256_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_apb_freq_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_apb_freq_update esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_apll_coeff_calc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_apll_coeff_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_apll_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_cal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_cal_ratio esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) +rtc_clk_cpu_freq_get_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_cpu_freq_mhz_to_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_cpu_freq_set_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_cpu_freq_set_config_fast esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_cpu_freq_set_xtal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_cpu_freq_set_xtal_for_sleep esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_clk_cpu_freq_to_xtal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_cpu_set_to_default_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) +rtc_clk_fast_src_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_fast_src_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_freq_cal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) +rtc_clk_freq_to_period esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) +rtc_clk_get_lact_compensation_delay esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_select_rtc_slow_clk esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_slow_freq_get_hz esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(system_time.c.obj) +rtc_clk_slow_src_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_slow_src_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_wait_for_slow_cycle esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_xtal_freq_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_xtal_freq_update esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_deep_sleep_start esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) +rtc_dig_8m_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_dig_clk8m_disable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_dig_clk8m_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_get_xtal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_gpio_deinit esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +rtc_gpio_force_hold_dis_all esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) +rtc_gpio_force_hold_en_all esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) +rtc_gpio_get_drive_capability esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +rtc_gpio_get_level esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) +rtc_gpio_hold_dis esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +rtc_gpio_hold_en esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +rtc_gpio_init esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) +rtc_gpio_iomux_func_sel esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) +rtc_gpio_is_valid_gpio esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_gpio_isolate esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) +rtc_gpio_pulldown_dis esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +rtc_gpio_pulldown_en esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +rtc_gpio_pullup_dis esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +rtc_gpio_pullup_en esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +rtc_gpio_set_direction esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +rtc_gpio_set_direction_in_sleep esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) +rtc_gpio_set_drive_capability esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +rtc_gpio_set_level esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) +rtc_gpio_wakeup_disable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +rtc_gpio_wakeup_enable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +rtc_init esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_io_desc esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_periph.c.obj) + esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +rtc_io_num_map esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_periph.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +rtc_io_number_get esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_isr_deregister esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) +rtc_isr_noniram_disable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +rtc_isr_noniram_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +rtc_isr_register esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) +rtc_sleep_enable_ultra_low esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_sleep_get_default_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_sleep_init esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_sleep_low_init esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_sleep_pd esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) +rtc_sleep_start esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_spinlock esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) +rtc_time_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) +rtc_time_slowclk_to_us esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_time_us_to_slowclk esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_vddsdio_get_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_vddsdio_set_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtcio_hal_isolate esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) +rtcio_hal_set_direction esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) +rtcio_hal_set_direction_in_sleep esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) +s_keys esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) +s_microseconds_offset esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) +s_spinlock esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) +s_table esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +s_time_update_lock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +sar_periph_ctrl_adc_continuous_power_acquire esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) +sar_periph_ctrl_adc_continuous_power_release esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) +sar_periph_ctrl_adc_oneshot_power_acquire esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) +sar_periph_ctrl_adc_oneshot_power_release esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) +sar_periph_ctrl_adc_reset esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) +sar_periph_ctrl_init esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) +sar_periph_ctrl_power_disable esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +sar_periph_ctrl_power_enable esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +sar_periph_ctrl_pwdet_power_acquire esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +sar_periph_ctrl_pwdet_power_release esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +sched_get_priority_max esp-idf/pthread/libpthread.a(pthread.c.obj) +sched_get_priority_min esp-idf/pthread/libpthread.a(pthread.c.obj) +sched_yield esp-idf/pthread/libpthread.a(pthread.c.obj) +seekdir esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +select esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +sem_destroy esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) +sem_getvalue esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) +sem_init esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) +sem_post esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) +sem_timedwait esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) +sem_trywait esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) +sem_wait esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) +set_rtc_memory_crc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +set_xpd_sar esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +setbuf C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_setbuf.c.o) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(hmac_drbg.c.obj) +settimeofday esp-idf/esp_libc/libesp_libc.a(time.c.obj) + esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) +setvbuf C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_setvbuf.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_setbuf.c.o) +sha_hal_hash_block esp-idf/esp_hal_security/libesp_hal_security.a(sha_hal.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) +sha_hal_read_digest esp-idf/esp_hal_security/libesp_hal_security.a(sha_hal.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) +sha_hal_set_mode esp-idf/esp_hal_security/libesp_hal_security.a(sha_hal.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) +sha_hal_wait_idle esp-idf/esp_hal_security/libesp_hal_security.a(sha_hal.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) +sleep esp-idf/esp_libc/libesp_libc.a(time.c.obj) +sleep_modem_configure esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) +sleep_modem_reject_triggers esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +sleep_modem_wifi_modem_state_skip_light_sleep esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) +sleep_uart_prepare esp-idf/esp_hw_support/libesp_hw_support.a(sleep_uart.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +sleep_uart_resume esp-idf/esp_hw_support/libesp_hw_support.a(sleep_uart.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +sleep_uart_set_handling_mode esp-idf/esp_hw_support/libesp_hw_support.a(sleep_uart.c.obj) +snprintf C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_snprintf.c.o) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/main/libmain.a(config_store.c.obj) + esp-idf/main/libmain.a(modbus_points.c.obj) + esp-idf/main/libmain.a(main.c.obj) +soc_get_available_memory_region_max_count esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +soc_get_available_memory_regions esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +soc_memory_region_count esp-idf/heap/libheap.a(memory_layout.c.obj) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +soc_memory_regions esp-idf/heap/libheap.a(memory_layout.c.obj) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +soc_memory_type_count esp-idf/heap/libheap.a(memory_layout.c.obj) +soc_memory_types esp-idf/heap/libheap.a(memory_layout.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +soc_reserved_memory_region_end esp-idf/heap/libheap.a(memory_layout_utils.c.obj) +soc_reserved_memory_region_start esp-idf/heap/libheap.a(memory_layout_utils.c.obj) +spi_bus_add_flash_device esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_bus_deinit_lock esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spi_bus_dma_memory_alloc esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spi_bus_free esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spi_bus_get_attr esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spi_bus_get_dma_ctx esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spi_bus_init_lock esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spi_bus_initialize esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spi_bus_lock_acquire_end esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) +spi_bus_lock_acquire_start esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) +spi_bus_lock_bg_check_dev_acq esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) +spi_bus_lock_bg_check_dev_req esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) +spi_bus_lock_bg_clear_req esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) +spi_bus_lock_bg_entry esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) +spi_bus_lock_bg_exit esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) +spi_bus_lock_bg_req_exist esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) +spi_bus_lock_bg_request esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) +spi_bus_lock_get_acquiring_dev esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) +spi_bus_lock_get_by_id esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_bus_lock_get_dev_id esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_bus_lock_register_dev esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_bus_lock_set_bg_control esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) +spi_bus_lock_touch esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) +spi_bus_lock_unregister_dev esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_bus_lock_wait_bg_done esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) +spi_bus_register_destroy_func esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spi_bus_remove_flash_device esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_dma_enable_burst esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_dma.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spi_dma_get_alignment_constraints esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_dma.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spi_dma_reset esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_dma.c.obj) +spi_dma_start esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_dma.c.obj) +spi_flash_brownout_need_reset esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) +spi_flash_cache2phys esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +spi_flash_cache_enabled esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_flash_check_and_flush_cache esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_chip_gd_detect_size esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_gd_get_caps esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_gd_get_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_gd_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_gd_set_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_gd_suspend_cmd_conf esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_generic_config_host_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_detect_size esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_erase_block esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_erase_chip esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_erase_sector esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_get_caps esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_chip_generic_get_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) +spi_flash_chip_generic_get_write_protect esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_page_program esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_chip_generic_read esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_read_reg esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_read_unique_id esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_read_unique_id_none esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) +spi_flash_chip_generic_reset esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_set_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) +spi_flash_chip_generic_set_write_protect esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_suspend_cmd_conf esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_timeout esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_wait_idle esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_write esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_write_encrypted esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_yield esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_issi_get_caps esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_issi_get_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) +spi_flash_chip_issi_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_issi_set_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) +spi_flash_chip_list_check esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_flash_chip_mxic_detect_size esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) +spi_flash_chip_mxic_get_caps esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) +spi_flash_chip_mxic_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) +spi_flash_chip_winbond_erase_block esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_winbond_erase_sector esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_winbond_get_caps esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) +spi_flash_chip_winbond_page_program esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_winbond_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) +spi_flash_chip_winbond_read esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_winbond_suspend_cmd_conf esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) +spi_flash_common_read_status_16b_rdsr_rdsr2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_common_read_status_8b_rdsr esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_common_read_status_8b_rdsr2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_common_set_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_common_write_status_16b_wrsr esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_common_write_status_8b_wrsr esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_common_write_status_8b_wrsr2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_disable_cache esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +spi_flash_disable_interrupts_caches_and_other_cpu esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) +spi_flash_disable_interrupts_caches_and_other_cpu_no_os esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_flash_enable_cache esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +spi_flash_enable_interrupts_caches_and_other_cpu esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) +spi_flash_enable_interrupts_caches_no_os esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_flash_encryption_hal_check esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_encryption_hal_destroy esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_encryption_hal_disable esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_encryption_hal_done esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_encryption_hal_enable esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_encryption_hal_prepare esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_guard_get esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_flash_guard_set esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_flash_hal_check_status esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_common_command esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_configure_host_io_mode esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_device_config esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_erase_block esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_erase_chip esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_erase_sector esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_init esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_poll_cmd_done esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_program_page esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_read esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_resume esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_set_write_protect esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_setup_read_suspend esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_supports_direct_read esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_supports_direct_write esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_suspend esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_init_chip_state esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +spi_flash_init_lock esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_flash_mmap esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +spi_flash_mmap_dump esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +spi_flash_mmap_get_free_pages esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) +spi_flash_mmap_pages esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +spi_flash_munmap esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +spi_flash_needs_reset_check esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_flash_op_block_func esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +spi_flash_op_lock esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +spi_flash_op_unlock esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +spi_flash_phys2cache esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +spi_flash_restore_cache esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +spi_flash_set_erasing_flag esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) +spi_flash_set_rom_required_regs esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_periph_signal esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a(spi_periph.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spicommon_bus_alloc esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spicommon_bus_free esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spicommon_bus_free_io_cfg esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spicommon_bus_initialize_io esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spicommon_cs_free_io esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spicommon_cs_initialize esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spicommon_dma_chan_alloc esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spicommon_dma_chan_free esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spicommon_dma_desc_alloc esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spicommon_dma_desc_setup_link esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spicommon_dmaworkaround_idle esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spicommon_dmaworkaround_req_reset esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spicommon_dmaworkaround_reset_in_progress esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spicommon_dmaworkaround_transfer_active esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spicommon_irqdma_source_for_host esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spicommon_irqsource_for_host esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spicommon_periph_claim esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spicommon_periph_free esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) +spicommon_periph_in_use esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) +spiffs_api_check esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) +spiffs_api_erase esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) +spiffs_api_lock esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) +spiffs_api_read esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) +spiffs_api_unlock esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) +spiffs_api_write esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) +spiffs_cache_drop_page esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) +spiffs_cache_fd_release esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) +spiffs_cache_init esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) +spiffs_cache_page_allocate_by_fd esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) +spiffs_cache_page_get_by_fd esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) +spiffs_cb_object_event esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) +spiffs_erase_block esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) +spiffs_fd_find_new esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) +spiffs_fd_get esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) +spiffs_fd_return esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) +spiffs_fd_temporal_cache_rehash esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) +spiffs_gc_check esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) +spiffs_gc_clean esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) +spiffs_gc_erase_page_stats esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) +spiffs_gc_find_candidate esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) +spiffs_gc_quick esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) +spiffs_lookup_consistency_check esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) +spiffs_obj_lu_find_entry_visitor esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) +spiffs_obj_lu_find_free esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) +spiffs_obj_lu_find_free_obj_id esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) +spiffs_obj_lu_find_id esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) +spiffs_obj_lu_find_id_and_span esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) +spiffs_obj_lu_find_id_and_span_by_phdr esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) +spiffs_obj_lu_scan esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) +spiffs_object_append esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) +spiffs_object_create esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) +spiffs_object_find_object_index_header_by_name esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) +spiffs_object_index_consistency_check esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) +spiffs_object_modify esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) +spiffs_object_open_by_id esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) +spiffs_object_open_by_page esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) +spiffs_object_read esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) +spiffs_object_truncate esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) +spiffs_object_update_index_hdr esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) +spiffs_page_allocate_data esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) +spiffs_page_consistency_check esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) +spiffs_page_delete esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) +spiffs_page_move esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) +spiffs_phys_cpy esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) +spiffs_phys_rd esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_gc.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) +spiffs_phys_wr esp-idf/spiffs/libspiffs.a(spiffs_cache.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_check.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) +spiffs_populate_ix_map esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) +spiffs_probe esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) +srand esp-idf/esp_libc/libesp_libc.a(rand.c.obj) +start_cpu0 esp-idf/esp_system/libesp_system.a(startup.c.obj) +start_cpu_other_cores esp-idf/esp_system/libesp_system.a(startup.c.obj) +start_select esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +start_write_addr esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +startup_resume_other_cores esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +stat esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +statvfs esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +std::bad_alloc::what() const C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) +std::bad_alloc::~bad_alloc() C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) +std::bad_alloc::~bad_alloc() C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) +std::bad_alloc::~bad_alloc() C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) +std::bad_exception::what() const C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) +std::bad_exception::~bad_exception() C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) +std::bad_exception::~bad_exception() C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) +std::bad_exception::~bad_exception() C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) +std::enable_if::value, void>::type std::default_delete::operator()(nvs::Page*) const esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +std::exception::what() const C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) +std::exception::~exception() C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) +std::exception::~exception() C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) +std::exception::~exception() C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) +std::get_new_handler() C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) +std::get_terminate() C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) +std::get_unexpected() C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) +std::nothrow C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +std::set_new_handler(void (*)()) C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_handler.o) +std::set_terminate(void (*)()) C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) +std::set_unexpected(void (*)()) C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) +std::terminate() C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_unex_handler.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_globals.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) +std::type_info::__do_catch(std::type_info const*, void**, unsigned int) const C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) +std::type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void**) const C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) +std::type_info::__is_function_p() const C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) +std::type_info::__is_pointer_p() const C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) +std::type_info::~type_info() C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) +std::type_info::~type_info() C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) +std::type_info::~type_info() C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) +std::uncaught_exception() C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) +std::uncaught_exceptions() C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_catch.o) +std::unexpected() C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_terminate.o) +std::unique_ptr >::~unique_ptr() esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +std::unique_ptr >::~unique_ptr() esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +stderr esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +stdin esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fread.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) +stdout esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vprintf.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_puts.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_putchar.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_printf.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fread.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_bufio.c.o) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +strcat C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcat.c.o) + esp-idf/esp_libc/libesp_libc.a(abort.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +strchr C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strchr.c.o) + esp-idf/main/libmain.a(config_store.c.obj) + esp-idf/main/libmain.a(modbus_points.c.obj) +strcmp C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strcmp.S.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(md.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecp.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + esp-idf/main/libmain.a(config_store.c.obj) + esp-idf/main/libmain.a(modbus_points.c.obj) + esp-idf/vfs/libvfs.a(nullfs.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + esp-idf/log/liblog.a(log_binary_heap.c.obj) + esp-idf/log/liblog.a(log_linked_list.c.obj) + esp-idf/log/liblog.a(tag_log_level.c.obj) +strcpy C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strcpy.S.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror_r.c.o) + esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) +strcspn C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strcspn.c.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/main/libmain.a(config_store.c.obj) +strerror C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror.c.o) +strerror_l C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror.c.o) +strerror_r C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror_r.c.o) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) +strlcat C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strlcat.c.o) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +strlcpy C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strlcpy.c.o) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +strlen C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strlen.S.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strlcat.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strerror_r.c.o) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(ecjpake.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/drivers/builtin/libmbed-builtin.a(bignum.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + esp-idf/main/libmain.a(config_store.c.obj) + esp-idf/main/libmain.a(modbus_points.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/log/liblog.a(log_linked_list.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) +strncasecmp C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strncasecmp.c.o) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) +strncmp C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strncmp.c.o) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + esp-idf/main/libmain.a(main.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +strncpy C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_machine_xtensa_strncpy.S.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_nucleus.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_hydrogen.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + esp-idf/main/libmain.a(config_store.c.obj) + esp-idf/main/libmain.a(modbus_points.c.obj) + esp-idf/main/libmain.a(main.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +strnlen C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strnlen.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vfprintf.c.o) +strstr C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_string_strstr.c.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +strtol C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_strtol.c.o) + esp-idf/main/libmain.a(config_store.c.obj) +strtoul C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_strtoul.c.o) + esp-idf/main/libmain.a(config_store.c.obj) + esp-idf/main/libmain.a(modbus_points.c.obj) +syscall_table_ptr_app esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +syscall_table_ptr_pro esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +system esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +task_wdt_timeout_abort esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) +telldir esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +time C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_time_time.c.o) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) +timestamp_id esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +tls_stderr esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +tls_stdin esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +tls_stdout esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +tlsf_add_pool esp-idf/heap/libheap.a(tlsf.c.obj) +tlsf_alloc_overhead esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_block_size esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_check esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_check_hook esp-idf/heap/libheap.a(tlsf.c.obj) +tlsf_check_pool esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_create esp-idf/heap/libheap.a(tlsf.c.obj) +tlsf_create_with_pool esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_destroy esp-idf/heap/libheap.a(tlsf.c.obj) +tlsf_find_containing_block esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_fit_size esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_free esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_get_pool esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_malloc esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_malloc_addr esp-idf/heap/libheap.a(tlsf.c.obj) +tlsf_memalign esp-idf/heap/libheap.a(tlsf.c.obj) +tlsf_memalign_offs esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_pool_overhead esp-idf/heap/libheap.a(tlsf.c.obj) +tlsf_realloc esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_remove_pool esp-idf/heap/libheap.a(tlsf.c.obj) +tlsf_size esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_walk_pool esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tolower C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_ctype_tolower.c.o) + esp-idf/main/libmain.a(config_store.c.obj) +touch_hal_config_controller esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) +touch_hal_prepare_deep_sleep esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +touch_hal_save_sleep_config esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) +transaction clone for std::bad_exception::what() const C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) +transaction clone for std::bad_exception::~bad_exception() const C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) +transaction clone for std::exception::what() const C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) +transaction clone for std::exception::~exception() const C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) +translate_path esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +truncate esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +typeinfo for std::bad_alloc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) +typeinfo for std::exception C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) +typeinfo name for std::bad_alloc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) +typeinfo name for std::exception C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) +uart_clear_intr_status esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_detect_bitrate_start esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_detect_bitrate_stop esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_disable_intr_mask esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_disable_pattern_det_intr esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_disable_rx_intr esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_disable_tx_intr esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_driver_delete esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/main/libmain.a(main.c.obj) +uart_driver_install esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/main/libmain.a(main.c.obj) +uart_enable_intr_mask esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_enable_pattern_det_baud_intr esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_enable_rx_intr esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_enable_tx_intr esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_flush esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_flush_input esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_get_baudrate esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_get_buffered_data_len esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +uart_get_collision_flag esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_get_hw_flow_ctrl esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_get_parity esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_get_sclk_freq esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_get_selectlock esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +uart_get_stop_bits esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_get_tx_buffer_free_size esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_get_wakeup_threshold esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_get_word_length esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_get_baudrate esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_get_data_bit_num esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_get_hw_flow_ctrl esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_get_max_rx_timeout_thrd esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_get_parity esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_get_sclk esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_get_stop_bits esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_get_symb_len esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) +uart_hal_get_wakeup_edge_thrd esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_init esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_inverse_signal esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_is_hw_rts_en esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_read_rxfifo esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal_iram.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_rxfifo_rst esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal_iram.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_set_at_cmd_char esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_set_data_bit_num esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_set_dtr esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_set_hw_flow_ctrl esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_set_loop_back esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_set_mode esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_set_parity esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_set_rx_timeout esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_set_rxfifo_full_thr esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_set_stop_bits esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_set_sw_flow_ctrl esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_set_tx_idle_num esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_set_txfifo_empty_thr esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_set_wakeup_edge_thrd esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_tx_break esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal_iram.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_txfifo_rst esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal_iram.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_hal_write_txfifo esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_hal_iram.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) +uart_intr_config esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_is_driver_installed esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +uart_param_config esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/main/libmain.a(main.c.obj) +uart_pattern_get_pos esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_pattern_pop_pos esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_pattern_queue_reset esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_periph_signal esp-idf/esp_hal_uart/libesp_hal_uart.a(uart_periph.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_read_bytes esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/main/libmain.a(modbus_rtu.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +uart_set_always_rx_timeout esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_set_baudrate esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_set_dtr esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_set_hw_flow_ctrl esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_set_line_inverse esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_set_loop_back esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_set_mode esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_set_parity esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_set_rts esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_set_rx_full_threshold esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_set_rx_timeout esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_set_select_notif_callback esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +uart_set_stop_bits esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_set_sw_flow_ctrl esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_set_tx_empty_threshold esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_set_tx_idle_num esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_set_wakeup_threshold esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_set_word_length esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_tx_chars esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_vfs_dev_port_set_rx_line_endings esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +uart_vfs_dev_port_set_tx_line_endings esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +uart_vfs_dev_register esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +uart_vfs_dev_set_rx_line_endings esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +uart_vfs_dev_set_tx_line_endings esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +uart_vfs_dev_use_driver esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +uart_vfs_dev_use_nonblocking esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +uart_vfs_include_dev_init esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +uart_wait_tx_done esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/main/libmain.a(main.c.obj) +uart_wait_tx_idle_polling esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uart_write_bytes esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/main/libmain.a(main.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) +uart_write_bytes_with_break esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +ulTaskGenericNotifyTake esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) +ulTaskGenericNotifyValueClear esp-idf/freertos/libfreertos.a(tasks.c.obj) +unlink esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +unregister_fd esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +usleep esp-idf/esp_libc/libesp_libc.a(time.c.obj) +utime esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +utoa C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_stdlib_utoa.c.o) +uxListRemove esp-idf/freertos/libfreertos.a(list.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +uxQueueMessagesWaiting esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) +uxQueueMessagesWaitingFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) +uxQueueSpacesAvailable esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +uxTaskGetNumberOfTasks esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) +uxTaskGetSnapshotAll esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) +uxTaskGetStackHighWaterMark esp-idf/freertos/libfreertos.a(tasks.c.obj) +uxTaskGetStackHighWaterMark2 esp-idf/freertos/libfreertos.a(tasks.c.obj) +uxTaskPriorityGet esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) +uxTaskPriorityGetFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) +uxTaskResetEventItemValue esp-idf/freertos/libfreertos.a(tasks.c.obj) +uxTopUsedPriority esp-idf/freertos/libfreertos.a(tasks.c.obj) +vApplicationGetIdleTaskMemory esp-idf/freertos/libfreertos.a(port_common.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vApplicationGetTimerTaskMemory esp-idf/freertos/libfreertos.a(port_common.c.obj) +vApplicationStackOverflowHook esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vListInitialise esp-idf/freertos/libfreertos.a(list.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +vListInitialiseItem esp-idf/freertos/libfreertos.a(list.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vListInsert esp-idf/freertos/libfreertos.a(list.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vListInsertEnd esp-idf/freertos/libfreertos.a(list.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vPortAssertIfInISR esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +vPortEndScheduler esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vPortExitCritical esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) +vPortExitCriticalCompliance esp-idf/freertos/libfreertos.a(port.c.obj) +vPortFree esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +vPortSetStackWatchpoint esp-idf/freertos/libfreertos.a(port.c.obj) +vPortSetupTimer esp-idf/freertos/libfreertos.a(port_systick.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +vPortTCBPreDeleteHook esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vPortYield esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +vPortYieldFromInt esp-idf/freertos/libfreertos.a(portasm.S.obj) +vPortYieldOtherCore esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vQueueDelete esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +vQueueDeleteWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +vQueueWaitForMessageRestricted esp-idf/freertos/libfreertos.a(queue.c.obj) +vRingbufferDelete esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +vRingbufferDeleteWithCaps esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +vRingbufferGetInfo esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +vRingbufferReset esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +vRingbufferReturnItem esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +vRingbufferReturnItemFromISR esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +vSemaphoreDeleteWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) +vStreamBufferDelete esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +vStreamBufferGenericDeleteWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +vTaskDelay esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/main/libmain.a(main.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/esp_libc/libesp_libc.a(time.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +vTaskDelete esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +vTaskDeleteWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +vTaskEndScheduler esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskGenericNotifyGiveFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) +vTaskGetSnapshot esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +vTaskInternalSetTimeOutState esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +vTaskMissedYield esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskPlaceOnEventList esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +vTaskPlaceOnEventListRestricted esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +vTaskPlaceOnUnorderedEventList esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskPriorityDisinheritAfterTimeout esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +vTaskPrioritySet esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) +vTaskRemoveFromUnorderedEventList esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskResume esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskSetThreadLocalStoragePointer esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskSetThreadLocalStoragePointerAndDelCallback esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) +vTaskSetTimeOutState esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +vTaskStartScheduler esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +vTaskSuspend esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +vTaskSuspendAll esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +vTaskSwitchContext esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +valid_key_length esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes_common.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) +valloc esp-idf/esp_libc/libesp_libc.a(heap.c.obj) +vfprintf C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vfprintf.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vprintf.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_snprintf.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_printf.c.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fprintf.c.o) +vfs_include_syscalls_impl esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +vprintf C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_vprintf.c.o) + esp-idf/log/liblog.a(log_write.c.obj) +vtable for __cxxabiv1::__class_type_info C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(class_type_info.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) +vtable for __cxxabiv1::__forced_unwind C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) +vtable for __cxxabiv1::__foreign_exception C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) +vtable for __cxxabiv1::__si_class_type_info C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(si_class_type_info.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) +vtable for nvs::NVSEncryptedPartition esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +vtable for nvs::NVSHandle esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +vtable for nvs::NVSHandleSimple esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +vtable for nvs::NVSPartition esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) +vtable for nvs::NVSPartitionManager esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +vtable for nvs::Partition esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) +vtable for std::bad_alloc C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(bad_alloc.o) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(new_op.o) +vtable for std::bad_exception C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) +vtable for std::exception C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(eh_exception.o) +vtable for std::type_info C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libstdc++.a(tinfo.o) +wdt_hal_config_stage esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +wdt_hal_deinit esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) +wdt_hal_disable esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) +wdt_hal_enable esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) +wdt_hal_feed esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +wdt_hal_handle_intr esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) +wdt_hal_init esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) +wdt_hal_is_enabled esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) +wdt_hal_set_flashboot_en esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) +wdt_hal_write_protect_disable esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) +wdt_hal_write_protect_enable esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) +wifi_bt_common_module_disable esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) +wifi_bt_common_module_enable esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) +wifi_module_disable esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) +wifi_module_enable esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) +write esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti\libc.a(libc_tinystdio_fdopen.c.o) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + esp-idf/esp_stdio/libesp_stdio.a(stdio_vfs.c.obj) +xPortCheckValidListMem esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +xPortCheckValidTCBMem esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +xPortEnterCriticalTimeout esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(esp_aes.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) +xPortEnterCriticalTimeoutCompliance esp-idf/freertos/libfreertos.a(port.c.obj) +xPortGetFreeHeapSize esp-idf/freertos/libfreertos.a(heap_idf.c.obj) +xPortGetMinimumEverFreeHeapSize esp-idf/freertos/libfreertos.a(heap_idf.c.obj) +xPortGetTickRateHz esp-idf/freertos/libfreertos.a(port.c.obj) +xPortInIsrContext esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/log/liblog.a(util.c.obj) + esp-idf/log/liblog.a(log_timestamp.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) +xPortInterruptedFromISRContext esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) +xPortStartScheduler esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +xPortSysTickHandler esp-idf/freertos/libfreertos.a(port_systick.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +xPortcheckValidStackMem esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +xQueueAddToSet esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueCreateCountingSemaphore esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) +xQueueCreateCountingSemaphoreStatic esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +xQueueCreateMutex esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/spiffs/libspiffs.a(esp_spiffs.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/log/liblog.a(log_lock.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +xQueueCreateMutexStatic esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) +xQueueCreateSet esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueCreateWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +xQueueGenericCreate esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + esp-idf/vfs/libvfs.a(vfs_calls.c.obj) +xQueueGenericCreateStatic esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) +xQueueGenericGetStaticBuffers esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +xQueueGenericReset esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueGenericSend esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/log/liblog.a(log_lock.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) +xQueueGenericSendFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +xQueueGetMutexHolder esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/esp_libc/libesp_libc.a(locks.c.obj) +xQueueGetMutexHolderFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueGiveFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) +xQueueGiveMutexRecursive esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +xQueueIsQueueEmptyFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueIsQueueFullFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueuePeek esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueuePeekFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueReceive esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueReceiveFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_libc/libesp_libc.a(locks.c.obj) +xQueueRemoveFromSet esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueSelectFromSet esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueSelectFromSetFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueSemaphoreTake esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/mbedtls/mbedtls/tf-psa-crypto/core/libtfpsacrypto.a(sha.c.obj) + esp-idf/spiffs/libspiffs.a(spiffs_api.c.obj) + esp-idf/vfs/libvfs.a(vfs_calls.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/log/liblog.a(log_lock.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) +xQueueTakeMutexRecursive esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +xRingbufferAddToQueueSetRead esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferCreate esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferCreateNoSplit esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferCreateStatic esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferCreateWithCaps esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +xRingbufferGetCurFreeSize esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +xRingbufferGetMaxItemSize esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +xRingbufferGetStaticBuffer esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferPrintInfo esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferReceive esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +xRingbufferReceiveFromISR esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +xRingbufferReceiveSplit esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferReceiveSplitFromISR esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferReceiveUpTo esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +xRingbufferReceiveUpToFromISR esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferRemoveFromQueueSetRead esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferSend esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +xRingbufferSendAcquire esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferSendComplete esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferSendFromISR esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) +xSemaphoreCreateGenericWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) +xStreamBufferBytesAvailable esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferGenericCreate esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferGenericCreateStatic esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +xStreamBufferGenericCreateWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +xStreamBufferGetStaticBuffers esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +xStreamBufferIsEmpty esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferIsFull esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferNextMessageLengthBytes esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferReceive esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferReceiveCompletedFromISR esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferReceiveFromISR esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferReset esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferSend esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferSendCompletedFromISR esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferSendFromISR esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferSetTriggerLevel esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferSpacesAvailable esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xTaskAbortDelay esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskCatchUpTicks esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskCheckForTimeOut esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +xTaskCreatePinnedToCore esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/main/libmain.a(main.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) +xTaskCreatePinnedToCoreWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +xTaskCreateStaticPinnedToCore esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +xTaskDelayUntil esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskGenericNotify esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) +xTaskGenericNotifyFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xTaskGenericNotifyStateClear esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xTaskGenericNotifyWait esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xTaskGetCoreID esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +xTaskGetCurrentTaskHandle esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) +xTaskGetCurrentTaskHandleForCore esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +xTaskGetHandle esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskGetIdleTaskHandle esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskGetIdleTaskHandleForCore esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +xTaskGetNext esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskGetSchedulerState esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/log/liblog.a(log_lock.c.obj) + esp-idf/log/liblog.a(util.c.obj) + esp-idf/log/liblog.a(log_timestamp.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) +xTaskGetStackStart esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskGetStaticBuffers esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +xTaskGetTickCount esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) + esp-idf/esp_libc/libesp_libc.a(time.c.obj) + esp-idf/log/liblog.a(log_timestamp.c.obj) +xTaskGetTickCountFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/log/liblog.a(log_timestamp.c.obj) +xTaskIncrementTick esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +xTaskIncrementTickOtherCores esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +xTaskPriorityDisinherit esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +xTaskPriorityInherit esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +xTaskRemoveFromEventList esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +xTaskResumeAll esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +xTaskResumeFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTimerCreateTimerTask esp-idf/freertos/libfreertos.a(tasks.c.obj) +xt_clock_freq esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) +xt_debugexception esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +xt_highint4 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) +xt_highint5 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +xt_int_has_handler esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +xt_ints_off esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) +xt_ints_on esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +xt_nmi esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +xt_set_exception_handler esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) +xt_set_interrupt_handler esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +xt_unhandled_exception esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) +xt_unhandled_interrupt esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) +xthal_restore_extra_nw C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) +xthal_save_extra_nw C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) +xthal_set_intclear C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +xthal_spill_registers_into_stack_nw C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) +xthal_window_spill C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) +xthal_window_spill_nw C:/esp/v6.0/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + esp-idf/freertos/libfreertos.a(portasm.S.obj) diff --git a/build/partition-table-flash_args b/build/partition-table-flash_args new file mode 100644 index 0000000..4347369 --- /dev/null +++ b/build/partition-table-flash_args @@ -0,0 +1,2 @@ +--flash-mode dio --flash-freq 40m --flash-size 2MB +0x8000 partition_table/partition-table.bin diff --git a/build/partition_table/partition-table.bin b/build/partition_table/partition-table.bin new file mode 100644 index 0000000..a491de1 Binary files /dev/null and b/build/partition_table/partition-table.bin differ diff --git a/build/project_description.json b/build/project_description.json new file mode 100644 index 0000000..79c339b --- /dev/null +++ b/build/project_description.json @@ -0,0 +1,3860 @@ +{ + "version": "1.3", + "project_name": "modbus_tcp_esp32", + "project_version": "1", + "project_path": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI", + "idf_path": "C:/esp/v6.0/esp-idf", + "build_dir": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build", + "config_file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/sdkconfig", + "config_defaults": "", + "bootloader_elf": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/bootloader/bootloader.elf", + "app_elf": "modbus_tcp_esp32.elf", + "app_bin": "modbus_tcp_esp32.bin", + "build_type": "flash_app", + "git_revision": "v6.0", + "target": "esp32", + "rev": "0", + "min_rev": "0", + "max_rev": "399", + "phy_data_partition": "", + "monitor_baud" : "115200", + "monitor_toolprefix": "xtensa-esp32-elf-", + "c_compiler": "C:/Espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc.exe", + "config_environment" : { + "COMPONENT_KCONFIGS" : "C:/esp/v6.0/esp-idf/components/bt/Kconfig;C:/esp/v6.0/esp-idf/components/console/Kconfig;C:/esp/v6.0/esp-idf/components/driver/Kconfig;C:/esp/v6.0/esp-idf/components/efuse/Kconfig;C:/esp/v6.0/esp-idf/components/esp-tls/Kconfig;C:/esp/v6.0/esp-idf/components/esp_adc/Kconfig;C:/esp/v6.0/esp-idf/components/esp_coex/Kconfig;C:/esp/v6.0/esp-idf/components/esp_common/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_ana_cmpr/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_bitscrambler/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_cam/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_dac/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_dma/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_gpio/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_gptimer/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_i2c/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_i2s/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_i3c/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_isp/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_jpeg/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_ledc/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_parlio/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_pcnt/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_rmt/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_sdm/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_spi/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_touch_sens/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_tsens/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_twai/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_uart/Kconfig;C:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag/Kconfig;C:/esp/v6.0/esp-idf/components/esp_eth/Kconfig;C:/esp/v6.0/esp-idf/components/esp_event/Kconfig;C:/esp/v6.0/esp-idf/components/esp_gdbstub/Kconfig;C:/esp/v6.0/esp-idf/components/esp_hid/Kconfig;C:/esp/v6.0/esp-idf/components/esp_http_client/Kconfig;C:/esp/v6.0/esp-idf/components/esp_http_server/Kconfig;C:/esp/v6.0/esp-idf/components/esp_https_ota/Kconfig;C:/esp/v6.0/esp-idf/components/esp_https_server/Kconfig;C:/esp/v6.0/esp-idf/components/esp_hw_support/Kconfig;C:/esp/v6.0/esp-idf/components/esp_lcd/Kconfig;C:/esp/v6.0/esp-idf/components/esp_libc/Kconfig;C:/esp/v6.0/esp-idf/components/esp_mm/Kconfig;C:/esp/v6.0/esp-idf/components/esp_netif/Kconfig;C:/esp/v6.0/esp-idf/components/esp_partition/Kconfig;C:/esp/v6.0/esp-idf/components/esp_phy/Kconfig;C:/esp/v6.0/esp-idf/components/esp_pm/Kconfig;C:/esp/v6.0/esp-idf/components/esp_psram/Kconfig;C:/esp/v6.0/esp-idf/components/esp_ringbuf/Kconfig;C:/esp/v6.0/esp-idf/components/esp_rom/Kconfig;C:/esp/v6.0/esp-idf/components/esp_security/Kconfig;C:/esp/v6.0/esp-idf/components/esp_stdio/Kconfig;C:/esp/v6.0/esp-idf/components/esp_system/Kconfig;C:/esp/v6.0/esp-idf/components/esp_timer/Kconfig;C:/esp/v6.0/esp-idf/components/esp_trace/Kconfig;C:/esp/v6.0/esp-idf/components/esp_wifi/Kconfig;C:/esp/v6.0/esp-idf/components/espcoredump/Kconfig;C:/esp/v6.0/esp-idf/components/fatfs/Kconfig;C:/esp/v6.0/esp-idf/components/freertos/Kconfig;C:/esp/v6.0/esp-idf/components/hal/Kconfig;C:/esp/v6.0/esp-idf/components/heap/Kconfig;C:/esp/v6.0/esp-idf/components/ieee802154/Kconfig;C:/esp/v6.0/esp-idf/components/log/Kconfig;C:/esp/v6.0/esp-idf/components/lwip/Kconfig;C:/esp/v6.0/esp-idf/components/mbedtls/Kconfig;C:/esp/v6.0/esp-idf/components/nvs_flash/Kconfig;C:/esp/v6.0/esp-idf/components/nvs_sec_provider/Kconfig;C:/esp/v6.0/esp-idf/components/openthread/Kconfig;C:/esp/v6.0/esp-idf/components/protocomm/Kconfig;C:/esp/v6.0/esp-idf/components/pthread/Kconfig;C:/esp/v6.0/esp-idf/components/sdmmc/Kconfig;C:/esp/v6.0/esp-idf/components/soc/Kconfig;C:/esp/v6.0/esp-idf/components/spi_flash/Kconfig;C:/esp/v6.0/esp-idf/components/spiffs/Kconfig;C:/esp/v6.0/esp-idf/components/tcp_transport/Kconfig;C:/esp/v6.0/esp-idf/components/ulp/Kconfig;C:/esp/v6.0/esp-idf/components/unity/Kconfig;C:/esp/v6.0/esp-idf/components/vfs/Kconfig;C:/esp/v6.0/esp-idf/components/wear_levelling/Kconfig", + "COMPONENT_KCONFIGS_PROJBUILD" : "C:/esp/v6.0/esp-idf/components/bootloader/Kconfig.projbuild;C:/esp/v6.0/esp-idf/components/esp_app_format/Kconfig.projbuild;C:/esp/v6.0/esp-idf/components/esp_rom/Kconfig.projbuild;C:/esp/v6.0/esp-idf/components/esptool_py/Kconfig.projbuild;C:/esp/v6.0/esp-idf/components/partition_table/Kconfig.projbuild" + }, + "common_component_reqs": [ "cxx", "esp_libc", "freertos", "esp_hw_support", "heap", "log", "soc", "hal", "esp_rom", "esp_common", "esp_system", "esp_stdio", "xtensa" ], + "build_components" : [ "app_trace", "app_update", "bootloader", "bootloader_support", "bt", "cmock", "console", "cxx", "driver", "efuse", "esp-tls", "esp_adc", "esp_app_format", "esp_blockdev", "esp_bootloader_format", "esp_coex", "esp_common", "esp_driver_ana_cmpr", "esp_driver_bitscrambler", "esp_driver_cam", "esp_driver_dac", "esp_driver_dma", "esp_driver_gpio", "esp_driver_gptimer", "esp_driver_i2c", "esp_driver_i2s", "esp_driver_i3c", "esp_driver_isp", "esp_driver_jpeg", "esp_driver_ledc", "esp_driver_mcpwm", "esp_driver_parlio", "esp_driver_pcnt", "esp_driver_ppa", "esp_driver_rmt", "esp_driver_sd_intf", "esp_driver_sdio", "esp_driver_sdm", "esp_driver_sdmmc", "esp_driver_sdspi", "esp_driver_spi", "esp_driver_touch_sens", "esp_driver_tsens", "esp_driver_twai", "esp_driver_uart", "esp_driver_usb_serial_jtag", "esp_eth", "esp_event", "esp_gdbstub", "esp_hal_ana_cmpr", "esp_hal_ana_conv", "esp_hal_cam", "esp_hal_clock", "esp_hal_dma", "esp_hal_gpio", "esp_hal_gpspi", "esp_hal_i2c", "esp_hal_i2s", "esp_hal_ieee802154", "esp_hal_jpeg", "esp_hal_lcd", "esp_hal_ledc", "esp_hal_mcpwm", "esp_hal_mspi", "esp_hal_parlio", "esp_hal_pcnt", "esp_hal_pmu", "esp_hal_ppa", "esp_hal_rmt", "esp_hal_rtc_timer", "esp_hal_security", "esp_hal_timg", "esp_hal_touch_sens", "esp_hal_twai", "esp_hal_uart", "esp_hal_usb", "esp_hal_wdt", "esp_hid", "esp_http_client", "esp_http_server", "esp_https_ota", "esp_https_server", "esp_hw_support", "esp_lcd", "esp_libc", "esp_local_ctrl", "esp_mm", "esp_netif", "esp_netif_stack", "esp_partition", "esp_phy", "esp_pm", "esp_psram", "esp_ringbuf", "esp_rom", "esp_security", "esp_stdio", "esp_system", "esp_timer", "esp_trace", "esp_usb_cdc_rom_console", "esp_wifi", "espcoredump", "esptool_py", "fatfs", "freertos", "hal", "heap", "http_parser", "idf_test", "ieee802154", "log", "lwip", "main", "mbedtls", "nvs_flash", "nvs_sec_provider", "openthread", "partition_table", "perfmon", "protobuf-c", "protocomm", "pthread", "rt", "sdmmc", "soc", "spi_flash", "spiffs", "tcp_transport", "ulp", "unity", "vfs", "wear_levelling", "wpa_supplicant", "xtensa", "" ], + "build_component_paths" : [ "C:/esp/v6.0/esp-idf/components/app_trace", "C:/esp/v6.0/esp-idf/components/app_update", "C:/esp/v6.0/esp-idf/components/bootloader", "C:/esp/v6.0/esp-idf/components/bootloader_support", "C:/esp/v6.0/esp-idf/components/bt", "C:/esp/v6.0/esp-idf/components/cmock", "C:/esp/v6.0/esp-idf/components/console", "C:/esp/v6.0/esp-idf/components/cxx", "C:/esp/v6.0/esp-idf/components/driver", "C:/esp/v6.0/esp-idf/components/efuse", "C:/esp/v6.0/esp-idf/components/esp-tls", "C:/esp/v6.0/esp-idf/components/esp_adc", "C:/esp/v6.0/esp-idf/components/esp_app_format", "C:/esp/v6.0/esp-idf/components/esp_blockdev", "C:/esp/v6.0/esp-idf/components/esp_bootloader_format", "C:/esp/v6.0/esp-idf/components/esp_coex", "C:/esp/v6.0/esp-idf/components/esp_common", "C:/esp/v6.0/esp-idf/components/esp_driver_ana_cmpr", "C:/esp/v6.0/esp-idf/components/esp_driver_bitscrambler", "C:/esp/v6.0/esp-idf/components/esp_driver_cam", "C:/esp/v6.0/esp-idf/components/esp_driver_dac", "C:/esp/v6.0/esp-idf/components/esp_driver_dma", "C:/esp/v6.0/esp-idf/components/esp_driver_gpio", "C:/esp/v6.0/esp-idf/components/esp_driver_gptimer", "C:/esp/v6.0/esp-idf/components/esp_driver_i2c", "C:/esp/v6.0/esp-idf/components/esp_driver_i2s", "C:/esp/v6.0/esp-idf/components/esp_driver_i3c", "C:/esp/v6.0/esp-idf/components/esp_driver_isp", "C:/esp/v6.0/esp-idf/components/esp_driver_jpeg", "C:/esp/v6.0/esp-idf/components/esp_driver_ledc", "C:/esp/v6.0/esp-idf/components/esp_driver_mcpwm", "C:/esp/v6.0/esp-idf/components/esp_driver_parlio", "C:/esp/v6.0/esp-idf/components/esp_driver_pcnt", "C:/esp/v6.0/esp-idf/components/esp_driver_ppa", "C:/esp/v6.0/esp-idf/components/esp_driver_rmt", "C:/esp/v6.0/esp-idf/components/esp_driver_sd_intf", "C:/esp/v6.0/esp-idf/components/esp_driver_sdio", "C:/esp/v6.0/esp-idf/components/esp_driver_sdm", "C:/esp/v6.0/esp-idf/components/esp_driver_sdmmc", "C:/esp/v6.0/esp-idf/components/esp_driver_sdspi", "C:/esp/v6.0/esp-idf/components/esp_driver_spi", "C:/esp/v6.0/esp-idf/components/esp_driver_touch_sens", "C:/esp/v6.0/esp-idf/components/esp_driver_tsens", "C:/esp/v6.0/esp-idf/components/esp_driver_twai", "C:/esp/v6.0/esp-idf/components/esp_driver_uart", "C:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag", "C:/esp/v6.0/esp-idf/components/esp_eth", "C:/esp/v6.0/esp-idf/components/esp_event", "C:/esp/v6.0/esp-idf/components/esp_gdbstub", "C:/esp/v6.0/esp-idf/components/esp_hal_ana_cmpr", "C:/esp/v6.0/esp-idf/components/esp_hal_ana_conv", "C:/esp/v6.0/esp-idf/components/esp_hal_cam", "C:/esp/v6.0/esp-idf/components/esp_hal_clock", "C:/esp/v6.0/esp-idf/components/esp_hal_dma", "C:/esp/v6.0/esp-idf/components/esp_hal_gpio", "C:/esp/v6.0/esp-idf/components/esp_hal_gpspi", "C:/esp/v6.0/esp-idf/components/esp_hal_i2c", "C:/esp/v6.0/esp-idf/components/esp_hal_i2s", "C:/esp/v6.0/esp-idf/components/esp_hal_ieee802154", "C:/esp/v6.0/esp-idf/components/esp_hal_jpeg", "C:/esp/v6.0/esp-idf/components/esp_hal_lcd", "C:/esp/v6.0/esp-idf/components/esp_hal_ledc", "C:/esp/v6.0/esp-idf/components/esp_hal_mcpwm", "C:/esp/v6.0/esp-idf/components/esp_hal_mspi", "C:/esp/v6.0/esp-idf/components/esp_hal_parlio", "C:/esp/v6.0/esp-idf/components/esp_hal_pcnt", "C:/esp/v6.0/esp-idf/components/esp_hal_pmu", "C:/esp/v6.0/esp-idf/components/esp_hal_ppa", "C:/esp/v6.0/esp-idf/components/esp_hal_rmt", "C:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer", "C:/esp/v6.0/esp-idf/components/esp_hal_security", "C:/esp/v6.0/esp-idf/components/esp_hal_timg", "C:/esp/v6.0/esp-idf/components/esp_hal_touch_sens", "C:/esp/v6.0/esp-idf/components/esp_hal_twai", "C:/esp/v6.0/esp-idf/components/esp_hal_uart", "C:/esp/v6.0/esp-idf/components/esp_hal_usb", "C:/esp/v6.0/esp-idf/components/esp_hal_wdt", "C:/esp/v6.0/esp-idf/components/esp_hid", "C:/esp/v6.0/esp-idf/components/esp_http_client", "C:/esp/v6.0/esp-idf/components/esp_http_server", "C:/esp/v6.0/esp-idf/components/esp_https_ota", "C:/esp/v6.0/esp-idf/components/esp_https_server", "C:/esp/v6.0/esp-idf/components/esp_hw_support", "C:/esp/v6.0/esp-idf/components/esp_lcd", "C:/esp/v6.0/esp-idf/components/esp_libc", "C:/esp/v6.0/esp-idf/components/esp_local_ctrl", "C:/esp/v6.0/esp-idf/components/esp_mm", "C:/esp/v6.0/esp-idf/components/esp_netif", "C:/esp/v6.0/esp-idf/components/esp_netif_stack", "C:/esp/v6.0/esp-idf/components/esp_partition", "C:/esp/v6.0/esp-idf/components/esp_phy", "C:/esp/v6.0/esp-idf/components/esp_pm", "C:/esp/v6.0/esp-idf/components/esp_psram", "C:/esp/v6.0/esp-idf/components/esp_ringbuf", "C:/esp/v6.0/esp-idf/components/esp_rom", "C:/esp/v6.0/esp-idf/components/esp_security", "C:/esp/v6.0/esp-idf/components/esp_stdio", "C:/esp/v6.0/esp-idf/components/esp_system", "C:/esp/v6.0/esp-idf/components/esp_timer", "C:/esp/v6.0/esp-idf/components/esp_trace", "C:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console", "C:/esp/v6.0/esp-idf/components/esp_wifi", "C:/esp/v6.0/esp-idf/components/espcoredump", "C:/esp/v6.0/esp-idf/components/esptool_py", "C:/esp/v6.0/esp-idf/components/fatfs", "C:/esp/v6.0/esp-idf/components/freertos", "C:/esp/v6.0/esp-idf/components/hal", "C:/esp/v6.0/esp-idf/components/heap", "C:/esp/v6.0/esp-idf/components/http_parser", "C:/esp/v6.0/esp-idf/components/idf_test", "C:/esp/v6.0/esp-idf/components/ieee802154", "C:/esp/v6.0/esp-idf/components/log", "C:/esp/v6.0/esp-idf/components/lwip", "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/main", "C:/esp/v6.0/esp-idf/components/mbedtls", "C:/esp/v6.0/esp-idf/components/nvs_flash", "C:/esp/v6.0/esp-idf/components/nvs_sec_provider", "C:/esp/v6.0/esp-idf/components/openthread", "C:/esp/v6.0/esp-idf/components/partition_table", "C:/esp/v6.0/esp-idf/components/perfmon", "C:/esp/v6.0/esp-idf/components/protobuf-c", "C:/esp/v6.0/esp-idf/components/protocomm", "C:/esp/v6.0/esp-idf/components/pthread", "C:/esp/v6.0/esp-idf/components/rt", "C:/esp/v6.0/esp-idf/components/sdmmc", "C:/esp/v6.0/esp-idf/components/soc", "C:/esp/v6.0/esp-idf/components/spi_flash", "C:/esp/v6.0/esp-idf/components/spiffs", "C:/esp/v6.0/esp-idf/components/tcp_transport", "C:/esp/v6.0/esp-idf/components/ulp", "C:/esp/v6.0/esp-idf/components/unity", "C:/esp/v6.0/esp-idf/components/vfs", "C:/esp/v6.0/esp-idf/components/wear_levelling", "C:/esp/v6.0/esp-idf/components/wpa_supplicant", "C:/esp/v6.0/esp-idf/components/xtensa", "" ], + "build_component_info" : { + "app_trace": { + "alias": "idf::app_trace", + "target": "___idf_app_trace", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/app_trace", + "type": "CONFIG_ONLY", + "lib": "__idf_app_trace", + "reqs": [ "esp_timer", "esp_driver_uart" ], + "priv_reqs": [ "esp_driver_gptimer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include" ] + }, + "app_update": { + "alias": "idf::app_update", + "target": "___idf_app_update", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/app_update", + "type": "LIBRARY", + "lib": "__idf_app_update", + "reqs": [ "partition_table", "bootloader_support", "esp_app_format", "esp_bootloader_format", "esp_partition" ], + "priv_reqs": [ "esptool_py", "efuse", "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/app_update/libapp_update.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/app_update/esp_ota_ops.c" ], + "include_dirs": [ "include" ] + }, + "bootloader": { + "alias": "idf::bootloader", + "target": "___idf_bootloader", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/bootloader", + "type": "CONFIG_ONLY", + "lib": "__idf_bootloader", + "reqs": [], + "priv_reqs": [ "partition_table", "esptool_py" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [] + }, + "bootloader_support": { + "alias": "idf::bootloader_support", + "target": "___idf_bootloader_support", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/bootloader_support", + "type": "LIBRARY", + "lib": "__idf_bootloader_support", + "reqs": [ "soc" ], + "priv_reqs": [ "spi_flash", "mbedtls", "efuse", "heap", "esp_bootloader_format", "esp_app_format", "esptool_py", "esp_hal_wdt", "esp_hal_gpio", "esp_hal_uart", "esp_hal_ana_conv", "esp_hal_rtc_timer", "esp_hal_clock" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/bootloader_support/libbootloader_support.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/bootloader_support/src/bootloader_common.c", "C:/esp/v6.0/esp-idf/components/bootloader_support/src/bootloader_common_loader.c", "C:/esp/v6.0/esp-idf/components/bootloader_support/src/bootloader_clock_init.c", "C:/esp/v6.0/esp-idf/components/bootloader_support/src/bootloader_mem.c", "C:/esp/v6.0/esp-idf/components/bootloader_support/src/bootloader_random.c", "C:/esp/v6.0/esp-idf/components/bootloader_support/src/bootloader_efuse.c", "C:/esp/v6.0/esp-idf/components/bootloader_support/src/flash_encrypt.c", "C:/esp/v6.0/esp-idf/components/bootloader_support/src/secure_boot.c", "C:/esp/v6.0/esp-idf/components/bootloader_support/src/bootloader_random_esp32.c", "C:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash.c", "C:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c", "C:/esp/v6.0/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32.c", "C:/esp/v6.0/esp-idf/components/bootloader_support/src/bootloader_utility.c", "C:/esp/v6.0/esp-idf/components/bootloader_support/src/flash_partitions.c", "C:/esp/v6.0/esp-idf/components/bootloader_support/src/esp_image_format.c", "C:/esp/v6.0/esp-idf/components/bootloader_support/src/bootloader_sha.c", "C:/esp/v6.0/esp-idf/components/bootloader_support/src/esp32/secure_boot_secure_features.c" ], + "include_dirs": [ "include", "bootloader_flash/include" ] + }, + "bt": { + "alias": "idf::bt", + "target": "___idf_bt", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/bt", + "type": "CONFIG_ONLY", + "lib": "__idf_bt", + "reqs": [ "esp_timer", "esp_wifi" ], + "priv_reqs": [ "nvs_flash", "soc", "esp_pm", "esp_phy", "esp_coex", "mbedtls", "esp_driver_uart", "vfs", "esp_ringbuf", "esp_driver_spi", "esp_driver_gpio", "esp_gdbstub", "esp_security" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [] + }, + "cmock": { + "alias": "idf::cmock", + "target": "___idf_cmock", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/cmock", + "type": "LIBRARY", + "lib": "__idf_cmock", + "reqs": [ "unity" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/cmock/libcmock.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/cmock/CMock/src/cmock.c" ], + "include_dirs": [ "CMock/src" ] + }, + "console": { + "alias": "idf::console", + "target": "___idf_console", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/console", + "type": "LIBRARY", + "lib": "__idf_console", + "reqs": [ "vfs", "esp_stdio" ], + "priv_reqs": [ "esp_driver_uart", "esp_driver_usb_serial_jtag", "esp_usb_cdc_rom_console" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/console/libconsole.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/console/commands.c", "C:/esp/v6.0/esp-idf/components/console/esp_console_common.c", "C:/esp/v6.0/esp-idf/components/console/esp_console_repl_internal.c", "C:/esp/v6.0/esp-idf/components/console/split_argv.c", "C:/esp/v6.0/esp-idf/components/console/linenoise/linenoise.c", "C:/esp/v6.0/esp-idf/components/console/esp_console_repl_chip.c", "C:/esp/v6.0/esp-idf/components/console/argtable3/arg_cmd.c", "C:/esp/v6.0/esp-idf/components/console/argtable3/arg_date.c", "C:/esp/v6.0/esp-idf/components/console/argtable3/arg_dbl.c", "C:/esp/v6.0/esp-idf/components/console/argtable3/arg_dstr.c", "C:/esp/v6.0/esp-idf/components/console/argtable3/arg_end.c", "C:/esp/v6.0/esp-idf/components/console/argtable3/arg_file.c", "C:/esp/v6.0/esp-idf/components/console/argtable3/arg_hashtable.c", "C:/esp/v6.0/esp-idf/components/console/argtable3/arg_int.c", "C:/esp/v6.0/esp-idf/components/console/argtable3/arg_lit.c", "C:/esp/v6.0/esp-idf/components/console/argtable3/arg_rem.c", "C:/esp/v6.0/esp-idf/components/console/argtable3/arg_rex.c", "C:/esp/v6.0/esp-idf/components/console/argtable3/arg_str.c", "C:/esp/v6.0/esp-idf/components/console/argtable3/arg_utils.c", "C:/esp/v6.0/esp-idf/components/console/argtable3/argtable3.c" ], + "include_dirs": [ "C:/esp/v6.0/esp-idf/components/console" ] + }, + "cxx": { + "alias": "idf::cxx", + "target": "___idf_cxx", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/cxx", + "type": "LIBRARY", + "lib": "__idf_cxx", + "reqs": [], + "priv_reqs": [ "esp_system", "pthread" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/cxx/libcxx.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/cxx/cxx_exception_stubs.cpp", "C:/esp/v6.0/esp-idf/components/cxx/cxx_guards.cpp", "C:/esp/v6.0/esp-idf/components/cxx/cxx_init.cpp" ], + "include_dirs": [] + }, + "driver": { + "alias": "idf::driver", + "target": "___idf_driver", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/driver", + "type": "LIBRARY", + "lib": "__idf_driver", + "reqs": [ "esp_hal_i2c", "esp_hal_twai", "esp_hal_touch_sens" ], + "priv_reqs": [ "esp_timer", "esp_mm", "esp_driver_gpio", "esp_ringbuf", "esp_pm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/driver/libdriver.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/driver/i2c/i2c.c", "C:/esp/v6.0/esp-idf/components/driver/touch_sensor/touch_sensor_common.c", "C:/esp/v6.0/esp-idf/components/driver/touch_sensor/esp32/touch_sensor.c", "C:/esp/v6.0/esp-idf/components/driver/twai/twai.c" ], + "include_dirs": [ "i2c/include", "touch_sensor/include", "twai/include", "touch_sensor/esp32/include" ] + }, + "efuse": { + "alias": "idf::efuse", + "target": "___idf_efuse", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/efuse", + "type": "LIBRARY", + "lib": "__idf_efuse", + "reqs": [], + "priv_reqs": [ "bootloader_support", "soc", "spi_flash", "esp_system", "esp_partition", "esp_app_format", "esp_hal_security" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/efuse/libefuse.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/efuse/esp32/esp_efuse_table.c", "C:/esp/v6.0/esp-idf/components/efuse/esp32/esp_efuse_fields.c", "C:/esp/v6.0/esp-idf/components/efuse/esp32/esp_efuse_utility.c", "C:/esp/v6.0/esp-idf/components/efuse/src/esp_efuse_api.c", "C:/esp/v6.0/esp-idf/components/efuse/src/esp_efuse_fields.c", "C:/esp/v6.0/esp-idf/components/efuse/src/esp_efuse_utility.c", "C:/esp/v6.0/esp-idf/components/efuse/src/efuse_controller/keys/without_key_purposes/three_key_blocks/esp_efuse_api_key.c", "C:/esp/v6.0/esp-idf/components/efuse/src/esp_efuse_startup.c" ], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp-tls": { + "alias": "idf::esp-tls", + "target": "___idf_esp-tls", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp-tls", + "type": "LIBRARY", + "lib": "__idf_esp-tls", + "reqs": [ "mbedtls" ], + "priv_reqs": [ "http_parser", "esp_timer", "lwip" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp-tls/libesp-tls.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp-tls/esp_tls.c", "C:/esp/v6.0/esp-idf/components/esp-tls/esp-tls-crypto/esp_tls_crypto.c", "C:/esp/v6.0/esp-idf/components/esp-tls/esp_tls_error_capture.c", "C:/esp/v6.0/esp-idf/components/esp-tls/esp_tls_platform_port.c", "C:/esp/v6.0/esp-idf/components/esp-tls/esp_tls_mbedtls.c" ], + "include_dirs": [ "C:/esp/v6.0/esp-idf/components/esp-tls", "esp-tls-crypto" ] + }, + "esp_adc": { + "alias": "idf::esp_adc", + "target": "___idf_esp_adc", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_adc", + "type": "LIBRARY", + "lib": "__idf_esp_adc", + "reqs": [ "esp_hal_ana_conv" ], + "priv_reqs": [ "esp_driver_gpio", "esp_driver_dma", "efuse", "esp_pm", "esp_ringbuf", "esp_mm", "esp_driver_i2s" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_adc/libesp_adc.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_adc/adc_oneshot.c", "C:/esp/v6.0/esp-idf/components/esp_adc/adc_common.c", "C:/esp/v6.0/esp-idf/components/esp_adc/adc_cali.c", "C:/esp/v6.0/esp-idf/components/esp_adc/adc_cali_curve_fitting.c", "C:/esp/v6.0/esp-idf/components/esp_adc/adc_continuous.c", "C:/esp/v6.0/esp-idf/components/esp_adc/esp32/adc_dma.c", "C:/esp/v6.0/esp-idf/components/esp_adc/esp32/adc_cali_line_fitting.c" ], + "include_dirs": [ "include", "interface", "esp32/include" ] + }, + "esp_app_format": { + "alias": "idf::esp_app_format", + "target": "___idf_esp_app_format", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_app_format", + "type": "LIBRARY", + "lib": "__idf_esp_app_format", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_app_format/libesp_app_format.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_app_format/esp_app_desc.c" ], + "include_dirs": [ "include" ] + }, + "esp_blockdev": { + "alias": "idf::esp_blockdev", + "target": "___idf_esp_blockdev", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_blockdev", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_blockdev", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include" ] + }, + "esp_bootloader_format": { + "alias": "idf::esp_bootloader_format", + "target": "___idf_esp_bootloader_format", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_bootloader_format", + "type": "LIBRARY", + "lib": "__idf_esp_bootloader_format", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_bootloader_format/libesp_bootloader_format.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_bootloader_format/esp_bootloader_desc.c" ], + "include_dirs": [ "include" ] + }, + "esp_coex": { + "alias": "idf::esp_coex", + "target": "___idf_esp_coex", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_coex", + "type": "LIBRARY", + "lib": "__idf_esp_coex", + "reqs": [], + "priv_reqs": [ "esp_timer", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_coex/libesp_coex.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_coex/esp32/esp_coex_adapter.c", "C:/esp/v6.0/esp-idf/components/esp_coex/src/coexist_debug_diagram.c", "C:/esp/v6.0/esp-idf/components/esp_coex/src/coexist_debug.c" ], + "include_dirs": [ "include" ] + }, + "esp_common": { + "alias": "idf::esp_common", + "target": "___idf_esp_common", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_common", + "type": "LIBRARY", + "lib": "__idf_esp_common", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_common/libesp_common.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_common/src/esp_err_to_name.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_ana_cmpr": { + "alias": "idf::esp_driver_ana_cmpr", + "target": "___idf_esp_driver_ana_cmpr", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_ana_cmpr", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_driver_ana_cmpr", + "reqs": [ "esp_hal_ana_cmpr" ], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include" ] + }, + "esp_driver_bitscrambler": { + "alias": "idf::esp_driver_bitscrambler", + "target": "___idf_esp_driver_bitscrambler", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_bitscrambler", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_driver_bitscrambler", + "reqs": [ "esp_hal_dma" ], + "priv_reqs": [ "esp_mm", "esp_driver_dma" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include" ] + }, + "esp_driver_cam": { + "alias": "idf::esp_driver_cam", + "target": "___idf_esp_driver_cam", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_cam", + "type": "LIBRARY", + "lib": "__idf_esp_driver_cam", + "reqs": [ "esp_driver_isp", "esp_hal_cam", "esp_mm" ], + "priv_reqs": [ "esp_driver_gpio", "esp_driver_dma" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_cam/libesp_driver_cam.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_driver_cam/esp_cam_ctlr.c", "C:/esp/v6.0/esp-idf/components/esp_driver_cam/dvp_share_ctrl.c" ], + "include_dirs": [ "include", "interface" ] + }, + "esp_driver_dac": { + "alias": "idf::esp_driver_dac", + "target": "___idf_esp_driver_dac", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_dac", + "type": "LIBRARY", + "lib": "__idf_esp_driver_dac", + "reqs": [ "esp_hal_ana_conv" ], + "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_hal_clock", "esp_driver_i2s" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_dac/libesp_driver_dac.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_driver_dac/dac_oneshot.c", "C:/esp/v6.0/esp-idf/components/esp_driver_dac/dac_cosine.c", "C:/esp/v6.0/esp-idf/components/esp_driver_dac/dac_continuous.c", "C:/esp/v6.0/esp-idf/components/esp_driver_dac/dac_common.c", "C:/esp/v6.0/esp-idf/components/esp_driver_dac/esp32/dac_dma.c" ], + "include_dirs": [ "./include" ] + }, + "esp_driver_dma": { + "alias": "idf::esp_driver_dma", + "target": "___idf_esp_driver_dma", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_dma", + "type": "LIBRARY", + "lib": "__idf_esp_driver_dma", + "reqs": [ "esp_hal_dma" ], + "priv_reqs": [ "esp_mm", "bootloader_support" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_dma/libesp_driver_dma.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_driver_dma/src/esp_dma_utils.c", "C:/esp/v6.0/esp-idf/components/esp_driver_dma/src/gdma_link.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_gpio": { + "alias": "idf::esp_driver_gpio", + "target": "___idf_esp_driver_gpio", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_gpio", + "type": "LIBRARY", + "lib": "__idf_esp_driver_gpio", + "reqs": [ "esp_hal_gpio" ], + "priv_reqs": [ "esp_pm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_gpio/libesp_driver_gpio.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_driver_gpio/src/gpio.c", "C:/esp/v6.0/esp-idf/components/esp_driver_gpio/src/gpio_glitch_filter_ops.c", "C:/esp/v6.0/esp-idf/components/esp_driver_gpio/src/rtc_io.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_gptimer": { + "alias": "idf::esp_driver_gptimer", + "target": "___idf_esp_driver_gptimer", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_gptimer", + "type": "LIBRARY", + "lib": "__idf_esp_driver_gptimer", + "reqs": [ "esp_pm", "esp_hal_timg" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_driver_gptimer/src/gptimer.c", "C:/esp/v6.0/esp-idf/components/esp_driver_gptimer/src/gptimer_common.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_i2c": { + "alias": "idf::esp_driver_i2c", + "target": "___idf_esp_driver_i2c", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_i2c", + "type": "LIBRARY", + "lib": "__idf_esp_driver_i2c", + "reqs": [ "esp_hal_i2c" ], + "priv_reqs": [ "esp_driver_gpio", "esp_pm", "esp_ringbuf" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_i2c/libesp_driver_i2c.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_driver_i2c/i2c_master.c", "C:/esp/v6.0/esp-idf/components/esp_driver_i2c/i2c_common.c", "C:/esp/v6.0/esp-idf/components/esp_driver_i2c/i2c_slave.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_i2s": { + "alias": "idf::esp_driver_i2s", + "target": "___idf_esp_driver_i2s", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_i2s", + "type": "LIBRARY", + "lib": "__idf_esp_driver_i2s", + "reqs": [ "esp_hal_i2s" ], + "priv_reqs": [ "esp_driver_gpio", "esp_driver_dma", "esp_pm", "esp_mm", "esp_hal_clock", "esp_hal_ana_conv" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_i2s/libesp_driver_i2s.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_driver_i2s/i2s_common.c", "C:/esp/v6.0/esp-idf/components/esp_driver_i2s/i2s_std.c", "C:/esp/v6.0/esp-idf/components/esp_driver_i2s/i2s_pdm.c", "C:/esp/v6.0/esp-idf/components/esp_driver_i2s/i2s_platform.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_i3c": { + "alias": "idf::esp_driver_i3c", + "target": "___idf_esp_driver_i3c", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_i3c", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_driver_i3c", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_pm", "esp_mm", "esp_driver_dma" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include" ] + }, + "esp_driver_isp": { + "alias": "idf::esp_driver_isp", + "target": "___idf_esp_driver_isp", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_isp", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_driver_isp", + "reqs": [ "esp_hal_cam", "esp_mm" ], + "priv_reqs": [ "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include" ] + }, + "esp_driver_jpeg": { + "alias": "idf::esp_driver_jpeg", + "target": "___idf_esp_driver_jpeg", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_jpeg", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_driver_jpeg", + "reqs": [ "esp_hal_jpeg" ], + "priv_reqs": [ "esp_mm", "esp_pm", "esp_psram", "esp_driver_dma" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include" ] + }, + "esp_driver_ledc": { + "alias": "idf::esp_driver_ledc", + "target": "___idf_esp_driver_ledc", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_ledc", + "type": "LIBRARY", + "lib": "__idf_esp_driver_ledc", + "reqs": [ "esp_hal_ledc" ], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_ledc/libesp_driver_ledc.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_driver_ledc/src/ledc.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_mcpwm": { + "alias": "idf::esp_driver_mcpwm", + "target": "___idf_esp_driver_mcpwm", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_mcpwm", + "type": "LIBRARY", + "lib": "__idf_esp_driver_mcpwm", + "reqs": [ "esp_hal_mcpwm" ], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/src/mcpwm_cap.c", "C:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/src/mcpwm_cmpr.c", "C:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/src/mcpwm_com.c", "C:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/src/mcpwm_fault.c", "C:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/src/mcpwm_gen.c", "C:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/src/mcpwm_oper.c", "C:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/src/mcpwm_sync.c", "C:/esp/v6.0/esp-idf/components/esp_driver_mcpwm/src/mcpwm_timer.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_parlio": { + "alias": "idf::esp_driver_parlio", + "target": "___idf_esp_driver_parlio", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_parlio", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_driver_parlio", + "reqs": [ "esp_hal_parlio" ], + "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_mm", "esp_driver_bitscrambler", "esp_driver_dma" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include" ] + }, + "esp_driver_pcnt": { + "alias": "idf::esp_driver_pcnt", + "target": "___idf_esp_driver_pcnt", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_pcnt", + "type": "LIBRARY", + "lib": "__idf_esp_driver_pcnt", + "reqs": [ "esp_hal_pcnt" ], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_driver_pcnt/src/pulse_cnt.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_ppa": { + "alias": "idf::esp_driver_ppa", + "target": "___idf_esp_driver_ppa", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_ppa", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_driver_ppa", + "reqs": [ "esp_hal_ppa" ], + "priv_reqs": [ "esp_mm", "esp_pm", "esp_driver_dma" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include" ] + }, + "esp_driver_rmt": { + "alias": "idf::esp_driver_rmt", + "target": "___idf_esp_driver_rmt", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_rmt", + "type": "LIBRARY", + "lib": "__idf_esp_driver_rmt", + "reqs": [ "esp_hal_rmt" ], + "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_driver_bitscrambler", "esp_mm", "esp_driver_dma" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_rmt/libesp_driver_rmt.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_driver_rmt/src/rmt_common.c", "C:/esp/v6.0/esp-idf/components/esp_driver_rmt/src/rmt_encoder.c", "C:/esp/v6.0/esp-idf/components/esp_driver_rmt/src/rmt_encoder_bytes.c", "C:/esp/v6.0/esp-idf/components/esp_driver_rmt/src/rmt_encoder_copy.c", "C:/esp/v6.0/esp-idf/components/esp_driver_rmt/src/rmt_encoder_simple.c", "C:/esp/v6.0/esp-idf/components/esp_driver_rmt/src/rmt_rx.c", "C:/esp/v6.0/esp-idf/components/esp_driver_rmt/src/rmt_tx.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_sd_intf": { + "alias": "idf::esp_driver_sd_intf", + "target": "___idf_esp_driver_sd_intf", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_sd_intf", + "type": "LIBRARY", + "lib": "__idf_esp_driver_sd_intf", + "reqs": [], + "priv_reqs": [ "sdmmc" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sd_intf/libesp_driver_sd_intf.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_driver_sd_intf/sd_host.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_sdio": { + "alias": "idf::esp_driver_sdio", + "target": "___idf_esp_driver_sdio", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_sdio", + "type": "LIBRARY", + "lib": "__idf_esp_driver_sdio", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_ringbuf" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdio/libesp_driver_sdio.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_driver_sdio/src/sdio_slave.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_sdm": { + "alias": "idf::esp_driver_sdm", + "target": "___idf_esp_driver_sdm", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_sdm", + "type": "LIBRARY", + "lib": "__idf_esp_driver_sdm", + "reqs": [ "esp_hal_gpio" ], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdm/libesp_driver_sdm.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_driver_sdm/src/sdm.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_sdmmc": { + "alias": "idf::esp_driver_sdmmc", + "target": "___idf_esp_driver_sdmmc", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_sdmmc", + "type": "LIBRARY", + "lib": "__idf_esp_driver_sdmmc", + "reqs": [ "esp_driver_sd_intf", "sdmmc" ], + "priv_reqs": [ "esp_timer", "esp_pm", "esp_mm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdmmc/libesp_driver_sdmmc.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/legacy/src/sdmmc_transaction.c", "C:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/legacy/src/sdmmc_host.c", "C:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/src/sd_host_sdmmc.c", "C:/esp/v6.0/esp-idf/components/esp_driver_sdmmc/src/sd_trans_sdmmc.c" ], + "include_dirs": [ "include", "legacy/include" ] + }, + "esp_driver_sdspi": { + "alias": "idf::esp_driver_sdspi", + "target": "___idf_esp_driver_sdspi", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_sdspi", + "type": "LIBRARY", + "lib": "__idf_esp_driver_sdspi", + "reqs": [ "sdmmc", "esp_driver_spi", "esp_driver_gpio" ], + "priv_reqs": [ "esp_timer", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_driver_sdspi/src/sdspi_crc.c", "C:/esp/v6.0/esp-idf/components/esp_driver_sdspi/src/sdspi_host.c", "C:/esp/v6.0/esp-idf/components/esp_driver_sdspi/src/sdspi_transaction.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_spi": { + "alias": "idf::esp_driver_spi", + "target": "___idf_esp_driver_spi", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_spi", + "type": "LIBRARY", + "lib": "__idf_esp_driver_spi", + "reqs": [ "esp_pm", "esp_hal_gpspi", "esp_driver_dma" ], + "priv_reqs": [ "esp_timer", "esp_mm", "esp_driver_gpio", "spi_flash", "esp_psram" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_spi/libesp_driver_spi.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_driver_spi/src/gpspi/spi_common.c", "C:/esp/v6.0/esp-idf/components/esp_driver_spi/src/gpspi/spi_master.c", "C:/esp/v6.0/esp-idf/components/esp_driver_spi/src/gpspi/spi_slave.c", "C:/esp/v6.0/esp-idf/components/esp_driver_spi/src/gpspi/spi_dma.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_touch_sens": { + "alias": "idf::esp_driver_touch_sens", + "target": "___idf_esp_driver_touch_sens", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_touch_sens", + "type": "LIBRARY", + "lib": "__idf_esp_driver_touch_sens", + "reqs": [ "esp_hal_touch_sens" ], + "priv_reqs": [ "esp_driver_gpio", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_touch_sens/libesp_driver_touch_sens.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_driver_touch_sens/common/touch_sens_common.c", "C:/esp/v6.0/esp-idf/components/esp_driver_touch_sens/hw_ver1/touch_version_specific.c" ], + "include_dirs": [ "include", "hw_ver1/include" ] + }, + "esp_driver_tsens": { + "alias": "idf::esp_driver_tsens", + "target": "___idf_esp_driver_tsens", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_tsens", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_driver_tsens", + "reqs": [ "esp_hal_ana_conv" ], + "priv_reqs": [ "efuse" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include" ] + }, + "esp_driver_twai": { + "alias": "idf::esp_driver_twai", + "target": "___idf_esp_driver_twai", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_twai", + "type": "LIBRARY", + "lib": "__idf_esp_driver_twai", + "reqs": [ "esp_hal_twai" ], + "priv_reqs": [ "esp_driver_gpio", "esp_pm", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_twai/libesp_driver_twai.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_driver_twai/esp_twai.c", "C:/esp/v6.0/esp-idf/components/esp_driver_twai/esp_twai_onchip.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_uart": { + "alias": "idf::esp_driver_uart", + "target": "___idf_esp_driver_uart", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_uart", + "type": "LIBRARY", + "lib": "__idf_esp_driver_uart", + "reqs": [ "esp_hal_uart" ], + "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_driver_dma", "esp_ringbuf", "esp_mm", "esp_psram" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_driver_uart/libesp_driver_uart.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_driver_uart/src/uart.c", "C:/esp/v6.0/esp-idf/components/esp_driver_uart/src/uart_wakeup.c", "C:/esp/v6.0/esp-idf/components/esp_driver_uart/src/uart_vfs.c" ], + "include_dirs": [ "include" ] + }, + "esp_driver_usb_serial_jtag": { + "alias": "idf::esp_driver_usb_serial_jtag", + "target": "___idf_esp_driver_usb_serial_jtag", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_driver_usb_serial_jtag", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_ringbuf", "esp_pm", "esp_timer", "esp_hal_usb" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include" ] + }, + "esp_eth": { + "alias": "idf::esp_eth", + "target": "___idf_esp_eth", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_eth", + "type": "LIBRARY", + "lib": "__idf_esp_eth", + "reqs": [ "esp_event" ], + "priv_reqs": [ "log", "esp_timer", "esp_driver_spi", "esp_driver_gpio", "esp_hal_clock" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_eth/libesp_eth.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_eth/src/esp_eth.c", "C:/esp/v6.0/esp-idf/components/esp_eth/src/phy/esp_eth_phy_802_3.c", "C:/esp/v6.0/esp-idf/components/esp_eth/src/esp_eth_netif_glue.c", "C:/esp/v6.0/esp-idf/components/esp_eth/src/mac/esp_eth_mac_esp.c", "C:/esp/v6.0/esp-idf/components/esp_eth/src/mac/esp_eth_mac_esp_dma.c", "C:/esp/v6.0/esp-idf/components/esp_eth/src/mac/esp_eth_mac_esp_gpio.c", "C:/esp/v6.0/esp-idf/components/esp_eth/src/phy/esp_eth_phy_generic.c" ], + "include_dirs": [ "include" ] + }, + "esp_event": { + "alias": "idf::esp_event", + "target": "___idf_esp_event", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_event", + "type": "LIBRARY", + "lib": "__idf_esp_event", + "reqs": [ "log", "esp_common", "freertos" ], + "priv_reqs": [ "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_event/libesp_event.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_event/default_event_loop.c", "C:/esp/v6.0/esp-idf/components/esp_event/esp_event.c", "C:/esp/v6.0/esp-idf/components/esp_event/esp_event_private.c" ], + "include_dirs": [ "include" ] + }, + "esp_gdbstub": { + "alias": "idf::esp_gdbstub", + "target": "___idf_esp_gdbstub", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_gdbstub", + "type": "LIBRARY", + "lib": "__idf_esp_gdbstub", + "reqs": [ "freertos" ], + "priv_reqs": [ "esp_hal_wdt", "esp_hal_uart" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_gdbstub/libesp_gdbstub.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_gdbstub/src/gdbstub.c", "C:/esp/v6.0/esp-idf/components/esp_gdbstub/src/gdbstub_transport.c", "C:/esp/v6.0/esp-idf/components/esp_gdbstub/src/packet.c", "C:/esp/v6.0/esp-idf/components/esp_gdbstub/src/port/xtensa/gdbstub_xtensa.c", "C:/esp/v6.0/esp-idf/components/esp_gdbstub/src/port/xtensa/gdbstub-entry.S", "C:/esp/v6.0/esp-idf/components/esp_gdbstub/src/port/xtensa/xt_debugexception.S" ], + "include_dirs": [ "include" ] + }, + "esp_hal_ana_cmpr": { + "alias": "idf::esp_hal_ana_cmpr", + "target": "___idf_esp_hal_ana_cmpr", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_ana_cmpr", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_hal_ana_cmpr", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include" ] + }, + "esp_hal_ana_conv": { + "alias": "idf::esp_hal_ana_conv", + "target": "___idf_esp_hal_ana_conv", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_ana_conv", + "type": "LIBRARY", + "lib": "__idf_esp_hal_ana_conv", + "reqs": [ "soc", "hal", "esp_hal_dma", "esp_hal_i2s" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/adc_periph.c", "C:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/adc_hal_common.c", "C:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/adc_oneshot_hal.c", "C:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/adc_hal.c", "C:/esp/v6.0/esp-idf/components/esp_hal_ana_conv/esp32/dac_periph.c" ], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_cam": { + "alias": "idf::esp_hal_cam", + "target": "___idf_esp_hal_cam", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_cam", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_hal_cam", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include" ] + }, + "esp_hal_clock": { + "alias": "idf::esp_hal_clock", + "target": "___idf_esp_hal_clock", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_clock", + "type": "LIBRARY", + "lib": "__idf_esp_hal_clock", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_clock/libesp_hal_clock.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_hal_clock/esp32/clk_tree_hal.c" ], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_dma": { + "alias": "idf::esp_hal_dma", + "target": "___idf_esp_hal_dma", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_dma", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_hal_dma", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include" ] + }, + "esp_hal_gpio": { + "alias": "idf::esp_hal_gpio", + "target": "___idf_esp_hal_gpio", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_gpio", + "type": "LIBRARY", + "lib": "__idf_esp_hal_gpio", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_gpio/libesp_hal_gpio.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_hal_gpio/gpio_hal.c", "C:/esp/v6.0/esp-idf/components/esp_hal_gpio/rtc_io_hal.c", "C:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/rtc_io_periph.c", "C:/esp/v6.0/esp-idf/components/esp_hal_gpio/sdm_hal.c", "C:/esp/v6.0/esp-idf/components/esp_hal_gpio/esp32/sdm_periph.c" ], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_gpspi": { + "alias": "idf::esp_hal_gpspi", + "target": "___idf_esp_hal_gpspi", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_gpspi", + "type": "LIBRARY", + "lib": "__idf_esp_hal_gpspi", + "reqs": [ "soc", "hal", "esp_hal_dma" ], + "priv_reqs": [ "esp_hal_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_hal_gpspi/esp32/spi_periph.c", "C:/esp/v6.0/esp-idf/components/esp_hal_gpspi/spi_hal.c", "C:/esp/v6.0/esp-idf/components/esp_hal_gpspi/spi_hal_iram.c", "C:/esp/v6.0/esp-idf/components/esp_hal_gpspi/spi_slave_hal.c", "C:/esp/v6.0/esp-idf/components/esp_hal_gpspi/spi_slave_hal_iram.c" ], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_i2c": { + "alias": "idf::esp_hal_i2c", + "target": "___idf_esp_hal_i2c", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_i2c", + "type": "LIBRARY", + "lib": "__idf_esp_hal_i2c", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_i2c/libesp_hal_i2c.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_hal_i2c/i2c_hal.c", "C:/esp/v6.0/esp-idf/components/esp_hal_i2c/i2c_hal_iram.c", "C:/esp/v6.0/esp-idf/components/esp_hal_i2c/esp32/i2c_periph.c" ], + "include_dirs": [ "esp32/include", "include" ] + }, + "esp_hal_i2s": { + "alias": "idf::esp_hal_i2s", + "target": "___idf_esp_hal_i2s", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_i2s", + "type": "LIBRARY", + "lib": "__idf_esp_hal_i2s", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_i2s/libesp_hal_i2s.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_hal_i2s/i2s_hal.c", "C:/esp/v6.0/esp-idf/components/esp_hal_i2s/esp32/i2s_periph.c" ], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_ieee802154": { + "alias": "idf::esp_hal_ieee802154", + "target": "___idf_esp_hal_ieee802154", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_ieee802154", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_hal_ieee802154", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include" ] + }, + "esp_hal_jpeg": { + "alias": "idf::esp_hal_jpeg", + "target": "___idf_esp_hal_jpeg", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_jpeg", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_hal_jpeg", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include" ] + }, + "esp_hal_lcd": { + "alias": "idf::esp_hal_lcd", + "target": "___idf_esp_hal_lcd", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_lcd", + "type": "LIBRARY", + "lib": "__idf_esp_hal_lcd", + "reqs": [ "soc", "hal" ], + "priv_reqs": [ "esp_hal_i2s" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_lcd/libesp_hal_lcd.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_hal_lcd/esp32/lcd_periph.c" ], + "include_dirs": [ "include" ] + }, + "esp_hal_ledc": { + "alias": "idf::esp_hal_ledc", + "target": "___idf_esp_hal_ledc", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_ledc", + "type": "LIBRARY", + "lib": "__idf_esp_hal_ledc", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_ledc/libesp_hal_ledc.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_hal_ledc/ledc_hal.c", "C:/esp/v6.0/esp-idf/components/esp_hal_ledc/ledc_hal_iram.c", "C:/esp/v6.0/esp-idf/components/esp_hal_ledc/esp32/ledc_periph.c" ], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_mcpwm": { + "alias": "idf::esp_hal_mcpwm", + "target": "___idf_esp_hal_mcpwm", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_mcpwm", + "type": "LIBRARY", + "lib": "__idf_esp_hal_mcpwm", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_mcpwm/libesp_hal_mcpwm.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/mcpwm_hal.c", "C:/esp/v6.0/esp-idf/components/esp_hal_mcpwm/esp32/mcpwm_periph.c" ], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_mspi": { + "alias": "idf::esp_hal_mspi", + "target": "___idf_esp_hal_mspi", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_mspi", + "type": "LIBRARY", + "lib": "__idf_esp_hal_mspi", + "reqs": [ "soc", "hal", "esp_hal_gpspi", "esp_hal_clock" ], + "priv_reqs": [ "esp_hal_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_mspi/libesp_hal_mspi.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_hal_mspi/spi_flash_hal.c", "C:/esp/v6.0/esp-idf/components/esp_hal_mspi/spi_flash_hal_iram.c", "C:/esp/v6.0/esp-idf/components/esp_hal_mspi/spi_flash_encrypt_hal_iram.c" ], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_parlio": { + "alias": "idf::esp_hal_parlio", + "target": "___idf_esp_hal_parlio", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_parlio", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_hal_parlio", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include" ] + }, + "esp_hal_pcnt": { + "alias": "idf::esp_hal_pcnt", + "target": "___idf_esp_hal_pcnt", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_pcnt", + "type": "LIBRARY", + "lib": "__idf_esp_hal_pcnt", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_pcnt/libesp_hal_pcnt.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_hal_pcnt/pcnt_hal.c", "C:/esp/v6.0/esp-idf/components/esp_hal_pcnt/esp32/pcnt_periph.c" ], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_pmu": { + "alias": "idf::esp_hal_pmu", + "target": "___idf_esp_hal_pmu", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_pmu", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_hal_pmu", + "reqs": [ "soc", "hal", "esp_rom" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_ppa": { + "alias": "idf::esp_hal_ppa", + "target": "___idf_esp_hal_ppa", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_ppa", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_hal_ppa", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include" ] + }, + "esp_hal_rmt": { + "alias": "idf::esp_hal_rmt", + "target": "___idf_esp_hal_rmt", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_rmt", + "type": "LIBRARY", + "lib": "__idf_esp_hal_rmt", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_rmt/libesp_hal_rmt.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_hal_rmt/rmt_hal.c", "C:/esp/v6.0/esp-idf/components/esp_hal_rmt/esp32/rmt_periph.c" ], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_rtc_timer": { + "alias": "idf::esp_hal_rtc_timer", + "target": "___idf_esp_hal_rtc_timer", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_hal_rtc_timer", + "reqs": [ "soc", "hal", "esp_rom" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_security": { + "alias": "idf::esp_hal_security", + "target": "___idf_esp_hal_security", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_security", + "type": "LIBRARY", + "lib": "__idf_esp_hal_security", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_security/libesp_hal_security.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_hal_security/mpi_hal.c", "C:/esp/v6.0/esp-idf/components/esp_hal_security/sha_hal.c", "C:/esp/v6.0/esp-idf/components/esp_hal_security/aes_hal.c", "C:/esp/v6.0/esp-idf/components/esp_hal_security/mpu_hal.c" ], + "include_dirs": [ "esp32/include", "include" ] + }, + "esp_hal_timg": { + "alias": "idf::esp_hal_timg", + "target": "___idf_esp_hal_timg", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_timg", + "type": "LIBRARY", + "lib": "__idf_esp_hal_timg", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_timg/libesp_hal_timg.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_hal_timg/timer_hal.c", "C:/esp/v6.0/esp-idf/components/esp_hal_timg/esp32/timer_periph.c" ], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_touch_sens": { + "alias": "idf::esp_hal_touch_sens", + "target": "___idf_esp_hal_touch_sens", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_touch_sens", + "type": "LIBRARY", + "lib": "__idf_esp_hal_touch_sens", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/touch_sensor_legacy_hal.c", "C:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/touch_sensor_legacy_hal.c", "C:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/touch_sens_hal.c", "C:/esp/v6.0/esp-idf/components/esp_hal_touch_sens/esp32/touch_sensor_periph.c" ], + "include_dirs": [ "esp32/include", "include" ] + }, + "esp_hal_twai": { + "alias": "idf::esp_hal_twai", + "target": "___idf_esp_hal_twai", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_twai", + "type": "LIBRARY", + "lib": "__idf_esp_hal_twai", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_twai/libesp_hal_twai.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_hal_twai/esp32/twai_periph.c", "C:/esp/v6.0/esp-idf/components/esp_hal_twai/twai_hal_v1.c" ], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_uart": { + "alias": "idf::esp_hal_uart", + "target": "___idf_esp_hal_uart", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_uart", + "type": "LIBRARY", + "lib": "__idf_esp_hal_uart", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_uart/libesp_hal_uart.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_hal_uart/uart_hal.c", "C:/esp/v6.0/esp-idf/components/esp_hal_uart/uart_hal_iram.c", "C:/esp/v6.0/esp-idf/components/esp_hal_uart/esp32/uart_periph.c" ], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_usb": { + "alias": "idf::esp_hal_usb", + "target": "___idf_esp_hal_usb", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_usb", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_hal_usb", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include" ] + }, + "esp_hal_wdt": { + "alias": "idf::esp_hal_wdt", + "target": "___idf_esp_hal_wdt", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_wdt", + "type": "LIBRARY", + "lib": "__idf_esp_hal_wdt", + "reqs": [ "soc", "hal", "esp_rom", "esp_hal_timg" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hal_wdt/libesp_hal_wdt.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_hal_wdt/esp32/mwdt_periph.c", "C:/esp/v6.0/esp-idf/components/esp_hal_wdt/wdt_hal_iram.c" ], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hid": { + "alias": "idf::esp_hid", + "target": "___idf_esp_hid", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hid", + "type": "LIBRARY", + "lib": "__idf_esp_hid", + "reqs": [ "esp_event", "bt" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hid/libesp_hid.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_hid/src/esp_hidd.c", "C:/esp/v6.0/esp-idf/components/esp_hid/src/esp_hidh.c", "C:/esp/v6.0/esp-idf/components/esp_hid/src/esp_hid_common.c" ], + "include_dirs": [ "include" ] + }, + "esp_http_client": { + "alias": "idf::esp_http_client", + "target": "___idf_esp_http_client", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_http_client", + "type": "LIBRARY", + "lib": "__idf_esp_http_client", + "reqs": [ "lwip", "esp_event" ], + "priv_reqs": [ "tcp_transport", "http_parser" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_http_client/libesp_http_client.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_http_client/esp_http_client.c", "C:/esp/v6.0/esp-idf/components/esp_http_client/lib/http_auth.c", "C:/esp/v6.0/esp-idf/components/esp_http_client/lib/http_header.c", "C:/esp/v6.0/esp-idf/components/esp_http_client/lib/http_utils.c" ], + "include_dirs": [ "include" ] + }, + "esp_http_server": { + "alias": "idf::esp_http_server", + "target": "___idf_esp_http_server", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_http_server", + "type": "LIBRARY", + "lib": "__idf_esp_http_server", + "reqs": [ "http_parser", "esp_event" ], + "priv_reqs": [ "mbedtls", "lwip", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_http_server/libesp_http_server.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_http_server/src/httpd_main.c", "C:/esp/v6.0/esp-idf/components/esp_http_server/src/httpd_parse.c", "C:/esp/v6.0/esp-idf/components/esp_http_server/src/httpd_sess.c", "C:/esp/v6.0/esp-idf/components/esp_http_server/src/httpd_txrx.c", "C:/esp/v6.0/esp-idf/components/esp_http_server/src/httpd_uri.c", "C:/esp/v6.0/esp-idf/components/esp_http_server/src/httpd_ws.c", "C:/esp/v6.0/esp-idf/components/esp_http_server/src/util/ctrl_sock.c" ], + "include_dirs": [ "include" ] + }, + "esp_https_ota": { + "alias": "idf::esp_https_ota", + "target": "___idf_esp_https_ota", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_https_ota", + "type": "LIBRARY", + "lib": "__idf_esp_https_ota", + "reqs": [ "esp_http_client", "bootloader_support", "esp_bootloader_format", "esp_app_format", "esp_event", "esp_partition" ], + "priv_reqs": [ "log", "app_update" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_https_ota/libesp_https_ota.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_https_ota/src/esp_https_ota.c" ], + "include_dirs": [ "include" ] + }, + "esp_https_server": { + "alias": "idf::esp_https_server", + "target": "___idf_esp_https_server", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_https_server", + "type": "LIBRARY", + "lib": "__idf_esp_https_server", + "reqs": [ "esp_http_server", "esp-tls", "esp_event" ], + "priv_reqs": [ "lwip" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_https_server/libesp_https_server.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_https_server/src/https_server.c" ], + "include_dirs": [ "include" ] + }, + "esp_hw_support": { + "alias": "idf::esp_hw_support", + "target": "___idf_esp_hw_support", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hw_support", + "type": "LIBRARY", + "lib": "__idf_esp_hw_support", + "reqs": [ "esp_hal_gpio", "esp_hal_usb", "esp_hal_pmu" ], + "priv_reqs": [ "efuse", "spi_flash", "bootloader_support", "esp_hal_wdt", "esp_hal_security", "esp_hal_rtc_timer", "esp_hal_clock", "esp_driver_gpio", "esp_timer", "esp_hal_touch_sens", "esp_hal_i2s", "esp_pm", "esp_mm", "esp_hal_mspi", "esp_hal_uart" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_hw_support/libesp_hw_support.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_hw_support/cpu.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/esp_cpu_intr.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/esp_memory_utils.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/cpu_region_protect.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/esp_clk.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/clk_ctrl_os.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/hw_random.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/intr_alloc.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/mac_addr.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/periph_ctrl.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/revision.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/rtc_module.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/regi2c_ctrl.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/esp_gpio_reserve.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/sar_tsens_ctrl.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/io_mux.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/esp_clk_tree.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/spi_bus_lock.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/clk_utils.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp_clk_tree_common.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/spi_share_hw_ctrl.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/adc_share_hw_ctrl.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/sleep_modem.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/sleep_modes.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/sleep_uart.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/sleep_console.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/sleep_mspi.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/sleep_usb.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/sleep_gpio.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/sleep_event.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/rtc_wdt.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/mspi_timing_tuning/mspi_timing_tuning.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/sleep_wake_stub.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/esp_clock_output.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/power_supply/brownout.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/rtc_clk.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/rtc_clk_init.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/rtc_init.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/rtc_sleep.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/rtc_time.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/chip_info.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/cache_sram_mmu.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/port/esp32/sar_periph_ctrl.c", "C:/esp/v6.0/esp-idf/components/esp_hw_support/lowpower" ], + "include_dirs": [ "include", "include/soc", "ldo/include", "debug_probe/include", "etm/include", "mspi_timing_tuning/include", "mspi_timing_tuning/tuning_scheme_impl/include", "power_supply/include", "modem/include" ] + }, + "esp_lcd": { + "alias": "idf::esp_lcd", + "target": "___idf_esp_lcd", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_lcd", + "type": "LIBRARY", + "lib": "__idf_esp_lcd", + "reqs": [ "esp_driver_gpio", "esp_driver_i2c", "esp_driver_spi", "esp_driver_parlio", "esp_hal_lcd" ], + "priv_reqs": [ "esp_mm", "esp_psram", "esp_pm", "esp_driver_i2s", "esp_driver_dma" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_lcd/libesp_lcd.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_lcd/src/esp_lcd_common.c", "C:/esp/v6.0/esp-idf/components/esp_lcd/src/esp_lcd_panel_io.c", "C:/esp/v6.0/esp-idf/components/esp_lcd/src/esp_lcd_panel_ssd1306.c", "C:/esp/v6.0/esp-idf/components/esp_lcd/src/esp_lcd_panel_st7789.c", "C:/esp/v6.0/esp-idf/components/esp_lcd/src/esp_lcd_panel_ops.c", "C:/esp/v6.0/esp-idf/components/esp_lcd/i2c/esp_lcd_panel_io_i2c.c", "C:/esp/v6.0/esp-idf/components/esp_lcd/spi/esp_lcd_panel_io_spi.c", "C:/esp/v6.0/esp-idf/components/esp_lcd/i80/esp_lcd_panel_io_i2s.c" ], + "include_dirs": [ "include", "interface" ] + }, + "esp_libc": { + "alias": "idf::esp_libc", + "target": "___idf_esp_libc", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_libc", + "type": "LIBRARY", + "lib": "__idf_esp_libc", + "reqs": [], + "priv_reqs": [ "soc", "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_libc/libesp_libc.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_libc/src/init.c", "C:/esp/v6.0/esp-idf/components/esp_libc/src/abort.c", "C:/esp/v6.0/esp-idf/components/esp_libc/src/assert.c", "C:/esp/v6.0/esp-idf/components/esp_libc/src/heap.c", "C:/esp/v6.0/esp-idf/components/esp_libc/src/locks.c", "C:/esp/v6.0/esp-idf/components/esp_libc/src/poll.c", "C:/esp/v6.0/esp-idf/components/esp_libc/src/pthread.c", "C:/esp/v6.0/esp-idf/components/esp_libc/src/random.c", "C:/esp/v6.0/esp-idf/components/esp_libc/src/getentropy.c", "C:/esp/v6.0/esp-idf/components/esp_libc/src/termios.c", "C:/esp/v6.0/esp-idf/components/esp_libc/src/stdatomic.c", "C:/esp/v6.0/esp-idf/components/esp_libc/src/time.c", "C:/esp/v6.0/esp-idf/components/esp_libc/src/sysconf.c", "C:/esp/v6.0/esp-idf/components/esp_libc/src/realpath.c", "C:/esp/v6.0/esp-idf/components/esp_libc/src/scandir.c", "C:/esp/v6.0/esp-idf/components/esp_libc/src/syscalls.c", "C:/esp/v6.0/esp-idf/components/esp_libc/src/reent_syscalls.c", "C:/esp/v6.0/esp-idf/components/esp_libc/src/port/esp_time_impl.c", "C:/esp/v6.0/esp-idf/components/esp_libc/src/picolibc/picolibc_init.c", "C:/esp/v6.0/esp-idf/components/esp_libc/src/picolibc/rand.c", "C:/esp/v6.0/esp-idf/components/esp_libc/src/picolibc/open_memstream.c", "C:/esp/v6.0/esp-idf/components/esp_libc/src/picolibc/errno.c", "C:/esp/v6.0/esp-idf/components/esp_libc/src/picolibc/getreent.c", "C:/esp/v6.0/esp-idf/components/esp_libc/src/port/esp_time_impl.c" ], + "include_dirs": [ "platform_include" ] + }, + "esp_local_ctrl": { + "alias": "idf::esp_local_ctrl", + "target": "___idf_esp_local_ctrl", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_local_ctrl", + "type": "LIBRARY", + "lib": "__idf_esp_local_ctrl", + "reqs": [ "protocomm", "esp_https_server" ], + "priv_reqs": [ "protobuf-c", "esp_netif" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_local_ctrl/libesp_local_ctrl.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_local_ctrl/src/esp_local_ctrl.c", "C:/esp/v6.0/esp-idf/components/esp_local_ctrl/src/esp_local_ctrl_handler.c", "C:/esp/v6.0/esp-idf/components/esp_local_ctrl/proto-c/esp_local_ctrl.pb-c.c", "C:/esp/v6.0/esp-idf/components/esp_local_ctrl/src/esp_local_ctrl_transport_httpd.c" ], + "include_dirs": [ "include" ] + }, + "esp_mm": { + "alias": "idf::esp_mm", + "target": "___idf_esp_mm", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_mm", + "type": "LIBRARY", + "lib": "__idf_esp_mm", + "reqs": [], + "priv_reqs": [ "heap", "spi_flash", "esp_hal_dma" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_mm/libesp_mm.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_mm/esp_mmu_map.c", "C:/esp/v6.0/esp-idf/components/esp_mm/port/esp32/ext_mem_layout.c", "C:/esp/v6.0/esp-idf/components/esp_mm/esp_cache_msync.c", "C:/esp/v6.0/esp-idf/components/esp_mm/esp_cache_utils.c", "C:/esp/v6.0/esp-idf/components/esp_mm/cache_esp32.c", "C:/esp/v6.0/esp-idf/components/esp_mm/heap_align_hw.c" ], + "include_dirs": [ "include" ] + }, + "esp_netif": { + "alias": "idf::esp_netif", + "target": "___idf_esp_netif", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_netif", + "type": "LIBRARY", + "lib": "__idf_esp_netif", + "reqs": [ "esp_event" ], + "priv_reqs": [ "esp_netif_stack" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_netif/libesp_netif.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_netif/esp_netif_handlers.c", "C:/esp/v6.0/esp-idf/components/esp_netif/esp_netif_objects.c", "C:/esp/v6.0/esp-idf/components/esp_netif/esp_netif_defaults.c", "C:/esp/v6.0/esp-idf/components/esp_netif/lwip/esp_netif_lwip.c", "C:/esp/v6.0/esp-idf/components/esp_netif/lwip/esp_netif_sntp.c", "C:/esp/v6.0/esp-idf/components/esp_netif/lwip/esp_netif_lwip_defaults.c", "C:/esp/v6.0/esp-idf/components/esp_netif/lwip/netif/wlanif.c", "C:/esp/v6.0/esp-idf/components/esp_netif/lwip/netif/ethernetif.c", "C:/esp/v6.0/esp-idf/components/esp_netif/lwip/netif/esp_pbuf_ref.c" ], + "include_dirs": [ "include" ] + }, + "esp_netif_stack": { + "alias": "idf::esp_netif_stack", + "target": "___idf_esp_netif_stack", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_netif_stack", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_netif_stack", + "reqs": [ "lwip" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [] + }, + "esp_partition": { + "alias": "idf::esp_partition", + "target": "___idf_esp_partition", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_partition", + "type": "LIBRARY", + "lib": "__idf_esp_partition", + "reqs": [ "esp_blockdev" ], + "priv_reqs": [ "esp_system", "spi_flash", "partition_table", "bootloader_support", "app_update" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_partition/libesp_partition.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_partition/partition.c", "C:/esp/v6.0/esp-idf/components/esp_partition/partition_target.c" ], + "include_dirs": [ "include" ] + }, + "esp_phy": { + "alias": "idf::esp_phy", + "target": "___idf_esp_phy", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_phy", + "type": "LIBRARY", + "lib": "__idf_esp_phy", + "reqs": [], + "priv_reqs": [ "nvs_flash", "esp_driver_gpio", "esp_hal_ana_conv", "efuse", "esp_timer", "esp_wifi", "esptool_py" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_phy/libesp_phy.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_phy/src/phy_override.c", "C:/esp/v6.0/esp-idf/components/esp_phy/src/lib_printf.c", "C:/esp/v6.0/esp-idf/components/esp_phy/src/phy_common.c", "C:/esp/v6.0/esp-idf/components/esp_phy/src/phy_init.c", "C:/esp/v6.0/esp-idf/components/esp_phy/esp32/phy_init_data.c", "C:/esp/v6.0/esp-idf/components/esp_phy/src/btbb_init.c" ], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_pm": { + "alias": "idf::esp_pm", + "target": "___idf_esp_pm", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_pm", + "type": "LIBRARY", + "lib": "__idf_esp_pm", + "reqs": [], + "priv_reqs": [ "esp_system", "esp_driver_gpio", "esp_timer", "esp_hal_uart" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_pm/libesp_pm.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_pm/pm_locks.c", "C:/esp/v6.0/esp-idf/components/esp_pm/pm_trace.c", "C:/esp/v6.0/esp-idf/components/esp_pm/pm_impl.c" ], + "include_dirs": [ "include" ] + }, + "esp_psram": { + "alias": "idf::esp_psram", + "target": "___idf_esp_psram", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_psram", + "type": "LIBRARY", + "lib": "__idf_esp_psram", + "reqs": [], + "priv_reqs": [ "heap", "spi_flash", "esp_mm", "esp_hal_mspi", "esp_hal_gpio", "bootloader_support", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_psram/libesp_psram.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_psram/system_layer/esp_psram_mspi.c" ], + "include_dirs": [ "include" ] + }, + "esp_ringbuf": { + "alias": "idf::esp_ringbuf", + "target": "___idf_esp_ringbuf", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_ringbuf", + "type": "LIBRARY", + "lib": "__idf_esp_ringbuf", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_ringbuf/libesp_ringbuf.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_ringbuf/ringbuf.c" ], + "include_dirs": [ "include" ] + }, + "esp_rom": { + "alias": "idf::esp_rom", + "target": "___idf_esp_rom", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_rom", + "type": "LIBRARY", + "lib": "__idf_esp_rom", + "reqs": [], + "priv_reqs": [ "soc", "hal", "esp_hal_uart" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_rom/libesp_rom.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_rom/patches/esp_rom_sys.c", "C:/esp/v6.0/esp-idf/components/esp_rom/patches/esp_rom_print.c", "C:/esp/v6.0/esp-idf/components/esp_rom/patches/esp_rom_crc.c", "C:/esp/v6.0/esp-idf/components/esp_rom/patches/esp_rom_serial_output.c", "C:/esp/v6.0/esp-idf/components/esp_rom/patches/esp_rom_spiflash.c", "C:/esp/v6.0/esp-idf/components/esp_rom/patches/esp_rom_efuse.c", "C:/esp/v6.0/esp-idf/components/esp_rom/patches/esp_rom_gpio.c", "C:/esp/v6.0/esp-idf/components/esp_rom/patches/esp_rom_longjmp.S" ], + "include_dirs": [ "include", "esp32/include", "esp32/include/esp32", "esp32" ] + }, + "esp_security": { + "alias": "idf::esp_security", + "target": "___idf_esp_security", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_security", + "type": "LIBRARY", + "lib": "__idf_esp_security", + "reqs": [ "esp_hal_security" ], + "priv_reqs": [ "esp_hw_support", "hal", "efuse", "esp_system", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_security/libesp_security.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_security/src/init.c", "C:/esp/v6.0/esp-idf/components/esp_security/src/esp_crypto_lock.c", "C:/esp/v6.0/esp-idf/components/esp_security/src/esp_crypto_periph_clk.c" ], + "include_dirs": [ "include" ] + }, + "esp_stdio": { + "alias": "idf::esp_stdio", + "target": "___idf_esp_stdio", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_stdio", + "type": "LIBRARY", + "lib": "__idf_esp_stdio", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_stdio/libesp_stdio.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_stdio/stdio_vfs.c", "C:/esp/v6.0/esp-idf/components/esp_stdio/stdio_simple.c", "C:/esp/v6.0/esp-idf/components/esp_stdio/stdio_syscalls_simple.c" ], + "include_dirs": [ "include" ] + }, + "esp_system": { + "alias": "idf::esp_system", + "target": "___idf_esp_system", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_system", + "type": "LIBRARY", + "lib": "__idf_esp_system", + "reqs": [], + "priv_reqs": [ "spi_flash", "esp_timer", "esp_mm", "esp_hal_mspi", "esp_hal_wdt", "esp_hal_uart", "esp_hal_dma", "esp_hal_clock", "bootloader_support", "esp_pm", "esp_usb_cdc_rom_console" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_system/libesp_system.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_system/esp_err.c", "C:/esp/v6.0/esp-idf/components/esp_system/crosscore_int.c", "C:/esp/v6.0/esp-idf/components/esp_system/esp_ipc.c", "C:/esp/v6.0/esp-idf/components/esp_system/freertos_hooks.c", "C:/esp/v6.0/esp-idf/components/esp_system/int_wdt.c", "C:/esp/v6.0/esp-idf/components/esp_system/panic.c", "C:/esp/v6.0/esp-idf/components/esp_system/esp_system.c", "C:/esp/v6.0/esp-idf/components/esp_system/startup.c", "C:/esp/v6.0/esp-idf/components/esp_system/startup_funcs.c", "C:/esp/v6.0/esp-idf/components/esp_system/system_time.c", "C:/esp/v6.0/esp-idf/components/esp_system/stack_check.c", "C:/esp/v6.0/esp-idf/components/esp_system/ubsan.c", "C:/esp/v6.0/esp-idf/components/esp_system/xt_wdt.c", "C:/esp/v6.0/esp-idf/components/esp_system/task_wdt/task_wdt.c", "C:/esp/v6.0/esp-idf/components/esp_system/task_wdt/task_wdt_impl_timergroup.c", "C:/esp/v6.0/esp-idf/components/esp_system/port/cpu_start.c", "C:/esp/v6.0/esp-idf/components/esp_system/port/panic_handler.c", "C:/esp/v6.0/esp-idf/components/esp_system/port/esp_system_chip.c", "C:/esp/v6.0/esp-idf/components/esp_system/port/image_process.c", "C:/esp/v6.0/esp-idf/components/esp_system/port/esp_ipc_isr.c", "C:/esp/v6.0/esp-idf/components/esp_system/port/arch/xtensa/esp_ipc_isr_port.c", "C:/esp/v6.0/esp-idf/components/esp_system/port/arch/xtensa/esp_ipc_isr_handler.S", "C:/esp/v6.0/esp-idf/components/esp_system/port/arch/xtensa/esp_ipc_isr_routines.S", "C:/esp/v6.0/esp-idf/components/esp_system/port/arch/xtensa/panic_arch.c", "C:/esp/v6.0/esp-idf/components/esp_system/port/arch/xtensa/panic_handler_asm.S", "C:/esp/v6.0/esp-idf/components/esp_system/port/arch/xtensa/expression_with_stack.c", "C:/esp/v6.0/esp-idf/components/esp_system/port/arch/xtensa/expression_with_stack_asm.S", "C:/esp/v6.0/esp-idf/components/esp_system/port/arch/xtensa/debug_helpers.c", "C:/esp/v6.0/esp-idf/components/esp_system/port/arch/xtensa/debug_helpers_asm.S", "C:/esp/v6.0/esp-idf/components/esp_system/port/arch/xtensa/debug_stubs.c", "C:/esp/v6.0/esp-idf/components/esp_system/port/arch/xtensa/trax.c", "C:/esp/v6.0/esp-idf/components/esp_system/port/soc/esp32/highint_hdl.S", "C:/esp/v6.0/esp-idf/components/esp_system/port/soc/esp32/clk.c", "C:/esp/v6.0/esp-idf/components/esp_system/port/soc/esp32/reset_reason.c", "C:/esp/v6.0/esp-idf/components/esp_system/port/soc/esp32/system_internal.c", "C:/esp/v6.0/esp-idf/components/esp_system/port/soc/esp32/cache_err_int.c" ], + "include_dirs": [ "include" ] + }, + "esp_timer": { + "alias": "idf::esp_timer", + "target": "___idf_esp_timer", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_timer", + "type": "LIBRARY", + "lib": "__idf_esp_timer", + "reqs": [], + "priv_reqs": [ "esp_hal_timg" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_timer/libesp_timer.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_timer/src/esp_timer.c", "C:/esp/v6.0/esp-idf/components/esp_timer/src/esp_timer_init.c", "C:/esp/v6.0/esp-idf/components/esp_timer/src/ets_timer_legacy.c", "C:/esp/v6.0/esp-idf/components/esp_timer/src/system_time.c", "C:/esp/v6.0/esp-idf/components/esp_timer/src/esp_timer_impl_common.c", "C:/esp/v6.0/esp-idf/components/esp_timer/src/esp_timer_impl_lac.c" ], + "include_dirs": [ "include" ] + }, + "esp_trace": { + "alias": "idf::esp_trace", + "target": "___idf_esp_trace", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_trace", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_trace", + "reqs": [ "app_trace" ], + "priv_reqs": [ "esp_driver_gptimer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include" ] + }, + "esp_usb_cdc_rom_console": { + "alias": "idf::esp_usb_cdc_rom_console", + "target": "___idf_esp_usb_cdc_rom_console", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console", + "type": "CONFIG_ONLY", + "lib": "__idf_esp_usb_cdc_rom_console", + "reqs": [], + "priv_reqs": [ "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include" ] + }, + "esp_wifi": { + "alias": "idf::esp_wifi", + "target": "___idf_esp_wifi", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_wifi", + "type": "LIBRARY", + "lib": "__idf_esp_wifi", + "reqs": [ "esp_event", "esp_phy", "esp_netif" ], + "priv_reqs": [ "esp_pm", "esp_timer", "nvs_flash", "wpa_supplicant", "hal", "lwip", "esp_coex" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/esp_wifi/libesp_wifi.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/esp_wifi/src/lib_printf.c", "C:/esp/v6.0/esp-idf/components/esp_wifi/src/mesh_event.c", "C:/esp/v6.0/esp-idf/components/esp_wifi/src/smartconfig.c", "C:/esp/v6.0/esp-idf/components/esp_wifi/src/wifi_init.c", "C:/esp/v6.0/esp-idf/components/esp_wifi/src/wifi_default.c", "C:/esp/v6.0/esp-idf/components/esp_wifi/src/wifi_netif.c", "C:/esp/v6.0/esp-idf/components/esp_wifi/src/wifi_default_ap.c", "C:/esp/v6.0/esp-idf/components/esp_wifi/esp32/esp_adapter.c", "C:/esp/v6.0/esp-idf/components/esp_wifi/regulatory/esp_wifi_regulatory.c", "C:/esp/v6.0/esp-idf/components/esp_wifi/src/smartconfig_ack.c" ], + "include_dirs": [ "include", "include/local", "wifi_apps/include", "wifi_apps/nan_app/include" ] + }, + "espcoredump": { + "alias": "idf::espcoredump", + "target": "___idf_espcoredump", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/espcoredump", + "type": "CONFIG_ONLY", + "lib": "__idf_espcoredump", + "reqs": [], + "priv_reqs": [ "esp_partition", "spi_flash", "bootloader_support", "mbedtls", "esp_rom", "soc", "esp_system", "esp_driver_gpio", "esp_app_format", "esp_hal_security" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [] + }, + "esptool_py": { + "alias": "idf::esptool_py", + "target": "___idf_esptool_py", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esptool_py", + "type": "CONFIG_ONLY", + "lib": "__idf_esptool_py", + "reqs": [ "bootloader" ], + "priv_reqs": [ "partition_table" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [] + }, + "fatfs": { + "alias": "idf::fatfs", + "target": "___idf_fatfs", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/fatfs", + "type": "LIBRARY", + "lib": "__idf_fatfs", + "reqs": [ "wear_levelling", "sdmmc", "esp_driver_sdmmc", "esp_driver_sdspi" ], + "priv_reqs": [ "vfs", "esp_driver_gpio", "esptool_py" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/fatfs/libfatfs.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/fatfs/diskio/diskio.c", "C:/esp/v6.0/esp-idf/components/fatfs/diskio/diskio_rawflash.c", "C:/esp/v6.0/esp-idf/components/fatfs/diskio/diskio_wl.c", "C:/esp/v6.0/esp-idf/components/fatfs/src/ff.c", "C:/esp/v6.0/esp-idf/components/fatfs/src/ffunicode.c", "C:/esp/v6.0/esp-idf/components/fatfs/port/freertos/ffsystem.c", "C:/esp/v6.0/esp-idf/components/fatfs/diskio/diskio_sdmmc.c", "C:/esp/v6.0/esp-idf/components/fatfs/vfs/vfs_fat.c", "C:/esp/v6.0/esp-idf/components/fatfs/vfs/vfs_fat_sdmmc.c", "C:/esp/v6.0/esp-idf/components/fatfs/vfs/vfs_fat_spiflash.c" ], + "include_dirs": [ "diskio", "src", "vfs" ] + }, + "freertos": { + "alias": "idf::freertos", + "target": "___idf_freertos", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/freertos", + "type": "LIBRARY", + "lib": "__idf_freertos", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/freertos/libfreertos.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/freertos/heap_idf.c", "C:/esp/v6.0/esp-idf/components/freertos/app_startup.c", "C:/esp/v6.0/esp-idf/components/freertos/port_common.c", "C:/esp/v6.0/esp-idf/components/freertos/port_systick.c", "C:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/list.c", "C:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/queue.c", "C:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/tasks.c", "C:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/timers.c", "C:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/event_groups.c", "C:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/stream_buffer.c", "C:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c", "C:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/portasm.S", "C:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c", "C:/esp/v6.0/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/xtensa_overlay_os_hook.c", "C:/esp/v6.0/esp-idf/components/freertos/esp_additions/idf_additions_event_groups.c", "C:/esp/v6.0/esp-idf/components/freertos/esp_additions/idf_additions.c" ], + "include_dirs": [ "config/include", "config/include/freertos", "config/xtensa/include", "FreeRTOS-Kernel/include", "FreeRTOS-Kernel/portable/xtensa/include", "FreeRTOS-Kernel/portable/xtensa/include/freertos", "esp_additions/include" ] + }, + "hal": { + "alias": "idf::hal", + "target": "___idf_hal", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/hal", + "type": "LIBRARY", + "lib": "__idf_hal", + "reqs": [], + "priv_reqs": [ "esp_hal_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/hal/libhal.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/hal/hal_utils.c", "C:/esp/v6.0/esp-idf/components/hal/efuse_hal.c", "C:/esp/v6.0/esp-idf/components/hal/esp32/efuse_hal.c", "C:/esp/v6.0/esp-idf/components/hal/mmu_hal.c", "C:/esp/v6.0/esp-idf/components/hal/esp32/cache_hal_esp32.c", "C:/esp/v6.0/esp-idf/components/hal/color_hal.c", "C:/esp/v6.0/esp-idf/components/hal/sdmmc_hal.c", "C:/esp/v6.0/esp-idf/components/hal/emac_hal.c", "C:/esp/v6.0/esp-idf/components/hal/brownout_hal.c", "C:/esp/v6.0/esp-idf/components/hal/sdio_slave_hal.c" ], + "include_dirs": [ "platform_port/include", "esp32/include", "include" ] + }, + "heap": { + "alias": "idf::heap", + "target": "___idf_heap", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/heap", + "type": "LIBRARY", + "lib": "__idf_heap", + "reqs": [], + "priv_reqs": [ "soc" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/heap/libheap.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/heap/heap_caps_base.c", "C:/esp/v6.0/esp-idf/components/heap/heap_caps.c", "C:/esp/v6.0/esp-idf/components/heap/heap_caps_init.c", "C:/esp/v6.0/esp-idf/components/heap/multi_heap.c", "C:/esp/v6.0/esp-idf/components/heap/tlsf/tlsf.c", "C:/esp/v6.0/esp-idf/components/heap/port/memory_layout_utils.c", "C:/esp/v6.0/esp-idf/components/heap/port/esp32/memory_layout.c" ], + "include_dirs": [ "include", "tlsf" ] + }, + "http_parser": { + "alias": "idf::http_parser", + "target": "___idf_http_parser", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/http_parser", + "type": "LIBRARY", + "lib": "__idf_http_parser", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/http_parser/libhttp_parser.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/http_parser/http_parser.c" ], + "include_dirs": [ "." ] + }, + "idf_test": { + "alias": "idf::idf_test", + "target": "___idf_idf_test", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/idf_test", + "type": "CONFIG_ONLY", + "lib": "__idf_idf_test", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include", "include/esp32" ] + }, + "ieee802154": { + "alias": "idf::ieee802154", + "target": "___idf_ieee802154", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/ieee802154", + "type": "CONFIG_ONLY", + "lib": "__idf_ieee802154", + "reqs": [ "esp_coex" ], + "priv_reqs": [ "esp_phy", "esp_timer", "soc", "hal", "esp_pm", "esp_hal_ieee802154" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [ "include" ] + }, + "log": { + "alias": "idf::log", + "target": "___idf_log", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/log", + "type": "LIBRARY", + "lib": "__idf_log", + "reqs": [], + "priv_reqs": [ "hal", "soc", "esp_hw_support" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/log/liblog.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/log/src/os/log_timestamp.c", "C:/esp/v6.0/esp-idf/components/log/src/log_timestamp_common.c", "C:/esp/v6.0/esp-idf/components/log/src/os/log_lock.c", "C:/esp/v6.0/esp-idf/components/log/src/buffer/log_buffers.c", "C:/esp/v6.0/esp-idf/components/log/src/os/util.c", "C:/esp/v6.0/esp-idf/components/log/src/util.c", "C:/esp/v6.0/esp-idf/components/log/src/log_format_text.c", "C:/esp/v6.0/esp-idf/components/log/src/log_print.c", "C:/esp/v6.0/esp-idf/components/log/src/log.c", "C:/esp/v6.0/esp-idf/components/log/src/os/log_write.c", "C:/esp/v6.0/esp-idf/components/log/src/log_level/log_level.c", "C:/esp/v6.0/esp-idf/components/log/src/log_level/tag_log_level/tag_log_level.c", "C:/esp/v6.0/esp-idf/components/log/src/log_level/tag_log_level/linked_list/log_linked_list.c", "C:/esp/v6.0/esp-idf/components/log/src/log_level/tag_log_level/cache/log_binary_heap.c" ], + "include_dirs": [ "include" ] + }, + "lwip": { + "alias": "idf::lwip", + "target": "___idf_lwip", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/lwip", + "type": "LIBRARY", + "lib": "__idf_lwip", + "reqs": [], + "priv_reqs": [ "vfs" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/lwip/liblwip.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/lwip/apps/sntp/sntp.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/api/api_lib.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/api/api_msg.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/api/err.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/api/if_api.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/api/netbuf.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/api/netdb.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/api/netifapi.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/api/sockets.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/api/tcpip.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/apps/sntp/sntp.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/apps/netbiosns/netbiosns.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/def.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/dns.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/inet_chksum.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/init.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/ip.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/mem.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/memp.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/netif.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/pbuf.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/raw.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/stats.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/sys.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/tcp.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/tcp_in.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/tcp_out.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/timeouts.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/udp.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/ipv4/autoip.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/ipv4/dhcp.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/ipv4/etharp.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/ipv4/icmp.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/ipv4/igmp.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/ipv4/ip4.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/ipv4/ip4_napt.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/ipv4/ip4_addr.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/ipv4/ip4_frag.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/ipv6/dhcp6.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/ipv6/ethip6.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/ipv6/icmp6.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/ipv6/inet6.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/ipv6/ip6.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/ipv6/ip6_addr.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/ipv6/ip6_frag.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/ipv6/mld6.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/core/ipv6/nd6.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ethernet.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/bridgeif.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/bridgeif_fdb.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/slipif.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/auth.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/ccp.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/chap-md5.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/chap-new.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/chap_ms.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/demand.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/eap.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/ecp.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/eui64.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/fsm.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/ipcp.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/ipv6cp.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/lcp.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/magic.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/mppe.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/multilink.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/ppp.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/pppapi.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/pppcrypt.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/pppoe.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/pppol2tp.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/pppos.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/upap.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/utils.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/vj.c", "C:/esp/v6.0/esp-idf/components/lwip/port/hooks/tcp_isn_default.c", "C:/esp/v6.0/esp-idf/components/lwip/port/hooks/lwip_default_hooks.c", "C:/esp/v6.0/esp-idf/components/lwip/port/debug/lwip_debug.c", "C:/esp/v6.0/esp-idf/components/lwip/port/sockets_ext.c", "C:/esp/v6.0/esp-idf/components/lwip/port/freertos/sys_arch.c", "C:/esp/v6.0/esp-idf/components/lwip/port/if_index.c", "C:/esp/v6.0/esp-idf/components/lwip/port/acd_dhcp_check.c", "C:/esp/v6.0/esp-idf/components/lwip/port/esp32xx/vfs_lwip.c", "C:/esp/v6.0/esp-idf/components/lwip/apps/ping/ping_sock.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/arc4.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/des.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/md4.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/md5.c", "C:/esp/v6.0/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/sha1.c", "C:/esp/v6.0/esp-idf/components/lwip/apps/dhcpserver/dhcpserver.c" ], + "include_dirs": [ "include", "include/apps", "lwip/src/include", "port/include", "port/freertos/include/", "port/esp32xx/include", "port/esp32xx/include/arch", "port/esp32xx/include/sys" ] + }, + "main": { + "alias": "idf::main", + "target": "___idf_main", + "prefix": "idf", + "dir": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/main", + "type": "LIBRARY", + "lib": "__idf_main", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/main/libmain.a", + "sources": [ "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/main/main.c", "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/main/modbus_memory.c", "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/main/modbus_points.c", "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/main/modbus_rtu.c", "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/main/config_store.c" ], + "include_dirs": [ "." ] + }, + "mbedtls": { + "alias": "idf::mbedtls", + "target": "___idf_mbedtls", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/mbedtls", + "type": "LIBRARY", + "lib": "__idf_mbedtls", + "reqs": [ "esp_security" ], + "priv_reqs": [ "soc", "esp_hw_support", "esp_pm", "esp_driver_dma" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/libmbedtls.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/mbedtls/esp_crt_bundle/esp_crt_bundle.c", "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/x509_crt_bundle.S" ], + "include_dirs": [ "port/include", "mbedtls/include", "mbedtls/library", "mbedtls/tf-psa-crypto/core", "mbedtls/tf-psa-crypto/drivers/builtin/src/", "esp_crt_bundle/include", "C:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include" ] + }, + "nvs_flash": { + "alias": "idf::nvs_flash", + "target": "___idf_nvs_flash", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/nvs_flash", + "type": "LIBRARY", + "lib": "__idf_nvs_flash", + "reqs": [ "esp_partition", "esp_blockdev" ], + "priv_reqs": [ "spi_flash", "esp_libc", "esptool_py", "nvs_sec_provider" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/nvs_flash/libnvs_flash.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/nvs_flash/src/nvs_api.cpp", "C:/esp/v6.0/esp-idf/components/nvs_flash/src/nvs_cxx_api.cpp", "C:/esp/v6.0/esp-idf/components/nvs_flash/src/nvs_item_hash_list.cpp", "C:/esp/v6.0/esp-idf/components/nvs_flash/src/nvs_page.cpp", "C:/esp/v6.0/esp-idf/components/nvs_flash/src/nvs_pagemanager.cpp", "C:/esp/v6.0/esp-idf/components/nvs_flash/src/nvs_storage.cpp", "C:/esp/v6.0/esp-idf/components/nvs_flash/src/nvs_handle_simple.cpp", "C:/esp/v6.0/esp-idf/components/nvs_flash/src/nvs_handle_locked.cpp", "C:/esp/v6.0/esp-idf/components/nvs_flash/src/nvs_partition.cpp", "C:/esp/v6.0/esp-idf/components/nvs_flash/src/nvs_partition_lookup.cpp", "C:/esp/v6.0/esp-idf/components/nvs_flash/src/nvs_partition_manager.cpp", "C:/esp/v6.0/esp-idf/components/nvs_flash/src/nvs_types.cpp", "C:/esp/v6.0/esp-idf/components/nvs_flash/src/nvs_platform.cpp", "C:/esp/v6.0/esp-idf/components/nvs_flash/src/nvs_bootloader.c", "C:/esp/v6.0/esp-idf/components/nvs_flash/src/nvs_encrypted_partition.cpp", "C:/esp/v6.0/esp-idf/components/nvs_flash/src/nvs_bootloader_aes.c", "C:/esp/v6.0/esp-idf/components/nvs_flash/src/nvs_bootloader_xts_aes.c" ], + "include_dirs": [ "include" ] + }, + "nvs_sec_provider": { + "alias": "idf::nvs_sec_provider", + "target": "___idf_nvs_sec_provider", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/nvs_sec_provider", + "type": "LIBRARY", + "lib": "__idf_nvs_sec_provider", + "reqs": [ "esp_security" ], + "priv_reqs": [ "bootloader_support", "efuse", "esp_partition", "nvs_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/nvs_sec_provider/libnvs_sec_provider.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/nvs_sec_provider/nvs_sec_provider.c" ], + "include_dirs": [ "include" ] + }, + "openthread": { + "alias": "idf::openthread", + "target": "___idf_openthread", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/openthread", + "type": "CONFIG_ONLY", + "lib": "__idf_openthread", + "reqs": [ "esp_netif", "lwip", "esp_driver_uart", "esp_driver_gpio", "esp_driver_spi", "esp_driver_usb_serial_jtag" ], + "priv_reqs": [ "console", "esp_coex", "esp_event", "esp_partition", "esp_timer", "ieee802154", "mbedtls", "nvs_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [] + }, + "partition_table": { + "alias": "idf::partition_table", + "target": "___idf_partition_table", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/partition_table", + "type": "CONFIG_ONLY", + "lib": "__idf_partition_table", + "reqs": [], + "priv_reqs": [ "esptool_py" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [] + }, + "perfmon": { + "alias": "idf::perfmon", + "target": "___idf_perfmon", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/perfmon", + "type": "LIBRARY", + "lib": "__idf_perfmon", + "reqs": [ "xtensa" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/perfmon/libperfmon.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/perfmon/xtensa_perfmon_access.c", "C:/esp/v6.0/esp-idf/components/perfmon/xtensa_perfmon_apis.c", "C:/esp/v6.0/esp-idf/components/perfmon/xtensa_perfmon_masks.c" ], + "include_dirs": [ "include" ] + }, + "protobuf-c": { + "alias": "idf::protobuf-c", + "target": "___idf_protobuf-c", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/protobuf-c", + "type": "LIBRARY", + "lib": "__idf_protobuf-c", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/protobuf-c/libprotobuf-c.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/protobuf-c/protobuf-c/protobuf-c/protobuf-c.c" ], + "include_dirs": [ "protobuf-c" ] + }, + "protocomm": { + "alias": "idf::protocomm", + "target": "___idf_protocomm", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/protocomm", + "type": "LIBRARY", + "lib": "__idf_protocomm", + "reqs": [ "bt" ], + "priv_reqs": [ "protobuf-c", "mbedtls", "console", "esp_http_server", "esp_driver_uart" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/protocomm/libprotocomm.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/protocomm/src/common/protocomm.c", "C:/esp/v6.0/esp-idf/components/protocomm/proto-c/constants.pb-c.c", "C:/esp/v6.0/esp-idf/components/protocomm/proto-c/sec0.pb-c.c", "C:/esp/v6.0/esp-idf/components/protocomm/proto-c/sec1.pb-c.c", "C:/esp/v6.0/esp-idf/components/protocomm/proto-c/sec2.pb-c.c", "C:/esp/v6.0/esp-idf/components/protocomm/proto-c/session.pb-c.c", "C:/esp/v6.0/esp-idf/components/protocomm/src/transports/protocomm_console.c", "C:/esp/v6.0/esp-idf/components/protocomm/src/transports/protocomm_httpd.c", "C:/esp/v6.0/esp-idf/components/protocomm/src/security/security2.c", "C:/esp/v6.0/esp-idf/components/protocomm/src/crypto/srp6a/esp_srp.c", "C:/esp/v6.0/esp-idf/components/protocomm/src/crypto/srp6a/esp_srp_mpi.c" ], + "include_dirs": [ "include/common", "include/security", "include/transports", "include/crypto/srp6a", "proto-c" ] + }, + "pthread": { + "alias": "idf::pthread", + "target": "___idf_pthread", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/pthread", + "type": "LIBRARY", + "lib": "__idf_pthread", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/pthread/libpthread.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/pthread/pthread.c", "C:/esp/v6.0/esp-idf/components/pthread/pthread_cond_var.c", "C:/esp/v6.0/esp-idf/components/pthread/pthread_local_storage.c", "C:/esp/v6.0/esp-idf/components/pthread/pthread_rwlock.c", "C:/esp/v6.0/esp-idf/components/pthread/pthread_semaphore.c" ], + "include_dirs": [ "include" ] + }, + "rt": { + "alias": "idf::rt", + "target": "___idf_rt", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/rt", + "type": "LIBRARY", + "lib": "__idf_rt", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/rt/librt.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/rt/FreeRTOS_POSIX_mqueue.c", "C:/esp/v6.0/esp-idf/components/rt/FreeRTOS_POSIX_utils.c" ], + "include_dirs": [ "include" ] + }, + "sdmmc": { + "alias": "idf::sdmmc", + "target": "___idf_sdmmc", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/sdmmc", + "type": "LIBRARY", + "lib": "__idf_sdmmc", + "reqs": [ "esp_blockdev" ], + "priv_reqs": [ "soc", "esp_timer", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/sdmmc/libsdmmc.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/sdmmc/sdmmc_cmd.c", "C:/esp/v6.0/esp-idf/components/sdmmc/sdmmc_common.c", "C:/esp/v6.0/esp-idf/components/sdmmc/sdmmc_init.c", "C:/esp/v6.0/esp-idf/components/sdmmc/sdmmc_mmc.c", "C:/esp/v6.0/esp-idf/components/sdmmc/sdmmc_sd.c", "C:/esp/v6.0/esp-idf/components/sdmmc/sdmmc_blockdev.c", "C:/esp/v6.0/esp-idf/components/sdmmc/sd_pwr_ctrl/sd_pwr_ctrl.c", "C:/esp/v6.0/esp-idf/components/sdmmc/sdmmc_io.c" ], + "include_dirs": [ "include" ] + }, + "soc": { + "alias": "idf::soc", + "target": "___idf_soc", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/soc", + "type": "LIBRARY", + "lib": "__idf_soc", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/soc/libsoc.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/soc/lldesc.c", "C:/esp/v6.0/esp-idf/components/soc/dport_access_common.c", "C:/esp/v6.0/esp-idf/components/soc/esp32/interrupts.c", "C:/esp/v6.0/esp-idf/components/soc/esp32/gpio_periph.c", "C:/esp/v6.0/esp-idf/components/soc/esp32/dport_access.c", "C:/esp/v6.0/esp-idf/components/soc/esp32/emac_periph.c", "C:/esp/v6.0/esp-idf/components/soc/esp32/mpi_periph.c", "C:/esp/v6.0/esp-idf/components/soc/esp32/sdmmc_periph.c", "C:/esp/v6.0/esp-idf/components/soc/esp32/sdio_slave_periph.c", "C:/esp/v6.0/esp-idf/components/soc/esp32/power_supply_periph.c" ], + "include_dirs": [ "include", "esp32", "esp32/include", "esp32/register" ] + }, + "spi_flash": { + "alias": "idf::spi_flash", + "target": "___idf_spi_flash", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/spi_flash", + "type": "LIBRARY", + "lib": "__idf_spi_flash", + "reqs": [ "hal", "esp_hal_mspi", "esp_blockdev" ], + "priv_reqs": [ "bootloader_support", "soc", "esp_hal_gpio", "esp_driver_gpio", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/spi_flash/libspi_flash.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/spi_flash/flash_brownout_hook.c", "C:/esp/v6.0/esp-idf/components/spi_flash/spi_flash_chip_drivers.c", "C:/esp/v6.0/esp-idf/components/spi_flash/spi_flash_chip_generic.c", "C:/esp/v6.0/esp-idf/components/spi_flash/spi_flash_chip_issi.c", "C:/esp/v6.0/esp-idf/components/spi_flash/spi_flash_chip_mxic.c", "C:/esp/v6.0/esp-idf/components/spi_flash/spi_flash_chip_gd.c", "C:/esp/v6.0/esp-idf/components/spi_flash/spi_flash_chip_winbond.c", "C:/esp/v6.0/esp-idf/components/spi_flash/spi_flash_chip_boya.c", "C:/esp/v6.0/esp-idf/components/spi_flash/spi_flash_chip_mxic_opi.c", "C:/esp/v6.0/esp-idf/components/spi_flash/spi_flash_chip_th.c", "C:/esp/v6.0/esp-idf/components/spi_flash/memspi_host_driver.c", "C:/esp/v6.0/esp-idf/components/spi_flash/spi_flash_blockdev.c", "C:/esp/v6.0/esp-idf/components/spi_flash/cache_utils.c", "C:/esp/v6.0/esp-idf/components/spi_flash/flash_mmap.c", "C:/esp/v6.0/esp-idf/components/spi_flash/flash_ops.c", "C:/esp/v6.0/esp-idf/components/spi_flash/spi_flash_wrap.c", "C:/esp/v6.0/esp-idf/components/spi_flash/esp_flash_api.c", "C:/esp/v6.0/esp-idf/components/spi_flash/esp_flash_spi_init.c", "C:/esp/v6.0/esp-idf/components/spi_flash/spi_flash_os_func_app.c", "C:/esp/v6.0/esp-idf/components/spi_flash/spi_flash_os_func_noos.c" ], + "include_dirs": [ "include" ] + }, + "spiffs": { + "alias": "idf::spiffs", + "target": "___idf_spiffs", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/spiffs", + "type": "LIBRARY", + "lib": "__idf_spiffs", + "reqs": [ "esp_partition" ], + "priv_reqs": [ "bootloader_support", "vfs", "esptool_py" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/spiffs/libspiffs.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/spiffs/spiffs_api.c", "C:/esp/v6.0/esp-idf/components/spiffs/spiffs/src/spiffs_cache.c", "C:/esp/v6.0/esp-idf/components/spiffs/spiffs/src/spiffs_check.c", "C:/esp/v6.0/esp-idf/components/spiffs/spiffs/src/spiffs_gc.c", "C:/esp/v6.0/esp-idf/components/spiffs/spiffs/src/spiffs_hydrogen.c", "C:/esp/v6.0/esp-idf/components/spiffs/spiffs/src/spiffs_nucleus.c", "C:/esp/v6.0/esp-idf/components/spiffs/esp_spiffs.c" ], + "include_dirs": [ "include" ] + }, + "tcp_transport": { + "alias": "idf::tcp_transport", + "target": "___idf_tcp_transport", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/tcp_transport", + "type": "LIBRARY", + "lib": "__idf_tcp_transport", + "reqs": [ "esp-tls", "lwip", "esp_timer" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/tcp_transport/libtcp_transport.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/tcp_transport/transport.c", "C:/esp/v6.0/esp-idf/components/tcp_transport/transport_ssl.c", "C:/esp/v6.0/esp-idf/components/tcp_transport/transport_internal.c", "C:/esp/v6.0/esp-idf/components/tcp_transport/transport_socks_proxy.c", "C:/esp/v6.0/esp-idf/components/tcp_transport/transport_ws.c" ], + "include_dirs": [ "include" ] + }, + "ulp": { + "alias": "idf::ulp", + "target": "___idf_ulp", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/ulp", + "type": "CONFIG_ONLY", + "lib": "__idf_ulp", + "reqs": [ "esp_adc", "esp_driver_gpio", "esp_driver_uart", "esp_driver_i2s", "esp_hal_i2c", "esp_hal_touch_sens", "esp_hal_gpspi", "esp_hal_pmu", "esp_hal_rtc_timer", "esp_hal_clock" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "", + "sources": [], + "include_dirs": [] + }, + "unity": { + "alias": "idf::unity", + "target": "___idf_unity", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/unity", + "type": "LIBRARY", + "lib": "__idf_unity", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/unity/libunity.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/unity/unity/src/unity.c", "C:/esp/v6.0/esp-idf/components/unity/unity_compat.c", "C:/esp/v6.0/esp-idf/components/unity/unity_runner.c", "C:/esp/v6.0/esp-idf/components/unity/unity_utils_freertos.c", "C:/esp/v6.0/esp-idf/components/unity/unity_utils_cache.c", "C:/esp/v6.0/esp-idf/components/unity/unity_utils_memory.c", "C:/esp/v6.0/esp-idf/components/unity/unity_port_esp32.c", "C:/esp/v6.0/esp-idf/components/unity/port/esp/unity_utils_memory_esp.c" ], + "include_dirs": [ "include", "unity/src" ] + }, + "vfs": { + "alias": "idf::vfs", + "target": "___idf_vfs", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/vfs", + "type": "LIBRARY", + "lib": "__idf_vfs", + "reqs": [], + "priv_reqs": [ "esp_driver_uart", "esp_driver_usb_serial_jtag", "esp_usb_cdc_rom_console" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/vfs/libvfs.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/vfs/vfs.c", "C:/esp/v6.0/esp-idf/components/vfs/vfs_calls.c", "C:/esp/v6.0/esp-idf/components/vfs/vfs_eventfd.c", "C:/esp/v6.0/esp-idf/components/vfs/vfs_semihost.c", "C:/esp/v6.0/esp-idf/components/vfs/nullfs.c" ], + "include_dirs": [ "include" ] + }, + "wear_levelling": { + "alias": "idf::wear_levelling", + "target": "___idf_wear_levelling", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/wear_levelling", + "type": "LIBRARY", + "lib": "__idf_wear_levelling", + "reqs": [ "esp_partition" ], + "priv_reqs": [ "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/wear_levelling/libwear_levelling.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/wear_levelling/Partition.cpp", "C:/esp/v6.0/esp-idf/components/wear_levelling/SPI_Flash.cpp", "C:/esp/v6.0/esp-idf/components/wear_levelling/WL_Ext_Perf.cpp", "C:/esp/v6.0/esp-idf/components/wear_levelling/WL_Ext_Safe.cpp", "C:/esp/v6.0/esp-idf/components/wear_levelling/WL_Flash.cpp", "C:/esp/v6.0/esp-idf/components/wear_levelling/crc32.cpp", "C:/esp/v6.0/esp-idf/components/wear_levelling/wear_levelling.cpp" ], + "include_dirs": [ "include" ] + }, + "wpa_supplicant": { + "alias": "idf::wpa_supplicant", + "target": "___idf_wpa_supplicant", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/wpa_supplicant", + "type": "LIBRARY", + "lib": "__idf_wpa_supplicant", + "reqs": [], + "priv_reqs": [ "mbedtls", "esp_timer", "esp_wifi" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/wpa_supplicant/libwpa_supplicant.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/wpa_supplicant/port/os_xtensa.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/port/eloop.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/ap/ap_config.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/ap/ieee802_1x.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/ap/wpa_auth.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/ap/wpa_auth_ie.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/ap/pmksa_cache_auth.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/ap/sta_info.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/ap/ieee802_11.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/ap/comeback_token.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/common/sae.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/common/dragonfly.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/common/wpa_common.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils/bitfield.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto/aes-siv.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto/sha256-kdf.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto/ccmp.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto/aes-gcm.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto/crypto_ops.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto/dh_group5.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto/dh_groups.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto/ms_funcs.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto/sha1-tlsprf.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto/sha256-tlsprf.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto/sha384-tlsprf.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto/sha256-prf.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto/sha1-prf.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto/sha384-prf.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto/md4-internal.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto/sha1-tprf.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/eap_common/eap_wsc_common.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/common/ieee802_11_common.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/eap_peer/chap.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/eap_peer/eap.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/eap_peer/eap_common.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/eap_peer/eap_mschapv2.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/eap_peer/eap_peap.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/eap_peer/eap_peap_common.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/eap_peer/eap_tls.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/eap_peer/eap_tls_common.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/eap_peer/eap_ttls.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/eap_peer/mschapv2.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/eap_peer/eap_fast.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/eap_peer/eap_fast_common.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/eap_peer/eap_fast_pac.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/rsn_supp/pmksa_cache.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/rsn_supp/wpa.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/rsn_supp/wpa_ie.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils/base64.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils/common.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils/ext_password.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils/uuid.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils/wpabuf.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils/wpa_debug.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/utils/json.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/wps/wps.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/wps/wps_attr_build.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/wps/wps_attr_parse.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/wps/wps_attr_process.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/wps/wps_common.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/wps/wps_dev_attr.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/wps/wps_enrollee.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/common/sae_pk.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_eap_client.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wpa2_api_port.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wpa_main.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wpas_glue.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_common.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wps.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_wpa3.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_owe.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src/esp_hostap.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/tls_mbedtls.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/crypto_mbedtls-ec.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto/rc4.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto/des-internal.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/esp_supplicant/src/crypto/fastpbkdf2.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto/aes-wrap.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto/aes-unwrap.c", "C:/esp/v6.0/esp-idf/components/wpa_supplicant/src/crypto/aes-ccm.c" ], + "include_dirs": [ "include", "port/include", "esp_supplicant/include" ] + }, + "xtensa": { + "alias": "idf::xtensa", + "target": "___idf_xtensa", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/xtensa", + "type": "LIBRARY", + "lib": "__idf_xtensa", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "file": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/xtensa/libxtensa.a", + "sources": [ "C:/esp/v6.0/esp-idf/components/xtensa/eri.c", "C:/esp/v6.0/esp-idf/components/xtensa/xt_trax.c", "C:/esp/v6.0/esp-idf/components/xtensa/xtensa_context.S", "C:/esp/v6.0/esp-idf/components/xtensa/xtensa_intr_asm.S", "C:/esp/v6.0/esp-idf/components/xtensa/xtensa_intr.c", "C:/esp/v6.0/esp-idf/components/xtensa/xtensa_vectors.S" ], + "include_dirs": [ "esp32/include", "include", "deprecated_include" ] + } + }, + "all_component_info" : { + "app_trace": { + "alias": "idf::app_trace", + "target": "___idf_app_trace", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/app_trace", + "source": "idf_components", + "lib": "__idf_app_trace", + "reqs": [ "esp_timer", "esp_driver_uart" ], + "priv_reqs": [ "esp_driver_gptimer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "app_update": { + "alias": "idf::app_update", + "target": "___idf_app_update", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/app_update", + "source": "idf_components", + "lib": "__idf_app_update", + "reqs": [ "partition_table", "bootloader_support", "esp_app_format", "esp_bootloader_format", "esp_partition" ], + "priv_reqs": [ "esptool_py", "efuse", "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "bootloader": { + "alias": "idf::bootloader", + "target": "___idf_bootloader", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/bootloader", + "source": "idf_components", + "lib": "__idf_bootloader", + "reqs": [], + "priv_reqs": [ "partition_table", "esptool_py" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "bootloader_support": { + "alias": "idf::bootloader_support", + "target": "___idf_bootloader_support", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/bootloader_support", + "source": "idf_components", + "lib": "__idf_bootloader_support", + "reqs": [ "soc" ], + "priv_reqs": [ "spi_flash", "mbedtls", "efuse", "heap", "esp_bootloader_format", "esp_app_format", "esptool_py", "esp_hal_wdt", "esp_hal_gpio", "esp_hal_uart", "esp_hal_ana_conv", "esp_hal_rtc_timer", "esp_hal_clock" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "bootloader_flash/include" ] + }, + "bt": { + "alias": "idf::bt", + "target": "___idf_bt", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/bt", + "source": "idf_components", + "lib": "__idf_bt", + "reqs": [ "esp_timer", "esp_wifi" ], + "priv_reqs": [ "nvs_flash", "soc", "esp_pm", "esp_phy", "esp_coex", "mbedtls", "esp_driver_uart", "vfs", "esp_ringbuf", "esp_driver_spi", "esp_driver_gpio", "esp_gdbstub", "esp_security" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "cmock": { + "alias": "idf::cmock", + "target": "___idf_cmock", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/cmock", + "source": "idf_components", + "lib": "__idf_cmock", + "reqs": [ "unity" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "CMock/src" ] + }, + "console": { + "alias": "idf::console", + "target": "___idf_console", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/console", + "source": "idf_components", + "lib": "__idf_console", + "reqs": [ "vfs", "esp_stdio" ], + "priv_reqs": [ "esp_driver_uart", "esp_driver_usb_serial_jtag", "esp_usb_cdc_rom_console" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "C:/esp/v6.0/esp-idf/components/console" ] + }, + "cxx": { + "alias": "idf::cxx", + "target": "___idf_cxx", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/cxx", + "source": "idf_components", + "lib": "__idf_cxx", + "reqs": [], + "priv_reqs": [ "esp_system", "pthread" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "driver": { + "alias": "idf::driver", + "target": "___idf_driver", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/driver", + "source": "idf_components", + "lib": "__idf_driver", + "reqs": [ "esp_hal_i2c", "esp_hal_twai", "esp_hal_touch_sens" ], + "priv_reqs": [ "esp_timer", "esp_mm", "esp_driver_gpio", "esp_ringbuf", "esp_pm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "i2c/include", "touch_sensor/include", "twai/include", "touch_sensor/esp32/include" ] + }, + "efuse": { + "alias": "idf::efuse", + "target": "___idf_efuse", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/efuse", + "source": "idf_components", + "lib": "__idf_efuse", + "reqs": [], + "priv_reqs": [ "bootloader_support", "soc", "spi_flash", "esp_system", "esp_partition", "esp_app_format", "esp_hal_security" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp-tls": { + "alias": "idf::esp-tls", + "target": "___idf_esp-tls", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp-tls", + "source": "idf_components", + "lib": "__idf_esp-tls", + "reqs": [ "mbedtls" ], + "priv_reqs": [ "http_parser", "esp_timer", "lwip" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "C:/esp/v6.0/esp-idf/components/esp-tls", "esp-tls-crypto" ] + }, + "esp_adc": { + "alias": "idf::esp_adc", + "target": "___idf_esp_adc", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_adc", + "source": "idf_components", + "lib": "__idf_esp_adc", + "reqs": [ "esp_hal_ana_conv" ], + "priv_reqs": [ "esp_driver_gpio", "esp_driver_dma", "efuse", "esp_pm", "esp_ringbuf", "esp_mm", "esp_driver_i2s" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "interface", "esp32/include" ] + }, + "esp_app_format": { + "alias": "idf::esp_app_format", + "target": "___idf_esp_app_format", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_app_format", + "source": "idf_components", + "lib": "__idf_esp_app_format", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_blockdev": { + "alias": "idf::esp_blockdev", + "target": "___idf_esp_blockdev", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_blockdev", + "source": "idf_components", + "lib": "__idf_esp_blockdev", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_bootloader_format": { + "alias": "idf::esp_bootloader_format", + "target": "___idf_esp_bootloader_format", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_bootloader_format", + "source": "idf_components", + "lib": "__idf_esp_bootloader_format", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_coex": { + "alias": "idf::esp_coex", + "target": "___idf_esp_coex", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_coex", + "source": "idf_components", + "lib": "__idf_esp_coex", + "reqs": [], + "priv_reqs": [ "esp_timer", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_common": { + "alias": "idf::esp_common", + "target": "___idf_esp_common", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_common", + "source": "idf_components", + "lib": "__idf_esp_common", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_ana_cmpr": { + "alias": "idf::esp_driver_ana_cmpr", + "target": "___idf_esp_driver_ana_cmpr", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_ana_cmpr", + "source": "idf_components", + "lib": "__idf_esp_driver_ana_cmpr", + "reqs": [ "esp_hal_ana_cmpr" ], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_bitscrambler": { + "alias": "idf::esp_driver_bitscrambler", + "target": "___idf_esp_driver_bitscrambler", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_bitscrambler", + "source": "idf_components", + "lib": "__idf_esp_driver_bitscrambler", + "reqs": [ "esp_hal_dma" ], + "priv_reqs": [ "esp_mm", "esp_driver_dma" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_cam": { + "alias": "idf::esp_driver_cam", + "target": "___idf_esp_driver_cam", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_cam", + "source": "idf_components", + "lib": "__idf_esp_driver_cam", + "reqs": [ "esp_driver_isp", "esp_hal_cam", "esp_mm" ], + "priv_reqs": [ "esp_driver_gpio", "esp_driver_dma" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "interface" ] + }, + "esp_driver_dac": { + "alias": "idf::esp_driver_dac", + "target": "___idf_esp_driver_dac", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_dac", + "source": "idf_components", + "lib": "__idf_esp_driver_dac", + "reqs": [ "esp_hal_ana_conv" ], + "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_hal_clock", "esp_driver_i2s" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "./include" ] + }, + "esp_driver_dma": { + "alias": "idf::esp_driver_dma", + "target": "___idf_esp_driver_dma", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_dma", + "source": "idf_components", + "lib": "__idf_esp_driver_dma", + "reqs": [ "esp_hal_dma" ], + "priv_reqs": [ "esp_mm", "bootloader_support" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_gpio": { + "alias": "idf::esp_driver_gpio", + "target": "___idf_esp_driver_gpio", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_gpio", + "source": "idf_components", + "lib": "__idf_esp_driver_gpio", + "reqs": [ "esp_hal_gpio" ], + "priv_reqs": [ "esp_pm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_gptimer": { + "alias": "idf::esp_driver_gptimer", + "target": "___idf_esp_driver_gptimer", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_gptimer", + "source": "idf_components", + "lib": "__idf_esp_driver_gptimer", + "reqs": [ "esp_pm", "esp_hal_timg" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_i2c": { + "alias": "idf::esp_driver_i2c", + "target": "___idf_esp_driver_i2c", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_i2c", + "source": "idf_components", + "lib": "__idf_esp_driver_i2c", + "reqs": [ "esp_hal_i2c" ], + "priv_reqs": [ "esp_driver_gpio", "esp_pm", "esp_ringbuf" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_i2s": { + "alias": "idf::esp_driver_i2s", + "target": "___idf_esp_driver_i2s", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_i2s", + "source": "idf_components", + "lib": "__idf_esp_driver_i2s", + "reqs": [ "esp_hal_i2s" ], + "priv_reqs": [ "esp_driver_gpio", "esp_driver_dma", "esp_pm", "esp_mm", "esp_hal_clock", "esp_hal_ana_conv" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_i3c": { + "alias": "idf::esp_driver_i3c", + "target": "___idf_esp_driver_i3c", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_i3c", + "source": "idf_components", + "lib": "__idf_esp_driver_i3c", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_pm", "esp_mm", "esp_driver_dma" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_isp": { + "alias": "idf::esp_driver_isp", + "target": "___idf_esp_driver_isp", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_isp", + "source": "idf_components", + "lib": "__idf_esp_driver_isp", + "reqs": [ "esp_hal_cam", "esp_mm" ], + "priv_reqs": [ "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_jpeg": { + "alias": "idf::esp_driver_jpeg", + "target": "___idf_esp_driver_jpeg", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_jpeg", + "source": "idf_components", + "lib": "__idf_esp_driver_jpeg", + "reqs": [ "esp_hal_jpeg" ], + "priv_reqs": [ "esp_mm", "esp_pm", "esp_psram", "esp_driver_dma" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_ledc": { + "alias": "idf::esp_driver_ledc", + "target": "___idf_esp_driver_ledc", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_ledc", + "source": "idf_components", + "lib": "__idf_esp_driver_ledc", + "reqs": [ "esp_hal_ledc" ], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_mcpwm": { + "alias": "idf::esp_driver_mcpwm", + "target": "___idf_esp_driver_mcpwm", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_mcpwm", + "source": "idf_components", + "lib": "__idf_esp_driver_mcpwm", + "reqs": [ "esp_hal_mcpwm" ], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_parlio": { + "alias": "idf::esp_driver_parlio", + "target": "___idf_esp_driver_parlio", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_parlio", + "source": "idf_components", + "lib": "__idf_esp_driver_parlio", + "reqs": [ "esp_hal_parlio" ], + "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_mm", "esp_driver_bitscrambler", "esp_driver_dma" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_pcnt": { + "alias": "idf::esp_driver_pcnt", + "target": "___idf_esp_driver_pcnt", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_pcnt", + "source": "idf_components", + "lib": "__idf_esp_driver_pcnt", + "reqs": [ "esp_hal_pcnt" ], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_ppa": { + "alias": "idf::esp_driver_ppa", + "target": "___idf_esp_driver_ppa", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_ppa", + "source": "idf_components", + "lib": "__idf_esp_driver_ppa", + "reqs": [ "esp_hal_ppa" ], + "priv_reqs": [ "esp_mm", "esp_pm", "esp_driver_dma" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_rmt": { + "alias": "idf::esp_driver_rmt", + "target": "___idf_esp_driver_rmt", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_rmt", + "source": "idf_components", + "lib": "__idf_esp_driver_rmt", + "reqs": [ "esp_hal_rmt" ], + "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_driver_bitscrambler", "esp_mm", "esp_driver_dma" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_sd_intf": { + "alias": "idf::esp_driver_sd_intf", + "target": "___idf_esp_driver_sd_intf", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_sd_intf", + "source": "idf_components", + "lib": "__idf_esp_driver_sd_intf", + "reqs": [], + "priv_reqs": [ "sdmmc" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_sdio": { + "alias": "idf::esp_driver_sdio", + "target": "___idf_esp_driver_sdio", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_sdio", + "source": "idf_components", + "lib": "__idf_esp_driver_sdio", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_ringbuf" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_sdm": { + "alias": "idf::esp_driver_sdm", + "target": "___idf_esp_driver_sdm", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_sdm", + "source": "idf_components", + "lib": "__idf_esp_driver_sdm", + "reqs": [ "esp_hal_gpio" ], + "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_sdmmc": { + "alias": "idf::esp_driver_sdmmc", + "target": "___idf_esp_driver_sdmmc", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_sdmmc", + "source": "idf_components", + "lib": "__idf_esp_driver_sdmmc", + "reqs": [ "esp_driver_sd_intf", "sdmmc" ], + "priv_reqs": [ "esp_timer", "esp_pm", "esp_mm", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "legacy/include" ] + }, + "esp_driver_sdspi": { + "alias": "idf::esp_driver_sdspi", + "target": "___idf_esp_driver_sdspi", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_sdspi", + "source": "idf_components", + "lib": "__idf_esp_driver_sdspi", + "reqs": [ "sdmmc", "esp_driver_spi", "esp_driver_gpio" ], + "priv_reqs": [ "esp_timer", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_spi": { + "alias": "idf::esp_driver_spi", + "target": "___idf_esp_driver_spi", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_spi", + "source": "idf_components", + "lib": "__idf_esp_driver_spi", + "reqs": [ "esp_pm", "esp_hal_gpspi", "esp_driver_dma" ], + "priv_reqs": [ "esp_timer", "esp_mm", "esp_driver_gpio", "spi_flash", "esp_psram" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_touch_sens": { + "alias": "idf::esp_driver_touch_sens", + "target": "___idf_esp_driver_touch_sens", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_touch_sens", + "source": "idf_components", + "lib": "__idf_esp_driver_touch_sens", + "reqs": [ "esp_hal_touch_sens" ], + "priv_reqs": [ "esp_driver_gpio", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "hw_ver1/include" ] + }, + "esp_driver_tsens": { + "alias": "idf::esp_driver_tsens", + "target": "___idf_esp_driver_tsens", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_tsens", + "source": "idf_components", + "lib": "__idf_esp_driver_tsens", + "reqs": [ "esp_hal_ana_conv" ], + "priv_reqs": [ "efuse" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_twai": { + "alias": "idf::esp_driver_twai", + "target": "___idf_esp_driver_twai", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_twai", + "source": "idf_components", + "lib": "__idf_esp_driver_twai", + "reqs": [ "esp_hal_twai" ], + "priv_reqs": [ "esp_driver_gpio", "esp_pm", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_uart": { + "alias": "idf::esp_driver_uart", + "target": "___idf_esp_driver_uart", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_uart", + "source": "idf_components", + "lib": "__idf_esp_driver_uart", + "reqs": [ "esp_hal_uart" ], + "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_driver_dma", "esp_ringbuf", "esp_mm", "esp_psram" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_driver_usb_serial_jtag": { + "alias": "idf::esp_driver_usb_serial_jtag", + "target": "___idf_esp_driver_usb_serial_jtag", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_driver_usb_serial_jtag", + "source": "idf_components", + "lib": "__idf_esp_driver_usb_serial_jtag", + "reqs": [], + "priv_reqs": [ "esp_driver_gpio", "esp_ringbuf", "esp_pm", "esp_timer", "esp_hal_usb" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_eth": { + "alias": "idf::esp_eth", + "target": "___idf_esp_eth", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_eth", + "source": "idf_components", + "lib": "__idf_esp_eth", + "reqs": [ "esp_event" ], + "priv_reqs": [ "log", "esp_timer", "esp_driver_spi", "esp_driver_gpio", "esp_hal_clock" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_event": { + "alias": "idf::esp_event", + "target": "___idf_esp_event", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_event", + "source": "idf_components", + "lib": "__idf_esp_event", + "reqs": [ "log", "esp_common", "freertos" ], + "priv_reqs": [ "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_gdbstub": { + "alias": "idf::esp_gdbstub", + "target": "___idf_esp_gdbstub", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_gdbstub", + "source": "idf_components", + "lib": "__idf_esp_gdbstub", + "reqs": [ "freertos" ], + "priv_reqs": [ "esp_hal_wdt", "esp_hal_uart" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_hal_ana_cmpr": { + "alias": "idf::esp_hal_ana_cmpr", + "target": "___idf_esp_hal_ana_cmpr", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_ana_cmpr", + "source": "idf_components", + "lib": "__idf_esp_hal_ana_cmpr", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_hal_ana_conv": { + "alias": "idf::esp_hal_ana_conv", + "target": "___idf_esp_hal_ana_conv", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_ana_conv", + "source": "idf_components", + "lib": "__idf_esp_hal_ana_conv", + "reqs": [ "soc", "hal", "esp_hal_dma", "esp_hal_i2s" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_cam": { + "alias": "idf::esp_hal_cam", + "target": "___idf_esp_hal_cam", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_cam", + "source": "idf_components", + "lib": "__idf_esp_hal_cam", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_hal_clock": { + "alias": "idf::esp_hal_clock", + "target": "___idf_esp_hal_clock", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_clock", + "source": "idf_components", + "lib": "__idf_esp_hal_clock", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_dma": { + "alias": "idf::esp_hal_dma", + "target": "___idf_esp_hal_dma", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_dma", + "source": "idf_components", + "lib": "__idf_esp_hal_dma", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_hal_gpio": { + "alias": "idf::esp_hal_gpio", + "target": "___idf_esp_hal_gpio", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_gpio", + "source": "idf_components", + "lib": "__idf_esp_hal_gpio", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_gpspi": { + "alias": "idf::esp_hal_gpspi", + "target": "___idf_esp_hal_gpspi", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_gpspi", + "source": "idf_components", + "lib": "__idf_esp_hal_gpspi", + "reqs": [ "soc", "hal", "esp_hal_dma" ], + "priv_reqs": [ "esp_hal_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_i2c": { + "alias": "idf::esp_hal_i2c", + "target": "___idf_esp_hal_i2c", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_i2c", + "source": "idf_components", + "lib": "__idf_esp_hal_i2c", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "esp32/include", "include" ] + }, + "esp_hal_i2s": { + "alias": "idf::esp_hal_i2s", + "target": "___idf_esp_hal_i2s", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_i2s", + "source": "idf_components", + "lib": "__idf_esp_hal_i2s", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_ieee802154": { + "alias": "idf::esp_hal_ieee802154", + "target": "___idf_esp_hal_ieee802154", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_ieee802154", + "source": "idf_components", + "lib": "__idf_esp_hal_ieee802154", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_hal_jpeg": { + "alias": "idf::esp_hal_jpeg", + "target": "___idf_esp_hal_jpeg", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_jpeg", + "source": "idf_components", + "lib": "__idf_esp_hal_jpeg", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_hal_lcd": { + "alias": "idf::esp_hal_lcd", + "target": "___idf_esp_hal_lcd", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_lcd", + "source": "idf_components", + "lib": "__idf_esp_hal_lcd", + "reqs": [ "soc", "hal" ], + "priv_reqs": [ "esp_hal_i2s" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_hal_ledc": { + "alias": "idf::esp_hal_ledc", + "target": "___idf_esp_hal_ledc", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_ledc", + "source": "idf_components", + "lib": "__idf_esp_hal_ledc", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_mcpwm": { + "alias": "idf::esp_hal_mcpwm", + "target": "___idf_esp_hal_mcpwm", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_mcpwm", + "source": "idf_components", + "lib": "__idf_esp_hal_mcpwm", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_mspi": { + "alias": "idf::esp_hal_mspi", + "target": "___idf_esp_hal_mspi", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_mspi", + "source": "idf_components", + "lib": "__idf_esp_hal_mspi", + "reqs": [ "soc", "hal", "esp_hal_gpspi", "esp_hal_clock" ], + "priv_reqs": [ "esp_hal_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_parlio": { + "alias": "idf::esp_hal_parlio", + "target": "___idf_esp_hal_parlio", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_parlio", + "source": "idf_components", + "lib": "__idf_esp_hal_parlio", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_hal_pcnt": { + "alias": "idf::esp_hal_pcnt", + "target": "___idf_esp_hal_pcnt", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_pcnt", + "source": "idf_components", + "lib": "__idf_esp_hal_pcnt", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_pmu": { + "alias": "idf::esp_hal_pmu", + "target": "___idf_esp_hal_pmu", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_pmu", + "source": "idf_components", + "lib": "__idf_esp_hal_pmu", + "reqs": [ "soc", "hal", "esp_rom" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_ppa": { + "alias": "idf::esp_hal_ppa", + "target": "___idf_esp_hal_ppa", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_ppa", + "source": "idf_components", + "lib": "__idf_esp_hal_ppa", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_hal_rmt": { + "alias": "idf::esp_hal_rmt", + "target": "___idf_esp_hal_rmt", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_rmt", + "source": "idf_components", + "lib": "__idf_esp_hal_rmt", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_rtc_timer": { + "alias": "idf::esp_hal_rtc_timer", + "target": "___idf_esp_hal_rtc_timer", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_rtc_timer", + "source": "idf_components", + "lib": "__idf_esp_hal_rtc_timer", + "reqs": [ "soc", "hal", "esp_rom" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_security": { + "alias": "idf::esp_hal_security", + "target": "___idf_esp_hal_security", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_security", + "source": "idf_components", + "lib": "__idf_esp_hal_security", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "esp32/include", "include" ] + }, + "esp_hal_timg": { + "alias": "idf::esp_hal_timg", + "target": "___idf_esp_hal_timg", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_timg", + "source": "idf_components", + "lib": "__idf_esp_hal_timg", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_touch_sens": { + "alias": "idf::esp_hal_touch_sens", + "target": "___idf_esp_hal_touch_sens", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_touch_sens", + "source": "idf_components", + "lib": "__idf_esp_hal_touch_sens", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "esp32/include", "include" ] + }, + "esp_hal_twai": { + "alias": "idf::esp_hal_twai", + "target": "___idf_esp_hal_twai", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_twai", + "source": "idf_components", + "lib": "__idf_esp_hal_twai", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_uart": { + "alias": "idf::esp_hal_uart", + "target": "___idf_esp_hal_uart", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_uart", + "source": "idf_components", + "lib": "__idf_esp_hal_uart", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hal_usb": { + "alias": "idf::esp_hal_usb", + "target": "___idf_esp_hal_usb", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_usb", + "source": "idf_components", + "lib": "__idf_esp_hal_usb", + "reqs": [ "soc", "hal" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_hal_wdt": { + "alias": "idf::esp_hal_wdt", + "target": "___idf_esp_hal_wdt", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hal_wdt", + "source": "idf_components", + "lib": "__idf_esp_hal_wdt", + "reqs": [ "soc", "hal", "esp_rom", "esp_hal_timg" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_hid": { + "alias": "idf::esp_hid", + "target": "___idf_esp_hid", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hid", + "source": "idf_components", + "lib": "__idf_esp_hid", + "reqs": [ "esp_event", "bt" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_http_client": { + "alias": "idf::esp_http_client", + "target": "___idf_esp_http_client", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_http_client", + "source": "idf_components", + "lib": "__idf_esp_http_client", + "reqs": [ "lwip", "esp_event" ], + "priv_reqs": [ "tcp_transport", "http_parser" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_http_server": { + "alias": "idf::esp_http_server", + "target": "___idf_esp_http_server", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_http_server", + "source": "idf_components", + "lib": "__idf_esp_http_server", + "reqs": [ "http_parser", "esp_event" ], + "priv_reqs": [ "mbedtls", "lwip", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_https_ota": { + "alias": "idf::esp_https_ota", + "target": "___idf_esp_https_ota", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_https_ota", + "source": "idf_components", + "lib": "__idf_esp_https_ota", + "reqs": [ "esp_http_client", "bootloader_support", "esp_bootloader_format", "esp_app_format", "esp_event", "esp_partition" ], + "priv_reqs": [ "log", "app_update" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_https_server": { + "alias": "idf::esp_https_server", + "target": "___idf_esp_https_server", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_https_server", + "source": "idf_components", + "lib": "__idf_esp_https_server", + "reqs": [ "esp_http_server", "esp-tls", "esp_event" ], + "priv_reqs": [ "lwip" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_hw_support": { + "alias": "idf::esp_hw_support", + "target": "___idf_esp_hw_support", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_hw_support", + "source": "idf_components", + "lib": "__idf_esp_hw_support", + "reqs": [ "esp_hal_gpio", "esp_hal_usb", "esp_hal_pmu" ], + "priv_reqs": [ "efuse", "spi_flash", "bootloader_support", "esp_hal_wdt", "esp_hal_security", "esp_hal_rtc_timer", "esp_hal_clock", "esp_driver_gpio", "esp_timer", "esp_hal_touch_sens", "esp_hal_i2s", "esp_pm", "esp_mm", "esp_hal_mspi", "esp_hal_uart" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "include/soc", "ldo/include", "debug_probe/include", "etm/include", "mspi_timing_tuning/include", "mspi_timing_tuning/tuning_scheme_impl/include", "power_supply/include", "modem/include" ] + }, + "esp_lcd": { + "alias": "idf::esp_lcd", + "target": "___idf_esp_lcd", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_lcd", + "source": "idf_components", + "lib": "__idf_esp_lcd", + "reqs": [ "esp_driver_gpio", "esp_driver_i2c", "esp_driver_spi", "esp_driver_parlio", "esp_hal_lcd" ], + "priv_reqs": [ "esp_mm", "esp_psram", "esp_pm", "esp_driver_i2s", "esp_driver_dma" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "interface" ] + }, + "esp_libc": { + "alias": "idf::esp_libc", + "target": "___idf_esp_libc", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_libc", + "source": "idf_components", + "lib": "__idf_esp_libc", + "reqs": [], + "priv_reqs": [ "soc", "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "platform_include" ] + }, + "esp_local_ctrl": { + "alias": "idf::esp_local_ctrl", + "target": "___idf_esp_local_ctrl", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_local_ctrl", + "source": "idf_components", + "lib": "__idf_esp_local_ctrl", + "reqs": [ "protocomm", "esp_https_server" ], + "priv_reqs": [ "protobuf-c", "esp_netif" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_mm": { + "alias": "idf::esp_mm", + "target": "___idf_esp_mm", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_mm", + "source": "idf_components", + "lib": "__idf_esp_mm", + "reqs": [], + "priv_reqs": [ "heap", "spi_flash", "esp_hal_dma" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_netif": { + "alias": "idf::esp_netif", + "target": "___idf_esp_netif", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_netif", + "source": "idf_components", + "lib": "__idf_esp_netif", + "reqs": [ "esp_event" ], + "priv_reqs": [ "esp_netif_stack" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_netif_stack": { + "alias": "idf::esp_netif_stack", + "target": "___idf_esp_netif_stack", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_netif_stack", + "source": "idf_components", + "lib": "__idf_esp_netif_stack", + "reqs": [ "lwip" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "esp_partition": { + "alias": "idf::esp_partition", + "target": "___idf_esp_partition", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_partition", + "source": "idf_components", + "lib": "__idf_esp_partition", + "reqs": [ "esp_blockdev" ], + "priv_reqs": [ "esp_system", "spi_flash", "partition_table", "bootloader_support", "app_update" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_phy": { + "alias": "idf::esp_phy", + "target": "___idf_esp_phy", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_phy", + "source": "idf_components", + "lib": "__idf_esp_phy", + "reqs": [], + "priv_reqs": [ "nvs_flash", "esp_driver_gpio", "esp_hal_ana_conv", "efuse", "esp_timer", "esp_wifi", "esptool_py" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32/include" ] + }, + "esp_pm": { + "alias": "idf::esp_pm", + "target": "___idf_esp_pm", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_pm", + "source": "idf_components", + "lib": "__idf_esp_pm", + "reqs": [], + "priv_reqs": [ "esp_system", "esp_driver_gpio", "esp_timer", "esp_hal_uart" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_psram": { + "alias": "idf::esp_psram", + "target": "___idf_esp_psram", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_psram", + "source": "idf_components", + "lib": "__idf_esp_psram", + "reqs": [], + "priv_reqs": [ "heap", "spi_flash", "esp_mm", "esp_hal_mspi", "esp_hal_gpio", "bootloader_support", "esp_driver_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_ringbuf": { + "alias": "idf::esp_ringbuf", + "target": "___idf_esp_ringbuf", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_ringbuf", + "source": "idf_components", + "lib": "__idf_esp_ringbuf", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_rom": { + "alias": "idf::esp_rom", + "target": "___idf_esp_rom", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_rom", + "source": "idf_components", + "lib": "__idf_esp_rom", + "reqs": [], + "priv_reqs": [ "soc", "hal", "esp_hal_uart" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32/include", "esp32/include/esp32", "esp32" ] + }, + "esp_security": { + "alias": "idf::esp_security", + "target": "___idf_esp_security", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_security", + "source": "idf_components", + "lib": "__idf_esp_security", + "reqs": [ "esp_hal_security" ], + "priv_reqs": [ "esp_hw_support", "hal", "efuse", "esp_system", "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_stdio": { + "alias": "idf::esp_stdio", + "target": "___idf_esp_stdio", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_stdio", + "source": "idf_components", + "lib": "__idf_esp_stdio", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_system": { + "alias": "idf::esp_system", + "target": "___idf_esp_system", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_system", + "source": "idf_components", + "lib": "__idf_esp_system", + "reqs": [], + "priv_reqs": [ "spi_flash", "esp_timer", "esp_mm", "esp_hal_mspi", "esp_hal_wdt", "esp_hal_uart", "esp_hal_dma", "esp_hal_clock", "bootloader_support", "esp_pm", "esp_usb_cdc_rom_console" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_tee": { + "alias": "idf::esp_tee", + "target": "___idf_esp_tee", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_tee", + "source": "idf_components", + "lib": "__idf_esp_tee", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_timer": { + "alias": "idf::esp_timer", + "target": "___idf_esp_timer", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_timer", + "source": "idf_components", + "lib": "__idf_esp_timer", + "reqs": [], + "priv_reqs": [ "esp_hal_timg" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_trace": { + "alias": "idf::esp_trace", + "target": "___idf_esp_trace", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_trace", + "source": "idf_components", + "lib": "__idf_esp_trace", + "reqs": [ "app_trace" ], + "priv_reqs": [ "esp_driver_gptimer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_usb_cdc_rom_console": { + "alias": "idf::esp_usb_cdc_rom_console", + "target": "___idf_esp_usb_cdc_rom_console", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_usb_cdc_rom_console", + "source": "idf_components", + "lib": "__idf_esp_usb_cdc_rom_console", + "reqs": [], + "priv_reqs": [ "esp_timer" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "esp_wifi": { + "alias": "idf::esp_wifi", + "target": "___idf_esp_wifi", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esp_wifi", + "source": "idf_components", + "lib": "__idf_esp_wifi", + "reqs": [ "esp_event", "esp_phy", "esp_netif" ], + "priv_reqs": [ "esp_pm", "esp_timer", "nvs_flash", "wpa_supplicant", "hal", "lwip", "esp_coex" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "include/local", "wifi_apps/include", "wifi_apps/nan_app/include" ] + }, + "espcoredump": { + "alias": "idf::espcoredump", + "target": "___idf_espcoredump", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/espcoredump", + "source": "idf_components", + "lib": "__idf_espcoredump", + "reqs": [], + "priv_reqs": [ "esp_partition", "spi_flash", "bootloader_support", "mbedtls", "esp_rom", "soc", "esp_system", "esp_driver_gpio", "esp_app_format", "esp_hal_security" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "esptool_py": { + "alias": "idf::esptool_py", + "target": "___idf_esptool_py", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/esptool_py", + "source": "idf_components", + "lib": "__idf_esptool_py", + "reqs": [ "bootloader" ], + "priv_reqs": [ "partition_table" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "fatfs": { + "alias": "idf::fatfs", + "target": "___idf_fatfs", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/fatfs", + "source": "idf_components", + "lib": "__idf_fatfs", + "reqs": [ "wear_levelling", "sdmmc", "esp_driver_sdmmc", "esp_driver_sdspi" ], + "priv_reqs": [ "vfs", "esp_driver_gpio", "esptool_py" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "diskio", "src", "vfs" ] + }, + "freertos": { + "alias": "idf::freertos", + "target": "___idf_freertos", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/freertos", + "source": "idf_components", + "lib": "__idf_freertos", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "config/include", "config/include/freertos", "config/xtensa/include", "FreeRTOS-Kernel/include", "FreeRTOS-Kernel/portable/xtensa/include", "FreeRTOS-Kernel/portable/xtensa/include/freertos", "esp_additions/include" ] + }, + "hal": { + "alias": "idf::hal", + "target": "___idf_hal", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/hal", + "source": "idf_components", + "lib": "__idf_hal", + "reqs": [], + "priv_reqs": [ "esp_hal_gpio" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "platform_port/include", "esp32/include", "include" ] + }, + "heap": { + "alias": "idf::heap", + "target": "___idf_heap", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/heap", + "source": "idf_components", + "lib": "__idf_heap", + "reqs": [], + "priv_reqs": [ "soc" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "tlsf" ] + }, + "http_parser": { + "alias": "idf::http_parser", + "target": "___idf_http_parser", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/http_parser", + "source": "idf_components", + "lib": "__idf_http_parser", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "." ] + }, + "idf_test": { + "alias": "idf::idf_test", + "target": "___idf_idf_test", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/idf_test", + "source": "idf_components", + "lib": "__idf_idf_test", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "include/esp32" ] + }, + "ieee802154": { + "alias": "idf::ieee802154", + "target": "___idf_ieee802154", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/ieee802154", + "source": "idf_components", + "lib": "__idf_ieee802154", + "reqs": [ "esp_coex" ], + "priv_reqs": [ "esp_phy", "esp_timer", "soc", "hal", "esp_pm", "esp_hal_ieee802154" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "linux": { + "alias": "idf::linux", + "target": "___idf_linux", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/linux", + "source": "idf_components", + "lib": "__idf_linux", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "log": { + "alias": "idf::log", + "target": "___idf_log", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/log", + "source": "idf_components", + "lib": "__idf_log", + "reqs": [], + "priv_reqs": [ "hal", "soc", "esp_hw_support" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "lwip": { + "alias": "idf::lwip", + "target": "___idf_lwip", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/lwip", + "source": "idf_components", + "lib": "__idf_lwip", + "reqs": [], + "priv_reqs": [ "vfs" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "include/apps", "lwip/src/include", "port/include", "port/freertos/include/", "port/esp32xx/include", "port/esp32xx/include/arch", "port/esp32xx/include/sys" ] + }, + "mbedtls": { + "alias": "idf::mbedtls", + "target": "___idf_mbedtls", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/mbedtls", + "source": "idf_components", + "lib": "__idf_mbedtls", + "reqs": [ "esp_security" ], + "priv_reqs": [ "soc", "esp_hw_support", "esp_pm", "esp_driver_dma" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "port/include", "mbedtls/include", "mbedtls/library", "mbedtls/tf-psa-crypto/core", "mbedtls/tf-psa-crypto/drivers/builtin/src/", "esp_crt_bundle/include", "C:/esp/v6.0/esp-idf/components/mbedtls/port/psa_driver/include" ] + }, + "nvs_flash": { + "alias": "idf::nvs_flash", + "target": "___idf_nvs_flash", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/nvs_flash", + "source": "idf_components", + "lib": "__idf_nvs_flash", + "reqs": [ "esp_partition", "esp_blockdev" ], + "priv_reqs": [ "spi_flash", "esp_libc", "esptool_py", "nvs_sec_provider" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "nvs_sec_provider": { + "alias": "idf::nvs_sec_provider", + "target": "___idf_nvs_sec_provider", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/nvs_sec_provider", + "source": "idf_components", + "lib": "__idf_nvs_sec_provider", + "reqs": [ "esp_security" ], + "priv_reqs": [ "bootloader_support", "efuse", "esp_partition", "nvs_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "openthread": { + "alias": "idf::openthread", + "target": "___idf_openthread", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/openthread", + "source": "idf_components", + "lib": "__idf_openthread", + "reqs": [ "esp_netif", "lwip", "esp_driver_uart", "esp_driver_gpio", "esp_driver_spi", "esp_driver_usb_serial_jtag" ], + "priv_reqs": [ "console", "esp_coex", "esp_event", "esp_partition", "esp_timer", "ieee802154", "mbedtls", "nvs_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "partition_table": { + "alias": "idf::partition_table", + "target": "___idf_partition_table", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/partition_table", + "source": "idf_components", + "lib": "__idf_partition_table", + "reqs": [], + "priv_reqs": [ "esptool_py" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "perfmon": { + "alias": "idf::perfmon", + "target": "___idf_perfmon", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/perfmon", + "source": "idf_components", + "lib": "__idf_perfmon", + "reqs": [ "xtensa" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "protobuf-c": { + "alias": "idf::protobuf-c", + "target": "___idf_protobuf-c", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/protobuf-c", + "source": "idf_components", + "lib": "__idf_protobuf-c", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "protobuf-c" ] + }, + "protocomm": { + "alias": "idf::protocomm", + "target": "___idf_protocomm", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/protocomm", + "source": "idf_components", + "lib": "__idf_protocomm", + "reqs": [ "bt" ], + "priv_reqs": [ "protobuf-c", "mbedtls", "console", "esp_http_server", "esp_driver_uart" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include/common", "include/security", "include/transports", "include/crypto/srp6a", "proto-c" ] + }, + "pthread": { + "alias": "idf::pthread", + "target": "___idf_pthread", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/pthread", + "source": "idf_components", + "lib": "__idf_pthread", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "riscv": { + "alias": "idf::riscv", + "target": "___idf_riscv", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/riscv", + "source": "idf_components", + "lib": "__idf_riscv", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "rt": { + "alias": "idf::rt", + "target": "___idf_rt", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/rt", + "source": "idf_components", + "lib": "__idf_rt", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "sdmmc": { + "alias": "idf::sdmmc", + "target": "___idf_sdmmc", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/sdmmc", + "source": "idf_components", + "lib": "__idf_sdmmc", + "reqs": [ "esp_blockdev" ], + "priv_reqs": [ "soc", "esp_timer", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "soc": { + "alias": "idf::soc", + "target": "___idf_soc", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/soc", + "source": "idf_components", + "lib": "__idf_soc", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "esp32", "esp32/include", "esp32/register" ] + }, + "spi_flash": { + "alias": "idf::spi_flash", + "target": "___idf_spi_flash", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/spi_flash", + "source": "idf_components", + "lib": "__idf_spi_flash", + "reqs": [ "hal", "esp_hal_mspi", "esp_blockdev" ], + "priv_reqs": [ "bootloader_support", "soc", "esp_hal_gpio", "esp_driver_gpio", "esp_mm" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "spiffs": { + "alias": "idf::spiffs", + "target": "___idf_spiffs", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/spiffs", + "source": "idf_components", + "lib": "__idf_spiffs", + "reqs": [ "esp_partition" ], + "priv_reqs": [ "bootloader_support", "vfs", "esptool_py" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "tcp_transport": { + "alias": "idf::tcp_transport", + "target": "___idf_tcp_transport", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/tcp_transport", + "source": "idf_components", + "lib": "__idf_tcp_transport", + "reqs": [ "esp-tls", "lwip", "esp_timer" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "ulp": { + "alias": "idf::ulp", + "target": "___idf_ulp", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/ulp", + "source": "idf_components", + "lib": "__idf_ulp", + "reqs": [ "esp_adc", "esp_driver_gpio", "esp_driver_uart", "esp_driver_i2s", "esp_hal_i2c", "esp_hal_touch_sens", "esp_hal_gpspi", "esp_hal_pmu", "esp_hal_rtc_timer", "esp_hal_clock" ], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [] + }, + "unity": { + "alias": "idf::unity", + "target": "___idf_unity", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/unity", + "source": "idf_components", + "lib": "__idf_unity", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "unity/src" ] + }, + "vfs": { + "alias": "idf::vfs", + "target": "___idf_vfs", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/vfs", + "source": "idf_components", + "lib": "__idf_vfs", + "reqs": [], + "priv_reqs": [ "esp_driver_uart", "esp_driver_usb_serial_jtag", "esp_usb_cdc_rom_console" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "wear_levelling": { + "alias": "idf::wear_levelling", + "target": "___idf_wear_levelling", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/wear_levelling", + "source": "idf_components", + "lib": "__idf_wear_levelling", + "reqs": [ "esp_partition" ], + "priv_reqs": [ "spi_flash" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include" ] + }, + "wpa_supplicant": { + "alias": "idf::wpa_supplicant", + "target": "___idf_wpa_supplicant", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/wpa_supplicant", + "source": "idf_components", + "lib": "__idf_wpa_supplicant", + "reqs": [], + "priv_reqs": [ "mbedtls", "esp_timer", "esp_wifi" ], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "include", "port/include", "esp_supplicant/include" ] + }, + "xtensa": { + "alias": "idf::xtensa", + "target": "___idf_xtensa", + "prefix": "idf", + "dir": "C:/esp/v6.0/esp-idf/components/xtensa", + "source": "idf_components", + "lib": "__idf_xtensa", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "esp32/include", "include", "deprecated_include" ] + }, + "main": { + "alias": "idf::main", + "target": "___idf_main", + "prefix": "idf", + "dir": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/main", + "source": "project_components", + "lib": "__idf_main", + "reqs": [], + "priv_reqs": [], + "managed_reqs": [], + "managed_priv_reqs": [], + "include_dirs": [ "." ] + } + }, + "gdbinit_files": { + "01_symbols": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/gdbinit/symbols", + "02_prefix_map": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/gdbinit/prefix_map", + "03_py_extensions": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/gdbinit/py_extensions", + "04_connect": "C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/gdbinit/connect" + }, + "debug_arguments_openocd": "-f board/esp32-wrover-kit-3.3v.cfg" +} diff --git a/build/project_elf_src_esp32.c b/build/project_elf_src_esp32.c new file mode 100644 index 0000000..e69de29 diff --git a/build/spiffs-flash_args b/build/spiffs-flash_args new file mode 100644 index 0000000..737865c --- /dev/null +++ b/build/spiffs-flash_args @@ -0,0 +1,2 @@ +--flash-mode dio --flash-freq 40m --flash-size 2MB +0x110000 spiffs.bin diff --git a/build/spiffs.bin b/build/spiffs.bin new file mode 100644 index 0000000..3a5c6d5 Binary files /dev/null and b/build/spiffs.bin differ diff --git a/build/toolchain/asmflags b/build/toolchain/asmflags new file mode 100644 index 0000000..516aade --- /dev/null +++ b/build/toolchain/asmflags @@ -0,0 +1,6 @@ +-Wno-frame-address +-mlongcalls +-fno-builtin-memcpy +-fno-builtin-memset +-fno-builtin-bzero +-specs=picolibc.specs diff --git a/build/toolchain/cflags b/build/toolchain/cflags new file mode 100644 index 0000000..516aade --- /dev/null +++ b/build/toolchain/cflags @@ -0,0 +1,6 @@ +-Wno-frame-address +-mlongcalls +-fno-builtin-memcpy +-fno-builtin-memset +-fno-builtin-bzero +-specs=picolibc.specs diff --git a/build/toolchain/cxxflags b/build/toolchain/cxxflags new file mode 100644 index 0000000..76ca377 --- /dev/null +++ b/build/toolchain/cxxflags @@ -0,0 +1,7 @@ +-Wno-frame-address +-mlongcalls +-fno-builtin-memcpy +-fno-builtin-memset +-fno-builtin-bzero +-specs=picolibc.specs +-fno-rtti diff --git a/build/toolchain/ldflags b/build/toolchain/ldflags new file mode 100644 index 0000000..15edb6f --- /dev/null +++ b/build/toolchain/ldflags @@ -0,0 +1,2 @@ +-nostartfiles +-fno-rtti diff --git a/build/toolchain/toolchain-esp32.cmake b/build/toolchain/toolchain-esp32.cmake new file mode 100644 index 0000000..8c1e461 --- /dev/null +++ b/build/toolchain/toolchain-esp32.cmake @@ -0,0 +1,2 @@ +set(_CMAKE_TOOLCHAIN_PREFIX xtensa-esp32-elf-) +include($ENV{IDF_PATH}/tools/cmake/toolchain.cmake) diff --git a/build/x509_crt_bundle.S b/build/x509_crt_bundle.S new file mode 100644 index 0000000..5f85fe0 --- /dev/null +++ b/build/x509_crt_bundle.S @@ -0,0 +1,4245 @@ +/* * Data converted from C:/Users/e.adame/Documents/ESP32_Modbus_RTU_to_PICS_MULTI/build/esp-idf/mbedtls/x509_crt_bundle + */ +.data +#if !defined (__APPLE__) && !defined (__linux__) +.section .rodata.embedded +#endif + +.global x509_crt_bundle +x509_crt_bundle: + +.global _binary_x509_crt_bundle_start +_binary_x509_crt_bundle_start: /* for objcopy compatibility */ +.byte 0x48, 0x02, 0x00, 0x00, 0xa8, 0x03, 0x00, 0x00, 0x0b, 0x06, 0x00, 0x00, 0x6f, 0x08, 0x00, 0x00 +.byte 0xd4, 0x09, 0x00, 0x00, 0x39, 0x0c, 0x00, 0x00, 0xd3, 0x0c, 0x00, 0x00, 0x8a, 0x0d, 0x00, 0x00 +.byte 0xf1, 0x0f, 0x00, 0x00, 0x58, 0x11, 0x00, 0x00, 0xc0, 0x12, 0x00, 0x00, 0x29, 0x15, 0x00, 0x00 +.byte 0xe4, 0x15, 0x00, 0x00, 0x4d, 0x18, 0x00, 0x00, 0xba, 0x1a, 0x00, 0x00, 0x27, 0x1d, 0x00, 0x00 +.byte 0x95, 0x1f, 0x00, 0x00, 0x04, 0x22, 0x00, 0x00, 0x74, 0x24, 0x00, 0x00, 0xe4, 0x25, 0x00, 0x00 +.byte 0x54, 0x27, 0x00, 0x00, 0xc5, 0x29, 0x00, 0x00, 0x36, 0x2c, 0x00, 0x00, 0xa7, 0x2e, 0x00, 0x00 +.byte 0x6a, 0x2f, 0x00, 0x00, 0x2e, 0x30, 0x00, 0x00, 0xa0, 0x32, 0x00, 0x00, 0x13, 0x35, 0x00, 0x00 +.byte 0xd8, 0x35, 0x00, 0x00, 0x4b, 0x38, 0x00, 0x00, 0xbe, 0x3a, 0x00, 0x00, 0x83, 0x3b, 0x00, 0x00 +.byte 0x48, 0x3c, 0x00, 0x00, 0xbc, 0x3e, 0x00, 0x00, 0x30, 0x41, 0x00, 0x00, 0xa4, 0x43, 0x00, 0x00 +.byte 0x6a, 0x44, 0x00, 0x00, 0xde, 0x46, 0x00, 0x00, 0xa4, 0x47, 0x00, 0x00, 0x18, 0x4a, 0x00, 0x00 +.byte 0x8c, 0x4b, 0x00, 0x00, 0x02, 0x4e, 0x00, 0x00, 0x78, 0x4f, 0x00, 0x00, 0x41, 0x50, 0x00, 0x00 +.byte 0xb8, 0x52, 0x00, 0x00, 0x30, 0x54, 0x00, 0x00, 0xa8, 0x56, 0x00, 0x00, 0x72, 0x57, 0x00, 0x00 +.byte 0xea, 0x59, 0x00, 0x00, 0x63, 0x5c, 0x00, 0x00, 0xdc, 0x5d, 0x00, 0x00, 0x55, 0x60, 0x00, 0x00 +.byte 0xce, 0x62, 0x00, 0x00, 0x48, 0x65, 0x00, 0x00, 0xc2, 0x67, 0x00, 0x00, 0x8e, 0x68, 0x00, 0x00 +.byte 0x5a, 0x69, 0x00, 0x00, 0xd4, 0x6b, 0x00, 0x00, 0x4f, 0x6e, 0x00, 0x00, 0xca, 0x70, 0x00, 0x00 +.byte 0x97, 0x71, 0x00, 0x00, 0x13, 0x73, 0x00, 0x00, 0x8f, 0x75, 0x00, 0x00, 0x40, 0x76, 0x00, 0x00 +.byte 0x0e, 0x77, 0x00, 0x00, 0x8b, 0x79, 0x00, 0x00, 0x08, 0x7c, 0x00, 0x00, 0x85, 0x7d, 0x00, 0x00 +.byte 0x02, 0x80, 0x00, 0x00, 0xd1, 0x80, 0x00, 0x00, 0x4e, 0x82, 0x00, 0x00, 0xcb, 0x84, 0x00, 0x00 +.byte 0x49, 0x87, 0x00, 0x00, 0xc9, 0x89, 0x00, 0x00, 0x9b, 0x8a, 0x00, 0x00, 0x1d, 0x8d, 0x00, 0x00 +.byte 0x9f, 0x8e, 0x00, 0x00, 0x75, 0x8f, 0x00, 0x00, 0xf9, 0x91, 0x00, 0x00, 0x7f, 0x94, 0x00, 0x00 +.byte 0x57, 0x95, 0x00, 0x00, 0xdd, 0x97, 0x00, 0x00, 0xb5, 0x98, 0x00, 0x00, 0x3e, 0x9a, 0x00, 0x00 +.byte 0xc8, 0x9c, 0x00, 0x00, 0xa5, 0x9d, 0x00, 0x00, 0x30, 0xa0, 0x00, 0x00, 0xbb, 0xa1, 0x00, 0x00 +.byte 0x9a, 0xa2, 0x00, 0x00, 0x27, 0xa5, 0x00, 0x00, 0xb4, 0xa6, 0x00, 0x00, 0x41, 0xa8, 0x00, 0x00 +.byte 0x20, 0xa9, 0x00, 0x00, 0xae, 0xab, 0x00, 0x00, 0x3c, 0xae, 0x00, 0x00, 0x1d, 0xaf, 0x00, 0x00 +.byte 0xac, 0xb1, 0x00, 0x00, 0x3d, 0xb3, 0x00, 0x00, 0xce, 0xb4, 0x00, 0x00, 0xb1, 0xb5, 0x00, 0x00 +.byte 0x94, 0xb6, 0x00, 0x00, 0x25, 0xb9, 0x00, 0x00, 0xb8, 0xba, 0x00, 0x00, 0x4a, 0xbc, 0x00, 0x00 +.byte 0xdf, 0xbe, 0x00, 0x00, 0xc8, 0xbf, 0x00, 0x00, 0x5f, 0xc2, 0x00, 0x00, 0x49, 0xc3, 0x00, 0x00 +.byte 0xe1, 0xc5, 0x00, 0x00, 0x79, 0xc7, 0x00, 0x00, 0x12, 0xc9, 0x00, 0x00, 0xfd, 0xc9, 0x00, 0x00 +.byte 0xe9, 0xca, 0x00, 0x00, 0x84, 0xcd, 0x00, 0x00, 0x56, 0xce, 0x00, 0x00, 0x48, 0xcf, 0x00, 0x00 +.byte 0x3e, 0xd0, 0x00, 0x00, 0xe4, 0xd2, 0x00, 0x00, 0x8b, 0xd4, 0x00, 0x00, 0x85, 0xd5, 0x00, 0x00 +.byte 0x2d, 0xd8, 0x00, 0x00, 0xd7, 0xd9, 0x00, 0x00, 0xd4, 0xda, 0x00, 0x00, 0x81, 0xdd, 0x00, 0x00 +.byte 0x2f, 0xdf, 0x00, 0x00, 0xde, 0xe0, 0x00, 0x00, 0x8d, 0xe2, 0x00, 0x00, 0x3c, 0xe4, 0x00, 0x00 +.byte 0xeb, 0xe6, 0x00, 0x00, 0x9b, 0xe8, 0x00, 0x00, 0x4c, 0xeb, 0x00, 0x00, 0x50, 0xec, 0x00, 0x00 +.byte 0x02, 0xef, 0x00, 0x00, 0xb7, 0xf1, 0x00, 0x00, 0xbe, 0xf2, 0x00, 0x00, 0x73, 0xf5, 0x00, 0x00 +.byte 0x2f, 0xf7, 0x00, 0x00, 0x22, 0xf8, 0x00, 0x00, 0x32, 0xf9, 0x00, 0x00, 0xf7, 0xfa, 0x00, 0x00 +.byte 0xca, 0xfd, 0x00, 0x00, 0x9e, 0xff, 0x00, 0x00, 0xc7, 0x00, 0x01, 0x00, 0xa4, 0x02, 0x01, 0x00 +.byte 0x8f, 0x04, 0x01, 0x00, 0xcd, 0x05, 0x01, 0x00, 0x36, 0x00, 0x26, 0x01, 0x30, 0x34, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x46, 0x52, 0x31, 0x12, 0x30, 0x10, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x09, 0x44, 0x68, 0x69, 0x6d, 0x79, 0x6f, 0x74, 0x69, 0x73, 0x31 +.byte 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x08, 0x43, 0x65, 0x72, 0x74, 0x69, 0x67 +.byte 0x6e, 0x61, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d +.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82 +.byte 0x01, 0x01, 0x00, 0xc8, 0x68, 0xf1, 0xc9, 0xd6, 0xd6, 0xb3, 0x34, 0x75, 0x26, 0x82, 0x1e, 0xec +.byte 0xb4, 0xbe, 0xea, 0x5c, 0xe1, 0x26, 0xed, 0x11, 0x47, 0x61, 0xe1, 0xa2, 0x7c, 0x16, 0x78, 0x40 +.byte 0x21, 0xe4, 0x60, 0x9e, 0x5a, 0xc8, 0x63, 0xe1, 0xc4, 0xb1, 0x96, 0x92, 0xff, 0x18, 0x6d, 0x69 +.byte 0x23, 0xe1, 0x2b, 0x62, 0xf7, 0xdd, 0xe2, 0x36, 0x2f, 0x91, 0x07, 0xb9, 0x48, 0xcf, 0x0e, 0xec +.byte 0x79, 0xb6, 0x2c, 0xe7, 0x34, 0x4b, 0x70, 0x08, 0x25, 0xa3, 0x3c, 0x87, 0x1b, 0x19, 0xf2, 0x81 +.byte 0x07, 0x0f, 0x38, 0x90, 0x19, 0xd3, 0x11, 0xfe, 0x86, 0xb4, 0xf2, 0xd1, 0x5e, 0x1e, 0x1e, 0x96 +.byte 0xcd, 0x80, 0x6c, 0xce, 0x3b, 0x31, 0x93, 0xb6, 0xf2, 0xa0, 0xd0, 0xa9, 0x95, 0x12, 0x7d, 0xa5 +.byte 0x9a, 0xcc, 0x6b, 0xc8, 0x84, 0x56, 0x8a, 0x33, 0xa9, 0xe7, 0x22, 0x15, 0x53, 0x16, 0xf0, 0xcc +.byte 0x17, 0xec, 0x57, 0x5f, 0xe9, 0xa2, 0x0a, 0x98, 0x09, 0xde, 0xe3, 0x5f, 0x9c, 0x6f, 0xdc, 0x48 +.byte 0xe3, 0x85, 0x0b, 0x15, 0x5a, 0xa6, 0xba, 0x9f, 0xac, 0x48, 0xe3, 0x09, 0xb2, 0xf7, 0xf4, 0x32 +.byte 0xde, 0x5e, 0x34, 0xbe, 0x1c, 0x78, 0x5d, 0x42, 0x5b, 0xce, 0x0e, 0x22, 0x8f, 0x4d, 0x90, 0xd7 +.byte 0x7d, 0x32, 0x18, 0xb3, 0x0b, 0x2c, 0x6a, 0xbf, 0x8e, 0x3f, 0x14, 0x11, 0x89, 0x20, 0x0e, 0x77 +.byte 0x14, 0xb5, 0x3d, 0x94, 0x08, 0x87, 0xf7, 0x25, 0x1e, 0xd5, 0xb2, 0x60, 0x00, 0xec, 0x6f, 0x2a +.byte 0x28, 0x25, 0x6e, 0x2a, 0x3e, 0x18, 0x63, 0x17, 0x25, 0x3f, 0x3e, 0x44, 0x20, 0x16, 0xf6, 0x26 +.byte 0xc8, 0x25, 0xae, 0x05, 0x4a, 0xb4, 0xe7, 0x63, 0x2c, 0xf3, 0x8c, 0x16, 0x53, 0x7e, 0x5c, 0xfb +.byte 0x11, 0x1a, 0x08, 0xc1, 0x46, 0x62, 0x9f, 0x22, 0xb8, 0xf1, 0xc2, 0x8d, 0x69, 0xdc, 0xfa, 0x3a +.byte 0x58, 0x06, 0xdf, 0x02, 0x03, 0x01, 0x00, 0x01, 0x39, 0x00, 0x26, 0x02, 0x30, 0x37, 0x31, 0x14 +.byte 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0b, 0x54, 0x65, 0x6c, 0x69, 0x61, 0x53, 0x6f +.byte 0x6e, 0x65, 0x72, 0x61, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x16, 0x54 +.byte 0x65, 0x6c, 0x69, 0x61, 0x53, 0x6f, 0x6e, 0x65, 0x72, 0x61, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20 +.byte 0x43, 0x41, 0x20, 0x76, 0x31, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48 +.byte 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02 +.byte 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xc2, 0xbe, 0xeb, 0x27, 0xf0, 0x21, 0xa3, 0xf3, 0x69, 0x26 +.byte 0x55, 0x7e, 0x9d, 0xc5, 0x55, 0x16, 0x91, 0x5c, 0xfd, 0xef, 0x21, 0xbf, 0x53, 0x80, 0x7a, 0x2d +.byte 0xd2, 0x91, 0x8c, 0x63, 0x31, 0xf0, 0xec, 0x24, 0xf0, 0xc3, 0xa5, 0xd2, 0x72, 0x7c, 0x10, 0x6d +.byte 0xf4, 0x37, 0xb7, 0xe5, 0xe6, 0x7c, 0x79, 0xea, 0x8c, 0xb5, 0x82, 0x8b, 0xae, 0x48, 0xb6, 0xac +.byte 0x00, 0xdc, 0x65, 0x75, 0xec, 0x2a, 0x4d, 0x5f, 0xc1, 0x87, 0xf5, 0x20, 0x65, 0x2b, 0x81, 0xa8 +.byte 0x47, 0x3e, 0x89, 0x23, 0x95, 0x30, 0x16, 0x90, 0x7f, 0xe8, 0x57, 0x07, 0x48, 0xe7, 0x19, 0xae +.byte 0xbf, 0x45, 0x67, 0xb1, 0x37, 0x1b, 0x06, 0x2a, 0xfe, 0xde, 0xf9, 0xac, 0x7d, 0x83, 0xfb, 0x5e +.byte 0xba, 0xe4, 0x8f, 0x97, 0x67, 0xbe, 0x4b, 0x8e, 0x8d, 0x64, 0x07, 0x57, 0x38, 0x55, 0x69, 0x34 +.byte 0x36, 0x3d, 0x13, 0x48, 0xef, 0x4f, 0xe2, 0xd3, 0x66, 0x1e, 0xa4, 0xcf, 0x1a, 0xb7, 0x5e, 0x36 +.byte 0x33, 0xd4, 0xb4, 0x06, 0xbd, 0x18, 0x01, 0xfd, 0x77, 0x84, 0x50, 0x00, 0x45, 0xf5, 0x8c, 0x5d +.byte 0xe8, 0x23, 0xbc, 0x7e, 0xfe, 0x35, 0xe1, 0xed, 0x50, 0x7b, 0xa9, 0x30, 0x8d, 0x19, 0xd3, 0x09 +.byte 0x8e, 0x68, 0x67, 0x5d, 0xbf, 0x3c, 0x97, 0x18, 0x53, 0xbb, 0x29, 0x62, 0xc5, 0xca, 0x5e, 0x72 +.byte 0xc1, 0xc7, 0x96, 0xd4, 0xdb, 0x2d, 0xa0, 0xb4, 0x1f, 0x69, 0x03, 0xec, 0xea, 0xe2, 0x50, 0xf1 +.byte 0x0c, 0x3c, 0xf0, 0xac, 0xf3, 0x53, 0x2d, 0xf0, 0x1c, 0xf5, 0xed, 0x6c, 0x39, 0x39, 0x73, 0x80 +.byte 0x16, 0xc8, 0x52, 0xb0, 0x23, 0xcd, 0xe0, 0x3e, 0xdc, 0xdd, 0x3c, 0x47, 0xa0, 0xbb, 0x35, 0x8a +.byte 0xe2, 0x98, 0x68, 0x8b, 0xbe, 0xe5, 0xbf, 0x72, 0xee, 0xd2, 0xfa, 0xa5, 0xed, 0x12, 0xed, 0xfc +.byte 0x98, 0x18, 0xa9, 0x26, 0x76, 0xdc, 0x28, 0x4b, 0x10, 0x20, 0x1c, 0xd3, 0x7f, 0x16, 0x77, 0x2d +.byte 0xed, 0x6f, 0x80, 0xf7, 0x49, 0xbb, 0x53, 0x05, 0xbb, 0x5d, 0x68, 0xc7, 0xd4, 0xc8, 0x75, 0x16 +.byte 0x3f, 0x89, 0x5a, 0x8b, 0xf7, 0x17, 0x47, 0xd4, 0x4c, 0xf1, 0xd2, 0x89, 0x79, 0x3e, 0x4d, 0x3d +.byte 0x98, 0xa8, 0x61, 0xde, 0x3a, 0x1e, 0xd2, 0xf8, 0x5e, 0x03, 0xe0, 0xc1, 0xc9, 0x1c, 0x8c, 0xd3 +.byte 0x8d, 0x4d, 0xd3, 0x95, 0x36, 0xb3, 0x37, 0x5f, 0x63, 0x63, 0x9b, 0x33, 0x14, 0xf0, 0x2d, 0x26 +.byte 0x6b, 0x53, 0x7c, 0x89, 0x8c, 0x32, 0xc2, 0x6e, 0xec, 0x3d, 0x21, 0x00, 0x39, 0xc9, 0xa1, 0x68 +.byte 0xe2, 0x50, 0x83, 0x2e, 0xb0, 0x3a, 0x2b, 0xf3, 0x36, 0xa0, 0xac, 0x2f, 0xe4, 0x6f, 0x61, 0xc2 +.byte 0x51, 0x09, 0x39, 0x3e, 0x8b, 0x53, 0xb9, 0xbb, 0x67, 0xda, 0xdc, 0x53, 0xb9, 0x76, 0x59, 0x36 +.byte 0x9d, 0x43, 0xe5, 0x20, 0xe0, 0x3d, 0x32, 0x60, 0x85, 0x22, 0x51, 0xb7, 0xc7, 0x33, 0xbb, 0xdd +.byte 0x15, 0x2f, 0xa4, 0x78, 0xa6, 0x07, 0x7b, 0x81, 0x46, 0x36, 0x04, 0x86, 0xdd, 0x79, 0x35, 0xc7 +.byte 0x95, 0x2c, 0x3b, 0xb0, 0xa3, 0x17, 0x35, 0xe5, 0x73, 0x1f, 0xb4, 0x5c, 0x59, 0xef, 0xda, 0xea +.byte 0x10, 0x65, 0x7b, 0x7a, 0xd0, 0x7f, 0x9f, 0xb3, 0xb4, 0x2a, 0x37, 0x3b, 0x70, 0x8b, 0x9b, 0x5b +.byte 0xb9, 0x2b, 0xb7, 0xec, 0xb2, 0x51, 0x12, 0x97, 0x53, 0x29, 0x5a, 0xd4, 0xf0, 0x12, 0x10, 0xdc +.byte 0x4f, 0x02, 0xbb, 0x12, 0x92, 0x2f, 0x62, 0xd4, 0x3f, 0x69, 0x43, 0x7c, 0x0d, 0xd6, 0xfc, 0x58 +.byte 0x75, 0x01, 0x88, 0x9d, 0x58, 0x16, 0x4b, 0xde, 0xba, 0x90, 0xff, 0x47, 0x01, 0x89, 0x06, 0x6a +.byte 0xf6, 0x5f, 0xb2, 0x90, 0x6a, 0xb3, 0x02, 0xa6, 0x02, 0x88, 0xbf, 0xb3, 0x47, 0x7e, 0x2a, 0xd9 +.byte 0xd5, 0xfa, 0x68, 0x78, 0x35, 0x4d, 0x02, 0x03, 0x01, 0x00, 0x01, 0x3a, 0x00, 0x26, 0x02, 0x30 +.byte 0x38, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x45, 0x53, 0x31, 0x14 +.byte 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0b, 0x49, 0x5a, 0x45, 0x4e, 0x50, 0x45, 0x20 +.byte 0x53, 0x2e, 0x41, 0x2e, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x0a, 0x49 +.byte 0x7a, 0x65, 0x6e, 0x70, 0x65, 0x2e, 0x63, 0x6f, 0x6d, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06 +.byte 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f +.byte 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xc9, 0xd3, 0x7a, 0xca, 0x0f, 0x1e +.byte 0xac, 0xa7, 0x86, 0xe8, 0x16, 0x65, 0x6a, 0xb1, 0xc2, 0x1b, 0x45, 0x32, 0x71, 0x95, 0xd9, 0xfe +.byte 0x10, 0x5b, 0xcc, 0xaf, 0xe7, 0xa5, 0x79, 0x01, 0x8f, 0x89, 0xc3, 0xca, 0xf2, 0x55, 0x71, 0xf7 +.byte 0x77, 0xbe, 0x77, 0x94, 0xf3, 0x72, 0xa4, 0x2c, 0x44, 0xd8, 0x9e, 0x92, 0x9b, 0x14, 0x3a, 0xa1 +.byte 0xe7, 0x24, 0x90, 0x0a, 0x0a, 0x56, 0x8e, 0xc5, 0xd8, 0x26, 0x94, 0xe1, 0xd9, 0x48, 0xe1, 0x2d +.byte 0x3e, 0xda, 0x0a, 0x72, 0xdd, 0xa3, 0x99, 0x15, 0xda, 0x81, 0xa2, 0x87, 0xf4, 0x7b, 0x6e, 0x26 +.byte 0x77, 0x89, 0x58, 0xad, 0xd6, 0xeb, 0x0c, 0xb2, 0x41, 0x7a, 0x73, 0x6e, 0x6d, 0xdb, 0x7a, 0x78 +.byte 0x41, 0xe9, 0x08, 0x88, 0x12, 0x7e, 0x87, 0x2e, 0x66, 0x11, 0x63, 0x6c, 0x54, 0xfb, 0x3c, 0x9d +.byte 0x72, 0xc0, 0xbc, 0x2e, 0xff, 0xc2, 0xb7, 0xdd, 0x0d, 0x76, 0xe3, 0x3a, 0xd7, 0xf7, 0xb4, 0x68 +.byte 0xbe, 0xa2, 0xf5, 0xe3, 0x81, 0x6e, 0xc1, 0x46, 0x6f, 0x5d, 0x8d, 0xe0, 0x4d, 0xc6, 0x54, 0x55 +.byte 0x89, 0x1a, 0x33, 0x31, 0x0a, 0xb1, 0x57, 0xb9, 0xa3, 0x8a, 0x98, 0xc3, 0xec, 0x3b, 0x34, 0xc5 +.byte 0x95, 0x41, 0x69, 0x7e, 0x75, 0xc2, 0x3c, 0x20, 0xc5, 0x61, 0xba, 0x51, 0x47, 0xa0, 0x20, 0x90 +.byte 0x93, 0xa1, 0x90, 0x4b, 0xf3, 0x4e, 0x7c, 0x85, 0x45, 0x54, 0x9a, 0xd1, 0x05, 0x26, 0x41, 0xb0 +.byte 0xb5, 0x4d, 0x1d, 0x33, 0xbe, 0xc4, 0x03, 0xc8, 0x25, 0x7c, 0xc1, 0x70, 0xdb, 0x3b, 0xf4, 0x09 +.byte 0x2d, 0x54, 0x27, 0x48, 0xac, 0x2f, 0xe1, 0xc4, 0xac, 0x3e, 0xc8, 0xcb, 0x92, 0x4c, 0x53, 0x39 +.byte 0x37, 0x23, 0xec, 0xd3, 0x01, 0xf9, 0xe0, 0x09, 0x44, 0x4d, 0x4d, 0x64, 0xc0, 0xe1, 0x0d, 0x5a +.byte 0x87, 0x22, 0xbc, 0xad, 0x1b, 0xa3, 0xfe, 0x26, 0xb5, 0x15, 0xf3, 0xa7, 0xfc, 0x84, 0x19, 0xe9 +.byte 0xec, 0xa1, 0x88, 0xb4, 0x44, 0x69, 0x84, 0x83, 0xf3, 0x89, 0xd1, 0x74, 0x06, 0xa9, 0xcc, 0x0b +.byte 0xd6, 0xc2, 0xde, 0x27, 0x85, 0x50, 0x26, 0xca, 0x17, 0xb8, 0xc9, 0x7a, 0x87, 0x56, 0x2c, 0x1a +.byte 0x01, 0x1e, 0x6c, 0xbe, 0x13, 0xad, 0x10, 0xac, 0xb5, 0x24, 0xf5, 0x38, 0x91, 0xa1, 0xd6, 0x4b +.byte 0xda, 0xf1, 0xbb, 0xd2, 0xde, 0x47, 0xb5, 0xf1, 0xbc, 0x81, 0xf6, 0x59, 0x6b, 0xcf, 0x19, 0x53 +.byte 0xe9, 0x8d, 0x15, 0xcb, 0x4a, 0xcb, 0xa9, 0x6f, 0x44, 0xe5, 0x1b, 0x41, 0xcf, 0xe1, 0x86, 0xa7 +.byte 0xca, 0xd0, 0x6a, 0x9f, 0xbc, 0x4c, 0x8d, 0x06, 0x33, 0x5a, 0xa2, 0x85, 0xe5, 0x90, 0x35, 0xa0 +.byte 0x62, 0x5c, 0x16, 0x4e, 0xf0, 0xe3, 0xa2, 0xfa, 0x03, 0x1a, 0xb4, 0x2c, 0x71, 0xb3, 0x58, 0x2c +.byte 0xde, 0x7b, 0x0b, 0xdb, 0x1a, 0x0f, 0xeb, 0xde, 0x21, 0x1f, 0x06, 0x77, 0x06, 0x03, 0xb0, 0xc9 +.byte 0xef, 0x99, 0xfc, 0xc0, 0xb9, 0x4f, 0x0b, 0x86, 0x28, 0xfe, 0xd2, 0xb9, 0xea, 0xe3, 0xda, 0xa5 +.byte 0xc3, 0x47, 0x69, 0x12, 0xe0, 0xdb, 0xf0, 0xf6, 0x19, 0x8b, 0xed, 0x7b, 0x70, 0xd7, 0x02, 0xd6 +.byte 0xed, 0x87, 0x18, 0x28, 0x2c, 0x04, 0x24, 0x4c, 0x77, 0xe4, 0x48, 0x8a, 0x1a, 0xc6, 0x3b, 0x9a +.byte 0xd4, 0x0f, 0xca, 0xfa, 0x75, 0xd2, 0x01, 0x40, 0x5a, 0x8d, 0x79, 0xbf, 0x8b, 0xcf, 0x4b, 0xcf +.byte 0xaa, 0x16, 0xc1, 0x95, 0xe4, 0xad, 0x4c, 0x8a, 0x3e, 0x17, 0x91, 0xd4, 0xb1, 0x62, 0xe5, 0x82 +.byte 0xe5, 0x80, 0x04, 0xa4, 0x03, 0x7e, 0x8d, 0xbf, 0xda, 0x7f, 0xa2, 0x0f, 0x97, 0x4f, 0x0c, 0xd3 +.byte 0x0d, 0xfb, 0xd7, 0xd1, 0xe5, 0x72, 0x7e, 0x1c, 0xc8, 0x77, 0xff, 0x5b, 0x9a, 0x0f, 0xb7, 0xae +.byte 0x05, 0x46, 0xe5, 0xf1, 0xa8, 0x16, 0xec, 0x47, 0xa4, 0x17, 0x02, 0x03, 0x01, 0x00, 0x01, 0x3b +.byte 0x00, 0x26, 0x01, 0x30, 0x39, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x55, 0x53, 0x31, 0x0f, 0x30, 0x0d, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x06, 0x41, 0x6d, 0x61 +.byte 0x7a, 0x6f, 0x6e, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x10, 0x41, 0x6d +.byte 0x61, 0x7a, 0x6f, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x31, 0x30, 0x82 +.byte 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05 +.byte 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xb2 +.byte 0x78, 0x80, 0x71, 0xca, 0x78, 0xd5, 0xe3, 0x71, 0xaf, 0x47, 0x80, 0x50, 0x74, 0x7d, 0x6e, 0xd8 +.byte 0xd7, 0x88, 0x76, 0xf4, 0x99, 0x68, 0xf7, 0x58, 0x21, 0x60, 0xf9, 0x74, 0x84, 0x01, 0x2f, 0xac +.byte 0x02, 0x2d, 0x86, 0xd3, 0xa0, 0x43, 0x7a, 0x4e, 0xb2, 0xa4, 0xd0, 0x36, 0xba, 0x01, 0xbe, 0x8d +.byte 0xdb, 0x48, 0xc8, 0x07, 0x17, 0x36, 0x4c, 0xf4, 0xee, 0x88, 0x23, 0xc7, 0x3e, 0xeb, 0x37, 0xf5 +.byte 0xb5, 0x19, 0xf8, 0x49, 0x68, 0xb0, 0xde, 0xd7, 0xb9, 0x76, 0x38, 0x1d, 0x61, 0x9e, 0xa4, 0xfe +.byte 0x82, 0x36, 0xa5, 0xe5, 0x4a, 0x56, 0xe4, 0x45, 0xe1, 0xf9, 0xfd, 0xb4, 0x16, 0xfa, 0x74, 0xda +.byte 0x9c, 0x9b, 0x35, 0x39, 0x2f, 0xfa, 0xb0, 0x20, 0x50, 0x06, 0x6c, 0x7a, 0xd0, 0x80, 0xb2, 0xa6 +.byte 0xf9, 0xaf, 0xec, 0x47, 0x19, 0x8f, 0x50, 0x38, 0x07, 0xdc, 0xa2, 0x87, 0x39, 0x58, 0xf8, 0xba +.byte 0xd5, 0xa9, 0xf9, 0x48, 0x67, 0x30, 0x96, 0xee, 0x94, 0x78, 0x5e, 0x6f, 0x89, 0xa3, 0x51, 0xc0 +.byte 0x30, 0x86, 0x66, 0xa1, 0x45, 0x66, 0xba, 0x54, 0xeb, 0xa3, 0xc3, 0x91, 0xf9, 0x48, 0xdc, 0xff +.byte 0xd1, 0xe8, 0x30, 0x2d, 0x7d, 0x2d, 0x74, 0x70, 0x35, 0xd7, 0x88, 0x24, 0xf7, 0x9e, 0xc4, 0x59 +.byte 0x6e, 0xbb, 0x73, 0x87, 0x17, 0xf2, 0x32, 0x46, 0x28, 0xb8, 0x43, 0xfa, 0xb7, 0x1d, 0xaa, 0xca +.byte 0xb4, 0xf2, 0x9f, 0x24, 0x0e, 0x2d, 0x4b, 0xf7, 0x71, 0x5c, 0x5e, 0x69, 0xff, 0xea, 0x95, 0x02 +.byte 0xcb, 0x38, 0x8a, 0xae, 0x50, 0x38, 0x6f, 0xdb, 0xfb, 0x2d, 0x62, 0x1b, 0xc5, 0xc7, 0x1e, 0x54 +.byte 0xe1, 0x77, 0xe0, 0x67, 0xc8, 0x0f, 0x9c, 0x87, 0x23, 0xd6, 0x3f, 0x40, 0x20, 0x7f, 0x20, 0x80 +.byte 0xc4, 0x80, 0x4c, 0x3e, 0x3b, 0x24, 0x26, 0x8e, 0x04, 0xae, 0x6c, 0x9a, 0xc8, 0xaa, 0x0d, 0x02 +.byte 0x03, 0x01, 0x00, 0x01, 0x3b, 0x00, 0x26, 0x02, 0x30, 0x39, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x0f, 0x30, 0x0d, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x13, 0x06, 0x41, 0x6d, 0x61, 0x7a, 0x6f, 0x6e, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x13, 0x10, 0x41, 0x6d, 0x61, 0x7a, 0x6f, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43 +.byte 0x41, 0x20, 0x32, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7 +.byte 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02 +.byte 0x82, 0x02, 0x01, 0x00, 0xad, 0x96, 0x9f, 0x2d, 0x9c, 0x4a, 0x4c, 0x4a, 0x81, 0x79, 0x51, 0x99 +.byte 0xec, 0x8a, 0xcb, 0x6b, 0x60, 0x51, 0x13, 0xbc, 0x4d, 0x6d, 0x06, 0xfc, 0xb0, 0x08, 0x8d, 0xdd +.byte 0x19, 0x10, 0x6a, 0xc7, 0x26, 0x0c, 0x35, 0xd8, 0xc0, 0x6f, 0x20, 0x84, 0xe9, 0x94, 0xb1, 0x9b +.byte 0x85, 0x03, 0xc3, 0x5b, 0xdb, 0x4a, 0xe8, 0xc8, 0xf8, 0x90, 0x76, 0xd9, 0x5b, 0x4f, 0xe3, 0x4c +.byte 0xe8, 0x06, 0x36, 0x4d, 0xcc, 0x9a, 0xac, 0x3d, 0x0c, 0x90, 0x2b, 0x92, 0xd4, 0x06, 0x19, 0x60 +.byte 0xac, 0x37, 0x44, 0x79, 0x85, 0x81, 0x82, 0xad, 0x5a, 0x37, 0xe0, 0x0d, 0xcc, 0x9d, 0xa6, 0x4c +.byte 0x52, 0x76, 0xea, 0x43, 0x9d, 0xb7, 0x04, 0xd1, 0x50, 0xf6, 0x55, 0xe0, 0xd5, 0xd2, 0xa6, 0x49 +.byte 0x85, 0xe9, 0x37, 0xe9, 0xca, 0x7e, 0xae, 0x5c, 0x95, 0x4d, 0x48, 0x9a, 0x3f, 0xae, 0x20, 0x5a +.byte 0x6d, 0x88, 0x95, 0xd9, 0x34, 0xb8, 0x52, 0x1a, 0x43, 0x90, 0xb0, 0xbf, 0x6c, 0x05, 0xb9, 0xb6 +.byte 0x78, 0xb7, 0xea, 0xd0, 0xe4, 0x3a, 0x3c, 0x12, 0x53, 0x62, 0xff, 0x4a, 0xf2, 0x7b, 0xbe, 0x35 +.byte 0x05, 0xa9, 0x12, 0x34, 0xe3, 0xf3, 0x64, 0x74, 0x62, 0x2c, 0x3d, 0x00, 0x49, 0x5a, 0x28, 0xfe +.byte 0x32, 0x44, 0xbb, 0x87, 0xdd, 0x65, 0x27, 0x02, 0x71, 0x3b, 0xda, 0x4a, 0xf7, 0x1f, 0xda, 0xcd +.byte 0xf7, 0x21, 0x55, 0x90, 0x4f, 0x0f, 0xec, 0xae, 0x82, 0xe1, 0x9f, 0x6b, 0xd9, 0x45, 0xd3, 0xbb +.byte 0xf0, 0x5f, 0x87, 0xed, 0x3c, 0x2c, 0x39, 0x86, 0xda, 0x3f, 0xde, 0xec, 0x72, 0x55, 0xeb, 0x79 +.byte 0xa3, 0xad, 0xdb, 0xdd, 0x7c, 0xb0, 0xba, 0x1c, 0xce, 0xfc, 0xde, 0x4f, 0x35, 0x76, 0xcf, 0x0f +.byte 0xf8, 0x78, 0x1f, 0x6a, 0x36, 0x51, 0x46, 0x27, 0x61, 0x5b, 0xe9, 0x9e, 0xcf, 0xf0, 0xa2, 0x55 +.byte 0x7d, 0x7c, 0x25, 0x8a, 0x6f, 0x2f, 0xb4, 0xc5, 0xcf, 0x84, 0x2e, 0x2b, 0xfd, 0x0d, 0x51, 0x10 +.byte 0x6c, 0xfb, 0x5f, 0x1b, 0xbc, 0x1b, 0x7e, 0xc5, 0xae, 0x3b, 0x98, 0x01, 0x31, 0x92, 0xff, 0x0b +.byte 0x57, 0xf4, 0x9a, 0xb2, 0xb9, 0x57, 0xe9, 0xab, 0xef, 0x0d, 0x76, 0xd1, 0xf0, 0xee, 0xf4, 0xce +.byte 0x86, 0xa7, 0xe0, 0x6e, 0xe9, 0xb4, 0x69, 0xa1, 0xdf, 0x69, 0xf6, 0x33, 0xc6, 0x69, 0x2e, 0x97 +.byte 0x13, 0x9e, 0xa5, 0x87, 0xb0, 0x57, 0x10, 0x81, 0x37, 0xc9, 0x53, 0xb3, 0xbb, 0x7f, 0xf6, 0x92 +.byte 0xd1, 0x9c, 0xd0, 0x18, 0xf4, 0x92, 0x6e, 0xda, 0x83, 0x4f, 0xa6, 0x63, 0x99, 0x4c, 0xa5, 0xfb +.byte 0x5e, 0xef, 0x21, 0x64, 0x7a, 0x20, 0x5f, 0x6c, 0x64, 0x85, 0x15, 0xcb, 0x37, 0xe9, 0x62, 0x0c +.byte 0x0b, 0x2a, 0x16, 0xdc, 0x01, 0x2e, 0x32, 0xda, 0x3e, 0x4b, 0xf5, 0x9e, 0x3a, 0xf6, 0x17, 0x40 +.byte 0x94, 0xef, 0x9e, 0x91, 0x08, 0x86, 0xfa, 0xbe, 0x63, 0xa8, 0x5a, 0x33, 0xec, 0xcb, 0x74, 0x43 +.byte 0x95, 0xf9, 0x6c, 0x69, 0x52, 0x36, 0xc7, 0x29, 0x6f, 0xfc, 0x55, 0x03, 0x5c, 0x1f, 0xfb, 0x9f +.byte 0xbd, 0x47, 0xeb, 0xe7, 0x49, 0x47, 0x95, 0x0b, 0x4e, 0x89, 0x22, 0x09, 0x49, 0xe0, 0xf5, 0x61 +.byte 0x1e, 0xf1, 0xbf, 0x2e, 0x8a, 0x72, 0x6e, 0x80, 0x59, 0xff, 0x57, 0x3a, 0xf9, 0x75, 0x32, 0xa3 +.byte 0x4e, 0x5f, 0xec, 0xed, 0x28, 0x62, 0xd9, 0x4d, 0x73, 0xf2, 0xcc, 0x81, 0x17, 0x60, 0xed, 0xcd +.byte 0xeb, 0xdc, 0xdb, 0xa7, 0xca, 0xc5, 0x7e, 0x02, 0xbd, 0xf2, 0x54, 0x08, 0x54, 0xfd, 0xb4, 0x2d +.byte 0x09, 0x2c, 0x17, 0x54, 0x4a, 0x98, 0xd1, 0x54, 0xe1, 0x51, 0x67, 0x08, 0xd2, 0xed, 0x6e, 0x7e +.byte 0x6f, 0x3f, 0xd2, 0x2d, 0x81, 0x59, 0x29, 0x66, 0xcb, 0x90, 0x39, 0x95, 0x11, 0x1e, 0x74, 0x27 +.byte 0xfe, 0xdd, 0xeb, 0xaf, 0x02, 0x03, 0x01, 0x00, 0x01, 0x3b, 0x00, 0x5b, 0x00, 0x30, 0x39, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x0f, 0x30, 0x0d +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x06, 0x41, 0x6d, 0x61, 0x7a, 0x6f, 0x6e, 0x31, 0x19, 0x30 +.byte 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x10, 0x41, 0x6d, 0x61, 0x7a, 0x6f, 0x6e, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x33, 0x30, 0x59, 0x30, 0x13, 0x06, 0x07, 0x2a, 0x86 +.byte 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x08, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x03, 0x01, 0x07, 0x03 +.byte 0x42, 0x00, 0x04, 0x29, 0x97, 0xa7, 0xc6, 0x41, 0x7f, 0xc0, 0x0d, 0x9b, 0xe8, 0x01, 0x1b, 0x56 +.byte 0xc6, 0xf2, 0x52, 0xa5, 0xba, 0x2d, 0xb2, 0x12, 0xe8, 0xd2, 0x2e, 0xd7, 0xfa, 0xc9, 0xc5, 0xd8 +.byte 0xaa, 0x6d, 0x1f, 0x73, 0x81, 0x3b, 0x3b, 0x98, 0x6b, 0x39, 0x7c, 0x33, 0xa5, 0xc5, 0x4e, 0x86 +.byte 0x8e, 0x80, 0x17, 0x68, 0x62, 0x45, 0x57, 0x7d, 0x44, 0x58, 0x1d, 0xb3, 0x37, 0xe5, 0x67, 0x08 +.byte 0xeb, 0x66, 0xde, 0x3b, 0x00, 0x78, 0x00, 0x30, 0x39, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x0f, 0x30, 0x0d, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 +.byte 0x06, 0x41, 0x6d, 0x61, 0x7a, 0x6f, 0x6e, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x13, 0x10, 0x41, 0x6d, 0x61, 0x7a, 0x6f, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41 +.byte 0x20, 0x34, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06 +.byte 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xd2, 0xab, 0x8a, 0x37, 0x4f, 0xa3 +.byte 0x53, 0x0d, 0xfe, 0xc1, 0x8a, 0x7b, 0x4b, 0xa8, 0x7b, 0x46, 0x4b, 0x63, 0xb0, 0x62, 0xf6, 0x2d +.byte 0x1b, 0xdb, 0x08, 0x71, 0x21, 0xd2, 0x00, 0xe8, 0x63, 0xbd, 0x9a, 0x27, 0xfb, 0xf0, 0x39, 0x6e +.byte 0x5d, 0xea, 0x3d, 0xa5, 0xc9, 0x81, 0xaa, 0xa3, 0x5b, 0x20, 0x98, 0x45, 0x5d, 0x16, 0xdb, 0xfd +.byte 0xe8, 0x10, 0x6d, 0xe3, 0x9c, 0xe0, 0xe3, 0xbd, 0x5f, 0x84, 0x62, 0xf3, 0x70, 0x64, 0x33, 0xa0 +.byte 0xcb, 0x24, 0x2f, 0x70, 0xba, 0x88, 0xa1, 0x2a, 0xa0, 0x75, 0xf8, 0x81, 0xae, 0x62, 0x06, 0xc4 +.byte 0x81, 0xdb, 0x39, 0x6e, 0x29, 0xb0, 0x1e, 0xfa, 0x2e, 0x5c, 0x3d, 0x00, 0x26, 0x02, 0x30, 0x3b +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x45, 0x53, 0x31, 0x11, 0x30 +.byte 0x0f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x08, 0x46, 0x4e, 0x4d, 0x54, 0x2d, 0x52, 0x43, 0x4d +.byte 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x10, 0x41, 0x43, 0x20, 0x52, 0x41 +.byte 0x49, 0x5a, 0x20, 0x46, 0x4e, 0x4d, 0x54, 0x2d, 0x52, 0x43, 0x4d, 0x30, 0x82, 0x02, 0x22, 0x30 +.byte 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82 +.byte 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xba, 0x71, 0x80, 0x7a +.byte 0x4c, 0x86, 0x6e, 0x7f, 0xc8, 0x13, 0x6d, 0xc0, 0xc6, 0x7d, 0x1c, 0x00, 0x97, 0x8f, 0x2c, 0x0c +.byte 0x23, 0xbb, 0x10, 0x9a, 0x40, 0xa9, 0x1a, 0xb7, 0x87, 0x88, 0xf8, 0x9b, 0x56, 0x6a, 0xfb, 0xe6 +.byte 0x7b, 0x8e, 0x8b, 0x92, 0x8e, 0xa7, 0x25, 0x5d, 0x59, 0x11, 0xdb, 0x36, 0x2e, 0xb7, 0x51, 0x17 +.byte 0x1f, 0xa9, 0x08, 0x1f, 0x04, 0x17, 0x24, 0x58, 0xaa, 0x37, 0x4a, 0x18, 0xdf, 0xe5, 0x39, 0xd4 +.byte 0x57, 0xfd, 0xd7, 0xc1, 0x2c, 0x91, 0x01, 0x91, 0xe2, 0x22, 0xd4, 0x03, 0xc0, 0x58, 0xfc, 0x77 +.byte 0x47, 0xec, 0x8f, 0x3e, 0x74, 0x43, 0xba, 0xac, 0x34, 0x8d, 0x4d, 0x38, 0x76, 0x67, 0x8e, 0xb0 +.byte 0xc8, 0x6f, 0x30, 0x33, 0x58, 0x71, 0x5c, 0xb4, 0xf5, 0x6b, 0x6e, 0xd4, 0x01, 0x50, 0xb8, 0x13 +.byte 0x7e, 0x6c, 0x4a, 0xa3, 0x49, 0xd1, 0x20, 0x19, 0xee, 0xbc, 0xc0, 0x29, 0x18, 0x65, 0xa7, 0xde +.byte 0xfe, 0xef, 0xdd, 0x0a, 0x90, 0x21, 0xe7, 0x1a, 0x67, 0x92, 0x42, 0x10, 0x98, 0x5f, 0x4f, 0x30 +.byte 0xbc, 0x3e, 0x1c, 0x45, 0xb4, 0x10, 0xd7, 0x68, 0x40, 0x14, 0xc0, 0x40, 0xfa, 0xe7, 0x77, 0x17 +.byte 0x7a, 0xe6, 0x0b, 0x8f, 0x65, 0x5b, 0x3c, 0xd9, 0x9a, 0x52, 0xdb, 0xb5, 0xbd, 0x9e, 0x46, 0xcf +.byte 0x3d, 0xeb, 0x91, 0x05, 0x02, 0xc0, 0x96, 0xb2, 0x76, 0x4c, 0x4d, 0x10, 0x96, 0x3b, 0x92, 0xfa +.byte 0x9c, 0x7f, 0x0f, 0x99, 0xdf, 0xbe, 0x23, 0x35, 0x45, 0x1e, 0x02, 0x5c, 0xfe, 0xb5, 0xa8, 0x9b +.byte 0x99, 0x25, 0xda, 0x5e, 0xf3, 0x22, 0xc3, 0x39, 0xf5, 0xe4, 0x2a, 0x2e, 0xd3, 0xc6, 0x1f, 0xc4 +.byte 0x6c, 0xaa, 0xc5, 0x1c, 0x6a, 0x01, 0x05, 0x4a, 0x2f, 0xd2, 0xc5, 0xc1, 0xa8, 0x34, 0x26, 0x5d +.byte 0x66, 0xa5, 0xd2, 0x02, 0x21, 0xf9, 0x18, 0xb7, 0x06, 0xf5, 0x4e, 0x99, 0x6f, 0xa8, 0xab, 0x4c +.byte 0x51, 0xe8, 0xcf, 0x50, 0x18, 0xc5, 0x77, 0xc8, 0x39, 0x09, 0x2c, 0x49, 0x92, 0x32, 0x99, 0xa8 +.byte 0xbb, 0x17, 0x17, 0x79, 0xb0, 0x5a, 0xc5, 0xe6, 0xa3, 0xc4, 0x59, 0x65, 0x47, 0x35, 0x83, 0x5e +.byte 0xa9, 0xe8, 0x35, 0x0b, 0x99, 0xbb, 0xe4, 0xcd, 0x20, 0xc6, 0x9b, 0x4a, 0x06, 0x39, 0xb5, 0x68 +.byte 0xfc, 0x22, 0xba, 0xee, 0x55, 0x8c, 0x2b, 0x4e, 0xea, 0xf3, 0xb1, 0xe3, 0xfc, 0xb6, 0x99, 0x9a +.byte 0xd5, 0x42, 0xfa, 0x71, 0x4d, 0x08, 0xcf, 0x87, 0x1e, 0x6a, 0x71, 0x7d, 0xf9, 0xd3, 0xb4, 0xe9 +.byte 0xa5, 0x71, 0x81, 0x7b, 0xc2, 0x4e, 0x47, 0x96, 0xa5, 0xf6, 0x76, 0x85, 0xa3, 0x28, 0x8f, 0xe9 +.byte 0x80, 0x6e, 0x81, 0x53, 0xa5, 0x6d, 0x5f, 0xb8, 0x48, 0xf9, 0xc2, 0xf9, 0x36, 0xa6, 0x2e, 0x49 +.byte 0xff, 0xb8, 0x96, 0xc2, 0x8c, 0x07, 0xb3, 0x9b, 0x88, 0x58, 0xfc, 0xeb, 0x1b, 0x1c, 0xde, 0x2d +.byte 0x70, 0xe2, 0x97, 0x92, 0x30, 0xa1, 0x89, 0xe3, 0xbc, 0x55, 0xa8, 0x27, 0xd6, 0x4b, 0xed, 0x90 +.byte 0xad, 0x8b, 0xfa, 0x63, 0x25, 0x59, 0x2d, 0xa8, 0x35, 0xdd, 0xca, 0x97, 0x33, 0xbc, 0xe5, 0xcd +.byte 0xc7, 0x9d, 0xd1, 0xec, 0xef, 0x5e, 0x0e, 0x4a, 0x90, 0x06, 0x26, 0x63, 0xad, 0xb9, 0xd9, 0x35 +.byte 0x2d, 0x07, 0xba, 0x76, 0x65, 0x2c, 0xac, 0x57, 0x8f, 0x7d, 0xf4, 0x07, 0x94, 0xd7, 0x81, 0x02 +.byte 0x96, 0x5d, 0xa3, 0x07, 0x49, 0xd5, 0x7a, 0xd0, 0x57, 0xf9, 0x1b, 0xe7, 0x53, 0x46, 0x75, 0xaa +.byte 0xb0, 0x79, 0x42, 0xcb, 0x68, 0x71, 0x08, 0xe9, 0x60, 0xbd, 0x39, 0x69, 0xce, 0xf4, 0xaf, 0xc3 +.byte 0x56, 0x40, 0xc7, 0xad, 0x52, 0xa2, 0x09, 0xe4, 0x6f, 0x86, 0x47, 0x8a, 0x1f, 0xeb, 0x28, 0x27 +.byte 0x5d, 0x83, 0x20, 0xaf, 0x04, 0xc9, 0x6c, 0x56, 0x9a, 0x8b, 0x46, 0xf5, 0x02, 0x03, 0x01, 0x00 +.byte 0x01, 0x3d, 0x00, 0x26, 0x01, 0x30, 0x3b, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 +.byte 0x13, 0x02, 0x52, 0x4f, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x08, 0x63 +.byte 0x65, 0x72, 0x74, 0x53, 0x49, 0x47, 0x4e, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b +.byte 0x13, 0x10, 0x63, 0x65, 0x72, 0x74, 0x53, 0x49, 0x47, 0x4e, 0x20, 0x52, 0x4f, 0x4f, 0x54, 0x20 +.byte 0x43, 0x41, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d +.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82 +.byte 0x01, 0x01, 0x00, 0xb7, 0x33, 0xb9, 0x7e, 0xc8, 0x25, 0x4a, 0x8e, 0xb5, 0xdb, 0xb4, 0x28, 0x1b +.byte 0xaa, 0x57, 0x90, 0xe8, 0xd1, 0x22, 0xd3, 0x64, 0xba, 0xd3, 0x93, 0xe8, 0xd4, 0xac, 0x86, 0x61 +.byte 0x40, 0x6a, 0x60, 0x57, 0x68, 0x54, 0x84, 0x4d, 0xbc, 0x6a, 0x54, 0x02, 0x05, 0xff, 0xdf, 0x9b +.byte 0x9a, 0x2a, 0xae, 0x5d, 0x07, 0x8f, 0x4a, 0xc3, 0x28, 0x7f, 0xef, 0xfb, 0x2b, 0xfa, 0x79, 0xf1 +.byte 0xc7, 0xad, 0xf0, 0x10, 0x53, 0x24, 0x90, 0x8b, 0x66, 0xc9, 0xa8, 0x88, 0xab, 0xaf, 0x5a, 0xa3 +.byte 0x00, 0xe9, 0xbe, 0xba, 0x46, 0xee, 0x5b, 0x73, 0x7b, 0x2c, 0x17, 0x82, 0x81, 0x5e, 0x62, 0x2c +.byte 0xa1, 0x02, 0x65, 0xb3, 0xbd, 0xc5, 0x2b, 0x00, 0x7e, 0xc4, 0xfc, 0x03, 0x33, 0x57, 0x0d, 0xed +.byte 0xe2, 0xfa, 0xce, 0x5d, 0x45, 0xd6, 0x38, 0xcd, 0x35, 0xb6, 0xb2, 0xc1, 0xd0, 0x9c, 0x81, 0x4a +.byte 0xaa, 0xe4, 0xb2, 0x01, 0x5c, 0x1d, 0x8f, 0x5f, 0x99, 0xc4, 0xb1, 0xad, 0xdb, 0x88, 0x21, 0xeb +.byte 0x90, 0x08, 0x82, 0x80, 0xf3, 0x30, 0xa3, 0x43, 0xe6, 0x90, 0x82, 0xae, 0x55, 0x28, 0x49, 0xed +.byte 0x5b, 0xd7, 0xa9, 0x10, 0x38, 0x0e, 0xfe, 0x8f, 0x4c, 0x5b, 0x9b, 0x46, 0xea, 0x41, 0xf5, 0xb0 +.byte 0x08, 0x74, 0xc3, 0xd0, 0x88, 0x33, 0xb6, 0x7c, 0xd7, 0x74, 0xdf, 0xdc, 0x84, 0xd1, 0x43, 0x0e +.byte 0x75, 0x39, 0xa1, 0x25, 0x40, 0x28, 0xea, 0x78, 0xcb, 0x0e, 0x2c, 0x2e, 0x39, 0x9d, 0x8c, 0x8b +.byte 0x6e, 0x16, 0x1c, 0x2f, 0x26, 0x82, 0x10, 0xe2, 0xe3, 0x65, 0x94, 0x0a, 0x04, 0xc0, 0x5e, 0xf7 +.byte 0x5d, 0x5b, 0xf8, 0x10, 0xe2, 0xd0, 0xba, 0x7a, 0x4b, 0xfb, 0xde, 0x37, 0x00, 0x00, 0x1a, 0x5b +.byte 0x28, 0xe3, 0xd2, 0x9c, 0x73, 0x3e, 0x32, 0x87, 0x98, 0xa1, 0xc9, 0x51, 0x2f, 0xd7, 0xde, 0xac +.byte 0x33, 0xb3, 0x4f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x3e, 0x00, 0x26, 0x01, 0x30, 0x3c, 0x31, 0x1e +.byte 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x15, 0x41, 0x74, 0x6f, 0x73, 0x20, 0x54, 0x72 +.byte 0x75, 0x73, 0x74, 0x65, 0x64, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x32, 0x30, 0x31, 0x31, 0x31, 0x0d +.byte 0x30, 0x0b, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x04, 0x41, 0x74, 0x6f, 0x73, 0x31, 0x0b, 0x30 +.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d +.byte 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01 +.byte 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0x95, 0x85, 0x3b, 0x97, 0x6f +.byte 0x2a, 0x3b, 0x2e, 0x3b, 0xcf, 0xa6, 0xf3, 0x29, 0x35, 0xbe, 0xcf, 0x18, 0xac, 0x3e, 0xaa, 0xd9 +.byte 0xf8, 0x4d, 0xa0, 0x3e, 0x1a, 0x47, 0xb9, 0xbc, 0x9a, 0xdf, 0xf2, 0xfe, 0xcc, 0x3e, 0x47, 0xe8 +.byte 0x7a, 0x96, 0xc2, 0x24, 0x8e, 0x35, 0xf4, 0xa9, 0x0c, 0xfc, 0x82, 0xfd, 0x6d, 0xc1, 0x72, 0x62 +.byte 0x27, 0xbd, 0xea, 0x6b, 0xeb, 0xe7, 0x8a, 0xcc, 0x54, 0x3e, 0x90, 0x50, 0xcf, 0x80, 0xd4, 0x95 +.byte 0xfb, 0xe8, 0xb5, 0x82, 0xd4, 0x14, 0xc5, 0xb6, 0xa9, 0x55, 0x25, 0x57, 0xdb, 0xb1, 0x50, 0xf6 +.byte 0xb0, 0x60, 0x64, 0x59, 0x7a, 0x69, 0xcf, 0x03, 0xb7, 0x6f, 0x0d, 0xbe, 0xca, 0x3e, 0x6f, 0x74 +.byte 0x72, 0xea, 0xaa, 0x30, 0x2a, 0x73, 0x62, 0xbe, 0x49, 0x91, 0x61, 0xc8, 0x11, 0xfe, 0x0e, 0x03 +.byte 0x2a, 0xf7, 0x6a, 0x20, 0xdc, 0x02, 0x15, 0x0d, 0x5e, 0x15, 0x6a, 0xfc, 0xe3, 0x82, 0xc1, 0xb5 +.byte 0xc5, 0x9d, 0x64, 0x09, 0x6c, 0xa3, 0x59, 0x98, 0x07, 0x27, 0xc7, 0x1b, 0x96, 0x2b, 0x61, 0x74 +.byte 0x71, 0x6c, 0x43, 0xf1, 0xf7, 0x35, 0x89, 0x10, 0xe0, 0x9e, 0xec, 0x55, 0xa1, 0x37, 0x22, 0xa2 +.byte 0x87, 0x04, 0x05, 0x2c, 0x47, 0x7d, 0xb4, 0x1c, 0xb9, 0x62, 0x29, 0x66, 0x28, 0xca, 0xb7, 0xe1 +.byte 0x93, 0xf5, 0xa4, 0x94, 0x03, 0x99, 0xb9, 0x70, 0x85, 0xb5, 0xe6, 0x48, 0xea, 0x8d, 0x50, 0xfc +.byte 0xd9, 0xde, 0xcc, 0x6f, 0x07, 0x0e, 0xdd, 0x0b, 0x72, 0x9d, 0x80, 0x30, 0x16, 0x07, 0x95, 0x3f +.byte 0x28, 0x0e, 0xfd, 0xc5, 0x75, 0x4f, 0x53, 0xd6, 0x74, 0x9a, 0xb4, 0x24, 0x2e, 0x8e, 0x02, 0x91 +.byte 0xcf, 0x76, 0xc5, 0x9b, 0x1e, 0x55, 0x74, 0x9c, 0x78, 0x21, 0xb1, 0xf0, 0x2d, 0xf1, 0x0b, 0x9f +.byte 0xc2, 0xd5, 0x96, 0x18, 0x1f, 0xf0, 0x54, 0x22, 0x7a, 0x8c, 0x07, 0x02, 0x03, 0x01, 0x00, 0x01 +.byte 0x3f, 0x00, 0x26, 0x02, 0x30, 0x3d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x43, 0x4e, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x08, 0x55, 0x6e +.byte 0x69, 0x54, 0x72, 0x75, 0x73, 0x74, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c +.byte 0x12, 0x55, 0x43, 0x41, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x47, 0x32, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7 +.byte 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02 +.byte 0x82, 0x02, 0x01, 0x00, 0xc5, 0xe6, 0x2b, 0x6f, 0x7c, 0xef, 0x26, 0x05, 0x27, 0xa3, 0x81, 0x24 +.byte 0xda, 0x6f, 0xcb, 0x01, 0xf9, 0x99, 0x9a, 0xa9, 0x32, 0xc2, 0x22, 0x87, 0x61, 0x41, 0x91, 0x3b +.byte 0xcb, 0xc3, 0x68, 0x1b, 0x06, 0xc5, 0x4c, 0xa9, 0x2b, 0xc1, 0x67, 0x17, 0x22, 0x1d, 0x2b, 0xed +.byte 0xf9, 0x29, 0x89, 0x93, 0xa2, 0x78, 0xbd, 0x92, 0x6b, 0xa0, 0xa3, 0x0d, 0xa2, 0x7e, 0xca, 0x93 +.byte 0xb3, 0xa6, 0xd1, 0x8c, 0x35, 0xd5, 0x75, 0xf9, 0x17, 0xf6, 0xcf, 0x45, 0xc5, 0xe5, 0x7a, 0xec +.byte 0x77, 0x93, 0xa0, 0x8f, 0x23, 0xae, 0x0e, 0x1a, 0x03, 0x7f, 0xbe, 0xd4, 0xd0, 0xed, 0x2e, 0x7b +.byte 0xab, 0x46, 0x23, 0x5b, 0xff, 0x2c, 0xe6, 0x54, 0x7a, 0x94, 0xc0, 0x2a, 0x15, 0xf0, 0xc9, 0x8d +.byte 0xb0, 0x7a, 0x3b, 0x24, 0xe1, 0xd7, 0x68, 0xe2, 0x31, 0x3c, 0x06, 0x33, 0x46, 0xb6, 0x54, 0x11 +.byte 0xa6, 0xa5, 0x2f, 0x22, 0x54, 0x2a, 0x58, 0x0d, 0x01, 0x02, 0xf1, 0xfa, 0x15, 0x51, 0x67, 0x6c +.byte 0xc0, 0xfa, 0xd7, 0xb6, 0x1b, 0x7f, 0xd1, 0x56, 0x88, 0x2f, 0x1a, 0x3a, 0x8d, 0x3b, 0xbb, 0x82 +.byte 0x11, 0xe0, 0x47, 0x00, 0xd0, 0x52, 0x87, 0xab, 0xfb, 0x86, 0x7e, 0x0f, 0x24, 0x6b, 0x40, 0x9d +.byte 0x34, 0x67, 0xbc, 0x8d, 0xc7, 0x2d, 0x86, 0x6f, 0x79, 0x3e, 0x8e, 0xa9, 0x3c, 0x17, 0x4b, 0x7f +.byte 0xb0, 0x99, 0xe3, 0xb0, 0x71, 0x60, 0xdc, 0x0b, 0xf5, 0x64, 0xc3, 0xce, 0x43, 0xbc, 0x6d, 0x71 +.byte 0xb9, 0xd2, 0xde, 0x27, 0x5b, 0x8a, 0xe8, 0xd8, 0xc6, 0xae, 0xe1, 0x59, 0x7d, 0xcf, 0x28, 0x2d +.byte 0x35, 0xb8, 0x95, 0x56, 0x1a, 0xf1, 0xb2, 0x58, 0x4b, 0xb7, 0x12, 0x37, 0xc8, 0x7c, 0xb3, 0xed +.byte 0x4b, 0x80, 0xe1, 0x8d, 0xfa, 0x32, 0x23, 0xb6, 0x6f, 0xb7, 0x48, 0x95, 0x08, 0xb1, 0x44, 0x4e +.byte 0x85, 0x8c, 0x3a, 0x02, 0x54, 0x20, 0x2f, 0xdf, 0xbf, 0x57, 0x4f, 0x3b, 0x3a, 0x90, 0x21, 0xd7 +.byte 0xc1, 0x26, 0x35, 0x54, 0x20, 0xec, 0xc7, 0x3f, 0x47, 0xec, 0xef, 0x5a, 0xbf, 0x4b, 0x7a, 0xc1 +.byte 0xad, 0x3b, 0x17, 0x50, 0x5c, 0x62, 0xd8, 0x0f, 0x4b, 0x4a, 0xdc, 0x2b, 0xfa, 0x6e, 0xbc, 0x73 +.byte 0x92, 0xcd, 0xec, 0xc7, 0x50, 0xe8, 0x41, 0x96, 0xd7, 0xa9, 0x7e, 0x6d, 0xd8, 0xe9, 0x1d, 0x8f +.byte 0x8a, 0xb5, 0xb9, 0x58, 0x92, 0xba, 0x4a, 0x92, 0x2b, 0x0c, 0x56, 0xfd, 0x80, 0xeb, 0x08, 0xf0 +.byte 0x5e, 0x29, 0x6e, 0x1b, 0x1c, 0x0c, 0xaf, 0x8f, 0x93, 0x89, 0xad, 0xdb, 0xbd, 0xa3, 0x9e, 0x21 +.byte 0xca, 0x89, 0x19, 0xec, 0xdf, 0xb5, 0xc3, 0x1a, 0xeb, 0x16, 0xfe, 0x78, 0x36, 0x4c, 0xd6, 0x6e +.byte 0xd0, 0x3e, 0x17, 0x1c, 0x90, 0x17, 0x6b, 0x26, 0xba, 0xfb, 0x7a, 0x2f, 0xbf, 0x11, 0x1c, 0x18 +.byte 0x0e, 0x2d, 0x73, 0x03, 0x8f, 0xa0, 0xe5, 0x35, 0xa0, 0x5a, 0xe2, 0x4c, 0x75, 0x1d, 0x71, 0xe1 +.byte 0x39, 0x38, 0x53, 0x78, 0x40, 0xcc, 0x83, 0x93, 0xd7, 0x0a, 0x9e, 0x9d, 0x5b, 0x8f, 0x8a, 0xe4 +.byte 0xe5, 0xe0, 0x48, 0xe4, 0x48, 0xb2, 0x47, 0xcd, 0x4e, 0x2a, 0x75, 0x2a, 0x7b, 0xf2, 0x22, 0xf6 +.byte 0xc9, 0xbe, 0x09, 0x91, 0x96, 0x57, 0x7a, 0x88, 0x88, 0xac, 0xee, 0x70, 0xac, 0xf9, 0xdc, 0x29 +.byte 0xe3, 0x0c, 0x1c, 0x3b, 0x12, 0x4e, 0x44, 0xd6, 0xa7, 0x4e, 0xb0, 0x26, 0xc8, 0xf3, 0xd9, 0x1a +.byte 0x97, 0x91, 0x68, 0xea, 0xef, 0x8d, 0x46, 0x06, 0xd2, 0x56, 0x45, 0x58, 0x9a, 0x3c, 0x0c, 0x0f +.byte 0x83, 0xb8, 0x05, 0x25, 0xc3, 0x39, 0xcf, 0x3b, 0xa4, 0x34, 0x89, 0xb7, 0x79, 0x12, 0x2f, 0x47 +.byte 0xc5, 0xe7, 0xa9, 0x97, 0x69, 0xfc, 0xa6, 0x77, 0x67, 0xb5, 0xdf, 0x7b, 0xf1, 0x7a, 0x65, 0x15 +.byte 0xe4, 0x61, 0x56, 0x65, 0x02, 0x03, 0x01, 0x00, 0x01, 0x3f, 0x00, 0x78, 0x00, 0x30, 0x3d, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x12, 0x30, 0x10 +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x09, 0x43, 0x65, 0x72, 0x74, 0x61, 0x69, 0x6e, 0x6c, 0x79 +.byte 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x11, 0x43, 0x65, 0x72, 0x74, 0x61 +.byte 0x69, 0x6e, 0x6c, 0x79, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x45, 0x31, 0x30, 0x76, 0x30, 0x10 +.byte 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22 +.byte 0x03, 0x62, 0x00, 0x04, 0xde, 0x6f, 0xf8, 0x7f, 0x1c, 0xdf, 0xed, 0xf9, 0x47, 0x87, 0x86, 0xb1 +.byte 0xa4, 0xc0, 0x8a, 0xf8, 0x82, 0x97, 0x80, 0xea, 0x8f, 0xc8, 0x4a, 0x5e, 0x2a, 0x7d, 0x88, 0x68 +.byte 0xa7, 0x01, 0x62, 0x14, 0x91, 0x24, 0x7a, 0x5c, 0x9e, 0xa3, 0x17, 0x7d, 0x8a, 0x86, 0x21, 0x34 +.byte 0x18, 0x50, 0x1b, 0x10, 0xde, 0xd0, 0x37, 0x4b, 0x26, 0xc7, 0x19, 0x60, 0x80, 0xe9, 0x34, 0xbd +.byte 0x60, 0x19, 0x36, 0x40, 0xd6, 0x29, 0x87, 0x09, 0x3c, 0x91, 0x7a, 0xf6, 0xbc, 0x13, 0x23, 0xdd +.byte 0x59, 0x4e, 0x04, 0x5e, 0xcf, 0xc8, 0x02, 0x1c, 0x18, 0x53, 0xc1, 0x31, 0xd8, 0xda, 0x20, 0xe9 +.byte 0x44, 0x8d, 0xe4, 0x76, 0x3f, 0x00, 0x26, 0x02, 0x30, 0x3d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x13, 0x09, 0x43, 0x65, 0x72, 0x74, 0x61, 0x69, 0x6e, 0x6c, 0x79, 0x31, 0x1a, 0x30, 0x18, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x11, 0x43, 0x65, 0x72, 0x74, 0x61, 0x69, 0x6e, 0x6c, 0x79, 0x20 +.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x52, 0x31, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a +.byte 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30 +.byte 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xd0, 0x36, 0xd4, 0x1f, 0xea, 0xdd, 0xab, 0xe4 +.byte 0xd1, 0xb6, 0xe6, 0xfb, 0x22, 0xc0, 0xdd, 0x13, 0x0d, 0x6a, 0x7b, 0x22, 0x13, 0x1c, 0x97, 0x3c +.byte 0x68, 0x63, 0x66, 0x32, 0x9c, 0x03, 0xb5, 0x8d, 0xa4, 0x81, 0x83, 0xda, 0x78, 0x30, 0x11, 0xcf +.byte 0xdc, 0xb2, 0x2b, 0xbe, 0x92, 0xbf, 0x8e, 0xe4, 0xc4, 0x13, 0xbe, 0xa4, 0x68, 0x4c, 0xda, 0x02 +.byte 0x68, 0x16, 0x74, 0xbe, 0xb2, 0xdd, 0x04, 0xe4, 0x6b, 0x2a, 0xdd, 0x37, 0x1f, 0x60, 0x2c, 0xdb +.byte 0xf5, 0xf7, 0xa1, 0x7c, 0x95, 0xb7, 0x0c, 0x70, 0x86, 0x2e, 0xf1, 0x3a, 0xef, 0x52, 0xf7, 0xcc +.byte 0xd3, 0x9b, 0xf9, 0x8b, 0xbe, 0x0e, 0xdf, 0x31, 0xb7, 0x9d, 0x68, 0x5c, 0x92, 0xa6, 0xf5, 0xe5 +.byte 0xf3, 0x0a, 0x34, 0xb5, 0xff, 0x7b, 0xa2, 0xe4, 0x87, 0xa1, 0xc6, 0xaf, 0x17, 0x00, 0xef, 0x03 +.byte 0x91, 0xed, 0xa9, 0x1c, 0x4e, 0x71, 0x3d, 0xd2, 0x8b, 0x6c, 0x89, 0xf4, 0x78, 0x86, 0xe6, 0x6a +.byte 0x49, 0xa0, 0xce, 0xb5, 0xd2, 0xb0, 0xab, 0x9b, 0xf6, 0xf4, 0xd4, 0x2e, 0xe3, 0x72, 0xf9, 0x36 +.byte 0xc6, 0xeb, 0x15, 0xb7, 0x25, 0x8c, 0x3a, 0xfc, 0x25, 0x0d, 0xb3, 0x22, 0x73, 0x21, 0x74, 0xc8 +.byte 0x4a, 0x96, 0x61, 0x92, 0xf5, 0x2f, 0x0b, 0x18, 0xa5, 0xf4, 0xad, 0xe2, 0xee, 0x41, 0xbd, 0x01 +.byte 0x79, 0xfa, 0x96, 0x8c, 0x8d, 0x17, 0x02, 0x30, 0xb4, 0xf9, 0xaf, 0x78, 0x1a, 0x8c, 0xb4, 0x36 +.byte 0x10, 0x10, 0x07, 0x05, 0x70, 0xd0, 0xf4, 0x31, 0x90, 0x8a, 0x51, 0xc5, 0x86, 0x26, 0x79, 0xb2 +.byte 0x11, 0x88, 0x5e, 0xc5, 0xf0, 0x0a, 0x54, 0xcd, 0x49, 0xa6, 0xbf, 0x02, 0x9c, 0xd2, 0x44, 0xa7 +.byte 0xed, 0xe3, 0x78, 0xef, 0x46, 0x5e, 0x6d, 0x71, 0xd1, 0x79, 0x70, 0x1c, 0x46, 0x5f, 0x51, 0xe9 +.byte 0xc9, 0x37, 0xdc, 0x5f, 0x7e, 0x69, 0x7b, 0x41, 0xdf, 0x34, 0x45, 0xe0, 0x3b, 0x84, 0xf4, 0xa1 +.byte 0x8a, 0x0a, 0x36, 0x9e, 0x37, 0xcc, 0x62, 0x52, 0xe1, 0x89, 0x0d, 0x28, 0xf9, 0x7a, 0x23, 0xb1 +.byte 0x0d, 0x3d, 0x3d, 0x9a, 0xfd, 0x9d, 0x81, 0xef, 0x2c, 0x90, 0xc0, 0x7b, 0x44, 0x4e, 0xbb, 0x49 +.byte 0xe0, 0x0e, 0x4a, 0x56, 0x92, 0xbc, 0xcb, 0xb5, 0xdd, 0x79, 0x17, 0x89, 0x91, 0xde, 0x61, 0x89 +.byte 0x74, 0x92, 0xa8, 0xe3, 0x32, 0x85, 0xbe, 0x4e, 0x85, 0xa4, 0x4b, 0x59, 0xcb, 0x2b, 0xc5, 0x78 +.byte 0x8e, 0x71, 0x54, 0xd0, 0x02, 0x37, 0x99, 0x8c, 0xe5, 0x49, 0xea, 0xe0, 0x54, 0x72, 0xa4, 0x11 +.byte 0x06, 0x2f, 0x0b, 0x8c, 0xc1, 0x5b, 0xbe, 0xb5, 0xa1, 0xb0, 0x53, 0x6e, 0x9c, 0xb8, 0x60, 0x91 +.byte 0x1f, 0x59, 0x6b, 0xf9, 0x2d, 0xf4, 0x94, 0x0a, 0x97, 0xb5, 0xec, 0xc5, 0x76, 0x03, 0x54, 0x1b +.byte 0x65, 0x52, 0xba, 0x4c, 0x92, 0x56, 0x51, 0x35, 0xa0, 0x40, 0xd8, 0x29, 0xdb, 0xae, 0x52, 0x76 +.byte 0x3b, 0x2d, 0x30, 0x40, 0x9b, 0x8a, 0xd0, 0x42, 0x56, 0xb4, 0xb7, 0x88, 0x01, 0xa4, 0x87, 0x3b +.byte 0x53, 0x96, 0xcd, 0xa3, 0x16, 0x8f, 0xf3, 0x66, 0xaa, 0x17, 0xb1, 0xc7, 0x60, 0xe0, 0xc1, 0x43 +.byte 0x05, 0x0c, 0xee, 0x9b, 0x5b, 0x60, 0x6f, 0x06, 0x5c, 0x87, 0x5b, 0x27, 0xf9, 0x40, 0x11, 0x9e +.byte 0x9c, 0x33, 0xc1, 0xb7, 0xe5, 0x35, 0x57, 0x05, 0x7f, 0x27, 0xce, 0x17, 0x20, 0x8c, 0x1c, 0xfc +.byte 0xf1, 0xfb, 0xda, 0x31, 0x29, 0x49, 0xed, 0xf5, 0x0b, 0x84, 0xa7, 0x4f, 0xc1, 0xf6, 0x4e, 0xc2 +.byte 0x28, 0x9c, 0xfa, 0xee, 0xe0, 0xaf, 0x07, 0xfb, 0x33, 0x11, 0x7a, 0x21, 0x4f, 0x0b, 0x21, 0x10 +.byte 0xb6, 0x40, 0x3a, 0xab, 0x22, 0x3a, 0x04, 0x9c, 0x8b, 0x9b, 0x84, 0x86, 0x72, 0x9a, 0xd2, 0xa7 +.byte 0xa5, 0xc4, 0xb4, 0x75, 0x91, 0xa9, 0x2b, 0x23, 0x02, 0x03, 0x01, 0x00, 0x01, 0x43, 0x00, 0x26 +.byte 0x02, 0x30, 0x41, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x52, 0x4f +.byte 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0b, 0x43, 0x45, 0x52, 0x54, 0x53 +.byte 0x49, 0x47, 0x4e, 0x20, 0x53, 0x41, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13 +.byte 0x13, 0x63, 0x65, 0x72, 0x74, 0x53, 0x49, 0x47, 0x4e, 0x20, 0x52, 0x4f, 0x4f, 0x54, 0x20, 0x43 +.byte 0x41, 0x20, 0x47, 0x32, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86 +.byte 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a +.byte 0x02, 0x82, 0x02, 0x01, 0x00, 0xc0, 0xc5, 0x75, 0x19, 0x91, 0x7d, 0x44, 0x74, 0x74, 0x87, 0xfe +.byte 0x0e, 0x3b, 0x96, 0xdc, 0xd8, 0x01, 0x16, 0xcc, 0xee, 0x63, 0x91, 0xe7, 0x0b, 0x6f, 0xce, 0x3b +.byte 0x0a, 0x69, 0x1a, 0x7c, 0xc2, 0xe3, 0xaf, 0x82, 0x8e, 0x86, 0xd7, 0x5e, 0x8f, 0x57, 0xeb, 0xd3 +.byte 0x21, 0x59, 0xfd, 0x39, 0x37, 0x42, 0x30, 0xbe, 0x50, 0xea, 0xb6, 0x0f, 0xa9, 0x88, 0xd8, 0x2e +.byte 0x2d, 0x69, 0x21, 0xe7, 0xd1, 0x37, 0x18, 0x4e, 0x7d, 0x91, 0xd5, 0x16, 0x5f, 0x6b, 0x5b, 0x00 +.byte 0xc2, 0x39, 0x43, 0x0d, 0x36, 0x85, 0x52, 0xb9, 0x53, 0x65, 0x0f, 0x1d, 0x42, 0xe5, 0x8f, 0xcf +.byte 0x05, 0xd3, 0xee, 0xdc, 0x0c, 0x1a, 0xd9, 0xb8, 0x8b, 0x78, 0x22, 0x67, 0xe4, 0x69, 0xb0, 0x68 +.byte 0xc5, 0x3c, 0xe4, 0x6c, 0x5a, 0x46, 0xe7, 0xcd, 0xc7, 0xfa, 0xef, 0xc4, 0xec, 0x4b, 0xbd, 0x6a +.byte 0xa4, 0xac, 0xfd, 0xcc, 0x28, 0x51, 0xef, 0x92, 0xb4, 0x29, 0xab, 0xab, 0x35, 0x9a, 0x4c, 0xe4 +.byte 0xc4, 0x08, 0xc6, 0x26, 0xcc, 0xf8, 0x69, 0x9f, 0xe4, 0x9c, 0xf0, 0x29, 0xd3, 0x5c, 0xf9, 0xc6 +.byte 0x16, 0x25, 0x9e, 0x23, 0xc3, 0x20, 0xc1, 0x3d, 0x0f, 0x3f, 0x38, 0x40, 0xb0, 0xfe, 0x82, 0x44 +.byte 0x38, 0xaa, 0x5a, 0x1a, 0x8a, 0x6b, 0x63, 0x58, 0x38, 0xb4, 0x15, 0xd3, 0xb6, 0x11, 0x69, 0x7b +.byte 0x1e, 0x54, 0xee, 0x8c, 0x1a, 0x22, 0xac, 0x72, 0x97, 0x3f, 0x23, 0x59, 0x9b, 0xc9, 0x22, 0x84 +.byte 0xc1, 0x07, 0x4f, 0xcc, 0x7f, 0xe2, 0x57, 0xca, 0x12, 0x70, 0xbb, 0xa6, 0x65, 0xf3, 0x69, 0x75 +.byte 0x63, 0xbd, 0x95, 0xfb, 0x1b, 0x97, 0xcd, 0xe4, 0xa8, 0xaf, 0xf6, 0xd1, 0x4e, 0xa8, 0xd9, 0x8a +.byte 0x71, 0x24, 0xcd, 0x36, 0x3d, 0xbc, 0x96, 0xc4, 0xf1, 0x6c, 0xa9, 0xae, 0xe5, 0xcf, 0x0d, 0x6e +.byte 0x28, 0x0d, 0xb0, 0x0e, 0xb5, 0xca, 0x51, 0x7b, 0x78, 0x14, 0xc3, 0x20, 0x2f, 0x7f, 0xfb, 0x14 +.byte 0x55, 0xe1, 0x11, 0x99, 0xfd, 0xd5, 0x0a, 0xa1, 0x9e, 0x02, 0xe3, 0x62, 0x5f, 0xeb, 0x35, 0x4b +.byte 0x2c, 0xb8, 0x72, 0xe8, 0x3e, 0x3d, 0x4f, 0xac, 0x2c, 0xbb, 0x2e, 0x86, 0xe2, 0xa3, 0x76, 0x8f +.byte 0xe5, 0x93, 0x2a, 0xcf, 0xa5, 0xab, 0xc8, 0x5c, 0x8d, 0x4b, 0x06, 0xff, 0x12, 0x46, 0xac, 0x78 +.byte 0xcb, 0x14, 0x07, 0x35, 0xe0, 0xa9, 0xdf, 0x8b, 0xe9, 0xaf, 0x15, 0x4f, 0x16, 0x89, 0x5b, 0xbd +.byte 0xf6, 0x8d, 0xc6, 0x59, 0xae, 0x88, 0x85, 0x0e, 0xc1, 0x89, 0xeb, 0x1f, 0x67, 0xc5, 0x45, 0x8e +.byte 0xff, 0x6d, 0x37, 0x36, 0x2b, 0x78, 0x66, 0x83, 0x91, 0x51, 0x2b, 0x3d, 0xff, 0x51, 0x77, 0x76 +.byte 0x62, 0xa1, 0xec, 0x67, 0x3e, 0x3e, 0x81, 0x83, 0xe0, 0x56, 0xa9, 0x50, 0x1f, 0x1f, 0x7a, 0x99 +.byte 0xab, 0x63, 0xbf, 0x84, 0x17, 0x77, 0xf1, 0x0d, 0x3b, 0xdf, 0xf7, 0x9c, 0x61, 0xb3, 0x35, 0x98 +.byte 0x8a, 0x3a, 0xb2, 0xec, 0x3c, 0x1a, 0x37, 0x3f, 0x7e, 0x8f, 0x92, 0xcf, 0xd9, 0x12, 0x14, 0x64 +.byte 0xda, 0x10, 0x02, 0x15, 0x41, 0xff, 0x4f, 0xc4, 0xeb, 0x1c, 0xa3, 0xc9, 0xfa, 0x99, 0xf7, 0x46 +.byte 0xe9, 0xe1, 0x18, 0xd9, 0xb1, 0xb8, 0x32, 0x2d, 0xcb, 0x14, 0x0c, 0x50, 0xd8, 0x83, 0x65, 0x83 +.byte 0xee, 0xb9, 0x5c, 0xcf, 0xcb, 0x05, 0x5a, 0x4c, 0xfa, 0x19, 0x97, 0x6b, 0xd6, 0x5d, 0x13, 0xd3 +.byte 0xc2, 0x5c, 0x54, 0xbc, 0x32, 0x73, 0xa0, 0x78, 0xf5, 0xf1, 0x6d, 0x1e, 0xcb, 0x9f, 0xa5, 0xa6 +.byte 0x9f, 0x22, 0xdc, 0xd1, 0x51, 0x9e, 0x82, 0x79, 0x64, 0x60, 0x29, 0x13, 0x3e, 0xa3, 0xfd, 0x4f +.byte 0x72, 0x6a, 0xab, 0xe2, 0xd4, 0xe5, 0xb8, 0x24, 0x55, 0x2c, 0x44, 0x4b, 0x8a, 0x88, 0x44, 0x9c +.byte 0xca, 0x84, 0xd3, 0x2a, 0x3b, 0x02, 0x03, 0x01, 0x00, 0x01, 0x43, 0x00, 0x26, 0x02, 0x30, 0x41 +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x14, 0x30 +.byte 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0b, 0x41, 0x66, 0x66, 0x69, 0x72, 0x6d, 0x54, 0x72 +.byte 0x75, 0x73, 0x74, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x13, 0x41, 0x66 +.byte 0x66, 0x69, 0x72, 0x6d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x50, 0x72, 0x65, 0x6d, 0x69, 0x75 +.byte 0x6d, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01 +.byte 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02 +.byte 0x01, 0x00, 0xc4, 0x12, 0xdf, 0xa9, 0x5f, 0xfe, 0x41, 0xdd, 0xdd, 0xf5, 0x9f, 0x8a, 0xe3, 0xf6 +.byte 0xac, 0xe1, 0x3c, 0x78, 0x9a, 0xbc, 0xd8, 0xf0, 0x7f, 0x7a, 0xa0, 0x33, 0x2a, 0xdc, 0x8d, 0x20 +.byte 0x5b, 0xae, 0x2d, 0x6f, 0xe7, 0x93, 0xd9, 0x36, 0x70, 0x6a, 0x68, 0xcf, 0x8e, 0x51, 0xa3, 0x85 +.byte 0x5b, 0x67, 0x04, 0xa0, 0x10, 0x24, 0x6f, 0x5d, 0x28, 0x82, 0xc1, 0x97, 0x57, 0xd8, 0x48, 0x29 +.byte 0x13, 0xb6, 0xe1, 0xbe, 0x91, 0x4d, 0xdf, 0x85, 0x0c, 0x53, 0x18, 0x9a, 0x1e, 0x24, 0xa2, 0x4f +.byte 0x8f, 0xf0, 0xa2, 0x85, 0x0b, 0xcb, 0xf4, 0x29, 0x7f, 0xd2, 0xa4, 0x58, 0xee, 0x26, 0x4d, 0xc9 +.byte 0xaa, 0xa8, 0x7b, 0x9a, 0xd9, 0xfa, 0x38, 0xde, 0x44, 0x57, 0x15, 0xe5, 0xf8, 0x8c, 0xc8, 0xd9 +.byte 0x48, 0xe2, 0x0d, 0x16, 0x27, 0x1d, 0x1e, 0xc8, 0x83, 0x85, 0x25, 0xb7, 0xba, 0xaa, 0x55, 0x41 +.byte 0xcc, 0x03, 0x22, 0x4b, 0x2d, 0x91, 0x8d, 0x8b, 0xe6, 0x89, 0xaf, 0x66, 0xc7, 0xe9, 0xff, 0x2b +.byte 0xe9, 0x3c, 0xac, 0xda, 0xd2, 0xb3, 0xc3, 0xe1, 0x68, 0x9c, 0x89, 0xf8, 0x7a, 0x00, 0x56, 0xde +.byte 0xf4, 0x55, 0x95, 0x6c, 0xfb, 0xba, 0x64, 0xdd, 0x62, 0x8b, 0xdf, 0x0b, 0x77, 0x32, 0xeb, 0x62 +.byte 0xcc, 0x26, 0x9a, 0x9b, 0xbb, 0xaa, 0x62, 0x83, 0x4c, 0xb4, 0x06, 0x7a, 0x30, 0xc8, 0x29, 0xbf +.byte 0xed, 0x06, 0x4d, 0x97, 0xb9, 0x1c, 0xc4, 0x31, 0x2b, 0xd5, 0x5f, 0xbc, 0x53, 0x12, 0x17, 0x9c +.byte 0x99, 0x57, 0x29, 0x66, 0x77, 0x61, 0x21, 0x31, 0x07, 0x2e, 0x25, 0x49, 0x9d, 0x18, 0xf2, 0xee +.byte 0xf3, 0x2b, 0x71, 0x8c, 0xb5, 0xba, 0x39, 0x07, 0x49, 0x77, 0xfc, 0xef, 0x2e, 0x92, 0x90, 0x05 +.byte 0x8d, 0x2d, 0x2f, 0x77, 0x7b, 0xef, 0x43, 0xbf, 0x35, 0xbb, 0x9a, 0xd8, 0xf9, 0x73, 0xa7, 0x2c +.byte 0xf2, 0xd0, 0x57, 0xee, 0x28, 0x4e, 0x26, 0x5f, 0x8f, 0x90, 0x68, 0x09, 0x2f, 0xb8, 0xf8, 0xdc +.byte 0x06, 0xe9, 0x2e, 0x9a, 0x3e, 0x51, 0xa7, 0xd1, 0x22, 0xc4, 0x0a, 0xa7, 0x38, 0x48, 0x6c, 0xb3 +.byte 0xf9, 0xff, 0x7d, 0xab, 0x86, 0x57, 0xe3, 0xba, 0xd6, 0x85, 0x78, 0x77, 0xba, 0x43, 0xea, 0x48 +.byte 0x7f, 0xf6, 0xd8, 0xbe, 0x23, 0x6d, 0x1e, 0xbf, 0xd1, 0x36, 0x6c, 0x58, 0x5c, 0xf1, 0xee, 0xa4 +.byte 0x19, 0x54, 0x1a, 0xf5, 0x03, 0xd2, 0x76, 0xe6, 0xe1, 0x8c, 0xbd, 0x3c, 0xb3, 0xd3, 0x48, 0x4b +.byte 0xe2, 0xc8, 0xf8, 0x7f, 0x92, 0xa8, 0x76, 0x46, 0x9c, 0x42, 0x65, 0x3e, 0xa4, 0x1e, 0xc1, 0x07 +.byte 0x03, 0x5a, 0x46, 0x2d, 0xb8, 0x97, 0xf3, 0xb7, 0xd5, 0xb2, 0x55, 0x21, 0xef, 0xba, 0xdc, 0x4c +.byte 0x00, 0x97, 0xfb, 0x14, 0x95, 0x27, 0x33, 0xbf, 0xe8, 0x43, 0x47, 0x46, 0xd2, 0x08, 0x99, 0x16 +.byte 0x60, 0x3b, 0x9a, 0x7e, 0xd2, 0xe6, 0xed, 0x38, 0xea, 0xec, 0x01, 0x1e, 0x3c, 0x48, 0x56, 0x49 +.byte 0x09, 0xc7, 0x4c, 0x37, 0x00, 0x9e, 0x88, 0x0e, 0xc0, 0x73, 0xe1, 0x6f, 0x66, 0xe9, 0x72, 0x47 +.byte 0x30, 0x3e, 0x10, 0xe5, 0x0b, 0x03, 0xc9, 0x9a, 0x42, 0x00, 0x6c, 0xc5, 0x94, 0x7e, 0x61, 0xc4 +.byte 0x8a, 0xdf, 0x7f, 0x82, 0x1a, 0x0b, 0x59, 0xc4, 0x59, 0x32, 0x77, 0xb3, 0xbc, 0x60, 0x69, 0x56 +.byte 0x39, 0xfd, 0xb4, 0x06, 0x7b, 0x2c, 0xd6, 0x64, 0x36, 0xd9, 0xbd, 0x48, 0xed, 0x84, 0x1f, 0x7e +.byte 0xa5, 0x22, 0x8f, 0x2a, 0xb8, 0x42, 0xf4, 0x82, 0xb7, 0xd4, 0x53, 0x90, 0x78, 0x4e, 0x2d, 0x1a +.byte 0xfd, 0x81, 0x6f, 0x44, 0xd7, 0x3b, 0x01, 0x74, 0x96, 0x42, 0xe0, 0x00, 0xe2, 0x2e, 0x6b, 0xea +.byte 0xc5, 0xee, 0x72, 0xac, 0xbb, 0xbf, 0xfe, 0xea, 0xaa, 0xa8, 0xf8, 0xdc, 0xf6, 0xb2, 0x79, 0x8a +.byte 0xb6, 0x67, 0x02, 0x03, 0x01, 0x00, 0x01, 0x44, 0x00, 0x26, 0x02, 0x30, 0x42, 0x31, 0x12, 0x30 +.byte 0x10, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x09, 0x41, 0x43, 0x43, 0x56, 0x52, 0x41, 0x49, 0x5a +.byte 0x31, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x07, 0x50, 0x4b, 0x49, 0x41 +.byte 0x43, 0x43, 0x56, 0x31, 0x0d, 0x30, 0x0b, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x04, 0x41, 0x43 +.byte 0x43, 0x56, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x45, 0x53, 0x30 +.byte 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01 +.byte 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00 +.byte 0x9b, 0xa9, 0xab, 0xbf, 0x61, 0x4a, 0x97, 0xaf, 0x2f, 0x97, 0x66, 0x9a, 0x74, 0x5f, 0xd0, 0xd9 +.byte 0x96, 0xfd, 0xcf, 0xe2, 0xe4, 0x66, 0xef, 0x1f, 0x1f, 0x47, 0x33, 0xc2, 0x44, 0xa3, 0xdf, 0x9a +.byte 0xde, 0x1f, 0xb5, 0x54, 0xdd, 0x15, 0x7c, 0x69, 0x35, 0x11, 0x6f, 0xbb, 0xc8, 0x0c, 0x8e, 0x6a +.byte 0x18, 0x1e, 0xd8, 0x8f, 0xd9, 0x16, 0xbc, 0x10, 0x48, 0x36, 0x5c, 0xf0, 0x63, 0xb3, 0x90, 0x5a +.byte 0x5c, 0x24, 0x37, 0xd7, 0xa3, 0xd6, 0xcb, 0x09, 0x71, 0xb9, 0xf1, 0x01, 0x72, 0x84, 0xb0, 0x7d +.byte 0xdb, 0x4d, 0x80, 0xcd, 0xfc, 0xd3, 0x6f, 0xc9, 0xf8, 0xda, 0xb6, 0x0e, 0x82, 0xd2, 0x45, 0x85 +.byte 0xa8, 0x1b, 0x68, 0xa8, 0x3d, 0xe8, 0xf4, 0x44, 0x6c, 0xbd, 0xa1, 0xc2, 0xcb, 0x03, 0xbe, 0x8c +.byte 0x3e, 0x13, 0x00, 0x84, 0xdf, 0x4a, 0x48, 0xc0, 0xe3, 0x22, 0x0a, 0xe8, 0xe9, 0x37, 0xa7, 0x18 +.byte 0x4c, 0xb1, 0x09, 0x0d, 0x23, 0x56, 0x7f, 0x04, 0x4d, 0xd9, 0x17, 0x84, 0x18, 0xa5, 0xc8, 0xda +.byte 0x40, 0x94, 0x73, 0xeb, 0xce, 0x0e, 0x57, 0x3c, 0x03, 0x81, 0x3a, 0x9d, 0x0a, 0xa1, 0x57, 0x43 +.byte 0x69, 0xac, 0x57, 0x6d, 0x79, 0x90, 0x78, 0xe5, 0xb5, 0xb4, 0x3b, 0xd8, 0xbc, 0x4c, 0x8d, 0x28 +.byte 0xa1, 0xa7, 0xa3, 0xa7, 0xba, 0x02, 0x4e, 0x25, 0xd1, 0x2a, 0xae, 0xed, 0xae, 0x03, 0x22, 0xb8 +.byte 0x6b, 0x20, 0x0f, 0x30, 0x28, 0x54, 0x95, 0x7f, 0xe0, 0xee, 0xce, 0x0a, 0x66, 0x9d, 0xd1, 0x40 +.byte 0x2d, 0x6e, 0x22, 0xaf, 0x9d, 0x1a, 0xc1, 0x05, 0x19, 0xd2, 0x6f, 0xc0, 0xf2, 0x9f, 0xf8, 0x7b +.byte 0xb3, 0x02, 0x42, 0xfb, 0x50, 0xa9, 0x1d, 0x2d, 0x93, 0x0f, 0x23, 0xab, 0xc6, 0xc1, 0x0f, 0x92 +.byte 0xff, 0xd0, 0xa2, 0x15, 0xf5, 0x53, 0x09, 0x71, 0x1c, 0xff, 0x45, 0x13, 0x84, 0xe6, 0x26, 0x5e +.byte 0xf8, 0xe0, 0x88, 0x1c, 0x0a, 0xfc, 0x16, 0xb6, 0xa8, 0x73, 0x06, 0xb8, 0xf0, 0x63, 0x84, 0x02 +.byte 0xa0, 0xc6, 0x5a, 0xec, 0xe7, 0x74, 0xdf, 0x70, 0xae, 0xa3, 0x83, 0x25, 0xea, 0xd6, 0xc7, 0x97 +.byte 0x87, 0x93, 0xa7, 0xc6, 0x8a, 0x8a, 0x33, 0x97, 0x60, 0x37, 0x10, 0x3e, 0x97, 0x3e, 0x6e, 0x29 +.byte 0x15, 0xd6, 0xa1, 0x0f, 0xd1, 0x88, 0x2c, 0x12, 0x9f, 0x6f, 0xaa, 0xa4, 0xc6, 0x42, 0xeb, 0x41 +.byte 0xa2, 0xe3, 0x95, 0x43, 0xd3, 0x01, 0x85, 0x6d, 0x8e, 0xbb, 0x3b, 0xf3, 0x23, 0x36, 0xc7, 0xfe +.byte 0x3b, 0xe0, 0xa1, 0x25, 0x07, 0x48, 0xab, 0xc9, 0x89, 0x74, 0xff, 0x08, 0x8f, 0x80, 0xbf, 0xc0 +.byte 0x96, 0x65, 0xf3, 0xee, 0xec, 0x4b, 0x68, 0xbd, 0x9d, 0x88, 0xc3, 0x31, 0xb3, 0x40, 0xf1, 0xe8 +.byte 0xcf, 0xf6, 0x38, 0xbb, 0x9c, 0xe4, 0xd1, 0x7f, 0xd4, 0xe5, 0x58, 0x9b, 0x7c, 0xfa, 0xd4, 0xf3 +.byte 0x0e, 0x9b, 0x75, 0x91, 0xe4, 0xba, 0x52, 0x2e, 0x19, 0x7e, 0xd1, 0xf5, 0xcd, 0x5a, 0x19, 0xfc +.byte 0xba, 0x06, 0xf6, 0xfb, 0x52, 0xa8, 0x4b, 0x99, 0x04, 0xdd, 0xf8, 0xf9, 0xb4, 0x8b, 0x50, 0xa3 +.byte 0x4e, 0x62, 0x89, 0xf0, 0x87, 0x24, 0xfa, 0x83, 0x42, 0xc1, 0x87, 0xfa, 0xd5, 0x2d, 0x29, 0x2a +.byte 0x5a, 0x71, 0x7a, 0x64, 0x6a, 0xd7, 0x27, 0x60, 0x63, 0x0d, 0xdb, 0xce, 0x49, 0xf5, 0x8d, 0x1f +.byte 0x90, 0x89, 0x32, 0x17, 0xf8, 0x73, 0x43, 0xb8, 0xd2, 0x5a, 0x93, 0x86, 0x61, 0xd6, 0xe1, 0x75 +.byte 0x0a, 0xea, 0x79, 0x66, 0x76, 0x88, 0x4f, 0x71, 0xeb, 0x04, 0x25, 0xd6, 0x0a, 0x5a, 0x7a, 0x93 +.byte 0xe5, 0xb9, 0x4b, 0x17, 0x40, 0x0f, 0xb1, 0xb6, 0xb9, 0xf5, 0xde, 0x4f, 0xdc, 0xe0, 0xb3, 0xac +.byte 0x3b, 0x11, 0x70, 0x60, 0x84, 0x4a, 0x43, 0x6e, 0x99, 0x20, 0xc0, 0x29, 0x71, 0x0a, 0xc0, 0x65 +.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x45, 0x00, 0x26, 0x02, 0x30, 0x43, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x13, 0x69, 0x54, 0x72, 0x75, 0x73, 0x43, 0x68, 0x69, 0x6e, 0x61, 0x20, 0x43, 0x6f +.byte 0x2e, 0x2c, 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x16, 0x30, 0x14, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13 +.byte 0x0d, 0x76, 0x54, 0x72, 0x75, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82 +.byte 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05 +.byte 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xbd +.byte 0x55, 0x7c, 0x61, 0xd3, 0xb8, 0x1d, 0x04, 0x62, 0x05, 0xa0, 0xae, 0x6c, 0xb7, 0x70, 0xb4, 0x41 +.byte 0xea, 0x4b, 0x03, 0x5e, 0x10, 0x3f, 0x90, 0x5a, 0x1c, 0x8b, 0x3b, 0xb0, 0x66, 0x8b, 0x6c, 0x48 +.byte 0xa6, 0x1c, 0x22, 0xba, 0xd5, 0x40, 0x92, 0xee, 0x33, 0xb2, 0x23, 0x59, 0xc9, 0x8e, 0xbc, 0x58 +.byte 0xda, 0x8b, 0x9e, 0xd0, 0x19, 0xf2, 0x2f, 0x59, 0xc6, 0x8c, 0x63, 0x5a, 0xba, 0x9f, 0xa3, 0x0b +.byte 0xb0, 0xb3, 0x9a, 0x5c, 0xba, 0x11, 0xb8, 0x12, 0xe9, 0x0c, 0xbb, 0xcf, 0x6e, 0x6c, 0x80, 0x87 +.byte 0x29, 0x14, 0x03, 0x2c, 0x8d, 0x24, 0x9a, 0xc8, 0x64, 0x83, 0xb5, 0x6a, 0xac, 0x13, 0x2c, 0x33 +.byte 0xf1, 0x9f, 0xdc, 0x2c, 0x61, 0x3c, 0x1a, 0x3f, 0x70, 0x55, 0x9b, 0xad, 0x00, 0x52, 0x7f, 0xcf +.byte 0x04, 0xb9, 0xfe, 0x36, 0xfa, 0x9c, 0xc0, 0x16, 0xae, 0x62, 0xfe, 0x96, 0x4c, 0x43, 0x7e, 0x55 +.byte 0x14, 0xbe, 0x1a, 0xb3, 0xd2, 0x6d, 0xc2, 0xaf, 0x76, 0x66, 0x95, 0x6b, 0x2a, 0xb0, 0x94, 0x77 +.byte 0x85, 0x5e, 0x04, 0x0f, 0x62, 0x1d, 0x63, 0x75, 0xf7, 0x6b, 0xe7, 0xcb, 0x5b, 0x9a, 0x70, 0xec +.byte 0x3e, 0x67, 0x05, 0xf0, 0xfe, 0x07, 0x08, 0x80, 0xcf, 0x28, 0xdb, 0x05, 0xc6, 0x14, 0x27, 0x2f +.byte 0x86, 0x7d, 0xf0, 0x27, 0xde, 0xff, 0xe6, 0x7e, 0x33, 0x48, 0xe7, 0x0b, 0x1e, 0x58, 0xd1, 0x27 +.byte 0x2b, 0x53, 0x0e, 0x57, 0x4a, 0x65, 0xd7, 0xfb, 0xa2, 0x80, 0x60, 0xfc, 0x4c, 0xbc, 0x35, 0x53 +.byte 0x01, 0x6a, 0x97, 0x72, 0x82, 0xaf, 0xf1, 0x1d, 0x70, 0xe8, 0x9c, 0xf5, 0xef, 0x5e, 0xc2, 0x6c +.byte 0xc7, 0x47, 0x7e, 0x5a, 0x94, 0x85, 0x26, 0x4d, 0x3b, 0xba, 0xeb, 0x4c, 0xe8, 0xb0, 0x09, 0xc2 +.byte 0x65, 0xc2, 0x9d, 0x9d, 0x09, 0x9b, 0x4e, 0xb5, 0x97, 0x05, 0xac, 0xf5, 0x06, 0xa0, 0xf7, 0x36 +.byte 0x05, 0x7e, 0xf4, 0x90, 0xb2, 0x6b, 0xc4, 0xb4, 0xf9, 0x64, 0xea, 0xe9, 0x1a, 0x0a, 0xc8, 0x0d +.byte 0xa8, 0xed, 0x27, 0xc9, 0xd4, 0xe7, 0xb3, 0xb9, 0xab, 0x82, 0x22, 0x90, 0x27, 0x3d, 0x2a, 0xe8 +.byte 0x7c, 0x90, 0xef, 0xbc, 0x4f, 0xfd, 0xe2, 0x0a, 0x24, 0xa7, 0xde, 0x65, 0x24, 0xa4, 0x5d, 0xea +.byte 0xc0, 0x76, 0x30, 0xd3, 0x77, 0x50, 0xf8, 0x0d, 0x04, 0x9b, 0x94, 0x36, 0x01, 0x73, 0xca, 0x06 +.byte 0x58, 0xa6, 0xd3, 0x3b, 0xdc, 0xfa, 0x04, 0x46, 0x13, 0x55, 0x8a, 0xc9, 0x44, 0x47, 0xb8, 0x51 +.byte 0x39, 0x1a, 0x2e, 0xe8, 0x34, 0xe2, 0x79, 0xcb, 0x59, 0x4a, 0x0a, 0x7f, 0xbc, 0xa6, 0xef, 0x1f +.byte 0x03, 0x67, 0x6a, 0x59, 0x2b, 0x25, 0x62, 0x93, 0xd9, 0x53, 0x19, 0x66, 0x3c, 0x27, 0x62, 0x29 +.byte 0x86, 0x4d, 0xa4, 0x6b, 0xee, 0xff, 0xd4, 0x4e, 0xba, 0xd5, 0xb4, 0xe2, 0x8e, 0x48, 0x5a, 0x00 +.byte 0x19, 0x09, 0xf1, 0x05, 0xd9, 0xce, 0x91, 0xb1, 0xf7, 0xeb, 0xe9, 0x39, 0x4f, 0xf6, 0x6f, 0x04 +.byte 0x43, 0x9a, 0x55, 0xf5, 0x3e, 0x05, 0x14, 0xbd, 0xbf, 0xb3, 0x59, 0xb4, 0xd8, 0x8e, 0x33, 0x84 +.byte 0xa3, 0x90, 0x52, 0xaa, 0xb3, 0x02, 0x95, 0x60, 0xf9, 0x0c, 0x4c, 0x68, 0xf9, 0xee, 0xd5, 0x17 +.byte 0x0d, 0xf8, 0x71, 0x57, 0xb5, 0x25, 0xe4, 0x29, 0xee, 0x65, 0x5d, 0xaf, 0xd1, 0xee, 0x3c, 0x17 +.byte 0x0b, 0x5a, 0x43, 0xc5, 0xa5, 0x86, 0xea, 0x24, 0x9e, 0xe2, 0x05, 0x07, 0xdc, 0x34, 0x42, 0x12 +.byte 0x91, 0xd6, 0x39, 0x74, 0xae, 0x4c, 0x41, 0x82, 0xdb, 0xf2, 0xa6, 0x48, 0xd1, 0xb3, 0x9b, 0xf3 +.byte 0x33, 0xaa, 0xf3, 0xa6, 0xc0, 0xc5, 0x4e, 0xf5, 0xf4, 0x9d, 0x76, 0x63, 0xe6, 0x02, 0xc6, 0x22 +.byte 0x4b, 0xc1, 0x95, 0x3f, 0x50, 0x64, 0x2c, 0x54, 0xe5, 0xb6, 0xf0, 0x3c, 0x29, 0xcf, 0x57, 0x02 +.byte 0x03, 0x01, 0x00, 0x01, 0x46, 0x00, 0x26, 0x02, 0x30, 0x44, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x46, 0x49, 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x0c, 0x11, 0x54, 0x65, 0x6c, 0x69, 0x61, 0x20, 0x46, 0x69, 0x6e, 0x6c, 0x61, 0x6e, 0x64, 0x20 +.byte 0x4f, 0x79, 0x6a, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x10, 0x54, 0x65 +.byte 0x6c, 0x69, 0x61, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x76, 0x32, 0x30, 0x82 +.byte 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05 +.byte 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xb2 +.byte 0xd0, 0x3f, 0x07, 0xbc, 0xe2, 0x7b, 0xd0, 0x6b, 0x99, 0xf8, 0xe2, 0x77, 0x69, 0xe7, 0xce, 0x9d +.byte 0xa4, 0x03, 0xbc, 0x82, 0x6d, 0xa1, 0xfe, 0x81, 0x65, 0x1f, 0x4c, 0x27, 0xac, 0x8e, 0x00, 0xba +.byte 0x16, 0x7b, 0xeb, 0x30, 0x6a, 0x00, 0xc0, 0xb3, 0x74, 0x68, 0x7e, 0xb2, 0xaf, 0xc7, 0xd5, 0x62 +.byte 0xb3, 0x7a, 0x3f, 0x50, 0xca, 0x8c, 0x36, 0x44, 0x24, 0x63, 0xd2, 0x36, 0xe9, 0x0c, 0x85, 0xf6 +.byte 0x43, 0x76, 0xd5, 0x4c, 0xa1, 0x60, 0x72, 0x67, 0xe2, 0x28, 0x33, 0xa5, 0xcb, 0x31, 0xb8, 0x3a +.byte 0x22, 0x23, 0x34, 0xb8, 0x7d, 0xbd, 0x56, 0x22, 0x40, 0x9d, 0xea, 0xf4, 0x7b, 0x03, 0xad, 0x68 +.byte 0xfc, 0xb2, 0x81, 0x4f, 0x98, 0xd0, 0x74, 0xea, 0x8d, 0xe5, 0x7d, 0xcd, 0x63, 0xc3, 0xa3, 0xf6 +.byte 0xde, 0x92, 0xc2, 0x58, 0x19, 0xe0, 0x96, 0xbb, 0xc5, 0xc4, 0xa9, 0x3d, 0xa5, 0x74, 0x96, 0xfe +.byte 0xaf, 0xf9, 0x89, 0xaa, 0xbd, 0x95, 0x17, 0x54, 0xd8, 0x78, 0x44, 0xf1, 0x0c, 0x77, 0x15, 0x92 +.byte 0xe0, 0x98, 0x42, 0xa7, 0xa4, 0xd6, 0xaa, 0x20, 0x92, 0xcd, 0xc1, 0xa0, 0xb3, 0x96, 0xb2, 0x3a +.byte 0x84, 0x42, 0x8d, 0x7d, 0xd5, 0x95, 0xe4, 0xd6, 0xdb, 0xe9, 0x62, 0xc4, 0x58, 0xb3, 0x79, 0xc5 +.byte 0x8c, 0xd3, 0x35, 0x33, 0x83, 0x9f, 0x75, 0xa1, 0x52, 0x27, 0x61, 0x38, 0xf1, 0x59, 0x3d, 0x8e +.byte 0x50, 0xe0, 0xbd, 0x79, 0x3c, 0xe7, 0x6c, 0x96, 0xfe, 0x5e, 0xd9, 0x02, 0x65, 0xb4, 0x8e, 0x5c +.byte 0xd0, 0x11, 0x34, 0xdf, 0x5d, 0xbf, 0x52, 0xa7, 0x81, 0x00, 0xc3, 0x7f, 0x99, 0x45, 0x99, 0x15 +.byte 0xd5, 0x17, 0xc8, 0x0a, 0x53, 0xec, 0x63, 0xf3, 0x99, 0x7d, 0xcc, 0x69, 0x12, 0x86, 0xc2, 0x17 +.byte 0xf0, 0x01, 0x9e, 0xbf, 0x84, 0xbc, 0xd1, 0x52, 0xcb, 0x1b, 0x92, 0x66, 0xce, 0xa4, 0x53, 0xe5 +.byte 0xa1, 0xbf, 0xc4, 0xdb, 0x09, 0xd6, 0xe6, 0x89, 0x56, 0x2b, 0xc8, 0xe3, 0x7c, 0xde, 0xe3, 0xff +.byte 0x89, 0xe5, 0x35, 0x6e, 0x28, 0xe8, 0x6c, 0x0b, 0x23, 0x51, 0xa9, 0x25, 0x05, 0xeb, 0x48, 0xf8 +.byte 0xdd, 0xb1, 0xca, 0xfa, 0x6c, 0x08, 0x51, 0xef, 0xb7, 0x18, 0x6c, 0x44, 0xca, 0x26, 0xe1, 0x73 +.byte 0xc6, 0x89, 0x06, 0x81, 0xe5, 0x8a, 0xac, 0xb0, 0xe2, 0x29, 0xc6, 0xb9, 0x24, 0xb3, 0x6b, 0x44 +.byte 0x11, 0xf4, 0xa5, 0x43, 0xc2, 0x4c, 0x43, 0xe5, 0x70, 0x36, 0x8c, 0xb6, 0x33, 0x57, 0x7a, 0x95 +.byte 0x2e, 0x82, 0xa0, 0xf4, 0x5c, 0x10, 0xb3, 0x61, 0x83, 0xf6, 0x02, 0x05, 0x86, 0x2e, 0x7c, 0x2d +.byte 0x6c, 0xdc, 0x03, 0x46, 0x6e, 0x35, 0x93, 0xd5, 0x7a, 0x95, 0x2f, 0xde, 0x20, 0xd8, 0x5b, 0x7e +.byte 0x94, 0x90, 0x04, 0x6a, 0xba, 0x59, 0x3d, 0x04, 0x05, 0x75, 0x9d, 0x37, 0xa2, 0x0e, 0x2e, 0x3d +.byte 0xeb, 0xc1, 0xa4, 0x52, 0x83, 0xfe, 0xd0, 0x6b, 0xd4, 0x66, 0x8e, 0xdc, 0xc6, 0xe9, 0x12, 0x4e +.byte 0x1d, 0x2a, 0x57, 0xaa, 0x10, 0xbc, 0x7c, 0x5e, 0x82, 0x7d, 0xa6, 0xa6, 0xc9, 0xf2, 0x2d, 0xb9 +.byte 0xf5, 0x17, 0x27, 0xad, 0xd1, 0x0e, 0x89, 0x54, 0x2b, 0x95, 0xfa, 0xc0, 0xad, 0x1d, 0x98, 0x14 +.byte 0x78, 0x33, 0x42, 0x86, 0x0a, 0xa9, 0x73, 0xb5, 0xfb, 0x74, 0x0d, 0xb7, 0x1b, 0x30, 0x19, 0xc4 +.byte 0x5a, 0x0e, 0x1c, 0x27, 0xb7, 0xda, 0x18, 0xd0, 0xff, 0x8a, 0xc8, 0x05, 0xba, 0xf1, 0xaa, 0x1c +.byte 0xa2, 0x37, 0xb7, 0xe6, 0x48, 0xa4, 0x46, 0x2c, 0x94, 0xea, 0xa8, 0x76, 0x62, 0x47, 0x8b, 0x10 +.byte 0x53, 0x07, 0x48, 0x57, 0x6c, 0xe2, 0x92, 0x4d, 0xb6, 0xae, 0x05, 0xcb, 0xdc, 0xc1, 0x4a, 0x5e +.byte 0x8f, 0xac, 0x3d, 0x19, 0x4e, 0xc2, 0xed, 0x60, 0x75, 0x2b, 0xdb, 0xc1, 0xca, 0x42, 0xd5, 0x02 +.byte 0x03, 0x01, 0x00, 0x01, 0x46, 0x00, 0x26, 0x01, 0x30, 0x44, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x0c, 0x0b, 0x41, 0x66, 0x66, 0x69, 0x72, 0x6d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x31, 0x1f, 0x30 +.byte 0x1d, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x16, 0x41, 0x66, 0x66, 0x69, 0x72, 0x6d, 0x54, 0x72 +.byte 0x75, 0x73, 0x74, 0x20, 0x43, 0x6f, 0x6d, 0x6d, 0x65, 0x72, 0x63, 0x69, 0x61, 0x6c, 0x30, 0x82 +.byte 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05 +.byte 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xf6 +.byte 0x1b, 0x4f, 0x67, 0x07, 0x2b, 0xa1, 0x15, 0xf5, 0x06, 0x22, 0xcb, 0x1f, 0x01, 0xb2, 0xe3, 0x73 +.byte 0x45, 0x06, 0x44, 0x49, 0x2c, 0xbb, 0x49, 0x25, 0x14, 0xd6, 0xce, 0xc3, 0xb7, 0xab, 0x2c, 0x4f +.byte 0xc6, 0x41, 0x32, 0x94, 0x57, 0xfa, 0x12, 0xa7, 0x5b, 0x0e, 0xe2, 0x8f, 0x1f, 0x1e, 0x86, 0x19 +.byte 0xa7, 0xaa, 0xb5, 0x2d, 0xb9, 0x5f, 0x0d, 0x8a, 0xc2, 0xaf, 0x85, 0x35, 0x79, 0x32, 0x2d, 0xbb +.byte 0x1c, 0x62, 0x37, 0xf2, 0xb1, 0x5b, 0x4a, 0x3d, 0xca, 0xcd, 0x71, 0x5f, 0xe9, 0x42, 0xbe, 0x94 +.byte 0xe8, 0xc8, 0xde, 0xf9, 0x22, 0x48, 0x64, 0xc6, 0xe5, 0xab, 0xc6, 0x2b, 0x6d, 0xad, 0x05, 0xf0 +.byte 0xfa, 0xd5, 0x0b, 0xcf, 0x9a, 0xe5, 0xf0, 0x50, 0xa4, 0x8b, 0x3b, 0x47, 0xa5, 0x23, 0x5b, 0x7a +.byte 0x7a, 0xf8, 0x33, 0x3f, 0xb8, 0xef, 0x99, 0x97, 0xe3, 0x20, 0xc1, 0xd6, 0x28, 0x89, 0xcf, 0x94 +.byte 0xfb, 0xb9, 0x45, 0xed, 0xe3, 0x40, 0x17, 0x11, 0xd4, 0x74, 0xf0, 0x0b, 0x31, 0xe2, 0x2b, 0x26 +.byte 0x6a, 0x9b, 0x4c, 0x57, 0xae, 0xac, 0x20, 0x3e, 0xba, 0x45, 0x7a, 0x05, 0xf3, 0xbd, 0x9b, 0x69 +.byte 0x15, 0xae, 0x7d, 0x4e, 0x20, 0x63, 0xc4, 0x35, 0x76, 0x3a, 0x07, 0x02, 0xc9, 0x37, 0xfd, 0xc7 +.byte 0x47, 0xee, 0xe8, 0xf1, 0x76, 0x1d, 0x73, 0x15, 0xf2, 0x97, 0xa4, 0xb5, 0xc8, 0x7a, 0x79, 0xd9 +.byte 0x42, 0xaa, 0x2b, 0x7f, 0x5c, 0xfe, 0xce, 0x26, 0x4f, 0xa3, 0x66, 0x81, 0x35, 0xaf, 0x44, 0xba +.byte 0x54, 0x1e, 0x1c, 0x30, 0x32, 0x65, 0x9d, 0xe6, 0x3c, 0x93, 0x5e, 0x50, 0x4e, 0x7a, 0xe3, 0x3a +.byte 0xd4, 0x6e, 0xcc, 0x1a, 0xfb, 0xf9, 0xd2, 0x37, 0xae, 0x24, 0x2a, 0xab, 0x57, 0x03, 0x22, 0x28 +.byte 0x0d, 0x49, 0x75, 0x7f, 0xb7, 0x28, 0xda, 0x75, 0xbf, 0x8e, 0xe3, 0xdc, 0x0e, 0x79, 0x31, 0x02 +.byte 0x03, 0x01, 0x00, 0x01, 0x46, 0x00, 0x26, 0x01, 0x30, 0x44, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x0c, 0x0b, 0x41, 0x66, 0x66, 0x69, 0x72, 0x6d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x31, 0x1f, 0x30 +.byte 0x1d, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x16, 0x41, 0x66, 0x66, 0x69, 0x72, 0x6d, 0x54, 0x72 +.byte 0x75, 0x73, 0x74, 0x20, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x30, 0x82 +.byte 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05 +.byte 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xb4 +.byte 0x84, 0xcc, 0x33, 0x17, 0x2e, 0x6b, 0x94, 0x6c, 0x6b, 0x61, 0x52, 0xa0, 0xeb, 0xa3, 0xcf, 0x79 +.byte 0x94, 0x4c, 0xe5, 0x94, 0x80, 0x99, 0xcb, 0x55, 0x64, 0x44, 0x65, 0x8f, 0x67, 0x64, 0xe2, 0x06 +.byte 0xe3, 0x5c, 0x37, 0x49, 0xf6, 0x2f, 0x9b, 0x84, 0x84, 0x1e, 0x2d, 0xf2, 0x60, 0x9d, 0x30, 0x4e +.byte 0xcc, 0x84, 0x85, 0xe2, 0x2c, 0xcf, 0x1e, 0x9e, 0xfe, 0x36, 0xab, 0x33, 0x77, 0x35, 0x44, 0xd8 +.byte 0x35, 0x96, 0x1a, 0x3d, 0x36, 0xe8, 0x7a, 0x0e, 0xd8, 0xd5, 0x47, 0xa1, 0x6a, 0x69, 0x8b, 0xd9 +.byte 0xfc, 0xbb, 0x3a, 0xae, 0x79, 0x5a, 0xd5, 0xf4, 0xd6, 0x71, 0xbb, 0x9a, 0x90, 0x23, 0x6b, 0x9a +.byte 0xb7, 0x88, 0x74, 0x87, 0x0c, 0x1e, 0x5f, 0xb9, 0x9e, 0x2d, 0xfa, 0xab, 0x53, 0x2b, 0xdc, 0xbb +.byte 0x76, 0x3e, 0x93, 0x4c, 0x08, 0x08, 0x8c, 0x1e, 0xa2, 0x23, 0x1c, 0xd4, 0x6a, 0xad, 0x22, 0xba +.byte 0x99, 0x01, 0x2e, 0x6d, 0x65, 0xcb, 0xbe, 0x24, 0x66, 0x55, 0x24, 0x4b, 0x40, 0x44, 0xb1, 0x1b +.byte 0xd7, 0xe1, 0xc2, 0x85, 0xc0, 0xde, 0x10, 0x3f, 0x3d, 0xed, 0xb8, 0xfc, 0xf1, 0xf1, 0x23, 0x53 +.byte 0xdc, 0xbf, 0x65, 0x97, 0x6f, 0xd9, 0xf9, 0x40, 0x71, 0x8d, 0x7d, 0xbd, 0x95, 0xd4, 0xce, 0xbe +.byte 0xa0, 0x5e, 0x27, 0x23, 0xde, 0xfd, 0xa6, 0xd0, 0x26, 0x0e, 0x00, 0x29, 0xeb, 0x3c, 0x46, 0xf0 +.byte 0x3d, 0x60, 0xbf, 0x3f, 0x50, 0xd2, 0xdc, 0x26, 0x41, 0x51, 0x9e, 0x14, 0x37, 0x42, 0x04, 0xa3 +.byte 0x70, 0x57, 0xa8, 0x1b, 0x87, 0xed, 0x2d, 0xfa, 0x7b, 0xee, 0x8c, 0x0a, 0xe3, 0xa9, 0x66, 0x89 +.byte 0x19, 0xcb, 0x41, 0xf9, 0xdd, 0x44, 0x36, 0x61, 0xcf, 0xe2, 0x77, 0x46, 0xc8, 0x7d, 0xf6, 0xf4 +.byte 0x92, 0x81, 0x36, 0xfd, 0xdb, 0x34, 0xf1, 0x72, 0x7e, 0xf3, 0x0c, 0x16, 0xbd, 0xb4, 0x15, 0x02 +.byte 0x03, 0x01, 0x00, 0x01, 0x47, 0x00, 0x26, 0x02, 0x30, 0x45, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x42, 0x4d, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x13, 0x10, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74 +.byte 0x65, 0x64, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x12, 0x51, 0x75, 0x6f +.byte 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x32, 0x30 +.byte 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01 +.byte 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00 +.byte 0x9a, 0x18, 0xca, 0x4b, 0x94, 0x0d, 0x00, 0x2d, 0xaf, 0x03, 0x29, 0x8a, 0xf0, 0x0f, 0x81, 0xc8 +.byte 0xae, 0x4c, 0x19, 0x85, 0x1d, 0x08, 0x9f, 0xab, 0x29, 0x44, 0x85, 0xf3, 0x2f, 0x81, 0xad, 0x32 +.byte 0x1e, 0x90, 0x46, 0xbf, 0xa3, 0x86, 0x26, 0x1a, 0x1e, 0xfe, 0x7e, 0x1c, 0x18, 0x3a, 0x5c, 0x9c +.byte 0x60, 0x17, 0x2a, 0x3a, 0x74, 0x83, 0x33, 0x30, 0x7d, 0x61, 0x54, 0x11, 0xcb, 0xed, 0xab, 0xe0 +.byte 0xe6, 0xd2, 0xa2, 0x7e, 0xf5, 0x6b, 0x6f, 0x18, 0xb7, 0x0a, 0x0b, 0x2d, 0xfd, 0xe9, 0x3e, 0xef +.byte 0x0a, 0xc6, 0xb3, 0x10, 0xe9, 0xdc, 0xc2, 0x46, 0x17, 0xf8, 0x5d, 0xfd, 0xa4, 0xda, 0xff, 0x9e +.byte 0x49, 0x5a, 0x9c, 0xe6, 0x33, 0xe6, 0x24, 0x96, 0xf7, 0x3f, 0xba, 0x5b, 0x2b, 0x1c, 0x7a, 0x35 +.byte 0xc2, 0xd6, 0x67, 0xfe, 0xab, 0x66, 0x50, 0x8b, 0x6d, 0x28, 0x60, 0x2b, 0xef, 0xd7, 0x60, 0xc3 +.byte 0xc7, 0x93, 0xbc, 0x8d, 0x36, 0x91, 0xf3, 0x7f, 0xf8, 0xdb, 0x11, 0x13, 0xc4, 0x9c, 0x77, 0x76 +.byte 0xc1, 0xae, 0xb7, 0x02, 0x6a, 0x81, 0x7a, 0xa9, 0x45, 0x83, 0xe2, 0x05, 0xe6, 0xb9, 0x56, 0xc1 +.byte 0x94, 0x37, 0x8f, 0x48, 0x71, 0x63, 0x22, 0xec, 0x17, 0x65, 0x07, 0x95, 0x8a, 0x4b, 0xdf, 0x8f +.byte 0xc6, 0x5a, 0x0a, 0xe5, 0xb0, 0xe3, 0x5f, 0x5e, 0x6b, 0x11, 0xab, 0x0c, 0xf9, 0x85, 0xeb, 0x44 +.byte 0xe9, 0xf8, 0x04, 0x73, 0xf2, 0xe9, 0xfe, 0x5c, 0x98, 0x8c, 0xf5, 0x73, 0xaf, 0x6b, 0xb4, 0x7e +.byte 0xcd, 0xd4, 0x5c, 0x02, 0x2b, 0x4c, 0x39, 0xe1, 0xb2, 0x95, 0x95, 0x2d, 0x42, 0x87, 0xd7, 0xd5 +.byte 0xb3, 0x90, 0x43, 0xb7, 0x6c, 0x13, 0xf1, 0xde, 0xdd, 0xf6, 0xc4, 0xf8, 0x89, 0x3f, 0xd1, 0x75 +.byte 0xf5, 0x92, 0xc3, 0x91, 0xd5, 0x8a, 0x88, 0xd0, 0x90, 0xec, 0xdc, 0x6d, 0xde, 0x89, 0xc2, 0x65 +.byte 0x71, 0x96, 0x8b, 0x0d, 0x03, 0xfd, 0x9c, 0xbf, 0x5b, 0x16, 0xac, 0x92, 0xdb, 0xea, 0xfe, 0x79 +.byte 0x7c, 0xad, 0xeb, 0xaf, 0xf7, 0x16, 0xcb, 0xdb, 0xcd, 0x25, 0x2b, 0xe5, 0x1f, 0xfb, 0x9a, 0x9f +.byte 0xe2, 0x51, 0xcc, 0x3a, 0x53, 0x0c, 0x48, 0xe6, 0x0e, 0xbd, 0xc9, 0xb4, 0x76, 0x06, 0x52, 0xe6 +.byte 0x11, 0x13, 0x85, 0x72, 0x63, 0x03, 0x04, 0xe0, 0x04, 0x36, 0x2b, 0x20, 0x19, 0x02, 0xe8, 0x74 +.byte 0xa7, 0x1f, 0xb6, 0xc9, 0x56, 0x66, 0xf0, 0x75, 0x25, 0xdc, 0x67, 0xc1, 0x0e, 0x61, 0x60, 0x88 +.byte 0xb3, 0x3e, 0xd1, 0xa8, 0xfc, 0xa3, 0xda, 0x1d, 0xb0, 0xd1, 0xb1, 0x23, 0x54, 0xdf, 0x44, 0x76 +.byte 0x6d, 0xed, 0x41, 0xd8, 0xc1, 0xb2, 0x22, 0xb6, 0x53, 0x1c, 0xdf, 0x35, 0x1d, 0xdc, 0xa1, 0x77 +.byte 0x2a, 0x31, 0xe4, 0x2d, 0xf5, 0xe5, 0xe5, 0xdb, 0xc8, 0xe0, 0xff, 0xe5, 0x80, 0xd7, 0x0b, 0x63 +.byte 0xa0, 0xff, 0x33, 0xa1, 0x0f, 0xba, 0x2c, 0x15, 0x15, 0xea, 0x97, 0xb3, 0xd2, 0xa2, 0xb5, 0xbe +.byte 0xf2, 0x8c, 0x96, 0x1e, 0x1a, 0x8f, 0x1d, 0x6c, 0xa4, 0x61, 0x37, 0xb9, 0x86, 0x73, 0x33, 0xd7 +.byte 0x97, 0x96, 0x9e, 0x23, 0x7d, 0x82, 0xa4, 0x4c, 0x81, 0xe2, 0xa1, 0xd1, 0xba, 0x67, 0x5f, 0x95 +.byte 0x07, 0xa3, 0x27, 0x11, 0xee, 0x16, 0x10, 0x7b, 0xbc, 0x45, 0x4a, 0x4c, 0xb2, 0x04, 0xd2, 0xab +.byte 0xef, 0xd5, 0xfd, 0x0c, 0x51, 0xce, 0x50, 0x6a, 0x08, 0x31, 0xf9, 0x91, 0xda, 0x0c, 0x8f, 0x64 +.byte 0x5c, 0x03, 0xc3, 0x3a, 0x8b, 0x20, 0x3f, 0x6e, 0x8d, 0x67, 0x3d, 0x3a, 0xd6, 0xfe, 0x7d, 0x5b +.byte 0x88, 0xc9, 0x5e, 0xfb, 0xcc, 0x61, 0xdc, 0x8b, 0x33, 0x77, 0xd3, 0x44, 0x32, 0x35, 0x09, 0x62 +.byte 0x04, 0x92, 0x16, 0x10, 0xd8, 0x9e, 0x27, 0x47, 0xfb, 0x3b, 0x21, 0xe3, 0xf8, 0xeb, 0x1d, 0x5b +.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x47, 0x00, 0x26, 0x02, 0x30, 0x45, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x42, 0x4d, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x10, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x4c, 0x69, 0x6d, 0x69 +.byte 0x74, 0x65, 0x64, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x12, 0x51, 0x75 +.byte 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x33 +.byte 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01 +.byte 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01 +.byte 0x00, 0xcc, 0x57, 0x42, 0x16, 0x54, 0x9c, 0xe6, 0x98, 0xd3, 0xd3, 0x4d, 0xee, 0xfe, 0xed, 0xc7 +.byte 0x9f, 0x43, 0x39, 0x4a, 0x65, 0xb3, 0xe8, 0x16, 0x88, 0x34, 0xdb, 0x0d, 0x59, 0x91, 0x74, 0xcf +.byte 0x92, 0xb8, 0x04, 0x40, 0xad, 0x02, 0x4b, 0x31, 0xab, 0xbc, 0x8d, 0x91, 0x68, 0xd8, 0x20, 0x0e +.byte 0x1a, 0x01, 0xe2, 0x1a, 0x7b, 0x4e, 0x17, 0x5d, 0xe2, 0x8a, 0xb7, 0x3f, 0x99, 0x1a, 0xcd, 0xeb +.byte 0x61, 0xab, 0xc2, 0x65, 0xa6, 0x1f, 0xb7, 0xb7, 0xbd, 0xb7, 0x8f, 0xfc, 0xfd, 0x70, 0x8f, 0x0b +.byte 0xa0, 0x67, 0xbe, 0x01, 0xa2, 0x59, 0xcf, 0x71, 0xe6, 0x0f, 0x29, 0x76, 0xff, 0xb1, 0x56, 0x79 +.byte 0x45, 0x2b, 0x1f, 0x9e, 0x7a, 0x54, 0xe8, 0xa3, 0x29, 0x35, 0x68, 0xa4, 0x01, 0x4f, 0x0f, 0xa4 +.byte 0x2e, 0x37, 0xef, 0x1b, 0xbf, 0xe3, 0x8f, 0x10, 0xa8, 0x72, 0xab, 0x58, 0x57, 0xe7, 0x54, 0x86 +.byte 0xc8, 0xc9, 0xf3, 0x5b, 0xda, 0x2c, 0xda, 0x5d, 0x8e, 0x6e, 0x3c, 0xa3, 0x3e, 0xda, 0xfb, 0x82 +.byte 0xe5, 0xdd, 0xf2, 0x5c, 0xb2, 0x05, 0x33, 0x6f, 0x8a, 0x36, 0xce, 0xd0, 0x13, 0x4e, 0xff, 0xbf +.byte 0x4a, 0x0c, 0x34, 0x4c, 0xa6, 0xc3, 0x21, 0xbd, 0x50, 0x04, 0x55, 0xeb, 0xb1, 0xbb, 0x9d, 0xfb +.byte 0x45, 0x1e, 0x64, 0x15, 0xde, 0x55, 0x01, 0x8c, 0x02, 0x76, 0xb5, 0xcb, 0xa1, 0x3f, 0x42, 0x69 +.byte 0xbc, 0x2f, 0xbd, 0x68, 0x43, 0x16, 0x56, 0x89, 0x2a, 0x37, 0x61, 0x91, 0xfd, 0xa6, 0xae, 0x4e +.byte 0xc0, 0xcb, 0x14, 0x65, 0x94, 0x37, 0x4b, 0x92, 0x06, 0xef, 0x04, 0xd0, 0xc8, 0x9c, 0x88, 0xdb +.byte 0x0b, 0x7b, 0x81, 0xaf, 0xb1, 0x3d, 0x2a, 0xc4, 0x65, 0x3a, 0x78, 0xb6, 0xee, 0xdc, 0x80, 0xb1 +.byte 0xd2, 0xd3, 0x99, 0x9c, 0x3a, 0xee, 0x6b, 0x5a, 0x6b, 0xb3, 0x8d, 0xb7, 0xd5, 0xce, 0x9c, 0xc2 +.byte 0xbe, 0xa5, 0x4b, 0x2f, 0x16, 0xb1, 0x9e, 0x68, 0x3b, 0x06, 0x6f, 0xae, 0x7d, 0x9f, 0xf8, 0xde +.byte 0xec, 0xcc, 0x29, 0xa7, 0x98, 0xa3, 0x25, 0x43, 0x2f, 0xef, 0xf1, 0x5f, 0x26, 0xe1, 0x88, 0x4d +.byte 0xf8, 0x5e, 0x6e, 0xd7, 0xd9, 0x14, 0x6e, 0x19, 0x33, 0x69, 0xa7, 0x3b, 0x84, 0x89, 0x93, 0xc4 +.byte 0x53, 0x55, 0x13, 0xa1, 0x51, 0x78, 0x40, 0xf8, 0xb8, 0xc9, 0xa2, 0xee, 0x7b, 0xba, 0x52, 0x42 +.byte 0x83, 0x9e, 0x14, 0xed, 0x05, 0x52, 0x5a, 0x59, 0x56, 0xa7, 0x97, 0xfc, 0x9d, 0x3f, 0x0a, 0x29 +.byte 0xd8, 0xdc, 0x4f, 0x91, 0x0e, 0x13, 0xbc, 0xde, 0x95, 0xa4, 0xdf, 0x8b, 0x99, 0xbe, 0xac, 0x9b +.byte 0x33, 0x88, 0xef, 0xb5, 0x81, 0xaf, 0x1b, 0xc6, 0x22, 0x53, 0xc8, 0xf6, 0xc7, 0xee, 0x97, 0x14 +.byte 0xb0, 0xc5, 0x7c, 0x78, 0x52, 0xc8, 0xf0, 0xce, 0x6e, 0x77, 0x60, 0x84, 0xa6, 0xe9, 0x2a, 0x76 +.byte 0x20, 0xed, 0x58, 0x01, 0x17, 0x30, 0x93, 0xe9, 0x1a, 0x8b, 0xe0, 0x73, 0x63, 0xd9, 0x6a, 0x92 +.byte 0x94, 0x49, 0x4e, 0xb4, 0xad, 0x4a, 0x85, 0xc4, 0xa3, 0x22, 0x30, 0xfc, 0x09, 0xed, 0x68, 0x22 +.byte 0x73, 0xa6, 0x88, 0x0c, 0x55, 0x21, 0x58, 0xc5, 0xe1, 0x3a, 0x9f, 0x2a, 0xdd, 0xca, 0xe1, 0x90 +.byte 0xe0, 0xd9, 0x73, 0xab, 0x6c, 0x80, 0xb8, 0xe8, 0x0b, 0x64, 0x93, 0xa0, 0x9c, 0x8c, 0x19, 0xff +.byte 0xb3, 0xd2, 0x0c, 0xec, 0x91, 0x26, 0x87, 0x8a, 0xb3, 0xa2, 0xe1, 0x70, 0x8f, 0x2c, 0x0a, 0xe5 +.byte 0xcd, 0x6d, 0x68, 0x51, 0xeb, 0xda, 0x3f, 0x05, 0x7f, 0x8b, 0x32, 0xe6, 0x13, 0x5c, 0x6b, 0xfe +.byte 0x5f, 0x40, 0xe2, 0x22, 0xc8, 0xb4, 0xb4, 0x64, 0x4f, 0xd6, 0xba, 0x7d, 0x48, 0x3e, 0xa8, 0x69 +.byte 0x0c, 0xd7, 0xbb, 0x86, 0x71, 0xc9, 0x73, 0xb8, 0x3f, 0x3b, 0x9d, 0x25, 0x4b, 0xda, 0xff, 0x40 +.byte 0xeb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x47, 0x00, 0x26, 0x02, 0x30, 0x45, 0x31, 0x0b, 0x30, 0x09 +.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x48, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55 +.byte 0x04, 0x0a, 0x13, 0x0c, 0x53, 0x77, 0x69, 0x73, 0x73, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x41, 0x47 +.byte 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x16, 0x53, 0x77, 0x69, 0x73, 0x73 +.byte 0x53, 0x69, 0x67, 0x6e, 0x20, 0x47, 0x6f, 0x6c, 0x64, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x47 +.byte 0x32, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01 +.byte 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02 +.byte 0x01, 0x00, 0xaf, 0xe4, 0xee, 0x7e, 0x8b, 0x24, 0x0e, 0x12, 0x6e, 0xa9, 0x50, 0x2d, 0x16, 0x44 +.byte 0x3b, 0x92, 0x92, 0x5c, 0xca, 0xb8, 0x5d, 0x84, 0x92, 0x42, 0x13, 0x2a, 0xbc, 0x65, 0x57, 0x82 +.byte 0x40, 0x3e, 0x57, 0x24, 0xcd, 0x50, 0x8b, 0x25, 0x2a, 0xb7, 0x6f, 0xfc, 0xef, 0xa2, 0xd0, 0xc0 +.byte 0x1f, 0x02, 0x24, 0x4a, 0x13, 0x96, 0x8f, 0x23, 0x13, 0xe6, 0x28, 0x58, 0x00, 0xa3, 0x47, 0xc7 +.byte 0x06, 0xa7, 0x84, 0x23, 0x2b, 0xbb, 0xbd, 0x96, 0x2b, 0x7f, 0x55, 0xcc, 0x8b, 0xc1, 0x57, 0x1f +.byte 0x0e, 0x62, 0x65, 0x0f, 0xdd, 0x3d, 0x56, 0x8a, 0x73, 0xda, 0xae, 0x7e, 0x6d, 0xba, 0x81, 0x1c +.byte 0x7e, 0x42, 0x8c, 0x20, 0x35, 0xd9, 0x43, 0x4d, 0x84, 0xfa, 0x84, 0xdb, 0x52, 0x2c, 0xf3, 0x0e +.byte 0x27, 0x77, 0x0b, 0x6b, 0xbf, 0x11, 0x2f, 0x72, 0x78, 0x9f, 0x2e, 0xd8, 0x3e, 0xe6, 0x18, 0x37 +.byte 0x5a, 0x2a, 0x72, 0xf9, 0xda, 0x62, 0x90, 0x92, 0x95, 0xca, 0x1f, 0x9c, 0xe9, 0xb3, 0x3c, 0x2b +.byte 0xcb, 0xf3, 0x01, 0x13, 0xbf, 0x5a, 0xcf, 0xc1, 0xb5, 0x0a, 0x60, 0xbd, 0xdd, 0xb5, 0x99, 0x64 +.byte 0x53, 0xb8, 0xa0, 0x96, 0xb3, 0x6f, 0xe2, 0x26, 0x77, 0x91, 0x8c, 0xe0, 0x62, 0x10, 0x02, 0x9f +.byte 0x34, 0x0f, 0xa4, 0xd5, 0x92, 0x33, 0x51, 0xde, 0xbe, 0x8d, 0xba, 0x84, 0x7a, 0x60, 0x3c, 0x6a +.byte 0xdb, 0x9f, 0x2b, 0xec, 0xde, 0xde, 0x01, 0x3f, 0x6e, 0x4d, 0xe5, 0x50, 0x86, 0xcb, 0xb4, 0xaf +.byte 0xed, 0x44, 0x40, 0xc5, 0xca, 0x5a, 0x8c, 0xda, 0xd2, 0x2b, 0x7c, 0xa8, 0xee, 0xbe, 0xa6, 0xe5 +.byte 0x0a, 0xaa, 0x0e, 0xa5, 0xdf, 0x05, 0x52, 0xb7, 0x55, 0xc7, 0x22, 0x5d, 0x32, 0x6a, 0x97, 0x97 +.byte 0x63, 0x13, 0xdb, 0xc9, 0xdb, 0x79, 0x36, 0x7b, 0x85, 0x3a, 0x4a, 0xc5, 0x52, 0x89, 0xf9, 0x24 +.byte 0xe7, 0x9d, 0x77, 0xa9, 0x82, 0xff, 0x55, 0x1c, 0xa5, 0x71, 0x69, 0x2b, 0xd1, 0x02, 0x24, 0xf2 +.byte 0xb3, 0x26, 0xd4, 0x6b, 0xda, 0x04, 0x55, 0xe5, 0xc1, 0x0a, 0xc7, 0x6d, 0x30, 0x37, 0x90, 0x2a +.byte 0xe4, 0x9e, 0x14, 0x33, 0x5e, 0x16, 0x17, 0x55, 0xc5, 0x5b, 0xb5, 0xcb, 0x34, 0x89, 0x92, 0xf1 +.byte 0x9d, 0x26, 0x8f, 0xa1, 0x07, 0xd4, 0xc6, 0xb2, 0x78, 0x50, 0xdb, 0x0c, 0x0c, 0x0b, 0x7c, 0x0b +.byte 0x8c, 0x41, 0xd7, 0xb9, 0xe9, 0xdd, 0x8c, 0x88, 0xf7, 0xa3, 0x4d, 0xb2, 0x32, 0xcc, 0xd8, 0x17 +.byte 0xda, 0xcd, 0xb7, 0xce, 0x66, 0x9d, 0xd4, 0xfd, 0x5e, 0xff, 0xbd, 0x97, 0x3e, 0x29, 0x75, 0xe7 +.byte 0x7e, 0xa7, 0x62, 0x58, 0xaf, 0x25, 0x34, 0xa5, 0x41, 0xc7, 0x3d, 0xbc, 0x0d, 0x50, 0xca, 0x03 +.byte 0x03, 0x0f, 0x08, 0x5a, 0x1f, 0x95, 0x73, 0x78, 0x62, 0xbf, 0xaf, 0x72, 0x14, 0x69, 0x0e, 0xa5 +.byte 0xe5, 0x03, 0x0e, 0x78, 0x8e, 0x26, 0x28, 0x42, 0xf0, 0x07, 0x0b, 0x62, 0x20, 0x10, 0x67, 0x39 +.byte 0x46, 0xfa, 0xa9, 0x03, 0xcc, 0x04, 0x38, 0x7a, 0x66, 0xef, 0x20, 0x83, 0xb5, 0x8c, 0x4a, 0x56 +.byte 0x8e, 0x91, 0x00, 0xfc, 0x8e, 0x5c, 0x82, 0xde, 0x88, 0xa0, 0xc3, 0xe2, 0x68, 0x6e, 0x7d, 0x8d +.byte 0xef, 0x3c, 0xdd, 0x65, 0xf4, 0x5d, 0xac, 0x51, 0xef, 0x24, 0x80, 0xae, 0xaa, 0x56, 0x97, 0x6f +.byte 0xf9, 0xad, 0x7d, 0xda, 0x61, 0x3f, 0x98, 0x77, 0x3c, 0xa5, 0x91, 0xb6, 0x1c, 0x8c, 0x26, 0xda +.byte 0x65, 0xa2, 0x09, 0x6d, 0xc1, 0xe2, 0x54, 0xe3, 0xb9, 0xca, 0x4c, 0x4c, 0x80, 0x8f, 0x77, 0x7b +.byte 0x60, 0x9a, 0x1e, 0xdf, 0xb6, 0xf2, 0x48, 0x1e, 0x0e, 0xba, 0x4e, 0x54, 0x6d, 0x98, 0xe0, 0xe1 +.byte 0xa2, 0x1a, 0xa2, 0x77, 0x50, 0xcf, 0xc4, 0x63, 0x92, 0xec, 0x47, 0x19, 0x9d, 0xeb, 0xe6, 0x6b +.byte 0xce, 0xc1, 0x02, 0x03, 0x01, 0x00, 0x01, 0x47, 0x00, 0x78, 0x00, 0x30, 0x45, 0x31, 0x0b, 0x30 +.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03 +.byte 0x55, 0x04, 0x0a, 0x0c, 0x0b, 0x41, 0x66, 0x66, 0x69, 0x72, 0x6d, 0x54, 0x72, 0x75, 0x73, 0x74 +.byte 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x17, 0x41, 0x66, 0x66, 0x69, 0x72 +.byte 0x6d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x50, 0x72, 0x65, 0x6d, 0x69, 0x75, 0x6d, 0x20, 0x45 +.byte 0x43, 0x43, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06 +.byte 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x0d, 0x30, 0x5e, 0x1b, 0x15, 0x9d +.byte 0x03, 0xd0, 0xa1, 0x79, 0x35, 0xb7, 0x3a, 0x3c, 0x92, 0x7a, 0xca, 0x15, 0x1c, 0xcd, 0x62, 0xf3 +.byte 0x9c, 0x26, 0x5c, 0x07, 0x3d, 0xe5, 0x54, 0xfa, 0xa3, 0xd6, 0xcc, 0x12, 0xea, 0xf4, 0x14, 0x5f +.byte 0xe8, 0x8e, 0x19, 0xab, 0x2f, 0x2e, 0x48, 0xe6, 0xac, 0x18, 0x43, 0x78, 0xac, 0xd0, 0x37, 0xc3 +.byte 0xbd, 0xb2, 0xcd, 0x2c, 0xe6, 0x47, 0xe2, 0x1a, 0xe6, 0x63, 0xb8, 0x3d, 0x2e, 0x2f, 0x78, 0xc4 +.byte 0x4f, 0xdb, 0xf4, 0x0f, 0xa4, 0x68, 0x4c, 0x55, 0x72, 0x6b, 0x95, 0x1d, 0x4e, 0x18, 0x42, 0x95 +.byte 0x78, 0xcc, 0x37, 0x3c, 0x91, 0xe2, 0x9b, 0x65, 0x2b, 0x29, 0x48, 0x00, 0x78, 0x00, 0x30, 0x46 +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x42, 0x45, 0x31, 0x19, 0x30 +.byte 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69 +.byte 0x67, 0x6e, 0x20, 0x6e, 0x76, 0x2d, 0x73, 0x61, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x13, 0x13, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f +.byte 0x6f, 0x74, 0x20, 0x45, 0x34, 0x36, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce +.byte 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x9c, 0x0e +.byte 0xb1, 0xcf, 0xb7, 0xe8, 0x9e, 0x52, 0x77, 0x75, 0x34, 0xfa, 0xa5, 0x46, 0xa7, 0xad, 0x32, 0x19 +.byte 0x32, 0xb4, 0x07, 0xa9, 0x27, 0xca, 0x94, 0xbb, 0x0c, 0xd2, 0x0a, 0x10, 0xc7, 0xda, 0x89, 0xb0 +.byte 0x97, 0x0c, 0x70, 0x13, 0x09, 0x01, 0x8e, 0xd8, 0xea, 0x47, 0xea, 0xbe, 0xb2, 0x80, 0x2b, 0xcd +.byte 0xfc, 0x28, 0x0d, 0xdb, 0xac, 0xbc, 0xa4, 0x86, 0x37, 0xed, 0x70, 0x08, 0x00, 0x75, 0xea, 0x93 +.byte 0x0b, 0x7b, 0x2e, 0x52, 0x9c, 0x23, 0x68, 0x23, 0x06, 0x43, 0xec, 0x92, 0x2f, 0x53, 0x84, 0xdb +.byte 0xfb, 0x47, 0x14, 0x07, 0xe8, 0x5f, 0x94, 0x67, 0x5d, 0xc9, 0x7a, 0x81, 0x3c, 0x20, 0x48, 0x00 +.byte 0x26, 0x02, 0x30, 0x46, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x42 +.byte 0x45, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10, 0x47, 0x6c, 0x6f, 0x62 +.byte 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x6e, 0x76, 0x2d, 0x73, 0x61, 0x31, 0x1c, 0x30, 0x1a +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x13, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67 +.byte 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x52, 0x34, 0x36, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d +.byte 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02 +.byte 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xac, 0xac, 0x74, 0x32, 0xe8 +.byte 0xb3, 0x65, 0xe5, 0xba, 0xed, 0x43, 0x26, 0x1d, 0xa6, 0x89, 0x0d, 0x45, 0xba, 0x29, 0x88, 0xb2 +.byte 0xa4, 0x1d, 0x63, 0xdd, 0xd3, 0xc1, 0x2c, 0x09, 0x57, 0x89, 0x39, 0xa1, 0x55, 0xe9, 0x67, 0x34 +.byte 0x77, 0x0c, 0x6e, 0xe4, 0x55, 0x1d, 0x52, 0x25, 0xd2, 0x13, 0x6b, 0x5e, 0xe1, 0x1d, 0xa9, 0xb7 +.byte 0x7d, 0x89, 0x32, 0x5f, 0x0d, 0x9e, 0x9f, 0x2c, 0x7a, 0x63, 0x60, 0x40, 0x1f, 0xa6, 0xb0, 0xb6 +.byte 0x78, 0x8f, 0x99, 0x54, 0x96, 0x08, 0x58, 0xae, 0xe4, 0x06, 0xbc, 0x62, 0x05, 0x02, 0x16, 0xbf +.byte 0xaf, 0xa8, 0x23, 0x03, 0xb6, 0x94, 0x0f, 0xbc, 0x6e, 0x6c, 0xc2, 0xcb, 0xd5, 0xa6, 0xbb, 0x0c +.byte 0xe9, 0xf6, 0xc1, 0x02, 0xfb, 0x21, 0xde, 0x66, 0xdd, 0x17, 0xab, 0x74, 0x42, 0xef, 0xf0, 0x74 +.byte 0x2f, 0x25, 0xf4, 0xea, 0x6b, 0x55, 0x5b, 0x90, 0xdb, 0x9d, 0xdf, 0x5e, 0x87, 0x0a, 0x40, 0xfb +.byte 0xad, 0x19, 0x6b, 0xfb, 0xf7, 0xca, 0x60, 0x88, 0xde, 0xda, 0xc1, 0x8f, 0xd6, 0xae, 0xd5, 0x7f +.byte 0xd4, 0x3c, 0x83, 0xee, 0xd7, 0x16, 0x4c, 0x83, 0x45, 0x33, 0x6b, 0x27, 0xd0, 0x86, 0xd0, 0x1c +.byte 0x2d, 0x6b, 0xf3, 0xab, 0x7d, 0xf1, 0x85, 0xa9, 0xf5, 0x28, 0xd2, 0xad, 0xef, 0xf3, 0x84, 0x4b +.byte 0x1c, 0x87, 0xfc, 0x13, 0xa3, 0x3a, 0x72, 0xa2, 0x5a, 0x11, 0x2b, 0xd6, 0x27, 0x71, 0x27, 0xed +.byte 0x81, 0x2d, 0x6d, 0x66, 0x81, 0x92, 0x87, 0xb4, 0x1b, 0x58, 0x7a, 0xcc, 0x3f, 0x0a, 0xfa, 0x46 +.byte 0x4f, 0x4d, 0x78, 0x5c, 0xf8, 0x2b, 0x48, 0xe3, 0x04, 0x84, 0xcb, 0x5d, 0xf6, 0xb4, 0x6a, 0xb3 +.byte 0x65, 0xfc, 0x42, 0x9e, 0x51, 0x26, 0x23, 0x20, 0xcb, 0x3d, 0x14, 0xf9, 0x81, 0xed, 0x65, 0x16 +.byte 0x00, 0x4f, 0x1a, 0x64, 0x97, 0x66, 0x08, 0xcf, 0x8c, 0x7b, 0xe3, 0x2b, 0xc0, 0x9d, 0xf9, 0x14 +.byte 0xf2, 0x1b, 0xf1, 0x56, 0x6a, 0x16, 0xbf, 0x2c, 0x85, 0x85, 0xcd, 0x78, 0x38, 0x9a, 0xeb, 0x42 +.byte 0x6a, 0x02, 0x34, 0x18, 0x83, 0x17, 0x4e, 0x94, 0x56, 0xf8, 0xb6, 0x82, 0xb5, 0xf3, 0x96, 0xdd +.byte 0x3d, 0xf3, 0xbe, 0x7f, 0x20, 0x77, 0x3e, 0x7b, 0x19, 0x23, 0x6b, 0x2c, 0xd4, 0x72, 0x73, 0x43 +.byte 0x57, 0x7d, 0xe0, 0xf8, 0xd7, 0x69, 0x4f, 0x17, 0x36, 0x04, 0xf9, 0xc0, 0x90, 0x60, 0x37, 0x45 +.byte 0xde, 0xe6, 0x0c, 0xd8, 0x74, 0x8d, 0xae, 0x9c, 0xa2, 0x6d, 0x74, 0x5d, 0x42, 0xbe, 0x06, 0xf5 +.byte 0xd9, 0x64, 0x6e, 0x02, 0x10, 0xac, 0x89, 0xb0, 0x4c, 0x3b, 0x07, 0x4d, 0x40, 0x7e, 0x24, 0xc5 +.byte 0x8a, 0x98, 0x82, 0x79, 0x8e, 0xa4, 0xa7, 0x82, 0x20, 0x8d, 0x23, 0xfa, 0x27, 0x71, 0xc9, 0xdf +.byte 0xc6, 0x41, 0x74, 0xa0, 0x4d, 0xf6, 0x91, 0x16, 0xdc, 0x46, 0x8c, 0x5f, 0x29, 0x63, 0x31, 0x59 +.byte 0x71, 0x0c, 0xd8, 0x6f, 0xc2, 0xb6, 0x32, 0x7d, 0xfb, 0xe6, 0x5d, 0x53, 0xa6, 0x7e, 0x15, 0xfc +.byte 0xbb, 0x75, 0x7c, 0x5d, 0xec, 0xf8, 0xf6, 0x17, 0x1c, 0xec, 0xc7, 0x6b, 0x19, 0xcb, 0xf3, 0x7b +.byte 0xf0, 0x2b, 0x07, 0xa5, 0xd9, 0x6c, 0x79, 0x54, 0x76, 0x6c, 0x9d, 0x1c, 0xa6, 0x6e, 0x0e, 0xe9 +.byte 0x79, 0x0c, 0xa8, 0x23, 0x6a, 0xa3, 0xdf, 0x1b, 0x30, 0x31, 0x9f, 0xb1, 0x54, 0x7b, 0xfe, 0x6a +.byte 0xcb, 0x66, 0xaa, 0xdc, 0x65, 0xd0, 0xa2, 0x9e, 0x4a, 0x9a, 0x07, 0x21, 0x6b, 0x81, 0x8f, 0xdb +.byte 0xc4, 0x59, 0xfa, 0xde, 0x22, 0xc0, 0x04, 0x9c, 0xe3, 0xaa, 0x5b, 0x36, 0x93, 0xe8, 0x3d, 0xbd +.byte 0x7a, 0xa1, 0x9d, 0x0b, 0x76, 0xb1, 0x0b, 0xc7, 0x9d, 0xfd, 0xcf, 0x98, 0xa8, 0x06, 0xc2, 0xf8 +.byte 0x2a, 0xa3, 0xa1, 0x83, 0xa0, 0xb7, 0x25, 0x72, 0xa5, 0x02, 0xe3, 0x02, 0x03, 0x01, 0x00, 0x01 +.byte 0x49, 0x00, 0x26, 0x02, 0x30, 0x47, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x43, 0x4e, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x08, 0x55, 0x6e +.byte 0x69, 0x54, 0x72, 0x75, 0x73, 0x74, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c +.byte 0x1c, 0x55, 0x43, 0x41, 0x20, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x65, 0x64, 0x20, 0x56, 0x61 +.byte 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x30, 0x82, 0x02 +.byte 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00 +.byte 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xa9, 0x09 +.byte 0x07, 0x28, 0x13, 0x02, 0xb0, 0x99, 0xe0, 0x64, 0xaa, 0x1e, 0x43, 0x16, 0x7a, 0x73, 0xb1, 0x91 +.byte 0xa0, 0x75, 0x3e, 0xa8, 0xfa, 0xe3, 0x38, 0x00, 0x7a, 0xec, 0x89, 0x6a, 0x20, 0x0f, 0x8b, 0xc5 +.byte 0xb0, 0x9b, 0x33, 0x03, 0x5a, 0x86, 0xc6, 0x58, 0x86, 0xd5, 0xc1, 0x85, 0xbb, 0x4f, 0xc6, 0x9c +.byte 0x40, 0x4d, 0xca, 0xbe, 0xee, 0x69, 0x96, 0xb8, 0xad, 0x81, 0x30, 0x9a, 0x7c, 0x92, 0x05, 0xeb +.byte 0x05, 0x2b, 0x9a, 0x48, 0xd0, 0xb8, 0x76, 0x3e, 0x96, 0xc8, 0x20, 0xbb, 0xd2, 0xb0, 0xf1, 0x8f +.byte 0xd8, 0xac, 0x45, 0x46, 0xff, 0xaa, 0x67, 0x60, 0xb4, 0x77, 0x7e, 0x6a, 0x1f, 0x3c, 0x1a, 0x52 +.byte 0x7a, 0x04, 0x3d, 0x07, 0x3c, 0x85, 0x0d, 0x84, 0xd0, 0x1f, 0x76, 0x0a, 0xf7, 0x6a, 0x14, 0xdf +.byte 0x72, 0xe3, 0x34, 0x7c, 0x57, 0x4e, 0x56, 0x01, 0x3e, 0x79, 0xf1, 0xaa, 0x29, 0x3b, 0x6c, 0xfa +.byte 0xf8, 0x8f, 0x6d, 0x4d, 0xc8, 0x35, 0xdf, 0xae, 0xeb, 0xdc, 0x24, 0xee, 0x79, 0x45, 0xa7, 0x85 +.byte 0xb6, 0x05, 0x88, 0xde, 0x88, 0x5d, 0x25, 0x7c, 0x97, 0x64, 0x67, 0x09, 0xd9, 0xbf, 0x5a, 0x15 +.byte 0x05, 0x86, 0xf3, 0x09, 0x1e, 0xec, 0x58, 0x32, 0x33, 0x11, 0xf3, 0x77, 0x64, 0xb0, 0x76, 0x1f +.byte 0xe4, 0x10, 0x35, 0x17, 0x1b, 0xf2, 0x0e, 0xb1, 0x6c, 0xa4, 0x2a, 0xa3, 0x73, 0xfc, 0x09, 0x1f +.byte 0x1e, 0x32, 0x19, 0x53, 0x11, 0xe7, 0xd9, 0xb3, 0x2c, 0x2e, 0x76, 0x2e, 0xa1, 0xa3, 0xde, 0x7e +.byte 0x6a, 0x88, 0x09, 0xe8, 0xf2, 0x07, 0x8a, 0xf8, 0xb2, 0xcd, 0x10, 0xe7, 0xe2, 0x73, 0x40, 0x93 +.byte 0xbb, 0x08, 0xd1, 0x3f, 0xe1, 0xfc, 0x0b, 0x94, 0xb3, 0x25, 0xef, 0x7c, 0xa6, 0xd7, 0xd1, 0xaf +.byte 0x9f, 0xff, 0x96, 0x9a, 0xf5, 0x91, 0x7b, 0x98, 0x0b, 0x77, 0xd4, 0x7e, 0xe8, 0x07, 0xd2, 0x62 +.byte 0xb5, 0x95, 0x39, 0xe3, 0xf3, 0xf1, 0x6d, 0x0f, 0x0e, 0x65, 0x84, 0x8a, 0x63, 0x54, 0xc5, 0x80 +.byte 0xb6, 0xe0, 0x9e, 0x4b, 0x7d, 0x47, 0x26, 0xa7, 0x01, 0x08, 0x5d, 0xd1, 0x88, 0x9e, 0xd7, 0xc3 +.byte 0x32, 0x44, 0xfa, 0x82, 0x4a, 0x0a, 0x68, 0x54, 0x7f, 0x38, 0x53, 0x03, 0xcc, 0xa4, 0x00, 0x33 +.byte 0x64, 0x51, 0x59, 0x0b, 0xa3, 0x82, 0x91, 0x7a, 0x5e, 0xec, 0x16, 0xc2, 0xf3, 0x2a, 0xe6, 0x62 +.byte 0xda, 0x2a, 0xdb, 0x59, 0x62, 0x10, 0x25, 0x4a, 0x2a, 0x81, 0x0b, 0x47, 0x07, 0x43, 0x06, 0x70 +.byte 0x87, 0xd2, 0xfa, 0x93, 0x11, 0x29, 0x7a, 0x48, 0x4d, 0xeb, 0x94, 0xc7, 0x70, 0x4d, 0xaf, 0x67 +.byte 0xd5, 0x51, 0xb1, 0x80, 0x20, 0x01, 0x01, 0xb4, 0x7a, 0x08, 0xa6, 0x90, 0x7f, 0x4e, 0xe0, 0xef +.byte 0x07, 0x41, 0x87, 0xaf, 0x6a, 0xa5, 0x5e, 0x8b, 0xfb, 0xcf, 0x50, 0xb2, 0x9a, 0x54, 0xaf, 0xc3 +.byte 0x89, 0xba, 0x58, 0x2d, 0xf5, 0x30, 0x98, 0xb1, 0x36, 0x72, 0x39, 0x7e, 0x49, 0x04, 0xfd, 0x29 +.byte 0xa7, 0x4c, 0x79, 0xe4, 0x05, 0x57, 0xdb, 0x94, 0xb9, 0x16, 0x53, 0x8d, 0x46, 0xb3, 0x1d, 0x95 +.byte 0x61, 0x57, 0x56, 0x7f, 0xaf, 0xf0, 0x16, 0x5b, 0x61, 0x58, 0x6f, 0x36, 0x50, 0x11, 0x0b, 0xd8 +.byte 0xac, 0x2b, 0x95, 0x16, 0x1a, 0x0e, 0x1f, 0x08, 0xcd, 0x36, 0x34, 0x65, 0x10, 0x62, 0x66, 0xd5 +.byte 0x80, 0x5f, 0x14, 0x20, 0x5f, 0x2d, 0x0c, 0xa0, 0x78, 0x0a, 0x68, 0xd6, 0x2c, 0xd7, 0xe9, 0x6f +.byte 0x2b, 0xd2, 0x4a, 0x05, 0x93, 0xfc, 0x9e, 0x6f, 0x6b, 0x67, 0xff, 0x88, 0xf1, 0x4e, 0xa5, 0x69 +.byte 0x4a, 0x52, 0x37, 0x05, 0xea, 0xc6, 0x16, 0x8d, 0xd2, 0xc4, 0x99, 0xd1, 0x82, 0x2b, 0x3b, 0xba +.byte 0x35, 0x75, 0xf7, 0x51, 0x51, 0x58, 0xf3, 0xc8, 0x07, 0xdd, 0xe4, 0xb4, 0x03, 0x7f, 0x02, 0x03 +.byte 0x01, 0x00, 0x01, 0x49, 0x00, 0x78, 0x00, 0x30, 0x47, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 +.byte 0x13, 0x69, 0x54, 0x72, 0x75, 0x73, 0x43, 0x68, 0x69, 0x6e, 0x61, 0x20, 0x43, 0x6f, 0x2e, 0x2c +.byte 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x11, 0x76 +.byte 0x54, 0x72, 0x75, 0x73, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41 +.byte 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b +.byte 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x65, 0x50, 0x4a, 0xae, 0x8c, 0x79, 0x96, 0x4a +.byte 0xaa, 0x1c, 0x08, 0xc3, 0xa3, 0xa2, 0xcd, 0xfe, 0x59, 0x56, 0x41, 0x77, 0xfd, 0x26, 0x94, 0x42 +.byte 0xbb, 0x1d, 0xcd, 0x08, 0xdb, 0x73, 0xb2, 0x5b, 0x75, 0xf3, 0xcf, 0x9c, 0x4e, 0x82, 0xf4, 0xbf +.byte 0xf8, 0x61, 0x26, 0x85, 0x6c, 0xd6, 0x85, 0x5b, 0x72, 0x70, 0xd2, 0xfd, 0xdb, 0x62, 0xb4, 0xdf +.byte 0x53, 0x8b, 0xbd, 0xb1, 0x44, 0x58, 0x62, 0x42, 0x09, 0xc7, 0xfa, 0x7f, 0x5b, 0x10, 0xe7, 0xfe +.byte 0x40, 0xfd, 0xc0, 0xd8, 0xc3, 0x2b, 0x32, 0xe7, 0x70, 0xa6, 0xb7, 0xa6, 0x20, 0x55, 0x1d, 0x7b +.byte 0x80, 0x5d, 0x4b, 0x8f, 0x67, 0x4c, 0xf1, 0x10, 0x49, 0x00, 0x26, 0x02, 0x30, 0x47, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x22, 0x30, 0x20, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x13, 0x19, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x20, 0x54, 0x72, 0x75 +.byte 0x73, 0x74, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x4c, 0x4c, 0x43, 0x31 +.byte 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0b, 0x47, 0x54, 0x53, 0x20, 0x52, 0x6f +.byte 0x6f, 0x74, 0x20, 0x52, 0x31, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48 +.byte 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02 +.byte 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xb6, 0x11, 0x02, 0x8b, 0x1e, 0xe3, 0xa1, 0x77, 0x9b, 0x3b +.byte 0xdc, 0xbf, 0x94, 0x3e, 0xb7, 0x95, 0xa7, 0x40, 0x3c, 0xa1, 0xfd, 0x82, 0xf9, 0x7d, 0x32, 0x06 +.byte 0x82, 0x71, 0xf6, 0xf6, 0x8c, 0x7f, 0xfb, 0xe8, 0xdb, 0xbc, 0x6a, 0x2e, 0x97, 0x97, 0xa3, 0x8c +.byte 0x4b, 0xf9, 0x2b, 0xf6, 0xb1, 0xf9, 0xce, 0x84, 0x1d, 0xb1, 0xf9, 0xc5, 0x97, 0xde, 0xef, 0xb9 +.byte 0xf2, 0xa3, 0xe9, 0xbc, 0x12, 0x89, 0x5e, 0xa7, 0xaa, 0x52, 0xab, 0xf8, 0x23, 0x27, 0xcb, 0xa4 +.byte 0xb1, 0x9c, 0x63, 0xdb, 0xd7, 0x99, 0x7e, 0xf0, 0x0a, 0x5e, 0xeb, 0x68, 0xa6, 0xf4, 0xc6, 0x5a +.byte 0x47, 0x0d, 0x4d, 0x10, 0x33, 0xe3, 0x4e, 0xb1, 0x13, 0xa3, 0xc8, 0x18, 0x6c, 0x4b, 0xec, 0xfc +.byte 0x09, 0x90, 0xdf, 0x9d, 0x64, 0x29, 0x25, 0x23, 0x07, 0xa1, 0xb4, 0xd2, 0x3d, 0x2e, 0x60, 0xe0 +.byte 0xcf, 0xd2, 0x09, 0x87, 0xbb, 0xcd, 0x48, 0xf0, 0x4d, 0xc2, 0xc2, 0x7a, 0x88, 0x8a, 0xbb, 0xba +.byte 0xcf, 0x59, 0x19, 0xd6, 0xaf, 0x8f, 0xb0, 0x07, 0xb0, 0x9e, 0x31, 0xf1, 0x82, 0xc1, 0xc0, 0xdf +.byte 0x2e, 0xa6, 0x6d, 0x6c, 0x19, 0x0e, 0xb5, 0xd8, 0x7e, 0x26, 0x1a, 0x45, 0x03, 0x3d, 0xb0, 0x79 +.byte 0xa4, 0x94, 0x28, 0xad, 0x0f, 0x7f, 0x26, 0xe5, 0xa8, 0x08, 0xfe, 0x96, 0xe8, 0x3c, 0x68, 0x94 +.byte 0x53, 0xee, 0x83, 0x3a, 0x88, 0x2b, 0x15, 0x96, 0x09, 0xb2, 0xe0, 0x7a, 0x8c, 0x2e, 0x75, 0xd6 +.byte 0x9c, 0xeb, 0xa7, 0x56, 0x64, 0x8f, 0x96, 0x4f, 0x68, 0xae, 0x3d, 0x97, 0xc2, 0x84, 0x8f, 0xc0 +.byte 0xbc, 0x40, 0xc0, 0x0b, 0x5c, 0xbd, 0xf6, 0x87, 0xb3, 0x35, 0x6c, 0xac, 0x18, 0x50, 0x7f, 0x84 +.byte 0xe0, 0x4c, 0xcd, 0x92, 0xd3, 0x20, 0xe9, 0x33, 0xbc, 0x52, 0x99, 0xaf, 0x32, 0xb5, 0x29, 0xb3 +.byte 0x25, 0x2a, 0xb4, 0x48, 0xf9, 0x72, 0xe1, 0xca, 0x64, 0xf7, 0xe6, 0x82, 0x10, 0x8d, 0xe8, 0x9d +.byte 0xc2, 0x8a, 0x88, 0xfa, 0x38, 0x66, 0x8a, 0xfc, 0x63, 0xf9, 0x01, 0xf9, 0x78, 0xfd, 0x7b, 0x5c +.byte 0x77, 0xfa, 0x76, 0x87, 0xfa, 0xec, 0xdf, 0xb1, 0x0e, 0x79, 0x95, 0x57, 0xb4, 0xbd, 0x26, 0xef +.byte 0xd6, 0x01, 0xd1, 0xeb, 0x16, 0x0a, 0xbb, 0x8e, 0x0b, 0xb5, 0xc5, 0xc5, 0x8a, 0x55, 0xab, 0xd3 +.byte 0xac, 0xea, 0x91, 0x4b, 0x29, 0xcc, 0x19, 0xa4, 0x32, 0x25, 0x4e, 0x2a, 0xf1, 0x65, 0x44, 0xd0 +.byte 0x02, 0xce, 0xaa, 0xce, 0x49, 0xb4, 0xea, 0x9f, 0x7c, 0x83, 0xb0, 0x40, 0x7b, 0xe7, 0x43, 0xab +.byte 0xa7, 0x6c, 0xa3, 0x8f, 0x7d, 0x89, 0x81, 0xfa, 0x4c, 0xa5, 0xff, 0xd5, 0x8e, 0xc3, 0xce, 0x4b +.byte 0xe0, 0xb5, 0xd8, 0xb3, 0x8e, 0x45, 0xcf, 0x76, 0xc0, 0xed, 0x40, 0x2b, 0xfd, 0x53, 0x0f, 0xb0 +.byte 0xa7, 0xd5, 0x3b, 0x0d, 0xb1, 0x8a, 0xa2, 0x03, 0xde, 0x31, 0xad, 0xcc, 0x77, 0xea, 0x6f, 0x7b +.byte 0x3e, 0xd6, 0xdf, 0x91, 0x22, 0x12, 0xe6, 0xbe, 0xfa, 0xd8, 0x32, 0xfc, 0x10, 0x63, 0x14, 0x51 +.byte 0x72, 0xde, 0x5d, 0xd6, 0x16, 0x93, 0xbd, 0x29, 0x68, 0x33, 0xef, 0x3a, 0x66, 0xec, 0x07, 0x8a +.byte 0x26, 0xdf, 0x13, 0xd7, 0x57, 0x65, 0x78, 0x27, 0xde, 0x5e, 0x49, 0x14, 0x00, 0xa2, 0x00, 0x7f +.byte 0x9a, 0xa8, 0x21, 0xb6, 0xa9, 0xb1, 0x95, 0xb0, 0xa5, 0xb9, 0x0d, 0x16, 0x11, 0xda, 0xc7, 0x6c +.byte 0x48, 0x3c, 0x40, 0xe0, 0x7e, 0x0d, 0x5a, 0xcd, 0x56, 0x3c, 0xd1, 0x97, 0x05, 0xb9, 0xcb, 0x4b +.byte 0xed, 0x39, 0x4b, 0x9c, 0xc4, 0x3f, 0xd2, 0x55, 0x13, 0x6e, 0x24, 0xb0, 0xd6, 0x71, 0xfa, 0xf4 +.byte 0xc1, 0xba, 0xcc, 0xed, 0x1b, 0xf5, 0xfe, 0x81, 0x41, 0xd8, 0x00, 0x98, 0x3d, 0x3a, 0xc8, 0xae +.byte 0x7a, 0x98, 0x37, 0x18, 0x05, 0x95, 0x02, 0x03, 0x01, 0x00, 0x01, 0x49, 0x00, 0x26, 0x02, 0x30 +.byte 0x47, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x22 +.byte 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x19, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x20 +.byte 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x4c +.byte 0x4c, 0x43, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0b, 0x47, 0x54, 0x53 +.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x52, 0x32, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09 +.byte 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00 +.byte 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xce, 0xde, 0xfd, 0xa6, 0xfb, 0xec, 0xec +.byte 0x14, 0x34, 0x3c, 0x07, 0x06, 0x5a, 0x6c, 0x59, 0xf7, 0x19, 0x35, 0xdd, 0xf7, 0xc1, 0x9d, 0x55 +.byte 0xaa, 0xd3, 0xcd, 0x3b, 0xa4, 0x93, 0x72, 0xef, 0x0a, 0xfa, 0x6d, 0x9d, 0xf6, 0xf0, 0x85, 0x80 +.byte 0x5b, 0xa1, 0x48, 0x52, 0x9f, 0x39, 0xc5, 0xb7, 0xee, 0x28, 0xac, 0xef, 0xcb, 0x76, 0x68, 0x14 +.byte 0xb9, 0xdf, 0xad, 0x01, 0x6c, 0x99, 0x1f, 0xc4, 0x22, 0x1d, 0x9f, 0xfe, 0x72, 0x77, 0xe0, 0x2c +.byte 0x5b, 0xaf, 0xe4, 0x04, 0xbf, 0x4f, 0x72, 0xa0, 0x1a, 0x34, 0x98, 0xe8, 0x39, 0x68, 0xec, 0x95 +.byte 0x25, 0x7b, 0x76, 0xa1, 0xe6, 0x69, 0xb9, 0x85, 0x19, 0xbd, 0x89, 0x8c, 0xfe, 0xad, 0xed, 0x36 +.byte 0xea, 0x73, 0xbc, 0xff, 0x83, 0xe2, 0xcb, 0x7d, 0xc1, 0xd2, 0xce, 0x4a, 0xb3, 0x8d, 0x05, 0x9e +.byte 0x8b, 0x49, 0x93, 0xdf, 0xc1, 0x5b, 0xd0, 0x6e, 0x5e, 0xf0, 0x2e, 0x30, 0x2e, 0x82, 0xfc, 0xfa +.byte 0xbc, 0xb4, 0x17, 0x0a, 0x48, 0xe5, 0x88, 0x9b, 0xc5, 0x9b, 0x6b, 0xde, 0xb0, 0xca, 0xb4, 0x03 +.byte 0xf0, 0xda, 0xf4, 0x90, 0xb8, 0x65, 0x64, 0xf7, 0x5c, 0x4c, 0xad, 0xe8, 0x7e, 0x66, 0x5e, 0x99 +.byte 0xd7, 0xb8, 0xc2, 0x3e, 0xc8, 0xd0, 0x13, 0x9d, 0xad, 0xee, 0xe4, 0x45, 0x7b, 0x89, 0x55, 0xf7 +.byte 0x8a, 0x1f, 0x62, 0x52, 0x84, 0x12, 0xb3, 0xc2, 0x40, 0x97, 0xe3, 0x8a, 0x1f, 0x47, 0x91, 0xa6 +.byte 0x74, 0x5a, 0xd2, 0xf8, 0xb1, 0x63, 0x28, 0x10, 0xb8, 0xb3, 0x09, 0xb8, 0x56, 0x77, 0x40, 0xa2 +.byte 0x26, 0x98, 0x79, 0xc6, 0xfe, 0xdf, 0x25, 0xee, 0x3e, 0xe5, 0xa0, 0x7f, 0xd4, 0x61, 0x0f, 0x51 +.byte 0x4b, 0x3c, 0x3f, 0x8c, 0xda, 0xe1, 0x70, 0x74, 0xd8, 0xc2, 0x68, 0xa1, 0xf9, 0xc1, 0x0c, 0xe9 +.byte 0xa1, 0xe2, 0x7f, 0xbb, 0x55, 0x3c, 0x76, 0x06, 0xee, 0x6a, 0x4e, 0xcc, 0x92, 0x88, 0x30, 0x4d +.byte 0x9a, 0xbd, 0x4f, 0x0b, 0x48, 0x9a, 0x84, 0xb5, 0x98, 0xa3, 0xd5, 0xfb, 0x73, 0xc1, 0x57, 0x61 +.byte 0xdd, 0x28, 0x56, 0x75, 0x13, 0xae, 0x87, 0x8e, 0xe7, 0x0c, 0x51, 0x09, 0x10, 0x75, 0x88, 0x4c +.byte 0xbc, 0x8d, 0xf9, 0x7b, 0x3c, 0xd4, 0x22, 0x48, 0x1f, 0x2a, 0xdc, 0xeb, 0x6b, 0xbb, 0x44, 0xb1 +.byte 0xcb, 0x33, 0x71, 0x32, 0x46, 0xaf, 0xad, 0x4a, 0xf1, 0x8c, 0xe8, 0x74, 0x3a, 0xac, 0xe7, 0x1a +.byte 0x22, 0x73, 0x80, 0xd2, 0x30, 0xf7, 0x25, 0x42, 0xc7, 0x22, 0x3b, 0x3b, 0x12, 0xad, 0x96, 0x2e +.byte 0xc6, 0xc3, 0x76, 0x07, 0xaa, 0x20, 0xb7, 0x35, 0x49, 0x57, 0xe9, 0x92, 0x49, 0xe8, 0x76, 0x16 +.byte 0x72, 0x31, 0x67, 0x2b, 0x96, 0x7e, 0x8a, 0xa3, 0xc7, 0x94, 0x56, 0x22, 0xbf, 0x6a, 0x4b, 0x7e +.byte 0x01, 0x21, 0xb2, 0x23, 0x32, 0xdf, 0xe4, 0x9a, 0x44, 0x6d, 0x59, 0x5b, 0x5d, 0xf5, 0x00, 0xa0 +.byte 0x1c, 0x9b, 0xc6, 0x78, 0x97, 0x8d, 0x90, 0xff, 0x9b, 0xc8, 0xaa, 0xb4, 0xaf, 0x11, 0x51, 0x39 +.byte 0x5e, 0xd9, 0xfb, 0x67, 0xad, 0xd5, 0x5b, 0x11, 0x9d, 0x32, 0x9a, 0x1b, 0xbd, 0xd5, 0xba, 0x5b +.byte 0xa5, 0xc9, 0xcb, 0x25, 0x69, 0x53, 0x55, 0x27, 0x5c, 0xe0, 0xca, 0x36, 0xcb, 0x88, 0x61, 0xfb +.byte 0x1e, 0xb7, 0xd0, 0xcb, 0xee, 0x16, 0xfb, 0xd3, 0xa6, 0x4c, 0xde, 0x92, 0xa5, 0xd4, 0xe2, 0xdf +.byte 0xf5, 0x06, 0x54, 0xde, 0x2e, 0x9d, 0x4b, 0xb4, 0x93, 0x30, 0xaa, 0x81, 0xce, 0xdd, 0x1a, 0xdc +.byte 0x51, 0x73, 0x0d, 0x4f, 0x70, 0xe9, 0xe5, 0xb6, 0x16, 0x21, 0x19, 0x79, 0xb2, 0xe6, 0x89, 0x0b +.byte 0x75, 0x64, 0xca, 0xd5, 0xab, 0xbc, 0x09, 0xc1, 0x18, 0xa1, 0xff, 0xd4, 0x54, 0xa1, 0x85, 0x3c +.byte 0xfd, 0x14, 0x24, 0x03, 0xb2, 0x87, 0xd3, 0xa4, 0xb7, 0x02, 0x03, 0x01, 0x00, 0x01, 0x49, 0x00 +.byte 0x78, 0x00, 0x30, 0x47, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55 +.byte 0x53, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x19, 0x47, 0x6f, 0x6f, 0x67 +.byte 0x6c, 0x65, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65 +.byte 0x73, 0x20, 0x4c, 0x4c, 0x43, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0b +.byte 0x47, 0x54, 0x53, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x52, 0x33, 0x30, 0x76, 0x30, 0x10, 0x06 +.byte 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03 +.byte 0x62, 0x00, 0x04, 0x1f, 0x4f, 0x33, 0x87, 0x33, 0x29, 0x8a, 0xa1, 0x84, 0xde, 0xcb, 0xc7, 0x21 +.byte 0x58, 0x41, 0x89, 0xea, 0x56, 0x9d, 0x2b, 0x4b, 0x85, 0xc6, 0x1d, 0x4c, 0x27, 0xbc, 0x7f, 0x26 +.byte 0x51, 0x72, 0x6f, 0xe2, 0x9f, 0xd6, 0xa3, 0xca, 0xcc, 0x45, 0x14, 0x46, 0x8b, 0xad, 0xef, 0x7e +.byte 0x86, 0x8c, 0xec, 0xb1, 0x7e, 0x2f, 0xff, 0xa9, 0x71, 0x9d, 0x18, 0x84, 0x45, 0x04, 0x41, 0x55 +.byte 0x6e, 0x2b, 0xea, 0x26, 0x7f, 0xbb, 0x90, 0x01, 0xe3, 0x4b, 0x19, 0xba, 0xe4, 0x54, 0x96, 0x45 +.byte 0x09, 0xb1, 0xd5, 0x6c, 0x91, 0x44, 0xad, 0x84, 0x13, 0x8e, 0x9a, 0x8c, 0x0d, 0x80, 0x0c, 0x32 +.byte 0xf6, 0xe0, 0x27, 0x49, 0x00, 0x78, 0x00, 0x30, 0x47, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 +.byte 0x19, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x53, 0x65 +.byte 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x4c, 0x4c, 0x43, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03 +.byte 0x55, 0x04, 0x03, 0x13, 0x0b, 0x47, 0x54, 0x53, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x52, 0x34 +.byte 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b +.byte 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xf3, 0x74, 0x73, 0xa7, 0x68, 0x8b, 0x60, 0xae +.byte 0x43, 0xb8, 0x35, 0xc5, 0x81, 0x30, 0x7b, 0x4b, 0x49, 0x9d, 0xfb, 0xc1, 0x61, 0xce, 0xe6, 0xde +.byte 0x46, 0xbd, 0x6b, 0xd5, 0x61, 0x18, 0x35, 0xae, 0x40, 0xdd, 0x73, 0xf7, 0x89, 0x91, 0x30, 0x5a +.byte 0xeb, 0x3c, 0xee, 0x85, 0x7c, 0xa2, 0x40, 0x76, 0x3b, 0xa9, 0xc6, 0xb8, 0x47, 0xd8, 0x2a, 0xe7 +.byte 0x92, 0x91, 0x6a, 0x73, 0xe9, 0xb1, 0x72, 0x39, 0x9f, 0x29, 0x9f, 0xa2, 0x98, 0xd3, 0x5f, 0x5e +.byte 0x58, 0x86, 0x65, 0x0f, 0xa1, 0x84, 0x65, 0x06, 0xd1, 0xdc, 0x8b, 0xc9, 0xc7, 0x73, 0xc8, 0x8c +.byte 0x6a, 0x2f, 0xe5, 0xc4, 0xab, 0xd1, 0x1d, 0x8a, 0x4a, 0x00, 0x26, 0x02, 0x30, 0x48, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x42, 0x4d, 0x31, 0x19, 0x30, 0x17, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x4c +.byte 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13 +.byte 0x15, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43 +.byte 0x41, 0x20, 0x31, 0x20, 0x47, 0x33, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86 +.byte 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82 +.byte 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xa0, 0xbe, 0x50, 0x10, 0x8e, 0xe9, 0xf2, 0x6c, 0x40 +.byte 0xb4, 0x04, 0x9c, 0x85, 0xb9, 0x31, 0xca, 0xdc, 0x2d, 0xe4, 0x11, 0xa9, 0x04, 0x3c, 0x1b, 0x55 +.byte 0xc1, 0xe7, 0x58, 0x30, 0x1d, 0x24, 0xb4, 0xc3, 0xef, 0x85, 0xde, 0x8c, 0x2c, 0xe1, 0xc1, 0x3d +.byte 0xdf, 0x82, 0xe6, 0x4f, 0xad, 0x47, 0x87, 0x6c, 0xec, 0x5b, 0x49, 0xc1, 0x4a, 0xd5, 0xbb, 0x8f +.byte 0xec, 0x87, 0xac, 0x7f, 0x82, 0x9a, 0x86, 0xec, 0x3d, 0x03, 0x99, 0x52, 0x01, 0xd2, 0x35, 0x9e +.byte 0xac, 0xda, 0xf0, 0x53, 0xc9, 0x66, 0x3c, 0xd4, 0xac, 0x02, 0x01, 0xda, 0x24, 0xd3, 0x3b, 0xa8 +.byte 0x02, 0x46, 0xaf, 0xa4, 0x1c, 0xe3, 0xf8, 0x73, 0x58, 0x76, 0xb7, 0xf6, 0x0e, 0x90, 0x0d, 0xb5 +.byte 0xf0, 0xcf, 0xcc, 0xfa, 0xf9, 0xc6, 0x4c, 0xe5, 0xc3, 0x86, 0x30, 0x0a, 0x8d, 0x17, 0x7e, 0x35 +.byte 0xeb, 0xc5, 0xdf, 0xbb, 0x0e, 0x9c, 0xc0, 0x8d, 0x87, 0xe3, 0x88, 0x38, 0x85, 0x67, 0xfa, 0x3e +.byte 0xc7, 0xab, 0xe0, 0x13, 0x9c, 0x05, 0x18, 0x98, 0xcf, 0x93, 0xf5, 0xb1, 0x92, 0xb4, 0xfc, 0x23 +.byte 0xd3, 0xcf, 0xd5, 0xc4, 0x27, 0x49, 0xe0, 0x9e, 0x3c, 0x9b, 0x08, 0xa3, 0x8b, 0x5d, 0x2a, 0x21 +.byte 0xe0, 0xfc, 0x39, 0xaa, 0x53, 0xda, 0x7d, 0x7e, 0xcf, 0x1a, 0x09, 0x53, 0xbc, 0x5d, 0x05, 0x04 +.byte 0xcf, 0xa1, 0x4a, 0x8f, 0x8b, 0x76, 0x82, 0x0d, 0xa1, 0xf8, 0xd2, 0xc7, 0x14, 0x77, 0x5b, 0x90 +.byte 0x36, 0x07, 0x81, 0x9b, 0x3e, 0x06, 0xfa, 0x52, 0x5e, 0x63, 0xc5, 0xa6, 0x00, 0xfe, 0xa5, 0xe9 +.byte 0x52, 0x1b, 0x52, 0xb5, 0x92, 0x39, 0x72, 0x03, 0x09, 0x62, 0xbd, 0xb0, 0x60, 0x16, 0x6e, 0xa6 +.byte 0xdd, 0x25, 0xc2, 0x03, 0x66, 0xdd, 0xf3, 0x04, 0xd1, 0x40, 0xe2, 0x4e, 0x8b, 0x86, 0xf4, 0x6f +.byte 0xe5, 0x83, 0xa0, 0x27, 0x84, 0x5e, 0x04, 0xc1, 0xf5, 0x90, 0xbd, 0x30, 0x3d, 0xc4, 0xef, 0xa8 +.byte 0x69, 0xbc, 0x38, 0x9b, 0xa4, 0xa4, 0x96, 0xd1, 0x62, 0xda, 0x69, 0xc0, 0x01, 0x96, 0xae, 0xcb +.byte 0xc4, 0x51, 0x34, 0xea, 0x0c, 0xaa, 0xff, 0x21, 0x8e, 0x59, 0x8f, 0x4a, 0x5c, 0xe4, 0x61, 0x9a +.byte 0xa7, 0xd2, 0xe9, 0x2a, 0x78, 0x8d, 0x51, 0x3d, 0x3a, 0x15, 0xee, 0xa2, 0x59, 0x8e, 0xa9, 0x5c +.byte 0xde, 0xc5, 0xf9, 0x90, 0x22, 0xe5, 0x88, 0x45, 0x71, 0xdd, 0x91, 0x99, 0x6c, 0x7a, 0x9f, 0x3d +.byte 0x3d, 0x98, 0x7c, 0x5e, 0xf6, 0xbe, 0x16, 0x68, 0xa0, 0x5e, 0xae, 0x0b, 0x23, 0xfc, 0x5a, 0x0f +.byte 0xaa, 0x22, 0x76, 0x2d, 0xc9, 0xa1, 0x10, 0x1d, 0xe4, 0xd3, 0x44, 0x23, 0x90, 0x88, 0x9f, 0xc6 +.byte 0x2a, 0xe6, 0xd7, 0xf5, 0x9a, 0xb3, 0x58, 0x1e, 0x2f, 0x30, 0x89, 0x08, 0x1b, 0x54, 0xa2, 0xb5 +.byte 0x98, 0x23, 0xec, 0x08, 0x77, 0x1c, 0x95, 0x5d, 0x61, 0xd1, 0xcb, 0x89, 0x9c, 0x5f, 0xa2, 0x4a +.byte 0x91, 0x9a, 0xef, 0x21, 0xaa, 0x49, 0x16, 0x08, 0xa8, 0xbd, 0x61, 0x28, 0x31, 0xc9, 0x74, 0xad +.byte 0x85, 0xf6, 0xd9, 0xc5, 0xb1, 0x8b, 0xd1, 0xe5, 0x10, 0x32, 0x4d, 0x5f, 0x8b, 0x20, 0x3a, 0x3c +.byte 0x49, 0x1f, 0x33, 0x85, 0x59, 0x0d, 0xdb, 0xcb, 0x09, 0x75, 0x43, 0x69, 0x73, 0xfb, 0x6b, 0x71 +.byte 0x7d, 0xf0, 0xdf, 0xc4, 0x4c, 0x7d, 0xc6, 0xa3, 0x2e, 0xc8, 0x95, 0x79, 0xcb, 0x73, 0xa2, 0x8e +.byte 0x4e, 0x4d, 0x24, 0xfb, 0x5e, 0xe4, 0x04, 0xbe, 0x72, 0x1b, 0xa6, 0x27, 0x2d, 0x49, 0x5a, 0x99 +.byte 0x7a, 0xd7, 0x5c, 0x09, 0x20, 0xb7, 0x7f, 0x94, 0xb9, 0x4f, 0xf1, 0x0d, 0x1c, 0x5e, 0x88, 0x42 +.byte 0x1b, 0x11, 0xb7, 0xe7, 0x91, 0xdb, 0x9e, 0x6c, 0xf4, 0x6a, 0xdf, 0x8c, 0x06, 0x98, 0x03, 0xad +.byte 0xcc, 0x28, 0xef, 0xa5, 0x47, 0xf3, 0x53, 0x02, 0x03, 0x01, 0x00, 0x01, 0x4a, 0x00, 0x26, 0x02 +.byte 0x30, 0x48, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x42, 0x4d, 0x31 +.byte 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64 +.byte 0x69, 0x73, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03 +.byte 0x55, 0x04, 0x03, 0x13, 0x15, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x52, 0x6f +.byte 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x32, 0x20, 0x47, 0x33, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d +.byte 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02 +.byte 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xa1, 0xae, 0x25, 0xb2, 0x01 +.byte 0x18, 0xdc, 0x57, 0x88, 0x3f, 0x46, 0xeb, 0xf9, 0xaf, 0xe2, 0xeb, 0x23, 0x71, 0xe2, 0x9a, 0xd1 +.byte 0x61, 0x66, 0x21, 0x5f, 0xaa, 0xaf, 0x27, 0x51, 0xe5, 0x6e, 0x1b, 0x16, 0xd4, 0x2d, 0x7d, 0x50 +.byte 0xb0, 0x53, 0x77, 0xbd, 0x78, 0x3a, 0x60, 0xe2, 0x64, 0x02, 0x9b, 0x7c, 0x86, 0x9b, 0xd6, 0x1a +.byte 0x8e, 0xad, 0xff, 0x1f, 0x15, 0x7f, 0xd5, 0x95, 0x1e, 0x12, 0xcb, 0xe6, 0x14, 0x84, 0x04, 0xc1 +.byte 0xdf, 0x36, 0xb3, 0x16, 0x9f, 0x8a, 0xe3, 0xc9, 0xdb, 0x98, 0x34, 0xce, 0xd8, 0x33, 0x17, 0x28 +.byte 0x46, 0xfc, 0xa7, 0xc9, 0xf0, 0xd2, 0xb4, 0xd5, 0x4d, 0x09, 0x72, 0x49, 0xf9, 0xf2, 0x87, 0xe3 +.byte 0xa9, 0xda, 0x7d, 0xa1, 0x7d, 0x6b, 0xb2, 0x3a, 0x25, 0xa9, 0x6d, 0x52, 0x44, 0xac, 0xf8, 0xbe +.byte 0x6e, 0xfb, 0xdc, 0xa6, 0x73, 0x91, 0x90, 0x61, 0xa6, 0x03, 0x14, 0x20, 0xf2, 0xe7, 0x87, 0xa3 +.byte 0x88, 0xad, 0xad, 0xa0, 0x8c, 0xff, 0xa6, 0x0b, 0x25, 0x52, 0x25, 0xe7, 0x16, 0x01, 0xd5, 0xcb +.byte 0xb8, 0x35, 0x81, 0x0c, 0xa3, 0x3b, 0xf0, 0xe1, 0xe1, 0xfc, 0x5a, 0x5d, 0xce, 0x80, 0x71, 0x6d +.byte 0xf8, 0x49, 0xab, 0x3e, 0x3b, 0xba, 0xb8, 0xd7, 0x80, 0x01, 0xfb, 0xa5, 0xeb, 0x5b, 0xb3, 0xc5 +.byte 0x5e, 0x60, 0x2a, 0x31, 0xa0, 0xaf, 0x37, 0xe8, 0x20, 0x3a, 0x9f, 0xa8, 0x32, 0x2c, 0x0c, 0xcc +.byte 0x09, 0x1d, 0xd3, 0x9e, 0x8e, 0x5d, 0xbc, 0x4c, 0x98, 0xee, 0xc5, 0x1a, 0x68, 0x7b, 0xec, 0x53 +.byte 0xa6, 0xe9, 0x14, 0x35, 0xa3, 0xdf, 0xcd, 0x80, 0x9f, 0x0c, 0x48, 0xfb, 0x1c, 0xf4, 0xf1, 0xbf +.byte 0x4a, 0xb8, 0xfa, 0xd5, 0x8c, 0x71, 0x4a, 0xc7, 0x1f, 0xad, 0xfe, 0x41, 0x9a, 0xb3, 0x83, 0x5d +.byte 0xf2, 0x84, 0x56, 0xef, 0xa5, 0x57, 0x43, 0xce, 0x29, 0xad, 0x8c, 0xab, 0x55, 0xbf, 0xc4, 0xfb +.byte 0x5b, 0x01, 0xdd, 0x23, 0x21, 0xa1, 0x58, 0x00, 0x8e, 0xc3, 0xd0, 0x6a, 0x13, 0xed, 0x13, 0xe3 +.byte 0x12, 0x2b, 0x80, 0xdc, 0x67, 0xe6, 0x95, 0xb2, 0xcd, 0x1e, 0x22, 0x6e, 0x2a, 0xf8, 0x41, 0xd4 +.byte 0xf2, 0xca, 0x14, 0x07, 0x8d, 0x8a, 0x55, 0x12, 0xc6, 0x69, 0xf5, 0xb8, 0x86, 0x68, 0x2f, 0x53 +.byte 0x5e, 0xb0, 0xd2, 0xaa, 0x21, 0xc1, 0x98, 0xe6, 0x30, 0xe3, 0x67, 0x55, 0xc7, 0x9b, 0x6e, 0xac +.byte 0x19, 0xa8, 0x55, 0xa6, 0x45, 0x06, 0xd0, 0x23, 0x3a, 0xdb, 0xeb, 0x65, 0x5d, 0x2a, 0x11, 0x11 +.byte 0xf0, 0x3b, 0x4f, 0xca, 0x6d, 0xf4, 0x34, 0xc4, 0x71, 0xe4, 0xff, 0x00, 0x5a, 0xf6, 0x5c, 0xae +.byte 0x23, 0x60, 0x85, 0x73, 0xf1, 0xe4, 0x10, 0xb1, 0x25, 0xae, 0xd5, 0x92, 0xbb, 0x13, 0xc1, 0x0c +.byte 0xe0, 0x39, 0xda, 0xb4, 0x39, 0x57, 0xb5, 0xab, 0x35, 0xaa, 0x72, 0x21, 0x3b, 0x83, 0x35, 0xe7 +.byte 0x31, 0xdf, 0x7a, 0x21, 0x6e, 0xb8, 0x32, 0x08, 0x7d, 0x1d, 0x32, 0x91, 0x15, 0x4a, 0x62, 0x72 +.byte 0xcf, 0xe3, 0x77, 0xa1, 0xbc, 0xd5, 0x11, 0x1b, 0x76, 0x01, 0x67, 0x08, 0xe0, 0x41, 0x0b, 0xc3 +.byte 0xeb, 0x15, 0x6e, 0xf8, 0xa4, 0x19, 0xd9, 0xa2, 0xab, 0xaf, 0xe2, 0x27, 0x52, 0x56, 0x2b, 0x02 +.byte 0x8a, 0x2c, 0x14, 0x24, 0xf9, 0xbf, 0x42, 0x02, 0xbf, 0x26, 0xc8, 0xc6, 0x8f, 0xe0, 0x6e, 0x38 +.byte 0x7d, 0x53, 0x2d, 0xe5, 0xed, 0x98, 0xb3, 0x95, 0x63, 0x68, 0x7f, 0xf9, 0x35, 0xf4, 0xdf, 0x88 +.byte 0xc5, 0x60, 0x35, 0x92, 0xc0, 0x7c, 0x69, 0x1c, 0x61, 0x95, 0x16, 0xd0, 0xeb, 0xde, 0x0b, 0xaf +.byte 0x3e, 0x04, 0x10, 0x45, 0x65, 0x58, 0x50, 0x38, 0xaf, 0x48, 0xf2, 0x59, 0xb6, 0x16, 0xf2, 0x3c +.byte 0x0d, 0x90, 0x02, 0xc6, 0x70, 0x2e, 0x01, 0xad, 0x3c, 0x15, 0xd7, 0x02, 0x03, 0x01, 0x00, 0x01 +.byte 0x4a, 0x00, 0x26, 0x02, 0x30, 0x48, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x42, 0x4d, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10, 0x51, 0x75 +.byte 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x1e +.byte 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x15, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69 +.byte 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x33, 0x20, 0x47, 0x33, 0x30, 0x82 +.byte 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05 +.byte 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xb3 +.byte 0xcb, 0x0e, 0x10, 0x67, 0x8e, 0xea, 0x14, 0x97, 0xa7, 0x32, 0x2a, 0x0a, 0x56, 0x36, 0x7f, 0x68 +.byte 0x4c, 0xc7, 0xb3, 0x6f, 0x3a, 0x23, 0x14, 0x91, 0xff, 0x19, 0x7f, 0xa5, 0xca, 0xac, 0xee, 0xb3 +.byte 0x76, 0x9d, 0x7a, 0xe9, 0x8b, 0x1b, 0xab, 0x6b, 0x31, 0xdb, 0xfa, 0x0b, 0x53, 0x4c, 0xaf, 0xc5 +.byte 0xa5, 0x1a, 0x79, 0x3c, 0x8a, 0x4c, 0xff, 0xac, 0xdf, 0x25, 0xde, 0x4e, 0xd9, 0x82, 0x32, 0x0b +.byte 0x44, 0xde, 0xca, 0xdb, 0x8c, 0xac, 0xa3, 0x6e, 0x16, 0x83, 0x3b, 0xa6, 0x64, 0x4b, 0x32, 0x89 +.byte 0xfb, 0x16, 0x16, 0x38, 0x7e, 0xeb, 0x43, 0xe2, 0xd3, 0x74, 0x4a, 0xc2, 0x62, 0x0a, 0x73, 0x0a +.byte 0xdd, 0x49, 0xb3, 0x57, 0xd2, 0xb0, 0x0a, 0x85, 0x9d, 0x71, 0x3c, 0xde, 0xa3, 0xcb, 0xc0, 0x32 +.byte 0xf3, 0x01, 0x39, 0x20, 0x43, 0x1b, 0x35, 0xd1, 0x53, 0xb3, 0xb1, 0xee, 0xc5, 0x93, 0x69, 0x82 +.byte 0x3e, 0x16, 0xb5, 0x28, 0x46, 0xa1, 0xde, 0xea, 0x89, 0x09, 0xed, 0x43, 0xb8, 0x05, 0x46, 0x8a +.byte 0x86, 0xf5, 0x59, 0x47, 0xbe, 0x1b, 0x6f, 0x01, 0x21, 0x10, 0xb9, 0xfd, 0xa9, 0xd2, 0x28, 0xca +.byte 0x10, 0x39, 0x09, 0xca, 0x13, 0x36, 0xcf, 0x9c, 0xad, 0xad, 0x40, 0x74, 0x79, 0x2b, 0x02, 0x3f +.byte 0x34, 0xff, 0xfa, 0x20, 0x69, 0x7d, 0xd3, 0xee, 0x61, 0xf5, 0xba, 0xb3, 0xe7, 0x30, 0xd0, 0x37 +.byte 0x23, 0x86, 0x72, 0x61, 0x45, 0x29, 0x48, 0x59, 0x68, 0x6f, 0x77, 0xa6, 0x2e, 0x81, 0xbe, 0x07 +.byte 0x4d, 0x6f, 0xaf, 0xce, 0xc4, 0x45, 0x13, 0x91, 0x14, 0x70, 0x06, 0x8f, 0x1f, 0x9f, 0xf8, 0x87 +.byte 0x69, 0xb1, 0x0e, 0xef, 0xc3, 0x89, 0x19, 0xeb, 0xea, 0x1c, 0x61, 0xfc, 0x7a, 0x6c, 0x8a, 0xdc +.byte 0xd6, 0x03, 0x0b, 0x9e, 0x26, 0xba, 0x12, 0xdd, 0xd4, 0x54, 0x39, 0xab, 0x26, 0xa3, 0x33, 0xea +.byte 0x75, 0x81, 0xda, 0x2d, 0xcd, 0x0f, 0x4f, 0xe4, 0x03, 0xd1, 0xef, 0x15, 0x97, 0x1b, 0x6b, 0x90 +.byte 0xc5, 0x02, 0x90, 0x93, 0x66, 0x02, 0x21, 0xb1, 0x47, 0xde, 0x8b, 0x9a, 0x4a, 0x80, 0xb9, 0x55 +.byte 0x8f, 0xb5, 0xa2, 0x2f, 0xc0, 0xd6, 0x33, 0x67, 0xda, 0x7e, 0xc4, 0xa7, 0xb4, 0x04, 0x44, 0xeb +.byte 0x47, 0xfb, 0xe6, 0x58, 0xb9, 0xf7, 0x0c, 0xf0, 0x7b, 0x2b, 0xb1, 0xc0, 0x70, 0x29, 0xc3, 0x40 +.byte 0x62, 0x2d, 0x3b, 0x48, 0x69, 0xdc, 0x23, 0x3c, 0x48, 0xeb, 0x7b, 0x09, 0x79, 0xa9, 0x6d, 0xda +.byte 0xa8, 0x30, 0x98, 0xcf, 0x80, 0x72, 0x03, 0x88, 0xa6, 0x5b, 0x46, 0xae, 0x72, 0x79, 0x7c, 0x08 +.byte 0x03, 0x21, 0x65, 0xae, 0xb7, 0xe1, 0x1c, 0xa5, 0xb1, 0x2a, 0xa2, 0x31, 0xde, 0x66, 0x04, 0xf7 +.byte 0xc0, 0x74, 0xe8, 0x71, 0xde, 0xff, 0x3d, 0x59, 0xcc, 0x96, 0x26, 0x12, 0x8b, 0x85, 0x95, 0x57 +.byte 0x1a, 0xab, 0x6b, 0x75, 0x0b, 0x44, 0x3d, 0x11, 0x28, 0x3c, 0x7b, 0x61, 0xb7, 0xe2, 0x8f, 0x67 +.byte 0x4f, 0xe5, 0xec, 0x3c, 0x4c, 0x60, 0x80, 0x69, 0x57, 0x38, 0x1e, 0x01, 0x5b, 0x8d, 0x55, 0xe8 +.byte 0xc7, 0xdf, 0xc0, 0xcc, 0x77, 0x23, 0x34, 0x49, 0x75, 0x7c, 0xf6, 0x98, 0x11, 0xeb, 0x2d, 0xde +.byte 0xed, 0x41, 0x2e, 0x14, 0x05, 0x02, 0x7f, 0xe0, 0xfe, 0x20, 0xeb, 0x35, 0xe7, 0x11, 0xac, 0x22 +.byte 0xce, 0x57, 0x3d, 0xde, 0xc9, 0x30, 0x6d, 0x10, 0x03, 0x85, 0xcd, 0xf1, 0xff, 0x8c, 0x16, 0xb5 +.byte 0xc1, 0xb2, 0x3e, 0x88, 0x6c, 0x60, 0x7f, 0x90, 0x4f, 0x95, 0xf7, 0xf6, 0x2d, 0xad, 0x01, 0x39 +.byte 0x07, 0x04, 0xfa, 0x75, 0x80, 0x7d, 0xbf, 0x49, 0x50, 0xed, 0xef, 0xc9, 0xc4, 0x7c, 0x1c, 0xeb +.byte 0x80, 0x7e, 0xdb, 0xb6, 0xd0, 0xdd, 0x13, 0xfe, 0xc9, 0xd3, 0x9c, 0xd7, 0xb2, 0x97, 0xa9, 0x02 +.byte 0x03, 0x01, 0x00, 0x01, 0x4a, 0x00, 0x78, 0x00, 0x30, 0x48, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x13, 0x0c, 0x44, 0x2d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31, 0x22 +.byte 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x19, 0x44, 0x2d, 0x54, 0x52, 0x55, 0x53, 0x54 +.byte 0x20, 0x42, 0x52, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x31, 0x20, 0x32, 0x30 +.byte 0x32, 0x30, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06 +.byte 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xc6, 0xcb, 0xc7, 0x28, 0xd1, 0xfb +.byte 0x84, 0xf5, 0x9a, 0xef, 0x42, 0x14, 0x20, 0xe1, 0x43, 0x6b, 0x6e, 0x75, 0xad, 0xfc, 0x2b, 0x03 +.byte 0x84, 0xd4, 0x76, 0x93, 0x25, 0xd7, 0x59, 0x3b, 0x41, 0x65, 0x6b, 0x1e, 0xe6, 0x34, 0x2a, 0xbb +.byte 0x74, 0xf6, 0x12, 0xce, 0xe8, 0x6d, 0xe7, 0xab, 0xe4, 0x3c, 0x4e, 0x3f, 0x44, 0x08, 0x8b, 0xcd +.byte 0x16, 0x71, 0xcb, 0xbf, 0x92, 0x99, 0xf4, 0xa4, 0xd7, 0x3c, 0x50, 0x54, 0x52, 0x90, 0x85, 0x83 +.byte 0x78, 0x94, 0x67, 0x67, 0xa3, 0x1c, 0x09, 0x19, 0x3d, 0x75, 0x34, 0x85, 0xde, 0xed, 0x60, 0x7d +.byte 0xc7, 0x0c, 0xb4, 0x41, 0x52, 0xb9, 0x6e, 0xe5, 0xee, 0x42, 0x4a, 0x00, 0x26, 0x02, 0x30, 0x48 +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x31, 0x15, 0x30 +.byte 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x2d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20 +.byte 0x47, 0x6d, 0x62, 0x48, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x19, 0x44 +.byte 0x2d, 0x54, 0x52, 0x55, 0x53, 0x54, 0x20, 0x42, 0x52, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43 +.byte 0x41, 0x20, 0x32, 0x20, 0x32, 0x30, 0x32, 0x33, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09 +.byte 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00 +.byte 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xae, 0xff, 0x09, 0x59, 0x91, 0x80, 0x0a +.byte 0x4a, 0x68, 0xe6, 0x24, 0x3f, 0xb8, 0xa7, 0xe4, 0xc8, 0x3a, 0x0a, 0x3a, 0x16, 0xcd, 0xc9, 0x23 +.byte 0x61, 0xa0, 0x93, 0x71, 0xf2, 0xab, 0x8b, 0x73, 0x8f, 0xa0, 0x67, 0x65, 0x60, 0xd2, 0x54, 0x6b +.byte 0x63, 0x51, 0x6f, 0x49, 0x33, 0xe0, 0x72, 0x07, 0x13, 0x7d, 0x38, 0xcd, 0x06, 0x92, 0x07, 0x29 +.byte 0x52, 0x6b, 0x4e, 0x77, 0x6c, 0x04, 0xd3, 0x95, 0xfa, 0xdd, 0x4c, 0x8c, 0xd9, 0x5d, 0xc1, 0x61 +.byte 0x7d, 0x4b, 0xe7, 0x28, 0xb3, 0x44, 0x81, 0x7b, 0x51, 0xaf, 0xdd, 0x33, 0xb1, 0x68, 0x7c, 0xd6 +.byte 0x4e, 0x4c, 0xfe, 0x2b, 0x68, 0xb9, 0xca, 0x66, 0x69, 0xc4, 0xec, 0x5e, 0x57, 0x7f, 0xf7, 0x0d +.byte 0xc7, 0x9c, 0x36, 0x36, 0xe5, 0x07, 0x60, 0xac, 0xc0, 0x4c, 0xea, 0x08, 0x6c, 0xef, 0x06, 0x7c +.byte 0x4f, 0x5b, 0x28, 0x7a, 0x08, 0xfc, 0x93, 0x5d, 0x9b, 0xf6, 0x9c, 0xb4, 0x8b, 0x86, 0xba, 0x21 +.byte 0xb9, 0xf4, 0xf0, 0xe8, 0x59, 0x5a, 0x28, 0xa1, 0x34, 0x84, 0x1a, 0x25, 0x91, 0xb6, 0xb5, 0x8f +.byte 0xef, 0xb2, 0xf9, 0x80, 0xfa, 0xf9, 0x3d, 0x3c, 0x11, 0x72, 0xd8, 0xe3, 0x2f, 0x86, 0x76, 0xc5 +.byte 0x79, 0x2c, 0xc1, 0xa9, 0x90, 0x93, 0x46, 0x98, 0x67, 0xcb, 0x83, 0x6a, 0xa0, 0x50, 0x23, 0xa7 +.byte 0x3b, 0xf6, 0x81, 0x39, 0xe0, 0xed, 0xf0, 0xb9, 0xbf, 0x65, 0xf1, 0xd8, 0xcb, 0x7a, 0xfb, 0xef +.byte 0x73, 0x03, 0xce, 0x00, 0xf4, 0x7d, 0xd7, 0xe0, 0x5d, 0x3b, 0x66, 0xb8, 0xdc, 0x8e, 0xba, 0x83 +.byte 0xcb, 0x87, 0x76, 0x03, 0xfc, 0x25, 0xd9, 0xe7, 0x23, 0x6f, 0x06, 0xfd, 0x67, 0xf3, 0xe0, 0xff +.byte 0x84, 0xbc, 0x47, 0xbf, 0xb5, 0x16, 0x18, 0x46, 0x69, 0x14, 0xcc, 0x05, 0xf7, 0xdb, 0xd3, 0x49 +.byte 0xac, 0x6b, 0xcc, 0xab, 0xe4, 0xb5, 0x0b, 0x43, 0x24, 0x5e, 0x4b, 0x6b, 0x4d, 0x67, 0xdf, 0xd6 +.byte 0xb5, 0x3e, 0x4f, 0x78, 0x1f, 0x94, 0x71, 0x24, 0xea, 0xde, 0x70, 0xfc, 0xf1, 0x93, 0xfe, 0x9e +.byte 0x93, 0x5a, 0xe4, 0x94, 0x5a, 0x97, 0x54, 0x0c, 0x35, 0x7b, 0x5f, 0x6c, 0xee, 0x00, 0x1f, 0x24 +.byte 0xec, 0x03, 0xba, 0x02, 0xf5, 0x76, 0xf4, 0x9f, 0xd4, 0x9a, 0xed, 0x85, 0x2c, 0x38, 0x22, 0x2f +.byte 0xc7, 0xd8, 0x2f, 0x76, 0x11, 0x4f, 0xfd, 0x6c, 0x5c, 0xe8, 0xf5, 0x8e, 0x27, 0x87, 0x7f, 0x19 +.byte 0x4a, 0x21, 0x47, 0x90, 0x1d, 0x79, 0x8d, 0x1c, 0x5b, 0xf8, 0xcf, 0x4a, 0x85, 0xe4, 0xed, 0xb3 +.byte 0x5b, 0x8d, 0xbe, 0xc4, 0x64, 0x28, 0x5d, 0x41, 0xc4, 0x6e, 0xac, 0x38, 0x5a, 0x4f, 0x23, 0x74 +.byte 0x74, 0xa9, 0x12, 0xc3, 0xf6, 0xd2, 0xb9, 0x11, 0x15, 0x33, 0x07, 0x91, 0xd8, 0x3b, 0x37, 0x3a +.byte 0x63, 0x30, 0x06, 0xd1, 0xc5, 0x22, 0x36, 0x28, 0x62, 0x23, 0x10, 0xe0, 0x46, 0xcc, 0x97, 0xac +.byte 0xd6, 0x2b, 0x5d, 0x64, 0x24, 0xd5, 0xee, 0x1c, 0x0e, 0xde, 0xfb, 0x08, 0x5a, 0x75, 0x2a, 0xf6 +.byte 0x63, 0x6d, 0xce, 0x0b, 0x42, 0xbe, 0xd1, 0xba, 0x70, 0x1c, 0x9c, 0x21, 0xe5, 0x0f, 0x31, 0x69 +.byte 0x17, 0xd7, 0xfc, 0x0a, 0xb4, 0xde, 0xed, 0x80, 0x9c, 0xcb, 0x92, 0xb4, 0x8b, 0xf5, 0xde, 0x59 +.byte 0xa2, 0x58, 0x09, 0xa5, 0x63, 0x47, 0x0b, 0xe1, 0x41, 0x32, 0x34, 0x41, 0xd9, 0x9a, 0xb1, 0xd9 +.byte 0xa8, 0xb0, 0x1b, 0x5a, 0xde, 0x0d, 0x0d, 0xf4, 0xe2, 0xb2, 0x5d, 0x35, 0x80, 0xb9, 0x81, 0xd4 +.byte 0x84, 0x69, 0x91, 0x02, 0xcb, 0x75, 0xd0, 0x8d, 0xc5, 0xb5, 0x3d, 0x09, 0x91, 0x09, 0x8f, 0x14 +.byte 0xa1, 0x14, 0x74, 0x79, 0x3e, 0xd6, 0xc9, 0x15, 0x1d, 0xa4, 0x59, 0x59, 0x22, 0xdc, 0xf6, 0x8a +.byte 0x45, 0x3d, 0x3c, 0x12, 0xd6, 0x3e, 0x5d, 0x32, 0x2f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x4a, 0x00 +.byte 0x78, 0x00, 0x30, 0x48, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x44 +.byte 0x45, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x2d, 0x54, 0x72 +.byte 0x75, 0x73, 0x74, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x13, 0x19, 0x44, 0x2d, 0x54, 0x52, 0x55, 0x53, 0x54, 0x20, 0x45, 0x56, 0x20, 0x52, 0x6f +.byte 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x31, 0x20, 0x32, 0x30, 0x32, 0x30, 0x30, 0x76, 0x30, 0x10 +.byte 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22 +.byte 0x03, 0x62, 0x00, 0x04, 0xf1, 0x0b, 0xdd, 0x86, 0x43, 0x20, 0x19, 0xdf, 0x97, 0x85, 0xe8, 0x22 +.byte 0x4a, 0x9b, 0xcf, 0x9d, 0x98, 0xbf, 0xb4, 0x05, 0x26, 0xc9, 0xcb, 0xe3, 0xa6, 0xd2, 0x8f, 0xc5 +.byte 0x9e, 0x78, 0x7b, 0x31, 0x89, 0xa9, 0x89, 0xad, 0x27, 0x3c, 0x65, 0x10, 0x82, 0xfc, 0xdf, 0xc3 +.byte 0x9d, 0x4e, 0xf0, 0x33, 0x23, 0xc4, 0xd2, 0x32, 0xf5, 0x1c, 0xb0, 0xdf, 0x33, 0x17, 0x5d, 0xc5 +.byte 0xf0, 0xb1, 0x8a, 0xf9, 0xef, 0xb9, 0xb7, 0x14, 0xca, 0x29, 0x4a, 0xc2, 0x0f, 0xa9, 0x7f, 0x75 +.byte 0x65, 0x49, 0x2a, 0x30, 0x67, 0xf4, 0x64, 0xf7, 0xd6, 0x1a, 0x77, 0xda, 0xc3, 0xc2, 0x97, 0x61 +.byte 0x42, 0x7b, 0x49, 0xad, 0x4a, 0x00, 0x26, 0x02, 0x30, 0x48, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x13, 0x0c, 0x44, 0x2d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31, 0x22 +.byte 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x19, 0x44, 0x2d, 0x54, 0x52, 0x55, 0x53, 0x54 +.byte 0x20, 0x45, 0x56, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x32, 0x20, 0x32, 0x30 +.byte 0x32, 0x33, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d +.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82 +.byte 0x02, 0x01, 0x00, 0xd8, 0x8e, 0xa3, 0x89, 0x80, 0x0b, 0xb2, 0x57, 0x52, 0xdc, 0xa9, 0x53, 0x4c +.byte 0x37, 0xb9, 0x7f, 0x63, 0x17, 0x13, 0xef, 0xa7, 0x5b, 0x23, 0x5b, 0x69, 0x75, 0xb0, 0x99, 0x0a +.byte 0x17, 0xc1, 0x8b, 0xc4, 0xdb, 0xa8, 0xe0, 0xcc, 0x31, 0xba, 0xc2, 0xf2, 0xcd, 0x5d, 0xe9, 0xb7 +.byte 0xf8, 0x1d, 0xaf, 0x6a, 0xc4, 0x95, 0x87, 0xd7, 0x47, 0xc9, 0x95, 0xd8, 0x82, 0x04, 0x50, 0x3d +.byte 0x81, 0x08, 0xff, 0xe4, 0x3d, 0xb3, 0xb1, 0xd6, 0xc5, 0xb2, 0xfd, 0x88, 0x09, 0xdb, 0x9c, 0x84 +.byte 0xec, 0x25, 0x17, 0x14, 0x87, 0x7f, 0x30, 0x78, 0x9b, 0x6a, 0x58, 0xc9, 0xb6, 0x73, 0x28, 0x3c +.byte 0x34, 0xf7, 0x99, 0xf7, 0x7f, 0xd3, 0xa6, 0xf8, 0x1c, 0x45, 0x7c, 0xad, 0x2c, 0x8c, 0x94, 0x3f +.byte 0xd8, 0x67, 0x10, 0x53, 0x7e, 0x22, 0xcd, 0x4e, 0x25, 0x51, 0xf0, 0x25, 0x24, 0x35, 0x11, 0x5e +.byte 0x10, 0xc6, 0xec, 0x87, 0x66, 0x89, 0x81, 0x68, 0xba, 0xcc, 0x2b, 0x9d, 0x47, 0x73, 0x1f, 0xbd +.byte 0xcd, 0x91, 0xa4, 0x72, 0x6a, 0x9c, 0xa2, 0x1b, 0x18, 0xa0, 0x6f, 0xec, 0x50, 0xf4, 0x7d, 0x40 +.byte 0xc2, 0xa8, 0x30, 0xcf, 0xbd, 0x73, 0xc8, 0x13, 0x2b, 0x10, 0x13, 0x1e, 0x8b, 0x9a, 0xa8, 0x3a +.byte 0x94, 0x73, 0xd3, 0x18, 0x69, 0x0a, 0x4a, 0xff, 0xc1, 0x01, 0x03, 0xff, 0x79, 0x7f, 0xb5, 0x48 +.byte 0x7f, 0x7b, 0xee, 0xe8, 0x29, 0x6f, 0x36, 0x4c, 0x95, 0x61, 0x86, 0xd8, 0xf9, 0xa2, 0x73, 0x8a +.byte 0xee, 0xae, 0x2f, 0x96, 0xee, 0x68, 0xcd, 0x3d, 0x4d, 0x28, 0x42, 0xf9, 0x45, 0x2b, 0x32, 0x1b +.byte 0x46, 0x55, 0x16, 0x6a, 0xa6, 0x4b, 0x29, 0xf9, 0xbb, 0x95, 0x56, 0xbf, 0x46, 0x1d, 0xec, 0x1d +.byte 0x93, 0x1d, 0xc0, 0x65, 0xb2, 0x1f, 0xa1, 0x43, 0xae, 0x56, 0x9e, 0xa0, 0xb1, 0x8f, 0x6b, 0x12 +.byte 0xb7, 0x60, 0x6d, 0x78, 0x0b, 0xca, 0x8a, 0x5c, 0xed, 0x1e, 0x96, 0x0e, 0x83, 0xa6, 0x48, 0x95 +.byte 0x8d, 0x3b, 0xa3, 0x21, 0xc4, 0xae, 0x58, 0xc6, 0x00, 0xb2, 0x84, 0xb4, 0x23, 0xa4, 0x96, 0x86 +.byte 0x35, 0xb8, 0xd8, 0x9e, 0xd8, 0xac, 0x34, 0x49, 0x98, 0x63, 0x95, 0xc5, 0xcb, 0x6d, 0x48, 0x47 +.byte 0xe2, 0xf2, 0x2e, 0x18, 0x1e, 0xd0, 0x31, 0xab, 0xdd, 0x74, 0xec, 0xf9, 0xdc, 0x8c, 0xb8, 0x1c +.byte 0x8e, 0x68, 0x23, 0xba, 0xd0, 0xf3, 0x50, 0xdc, 0xcf, 0x65, 0x8f, 0x73, 0x3a, 0x32, 0xc7, 0x7c +.byte 0xfe, 0xca, 0x82, 0x22, 0x4f, 0xbe, 0x8e, 0x62, 0x47, 0x66, 0xe5, 0xcd, 0x87, 0xe2, 0xe8, 0xd5 +.byte 0x0f, 0x18, 0x9f, 0xe5, 0x04, 0x72, 0x4b, 0x46, 0x3c, 0x10, 0xf2, 0x44, 0xc2, 0x64, 0x56, 0x71 +.byte 0x4e, 0x75, 0xe8, 0x9c, 0xc9, 0x26, 0x74, 0xc5, 0x7d, 0x59, 0xd1, 0x0a, 0x5b, 0x0f, 0x6d, 0xfe +.byte 0x9e, 0x75, 0x1c, 0x18, 0xc6, 0x1a, 0x3a, 0x7c, 0xd8, 0x0d, 0x04, 0xcc, 0xcd, 0xb7, 0x45, 0x65 +.byte 0x7a, 0xb1, 0x8f, 0xb8, 0xae, 0x84, 0x48, 0x3e, 0xb3, 0x7a, 0x4d, 0xa8, 0x03, 0xe2, 0xe2, 0x7e +.byte 0x01, 0x16, 0x59, 0x68, 0x18, 0x43, 0x33, 0xb0, 0xd2, 0xdc, 0xb0, 0x1a, 0x43, 0x35, 0xee, 0xa5 +.byte 0xda, 0xa9, 0x46, 0x5c, 0xae, 0x86, 0x81, 0x41, 0x01, 0x4a, 0x74, 0x26, 0xec, 0x9f, 0x06, 0xbf +.byte 0xc2, 0x05, 0x37, 0x64, 0x75, 0x78, 0x29, 0x68, 0xfd, 0xc5, 0xf5, 0xeb, 0xfe, 0x47, 0xf9, 0xe4 +.byte 0x85, 0xb0, 0xe1, 0x7b, 0x31, 0x9d, 0xa6, 0x7f, 0x72, 0xa3, 0xb9, 0xc4, 0x2c, 0x2e, 0xcc, 0x99 +.byte 0x57, 0x0e, 0x21, 0x0c, 0x45, 0x01, 0x94, 0x65, 0xeb, 0x65, 0x09, 0xc6, 0x63, 0x22, 0x0b, 0x33 +.byte 0x49, 0x92, 0x48, 0x3c, 0xfc, 0xcd, 0xce, 0xb0, 0x3e, 0x8e, 0x9e, 0x8b, 0xf8, 0xfe, 0x49, 0xc5 +.byte 0x35, 0x72, 0x47, 0x02, 0x03, 0x01, 0x00, 0x01, 0x4a, 0x00, 0x26, 0x01, 0x30, 0x48, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x20, 0x30, 0x1e, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x13, 0x17, 0x53, 0x65, 0x63, 0x75, 0x72, 0x65, 0x54, 0x72, 0x75, 0x73 +.byte 0x74, 0x20, 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x17, 0x30 +.byte 0x15, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0e, 0x53, 0x65, 0x63, 0x75, 0x72, 0x65, 0x54, 0x72 +.byte 0x75, 0x73, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86 +.byte 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82 +.byte 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xab, 0xa4, 0x81, 0xe5, 0x95, 0xcd, 0xf5, 0xf6, 0x14 +.byte 0x8e, 0xc2, 0x4f, 0xca, 0xd4, 0xe2, 0x78, 0x95, 0x58, 0x9c, 0x41, 0xe1, 0x0d, 0x99, 0x40, 0x24 +.byte 0x17, 0x39, 0x91, 0x33, 0x66, 0xe9, 0xbe, 0xe1, 0x83, 0xaf, 0x62, 0x5c, 0x89, 0xd1, 0xfc, 0x24 +.byte 0x5b, 0x61, 0xb3, 0xe0, 0x11, 0x11, 0x41, 0x1c, 0x1d, 0x6e, 0xf0, 0xb8, 0xbb, 0xf8, 0xde, 0xa7 +.byte 0x81, 0xba, 0xa6, 0x48, 0xc6, 0x9f, 0x1d, 0xbd, 0xbe, 0x8e, 0xa9, 0x41, 0x3e, 0xb8, 0x94, 0xed +.byte 0x29, 0x1a, 0xd4, 0x8e, 0xd2, 0x03, 0x1d, 0x03, 0xef, 0x6d, 0x0d, 0x67, 0x1c, 0x57, 0xd7, 0x06 +.byte 0xad, 0xca, 0xc8, 0xf5, 0xfe, 0x0e, 0xaf, 0x66, 0x25, 0x48, 0x04, 0x96, 0x0b, 0x5d, 0xa3, 0xba +.byte 0x16, 0xc3, 0x08, 0x4f, 0xd1, 0x46, 0xf8, 0x14, 0x5c, 0xf2, 0xc8, 0x5e, 0x01, 0x99, 0x6d, 0xfd +.byte 0x88, 0xcc, 0x86, 0xa8, 0xc1, 0x6f, 0x31, 0x42, 0x6c, 0x52, 0x3e, 0x68, 0xcb, 0xf3, 0x19, 0x34 +.byte 0xdf, 0xbb, 0x87, 0x18, 0x56, 0x80, 0x26, 0xc4, 0xd0, 0xdc, 0xc0, 0x6f, 0xdf, 0xde, 0xa0, 0xc2 +.byte 0x91, 0x16, 0xa0, 0x64, 0x11, 0x4b, 0x44, 0xbc, 0x1e, 0xf6, 0xe7, 0xfa, 0x63, 0xde, 0x66, 0xac +.byte 0x76, 0xa4, 0x71, 0xa3, 0xec, 0x36, 0x94, 0x68, 0x7a, 0x77, 0xa4, 0xb1, 0xe7, 0x0e, 0x2f, 0x81 +.byte 0x7a, 0xe2, 0xb5, 0x72, 0x86, 0xef, 0xa2, 0x6b, 0x8b, 0xf0, 0x0f, 0xdb, 0xd3, 0x59, 0x3f, 0xba +.byte 0x72, 0xbc, 0x44, 0x24, 0x9c, 0xe3, 0x73, 0xb3, 0xf7, 0xaf, 0x57, 0x2f, 0x42, 0x26, 0x9d, 0xa9 +.byte 0x74, 0xba, 0x00, 0x52, 0xf2, 0x4b, 0xcd, 0x53, 0x7c, 0x47, 0x0b, 0x36, 0x85, 0x0e, 0x66, 0xa9 +.byte 0x08, 0x97, 0x16, 0x34, 0x57, 0xc1, 0x66, 0xf7, 0x80, 0xe3, 0xed, 0x70, 0x54, 0xc7, 0x93, 0xe0 +.byte 0x2e, 0x28, 0x15, 0x59, 0x87, 0xba, 0xbb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x4c, 0x00, 0x26, 0x02 +.byte 0x30, 0x4a, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31 +.byte 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x09, 0x49, 0x64, 0x65, 0x6e, 0x54, 0x72 +.byte 0x75, 0x73, 0x74, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1e, 0x49, 0x64 +.byte 0x65, 0x6e, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x43, 0x6f, 0x6d, 0x6d, 0x65, 0x72, 0x63, 0x69 +.byte 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x31, 0x30, 0x82, 0x02, 0x22 +.byte 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03 +.byte 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xa7, 0x50, 0x19 +.byte 0xde, 0x3f, 0x99, 0x3d, 0xd4, 0x33, 0x46, 0xf1, 0x6f, 0x51, 0x61, 0x82, 0xb2, 0xa9, 0x4f, 0x8f +.byte 0x67, 0x89, 0x5d, 0x84, 0xd9, 0x53, 0xdd, 0x0c, 0x28, 0xd9, 0xd7, 0xf0, 0xff, 0xae, 0x95, 0x43 +.byte 0x72, 0x99, 0xf9, 0xb5, 0x5d, 0x7c, 0x8a, 0xc1, 0x42, 0xe1, 0x31, 0x50, 0x74, 0xd1, 0x81, 0x0d +.byte 0x7c, 0xcd, 0x9b, 0x21, 0xab, 0x43, 0xe2, 0xac, 0xad, 0x5e, 0x86, 0x6e, 0xf3, 0x09, 0x8a, 0x1f +.byte 0x5a, 0x32, 0xbd, 0xa2, 0xeb, 0x94, 0xf9, 0xe8, 0x5c, 0x0a, 0xec, 0xff, 0x98, 0xd2, 0xaf, 0x71 +.byte 0xb3, 0xb4, 0x53, 0x9f, 0x4e, 0x87, 0xef, 0x92, 0xbc, 0xbd, 0xec, 0x4f, 0x32, 0x30, 0x88, 0x4b +.byte 0x17, 0x5e, 0x57, 0xc4, 0x53, 0xc2, 0xf6, 0x02, 0x97, 0x8d, 0xd9, 0x62, 0x2b, 0xbf, 0x24, 0x1f +.byte 0x62, 0x8d, 0xdf, 0xc3, 0xb8, 0x29, 0x4b, 0x49, 0x78, 0x3c, 0x93, 0x60, 0x88, 0x22, 0xfc, 0x99 +.byte 0xda, 0x36, 0xc8, 0xc2, 0xa2, 0xd4, 0x2c, 0x54, 0x00, 0x67, 0x35, 0x6e, 0x73, 0xbf, 0x02, 0x58 +.byte 0xf0, 0xa4, 0xdd, 0xe5, 0xb0, 0xa2, 0x26, 0x7a, 0xca, 0xe0, 0x36, 0xa5, 0x19, 0x16, 0xf5, 0xfd +.byte 0xb7, 0xef, 0xae, 0x3f, 0x40, 0xf5, 0x6d, 0x5a, 0x04, 0xfd, 0xce, 0x34, 0xca, 0x24, 0xdc, 0x74 +.byte 0x23, 0x1b, 0x5d, 0x33, 0x13, 0x12, 0x5d, 0xc4, 0x01, 0x25, 0xf6, 0x30, 0xdd, 0x02, 0x5d, 0x9f +.byte 0xe0, 0xd5, 0x47, 0xbd, 0xb4, 0xeb, 0x1b, 0xa1, 0xbb, 0x49, 0x49, 0xd8, 0x9f, 0x5b, 0x02, 0xf3 +.byte 0x8a, 0xe4, 0x24, 0x90, 0xe4, 0x62, 0x4f, 0x4f, 0xc1, 0xaf, 0x8b, 0x0e, 0x74, 0x17, 0xa8, 0xd1 +.byte 0x72, 0x88, 0x6a, 0x7a, 0x01, 0x49, 0xcc, 0xb4, 0x46, 0x79, 0xc6, 0x17, 0xb1, 0xda, 0x98, 0x1e +.byte 0x07, 0x59, 0xfa, 0x75, 0x21, 0x85, 0x65, 0xdd, 0x90, 0x56, 0xce, 0xfb, 0xab, 0xa5, 0x60, 0x9d +.byte 0xc4, 0x9d, 0xf9, 0x52, 0xb0, 0x8b, 0xbd, 0x87, 0xf9, 0x8f, 0x2b, 0x23, 0x0a, 0x23, 0x76, 0x3b +.byte 0xf7, 0x33, 0xe1, 0xc9, 0x00, 0xf3, 0x69, 0xf9, 0x4b, 0xa2, 0xe0, 0x4e, 0xbc, 0x7e, 0x93, 0x39 +.byte 0x84, 0x07, 0xf7, 0x44, 0x70, 0x7e, 0xfe, 0x07, 0x5a, 0xe5, 0xb1, 0xac, 0xd1, 0x18, 0xcc, 0xf2 +.byte 0x35, 0xe5, 0x49, 0x49, 0x08, 0xca, 0x56, 0xc9, 0x3d, 0xfb, 0x0f, 0x18, 0x7d, 0x8b, 0x3b, 0xc1 +.byte 0x13, 0xc2, 0x4d, 0x8f, 0xc9, 0x4f, 0x0e, 0x37, 0xe9, 0x1f, 0xa1, 0x0e, 0x6a, 0xdf, 0x62, 0x2e +.byte 0xcb, 0x35, 0x06, 0x51, 0x79, 0x2c, 0xc8, 0x25, 0x38, 0xf4, 0xfa, 0x4b, 0xa7, 0x89, 0x5c, 0x9c +.byte 0xd2, 0xe3, 0x0d, 0x39, 0x86, 0x4a, 0x74, 0x7c, 0xd5, 0x59, 0x87, 0xc2, 0x3f, 0x4e, 0x0c, 0x5c +.byte 0x52, 0xf4, 0x3d, 0xf7, 0x52, 0x82, 0xf1, 0xea, 0xa3, 0xac, 0xfd, 0x49, 0x34, 0x1a, 0x28, 0xf3 +.byte 0x41, 0x88, 0x3a, 0x13, 0xee, 0xe8, 0xde, 0xff, 0x99, 0x1d, 0x5f, 0xba, 0xcb, 0xe8, 0x1e, 0xf2 +.byte 0xb9, 0x50, 0x60, 0xc0, 0x31, 0xd3, 0x73, 0xe5, 0xef, 0xbe, 0xa0, 0xed, 0x33, 0x0b, 0x74, 0xbe +.byte 0x20, 0x20, 0xc4, 0x67, 0x6c, 0xf0, 0x08, 0x03, 0x7a, 0x55, 0x80, 0x7f, 0x46, 0x4e, 0x96, 0xa7 +.byte 0xf4, 0x1e, 0x3e, 0xe1, 0xf6, 0xd8, 0x09, 0xe1, 0x33, 0x64, 0x2b, 0x63, 0xd7, 0x32, 0x5e, 0x9f +.byte 0xf9, 0xc0, 0x7b, 0x0f, 0x78, 0x6f, 0x97, 0xbc, 0x93, 0x9a, 0xf9, 0x9c, 0x12, 0x90, 0x78, 0x7a +.byte 0x80, 0x87, 0x15, 0xd7, 0x72, 0x74, 0x9c, 0x55, 0x74, 0x78, 0xb1, 0xba, 0xe1, 0x6e, 0x70, 0x04 +.byte 0xba, 0x4f, 0xa0, 0xba, 0x68, 0xc3, 0x7b, 0xff, 0x31, 0xf0, 0x73, 0x3d, 0x3d, 0x94, 0x2a, 0xb1 +.byte 0x0b, 0x41, 0x0e, 0xa0, 0xfe, 0x4d, 0x88, 0x65, 0x6b, 0x79, 0x33, 0xb4, 0xd7, 0x02, 0x03, 0x01 +.byte 0x00, 0x01, 0x4c, 0x00, 0x26, 0x01, 0x30, 0x4a, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x17 +.byte 0x53, 0x65, 0x63, 0x75, 0x72, 0x65, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x43, 0x6f, 0x72, 0x70 +.byte 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x13, 0x10, 0x53, 0x65, 0x63, 0x75, 0x72, 0x65, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20 +.byte 0x43, 0x41, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d +.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82 +.byte 0x01, 0x01, 0x00, 0xaf, 0x35, 0x2e, 0xd8, 0xac, 0x6c, 0x55, 0x69, 0x06, 0x71, 0xe5, 0x13, 0x68 +.byte 0x24, 0xb3, 0x4f, 0xd8, 0xcc, 0x21, 0x47, 0xf8, 0xf1, 0x60, 0x38, 0x89, 0x89, 0x03, 0xe9, 0xbd +.byte 0xea, 0x5e, 0x46, 0x53, 0x09, 0xdc, 0x5c, 0xf5, 0x5a, 0xe8, 0xf7, 0x45, 0x2a, 0x02, 0xeb, 0x31 +.byte 0x61, 0xd7, 0x29, 0x33, 0x4c, 0xce, 0xc7, 0x7c, 0x0a, 0x37, 0x7e, 0x0f, 0xba, 0x32, 0x98, 0xe1 +.byte 0x1d, 0x97, 0xaf, 0x8f, 0xc7, 0xdc, 0xc9, 0x38, 0x96, 0xf3, 0xdb, 0x1a, 0xfc, 0x51, 0xed, 0x68 +.byte 0xc6, 0xd0, 0x6e, 0xa4, 0x7c, 0x24, 0xd1, 0xae, 0x42, 0xc8, 0x96, 0x50, 0x63, 0x2e, 0xe0, 0xfe +.byte 0x75, 0xfe, 0x98, 0xa7, 0x5f, 0x49, 0x2e, 0x95, 0xe3, 0x39, 0x33, 0x64, 0x8e, 0x1e, 0xa4, 0x5f +.byte 0x90, 0xd2, 0x67, 0x3c, 0xb2, 0xd9, 0xfe, 0x41, 0xb9, 0x55, 0xa7, 0x09, 0x8e, 0x72, 0x05, 0x1e +.byte 0x8b, 0xdd, 0x44, 0x85, 0x82, 0x42, 0xd0, 0x49, 0xc0, 0x1d, 0x60, 0xf0, 0xd1, 0x17, 0x2c, 0x95 +.byte 0xeb, 0xf6, 0xa5, 0xc1, 0x92, 0xa3, 0xc5, 0xc2, 0xa7, 0x08, 0x60, 0x0d, 0x60, 0x04, 0x10, 0x96 +.byte 0x79, 0x9e, 0x16, 0x34, 0xe6, 0xa9, 0xb6, 0xfa, 0x25, 0x45, 0x39, 0xc8, 0x1e, 0x65, 0xf9, 0x93 +.byte 0xf5, 0xaa, 0xf1, 0x52, 0xdc, 0x99, 0x98, 0x3d, 0xa5, 0x86, 0x1a, 0x0c, 0x35, 0x33, 0xfa, 0x4b +.byte 0xa5, 0x04, 0x06, 0x15, 0x1c, 0x31, 0x80, 0xef, 0xaa, 0x18, 0x6b, 0xc2, 0x7b, 0xd7, 0xda, 0xce +.byte 0xf9, 0x33, 0x20, 0xd5, 0xf5, 0xbd, 0x6a, 0x33, 0x2d, 0x81, 0x04, 0xfb, 0xb0, 0x5c, 0xd4, 0x9c +.byte 0xa3, 0xe2, 0x5c, 0x1d, 0xe3, 0xa9, 0x42, 0x75, 0x5e, 0x7b, 0xd4, 0x77, 0xef, 0x39, 0x54, 0xba +.byte 0xc9, 0x0a, 0x18, 0x1b, 0x12, 0x99, 0x49, 0x2f, 0x88, 0x4b, 0xfd, 0x50, 0x62, 0xd1, 0x73, 0xe7 +.byte 0x8f, 0x7a, 0x43, 0x02, 0x03, 0x01, 0x00, 0x01, 0x4d, 0x00, 0x78, 0x00, 0x30, 0x4b, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x48, 0x31, 0x19, 0x30, 0x17, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x10, 0x4f, 0x49, 0x53, 0x54, 0x45, 0x20, 0x46, 0x6f, 0x75, 0x6e +.byte 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c +.byte 0x18, 0x4f, 0x49, 0x53, 0x54, 0x45, 0x20, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x20, 0x52, 0x6f +.byte 0x6f, 0x74, 0x20, 0x45, 0x43, 0x43, 0x20, 0x47, 0x31, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a +.byte 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00 +.byte 0x04, 0x17, 0x2f, 0xfa, 0x12, 0xbc, 0xac, 0x18, 0xf3, 0x0a, 0xf4, 0x44, 0xd6, 0x76, 0x42, 0x9e +.byte 0xb3, 0xe8, 0x1f, 0xb7, 0x79, 0xa9, 0x58, 0xb6, 0xf8, 0x65, 0xd1, 0x3a, 0x21, 0x4f, 0xa8, 0xeb +.byte 0xa3, 0xbe, 0xa4, 0x32, 0x72, 0xf3, 0xb6, 0x01, 0xc9, 0x2b, 0xfd, 0x77, 0x85, 0x6e, 0x53, 0xdd +.byte 0xad, 0xea, 0xaa, 0x2e, 0x25, 0x92, 0xb6, 0xe9, 0x21, 0x11, 0xa8, 0xaf, 0xb5, 0x4c, 0x0b, 0xf3 +.byte 0x96, 0x60, 0x9a, 0x3b, 0xe7, 0xea, 0x1a, 0x78, 0x2e, 0xb4, 0x3d, 0xe5, 0x28, 0xde, 0x1c, 0x80 +.byte 0xba, 0x5c, 0x6e, 0x0d, 0xdb, 0x19, 0xa5, 0xe3, 0x3f, 0x9c, 0x2a, 0xb8, 0x40, 0x4b, 0xdd, 0xe6 +.byte 0x4f, 0x4d, 0x00, 0x26, 0x02, 0x30, 0x4b, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 +.byte 0x13, 0x02, 0x43, 0x48, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x10, 0x4f +.byte 0x49, 0x53, 0x54, 0x45, 0x20, 0x46, 0x6f, 0x75, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31 +.byte 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x18, 0x4f, 0x49, 0x53, 0x54, 0x45, 0x20 +.byte 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x52, 0x53, 0x41, 0x20 +.byte 0x47, 0x31, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d +.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82 +.byte 0x02, 0x01, 0x00, 0xaa, 0xae, 0xf4, 0xab, 0x82, 0xcf, 0xfb, 0xe5, 0x37, 0x0b, 0xe7, 0xd5, 0x96 +.byte 0xad, 0x90, 0xe8, 0x4b, 0x29, 0xdc, 0x55, 0x60, 0xe3, 0xcc, 0xbc, 0xb3, 0xbc, 0x2d, 0x92, 0xb9 +.byte 0xe4, 0xa3, 0x7a, 0xf1, 0x81, 0xb4, 0x9e, 0x72, 0x72, 0x43, 0xdf, 0x3f, 0xab, 0x0b, 0x26, 0xb4 +.byte 0xee, 0x7b, 0x1a, 0x69, 0xfb, 0x28, 0xd0, 0x72, 0x5c, 0x4a, 0x6d, 0x69, 0x99, 0xf0, 0x63, 0x1e +.byte 0x0c, 0xd2, 0xb1, 0xff, 0xd6, 0x8c, 0x34, 0xd0, 0xee, 0xdb, 0xac, 0x48, 0xb9, 0xea, 0xb0, 0x14 +.byte 0x8e, 0xd8, 0x07, 0xa9, 0x24, 0x98, 0xdd, 0xe9, 0x09, 0xbe, 0xa8, 0x22, 0x1b, 0x59, 0x39, 0xd1 +.byte 0x27, 0x87, 0xdc, 0x1c, 0xcd, 0xf8, 0xfb, 0xb3, 0xeb, 0xe9, 0x93, 0x78, 0xed, 0x0f, 0xce, 0x37 +.byte 0x7c, 0x26, 0x77, 0x6e, 0xa1, 0xd8, 0x2c, 0x21, 0x4c, 0xe4, 0x8a, 0x4f, 0xc7, 0x13, 0x3c, 0x6e +.byte 0xc7, 0xd5, 0x13, 0x97, 0xb2, 0xa8, 0xdb, 0x24, 0x69, 0x83, 0x56, 0xd3, 0x69, 0xcb, 0x82, 0x12 +.byte 0xbb, 0x9d, 0x1b, 0xf2, 0xf8, 0x34, 0xf2, 0x98, 0x2b, 0x2a, 0x8e, 0x04, 0x67, 0xf6, 0xe3, 0x87 +.byte 0xa1, 0x1d, 0xad, 0x6e, 0xce, 0x36, 0x74, 0x0e, 0x5e, 0x33, 0x3b, 0xcb, 0xdb, 0x51, 0x97, 0x94 +.byte 0x6a, 0x95, 0x3c, 0xce, 0x18, 0x5a, 0x6e, 0x4b, 0xc6, 0xfc, 0x07, 0x8f, 0x2e, 0x1a, 0xb9, 0x4a +.byte 0xf7, 0x64, 0x34, 0x29, 0xdc, 0xa6, 0x8d, 0x50, 0xe1, 0x8d, 0x8b, 0x4b, 0xe5, 0x48, 0x1b, 0x6e +.byte 0x2e, 0x80, 0x10, 0x3f, 0xe4, 0x9f, 0x1b, 0x65, 0x3f, 0x11, 0xb4, 0xea, 0x57, 0x69, 0x9f, 0xb4 +.byte 0x00, 0xeb, 0x85, 0x24, 0x99, 0x24, 0xf5, 0x21, 0x9d, 0x97, 0xaa, 0xfb, 0x34, 0x7f, 0x02, 0x6b +.byte 0x15, 0x90, 0xad, 0xbb, 0x9e, 0x5a, 0x19, 0x7f, 0xa4, 0x8c, 0xd8, 0xfa, 0x6d, 0x28, 0xfc, 0x38 +.byte 0xc7, 0xe3, 0x4c, 0xad, 0x6a, 0xce, 0xd9, 0x4e, 0x93, 0x92, 0x8e, 0xcc, 0x0c, 0x67, 0xbf, 0x0b +.byte 0x4b, 0x96, 0xce, 0x66, 0x67, 0x53, 0x68, 0xcb, 0x17, 0x11, 0x8e, 0x59, 0xf7, 0xac, 0x9c, 0x1b +.byte 0xb9, 0x8e, 0x68, 0x44, 0xb7, 0x18, 0xaf, 0xe6, 0xe5, 0x0f, 0x65, 0xdc, 0x95, 0x09, 0xb0, 0x93 +.byte 0x12, 0xb5, 0x1f, 0x3e, 0x94, 0xa5, 0xc7, 0x88, 0x75, 0x21, 0xb1, 0xde, 0x09, 0x24, 0x2a, 0x4c +.byte 0xe2, 0xbc, 0xec, 0x4c, 0x67, 0x47, 0xc2, 0x29, 0x88, 0xb9, 0x0a, 0xba, 0xf9, 0xc1, 0x74, 0xce +.byte 0x8c, 0x18, 0x26, 0x65, 0xda, 0xf7, 0x6f, 0xc6, 0x8c, 0x7b, 0x68, 0x5c, 0x0b, 0xee, 0x63, 0xc0 +.byte 0x5e, 0x4b, 0xf1, 0x4e, 0xcc, 0x9f, 0x2f, 0x0f, 0xe1, 0xe8, 0x9a, 0x7a, 0x93, 0xf1, 0xe0, 0xc8 +.byte 0xdb, 0xbf, 0x27, 0xe6, 0x65, 0x29, 0x7b, 0x36, 0xe0, 0x33, 0x15, 0x73, 0xf2, 0x9d, 0x6b, 0x84 +.byte 0x08, 0x68, 0x2b, 0x36, 0x07, 0x2b, 0x27, 0xcc, 0x78, 0xd8, 0x6a, 0x87, 0x0e, 0x47, 0x74, 0xf4 +.byte 0xaa, 0xa0, 0x13, 0x5d, 0x64, 0x7e, 0xf4, 0xdb, 0x14, 0xae, 0xfb, 0x3a, 0xe4, 0x2f, 0xc1, 0x65 +.byte 0xe3, 0xb9, 0x7a, 0x40, 0x6c, 0xf0, 0x06, 0xb7, 0x7b, 0x28, 0x9b, 0xd7, 0xe1, 0x5f, 0x38, 0x73 +.byte 0x94, 0xac, 0xd9, 0x70, 0x93, 0x2d, 0xdc, 0x84, 0xaf, 0x46, 0x1c, 0xa2, 0x7a, 0x2c, 0x3f, 0x81 +.byte 0x26, 0x42, 0xe7, 0xd4, 0xd8, 0xc5, 0x6c, 0x84, 0x66, 0x11, 0x8b, 0x77, 0x6b, 0x54, 0x1c, 0xa3 +.byte 0xb5, 0xd8, 0x10, 0xf0, 0xae, 0x29, 0xf7, 0x67, 0x08, 0x88, 0x17, 0x5c, 0xb8, 0x97, 0x79, 0xcf +.byte 0xea, 0x2b, 0x2a, 0xee, 0x58, 0x33, 0xe5, 0x6d, 0xe9, 0x29, 0xaa, 0x65, 0x01, 0x0d, 0x82, 0x13 +.byte 0xec, 0x25, 0x0b, 0x5d, 0x2c, 0x40, 0x72, 0x15, 0x29, 0xd3, 0x90, 0x2c, 0xf7, 0x1a, 0x43, 0xd5 +.byte 0x6a, 0xf0, 0x69, 0x02, 0x03, 0x01, 0x00, 0x01, 0x4e, 0x00, 0x26, 0x01, 0x30, 0x4c, 0x31, 0x20 +.byte 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x17, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53 +.byte 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x52, 0x33 +.byte 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61 +.byte 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0a +.byte 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d +.byte 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01 +.byte 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xcc, 0x25, 0x76, 0x90, 0x79 +.byte 0x06, 0x78, 0x22, 0x16, 0xf5, 0xc0, 0x83, 0xb6, 0x84, 0xca, 0x28, 0x9e, 0xfd, 0x05, 0x76, 0x11 +.byte 0xc5, 0xad, 0x88, 0x72, 0xfc, 0x46, 0x02, 0x43, 0xc7, 0xb2, 0x8a, 0x9d, 0x04, 0x5f, 0x24, 0xcb +.byte 0x2e, 0x4b, 0xe1, 0x60, 0x82, 0x46, 0xe1, 0x52, 0xab, 0x0c, 0x81, 0x47, 0x70, 0x6c, 0xdd, 0x64 +.byte 0xd1, 0xeb, 0xf5, 0x2c, 0xa3, 0x0f, 0x82, 0x3d, 0x0c, 0x2b, 0xae, 0x97, 0xd7, 0xb6, 0x14, 0x86 +.byte 0x10, 0x79, 0xbb, 0x3b, 0x13, 0x80, 0x77, 0x8c, 0x08, 0xe1, 0x49, 0xd2, 0x6a, 0x62, 0x2f, 0x1f +.byte 0x5e, 0xfa, 0x96, 0x68, 0xdf, 0x89, 0x27, 0x95, 0x38, 0x9f, 0x06, 0xd7, 0x3e, 0xc9, 0xcb, 0x26 +.byte 0x59, 0x0d, 0x73, 0xde, 0xb0, 0xc8, 0xe9, 0x26, 0x0e, 0x83, 0x15, 0xc6, 0xef, 0x5b, 0x8b, 0xd2 +.byte 0x04, 0x60, 0xca, 0x49, 0xa6, 0x28, 0xf6, 0x69, 0x3b, 0xf6, 0xcb, 0xc8, 0x28, 0x91, 0xe5, 0x9d +.byte 0x8a, 0x61, 0x57, 0x37, 0xac, 0x74, 0x14, 0xdc, 0x74, 0xe0, 0x3a, 0xee, 0x72, 0x2f, 0x2e, 0x9c +.byte 0xfb, 0xd0, 0xbb, 0xbf, 0xf5, 0x3d, 0x00, 0xe1, 0x06, 0x33, 0xe8, 0x82, 0x2b, 0xae, 0x53, 0xa6 +.byte 0x3a, 0x16, 0x73, 0x8c, 0xdd, 0x41, 0x0e, 0x20, 0x3a, 0xc0, 0xb4, 0xa7, 0xa1, 0xe9, 0xb2, 0x4f +.byte 0x90, 0x2e, 0x32, 0x60, 0xe9, 0x57, 0xcb, 0xb9, 0x04, 0x92, 0x68, 0x68, 0xe5, 0x38, 0x26, 0x60 +.byte 0x75, 0xb2, 0x9f, 0x77, 0xff, 0x91, 0x14, 0xef, 0xae, 0x20, 0x49, 0xfc, 0xad, 0x40, 0x15, 0x48 +.byte 0xd1, 0x02, 0x31, 0x61, 0x19, 0x5e, 0xb8, 0x97, 0xef, 0xad, 0x77, 0xb7, 0x64, 0x9a, 0x7a, 0xbf +.byte 0x5f, 0xc1, 0x13, 0xef, 0x9b, 0x62, 0xfb, 0x0d, 0x6c, 0xe0, 0x54, 0x69, 0x16, 0xa9, 0x03, 0xda +.byte 0x6e, 0xe9, 0x83, 0x93, 0x71, 0x76, 0xc6, 0x69, 0x85, 0x82, 0x17, 0x02, 0x03, 0x01, 0x00, 0x01 +.byte 0x4e, 0x00, 0x26, 0x02, 0x30, 0x4c, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13 +.byte 0x17, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74 +.byte 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x52, 0x36, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x31, 0x13, 0x30 +.byte 0x11, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69 +.byte 0x67, 0x6e, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d +.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82 +.byte 0x02, 0x01, 0x00, 0x95, 0x07, 0xe8, 0x73, 0xca, 0x66, 0xf9, 0xec, 0x14, 0xca, 0x7b, 0x3c, 0xf7 +.byte 0x0d, 0x08, 0xf1, 0xb4, 0x45, 0x0b, 0x2c, 0x82, 0xb4, 0x48, 0xc6, 0xeb, 0x5b, 0x3c, 0xae, 0x83 +.byte 0xb8, 0x41, 0x92, 0x33, 0x14, 0xa4, 0x6f, 0x7f, 0xe9, 0x2a, 0xcc, 0xc6, 0xb0, 0x88, 0x6b, 0xc5 +.byte 0xb6, 0x89, 0xd1, 0xc6, 0xb2, 0xff, 0x14, 0xce, 0x51, 0x14, 0x21, 0xec, 0x4a, 0xdd, 0x1b, 0x5a +.byte 0xc6, 0xd6, 0x87, 0xee, 0x4d, 0x3a, 0x15, 0x06, 0xed, 0x64, 0x66, 0x0b, 0x92, 0x80, 0xca, 0x44 +.byte 0xde, 0x73, 0x94, 0x4e, 0xf3, 0xa7, 0x89, 0x7f, 0x4f, 0x78, 0x63, 0x08, 0xc8, 0x12, 0x50, 0x6d +.byte 0x42, 0x66, 0x2f, 0x4d, 0xb9, 0x79, 0x28, 0x4d, 0x52, 0x1a, 0x8a, 0x1a, 0x80, 0xb7, 0x19, 0x81 +.byte 0x0e, 0x7e, 0xc4, 0x8a, 0xbc, 0x64, 0x4c, 0x21, 0x1c, 0x43, 0x68, 0xd7, 0x3d, 0x3c, 0x8a, 0xc5 +.byte 0xb2, 0x66, 0xd5, 0x90, 0x9a, 0xb7, 0x31, 0x06, 0xc5, 0xbe, 0xe2, 0x6d, 0x32, 0x06, 0xa6, 0x1e +.byte 0xf9, 0xb9, 0xeb, 0xaa, 0xa3, 0xb8, 0xbf, 0xbe, 0x82, 0x63, 0x50, 0xd0, 0xf0, 0x18, 0x89, 0xdf +.byte 0xe4, 0x0f, 0x79, 0xf5, 0xea, 0xa2, 0x1f, 0x2a, 0xd2, 0x70, 0x2e, 0x7b, 0xe7, 0xbc, 0x93, 0xbb +.byte 0x6d, 0x53, 0xe2, 0x48, 0x7c, 0x8c, 0x10, 0x07, 0x38, 0xff, 0x66, 0xb2, 0x77, 0x61, 0x7e, 0xe0 +.byte 0xea, 0x8c, 0x3c, 0xaa, 0xb4, 0xa4, 0xf6, 0xf3, 0x95, 0x4a, 0x12, 0x07, 0x6d, 0xfd, 0x8c, 0xb2 +.byte 0x89, 0xcf, 0xd0, 0xa0, 0x61, 0x77, 0xc8, 0x58, 0x74, 0xb0, 0xd4, 0x23, 0x3a, 0xf7, 0x5d, 0x3a +.byte 0xca, 0xa2, 0xdb, 0x9d, 0x09, 0xde, 0x5d, 0x44, 0x2d, 0x90, 0xf1, 0x81, 0xcd, 0x57, 0x92, 0xfa +.byte 0x7e, 0xbc, 0x50, 0x04, 0x63, 0x34, 0xdf, 0x6b, 0x93, 0x18, 0xbe, 0x6b, 0x36, 0xb2, 0x39, 0xe4 +.byte 0xac, 0x24, 0x36, 0xb7, 0xf0, 0xef, 0xb6, 0x1c, 0x13, 0x57, 0x93, 0xb6, 0xde, 0xb2, 0xf8, 0xe2 +.byte 0x85, 0xb7, 0x73, 0xa2, 0xb8, 0x35, 0xaa, 0x45, 0xf2, 0xe0, 0x9d, 0x36, 0xa1, 0x6f, 0x54, 0x8a +.byte 0xf1, 0x72, 0x56, 0x6e, 0x2e, 0x88, 0xc5, 0x51, 0x42, 0x44, 0x15, 0x94, 0xee, 0xa3, 0xc5, 0x38 +.byte 0x96, 0x9b, 0x4e, 0x4e, 0x5a, 0x0b, 0x47, 0xf3, 0x06, 0x36, 0x49, 0x77, 0x30, 0xbc, 0x71, 0x37 +.byte 0xe5, 0xa6, 0xec, 0x21, 0x08, 0x75, 0xfc, 0xe6, 0x61, 0x16, 0x3f, 0x77, 0xd5, 0xd9, 0x91, 0x97 +.byte 0x84, 0x0a, 0x6c, 0xd4, 0x02, 0x4d, 0x74, 0xc0, 0x14, 0xed, 0xfd, 0x39, 0xfb, 0x83, 0xf2, 0x5e +.byte 0x14, 0xa1, 0x04, 0xb0, 0x0b, 0xe9, 0xfe, 0xee, 0x8f, 0xe1, 0x6e, 0x0b, 0xb2, 0x08, 0xb3, 0x61 +.byte 0x66, 0x09, 0x6a, 0xb1, 0x06, 0x3a, 0x65, 0x96, 0x59, 0xc0, 0xf0, 0x35, 0xfd, 0xc9, 0xda, 0x28 +.byte 0x8d, 0x1a, 0x11, 0x87, 0x70, 0x81, 0x0a, 0xa8, 0x9a, 0x75, 0x1d, 0x9e, 0x3a, 0x86, 0x05, 0x00 +.byte 0x9e, 0xdb, 0x80, 0xd6, 0x25, 0xf9, 0xdc, 0x05, 0x9e, 0x27, 0x59, 0x4c, 0x76, 0x39, 0x5b, 0xea +.byte 0xf9, 0xa5, 0xa1, 0xd8, 0x83, 0x0f, 0xd1, 0xff, 0xdf, 0x30, 0x11, 0xf9, 0x85, 0xcf, 0x33, 0x48 +.byte 0xf5, 0xca, 0x6d, 0x64, 0x14, 0x2c, 0x7a, 0x58, 0x4f, 0xd3, 0x4b, 0x08, 0x49, 0xc5, 0x95, 0x64 +.byte 0x1a, 0x63, 0x0e, 0x79, 0x3d, 0xf5, 0xb3, 0x8c, 0xca, 0x58, 0xad, 0x9c, 0x42, 0x45, 0x79, 0x6e +.byte 0x0e, 0x87, 0x19, 0x5c, 0x54, 0xb1, 0x65, 0xb6, 0xbf, 0x8c, 0x9b, 0xdc, 0x13, 0xe9, 0x0d, 0x6f +.byte 0xb8, 0x2e, 0xdc, 0x67, 0x6e, 0xc9, 0x8b, 0x11, 0xb5, 0x84, 0x14, 0x8a, 0x00, 0x19, 0x70, 0x83 +.byte 0x79, 0x91, 0x97, 0x91, 0xd4, 0x1a, 0x27, 0xbf, 0x37, 0x1e, 0x32, 0x07, 0xd8, 0x14, 0x63, 0x3c +.byte 0x28, 0x4c, 0xaf, 0x02, 0x03, 0x01, 0x00, 0x01, 0x4e, 0x00, 0x78, 0x00, 0x30, 0x4c, 0x31, 0x2e +.byte 0x30, 0x2c, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x25, 0x41, 0x74, 0x6f, 0x73, 0x20, 0x54, 0x72 +.byte 0x75, 0x73, 0x74, 0x65, 0x64, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43 +.byte 0x41, 0x20, 0x45, 0x43, 0x43, 0x20, 0x54, 0x4c, 0x53, 0x20, 0x32, 0x30, 0x32, 0x31, 0x31, 0x0d +.byte 0x30, 0x0b, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x04, 0x41, 0x74, 0x6f, 0x73, 0x31, 0x0b, 0x30 +.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07 +.byte 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62 +.byte 0x00, 0x04, 0x96, 0x86, 0x58, 0x28, 0x37, 0x0a, 0x67, 0xd0, 0xa0, 0xde, 0x24, 0x19, 0x19, 0xe1 +.byte 0xe4, 0x05, 0x07, 0x1f, 0x97, 0xed, 0xe8, 0x64, 0x82, 0xb9, 0xf6, 0xc4, 0x71, 0x50, 0xce, 0x8a +.byte 0x0c, 0xff, 0xd7, 0xb5, 0x76, 0xbb, 0xa1, 0x6c, 0x93, 0x6c, 0x83, 0xa2, 0x68, 0x6e, 0xa5, 0xd9 +.byte 0xbe, 0x2c, 0x88, 0x95, 0x41, 0xcd, 0x5d, 0xdd, 0xb1, 0xca, 0x83, 0x63, 0x83, 0xcc, 0xc0, 0xbe +.byte 0x74, 0xd9, 0xe0, 0x9d, 0xa4, 0xee, 0x4a, 0x4e, 0x56, 0xe0, 0x98, 0x29, 0x41, 0x93, 0x52, 0x10 +.byte 0xd5, 0x24, 0x38, 0x02, 0x32, 0x67, 0xf1, 0x94, 0x12, 0x6f, 0xef, 0xd7, 0xc5, 0xde, 0x2e, 0xfd +.byte 0x19, 0x80, 0x4e, 0x00, 0x26, 0x02, 0x30, 0x4c, 0x31, 0x2e, 0x30, 0x2c, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x0c, 0x25, 0x41, 0x74, 0x6f, 0x73, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x65, 0x64, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x52, 0x53, 0x41, 0x20 +.byte 0x54, 0x4c, 0x53, 0x20, 0x32, 0x30, 0x32, 0x31, 0x31, 0x0d, 0x30, 0x0b, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x0c, 0x04, 0x41, 0x74, 0x6f, 0x73, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 +.byte 0x13, 0x02, 0x44, 0x45, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86 +.byte 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a +.byte 0x02, 0x82, 0x02, 0x01, 0x00, 0xb6, 0x80, 0x0e, 0xc4, 0x79, 0xbd, 0x05, 0x8c, 0x7d, 0xb0, 0xa3 +.byte 0x9d, 0x4d, 0x22, 0x4d, 0xcb, 0xf0, 0x41, 0x97, 0x4d, 0x59, 0xe0, 0xd1, 0xfe, 0x56, 0x8c, 0x97 +.byte 0xf2, 0xd7, 0xbd, 0x8f, 0x6c, 0xb7, 0x23, 0x8f, 0x5f, 0xd5, 0xc4, 0xd8, 0x41, 0xcb, 0xf2, 0x02 +.byte 0x1e, 0x71, 0xe5, 0xe9, 0xf6, 0x5e, 0xcb, 0x08, 0x2a, 0x5e, 0x30, 0xf2, 0x2d, 0x66, 0xc7, 0x84 +.byte 0x1b, 0x64, 0x57, 0x38, 0x9d, 0x75, 0x2d, 0x56, 0xc6, 0x2f, 0x61, 0xef, 0x96, 0xfc, 0x20, 0x46 +.byte 0xbd, 0xeb, 0xd4, 0x7b, 0x3f, 0x3f, 0x7c, 0x47, 0x38, 0x04, 0xa9, 0x1b, 0xaa, 0x52, 0xdf, 0x13 +.byte 0x37, 0xd3, 0x15, 0x15, 0x4e, 0xbd, 0x5f, 0x7c, 0xaf, 0xad, 0x63, 0xc7, 0x79, 0xdc, 0x08, 0x7b +.byte 0xd5, 0xa0, 0xe5, 0xf7, 0x5b, 0x75, 0xac, 0x80, 0x55, 0x99, 0x92, 0x61, 0x9b, 0xcd, 0x2a, 0x17 +.byte 0x7d, 0xdb, 0x8f, 0xf4, 0xb5, 0x6a, 0xea, 0x17, 0x4a, 0x64, 0x28, 0x66, 0x15, 0x29, 0x6c, 0x02 +.byte 0xf1, 0x6b, 0xd5, 0xba, 0xa3, 0x33, 0xdc, 0x5a, 0x67, 0xa7, 0x05, 0xe2, 0xbf, 0x65, 0xb6, 0x16 +.byte 0xb0, 0x10, 0xed, 0xcd, 0x50, 0x33, 0xc9, 0x70, 0x50, 0xec, 0x19, 0x8e, 0xb0, 0xc7, 0xf2, 0x74 +.byte 0x5b, 0x6b, 0x44, 0xc6, 0x7d, 0x96, 0xb9, 0x98, 0x08, 0x59, 0x66, 0xde, 0x29, 0x01, 0x9b, 0xf4 +.byte 0x2a, 0x6d, 0xd3, 0x15, 0x3a, 0x90, 0x6a, 0x67, 0xf1, 0xb4, 0x6b, 0x66, 0xd9, 0x21, 0xeb, 0xca +.byte 0xd9, 0x62, 0x7c, 0x46, 0x10, 0x5c, 0xde, 0x75, 0x49, 0x67, 0x9e, 0x42, 0xf9, 0xfe, 0x75, 0xa9 +.byte 0xa3, 0xad, 0xff, 0x76, 0x0a, 0x67, 0x40, 0xe3, 0xc5, 0xf7, 0x8d, 0xc7, 0x85, 0x9a, 0x59, 0x9e +.byte 0x62, 0x9a, 0x6a, 0xed, 0x45, 0x87, 0x98, 0x67, 0xb2, 0xd5, 0x4a, 0x3c, 0xd7, 0xb4, 0x3b, 0x00 +.byte 0x0d, 0xc0, 0x8f, 0x1f, 0xe1, 0x40, 0xc4, 0xae, 0x6c, 0x21, 0xdc, 0x49, 0x7e, 0x7e, 0xca, 0xb2 +.byte 0x8d, 0x6d, 0xb6, 0xbf, 0x93, 0x2f, 0xa1, 0x5c, 0x3e, 0x8f, 0xca, 0xed, 0x80, 0x8e, 0x58, 0xe1 +.byte 0xdb, 0x57, 0xcf, 0x85, 0x36, 0x38, 0xb2, 0x71, 0xa4, 0x09, 0x8c, 0x92, 0x89, 0x08, 0x88, 0x48 +.byte 0xf1, 0x40, 0x63, 0x18, 0xb2, 0x5b, 0x8c, 0x5a, 0xe3, 0xc3, 0xd3, 0x17, 0xaa, 0xab, 0x19, 0xa3 +.byte 0x2c, 0x1b, 0xe4, 0xd5, 0xc6, 0xe2, 0x66, 0x7a, 0xd7, 0x82, 0x19, 0xa6, 0x3b, 0x16, 0x2c, 0x2f +.byte 0x71, 0x87, 0x5f, 0x45, 0x9e, 0x95, 0x73, 0x93, 0xc2, 0x42, 0x81, 0x21, 0x13, 0x96, 0xd7, 0x9d +.byte 0xbb, 0x93, 0x68, 0x15, 0xfa, 0x9d, 0xa4, 0x1d, 0x8c, 0xf2, 0x81, 0xe0, 0x58, 0x06, 0xbd, 0xc9 +.byte 0xb6, 0xe3, 0xf6, 0x89, 0x5d, 0x89, 0xf9, 0xac, 0x44, 0xa1, 0xcb, 0x6b, 0xfa, 0x16, 0xf1, 0xc7 +.byte 0x50, 0x3d, 0x24, 0xda, 0xf7, 0xc3, 0xe4, 0x87, 0xd5, 0x56, 0xf1, 0x4f, 0x90, 0x30, 0xfa, 0x45 +.byte 0x09, 0x59, 0xda, 0x34, 0xce, 0xe0, 0x13, 0x1c, 0x04, 0x7c, 0x00, 0xd4, 0x9b, 0x86, 0xa4, 0x40 +.byte 0xbc, 0xd9, 0xdc, 0x4c, 0x57, 0x7e, 0xae, 0xb7, 0x33, 0xb6, 0x5e, 0x76, 0xe1, 0x65, 0x8b, 0x66 +.byte 0xdf, 0x8d, 0xca, 0xd7, 0x98, 0xaf, 0xce, 0x36, 0x98, 0x8c, 0x9c, 0x83, 0x99, 0x03, 0x70, 0xf3 +.byte 0xaf, 0x74, 0xed, 0xc6, 0x0e, 0x36, 0xe7, 0xbd, 0xec, 0xc1, 0x73, 0xa7, 0x94, 0x5a, 0xcb, 0x92 +.byte 0x64, 0x82, 0xa6, 0x00, 0xc1, 0x70, 0xa1, 0x6e, 0x2c, 0x29, 0xe1, 0x58, 0x57, 0xec, 0x5a, 0x7c +.byte 0x99, 0x6b, 0x25, 0xa4, 0x90, 0x3a, 0x80, 0xf4, 0x20, 0x9d, 0x9a, 0xce, 0xc7, 0x2d, 0xf9, 0xb2 +.byte 0x4b, 0x29, 0x95, 0x83, 0xe9, 0x35, 0x8d, 0xa7, 0x49, 0x48, 0xa7, 0x0f, 0x4c, 0x19, 0x91, 0xd0 +.byte 0xf5, 0xbf, 0x10, 0xe0, 0x71, 0x02, 0x03, 0x01, 0x00, 0x01, 0x4f, 0x00, 0x26, 0x02, 0x30, 0x4d +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x41, 0x54, 0x31, 0x23, 0x30 +.byte 0x21, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1a, 0x65, 0x2d, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x72 +.byte 0x63, 0x65, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x47, 0x6d +.byte 0x62, 0x48, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x10, 0x47, 0x4c, 0x4f +.byte 0x42, 0x41, 0x4c, 0x54, 0x52, 0x55, 0x53, 0x54, 0x20, 0x32, 0x30, 0x32, 0x30, 0x30, 0x82, 0x02 +.byte 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00 +.byte 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xae, 0x2e +.byte 0x56, 0xad, 0x1b, 0x1c, 0xef, 0xf6, 0x95, 0x8f, 0xa0, 0x77, 0x1b, 0x2b, 0xd3, 0x63, 0x8f, 0x84 +.byte 0x4d, 0x45, 0xa2, 0x0f, 0x9f, 0x5b, 0x45, 0xab, 0x59, 0x7b, 0x51, 0x34, 0xf9, 0xec, 0x8b, 0x8a +.byte 0x78, 0xc5, 0xdd, 0x6b, 0xaf, 0xbd, 0xc4, 0xdf, 0x93, 0x45, 0x1e, 0xbf, 0x91, 0x38, 0x0b, 0xae +.byte 0x0e, 0x16, 0xe7, 0x41, 0x73, 0xf8, 0xdb, 0xbb, 0xd1, 0xb8, 0x51, 0xe0, 0xcb, 0x83, 0x3b, 0x73 +.byte 0x38, 0x6e, 0x77, 0x8a, 0x0f, 0x59, 0x63, 0x26, 0xcd, 0xa7, 0x2a, 0xce, 0x54, 0xfb, 0xb8, 0xe2 +.byte 0xc0, 0x7c, 0x47, 0xce, 0x60, 0x7c, 0x3f, 0xb2, 0x73, 0xf2, 0xc0, 0x19, 0xb6, 0x8a, 0x92, 0x87 +.byte 0x35, 0x0d, 0x90, 0x28, 0xa2, 0xe4, 0x15, 0x04, 0x63, 0x3e, 0xba, 0xaf, 0xee, 0x7c, 0x5e, 0xcc +.byte 0xa6, 0x8b, 0x50, 0xb2, 0x38, 0xf7, 0x41, 0x63, 0xca, 0xce, 0xff, 0x69, 0x8f, 0x68, 0x0e, 0x95 +.byte 0x36, 0xe5, 0xcc, 0xb9, 0x8c, 0x09, 0xca, 0x4b, 0xdd, 0x31, 0x90, 0x96, 0xc8, 0xcc, 0x1f, 0xfd +.byte 0x56, 0x96, 0x34, 0xdb, 0x8e, 0x1c, 0xea, 0x2c, 0xbe, 0x85, 0x2e, 0x63, 0xdd, 0xaa, 0xa9, 0x95 +.byte 0xd3, 0xfd, 0x29, 0x95, 0x13, 0xf0, 0xc8, 0x98, 0x93, 0xd9, 0x2d, 0x16, 0x47, 0x90, 0x11, 0x83 +.byte 0xa2, 0x3a, 0x22, 0xa2, 0x28, 0x57, 0xa2, 0xeb, 0xfe, 0xc0, 0x8c, 0x28, 0xa0, 0xa6, 0x7d, 0xe7 +.byte 0x2a, 0x42, 0x3b, 0x82, 0x80, 0x63, 0xa5, 0x63, 0x1f, 0x19, 0xcc, 0x7c, 0xb2, 0x66, 0xa8, 0xc2 +.byte 0xd3, 0x6d, 0x37, 0x6f, 0xe2, 0x7e, 0x06, 0x51, 0xd9, 0x45, 0x84, 0x1f, 0x12, 0xce, 0x24, 0x52 +.byte 0x64, 0x85, 0x0b, 0x48, 0x80, 0x4e, 0x87, 0xb1, 0x22, 0x22, 0x30, 0xaa, 0xeb, 0xae, 0xbe, 0xe0 +.byte 0x02, 0xe0, 0x40, 0xe8, 0xb0, 0x42, 0x80, 0x03, 0x51, 0xaa, 0xb4, 0x7e, 0xaa, 0x44, 0xd7, 0x43 +.byte 0x61, 0xf3, 0xa2, 0x6b, 0x16, 0x89, 0x49, 0xa4, 0xa3, 0xa4, 0x2b, 0x8a, 0x02, 0xc4, 0x78, 0xf4 +.byte 0x68, 0x8a, 0xc1, 0xe4, 0x7a, 0x36, 0xb1, 0x6f, 0x1b, 0x96, 0x1b, 0x77, 0x49, 0x8d, 0xd4, 0xc9 +.byte 0x06, 0x72, 0x8f, 0xcf, 0x53, 0xe3, 0xdc, 0x17, 0x85, 0x20, 0x4a, 0xdc, 0x98, 0x27, 0xd3, 0x91 +.byte 0x26, 0x2b, 0x47, 0x1e, 0x69, 0x07, 0xaf, 0xde, 0xa2, 0xe4, 0xe4, 0xd4, 0x6b, 0x0b, 0xb3, 0x5e +.byte 0x7c, 0xd4, 0x24, 0x80, 0x47, 0x29, 0x69, 0x3b, 0x6e, 0xe8, 0xac, 0xfd, 0x40, 0xeb, 0xd8, 0xed +.byte 0x71, 0x71, 0x2b, 0xf2, 0xe8, 0x58, 0x1d, 0xeb, 0x41, 0x97, 0x22, 0xc5, 0x1f, 0xd4, 0x39, 0xd0 +.byte 0x27, 0x8f, 0x87, 0xe3, 0x18, 0xf4, 0xe0, 0xa9, 0x46, 0x0d, 0xf5, 0x74, 0x3a, 0x82, 0x2e, 0xd0 +.byte 0x6e, 0x2c, 0x91, 0xa3, 0x31, 0x5c, 0x3b, 0x46, 0xea, 0x7b, 0x04, 0x10, 0x56, 0x5e, 0x80, 0x1d +.byte 0xf5, 0xa5, 0x65, 0xe8, 0x82, 0xfc, 0xe2, 0x07, 0x8c, 0x62, 0x45, 0xf5, 0x20, 0xde, 0x46, 0x70 +.byte 0x86, 0xa1, 0xbc, 0x93, 0xd3, 0x1e, 0x74, 0xa6, 0x6c, 0xb0, 0x2c, 0xf7, 0x03, 0x0c, 0x88, 0x0c +.byte 0xcb, 0xd4, 0x72, 0x53, 0x86, 0xbc, 0x60, 0x46, 0xf3, 0x98, 0x6a, 0xc2, 0xf1, 0xbf, 0x43, 0xf9 +.byte 0x70, 0x20, 0x77, 0xca, 0x37, 0x41, 0x79, 0x55, 0x52, 0x63, 0x8d, 0x5b, 0x12, 0x9f, 0xc5, 0x68 +.byte 0xc4, 0x88, 0x9d, 0xac, 0xf2, 0x30, 0xab, 0xb7, 0xa3, 0x31, 0x97, 0x67, 0xad, 0x8f, 0x17, 0x0f +.byte 0x6c, 0xc7, 0x73, 0xed, 0x24, 0x94, 0x6b, 0xc8, 0x83, 0x9a, 0xd0, 0x9a, 0x37, 0x49, 0x04, 0xab +.byte 0xb1, 0x16, 0xc8, 0x6c, 0x49, 0x49, 0x2d, 0xab, 0xa1, 0xd0, 0x8c, 0x92, 0xf2, 0x41, 0x4a, 0x79 +.byte 0x21, 0x25, 0xdb, 0x63, 0xd7, 0xb6, 0x9c, 0xa7, 0x7e, 0x42, 0x69, 0xfb, 0x3a, 0x63, 0x02, 0x03 +.byte 0x01, 0x00, 0x01, 0x4f, 0x00, 0x26, 0x01, 0x30, 0x4d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c +.byte 0x0c, 0x44, 0x2d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31, 0x27, 0x30 +.byte 0x25, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1e, 0x44, 0x2d, 0x54, 0x52, 0x55, 0x53, 0x54, 0x20 +.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x33, 0x20, 0x43, 0x41, 0x20 +.byte 0x32, 0x20, 0x32, 0x30, 0x30, 0x39, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86 +.byte 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82 +.byte 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xd3, 0xb2, 0x4a, 0xcf, 0x7a, 0x47, 0xef, 0x75, 0x9b +.byte 0x23, 0xfa, 0x3a, 0x2f, 0xd6, 0x50, 0x45, 0x89, 0x35, 0x3a, 0xc6, 0x6b, 0xdb, 0xfe, 0xdb, 0x00 +.byte 0x68, 0xa8, 0xe0, 0x03, 0x11, 0x1d, 0x37, 0x50, 0x08, 0x9f, 0x4d, 0x4a, 0x68, 0x94, 0x35, 0xb3 +.byte 0x53, 0xd1, 0x94, 0x63, 0xa7, 0x20, 0x56, 0xaf, 0xde, 0x51, 0x78, 0xec, 0x2a, 0x3d, 0xf3, 0x48 +.byte 0x48, 0x50, 0x3e, 0x0a, 0xdf, 0x46, 0x55, 0x8b, 0x27, 0x6d, 0xc3, 0x10, 0x4d, 0x0d, 0x91, 0x52 +.byte 0x43, 0xd8, 0x87, 0xe0, 0x5d, 0x4e, 0x36, 0xb5, 0x21, 0xca, 0x5f, 0x39, 0x40, 0x04, 0x5f, 0x5b +.byte 0x7e, 0xcc, 0xa3, 0xc6, 0x2b, 0xa9, 0x40, 0x1e, 0xd9, 0x36, 0x84, 0xd6, 0x48, 0xf3, 0x92, 0x1e +.byte 0x34, 0x46, 0x20, 0x24, 0xc1, 0xa4, 0x51, 0x8e, 0x4a, 0x1a, 0xef, 0x50, 0x3f, 0x69, 0x5d, 0x19 +.byte 0x7f, 0x45, 0xc3, 0xc7, 0x01, 0x8f, 0x51, 0xc9, 0x23, 0xe8, 0x72, 0xae, 0xb4, 0xbc, 0x56, 0x09 +.byte 0x7f, 0x12, 0xcb, 0x1c, 0xb1, 0xaf, 0x29, 0x90, 0x0a, 0xc9, 0x55, 0xcc, 0x0f, 0xd3, 0xb4, 0x1a +.byte 0xed, 0x47, 0x35, 0x5a, 0x4a, 0xed, 0x9c, 0x73, 0x04, 0x21, 0xd0, 0xaa, 0xbd, 0x0c, 0x13, 0xb5 +.byte 0x00, 0xca, 0x26, 0x6c, 0xc4, 0x6b, 0x0c, 0x94, 0x5a, 0x95, 0x94, 0xda, 0x50, 0x9a, 0xf1, 0xff +.byte 0xa5, 0x2b, 0x66, 0x31, 0xa4, 0xc9, 0x38, 0xa0, 0xdf, 0x1d, 0x1f, 0xb8, 0x09, 0x2e, 0xf3, 0xa7 +.byte 0xe8, 0x67, 0x52, 0xab, 0x95, 0x1f, 0xe0, 0x46, 0x3e, 0xd8, 0xa4, 0xc3, 0xca, 0x5a, 0xc5, 0x31 +.byte 0x80, 0xe8, 0x48, 0x9a, 0x9f, 0x94, 0x69, 0xfe, 0x19, 0xdd, 0xd8, 0x73, 0x7c, 0x81, 0xca, 0x96 +.byte 0xde, 0x8e, 0xed, 0xb3, 0x32, 0x05, 0x65, 0x84, 0x34, 0xe6, 0xe6, 0xfd, 0x57, 0x10, 0xb5, 0x5f +.byte 0x76, 0xbf, 0x2f, 0xb0, 0x10, 0x0d, 0xc5, 0x02, 0x03, 0x01, 0x00, 0x01, 0x4f, 0x00, 0x26, 0x02 +.byte 0x30, 0x4d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31 +.byte 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x09, 0x49, 0x64, 0x65, 0x6e, 0x54, 0x72 +.byte 0x75, 0x73, 0x74, 0x31, 0x2a, 0x30, 0x28, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x21, 0x49, 0x64 +.byte 0x65, 0x6e, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x20, 0x53 +.byte 0x65, 0x63, 0x74, 0x6f, 0x72, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x31, 0x30 +.byte 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01 +.byte 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00 +.byte 0xb6, 0x22, 0x94, 0xfc, 0xa4, 0x48, 0xaf, 0xe8, 0x47, 0x6b, 0x0a, 0xfb, 0x27, 0x76, 0xe4, 0xf2 +.byte 0x3f, 0x8a, 0x3b, 0x7a, 0x4a, 0x2c, 0x31, 0x2a, 0x8c, 0x8d, 0xb0, 0xa9, 0xc3, 0x31, 0x6b, 0xa8 +.byte 0x77, 0x76, 0x84, 0x26, 0xb6, 0xac, 0x81, 0x42, 0x0d, 0x08, 0xeb, 0x55, 0x58, 0xbb, 0x7a, 0xf8 +.byte 0xbc, 0x65, 0x7d, 0xf2, 0xa0, 0x6d, 0x8b, 0xa8, 0x47, 0xe9, 0x62, 0x76, 0x1e, 0x11, 0xee, 0x08 +.byte 0x14, 0xd1, 0xb2, 0x44, 0x16, 0xf4, 0xea, 0xd0, 0xfa, 0x1e, 0x2f, 0x5e, 0xdb, 0xcb, 0x73, 0x41 +.byte 0xae, 0xbc, 0x00, 0xb0, 0x4a, 0x2b, 0x40, 0xb2, 0xac, 0xe1, 0x3b, 0x4b, 0xc2, 0x2d, 0x9d, 0xe4 +.byte 0xa1, 0x9b, 0xec, 0x1a, 0x3a, 0x1e, 0xf0, 0x08, 0xb3, 0xd0, 0xe4, 0x24, 0x35, 0x07, 0x9f, 0x9c +.byte 0xb4, 0xc9, 0x52, 0x6d, 0xdb, 0x07, 0xca, 0x8f, 0xb5, 0x5b, 0xf0, 0x83, 0xf3, 0x4f, 0xc7, 0x2d +.byte 0xa5, 0xc8, 0xad, 0xcb, 0x95, 0x20, 0xa4, 0x31, 0x28, 0x57, 0x58, 0x5a, 0xe4, 0x8d, 0x1b, 0x9a +.byte 0xab, 0x9e, 0x0d, 0x0c, 0xf2, 0x0a, 0x33, 0x39, 0x22, 0x39, 0x0a, 0x97, 0x2e, 0xf3, 0x53, 0x77 +.byte 0xb9, 0x44, 0x45, 0xfd, 0x84, 0xcb, 0x36, 0x20, 0x81, 0x59, 0x2d, 0x9a, 0x6f, 0x6d, 0x48, 0x48 +.byte 0x61, 0xca, 0x4c, 0xdf, 0x53, 0xd1, 0xaf, 0x52, 0xbc, 0x44, 0x9f, 0xab, 0x2f, 0x6b, 0x83, 0x72 +.byte 0xef, 0x75, 0x80, 0xda, 0x06, 0x33, 0x1b, 0x5d, 0xc8, 0xda, 0x63, 0xc6, 0x4d, 0xcd, 0xac, 0x66 +.byte 0x31, 0xcd, 0xd1, 0xde, 0x3e, 0x87, 0x10, 0x36, 0xe1, 0xb9, 0xa4, 0x7a, 0xef, 0x60, 0x50, 0xb2 +.byte 0xcb, 0xca, 0xa6, 0x56, 0xe0, 0x37, 0xaf, 0xab, 0x34, 0x13, 0x39, 0x25, 0xe8, 0x39, 0x66, 0xe4 +.byte 0x98, 0x7a, 0xaa, 0x12, 0x98, 0x9c, 0x59, 0x66, 0x86, 0x3e, 0xad, 0xf1, 0xb0, 0xca, 0x3e, 0x06 +.byte 0x0f, 0x7b, 0xf0, 0x11, 0x4b, 0x37, 0xa0, 0x44, 0x6d, 0x7b, 0xcb, 0xa8, 0x8c, 0x71, 0xf4, 0xd5 +.byte 0xb5, 0x91, 0x36, 0xcc, 0xf0, 0x15, 0xc6, 0x2b, 0xde, 0x51, 0x17, 0xb1, 0x97, 0x4c, 0x50, 0x3d +.byte 0xb1, 0x95, 0x59, 0x7c, 0x05, 0x7d, 0x2d, 0x21, 0xd5, 0x00, 0xbf, 0x01, 0x67, 0xa2, 0x5e, 0x7b +.byte 0xa6, 0x5c, 0xf2, 0xf7, 0x22, 0xf1, 0x90, 0x0d, 0x93, 0xdb, 0xaa, 0x44, 0x51, 0x66, 0xcc, 0x7d +.byte 0x76, 0x03, 0xeb, 0x6a, 0xa8, 0x2a, 0x38, 0x19, 0x97, 0x76, 0x0d, 0x6b, 0x8a, 0x61, 0xf9, 0xbc +.byte 0xf6, 0xee, 0x76, 0xfd, 0x70, 0x2b, 0xdd, 0x29, 0x3c, 0xf8, 0x0a, 0x1e, 0x5b, 0x42, 0x1c, 0x8b +.byte 0x56, 0x2f, 0x55, 0x1b, 0x1c, 0xa1, 0x2e, 0xb5, 0xc7, 0x16, 0xe6, 0xf8, 0xaa, 0x3c, 0x92, 0x8e +.byte 0x69, 0xb6, 0x01, 0xc1, 0xb5, 0x86, 0x9d, 0x89, 0x0f, 0x0b, 0x38, 0x94, 0x54, 0xe8, 0xea, 0xdc +.byte 0x9e, 0x3d, 0x25, 0xbc, 0x53, 0x26, 0xed, 0xd5, 0xab, 0x39, 0xaa, 0xc5, 0x40, 0x4c, 0x54, 0xab +.byte 0xb2, 0xb4, 0xd9, 0xd9, 0xf8, 0xd7, 0x72, 0xdb, 0x1c, 0xbc, 0x6d, 0xbd, 0x65, 0x5f, 0xef, 0x88 +.byte 0x35, 0x2a, 0x66, 0x2f, 0xee, 0xf6, 0xb3, 0x65, 0xf0, 0x33, 0x8d, 0x7c, 0x98, 0x41, 0x69, 0x46 +.byte 0x0f, 0x43, 0x1c, 0x69, 0xfa, 0x9b, 0xb5, 0xd0, 0x61, 0x6a, 0xcd, 0xca, 0x4b, 0xd9, 0x4c, 0x90 +.byte 0x46, 0xab, 0x15, 0x59, 0xa1, 0x47, 0x54, 0x29, 0x2e, 0x83, 0x28, 0x5f, 0x1c, 0xc2, 0xa2, 0xab +.byte 0x72, 0x17, 0x00, 0x06, 0x8e, 0x45, 0xec, 0x8b, 0xe2, 0x33, 0x3d, 0x7f, 0xda, 0x19, 0x44, 0xe4 +.byte 0x62, 0x72, 0xc3, 0xdf, 0x22, 0xc6, 0xf2, 0x56, 0xd4, 0xdd, 0x5f, 0x95, 0x72, 0xed, 0x6d, 0x5f +.byte 0xf7, 0x48, 0x03, 0x5b, 0xfd, 0xc5, 0x2a, 0xa0, 0xf6, 0x73, 0x23, 0x84, 0x10, 0x1b, 0x01, 0xe7 +.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x4f, 0x00, 0x26, 0x02, 0x30, 0x4d, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x17, 0x30, 0x15, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x0e, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x2c, 0x20, 0x49, 0x6e, 0x63 +.byte 0x2e, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1c, 0x44, 0x69, 0x67, 0x69 +.byte 0x43, 0x65, 0x72, 0x74, 0x20, 0x54, 0x4c, 0x53, 0x20, 0x52, 0x53, 0x41, 0x34, 0x30, 0x39, 0x36 +.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x35, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09 +.byte 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00 +.byte 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xb3, 0xd0, 0xf4, 0xc9, 0x79, 0x11, 0x9d +.byte 0xfd, 0xfc, 0x66, 0x81, 0xe7, 0xcc, 0xd5, 0xe4, 0xbc, 0xec, 0x81, 0x3e, 0x6a, 0x35, 0x8e, 0x2e +.byte 0xb7, 0xe7, 0xde, 0xaf, 0xf9, 0x07, 0x4d, 0xcf, 0x30, 0x9d, 0xea, 0x09, 0x0b, 0x99, 0xbd, 0x6c +.byte 0x57, 0xda, 0x18, 0x4a, 0xb8, 0x78, 0xac, 0x3a, 0x39, 0xa8, 0xa6, 0x48, 0xac, 0x2e, 0x72, 0xe5 +.byte 0xbd, 0xeb, 0xf1, 0x1a, 0xcd, 0xe7, 0xa4, 0x03, 0xa9, 0x3f, 0x11, 0xb4, 0xd8, 0x2f, 0x89, 0x16 +.byte 0xfb, 0x94, 0x01, 0x3d, 0xbb, 0x2f, 0xf8, 0x13, 0x05, 0xa1, 0x78, 0x1c, 0x8e, 0x28, 0xe0, 0x45 +.byte 0xe0, 0x83, 0xf4, 0x59, 0x1b, 0x95, 0xb3, 0xae, 0x7e, 0x03, 0x45, 0xe5, 0xbe, 0xc2, 0x42, 0xfe +.byte 0xee, 0xf2, 0x3c, 0xb6, 0x85, 0x13, 0x98, 0x32, 0x9d, 0x16, 0xa8, 0x29, 0xc2, 0x0b, 0x1c, 0x38 +.byte 0xdc, 0x9f, 0x31, 0x77, 0x5c, 0xbf, 0x27, 0xa3, 0xfc, 0x27, 0xac, 0xb7, 0x2b, 0xbd, 0x74, 0x9b +.byte 0x17, 0x2d, 0xf2, 0x81, 0xda, 0x5d, 0xb0, 0xe1, 0x23, 0x17, 0x3e, 0x88, 0x4a, 0x12, 0x23, 0xd0 +.byte 0xea, 0xcf, 0x9d, 0xde, 0x03, 0x17, 0xb1, 0x42, 0x4a, 0xa0, 0x16, 0x4c, 0xa4, 0x6d, 0x93, 0xe9 +.byte 0x3f, 0x3a, 0xee, 0x3a, 0x7c, 0x9d, 0x58, 0x9d, 0xf4, 0x4e, 0x8f, 0xfc, 0x3b, 0x23, 0xc8, 0x6d +.byte 0xb8, 0xe2, 0x05, 0xda, 0xcc, 0xeb, 0xec, 0xc3, 0x31, 0xf4, 0xd7, 0xa7, 0x29, 0x54, 0x80, 0xcf +.byte 0x44, 0x5b, 0x4c, 0x6f, 0x30, 0x9e, 0xf3, 0xcc, 0xdd, 0x1f, 0x94, 0x43, 0x9d, 0x4d, 0x7f, 0x70 +.byte 0x70, 0x0d, 0xd4, 0x3a, 0xd1, 0x37, 0xf0, 0x6c, 0x9d, 0x9b, 0xc0, 0x14, 0x93, 0x58, 0xef, 0xcd +.byte 0x41, 0x38, 0x75, 0xbc, 0x13, 0x03, 0x95, 0x7c, 0x7f, 0xe3, 0x5c, 0xe9, 0xd5, 0x0d, 0xd5, 0xe2 +.byte 0x7c, 0x10, 0x62, 0xaa, 0x6b, 0xf0, 0x3d, 0x76, 0xf3, 0x3f, 0xa3, 0xe8, 0xb0, 0xc1, 0xfd, 0xef +.byte 0xaa, 0x57, 0x4d, 0xac, 0x86, 0xa7, 0x18, 0xb4, 0x29, 0xc1, 0x2c, 0x0e, 0xbf, 0x64, 0xbe, 0x29 +.byte 0x8c, 0xd8, 0x02, 0x2d, 0xcd, 0x5c, 0x2f, 0xf2, 0x7f, 0xef, 0x15, 0xf4, 0x0c, 0x15, 0xac, 0x0a +.byte 0xb0, 0xf1, 0xd3, 0x0d, 0x4f, 0x6a, 0x4d, 0x77, 0x97, 0x01, 0xa0, 0xf1, 0x66, 0xb7, 0xb7, 0xce +.byte 0xef, 0xce, 0xec, 0xec, 0xa5, 0x75, 0xca, 0xac, 0xe3, 0xe1, 0x63, 0xf7, 0xb8, 0xa1, 0x04, 0xc8 +.byte 0xbc, 0x7b, 0x3f, 0x5d, 0x2d, 0x16, 0x22, 0x56, 0xed, 0x48, 0x49, 0xfe, 0xa7, 0x2f, 0x79, 0x30 +.byte 0x25, 0x9b, 0xba, 0x6b, 0x2d, 0x3f, 0x9d, 0x3b, 0xc4, 0x17, 0xe7, 0x1d, 0x2e, 0xfb, 0xf2, 0xcf +.byte 0xa6, 0xfc, 0xe3, 0x14, 0x2c, 0x96, 0x98, 0x21, 0x8c, 0xb4, 0x91, 0xe9, 0x19, 0x60, 0x83, 0xf2 +.byte 0x30, 0x2b, 0x06, 0x73, 0x50, 0xd5, 0x98, 0x3b, 0x06, 0xe9, 0xc7, 0x8a, 0x0c, 0x60, 0x8c, 0x28 +.byte 0xf8, 0x52, 0x9b, 0x6e, 0xe1, 0xf6, 0x4d, 0xbb, 0x06, 0x24, 0x9b, 0xd7, 0x2b, 0x26, 0x3f, 0xfd +.byte 0x2a, 0x2f, 0x71, 0xf5, 0xd6, 0x24, 0xbe, 0x7f, 0x31, 0x9e, 0x0f, 0x6d, 0xe8, 0x8f, 0x4f, 0x4d +.byte 0xa3, 0x3f, 0xff, 0x35, 0xea, 0xdf, 0x49, 0x5e, 0x41, 0x8f, 0x86, 0xf9, 0xf1, 0x77, 0x79, 0x4b +.byte 0x1b, 0xb4, 0xa3, 0x5e, 0x2f, 0xfb, 0x46, 0x02, 0xd0, 0x66, 0x13, 0x5e, 0x5e, 0x85, 0x4f, 0xce +.byte 0xd8, 0x70, 0x88, 0x7b, 0xce, 0x01, 0xb5, 0x96, 0x97, 0xd7, 0xcd, 0x7d, 0xfd, 0x82, 0xf8, 0xc2 +.byte 0x24, 0xc1, 0xca, 0x01, 0x39, 0x4f, 0x8d, 0xa2, 0xc1, 0x14, 0x40, 0x1f, 0x9c, 0x66, 0xd5, 0x0c +.byte 0x09, 0x46, 0xd6, 0xf2, 0xd0, 0xd1, 0x48, 0x76, 0x56, 0x3a, 0x43, 0xcb, 0xb6, 0x0a, 0x11, 0x39 +.byte 0xba, 0x8c, 0x13, 0x6c, 0x06, 0xb5, 0x9e, 0xcf, 0xeb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x50, 0x00 +.byte 0x26, 0x02, 0x30, 0x4e, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x4e +.byte 0x4f, 0x31, 0x1d, 0x30, 0x1b, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x14, 0x42, 0x75, 0x79, 0x70 +.byte 0x61, 0x73, 0x73, 0x20, 0x41, 0x53, 0x2d, 0x39, 0x38, 0x33, 0x31, 0x36, 0x33, 0x33, 0x32, 0x37 +.byte 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x17, 0x42, 0x75, 0x79, 0x70, 0x61 +.byte 0x73, 0x73, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x32, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20 +.byte 0x43, 0x41, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d +.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82 +.byte 0x02, 0x01, 0x00, 0xd7, 0xc7, 0x5e, 0xf7, 0xc1, 0x07, 0xd4, 0x77, 0xfb, 0x43, 0x21, 0xf4, 0xf4 +.byte 0xf5, 0x69, 0xe4, 0xee, 0x32, 0x01, 0xdb, 0xa3, 0x86, 0x1f, 0xe4, 0x59, 0x0d, 0xba, 0xe7, 0x75 +.byte 0x83, 0x52, 0xeb, 0xea, 0x1c, 0x61, 0x15, 0x48, 0xbb, 0x1d, 0x07, 0xca, 0x8c, 0xae, 0xb0, 0xdc +.byte 0x96, 0x9d, 0xea, 0xc3, 0x60, 0x92, 0x86, 0x82, 0x28, 0x73, 0x9c, 0x56, 0x06, 0xff, 0x4b, 0x64 +.byte 0xf0, 0x0c, 0x2a, 0x37, 0x49, 0xb5, 0xe5, 0xcf, 0x0c, 0x7c, 0xee, 0xf1, 0x4a, 0xbb, 0x73, 0x30 +.byte 0x65, 0xf3, 0xd5, 0x2f, 0x83, 0xb6, 0x7e, 0xe3, 0xe7, 0xf5, 0x9e, 0xab, 0x60, 0xf9, 0xd3, 0xf1 +.byte 0x9d, 0x92, 0x74, 0x8a, 0xe4, 0x1c, 0x96, 0xac, 0x5b, 0x80, 0xe9, 0xb5, 0xf4, 0x31, 0x87, 0xa3 +.byte 0x51, 0xfc, 0xc7, 0x7e, 0xa1, 0x6f, 0x8e, 0x53, 0x77, 0xd4, 0x97, 0xc1, 0x55, 0x33, 0x92, 0x3e +.byte 0x18, 0x2f, 0x75, 0xd4, 0xad, 0x86, 0x49, 0xcb, 0x95, 0xaf, 0x54, 0x06, 0x6c, 0xd8, 0x06, 0x13 +.byte 0x8d, 0x5b, 0xff, 0xe1, 0x26, 0x19, 0x59, 0xc0, 0x24, 0xba, 0x81, 0x71, 0x79, 0x90, 0x44, 0x50 +.byte 0x68, 0x24, 0x94, 0x5f, 0xb8, 0xb3, 0x11, 0xf1, 0x29, 0x41, 0x61, 0xa3, 0x41, 0xcb, 0x23, 0x36 +.byte 0xd5, 0xc1, 0xf1, 0x32, 0x50, 0x10, 0x4e, 0x7f, 0xf4, 0x86, 0x93, 0xec, 0x84, 0xd3, 0x8e, 0xbc +.byte 0x4b, 0xbf, 0x5c, 0x01, 0x4e, 0x07, 0x3d, 0xdc, 0x14, 0x8a, 0x94, 0x0a, 0xa4, 0xea, 0x73, 0xfb +.byte 0x0b, 0x51, 0xe8, 0x13, 0x07, 0x18, 0xfa, 0x0e, 0xf1, 0x2b, 0xd1, 0x54, 0x15, 0x7d, 0x3c, 0xe1 +.byte 0xf7, 0xb4, 0x19, 0x42, 0x67, 0x62, 0x5e, 0x77, 0xe0, 0xa2, 0x55, 0xec, 0xb6, 0xd9, 0x69, 0x17 +.byte 0xd5, 0x3a, 0xaf, 0x44, 0xed, 0x4a, 0xc5, 0x9e, 0xe4, 0x7a, 0x27, 0x7c, 0xe5, 0x75, 0xd7, 0xaa +.byte 0xcb, 0x25, 0xe7, 0xdf, 0x6b, 0x0a, 0xdb, 0x0f, 0x4d, 0x93, 0x4e, 0xa8, 0xa0, 0xcd, 0x7b, 0x2e +.byte 0xf2, 0x59, 0x01, 0x6a, 0xb7, 0x0d, 0xb8, 0x07, 0x81, 0x7e, 0x8b, 0x38, 0x1b, 0x38, 0xe6, 0x0a +.byte 0x57, 0x99, 0x3d, 0xee, 0x21, 0xe8, 0xa3, 0xf5, 0x0c, 0x16, 0xdd, 0x8b, 0xec, 0x34, 0x8e, 0x9c +.byte 0x2a, 0x1c, 0x00, 0x15, 0x17, 0x8d, 0x68, 0x83, 0xd2, 0x70, 0x9f, 0x18, 0x08, 0xcd, 0x11, 0x68 +.byte 0xd5, 0xc9, 0x6b, 0x52, 0xcd, 0xc4, 0x46, 0x8f, 0xdc, 0xb5, 0xf3, 0xd8, 0x57, 0x73, 0x1e, 0xe9 +.byte 0x94, 0x39, 0x04, 0xbf, 0xd3, 0xde, 0x38, 0xde, 0xb4, 0x53, 0xec, 0x69, 0x1c, 0xa2, 0x7e, 0xc4 +.byte 0x8f, 0xe4, 0x1b, 0x70, 0xad, 0xf2, 0xa2, 0xf9, 0xfb, 0xf7, 0x16, 0x64, 0x66, 0x69, 0x9f, 0x49 +.byte 0x51, 0xa2, 0xe2, 0x15, 0x18, 0x67, 0x06, 0x4a, 0x7f, 0xd5, 0x6c, 0xb5, 0x4d, 0xb3, 0x33, 0xe0 +.byte 0x61, 0xeb, 0x5d, 0xbe, 0xe9, 0x98, 0x0f, 0x32, 0xd7, 0x1d, 0x4b, 0x3c, 0x2e, 0x5a, 0x01, 0x52 +.byte 0x91, 0x09, 0xf2, 0xdf, 0xea, 0x8d, 0xd8, 0x06, 0x40, 0x63, 0xaa, 0x11, 0xe4, 0xfe, 0xc3, 0x37 +.byte 0x9e, 0x14, 0x52, 0x3f, 0xf4, 0xe2, 0xcc, 0xf2, 0x61, 0x93, 0xd1, 0xfd, 0x67, 0x6b, 0xd7, 0x52 +.byte 0xae, 0xbf, 0x68, 0xab, 0x40, 0x43, 0xa0, 0x57, 0x35, 0x53, 0x78, 0xf0, 0x53, 0xf8, 0x61, 0x42 +.byte 0x07, 0x64, 0xc6, 0xd7, 0x6f, 0x9b, 0x4c, 0x38, 0x0d, 0x63, 0xac, 0x62, 0xaf, 0x36, 0x8b, 0xa2 +.byte 0x73, 0x0a, 0x0d, 0xf5, 0x21, 0xbd, 0x74, 0xaa, 0x4d, 0xea, 0x72, 0x03, 0x49, 0xdb, 0xc7, 0x5f +.byte 0x1d, 0x62, 0x63, 0xc7, 0xfd, 0xdd, 0x91, 0xec, 0x33, 0xee, 0xf5, 0x6d, 0xb4, 0x6e, 0x30, 0x68 +.byte 0xde, 0xc8, 0xd6, 0x26, 0xb0, 0x75, 0x5e, 0x7b, 0xb4, 0x07, 0x20, 0x98, 0xa1, 0x76, 0x32, 0xb8 +.byte 0x4d, 0x6c, 0x4f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x50, 0x00, 0x26, 0x02, 0x30, 0x4e, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x4e, 0x4f, 0x31, 0x1d, 0x30, 0x1b, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x14, 0x42, 0x75, 0x79, 0x70, 0x61, 0x73, 0x73, 0x20, 0x41, 0x53 +.byte 0x2d, 0x39, 0x38, 0x33, 0x31, 0x36, 0x33, 0x33, 0x32, 0x37, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03 +.byte 0x55, 0x04, 0x03, 0x0c, 0x17, 0x42, 0x75, 0x79, 0x70, 0x61, 0x73, 0x73, 0x20, 0x43, 0x6c, 0x61 +.byte 0x73, 0x73, 0x20, 0x33, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x02, 0x22 +.byte 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03 +.byte 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xa5, 0xda, 0x0a +.byte 0x95, 0x16, 0x50, 0xe3, 0x95, 0xf2, 0x5e, 0x9d, 0x76, 0x31, 0x06, 0x32, 0x7a, 0x9b, 0xf1, 0x10 +.byte 0x76, 0xb8, 0x00, 0x9a, 0xb5, 0x52, 0x36, 0xcd, 0x24, 0x47, 0xb0, 0x9f, 0x18, 0x64, 0xbc, 0x9a +.byte 0xf6, 0xfa, 0xd5, 0x79, 0xd8, 0x90, 0x62, 0x4c, 0x22, 0x2f, 0xde, 0x38, 0x3d, 0xd6, 0xe0, 0xa8 +.byte 0xe9, 0x1c, 0x2c, 0xdb, 0x78, 0x11, 0xe9, 0x8e, 0x68, 0x51, 0x15, 0x72, 0xc7, 0xf3, 0x33, 0x87 +.byte 0xe4, 0xa0, 0x5d, 0x0b, 0x5c, 0xe0, 0x57, 0x07, 0x2a, 0x30, 0xf5, 0xcd, 0xc4, 0x37, 0x77, 0x28 +.byte 0x4d, 0x18, 0x91, 0xe6, 0xbf, 0xd5, 0x52, 0xfd, 0x71, 0x2d, 0x70, 0x3e, 0xe7, 0xc6, 0xc4, 0x8a +.byte 0xe3, 0xf0, 0x28, 0x0b, 0xf4, 0x76, 0x98, 0xa1, 0x8b, 0x87, 0x55, 0xb2, 0x3a, 0x13, 0xfc, 0xb7 +.byte 0x3e, 0x27, 0x37, 0x8e, 0x22, 0xe3, 0xa8, 0x4f, 0x2a, 0xef, 0x60, 0xbb, 0x3d, 0xb7, 0x39, 0xc3 +.byte 0x0e, 0x01, 0x47, 0x99, 0x5d, 0x12, 0x4f, 0xdb, 0x43, 0xfa, 0x57, 0xa1, 0xed, 0xf9, 0x9d, 0xbe +.byte 0x11, 0x47, 0x26, 0x5b, 0x13, 0x98, 0xab, 0x5d, 0x16, 0x8a, 0xb0, 0x37, 0x1c, 0x57, 0x9d, 0x45 +.byte 0xff, 0x88, 0x96, 0x36, 0xbf, 0xbb, 0xca, 0x07, 0x7b, 0x6f, 0x87, 0x63, 0xd7, 0xd0, 0x32, 0x6a +.byte 0xd6, 0x5d, 0x6c, 0x0c, 0xf1, 0xb3, 0x6e, 0x39, 0xe2, 0x6b, 0x31, 0x2e, 0x39, 0x00, 0x27, 0x14 +.byte 0xde, 0x38, 0xc0, 0xec, 0x19, 0x66, 0x86, 0x12, 0xe8, 0x9d, 0x72, 0x16, 0x13, 0x64, 0x52, 0xc7 +.byte 0xa9, 0x37, 0x1c, 0xfd, 0x82, 0x30, 0xed, 0x84, 0x18, 0x1d, 0xf4, 0xae, 0x5c, 0xff, 0x70, 0x13 +.byte 0x00, 0xeb, 0xb1, 0xf5, 0x33, 0x7a, 0x4b, 0xd6, 0x55, 0xf8, 0x05, 0x8d, 0x4b, 0x69, 0xb0, 0xf5 +.byte 0xb3, 0x28, 0x36, 0x5c, 0x14, 0xc4, 0x51, 0x73, 0x4d, 0x6b, 0x0b, 0xf1, 0x34, 0x07, 0xdb, 0x17 +.byte 0x39, 0xd7, 0xdc, 0x28, 0x7b, 0x6b, 0xf5, 0x9f, 0xf3, 0x2e, 0xc1, 0x4f, 0x17, 0x2a, 0x10, 0xf3 +.byte 0xcc, 0xca, 0xe8, 0xeb, 0xfd, 0x6b, 0xab, 0x2e, 0x9a, 0x9f, 0x2d, 0x82, 0x6e, 0x04, 0xd4, 0x52 +.byte 0x01, 0x93, 0x2d, 0x3d, 0x86, 0xfc, 0x7e, 0xfc, 0xdf, 0xef, 0x42, 0x1d, 0xa6, 0x6b, 0xef, 0xb9 +.byte 0x20, 0xc6, 0xf7, 0xbd, 0xa0, 0xa7, 0x95, 0xfd, 0xa7, 0xe6, 0x89, 0x24, 0xd8, 0xcc, 0x8c, 0x34 +.byte 0x6c, 0xe2, 0x23, 0x2f, 0xd9, 0x12, 0x1a, 0x21, 0xb9, 0x55, 0x91, 0x6f, 0x0b, 0x91, 0x79, 0x19 +.byte 0x0c, 0xad, 0x40, 0x88, 0x0b, 0x70, 0xe2, 0x7a, 0xd2, 0x0e, 0xd8, 0x68, 0x48, 0xbb, 0x82, 0x13 +.byte 0x39, 0x10, 0x58, 0xe9, 0xd8, 0x2a, 0x07, 0xc6, 0x12, 0xdb, 0x58, 0xdb, 0xd2, 0x3b, 0x55, 0x10 +.byte 0x47, 0x05, 0x15, 0x67, 0x62, 0x7e, 0x18, 0x63, 0xa6, 0x46, 0x3f, 0x09, 0x0e, 0x54, 0x32, 0x5e +.byte 0xbf, 0x0d, 0x62, 0x7a, 0x27, 0xef, 0x80, 0xe8, 0xdb, 0xd9, 0x4b, 0x06, 0x5a, 0x37, 0x5a, 0x25 +.byte 0xd0, 0x08, 0x12, 0x77, 0xd4, 0x6f, 0x09, 0x50, 0x97, 0x3d, 0xc8, 0x1d, 0xc3, 0xdf, 0x8c, 0x45 +.byte 0x30, 0x56, 0xc6, 0xd3, 0x64, 0xab, 0x66, 0xf3, 0xc0, 0x5e, 0x96, 0x9c, 0xc3, 0xc4, 0xef, 0xc3 +.byte 0x7c, 0x6b, 0x8b, 0x3a, 0x79, 0x7f, 0xb3, 0x49, 0xcf, 0x3d, 0xe2, 0x89, 0x9f, 0xa0, 0x30, 0x4b +.byte 0x85, 0xb9, 0x9c, 0x94, 0x24, 0x79, 0x8f, 0x7d, 0x6b, 0xa9, 0x45, 0x68, 0x0f, 0x2b, 0xd0, 0xf1 +.byte 0xda, 0x1c, 0xcb, 0x69, 0xb8, 0xca, 0x49, 0x62, 0x6d, 0xc8, 0xd0, 0x63, 0x62, 0xdd, 0x60, 0x0f +.byte 0x58, 0xaa, 0x8f, 0xa1, 0xbc, 0x05, 0xa5, 0x66, 0xa2, 0xcf, 0x1b, 0x76, 0xb2, 0x84, 0x64, 0xb1 +.byte 0x4c, 0x39, 0x52, 0xc0, 0x30, 0xba, 0xf0, 0x8c, 0x4b, 0x02, 0xb0, 0xb6, 0xb7, 0x02, 0x03, 0x01 +.byte 0x00, 0x01, 0x50, 0x00, 0x78, 0x00, 0x30, 0x4e, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x17, 0x30, 0x15, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0e +.byte 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x26 +.byte 0x30, 0x24, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1d, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72 +.byte 0x74, 0x20, 0x54, 0x4c, 0x53, 0x20, 0x45, 0x43, 0x43, 0x20, 0x50, 0x33, 0x38, 0x34, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x35, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce +.byte 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xc1, 0x44 +.byte 0xa1, 0xcf, 0x11, 0x97, 0x50, 0x9a, 0xde, 0x23, 0x82, 0x35, 0x07, 0xcd, 0xd0, 0xcb, 0x18, 0x9d +.byte 0xd2, 0xf1, 0x7f, 0x77, 0x35, 0x4f, 0x3b, 0xdd, 0x94, 0x72, 0x52, 0xed, 0xc2, 0x3b, 0xf8, 0xec +.byte 0xfa, 0x7b, 0x6b, 0x58, 0x20, 0xec, 0x99, 0xae, 0xc9, 0xfc, 0x68, 0xb3, 0x75, 0xb9, 0xdb, 0x09 +.byte 0xec, 0xc8, 0x13, 0xf5, 0x4e, 0xc6, 0x0a, 0x1d, 0x66, 0x30, 0x4c, 0xbb, 0x1f, 0x47, 0x0a, 0x3c +.byte 0x61, 0x10, 0x42, 0x29, 0x7c, 0xa5, 0x08, 0x0e, 0xe0, 0x22, 0xe9, 0xd3, 0x35, 0x68, 0xce, 0x9b +.byte 0x63, 0x9f, 0x84, 0xb5, 0x99, 0x4d, 0x58, 0xa0, 0x8e, 0xf5, 0x54, 0xe7, 0x95, 0xc9, 0x50, 0x00 +.byte 0x78, 0x00, 0x30, 0x4e, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55 +.byte 0x53, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0f, 0x53, 0x53, 0x4c, 0x20 +.byte 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x25, 0x30, 0x23, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1c, 0x53, 0x53, 0x4c, 0x2e, 0x63, 0x6f, 0x6d, 0x20, 0x54, 0x4c +.byte 0x53, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x32, 0x30 +.byte 0x32, 0x32, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06 +.byte 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x45, 0x29, 0x35, 0x73, 0xfa, 0xc2 +.byte 0xb8, 0x23, 0xce, 0x14, 0x7d, 0xa8, 0xb1, 0x4d, 0xa0, 0x5b, 0x36, 0xee, 0x2a, 0x2c, 0x53, 0xc3 +.byte 0x60, 0x09, 0x35, 0xb2, 0x24, 0x66, 0x26, 0x69, 0xc0, 0xb3, 0x95, 0xd6, 0x5d, 0x92, 0x40, 0x19 +.byte 0x0e, 0xc6, 0xa5, 0x13, 0x70, 0xf4, 0xef, 0x12, 0x51, 0x28, 0x5d, 0xe7, 0xcc, 0xbd, 0xf9, 0x3c +.byte 0x85, 0xc1, 0xcf, 0x94, 0x90, 0xc9, 0x2b, 0xce, 0x92, 0x42, 0x58, 0x59, 0x67, 0xfd, 0x94, 0x27 +.byte 0x10, 0x64, 0x8c, 0x4f, 0x04, 0xb1, 0x4d, 0x49, 0xe4, 0x7b, 0x4f, 0x9b, 0xf5, 0xe7, 0x08, 0xf8 +.byte 0x03, 0x88, 0xf7, 0xa7, 0xc3, 0x92, 0x4b, 0x19, 0x54, 0x81, 0x50, 0x00, 0x26, 0x02, 0x30, 0x4e +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x18, 0x30 +.byte 0x16, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0f, 0x53, 0x53, 0x4c, 0x20, 0x43, 0x6f, 0x72, 0x70 +.byte 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x0c, 0x1c, 0x53, 0x53, 0x4c, 0x2e, 0x63, 0x6f, 0x6d, 0x20, 0x54, 0x4c, 0x53, 0x20, 0x52, 0x53 +.byte 0x41, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x32, 0x30, 0x32, 0x32, 0x30, 0x82 +.byte 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05 +.byte 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xd0 +.byte 0xa4, 0x09, 0x72, 0x4f, 0x40, 0x88, 0x12, 0x61, 0x3e, 0x35, 0x23, 0x9e, 0xee, 0xf6, 0x74, 0xcf +.byte 0x2f, 0x7b, 0x58, 0x3d, 0xce, 0x3c, 0x0d, 0x10, 0x28, 0x90, 0x2f, 0x97, 0xf7, 0x8c, 0x48, 0xd8 +.byte 0xa0, 0xd8, 0x25, 0xb1, 0x4c, 0xb0, 0x11, 0x4c, 0x17, 0x73, 0x50, 0xd0, 0x22, 0x4a, 0x63, 0xbb +.byte 0x81, 0xd3, 0x29, 0x6e, 0xd5, 0xb5, 0x09, 0x3e, 0x26, 0x18, 0x7f, 0xb2, 0x12, 0x7f, 0x93, 0x98 +.byte 0xb7, 0xaf, 0xf0, 0x36, 0xbf, 0xf2, 0xee, 0x18, 0x9e, 0x9c, 0x3b, 0x52, 0xc5, 0x47, 0x19, 0x5d +.byte 0x74, 0xf3, 0x64, 0x66, 0xd5, 0x5d, 0xc7, 0x68, 0xb4, 0xbf, 0x1b, 0x1c, 0x06, 0xa3, 0xbc, 0x8f +.byte 0x40, 0x23, 0xb6, 0x1e, 0xc6, 0x84, 0xbd, 0x51, 0xc4, 0x1b, 0x39, 0xc1, 0x95, 0xd2, 0x29, 0xec +.byte 0x4b, 0xae, 0x7b, 0x2d, 0xbf, 0x39, 0xfd, 0xb4, 0x62, 0xde, 0x96, 0x7b, 0x41, 0xc6, 0x9c, 0xa0 +.byte 0xe0, 0x06, 0x72, 0xfb, 0xf0, 0x07, 0x97, 0x09, 0x39, 0x81, 0x74, 0xaf, 0xf7, 0x34, 0x59, 0x11 +.byte 0x57, 0x0a, 0xc2, 0x5b, 0xc1, 0x24, 0xf4, 0x31, 0x73, 0x30, 0x82, 0xc6, 0x9d, 0xba, 0x02, 0xf7 +.byte 0x3e, 0x7c, 0x44, 0x5f, 0x83, 0x0d, 0xf3, 0xf1, 0xdd, 0x20, 0x69, 0x16, 0x09, 0x50, 0xe2, 0xd4 +.byte 0x55, 0xb6, 0xe0, 0x80, 0x72, 0x76, 0x6e, 0x4c, 0x47, 0xb7, 0x75, 0x55, 0x59, 0xb4, 0x53, 0x74 +.byte 0xd9, 0x94, 0xc6, 0x41, 0xad, 0x58, 0x8a, 0x31, 0x66, 0x0f, 0x1e, 0xa2, 0x1b, 0x29, 0x40, 0x4e +.byte 0x2f, 0xdf, 0x7b, 0xe6, 0x16, 0x2c, 0x2d, 0xfc, 0xbf, 0xec, 0xf3, 0xb4, 0xfa, 0xbe, 0x18, 0xf6 +.byte 0x9b, 0x49, 0xd4, 0xee, 0x05, 0x6e, 0xd9, 0x34, 0xf3, 0x9c, 0xf1, 0xec, 0x01, 0x8b, 0xd1, 0x20 +.byte 0xc6, 0x0f, 0xa0, 0xb5, 0xbc, 0x17, 0x4e, 0x48, 0x7b, 0x51, 0xc2, 0xfc, 0xe9, 0x5c, 0x69, 0x37 +.byte 0x47, 0x66, 0xb3, 0x68, 0xf8, 0x15, 0x28, 0xf0, 0xb9, 0xd3, 0xa4, 0x15, 0xcc, 0x5a, 0x4f, 0xba +.byte 0x52, 0x70, 0xa3, 0x12, 0x45, 0xdd, 0xc6, 0xba, 0x4e, 0xfb, 0xc2, 0xd0, 0xf7, 0xa8, 0x52, 0x27 +.byte 0x6d, 0x6e, 0x79, 0xb5, 0x8c, 0xfc, 0x7b, 0x8c, 0xc1, 0x16, 0x4c, 0xee, 0x80, 0x7f, 0xbe, 0xf0 +.byte 0x76, 0xbe, 0x41, 0x53, 0x12, 0x33, 0xae, 0x5a, 0x38, 0x42, 0xab, 0xd7, 0x0f, 0x3e, 0x41, 0x8d +.byte 0x76, 0x07, 0x32, 0xd5, 0xab, 0x89, 0xf6, 0x4e, 0x67, 0xd9, 0xb1, 0x42, 0x75, 0x23, 0x6e, 0xf3 +.byte 0xcd, 0x42, 0xb2, 0xfc, 0x55, 0xf5, 0x53, 0x87, 0x17, 0x3b, 0xc0, 0x33, 0x58, 0xf1, 0x52, 0xd2 +.byte 0xf9, 0x80, 0xa4, 0xf0, 0xe8, 0xf0, 0x3b, 0x8b, 0x38, 0xcc, 0xa4, 0xc6, 0x90, 0x7f, 0x0f, 0x9c +.byte 0xfd, 0x8b, 0xd1, 0xa3, 0xcf, 0xda, 0x83, 0xa7, 0x69, 0xc9, 0x50, 0x36, 0xd5, 0x5c, 0x05, 0xd2 +.byte 0x0a, 0x41, 0x74, 0xdb, 0x63, 0x11, 0x37, 0xc1, 0xa5, 0xa0, 0x96, 0x4b, 0x1e, 0x8c, 0x16, 0x12 +.byte 0x77, 0xae, 0x94, 0x34, 0x7b, 0x1e, 0x7f, 0xc2, 0x66, 0x00, 0xe4, 0xaa, 0x83, 0xea, 0x8a, 0x90 +.byte 0xad, 0xce, 0x36, 0x44, 0x4d, 0xd1, 0x51, 0xe9, 0xbc, 0x1f, 0xf3, 0x6a, 0x05, 0xfd, 0xc0, 0x74 +.byte 0x1f, 0x25, 0x19, 0x40, 0x51, 0x6e, 0xea, 0x82, 0x51, 0x40, 0xdf, 0x9b, 0xb9, 0x08, 0x2a, 0x06 +.byte 0x02, 0xd5, 0x23, 0x1c, 0x13, 0xd6, 0xe9, 0xdb, 0xdb, 0xc6, 0xb0, 0x7a, 0xcb, 0x7b, 0x27, 0x9b +.byte 0xfb, 0xe0, 0xd5, 0x46, 0x24, 0xed, 0x10, 0x4b, 0x63, 0x4b, 0xa5, 0x05, 0x8f, 0xba, 0xb8, 0x1d +.byte 0x2b, 0xa6, 0xfa, 0x91, 0xe2, 0x92, 0x52, 0xbd, 0xec, 0xeb, 0x67, 0x97, 0x6d, 0x9a, 0x2d, 0x9f +.byte 0x81, 0x32, 0x05, 0x67, 0x32, 0xfb, 0x48, 0x08, 0x3f, 0xd9, 0x25, 0xb8, 0x04, 0x25, 0x2f, 0x02 +.byte 0x03, 0x01, 0x00, 0x01, 0x51, 0x00, 0x26, 0x02, 0x30, 0x4f, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x54, 0x57, 0x31, 0x23, 0x30, 0x21, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x0c, 0x1a, 0x43, 0x68, 0x75, 0x6e, 0x67, 0x68, 0x77, 0x61, 0x20, 0x54, 0x65, 0x6c, 0x65, 0x63 +.byte 0x6f, 0x6d, 0x20, 0x43, 0x6f, 0x2e, 0x2c, 0x20, 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x1b, 0x30, 0x19 +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x12, 0x48, 0x69, 0x50, 0x4b, 0x49, 0x20, 0x52, 0x6f, 0x6f +.byte 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x47, 0x31, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06 +.byte 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f +.byte 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xf4, 0x1e, 0x7f, 0x52, 0x73, 0x32 +.byte 0x0c, 0x73, 0xe4, 0xbd, 0x13, 0x74, 0xa3, 0xd4, 0x30, 0xa8, 0xd0, 0xae, 0x4b, 0xd8, 0xb6, 0xdf +.byte 0x75, 0x47, 0x66, 0xf4, 0x7c, 0xe7, 0x39, 0x04, 0x1e, 0x6a, 0x70, 0x20, 0xd2, 0x5a, 0x47, 0x72 +.byte 0x67, 0x55, 0xf4, 0xa5, 0xe8, 0x9d, 0xd5, 0x1e, 0x21, 0xa1, 0xf0, 0x67, 0xba, 0xcc, 0x21, 0x68 +.byte 0xbe, 0x44, 0x53, 0xbf, 0x8d, 0xf9, 0xe2, 0xdc, 0x2f, 0x55, 0xc8, 0x37, 0x3f, 0x1f, 0xa4, 0xc0 +.byte 0x9c, 0xb3, 0xe4, 0x77, 0x5c, 0xa0, 0x46, 0xfe, 0x77, 0xfa, 0x1a, 0xa0, 0x38, 0xea, 0xed, 0x9a +.byte 0x72, 0xde, 0x2b, 0xbd, 0x94, 0x57, 0x3a, 0xba, 0xec, 0x79, 0xe7, 0x5f, 0x7d, 0x42, 0x64, 0x39 +.byte 0x7a, 0x26, 0x36, 0xf7, 0x24, 0xf0, 0xd5, 0x2f, 0xba, 0x95, 0x98, 0x11, 0x66, 0xad, 0x97, 0x35 +.byte 0xd6, 0x75, 0x01, 0x80, 0xe0, 0xaf, 0xf4, 0x84, 0x61, 0x8c, 0x0d, 0x1e, 0x5f, 0x7c, 0x87, 0x96 +.byte 0x5e, 0x41, 0xaf, 0xeb, 0x87, 0xea, 0xf8, 0x5d, 0xf1, 0x2e, 0x88, 0x05, 0x3e, 0x4c, 0x22, 0xbb +.byte 0xda, 0x1f, 0x2a, 0xdd, 0x52, 0x46, 0x64, 0x39, 0xf3, 0x42, 0xce, 0xd9, 0x9e, 0x0c, 0xb3, 0xb0 +.byte 0x77, 0x97, 0x64, 0x9c, 0xc0, 0xf4, 0xa3, 0x2e, 0x1f, 0x95, 0x07, 0xb0, 0x17, 0xdf, 0x30, 0xdb +.byte 0x00, 0x18, 0x96, 0x4c, 0xa1, 0x81, 0x4b, 0xdd, 0x04, 0x6d, 0x53, 0xa3, 0x3d, 0xfc, 0x07, 0xac +.byte 0xd4, 0xc5, 0x37, 0x82, 0xeb, 0xe4, 0x95, 0x08, 0x19, 0x28, 0x82, 0xd2, 0x42, 0x3a, 0xa3, 0xd8 +.byte 0x53, 0xec, 0x79, 0x89, 0x60, 0x48, 0x60, 0xc8, 0x72, 0x92, 0x50, 0xdc, 0x03, 0x8f, 0x83, 0x3f +.byte 0xb2, 0x42, 0x57, 0x5a, 0xdb, 0x6a, 0xe9, 0x11, 0x97, 0xdd, 0x85, 0x28, 0xbc, 0x30, 0x4c, 0xab +.byte 0xe3, 0xc2, 0xb1, 0x45, 0x44, 0x47, 0x1f, 0xe0, 0x8a, 0x16, 0x07, 0x96, 0xd2, 0x21, 0x0f, 0x53 +.byte 0xc0, 0xed, 0xa9, 0x7e, 0xd4, 0x4e, 0xec, 0x9b, 0x09, 0xec, 0xaf, 0x42, 0xac, 0x30, 0xd6, 0xbf +.byte 0xd1, 0x10, 0x45, 0xe0, 0xa6, 0x16, 0xb2, 0xa5, 0xc5, 0xd3, 0x4f, 0x73, 0x94, 0x33, 0x71, 0x02 +.byte 0xa1, 0x6a, 0xa3, 0xd6, 0x33, 0x97, 0x4f, 0x21, 0x63, 0x1e, 0x5b, 0x8f, 0xd9, 0xc1, 0x5e, 0x45 +.byte 0x71, 0x77, 0x0f, 0x81, 0x5d, 0x5f, 0x21, 0x9a, 0xad, 0x83, 0xcc, 0xfa, 0x5e, 0xd6, 0x8d, 0x23 +.byte 0x5f, 0x1b, 0x3d, 0x41, 0xaf, 0x20, 0x75, 0x66, 0x5a, 0x4a, 0xf6, 0x9f, 0xfb, 0xab, 0x18, 0xf7 +.byte 0x71, 0xc0, 0xb6, 0x1d, 0x31, 0xec, 0x3b, 0x20, 0xeb, 0xcb, 0xe2, 0xb8, 0xf5, 0xae, 0x92, 0xb2 +.byte 0xf7, 0xe1, 0x84, 0x4b, 0xf2, 0xa2, 0xf2, 0x93, 0x9a, 0x22, 0x9e, 0xd3, 0x14, 0x6f, 0x36, 0x54 +.byte 0xbd, 0x1f, 0x5e, 0x59, 0x15, 0xb9, 0x73, 0xa8, 0xc1, 0x7c, 0x6f, 0x7b, 0x62, 0xe9, 0x16, 0x6c +.byte 0x47, 0x5a, 0x65, 0xf3, 0x0e, 0x11, 0x9b, 0x46, 0xd9, 0xfd, 0x6d, 0xdc, 0xd6, 0x9c, 0xc0, 0xb4 +.byte 0x7d, 0xa5, 0xb0, 0xdd, 0x3f, 0x56, 0x6f, 0xa1, 0xf9, 0xf6, 0xe4, 0x12, 0x48, 0xfd, 0x06, 0x7f +.byte 0x12, 0x57, 0xb6, 0xa9, 0x23, 0x4f, 0x5b, 0x03, 0xc3, 0xe0, 0x71, 0x2a, 0x23, 0xb7, 0xf7, 0xb0 +.byte 0xb1, 0x3b, 0xbc, 0x98, 0xbd, 0xd6, 0x98, 0xa8, 0x0c, 0x6b, 0xf6, 0x8e, 0x12, 0x67, 0xa6, 0xf2 +.byte 0xb2, 0x58, 0xe4, 0x02, 0x09, 0x13, 0x3c, 0xa9, 0xbb, 0x10, 0xb4, 0xd2, 0x30, 0x45, 0xf1, 0xec +.byte 0xf7, 0x00, 0x11, 0xdf, 0x65, 0xf8, 0xdc, 0x2b, 0x43, 0x55, 0xbf, 0x16, 0x97, 0xc4, 0x0f, 0xd5 +.byte 0x2c, 0x61, 0x84, 0xaa, 0x72, 0x86, 0xfe, 0xe6, 0x3a, 0x7e, 0xc2, 0x3f, 0x7d, 0xee, 0xfc, 0x2f +.byte 0x14, 0x3e, 0xe6, 0x85, 0xdd, 0x50, 0x6f, 0xb7, 0x49, 0xed, 0x02, 0x03, 0x01, 0x00, 0x01, 0x51 +.byte 0x00, 0x26, 0x02, 0x30, 0x4f, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x55, 0x53, 0x31, 0x29, 0x30, 0x27, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x20, 0x49, 0x6e, 0x74 +.byte 0x65, 0x72, 0x6e, 0x65, 0x74, 0x20, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x20, 0x52 +.byte 0x65, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x20, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x31, 0x15, 0x30 +.byte 0x13, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0c, 0x49, 0x53, 0x52, 0x47, 0x20, 0x52, 0x6f, 0x6f +.byte 0x74, 0x20, 0x58, 0x31, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86 +.byte 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a +.byte 0x02, 0x82, 0x02, 0x01, 0x00, 0xad, 0xe8, 0x24, 0x73, 0xf4, 0x14, 0x37, 0xf3, 0x9b, 0x9e, 0x2b +.byte 0x57, 0x28, 0x1c, 0x87, 0xbe, 0xdc, 0xb7, 0xdf, 0x38, 0x90, 0x8c, 0x6e, 0x3c, 0xe6, 0x57, 0xa0 +.byte 0x78, 0xf7, 0x75, 0xc2, 0xa2, 0xfe, 0xf5, 0x6a, 0x6e, 0xf6, 0x00, 0x4f, 0x28, 0xdb, 0xde, 0x68 +.byte 0x86, 0x6c, 0x44, 0x93, 0xb6, 0xb1, 0x63, 0xfd, 0x14, 0x12, 0x6b, 0xbf, 0x1f, 0xd2, 0xea, 0x31 +.byte 0x9b, 0x21, 0x7e, 0xd1, 0x33, 0x3c, 0xba, 0x48, 0xf5, 0xdd, 0x79, 0xdf, 0xb3, 0xb8, 0xff, 0x12 +.byte 0xf1, 0x21, 0x9a, 0x4b, 0xc1, 0x8a, 0x86, 0x71, 0x69, 0x4a, 0x66, 0x66, 0x6c, 0x8f, 0x7e, 0x3c +.byte 0x70, 0xbf, 0xad, 0x29, 0x22, 0x06, 0xf3, 0xe4, 0xc0, 0xe6, 0x80, 0xae, 0xe2, 0x4b, 0x8f, 0xb7 +.byte 0x99, 0x7e, 0x94, 0x03, 0x9f, 0xd3, 0x47, 0x97, 0x7c, 0x99, 0x48, 0x23, 0x53, 0xe8, 0x38, 0xae +.byte 0x4f, 0x0a, 0x6f, 0x83, 0x2e, 0xd1, 0x49, 0x57, 0x8c, 0x80, 0x74, 0xb6, 0xda, 0x2f, 0xd0, 0x38 +.byte 0x8d, 0x7b, 0x03, 0x70, 0x21, 0x1b, 0x75, 0xf2, 0x30, 0x3c, 0xfa, 0x8f, 0xae, 0xdd, 0xda, 0x63 +.byte 0xab, 0xeb, 0x16, 0x4f, 0xc2, 0x8e, 0x11, 0x4b, 0x7e, 0xcf, 0x0b, 0xe8, 0xff, 0xb5, 0x77, 0x2e +.byte 0xf4, 0xb2, 0x7b, 0x4a, 0xe0, 0x4c, 0x12, 0x25, 0x0c, 0x70, 0x8d, 0x03, 0x29, 0xa0, 0xe1, 0x53 +.byte 0x24, 0xec, 0x13, 0xd9, 0xee, 0x19, 0xbf, 0x10, 0xb3, 0x4a, 0x8c, 0x3f, 0x89, 0xa3, 0x61, 0x51 +.byte 0xde, 0xac, 0x87, 0x07, 0x94, 0xf4, 0x63, 0x71, 0xec, 0x2e, 0xe2, 0x6f, 0x5b, 0x98, 0x81, 0xe1 +.byte 0x89, 0x5c, 0x34, 0x79, 0x6c, 0x76, 0xef, 0x3b, 0x90, 0x62, 0x79, 0xe6, 0xdb, 0xa4, 0x9a, 0x2f +.byte 0x26, 0xc5, 0xd0, 0x10, 0xe1, 0x0e, 0xde, 0xd9, 0x10, 0x8e, 0x16, 0xfb, 0xb7, 0xf7, 0xa8, 0xf7 +.byte 0xc7, 0xe5, 0x02, 0x07, 0x98, 0x8f, 0x36, 0x08, 0x95, 0xe7, 0xe2, 0x37, 0x96, 0x0d, 0x36, 0x75 +.byte 0x9e, 0xfb, 0x0e, 0x72, 0xb1, 0x1d, 0x9b, 0xbc, 0x03, 0xf9, 0x49, 0x05, 0xd8, 0x81, 0xdd, 0x05 +.byte 0xb4, 0x2a, 0xd6, 0x41, 0xe9, 0xac, 0x01, 0x76, 0x95, 0x0a, 0x0f, 0xd8, 0xdf, 0xd5, 0xbd, 0x12 +.byte 0x1f, 0x35, 0x2f, 0x28, 0x17, 0x6c, 0xd2, 0x98, 0xc1, 0xa8, 0x09, 0x64, 0x77, 0x6e, 0x47, 0x37 +.byte 0xba, 0xce, 0xac, 0x59, 0x5e, 0x68, 0x9d, 0x7f, 0x72, 0xd6, 0x89, 0xc5, 0x06, 0x41, 0x29, 0x3e +.byte 0x59, 0x3e, 0xdd, 0x26, 0xf5, 0x24, 0xc9, 0x11, 0xa7, 0x5a, 0xa3, 0x4c, 0x40, 0x1f, 0x46, 0xa1 +.byte 0x99, 0xb5, 0xa7, 0x3a, 0x51, 0x6e, 0x86, 0x3b, 0x9e, 0x7d, 0x72, 0xa7, 0x12, 0x05, 0x78, 0x59 +.byte 0xed, 0x3e, 0x51, 0x78, 0x15, 0x0b, 0x03, 0x8f, 0x8d, 0xd0, 0x2f, 0x05, 0xb2, 0x3e, 0x7b, 0x4a +.byte 0x1c, 0x4b, 0x73, 0x05, 0x12, 0xfc, 0xc6, 0xea, 0xe0, 0x50, 0x13, 0x7c, 0x43, 0x93, 0x74, 0xb3 +.byte 0xca, 0x74, 0xe7, 0x8e, 0x1f, 0x01, 0x08, 0xd0, 0x30, 0xd4, 0x5b, 0x71, 0x36, 0xb4, 0x07, 0xba +.byte 0xc1, 0x30, 0x30, 0x5c, 0x48, 0xb7, 0x82, 0x3b, 0x98, 0xa6, 0x7d, 0x60, 0x8a, 0xa2, 0xa3, 0x29 +.byte 0x82, 0xcc, 0xba, 0xbd, 0x83, 0x04, 0x1b, 0xa2, 0x83, 0x03, 0x41, 0xa1, 0xd6, 0x05, 0xf1, 0x1b +.byte 0xc2, 0xb6, 0xf0, 0xa8, 0x7c, 0x86, 0x3b, 0x46, 0xa8, 0x48, 0x2a, 0x88, 0xdc, 0x76, 0x9a, 0x76 +.byte 0xbf, 0x1f, 0x6a, 0xa5, 0x3d, 0x19, 0x8f, 0xeb, 0x38, 0xf3, 0x64, 0xde, 0xc8, 0x2b, 0x0d, 0x0a +.byte 0x28, 0xff, 0xf7, 0xdb, 0xe2, 0x15, 0x42, 0xd4, 0x22, 0xd0, 0x27, 0x5d, 0xe1, 0x79, 0xfe, 0x18 +.byte 0xe7, 0x70, 0x88, 0xad, 0x4e, 0xe6, 0xd9, 0x8b, 0x3a, 0xc6, 0xdd, 0x27, 0x51, 0x6e, 0xff, 0xbc +.byte 0x64, 0xf5, 0x33, 0x43, 0x4f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x51, 0x00, 0x78, 0x00, 0x30, 0x4f +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x29, 0x30 +.byte 0x27, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x20, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x65, 0x74 +.byte 0x20, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x20, 0x52, 0x65, 0x73, 0x65, 0x61, 0x72 +.byte 0x63, 0x68, 0x20, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x13, 0x0c, 0x49, 0x53, 0x52, 0x47, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x58, 0x32, 0x30 +.byte 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81 +.byte 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xcd, 0x9b, 0xd5, 0x9f, 0x80, 0x83, 0x0a, 0xec, 0x09 +.byte 0x4a, 0xf3, 0x16, 0x4a, 0x3e, 0x5c, 0xcf, 0x77, 0xac, 0xde, 0x67, 0x05, 0x0d, 0x1d, 0x07, 0xb6 +.byte 0xdc, 0x16, 0xfb, 0x5a, 0x8b, 0x14, 0xdb, 0xe2, 0x71, 0x60, 0xc4, 0xba, 0x45, 0x95, 0x11, 0x89 +.byte 0x8e, 0xea, 0x06, 0xdf, 0xf7, 0x2a, 0x16, 0x1c, 0xa4, 0xb9, 0xc5, 0xc5, 0x32, 0xe0, 0x03, 0xe0 +.byte 0x1e, 0x82, 0x18, 0x38, 0x8b, 0xd7, 0x45, 0xd8, 0x0a, 0x6a, 0x6e, 0xe6, 0x00, 0x77, 0xfb, 0x02 +.byte 0x51, 0x7d, 0x22, 0xd8, 0x0a, 0x6e, 0x9a, 0x5b, 0x77, 0xdf, 0xf0, 0xfa, 0x41, 0xec, 0x39, 0xdc +.byte 0x75, 0xca, 0x68, 0x07, 0x0c, 0x1f, 0xea, 0x52, 0x00, 0x26, 0x01, 0x30, 0x50, 0x31, 0x0b, 0x30 +.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03 +.byte 0x55, 0x04, 0x0a, 0x0c, 0x0c, 0x44, 0x2d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x47, 0x6d, 0x62 +.byte 0x48, 0x31, 0x2a, 0x30, 0x28, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x21, 0x44, 0x2d, 0x54, 0x52 +.byte 0x55, 0x53, 0x54, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x33 +.byte 0x20, 0x43, 0x41, 0x20, 0x32, 0x20, 0x45, 0x56, 0x20, 0x32, 0x30, 0x30, 0x39, 0x30, 0x82, 0x01 +.byte 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00 +.byte 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0x99, 0xf1 +.byte 0x84, 0x34, 0x70, 0xba, 0x2f, 0xb7, 0x30, 0xa0, 0x8e, 0xbd, 0x7c, 0x04, 0xcf, 0xbe, 0x62, 0xbc +.byte 0x99, 0xfd, 0x82, 0x97, 0xd2, 0x7a, 0x0a, 0x67, 0x96, 0x38, 0x09, 0xf6, 0x10, 0x4e, 0x95, 0x22 +.byte 0x73, 0x99, 0x8d, 0xda, 0x15, 0x2d, 0xe7, 0x05, 0xfc, 0x19, 0x73, 0x22, 0xb7, 0x8e, 0x98, 0x00 +.byte 0xbc, 0x3c, 0x3d, 0xac, 0xa1, 0x6c, 0xfb, 0xd6, 0x79, 0x25, 0x4b, 0xad, 0xf0, 0xcc, 0x64, 0xda +.byte 0x88, 0x3e, 0x29, 0xb8, 0x0f, 0x09, 0xd3, 0x34, 0xdd, 0x33, 0xf5, 0x62, 0xd1, 0xe1, 0xcd, 0x19 +.byte 0xe9, 0xee, 0x18, 0x4f, 0x4c, 0x58, 0xae, 0xe2, 0x1e, 0xd6, 0x0c, 0x5b, 0x15, 0x5a, 0xd8, 0x3a +.byte 0xb8, 0xc4, 0x18, 0x64, 0x1e, 0xe3, 0x33, 0xb2, 0xb5, 0x89, 0x77, 0x4e, 0x0c, 0xbf, 0xd9, 0x94 +.byte 0x6b, 0x13, 0x97, 0x6f, 0x12, 0xa3, 0xfe, 0x99, 0xa9, 0x04, 0xcc, 0x15, 0xec, 0x60, 0x68, 0x36 +.byte 0xed, 0x08, 0x7b, 0xb7, 0xf5, 0xbf, 0x93, 0xed, 0x66, 0x31, 0x83, 0x8c, 0xc6, 0x71, 0x34, 0x87 +.byte 0x4e, 0x17, 0xea, 0xaf, 0x8b, 0x91, 0x8d, 0x1c, 0x56, 0x41, 0xae, 0x22, 0x37, 0x5e, 0x37, 0xf2 +.byte 0x1d, 0xd9, 0xd1, 0x2d, 0x0d, 0x2f, 0x69, 0x51, 0xa7, 0xbe, 0x66, 0xa6, 0x8a, 0x3a, 0x2a, 0xbd +.byte 0xc7, 0x1a, 0xb1, 0xe1, 0x14, 0xf0, 0xbe, 0x3a, 0x1d, 0xb9, 0xcf, 0x5b, 0xb1, 0x6a, 0xfe, 0xb4 +.byte 0xb1, 0x46, 0x20, 0xa2, 0xfb, 0x1e, 0x3b, 0x70, 0xef, 0x93, 0x98, 0x7d, 0x8c, 0x73, 0x96, 0xf2 +.byte 0xc5, 0xef, 0x85, 0x70, 0xad, 0x29, 0x26, 0xfc, 0x1e, 0x04, 0x3e, 0x1c, 0xa0, 0xd8, 0x0f, 0xcb +.byte 0x52, 0x83, 0x62, 0x7c, 0xee, 0x8b, 0x53, 0x95, 0x90, 0xa9, 0x57, 0xa2, 0xea, 0x61, 0x05, 0xd8 +.byte 0xf9, 0x4d, 0xc4, 0x27, 0xfa, 0x6e, 0xad, 0xed, 0xf9, 0xd7, 0x51, 0xf7, 0x6b, 0xa5, 0x02, 0x03 +.byte 0x01, 0x00, 0x01, 0x52, 0x00, 0x26, 0x02, 0x30, 0x50, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x54, 0x57, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 +.byte 0x09, 0x54, 0x41, 0x49, 0x57, 0x41, 0x4e, 0x2d, 0x43, 0x41, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03 +.byte 0x55, 0x04, 0x0b, 0x13, 0x07, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x31, 0x1b, 0x30, 0x19 +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x12, 0x54, 0x57, 0x43, 0x41, 0x20, 0x43, 0x59, 0x42, 0x45 +.byte 0x52, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06 +.byte 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f +.byte 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xc6, 0xf8, 0xca, 0x1e, 0xd9, 0x09 +.byte 0x20, 0x7e, 0x1d, 0x6c, 0x4e, 0xce, 0x8f, 0xe3, 0x47, 0x33, 0x44, 0x9c, 0xc7, 0xc9, 0x69, 0xaa +.byte 0x3a, 0x5b, 0x78, 0xee, 0x70, 0xd2, 0x92, 0xf8, 0x04, 0xb3, 0x52, 0x52, 0x1d, 0x67, 0x72, 0x28 +.byte 0xa1, 0xdf, 0x8b, 0x5d, 0x95, 0x0a, 0xfe, 0xea, 0xcd, 0xed, 0xf7, 0x29, 0xce, 0xf0, 0x6f, 0x7f +.byte 0xac, 0xcd, 0x3d, 0xef, 0xb3, 0x1c, 0x45, 0x6a, 0xf7, 0x28, 0x90, 0xf1, 0x61, 0x57, 0xc5, 0x0c +.byte 0xc4, 0xa3, 0x50, 0x5d, 0xde, 0xd4, 0xb5, 0xcb, 0x19, 0xca, 0x80, 0xb9, 0x75, 0xce, 0x29, 0xce +.byte 0xd2, 0x85, 0x22, 0xec, 0x02, 0x63, 0xcc, 0x44, 0x30, 0x20, 0xda, 0xea, 0x91, 0x5b, 0x56, 0xe6 +.byte 0x1d, 0x1c, 0xd5, 0x9d, 0x66, 0xc7, 0x3f, 0xdf, 0x86, 0xca, 0x4b, 0x53, 0xc4, 0xd9, 0x8d, 0xb2 +.byte 0x1d, 0xea, 0xf8, 0xdc, 0x27, 0x53, 0xa3, 0x47, 0xe1, 0x61, 0xcc, 0x7d, 0xb5, 0xb0, 0xf8, 0xee +.byte 0x73, 0x91, 0xc5, 0xce, 0x73, 0x6f, 0xce, 0xee, 0x10, 0x1f, 0x1a, 0x06, 0xcf, 0xe9, 0x27, 0x60 +.byte 0xc5, 0x4f, 0x19, 0xe4, 0xeb, 0xce, 0x22, 0x26, 0x45, 0xd7, 0x60, 0x99, 0xdd, 0xce, 0x4f, 0x37 +.byte 0xe0, 0x7f, 0xe7, 0x63, 0xad, 0xb0, 0xb8, 0x59, 0xb8, 0xd0, 0x06, 0x68, 0x35, 0x60, 0xd3, 0x36 +.byte 0xae, 0x71, 0x43, 0x04, 0xf1, 0x69, 0x65, 0x78, 0x7c, 0xf3, 0x1f, 0xf3, 0xca, 0x28, 0x9f, 0x5a +.byte 0x20, 0x95, 0x66, 0xb4, 0xcd, 0xb7, 0xee, 0x8f, 0x78, 0xa4, 0x45, 0x18, 0xe9, 0x26, 0x2f, 0x8d +.byte 0x9b, 0x29, 0x28, 0xb1, 0xa4, 0xb7, 0x3a, 0x6d, 0xb9, 0xd4, 0x1c, 0x38, 0x72, 0x45, 0x58, 0xb1 +.byte 0x5e, 0xeb, 0xf0, 0x28, 0x9b, 0xb7, 0x82, 0xca, 0xfd, 0xcf, 0xd6, 0x33, 0x0f, 0x9f, 0xfb, 0x97 +.byte 0x9e, 0xb1, 0x1c, 0x9c, 0x9e, 0xea, 0x5f, 0x5e, 0xdb, 0xaa, 0xdd, 0x54, 0xe9, 0x30, 0x21, 0x28 +.byte 0x6d, 0x8e, 0x79, 0xf3, 0x75, 0x92, 0x8c, 0x26, 0xfe, 0xdc, 0xc5, 0xf6, 0xc3, 0xb0, 0xdf, 0x44 +.byte 0x59, 0x43, 0xa3, 0xb6, 0x03, 0x28, 0xf6, 0x08, 0x30, 0xaa, 0x0d, 0x33, 0xe1, 0xef, 0x9c, 0xa9 +.byte 0x07, 0x22, 0xe3, 0x59, 0x5b, 0x40, 0x8f, 0xda, 0x88, 0xb7, 0x69, 0x08, 0xa8, 0xb7, 0x23, 0x2e +.byte 0x44, 0x09, 0x59, 0x37, 0x5b, 0xc7, 0xe3, 0x17, 0xf2, 0x22, 0xeb, 0x6e, 0x39, 0x52, 0xc5, 0xde +.byte 0x54, 0xa7, 0x98, 0xc9, 0x4b, 0x20, 0x95, 0xdc, 0x46, 0x89, 0x5f, 0xb4, 0x12, 0xf9, 0x85, 0x29 +.byte 0x8e, 0xeb, 0xc8, 0x27, 0x15, 0x20, 0xc0, 0x4b, 0xd4, 0xcc, 0x7c, 0x0c, 0x6c, 0x34, 0x0c, 0x26 +.byte 0x9b, 0x26, 0x31, 0xa6, 0x3c, 0xa7, 0xf6, 0xd9, 0xd0, 0x4b, 0xa2, 0x64, 0xff, 0x3b, 0x99, 0x41 +.byte 0x72, 0xc1, 0xe0, 0x70, 0x97, 0xf1, 0x24, 0xbb, 0x2b, 0xc4, 0x74, 0x22, 0xb1, 0xac, 0x6b, 0x22 +.byte 0x32, 0x24, 0xd3, 0x78, 0x2a, 0xc0, 0xc0, 0xa1, 0x2f, 0xf1, 0x52, 0x05, 0xc9, 0x3f, 0xef, 0x76 +.byte 0x66, 0xe2, 0x45, 0xd8, 0x0d, 0x3d, 0xad, 0x95, 0xc8, 0xc7, 0x89, 0x26, 0xc8, 0x0f, 0xae, 0xa7 +.byte 0x03, 0x2e, 0xfb, 0xc1, 0x5f, 0xfa, 0x20, 0xe1, 0x70, 0xad, 0xb0, 0x65, 0x20, 0x37, 0x33, 0x60 +.byte 0xb0, 0xd5, 0xaf, 0xd7, 0x0c, 0x1c, 0xc2, 0x90, 0x70, 0xd7, 0x4a, 0x18, 0xbc, 0x7e, 0x01, 0xb0 +.byte 0xb0, 0xeb, 0x15, 0x1e, 0x44, 0x06, 0xcd, 0xa4, 0x4f, 0xe8, 0x0c, 0xd1, 0xc3, 0x20, 0x10, 0xe1 +.byte 0x54, 0x65, 0x9e, 0xb6, 0x51, 0xd0, 0x1a, 0x76, 0x6b, 0x42, 0x5a, 0x58, 0x76, 0x34, 0xea, 0xb7 +.byte 0x37, 0x19, 0xae, 0x2e, 0x75, 0xf9, 0x96, 0xe5, 0xc1, 0x59, 0xf7, 0x94, 0x57, 0x29, 0x25, 0x8d +.byte 0x3a, 0x4c, 0xab, 0x4d, 0x9a, 0x41, 0xd0, 0x5f, 0x26, 0x03, 0x02, 0x03, 0x01, 0x00, 0x01, 0x52 +.byte 0x00, 0x5b, 0x00, 0x30, 0x50, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1b +.byte 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x52, 0x34, 0x31, 0x13, 0x30, 0x11, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e +.byte 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61 +.byte 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x30, 0x59, 0x30, 0x13, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d +.byte 0x02, 0x01, 0x06, 0x08, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x03, 0x01, 0x07, 0x03, 0x42, 0x00, 0x04 +.byte 0xb8, 0xc6, 0x79, 0xd3, 0x8f, 0x6c, 0x25, 0x0e, 0x9f, 0x2e, 0x39, 0x19, 0x1c, 0x03, 0xa4, 0xae +.byte 0x9a, 0xe5, 0x39, 0x07, 0x09, 0x16, 0xca, 0x63, 0xb1, 0xb9, 0x86, 0xf8, 0x8a, 0x57, 0xc1, 0x57 +.byte 0xce, 0x42, 0xfa, 0x73, 0xa1, 0xf7, 0x65, 0x42, 0xff, 0x1e, 0xc1, 0x00, 0xb2, 0x6e, 0x73, 0x0e +.byte 0xff, 0xc7, 0x21, 0xe5, 0x18, 0xa4, 0xaa, 0xd9, 0x71, 0x3f, 0xa8, 0xd4, 0xb9, 0xce, 0x8c, 0x1d +.byte 0x52, 0x00, 0x78, 0x00, 0x30, 0x50, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13 +.byte 0x1b, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x45, 0x43, 0x43, 0x20 +.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x52, 0x35, 0x31, 0x13, 0x30, 0x11 +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67 +.byte 0x6e, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62 +.byte 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce +.byte 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x47, 0x45 +.byte 0x0e, 0x96, 0xfb, 0x7d, 0x5d, 0xbf, 0xe9, 0x39, 0xd1, 0x21, 0xf8, 0x9f, 0x0b, 0xb6, 0xd5, 0x7b +.byte 0x1e, 0x92, 0x3a, 0x48, 0x59, 0x1c, 0xf0, 0x62, 0x31, 0x2d, 0xc0, 0x7a, 0x28, 0xfe, 0x1a, 0xa7 +.byte 0x5c, 0xb3, 0xb6, 0xcc, 0x97, 0xe7, 0x45, 0xd4, 0x58, 0xfa, 0xd1, 0x77, 0x6d, 0x43, 0xa2, 0xc0 +.byte 0x87, 0x65, 0x34, 0x0a, 0x1f, 0x7a, 0xdd, 0xeb, 0x3c, 0x33, 0xa1, 0xc5, 0x9d, 0x4d, 0xa4, 0x6f +.byte 0x41, 0x95, 0x38, 0x7f, 0xc9, 0x1e, 0x84, 0xeb, 0xd1, 0x9e, 0x49, 0x92, 0x87, 0x94, 0x87, 0x0c +.byte 0x3a, 0x85, 0x4a, 0x66, 0x9f, 0x9d, 0x59, 0x93, 0x4d, 0x97, 0x61, 0x06, 0x86, 0x4a, 0x53, 0x00 +.byte 0x26, 0x02, 0x30, 0x51, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43 +.byte 0x48, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x53, 0x77, 0x69, 0x73 +.byte 0x73, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x41, 0x47, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x13, 0x22, 0x53, 0x77, 0x69, 0x73, 0x73, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52, 0x53, 0x41 +.byte 0x20, 0x54, 0x4c, 0x53, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x32, 0x30, 0x32 +.byte 0x32, 0x20, 0x2d, 0x20, 0x31, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48 +.byte 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02 +.byte 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xcb, 0x2a, 0x68, 0xe2, 0x0b, 0xc3, 0x57, 0xbc, 0x35, 0x63 +.byte 0xbc, 0x70, 0xa5, 0x3b, 0xf3, 0x8c, 0x3c, 0x4e, 0x57, 0x96, 0x6e, 0xc3, 0x4e, 0x36, 0xa4, 0xf6 +.byte 0x02, 0xca, 0x1e, 0xaa, 0xae, 0xb8, 0xde, 0xa8, 0xaf, 0x1d, 0x76, 0xda, 0xba, 0x35, 0xd0, 0x91 +.byte 0x70, 0x07, 0xdf, 0xb3, 0x06, 0xf2, 0x8a, 0xf2, 0x2e, 0x55, 0x51, 0x7b, 0xbb, 0x2c, 0x24, 0xcb +.byte 0x7f, 0x92, 0x26, 0x80, 0xa3, 0xb4, 0x94, 0xf6, 0x82, 0xa1, 0xa4, 0xe8, 0xfa, 0x75, 0x1d, 0x59 +.byte 0xf3, 0x07, 0x6a, 0x61, 0x64, 0xe2, 0xc6, 0x8c, 0x95, 0xaf, 0xa3, 0xbb, 0x8e, 0x6f, 0x56, 0xcf +.byte 0x71, 0xcc, 0x5e, 0x81, 0x61, 0x0d, 0x6d, 0xf2, 0xab, 0x02, 0x2e, 0xa4, 0x97, 0xe5, 0x71, 0xfc +.byte 0x8a, 0xb0, 0x91, 0x20, 0x5b, 0x9c, 0x74, 0x52, 0x6d, 0xae, 0x15, 0x27, 0x59, 0x78, 0xf2, 0x09 +.byte 0xca, 0x65, 0x0e, 0x7f, 0xcb, 0xf4, 0xeb, 0xe7, 0xdc, 0xa9, 0x4c, 0x77, 0xf6, 0x2b, 0x16, 0x04 +.byte 0x95, 0xae, 0x9c, 0x71, 0xa5, 0x3f, 0x2a, 0xda, 0x41, 0x42, 0xe7, 0x3c, 0x84, 0x10, 0xf4, 0xe1 +.byte 0x3d, 0x8c, 0x6b, 0xe2, 0x2b, 0x91, 0x47, 0x55, 0x4f, 0xb8, 0x56, 0xbe, 0x45, 0xde, 0x22, 0x51 +.byte 0x4d, 0x4e, 0x28, 0xd9, 0x5f, 0x19, 0x41, 0x06, 0x8f, 0x0e, 0x4d, 0x06, 0xe0, 0x70, 0x40, 0x23 +.byte 0x01, 0x6a, 0xe4, 0xcb, 0x13, 0x9b, 0x73, 0xac, 0x4d, 0x14, 0x48, 0x92, 0x2d, 0xfe, 0x6d, 0xa7 +.byte 0xf8, 0x87, 0x6b, 0x79, 0x75, 0xe1, 0xbe, 0x10, 0xb1, 0xaa, 0x88, 0x40, 0x59, 0x54, 0xd7, 0xcf +.byte 0xc4, 0xd0, 0x9b, 0x44, 0xb3, 0x38, 0x69, 0x64, 0x8c, 0x81, 0xd1, 0x23, 0x7e, 0xaa, 0x39, 0x3c +.byte 0x3b, 0x0f, 0x9f, 0x4a, 0x7b, 0x82, 0xca, 0x6b, 0x6f, 0xca, 0x22, 0x3e, 0x31, 0xd0, 0xb0, 0xd0 +.byte 0x2a, 0x1c, 0x92, 0x8a, 0x8f, 0xd8, 0x19, 0x9c, 0x47, 0xe4, 0x3e, 0x0c, 0xb9, 0xc2, 0xcd, 0xbe +.byte 0x41, 0x0c, 0xf8, 0xa4, 0x47, 0x05, 0xdb, 0xc1, 0x17, 0x30, 0x38, 0x3a, 0x69, 0xdc, 0xcd, 0xc3 +.byte 0x69, 0x23, 0xfd, 0x9a, 0x0f, 0x02, 0xce, 0x10, 0x6a, 0xce, 0xca, 0xf8, 0xb9, 0x29, 0xa3, 0x36 +.byte 0x89, 0x86, 0xae, 0x0b, 0xc0, 0x4f, 0x63, 0xb9, 0x06, 0x59, 0x49, 0x5e, 0x0e, 0xc1, 0x69, 0xb3 +.byte 0x0a, 0xf3, 0x77, 0x7e, 0x2e, 0x9d, 0x8c, 0xb3, 0x27, 0x98, 0xd2, 0x99, 0x8d, 0x25, 0xa7, 0x1f +.byte 0x86, 0xb3, 0xa6, 0x54, 0x70, 0x38, 0xfc, 0x7d, 0x5d, 0xe8, 0x4f, 0x83, 0x0c, 0xd1, 0x93, 0xe5 +.byte 0x12, 0xe4, 0x54, 0xda, 0x3e, 0xf2, 0xad, 0x3a, 0xde, 0x3e, 0x3c, 0x45, 0xf0, 0x28, 0x0f, 0x06 +.byte 0xb9, 0xe1, 0xdb, 0x97, 0x7b, 0x99, 0x45, 0x9e, 0xdd, 0xfe, 0x95, 0x59, 0x04, 0x2f, 0x75, 0x3f +.byte 0xd3, 0xae, 0x89, 0x99, 0x86, 0xac, 0x14, 0xb4, 0xa8, 0x84, 0xfa, 0xc8, 0x5d, 0x3b, 0x1b, 0x58 +.byte 0x93, 0xc1, 0x17, 0x94, 0x55, 0xc8, 0x0b, 0xe3, 0x82, 0x79, 0x84, 0x9f, 0xf3, 0x00, 0x84, 0x34 +.byte 0xee, 0xdc, 0x31, 0xd5, 0x8f, 0xf2, 0xfa, 0x4f, 0x96, 0x4c, 0x06, 0xaa, 0x78, 0xfb, 0xde, 0x64 +.byte 0xa2, 0x23, 0xcd, 0x1f, 0x3e, 0xc5, 0x8c, 0xbc, 0x37, 0x54, 0x0e, 0xbb, 0x5a, 0x72, 0x55, 0xef +.byte 0xc8, 0x5b, 0xb5, 0x72, 0xf8, 0x78, 0xdf, 0x37, 0x20, 0x4c, 0x57, 0x91, 0x73, 0x92, 0x73, 0xac +.byte 0x18, 0x77, 0x43, 0x82, 0x20, 0x69, 0xec, 0xe9, 0xac, 0x29, 0x46, 0xe5, 0x0b, 0x4e, 0xf8, 0x37 +.byte 0x73, 0x89, 0x96, 0x8a, 0x1c, 0x6d, 0xbd, 0xef, 0xbe, 0xd8, 0xb6, 0xf4, 0xca, 0xc0, 0xfd, 0x47 +.byte 0xf0, 0xae, 0x0b, 0x58, 0x20, 0xc5, 0xc8, 0x1d, 0x36, 0xae, 0x97, 0x8d, 0x50, 0x83, 0x26, 0x24 +.byte 0x29, 0xf7, 0x9d, 0x3b, 0x0f, 0x05, 0x02, 0x03, 0x01, 0x00, 0x01, 0x53, 0x00, 0x26, 0x02, 0x30 +.byte 0x51, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x45, 0x53, 0x31, 0x42 +.byte 0x30, 0x40, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x39, 0x41, 0x75, 0x74, 0x6f, 0x72, 0x69, 0x64 +.byte 0x61, 0x64, 0x20, 0x64, 0x65, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x63 +.byte 0x69, 0x6f, 0x6e, 0x20, 0x46, 0x69, 0x72, 0x6d, 0x61, 0x70, 0x72, 0x6f, 0x66, 0x65, 0x73, 0x69 +.byte 0x6f, 0x6e, 0x61, 0x6c, 0x20, 0x43, 0x49, 0x46, 0x20, 0x41, 0x36, 0x32, 0x36, 0x33, 0x34, 0x30 +.byte 0x36, 0x38, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d +.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82 +.byte 0x02, 0x01, 0x00, 0xca, 0x96, 0x6b, 0x8e, 0xea, 0xf8, 0xfb, 0xf1, 0xa2, 0x35, 0xe0, 0x7f, 0x4c +.byte 0xda, 0xe0, 0xc3, 0x52, 0xd7, 0x7d, 0xb6, 0x10, 0xc8, 0x02, 0x5e, 0xb3, 0x43, 0x2a, 0xc4, 0x4f +.byte 0x6a, 0xb2, 0xca, 0x1c, 0x5d, 0x28, 0x9a, 0x78, 0x11, 0x1a, 0x69, 0x59, 0x57, 0xaf, 0xb5, 0x20 +.byte 0x42, 0xe4, 0x8b, 0x0f, 0xe6, 0xdf, 0x5b, 0xa6, 0x03, 0x92, 0x2f, 0xf5, 0x11, 0xe4, 0x62, 0xd7 +.byte 0x32, 0x71, 0x38, 0xd9, 0x04, 0x0c, 0x71, 0xab, 0x3d, 0x51, 0x7e, 0x0f, 0x07, 0xdf, 0x63, 0x05 +.byte 0x5c, 0xe9, 0xbf, 0x94, 0x6f, 0xc1, 0x29, 0x82, 0xc0, 0xb4, 0xda, 0x51, 0xb0, 0xc1, 0x3c, 0xbb +.byte 0xad, 0x37, 0x4a, 0x5c, 0xca, 0xf1, 0x4b, 0x36, 0x0e, 0x24, 0xab, 0xbf, 0xc3, 0x84, 0x77, 0xfd +.byte 0xa8, 0x50, 0xf4, 0xb1, 0xe7, 0xc6, 0x2f, 0xd2, 0x2d, 0x59, 0x8d, 0x7a, 0x0a, 0x4e, 0x96, 0x69 +.byte 0x52, 0x02, 0xaa, 0x36, 0x98, 0xec, 0xfc, 0xfa, 0x14, 0x83, 0x0c, 0x37, 0x1f, 0xc9, 0x92, 0x37 +.byte 0x7f, 0xd7, 0x81, 0x2d, 0xe5, 0xc4, 0xb9, 0xe0, 0x3e, 0x34, 0xfe, 0x67, 0xf4, 0x3e, 0x66, 0xd1 +.byte 0xd3, 0xf4, 0x40, 0xcf, 0x5e, 0x62, 0x34, 0x0f, 0x70, 0x06, 0x3e, 0x20, 0x18, 0x5a, 0xce, 0xf7 +.byte 0x72, 0x1b, 0x25, 0x6c, 0x93, 0x74, 0x14, 0x93, 0xa3, 0x73, 0xb1, 0x0e, 0xaa, 0x87, 0x10, 0x23 +.byte 0x59, 0x5f, 0x20, 0x05, 0x19, 0x47, 0xed, 0x68, 0x8e, 0x92, 0x12, 0xca, 0x5d, 0xfc, 0xd6, 0x2b +.byte 0xb2, 0x92, 0x3c, 0x20, 0xcf, 0xe1, 0x5f, 0xaf, 0x20, 0xbe, 0xa0, 0x76, 0x7f, 0x76, 0xe5, 0xec +.byte 0x1a, 0x86, 0x61, 0x33, 0x3e, 0xe7, 0x7b, 0xb4, 0x3f, 0xa0, 0x0f, 0x8e, 0xa2, 0xb9, 0x6a, 0x6f +.byte 0xb9, 0x87, 0x26, 0x6f, 0x41, 0x6c, 0x88, 0xa6, 0x50, 0xfd, 0x6a, 0x63, 0x0b, 0xf5, 0x93, 0x16 +.byte 0x1b, 0x19, 0x8f, 0xb2, 0xed, 0x9b, 0x9b, 0xc9, 0x90, 0xf5, 0x01, 0x0c, 0xdf, 0x19, 0x3d, 0x0f +.byte 0x3e, 0x38, 0x23, 0xc9, 0x2f, 0x8f, 0x0c, 0xd1, 0x02, 0xfe, 0x1b, 0x55, 0xd6, 0x4e, 0xd0, 0x8d +.byte 0x3c, 0xaf, 0x4f, 0xa4, 0xf3, 0xfe, 0xaf, 0x2a, 0xd3, 0x05, 0x9d, 0x79, 0x08, 0xa1, 0xcb, 0x57 +.byte 0x31, 0xb4, 0x9c, 0xc8, 0x90, 0xb2, 0x67, 0xf4, 0x18, 0x16, 0x93, 0x3a, 0xfc, 0x47, 0xd8, 0xd1 +.byte 0x78, 0x96, 0x31, 0x1f, 0xba, 0x2b, 0x0c, 0x5f, 0x5d, 0x99, 0xad, 0x63, 0x89, 0x5a, 0x24, 0x20 +.byte 0x76, 0xd8, 0xdf, 0xfd, 0xab, 0x4e, 0xa6, 0x22, 0xaa, 0x9d, 0x5e, 0xe6, 0x27, 0x8a, 0x7d, 0x68 +.byte 0x29, 0xa3, 0xe7, 0x8a, 0xb8, 0xda, 0x11, 0xbb, 0x17, 0x2d, 0x99, 0x9d, 0x13, 0x24, 0x46, 0xf7 +.byte 0xc5, 0xe2, 0xd8, 0x9f, 0x8e, 0x7f, 0xc7, 0x8f, 0x74, 0x6d, 0x5a, 0xb2, 0xe8, 0x72, 0xf5, 0xac +.byte 0xee, 0x24, 0x10, 0xad, 0x2f, 0x14, 0xda, 0xff, 0x2d, 0x9a, 0x46, 0x71, 0x47, 0xbe, 0x42, 0xdf +.byte 0xbb, 0x01, 0xdb, 0xf4, 0x7f, 0xd3, 0x28, 0x8f, 0x31, 0x59, 0x5b, 0xd3, 0xc9, 0x02, 0xa6, 0xb4 +.byte 0x52, 0xca, 0x6e, 0x97, 0xfb, 0x43, 0xc5, 0x08, 0x26, 0x6f, 0x8a, 0xf4, 0xbb, 0xfd, 0x9f, 0x28 +.byte 0xaa, 0x0d, 0xd5, 0x45, 0xf3, 0x13, 0x3a, 0x1d, 0xd8, 0xc0, 0x78, 0x8f, 0x41, 0x67, 0x3c, 0x1e +.byte 0x94, 0x64, 0xae, 0x7b, 0x0b, 0xc5, 0xe8, 0xd9, 0x01, 0x88, 0x39, 0x1a, 0x97, 0x86, 0x64, 0x41 +.byte 0xd5, 0x3b, 0x87, 0x0c, 0x6e, 0xfa, 0x0f, 0xc6, 0xbd, 0x48, 0x14, 0xbf, 0x39, 0x4d, 0xd4, 0x9e +.byte 0x41, 0xb6, 0x8f, 0x96, 0x1d, 0x63, 0x96, 0x93, 0xd9, 0x95, 0x06, 0x78, 0x31, 0x68, 0x9e, 0x37 +.byte 0x06, 0x3b, 0x80, 0x89, 0x45, 0x61, 0x39, 0x23, 0xc7, 0x1b, 0x44, 0xa3, 0x15, 0xe5, 0x1c, 0xf8 +.byte 0x92, 0x30, 0xbb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x53, 0x00, 0x26, 0x01, 0x30, 0x51, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x4a, 0x50, 0x31, 0x23, 0x30, 0x21, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1a, 0x43, 0x79, 0x62, 0x65, 0x72, 0x74, 0x72, 0x75, 0x73, 0x74 +.byte 0x20, 0x4a, 0x61, 0x70, 0x61, 0x6e, 0x20, 0x43, 0x6f, 0x2e, 0x2c, 0x20, 0x4c, 0x74, 0x64, 0x2e +.byte 0x31, 0x1d, 0x30, 0x1b, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x14, 0x53, 0x65, 0x63, 0x75, 0x72 +.byte 0x65, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x31, 0x32, 0x30 +.byte 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01 +.byte 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00 +.byte 0xba, 0x39, 0xc1, 0x37, 0x7a, 0x68, 0x45, 0x2b, 0x14, 0xb4, 0xeb, 0xe4, 0x13, 0xeb, 0x57, 0x75 +.byte 0x23, 0x4d, 0x8f, 0x24, 0x2d, 0x16, 0xe8, 0xae, 0x8e, 0xc9, 0x7d, 0xa4, 0x57, 0x3b, 0x2a, 0x76 +.byte 0x25, 0x33, 0x83, 0x6c, 0xea, 0x32, 0x8a, 0x94, 0x9b, 0x4e, 0x3c, 0x96, 0xe4, 0xfd, 0x51, 0xbf +.byte 0x99, 0xc9, 0x93, 0x7e, 0xbf, 0xf9, 0xad, 0xa7, 0xb2, 0x48, 0x2b, 0x07, 0x1c, 0x27, 0xf5, 0x4c +.byte 0xbc, 0x70, 0x12, 0x77, 0xa4, 0x85, 0x54, 0xb5, 0xfd, 0x90, 0x7a, 0xe4, 0xa3, 0xe4, 0x51, 0x58 +.byte 0x03, 0xcd, 0x10, 0x79, 0x79, 0xee, 0x6b, 0x93, 0x1f, 0x64, 0x8e, 0x6b, 0x64, 0xab, 0xa3, 0x13 +.byte 0xe3, 0x71, 0xfe, 0x7d, 0xab, 0x9c, 0xdd, 0x27, 0x53, 0x37, 0xb3, 0xaa, 0x18, 0xc2, 0x59, 0x26 +.byte 0xec, 0x5b, 0x1f, 0xd2, 0xe6, 0x65, 0x7c, 0xef, 0x93, 0xbd, 0xd8, 0x58, 0x5c, 0x0b, 0xc0, 0xe3 +.byte 0x65, 0x6f, 0x3c, 0xc7, 0xca, 0x59, 0xe3, 0xfe, 0x6e, 0x5f, 0xac, 0x83, 0xbe, 0xfd, 0x5d, 0x25 +.byte 0x4e, 0x2a, 0x29, 0x3b, 0xd6, 0x0b, 0xab, 0x17, 0x32, 0x78, 0xa4, 0xe1, 0x3e, 0x94, 0x46, 0xbe +.byte 0x62, 0x6e, 0x9b, 0xde, 0x46, 0xa8, 0xb1, 0x16, 0xe7, 0x85, 0x6e, 0xf4, 0x08, 0x40, 0x45, 0x11 +.byte 0xa0, 0x9e, 0x54, 0x44, 0x84, 0xf7, 0xd8, 0x36, 0xce, 0xf5, 0x50, 0x47, 0xdc, 0x2c, 0x30, 0x9b +.byte 0xee, 0xc0, 0xf5, 0x96, 0xd2, 0xfe, 0x09, 0x86, 0xc7, 0x06, 0x59, 0xae, 0x4f, 0xae, 0x8e, 0x11 +.byte 0x98, 0x7b, 0xf3, 0x0b, 0x52, 0xaa, 0x62, 0x26, 0xaa, 0x21, 0xdf, 0x8e, 0x25, 0x33, 0x79, 0x97 +.byte 0x16, 0x49, 0x8d, 0xf5, 0x3e, 0xd5, 0x47, 0x9f, 0x37, 0x31, 0x49, 0x33, 0x72, 0x05, 0x4d, 0x0c +.byte 0xb6, 0x55, 0x8c, 0xf1, 0x57, 0x8f, 0x8a, 0x87, 0xd1, 0xad, 0xc5, 0x11, 0x12, 0x39, 0xa0, 0xad +.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x53, 0x00, 0x26, 0x02, 0x30, 0x51, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x4a, 0x50, 0x31, 0x23, 0x30, 0x21, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x1a, 0x43, 0x79, 0x62, 0x65, 0x72, 0x74, 0x72, 0x75, 0x73, 0x74, 0x20, 0x4a, 0x61 +.byte 0x70, 0x61, 0x6e, 0x20, 0x43, 0x6f, 0x2e, 0x2c, 0x20, 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x1d, 0x30 +.byte 0x1b, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x14, 0x53, 0x65, 0x63, 0x75, 0x72, 0x65, 0x53, 0x69 +.byte 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x31, 0x34, 0x30, 0x82, 0x02, 0x22 +.byte 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03 +.byte 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xc5, 0xd2, 0x7a +.byte 0xa1, 0xd6, 0x8a, 0xbf, 0x16, 0x31, 0xd0, 0x98, 0xd1, 0x3a, 0x94, 0xfc, 0x5a, 0xb8, 0x6e, 0x22 +.byte 0xc1, 0x62, 0xf7, 0xa7, 0x0a, 0x27, 0xef, 0x50, 0xf6, 0x2e, 0xb1, 0x9e, 0x68, 0x12, 0xf0, 0x6c +.byte 0x24, 0x63, 0x39, 0xf1, 0xf0, 0xdf, 0x10, 0xc6, 0xde, 0xb7, 0x52, 0x20, 0xd5, 0x52, 0x5b, 0x42 +.byte 0x99, 0x9e, 0xf3, 0xa0, 0xbe, 0x52, 0x1f, 0x5f, 0xcc, 0x67, 0x6d, 0xa7, 0x2e, 0x50, 0xa2, 0xc1 +.byte 0x97, 0x8d, 0xb6, 0xf8, 0x95, 0xf5, 0xb0, 0xba, 0xdc, 0x9d, 0xe0, 0xbe, 0xcb, 0xdf, 0xf7, 0x38 +.byte 0xf2, 0x47, 0xf5, 0xa6, 0x9a, 0x92, 0x95, 0x2a, 0x62, 0x59, 0x50, 0x0b, 0xa2, 0xb1, 0x35, 0xe7 +.byte 0x65, 0xb2, 0x61, 0xb2, 0xea, 0x92, 0x71, 0x69, 0xe4, 0x29, 0xf0, 0x4f, 0x81, 0x81, 0x04, 0x3c +.byte 0xb2, 0xa5, 0x5b, 0xd4, 0xc5, 0xa8, 0x59, 0x67, 0x7b, 0x55, 0x1c, 0x49, 0xab, 0x7a, 0x9d, 0xc2 +.byte 0xe7, 0x73, 0x4d, 0xef, 0xcd, 0x09, 0xc2, 0xc4, 0x57, 0x12, 0xdb, 0x01, 0x0e, 0x23, 0x79, 0x09 +.byte 0x07, 0x3b, 0xa2, 0xe8, 0xfc, 0x8a, 0xcf, 0x8f, 0xc0, 0x46, 0x24, 0x9c, 0x38, 0x27, 0xe0, 0x83 +.byte 0x9d, 0x1b, 0xa0, 0xbf, 0x78, 0x15, 0x10, 0xeb, 0x86, 0x4e, 0x0a, 0x5a, 0xfd, 0xdf, 0xda, 0x2c +.byte 0x82, 0x7e, 0xee, 0xca, 0xf6, 0x29, 0xe1, 0xfa, 0x71, 0xa1, 0xf7, 0x88, 0x68, 0x9c, 0x9c, 0xf0 +.byte 0x8d, 0xbe, 0x0f, 0x49, 0x91, 0xd8, 0xea, 0x3a, 0xf9, 0xfd, 0xd0, 0x68, 0x71, 0xdb, 0xe9, 0xb5 +.byte 0x2b, 0x4e, 0x82, 0x92, 0x6f, 0x66, 0x1f, 0xe0, 0xf0, 0xdc, 0x4c, 0xec, 0xca, 0xd1, 0xea, 0xba +.byte 0x74, 0x06, 0xf9, 0xb3, 0x84, 0x90, 0x94, 0xd1, 0x5f, 0x8e, 0x73, 0x19, 0x10, 0x5d, 0x02, 0xe5 +.byte 0x70, 0xa5, 0xc0, 0x10, 0xd0, 0x10, 0x7c, 0x6f, 0xc5, 0x58, 0x49, 0xb4, 0xb0, 0x6e, 0x9a, 0xda +.byte 0x7d, 0x95, 0xf5, 0xcc, 0xda, 0x02, 0xaf, 0xb8, 0x2c, 0x7d, 0x79, 0x8f, 0xbe, 0x43, 0xf1, 0xf9 +.byte 0x28, 0x28, 0x8d, 0x09, 0x43, 0xf8, 0x08, 0xdd, 0x6b, 0xc8, 0x8b, 0x2c, 0x24, 0xb1, 0x8d, 0x52 +.byte 0x07, 0xbd, 0x78, 0x9b, 0xcb, 0xca, 0x68, 0xb2, 0xa4, 0xdd, 0x0c, 0x4c, 0x79, 0x60, 0xc6, 0x99 +.byte 0xd1, 0x93, 0xf1, 0x30, 0x1a, 0x07, 0xd3, 0xae, 0x22, 0xc2, 0xea, 0xce, 0xf1, 0x84, 0x09, 0xcc +.byte 0xe0, 0x14, 0x6e, 0x7f, 0x3f, 0x7e, 0xd2, 0x82, 0x85, 0xac, 0xdc, 0xa9, 0x16, 0x4e, 0x85, 0xa0 +.byte 0x60, 0xcb, 0xf6, 0x9c, 0xd7, 0xc8, 0xb3, 0x8e, 0xed, 0xc6, 0x9b, 0x98, 0x75, 0x0d, 0x55, 0xe8 +.byte 0x5f, 0xe5, 0x95, 0x8b, 0x02, 0xa4, 0xae, 0x43, 0x29, 0x28, 0x11, 0xa4, 0xe6, 0x12, 0x30, 0x01 +.byte 0x4b, 0x75, 0x6b, 0x1e, 0x66, 0x9d, 0x79, 0x2f, 0xa5, 0x76, 0x2f, 0x1d, 0x40, 0xb4, 0x6d, 0xc9 +.byte 0x7d, 0x79, 0x08, 0xec, 0xd1, 0x6a, 0xb6, 0x5d, 0x2a, 0xb2, 0xa5, 0x66, 0xbd, 0x6b, 0x85, 0xf4 +.byte 0x74, 0x56, 0xc3, 0xf5, 0xe7, 0x75, 0x52, 0x28, 0x2c, 0xa5, 0xff, 0x66, 0x47, 0xa5, 0xd4, 0xfe +.byte 0xfe, 0x9e, 0x54, 0xbf, 0x65, 0x7e, 0x01, 0xd6, 0x30, 0x8f, 0xa5, 0x36, 0x9c, 0xa2, 0x50, 0x1c +.byte 0xee, 0x38, 0x80, 0x01, 0x48, 0xc6, 0xc7, 0x74, 0xf4, 0xc6, 0xac, 0xc3, 0x40, 0x49, 0x16, 0x61 +.byte 0x74, 0x2c, 0xaf, 0x8c, 0x6f, 0x35, 0xed, 0x7b, 0x18, 0x00, 0x5b, 0x36, 0x3c, 0x9c, 0x50, 0x0d +.byte 0xca, 0x92, 0x33, 0x10, 0xf1, 0x26, 0x49, 0x6d, 0xdf, 0x75, 0x24, 0x37, 0x82, 0x22, 0xd7, 0xe8 +.byte 0x96, 0xfd, 0x15, 0x4b, 0x02, 0x96, 0x3e, 0x07, 0x72, 0x95, 0x7e, 0xab, 0x3d, 0x4c, 0x2e, 0xd7 +.byte 0xca, 0xf0, 0xdf, 0xe0, 0x58, 0x3f, 0x2d, 0x2f, 0x04, 0x9a, 0x38, 0xa3, 0x01, 0x02, 0x03, 0x01 +.byte 0x00, 0x01, 0x53, 0x00, 0x78, 0x00, 0x30, 0x51, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x4a, 0x50, 0x31, 0x23, 0x30, 0x21, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1a +.byte 0x43, 0x79, 0x62, 0x65, 0x72, 0x74, 0x72, 0x75, 0x73, 0x74, 0x20, 0x4a, 0x61, 0x70, 0x61, 0x6e +.byte 0x20, 0x43, 0x6f, 0x2e, 0x2c, 0x20, 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x1d, 0x30, 0x1b, 0x06, 0x03 +.byte 0x55, 0x04, 0x03, 0x13, 0x14, 0x53, 0x65, 0x63, 0x75, 0x72, 0x65, 0x53, 0x69, 0x67, 0x6e, 0x20 +.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x31, 0x35, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a +.byte 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00 +.byte 0x04, 0x0b, 0x50, 0x74, 0x8d, 0x64, 0x32, 0x99, 0x99, 0xb3, 0xd2, 0x60, 0x08, 0xb8, 0x22, 0x8e +.byte 0x46, 0x74, 0x2c, 0x78, 0xc0, 0x2b, 0x44, 0x2d, 0x6d, 0x5f, 0x1d, 0xc9, 0xae, 0x4b, 0x52, 0x20 +.byte 0x83, 0x3d, 0xb8, 0x14, 0x6d, 0x53, 0x87, 0x60, 0x9e, 0x5f, 0x6c, 0x85, 0xdb, 0x06, 0x14, 0x95 +.byte 0xe0, 0xc7, 0x28, 0xff, 0x9d, 0x5f, 0xe4, 0xaa, 0xf1, 0xb3, 0x8b, 0x6d, 0xed, 0x4f, 0x2f, 0x4b +.byte 0xc9, 0x4a, 0x94, 0x91, 0x64, 0x75, 0xfe, 0x01, 0xec, 0xc1, 0xd8, 0xeb, 0x7a, 0x94, 0x78, 0x56 +.byte 0x18, 0x43, 0x5f, 0x6b, 0x81, 0xcb, 0xf6, 0xbc, 0xda, 0xb4, 0x0c, 0xb6, 0x29, 0x93, 0x08, 0x69 +.byte 0x8f, 0x53, 0x00, 0x26, 0x01, 0x30, 0x51, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 +.byte 0x13, 0x02, 0x50, 0x4c, 0x31, 0x28, 0x30, 0x26, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1f, 0x4b +.byte 0x72, 0x61, 0x6a, 0x6f, 0x77, 0x61, 0x20, 0x49, 0x7a, 0x62, 0x61, 0x20, 0x52, 0x6f, 0x7a, 0x6c +.byte 0x69, 0x63, 0x7a, 0x65, 0x6e, 0x69, 0x6f, 0x77, 0x61, 0x20, 0x53, 0x2e, 0x41, 0x2e, 0x31, 0x18 +.byte 0x30, 0x16, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x0f, 0x53, 0x5a, 0x41, 0x46, 0x49, 0x52, 0x20 +.byte 0x52, 0x4f, 0x4f, 0x54, 0x20, 0x43, 0x41, 0x32, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09 +.byte 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00 +.byte 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xb7, 0xbc, 0x3e, 0x50, 0xa8, 0x4b, 0xcd +.byte 0x40, 0xb5, 0xce, 0x61, 0xe7, 0x96, 0xca, 0xb4, 0xa1, 0xda, 0x0c, 0x22, 0xb0, 0xfa, 0xb5, 0x7b +.byte 0x76, 0x00, 0x77, 0x8c, 0x0b, 0xcf, 0x7d, 0xa8, 0x86, 0xcc, 0x26, 0x51, 0xe4, 0x20, 0x3d, 0x85 +.byte 0x0c, 0xd6, 0x58, 0xe3, 0xe7, 0xf4, 0x2a, 0x18, 0x9d, 0xda, 0xd1, 0xae, 0x26, 0xee, 0xeb, 0x53 +.byte 0xdc, 0xf4, 0x90, 0xd6, 0x13, 0x4a, 0x0c, 0x90, 0x3c, 0xc3, 0xf4, 0xda, 0xd2, 0x8e, 0x0d, 0x92 +.byte 0x3a, 0xdc, 0xb1, 0xb1, 0xff, 0x38, 0xde, 0xc3, 0xba, 0x2d, 0x5f, 0x80, 0xb9, 0x02, 0xbd, 0x4a +.byte 0x9d, 0x1b, 0x0f, 0xb4, 0xc3, 0xc2, 0xc1, 0x67, 0x03, 0xdd, 0xdc, 0x1b, 0x9c, 0x3d, 0xb3, 0xb0 +.byte 0xde, 0x00, 0x1e, 0xa8, 0x34, 0x47, 0xbb, 0x9a, 0xeb, 0xfe, 0x0b, 0x14, 0xbd, 0x36, 0x84, 0xda +.byte 0x0d, 0x20, 0xbf, 0xfa, 0x5b, 0xcb, 0xa9, 0x16, 0x20, 0xad, 0x39, 0x60, 0xee, 0x2f, 0x75, 0xb6 +.byte 0xe7, 0x97, 0x9c, 0xf9, 0x3e, 0xfd, 0x7e, 0x4d, 0x6f, 0x4d, 0x2f, 0xef, 0x88, 0x0d, 0x6a, 0xfa +.byte 0xdd, 0xf1, 0x3d, 0x6e, 0x20, 0xa5, 0xa0, 0x12, 0xb4, 0x4d, 0x70, 0xb9, 0xce, 0xd7, 0x72, 0x3b +.byte 0x89, 0x93, 0xa7, 0x80, 0x84, 0x1c, 0x27, 0x49, 0x72, 0x49, 0xb5, 0xff, 0x3b, 0x95, 0x9e, 0xc1 +.byte 0xcc, 0xc8, 0x01, 0xec, 0xe8, 0x0e, 0x8a, 0x0a, 0x96, 0xe7, 0xb3, 0xa6, 0x87, 0xe5, 0xd6, 0xf9 +.byte 0x05, 0x2b, 0x0d, 0x97, 0x40, 0x70, 0x3c, 0xba, 0xac, 0x75, 0x5a, 0x9c, 0xd5, 0x4d, 0x9d, 0x02 +.byte 0x0a, 0xd2, 0x4b, 0x9b, 0x66, 0x4b, 0x46, 0x07, 0x17, 0x65, 0xad, 0x9f, 0x6c, 0x88, 0x00, 0xdc +.byte 0x22, 0x89, 0xe0, 0xe1, 0x64, 0xd4, 0x67, 0xbc, 0x31, 0x79, 0x61, 0x3c, 0xbb, 0xca, 0x41, 0xcd +.byte 0x5c, 0x6a, 0x00, 0xc8, 0x3c, 0x38, 0x8e, 0x58, 0xaf, 0x02, 0x03, 0x01, 0x00, 0x01, 0x53, 0x00 +.byte 0x26, 0x02, 0x30, 0x51, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x54 +.byte 0x57, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x09, 0x54, 0x41, 0x49, 0x57 +.byte 0x41, 0x4e, 0x2d, 0x43, 0x41, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x07 +.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x13, 0x13, 0x54, 0x57, 0x43, 0x41, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f +.byte 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48 +.byte 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02 +.byte 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xb0, 0x05, 0xdb, 0xc8, 0xeb, 0x8c, 0xc4, 0x6e, 0x8a, 0x21 +.byte 0xef, 0x8e, 0x4d, 0x9c, 0x71, 0x0a, 0x1f, 0x52, 0x70, 0xed, 0x6d, 0x82, 0x9c, 0x97, 0xc5, 0xd7 +.byte 0x4c, 0x4e, 0x45, 0x49, 0xcb, 0x40, 0x42, 0xb5, 0x12, 0x34, 0x6c, 0x19, 0xc2, 0x74, 0xa4, 0x31 +.byte 0x5f, 0x85, 0x02, 0x97, 0xec, 0x43, 0x33, 0x0a, 0x53, 0xd2, 0x9c, 0x8c, 0x8e, 0xb7, 0xb8, 0x79 +.byte 0xdb, 0x2b, 0xd5, 0x6a, 0xf2, 0x8e, 0x66, 0xc4, 0xee, 0x2b, 0x01, 0x07, 0x92, 0xd4, 0xb3, 0xd0 +.byte 0x02, 0xdf, 0x50, 0xf6, 0x55, 0xaf, 0x66, 0x0e, 0xcb, 0xe0, 0x47, 0x60, 0x2f, 0x2b, 0x32, 0x39 +.byte 0x35, 0x52, 0x3a, 0x28, 0x83, 0xf8, 0x7b, 0x16, 0xc6, 0x18, 0xb8, 0x62, 0xd6, 0x47, 0x25, 0x91 +.byte 0xce, 0xf0, 0x19, 0x12, 0x4d, 0xad, 0x63, 0xf5, 0xd3, 0x3f, 0x75, 0x5f, 0x29, 0xf0, 0xa1, 0x30 +.byte 0x1c, 0x2a, 0xa0, 0x98, 0xa6, 0x15, 0xbd, 0xee, 0xfd, 0x19, 0x36, 0xf0, 0xe2, 0x91, 0x43, 0x8f +.byte 0xfa, 0xca, 0xd6, 0x10, 0x27, 0x49, 0x4c, 0xef, 0xdd, 0xc1, 0xf1, 0x85, 0x70, 0x9b, 0xca, 0xea +.byte 0xa8, 0x5a, 0x43, 0xfc, 0x6d, 0x86, 0x6f, 0x73, 0xe9, 0x37, 0x45, 0xa9, 0xf0, 0x36, 0xc7, 0xcc +.byte 0x88, 0x75, 0x1e, 0xbb, 0x6c, 0x06, 0xff, 0x9b, 0x6b, 0x3e, 0x17, 0xec, 0x61, 0xaa, 0x71, 0x7c +.byte 0xc6, 0x1d, 0xa2, 0xf7, 0x49, 0xe9, 0x15, 0xb5, 0x3c, 0xd6, 0xa1, 0x61, 0xf5, 0x11, 0xf7, 0x05 +.byte 0x6f, 0x1d, 0xfd, 0x11, 0xbe, 0xd0, 0x30, 0x07, 0xc2, 0x29, 0xb0, 0x09, 0x4e, 0x26, 0xdc, 0xe3 +.byte 0xa2, 0xa8, 0x91, 0x6a, 0x1f, 0xc2, 0x91, 0x45, 0x88, 0x5c, 0xe5, 0x98, 0xb8, 0x71, 0xa5, 0x15 +.byte 0x19, 0xc9, 0x7c, 0x75, 0x11, 0xcc, 0x70, 0x74, 0x4f, 0x2d, 0x9b, 0x1d, 0x91, 0x44, 0xfd, 0x56 +.byte 0x28, 0xa0, 0xfe, 0xbb, 0x86, 0x6a, 0xc8, 0xfa, 0x5c, 0x0b, 0x58, 0xdc, 0xc6, 0x4b, 0x76, 0xc8 +.byte 0xab, 0x22, 0xd9, 0x73, 0x0f, 0xa5, 0xf4, 0x5a, 0x02, 0x89, 0x3f, 0x4f, 0x9e, 0x22, 0x82, 0xee +.byte 0xa2, 0x74, 0x53, 0x2a, 0x3d, 0x53, 0x27, 0x69, 0x1d, 0x6c, 0x8e, 0x32, 0x2c, 0x64, 0x00, 0x26 +.byte 0x63, 0x61, 0x36, 0x4e, 0xa3, 0x46, 0xb7, 0x3f, 0x7d, 0xb3, 0x2d, 0xac, 0x6d, 0x90, 0xa2, 0x95 +.byte 0xa2, 0xce, 0xcf, 0xda, 0x82, 0xe7, 0x07, 0x34, 0x19, 0x96, 0xe9, 0xb8, 0x21, 0xaa, 0x29, 0x7e +.byte 0xa6, 0x38, 0xbe, 0x8e, 0x29, 0x4a, 0x21, 0x66, 0x79, 0x1f, 0xb3, 0xc3, 0xb5, 0x09, 0x67, 0xde +.byte 0xd6, 0xd4, 0x07, 0x46, 0xf3, 0x2a, 0xda, 0xe6, 0x22, 0x37, 0x60, 0xcb, 0x81, 0xb6, 0x0f, 0xa0 +.byte 0x0f, 0xe9, 0xc8, 0x95, 0x7f, 0xbf, 0x55, 0x91, 0x05, 0x7a, 0xcf, 0x3d, 0x15, 0xc0, 0x6f, 0xde +.byte 0x09, 0x94, 0x01, 0x83, 0xd7, 0x34, 0x1b, 0xcc, 0x40, 0xa5, 0xf0, 0xb8, 0x9b, 0x67, 0xd5, 0x98 +.byte 0x91, 0x3b, 0xa7, 0x84, 0x78, 0x95, 0x26, 0xa4, 0x5a, 0x08, 0xf8, 0x2b, 0x74, 0xb4, 0x00, 0x04 +.byte 0x3c, 0xdf, 0xb8, 0x14, 0x8e, 0xe8, 0xdf, 0xa9, 0x8d, 0x6c, 0x67, 0x92, 0x33, 0x1d, 0xc0, 0xb7 +.byte 0xd2, 0xec, 0x92, 0xc8, 0xbe, 0x09, 0xbf, 0x2c, 0x29, 0x05, 0x6f, 0x02, 0x6b, 0x9e, 0xef, 0xbc +.byte 0xbf, 0x2a, 0xbc, 0x5b, 0xc0, 0x50, 0x8f, 0x41, 0x70, 0x71, 0x87, 0xb2, 0x4d, 0xb7, 0x04, 0xa9 +.byte 0x84, 0xa3, 0x32, 0xaf, 0xae, 0xee, 0x6b, 0x17, 0x8b, 0xb2, 0xb1, 0xfe, 0x6c, 0xe1, 0x90, 0x8c +.byte 0x88, 0xa8, 0x97, 0x48, 0xce, 0xc8, 0x4d, 0xcb, 0xf3, 0x06, 0xcf, 0x5f, 0x6a, 0x0a, 0x42, 0xb1 +.byte 0x1e, 0x1e, 0x77, 0x2f, 0x8e, 0xa0, 0xe6, 0x92, 0x0e, 0x06, 0xfc, 0x05, 0x22, 0xd2, 0x26, 0xe1 +.byte 0x31, 0x51, 0x7d, 0x32, 0xdc, 0x0f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x54, 0x00, 0x26, 0x02, 0x30 +.byte 0x52, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x53, 0x4b, 0x31, 0x13 +.byte 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x0a, 0x42, 0x72, 0x61, 0x74, 0x69, 0x73, 0x6c +.byte 0x61, 0x76, 0x61, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0a, 0x44, 0x69 +.byte 0x73, 0x69, 0x67, 0x20, 0x61, 0x2e, 0x73, 0x2e, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x13, 0x10, 0x43, 0x41, 0x20, 0x44, 0x69, 0x73, 0x69, 0x67, 0x20, 0x52, 0x6f, 0x6f, 0x74 +.byte 0x20, 0x52, 0x32, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7 +.byte 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02 +.byte 0x82, 0x02, 0x01, 0x00, 0xa2, 0xa3, 0xc4, 0x00, 0x09, 0xd6, 0x85, 0x5d, 0x2d, 0x6d, 0x14, 0xf6 +.byte 0xc2, 0xc3, 0x73, 0x9e, 0x35, 0xc2, 0x71, 0x55, 0x7e, 0x81, 0xfb, 0xab, 0x46, 0x50, 0xe0, 0xc1 +.byte 0x7c, 0x49, 0x78, 0xe6, 0xab, 0x79, 0x58, 0x3c, 0xda, 0xff, 0x7c, 0x1c, 0x9f, 0xd8, 0x97, 0x02 +.byte 0x78, 0x3e, 0x6b, 0x41, 0x04, 0xe9, 0x41, 0xbd, 0xbe, 0x03, 0x2c, 0x45, 0xf6, 0x2f, 0x64, 0xd4 +.byte 0xab, 0x5d, 0xa3, 0x47, 0x3d, 0x64, 0x9b, 0xe9, 0x68, 0x9a, 0xc6, 0xcc, 0x1b, 0x3f, 0xba, 0xbe +.byte 0xb2, 0x8b, 0x34, 0x02, 0x2e, 0x98, 0x55, 0x19, 0xfc, 0x8c, 0x6f, 0xaa, 0x5f, 0xda, 0x4c, 0xce +.byte 0x4d, 0x03, 0x21, 0xa3, 0xd8, 0xd2, 0x34, 0x93, 0x56, 0x96, 0xcb, 0x4c, 0x0c, 0x00, 0x16, 0x3c +.byte 0x5f, 0x1a, 0xcd, 0xc8, 0xc7, 0x6c, 0xa6, 0xad, 0xd3, 0x31, 0xa7, 0xbc, 0xe8, 0xe5, 0xe1, 0x66 +.byte 0xd6, 0xd2, 0xfb, 0x03, 0xb4, 0x41, 0x65, 0xc9, 0x10, 0xae, 0x0e, 0x05, 0x63, 0xc6, 0x80, 0x6a +.byte 0x69, 0x30, 0xfd, 0xd2, 0xee, 0x90, 0xef, 0x0d, 0x27, 0xdf, 0x9f, 0x95, 0x73, 0xf4, 0xe1, 0x25 +.byte 0xda, 0x6c, 0x16, 0xde, 0x41, 0x38, 0x34, 0xea, 0x8b, 0xfc, 0xd1, 0xe8, 0x04, 0x14, 0x61, 0x2d +.byte 0x41, 0x7e, 0xac, 0xc7, 0x77, 0x4e, 0xcb, 0x51, 0x54, 0xfb, 0x5e, 0x92, 0x18, 0x1b, 0x04, 0x5a +.byte 0x68, 0xc6, 0xc9, 0xc4, 0xfa, 0xb7, 0x13, 0xa0, 0x98, 0xb7, 0x11, 0x2b, 0xb7, 0xd6, 0x57, 0xcc +.byte 0x7c, 0x9e, 0x17, 0xd1, 0xcb, 0x25, 0xfe, 0x86, 0x4e, 0x24, 0x2e, 0x56, 0x0c, 0x78, 0x4d, 0x9e +.byte 0x01, 0x12, 0xa6, 0x2b, 0xa7, 0x01, 0x65, 0x6e, 0x7c, 0x62, 0x1d, 0x84, 0x84, 0xdf, 0xea, 0xc0 +.byte 0x6b, 0xb5, 0xa5, 0x2a, 0x95, 0x83, 0xc3, 0x53, 0x11, 0x0c, 0x73, 0x1d, 0x0b, 0xb2, 0x46, 0x90 +.byte 0xd1, 0x42, 0x3a, 0xce, 0x40, 0x6e, 0x95, 0xad, 0xff, 0xc6, 0x94, 0xad, 0x6e, 0x97, 0x84, 0x8e +.byte 0x7d, 0x6f, 0x9e, 0x8a, 0x80, 0x0d, 0x49, 0x6d, 0x73, 0xe2, 0x7b, 0x92, 0x1e, 0xc3, 0xf3, 0xc1 +.byte 0xf3, 0xeb, 0x2e, 0x05, 0x6f, 0xd9, 0x1b, 0xcf, 0x37, 0x76, 0x04, 0xc8, 0xb4, 0x5a, 0xe4, 0x17 +.byte 0xa7, 0xcb, 0xdd, 0x76, 0x1f, 0xd0, 0x19, 0x76, 0xe8, 0x2c, 0x05, 0xb3, 0xd6, 0x9c, 0x34, 0xd8 +.byte 0x96, 0xdc, 0x61, 0x87, 0x91, 0x05, 0xe4, 0x44, 0x08, 0x33, 0xc1, 0xda, 0xb9, 0x08, 0x65, 0xd4 +.byte 0xae, 0xb2, 0x36, 0x0d, 0xeb, 0xba, 0x38, 0xba, 0x0c, 0xe5, 0x9b, 0x9e, 0xeb, 0x8d, 0x66, 0xdd +.byte 0x99, 0xcf, 0xd6, 0x89, 0x41, 0xf6, 0x04, 0x92, 0x8a, 0x29, 0x29, 0x6d, 0x6b, 0x3a, 0x1c, 0xe7 +.byte 0x75, 0x7d, 0x02, 0x71, 0x0e, 0xf3, 0xc0, 0xe7, 0xbd, 0xcb, 0x19, 0xdd, 0x9d, 0x60, 0xb2, 0xc2 +.byte 0x66, 0x60, 0xb6, 0xb1, 0x04, 0xee, 0xc9, 0xe6, 0x86, 0xb9, 0x9a, 0x66, 0x40, 0xa8, 0xe7, 0x11 +.byte 0xed, 0x81, 0x45, 0x03, 0x8b, 0xf6, 0x67, 0x59, 0xe8, 0xc1, 0x06, 0x11, 0xbd, 0xdd, 0xcf, 0x80 +.byte 0x02, 0x4f, 0x65, 0x40, 0x78, 0x5c, 0x47, 0x50, 0xc8, 0x9b, 0xe6, 0x1f, 0x81, 0x7b, 0xe4, 0x44 +.byte 0xa8, 0x5b, 0x85, 0x9a, 0xe2, 0xde, 0x5a, 0xd5, 0xc7, 0xf9, 0x3a, 0x44, 0x66, 0x4b, 0xe4, 0x32 +.byte 0x54, 0x7c, 0xe4, 0x6c, 0x9c, 0xb3, 0x0e, 0x3d, 0x17, 0xa2, 0xb2, 0x34, 0x12, 0xd6, 0x7e, 0xb2 +.byte 0xa8, 0x49, 0xbb, 0xd1, 0x7a, 0x28, 0x40, 0xbe, 0xa2, 0x16, 0x1f, 0xdf, 0xe4, 0x37, 0x1f, 0x11 +.byte 0x73, 0xfb, 0x90, 0x0a, 0x65, 0x43, 0xa2, 0x0d, 0x7c, 0xf8, 0x06, 0x01, 0x55, 0x33, 0x7d, 0xb0 +.byte 0x0d, 0xb8, 0xf4, 0xf5, 0xae, 0xa5, 0x42, 0x57, 0x7c, 0x36, 0x11, 0x8c, 0x7b, 0x5e, 0xc4, 0x03 +.byte 0x9d, 0x8c, 0x79, 0x9d, 0x02, 0x03, 0x01, 0x00, 0x01, 0x56, 0x00, 0x26, 0x02, 0x30, 0x54, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x26, 0x30, 0x24 +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1d, 0x42, 0x45, 0x49, 0x4a, 0x49, 0x4e, 0x47, 0x20, 0x43 +.byte 0x45, 0x52, 0x54, 0x49, 0x46, 0x49, 0x43, 0x41, 0x54, 0x45, 0x20, 0x41, 0x55, 0x54, 0x48, 0x4f +.byte 0x52, 0x49, 0x54, 0x59, 0x31, 0x1d, 0x30, 0x1b, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x14, 0x42 +.byte 0x4a, 0x43, 0x41, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20 +.byte 0x43, 0x41, 0x31, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7 +.byte 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02 +.byte 0x82, 0x02, 0x01, 0x00, 0xf1, 0x66, 0x08, 0xbd, 0xd9, 0xc5, 0x15, 0x61, 0xcb, 0x84, 0x04, 0x41 +.byte 0xa5, 0x69, 0x37, 0x77, 0x1d, 0xc1, 0xb0, 0x7b, 0xfa, 0xc3, 0x77, 0x48, 0x90, 0x13, 0x72, 0x64 +.byte 0xd1, 0xb8, 0x7c, 0x90, 0x35, 0x9d, 0x18, 0x79, 0x88, 0xe3, 0x97, 0x01, 0x3c, 0x47, 0x81, 0xf2 +.byte 0x0e, 0xa2, 0x98, 0x0d, 0x9e, 0x3f, 0x37, 0xe0, 0x19, 0xb2, 0x90, 0xf2, 0x46, 0x1c, 0x92, 0xb1 +.byte 0x3a, 0x61, 0xce, 0xfa, 0xb7, 0x46, 0x9e, 0x03, 0x86, 0xd7, 0x33, 0x6e, 0xed, 0xf7, 0x45, 0x8c +.byte 0x76, 0x37, 0xde, 0x6e, 0x96, 0x91, 0xf7, 0xd7, 0x7e, 0x2b, 0x87, 0x17, 0xd5, 0x8b, 0x35, 0xee +.byte 0x84, 0x91, 0x72, 0x57, 0xdc, 0x60, 0xc3, 0xc3, 0xb9, 0xe7, 0xc7, 0x67, 0x24, 0x23, 0x4f, 0x63 +.byte 0x0a, 0x63, 0xf6, 0x66, 0x7d, 0x4b, 0x55, 0xa7, 0x3f, 0x78, 0x64, 0x49, 0x69, 0x12, 0x97, 0xe0 +.byte 0x4c, 0x0d, 0xd3, 0x09, 0xa0, 0x32, 0x30, 0x3a, 0xfa, 0x9f, 0xc0, 0xf2, 0x9c, 0xc5, 0x12, 0x2a +.byte 0x2e, 0x1c, 0xb5, 0x04, 0x33, 0xda, 0xa4, 0x38, 0x11, 0x6a, 0xde, 0xc6, 0x18, 0xf6, 0x47, 0x3a +.byte 0x22, 0x41, 0x87, 0x22, 0xfc, 0xc4, 0x89, 0x28, 0x54, 0xd8, 0x8c, 0xa5, 0x30, 0x0a, 0xf8, 0x17 +.byte 0x16, 0xca, 0xac, 0x37, 0xfd, 0x79, 0xa7, 0x91, 0x17, 0x78, 0x38, 0x99, 0xad, 0x58, 0xed, 0xb2 +.byte 0xde, 0xcc, 0x89, 0x7d, 0x03, 0x9c, 0xb3, 0x89, 0x65, 0xe7, 0xe3, 0x3b, 0xb1, 0x22, 0x86, 0x8f +.byte 0x06, 0x6d, 0x78, 0x07, 0xfd, 0x91, 0x12, 0x7f, 0xb0, 0x6b, 0x1c, 0x89, 0x0d, 0xf9, 0xb8, 0xcb +.byte 0x74, 0x5b, 0x07, 0xc2, 0xc8, 0xf4, 0x35, 0xd1, 0x64, 0x63, 0x7a, 0xe9, 0x6e, 0x9a, 0x28, 0xd6 +.byte 0x30, 0xbd, 0xe6, 0x1b, 0xdd, 0x15, 0xaf, 0x84, 0xea, 0x9c, 0xc7, 0xca, 0xf5, 0x0e, 0xea, 0xf2 +.byte 0x5d, 0x29, 0x87, 0x8f, 0x69, 0x73, 0x39, 0xbe, 0x2e, 0x24, 0x6f, 0x45, 0x21, 0xac, 0xc5, 0xd4 +.byte 0x69, 0x25, 0x06, 0x83, 0xad, 0x7a, 0x48, 0x85, 0x13, 0x2c, 0x0d, 0x06, 0xb8, 0x6c, 0x79, 0x56 +.byte 0xfc, 0xa3, 0x67, 0x32, 0x81, 0xf5, 0x57, 0xa5, 0xca, 0x57, 0x42, 0x69, 0xe9, 0x5c, 0x24, 0x61 +.byte 0xef, 0xe2, 0x30, 0x18, 0x4e, 0x44, 0x98, 0x55, 0x6f, 0x7a, 0xc2, 0x93, 0xd8, 0x19, 0xb6, 0xde +.byte 0x7c, 0x47, 0x8a, 0x11, 0x4e, 0x49, 0x47, 0xdb, 0x28, 0x94, 0x02, 0x0b, 0x94, 0x4a, 0x2c, 0xf9 +.byte 0x12, 0xd0, 0x4f, 0xe8, 0x31, 0x7e, 0x6c, 0x7a, 0xbf, 0xa6, 0x3f, 0x9b, 0x39, 0x3d, 0x02, 0x16 +.byte 0xa3, 0x18, 0xb3, 0x67, 0xac, 0x5b, 0x3f, 0x2c, 0x83, 0x2b, 0x67, 0x39, 0x81, 0x5c, 0xb9, 0x7e +.byte 0x94, 0xd5, 0x64, 0xdd, 0x9e, 0x8f, 0x6e, 0xae, 0xe8, 0x7c, 0x5b, 0xb4, 0xd7, 0x6a, 0x47, 0x48 +.byte 0xd7, 0x7e, 0xb3, 0xd4, 0x2d, 0x8e, 0x56, 0x76, 0x4e, 0xcf, 0x69, 0xf1, 0x6e, 0x44, 0x6c, 0xd4 +.byte 0x24, 0xea, 0x8d, 0x24, 0xa1, 0x18, 0xbf, 0xbd, 0x57, 0xfe, 0xa9, 0x99, 0x35, 0xb5, 0xdb, 0x10 +.byte 0x77, 0xb8, 0x3d, 0x48, 0xba, 0xd6, 0xc1, 0xe7, 0xf1, 0x23, 0x3e, 0xd7, 0xdf, 0x85, 0x9d, 0x27 +.byte 0x3c, 0xd4, 0x40, 0xbd, 0x0a, 0x0c, 0xbd, 0xf5, 0xe7, 0x8d, 0x25, 0xd6, 0x81, 0x74, 0x87, 0x46 +.byte 0xd4, 0x29, 0x75, 0xa2, 0x42, 0x6c, 0xf7, 0x73, 0x89, 0xe7, 0x7d, 0xbf, 0x7a, 0x4a, 0x1f, 0xd3 +.byte 0x22, 0xc9, 0x15, 0x55, 0xcf, 0xdf, 0x6f, 0x7c, 0x55, 0xd0, 0xa4, 0x8b, 0x07, 0x11, 0x37, 0x5f +.byte 0x83, 0xa6, 0x26, 0x57, 0xa6, 0x01, 0x5b, 0x7e, 0xfe, 0x58, 0x68, 0x07, 0xa9, 0xe9, 0x7a, 0xd9 +.byte 0xb9, 0xe8, 0xff, 0x50, 0x1f, 0xab, 0xc2, 0xb4, 0xc0, 0xce, 0xe8, 0xea, 0xfd, 0x0f, 0xbd, 0x8d +.byte 0x4d, 0xb8, 0xbc, 0x71, 0x02, 0x03, 0x01, 0x00, 0x01, 0x56, 0x00, 0x78, 0x00, 0x30, 0x54, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x26, 0x30, 0x24 +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1d, 0x42, 0x45, 0x49, 0x4a, 0x49, 0x4e, 0x47, 0x20, 0x43 +.byte 0x45, 0x52, 0x54, 0x49, 0x46, 0x49, 0x43, 0x41, 0x54, 0x45, 0x20, 0x41, 0x55, 0x54, 0x48, 0x4f +.byte 0x52, 0x49, 0x54, 0x59, 0x31, 0x1d, 0x30, 0x1b, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x14, 0x42 +.byte 0x4a, 0x43, 0x41, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20 +.byte 0x43, 0x41, 0x32, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01 +.byte 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x9d, 0xcb, 0x80, 0x91, 0x8d +.byte 0x53, 0x67, 0xb5, 0xb9, 0x50, 0xb1, 0x03, 0xf8, 0xe5, 0x49, 0x1f, 0x41, 0x22, 0x09, 0xb0, 0x51 +.byte 0x52, 0x58, 0xd6, 0x2b, 0x34, 0x8f, 0xc5, 0x12, 0x46, 0x14, 0xc5, 0x8b, 0x2f, 0x2c, 0x84, 0xff +.byte 0x2c, 0x6e, 0xa8, 0xd5, 0xf1, 0x09, 0xe3, 0x03, 0x21, 0x14, 0xc4, 0x43, 0x3d, 0x7c, 0xc1, 0x2c +.byte 0xc4, 0x4b, 0x6a, 0x4a, 0xcd, 0xe9, 0x87, 0xe0, 0x7d, 0xf6, 0x22, 0xbe, 0xfa, 0x4a, 0x51, 0xb8 +.byte 0x30, 0x8a, 0xfd, 0xe1, 0xde, 0x18, 0x12, 0x0a, 0xf6, 0x47, 0xb7, 0xe7, 0x17, 0xbf, 0x27, 0x8a +.byte 0xd4, 0x41, 0x4c, 0x96, 0x3c, 0x60, 0x96, 0xc1, 0xfd, 0x15, 0x1c, 0x58, 0x00, 0x26, 0x02, 0x30 +.byte 0x56, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x30 +.byte 0x30, 0x2e, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x27, 0x43, 0x68, 0x69, 0x6e, 0x61, 0x20, 0x46 +.byte 0x69, 0x6e, 0x61, 0x6e, 0x63, 0x69, 0x61, 0x6c, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69 +.byte 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79 +.byte 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x0c, 0x43, 0x46, 0x43, 0x41, 0x20 +.byte 0x45, 0x56, 0x20, 0x52, 0x4f, 0x4f, 0x54, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a +.byte 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30 +.byte 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xd7, 0x5d, 0x6b, 0xcd, 0x10, 0x3f, 0x1f, 0x05 +.byte 0x59, 0xd5, 0x05, 0x4d, 0x37, 0xb1, 0x0e, 0xec, 0x98, 0x2b, 0x8e, 0x15, 0x1d, 0xfa, 0x93, 0x4b +.byte 0x17, 0x82, 0x21, 0x71, 0x10, 0x52, 0xd7, 0x51, 0x64, 0x70, 0x16, 0xc2, 0x55, 0x69, 0x4d, 0x8e +.byte 0x15, 0x6d, 0x9f, 0xbf, 0x0c, 0x1b, 0xc2, 0xe0, 0xa3, 0x67, 0xd6, 0x0c, 0xac, 0xcf, 0x22, 0xae +.byte 0xaf, 0x77, 0x54, 0x2a, 0x4b, 0x4c, 0x8a, 0x53, 0x52, 0x7a, 0xc3, 0xee, 0x2e, 0xde, 0xb3, 0x71 +.byte 0x25, 0xc1, 0xe9, 0x5d, 0x3d, 0xee, 0xa1, 0x2f, 0xa3, 0xf7, 0x2a, 0x3c, 0xc9, 0x23, 0x1d, 0x6a +.byte 0xab, 0x1d, 0xa1, 0xa7, 0xf1, 0xf3, 0xec, 0xa0, 0xd5, 0x44, 0xcf, 0x15, 0xcf, 0x72, 0x2f, 0x1d +.byte 0x63, 0x97, 0xe8, 0x99, 0xf9, 0xfd, 0x93, 0xa4, 0x54, 0x80, 0x4c, 0x52, 0xd4, 0x52, 0xab, 0x2e +.byte 0x49, 0xdf, 0x90, 0xcd, 0xb8, 0x5f, 0xbe, 0x3f, 0xde, 0xa1, 0xca, 0x4d, 0x20, 0xd4, 0x25, 0xe8 +.byte 0x84, 0x29, 0x53, 0xb7, 0xb1, 0x88, 0x1f, 0xff, 0xfa, 0xda, 0x90, 0x9f, 0x0a, 0xa9, 0x2d, 0x41 +.byte 0x3f, 0xb1, 0xf1, 0x18, 0x29, 0xee, 0x16, 0x59, 0x2c, 0x34, 0x49, 0x1a, 0xa8, 0x06, 0xd7, 0xa8 +.byte 0x88, 0xd2, 0x03, 0x72, 0x7a, 0x32, 0xe2, 0xea, 0x68, 0x4d, 0x6e, 0x2c, 0x96, 0x65, 0x7b, 0xca +.byte 0x59, 0xfa, 0xf2, 0xe2, 0xdd, 0xee, 0x30, 0x2c, 0xfb, 0xcc, 0x46, 0xac, 0xc4, 0x63, 0xeb, 0x6f +.byte 0x7f, 0x36, 0x2b, 0x34, 0x73, 0x12, 0x94, 0x7f, 0xdf, 0xcc, 0x26, 0x9e, 0xf1, 0x72, 0x5d, 0x50 +.byte 0x65, 0x59, 0x8f, 0x69, 0xb3, 0x87, 0x5e, 0x32, 0x6f, 0xc3, 0x18, 0x8a, 0xb5, 0x95, 0x8f, 0xb0 +.byte 0x7a, 0x37, 0xde, 0x5a, 0x45, 0x3b, 0xc7, 0x36, 0xe1, 0xef, 0x67, 0xd1, 0x39, 0xd3, 0x97, 0x5b +.byte 0x73, 0x62, 0x19, 0x48, 0x2d, 0x87, 0x1c, 0x06, 0xfb, 0x74, 0x98, 0x20, 0x49, 0x73, 0xf0, 0x05 +.byte 0xd2, 0x1b, 0xb1, 0xa0, 0xa3, 0xb7, 0x1b, 0x70, 0xd3, 0x88, 0x69, 0xb9, 0x5a, 0xd6, 0x38, 0xf4 +.byte 0x62, 0xdc, 0x25, 0x8b, 0x78, 0xbf, 0xf8, 0xe8, 0x7e, 0xb8, 0x5c, 0xc9, 0x95, 0x4f, 0x5f, 0xa7 +.byte 0x2d, 0xb9, 0x20, 0x6b, 0xcf, 0x6b, 0xdd, 0xf5, 0x0d, 0xf4, 0x82, 0xb7, 0xf4, 0xb2, 0x66, 0x2e +.byte 0x10, 0x28, 0xf6, 0x97, 0x5a, 0x7b, 0x96, 0x16, 0x8f, 0x01, 0x19, 0x2d, 0x6c, 0x6e, 0x7f, 0x39 +.byte 0x58, 0x06, 0x64, 0x83, 0x01, 0x83, 0x83, 0xc3, 0x4d, 0x92, 0xdd, 0x32, 0xc6, 0x87, 0xa4, 0x37 +.byte 0xe9, 0x16, 0xce, 0xaa, 0x2d, 0x68, 0xaf, 0x0a, 0x81, 0x65, 0x3a, 0x70, 0xc1, 0x9b, 0xad, 0x4d +.byte 0x6d, 0x54, 0xca, 0x2a, 0x2d, 0x4b, 0x85, 0x1b, 0xb3, 0x80, 0xe6, 0x70, 0x45, 0x0d, 0x6b, 0x5e +.byte 0x35, 0xf0, 0x7f, 0x3b, 0xb8, 0x9c, 0xe4, 0x04, 0x70, 0x89, 0x12, 0x25, 0x93, 0xda, 0x0a, 0x99 +.byte 0x22, 0x60, 0x6a, 0x63, 0x60, 0x4e, 0x76, 0x06, 0x98, 0x4e, 0xbd, 0x83, 0xad, 0x1d, 0x58, 0x8a +.byte 0x25, 0x85, 0xd2, 0xc7, 0x65, 0x1e, 0x2d, 0x8e, 0xc6, 0xdf, 0xb6, 0xc6, 0xe1, 0x7f, 0x8a, 0x04 +.byte 0x21, 0x15, 0x29, 0x74, 0xf0, 0x3e, 0x9c, 0x90, 0x9d, 0x0c, 0x2e, 0xf1, 0x8a, 0x3e, 0x5a, 0xaa +.byte 0x0c, 0x09, 0x1e, 0xc7, 0xd5, 0x3c, 0xa3, 0xed, 0x97, 0xc3, 0x1e, 0x34, 0xfa, 0x38, 0xf9, 0x08 +.byte 0x0e, 0xe3, 0xc0, 0x5d, 0x2b, 0x83, 0xd1, 0x56, 0x6a, 0xc9, 0xb6, 0xa8, 0x54, 0x53, 0x2e, 0x78 +.byte 0x32, 0x67, 0x3d, 0x82, 0x7f, 0x74, 0xd0, 0xfb, 0xe1, 0xb6, 0x05, 0x60, 0xb9, 0x70, 0xdb, 0x8e +.byte 0x0b, 0xf9, 0x13, 0x58, 0x6f, 0x71, 0x60, 0x10, 0x52, 0x10, 0xb9, 0xc1, 0x41, 0x09, 0xef, 0x72 +.byte 0x1f, 0x67, 0x31, 0x78, 0xff, 0x96, 0x05, 0x8d, 0x02, 0x03, 0x01, 0x00, 0x01, 0x58, 0x00, 0x26 +.byte 0x01, 0x30, 0x56, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53 +.byte 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x0a, 0x65, 0x6d, 0x53, 0x69, 0x67 +.byte 0x6e, 0x20, 0x50, 0x4b, 0x49, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0b +.byte 0x65, 0x4d, 0x75, 0x64, 0x68, 0x72, 0x61, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x1c, 0x30, 0x1a, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x13, 0x65, 0x6d, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f +.byte 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x43, 0x31, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06 +.byte 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f +.byte 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xcf, 0xeb, 0xa9, 0xb9, 0xf1, 0x99 +.byte 0x05, 0xcc, 0xd8, 0x28, 0x21, 0x4a, 0xf3, 0x73, 0x34, 0x51, 0x84, 0x56, 0x10, 0xf5, 0xa0, 0x4f +.byte 0x2c, 0x12, 0xe3, 0xfa, 0x13, 0x9a, 0x27, 0xd0, 0xcf, 0xf9, 0x79, 0x1a, 0x74, 0x5f, 0x1d, 0x79 +.byte 0x39, 0xfc, 0x5b, 0xf8, 0x70, 0x8e, 0xe0, 0x92, 0x52, 0xf7, 0xe4, 0x25, 0xf9, 0x54, 0x83, 0xd9 +.byte 0x1d, 0xd3, 0xc8, 0x5a, 0x85, 0x3f, 0x5e, 0xc7, 0xb6, 0x07, 0xee, 0x3e, 0xc0, 0xce, 0x9a, 0xaf +.byte 0xac, 0x56, 0x42, 0x2a, 0x39, 0x25, 0x70, 0xd6, 0xbf, 0xb5, 0x7b, 0x36, 0xad, 0xac, 0xf6, 0x73 +.byte 0xdc, 0xcd, 0xd7, 0x1d, 0x8a, 0x83, 0xa5, 0xfb, 0x2b, 0x90, 0x15, 0x37, 0x6b, 0x1c, 0x26, 0x47 +.byte 0xdc, 0x3b, 0x29, 0x56, 0x93, 0x6a, 0xb3, 0xc1, 0x6a, 0x3a, 0x9d, 0x3d, 0xf5, 0xc1, 0x97, 0x38 +.byte 0x58, 0x05, 0x8b, 0x1c, 0x11, 0xe3, 0xe4, 0xb4, 0xb8, 0x5d, 0x85, 0x1d, 0x83, 0xfe, 0x78, 0x5f +.byte 0x0b, 0x45, 0x68, 0x18, 0x48, 0xa5, 0x46, 0x73, 0x34, 0x3b, 0xfe, 0x0f, 0xc8, 0x76, 0xbb, 0xc7 +.byte 0x18, 0xf3, 0x05, 0xd1, 0x86, 0xf3, 0x85, 0xed, 0xe7, 0xb9, 0xd9, 0x32, 0xad, 0x55, 0x88, 0xce +.byte 0xa6, 0xb6, 0x91, 0xb0, 0x4f, 0xac, 0x7e, 0x15, 0x23, 0x96, 0xf6, 0x3f, 0xf0, 0x20, 0x34, 0x16 +.byte 0xde, 0x0a, 0xc6, 0xc4, 0x04, 0x45, 0x79, 0x7f, 0xa7, 0xfd, 0xbe, 0xd2, 0xa9, 0xa5, 0xaf, 0x9c +.byte 0xc5, 0x23, 0x2a, 0xf7, 0x3c, 0x21, 0x6c, 0xbd, 0xaf, 0x8f, 0x4e, 0xc5, 0x3a, 0xb2, 0xf3, 0x34 +.byte 0x12, 0xfc, 0xdf, 0x80, 0x1a, 0x49, 0xa4, 0xd4, 0xa9, 0x95, 0xf7, 0x9e, 0x89, 0x5e, 0xa2, 0x89 +.byte 0xac, 0x94, 0xcb, 0xa8, 0x68, 0x9b, 0xaf, 0x8a, 0x65, 0x27, 0xcd, 0x89, 0xee, 0xdd, 0x8c, 0xb5 +.byte 0x6b, 0x29, 0x70, 0x43, 0xa0, 0x69, 0x0b, 0xe4, 0xb9, 0x0f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x5a +.byte 0x00, 0x78, 0x00, 0x30, 0x58, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x43, 0x4e, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1c, 0x54, 0x72, 0x75 +.byte 0x73, 0x74, 0x41, 0x73, 0x69, 0x61, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67 +.byte 0x69, 0x65, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x13, 0x19, 0x54, 0x72, 0x75, 0x73, 0x74, 0x41, 0x73, 0x69, 0x61, 0x20, 0x54, 0x4c +.byte 0x53, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x76, 0x30 +.byte 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00 +.byte 0x22, 0x03, 0x62, 0x00, 0x04, 0xb8, 0x7f, 0xa5, 0x5b, 0x3f, 0x01, 0x3e, 0x7d, 0xf0, 0x88, 0x6d +.byte 0xae, 0x29, 0x98, 0xe1, 0x9b, 0x5c, 0x53, 0x99, 0xdb, 0xf7, 0x08, 0xff, 0xd5, 0x6a, 0xe0, 0x8e +.byte 0xcb, 0x44, 0xa6, 0xf0, 0xc1, 0x8c, 0xbd, 0x4f, 0xd4, 0xce, 0xd4, 0x88, 0x53, 0xe8, 0x5e, 0x57 +.byte 0xd7, 0x4e, 0xbe, 0x2c, 0x3f, 0xf3, 0x12, 0xa7, 0x00, 0xe9, 0x82, 0xe3, 0x2a, 0x5b, 0x32, 0x7c +.byte 0x4b, 0x9b, 0x14, 0x29, 0x9e, 0xf8, 0x2d, 0x83, 0xb5, 0xeb, 0x8e, 0x31, 0x49, 0x3d, 0x26, 0x61 +.byte 0xe9, 0x1d, 0x72, 0x8b, 0x89, 0xb6, 0x0a, 0xbb, 0x9c, 0x33, 0x35, 0x0f, 0xda, 0xec, 0xde, 0xa9 +.byte 0x4a, 0x1f, 0xc9, 0x33, 0xb1, 0x5a, 0x00, 0x26, 0x02, 0x30, 0x58, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x1c, 0x54, 0x72, 0x75, 0x73, 0x74, 0x41, 0x73, 0x69, 0x61, 0x20, 0x54, 0x65, 0x63 +.byte 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31 +.byte 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x19, 0x54, 0x72, 0x75, 0x73, 0x74, 0x41 +.byte 0x73, 0x69, 0x61, 0x20, 0x54, 0x4c, 0x53, 0x20, 0x52, 0x53, 0x41, 0x20, 0x52, 0x6f, 0x6f, 0x74 +.byte 0x20, 0x43, 0x41, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7 +.byte 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02 +.byte 0x82, 0x02, 0x01, 0x00, 0xc3, 0x16, 0xb8, 0x1b, 0x6a, 0xa4, 0x44, 0x73, 0xe5, 0xd6, 0x4e, 0xf4 +.byte 0xb9, 0xcf, 0x5b, 0x0b, 0xc1, 0xd1, 0x9a, 0x81, 0xf5, 0x63, 0xb0, 0x8f, 0x43, 0xc1, 0xbb, 0x08 +.byte 0x5a, 0x1a, 0x7a, 0xe1, 0x07, 0x76, 0x26, 0x1f, 0x8f, 0x69, 0x56, 0xbe, 0xfe, 0x36, 0x60, 0xd0 +.byte 0x0c, 0x83, 0xcd, 0x94, 0xea, 0xe7, 0xc5, 0x2d, 0x5c, 0x2f, 0x05, 0x16, 0x02, 0x9e, 0x0a, 0xa8 +.byte 0x2f, 0xe5, 0x60, 0x26, 0x54, 0x96, 0xf8, 0x98, 0x40, 0x1d, 0xac, 0xae, 0x9d, 0x74, 0x67, 0x2f +.byte 0x54, 0xfb, 0x94, 0x63, 0x98, 0xe3, 0x26, 0x4a, 0x83, 0xc6, 0x95, 0xb6, 0x09, 0x43, 0x50, 0xcd +.byte 0x0d, 0x7d, 0xde, 0x44, 0x0e, 0x60, 0x12, 0x4f, 0x5b, 0x35, 0xbd, 0xbf, 0x99, 0x38, 0x6d, 0x7d +.byte 0x6c, 0xda, 0xe2, 0x68, 0x73, 0x1f, 0xf9, 0x31, 0xa5, 0x19, 0x10, 0x73, 0x05, 0x2a, 0xc3, 0x32 +.byte 0x19, 0x85, 0xea, 0x34, 0xaa, 0xdd, 0x42, 0x1e, 0x30, 0x8d, 0x3f, 0x9e, 0xb5, 0x1e, 0x61, 0xd5 +.byte 0x6f, 0xbd, 0x00, 0x72, 0x72, 0xad, 0x12, 0x3f, 0xaa, 0xa6, 0x49, 0x73, 0xf2, 0x86, 0x15, 0x95 +.byte 0x0c, 0x10, 0x5f, 0x51, 0x64, 0xce, 0xff, 0x77, 0xb8, 0xc9, 0x6d, 0xac, 0xe5, 0xd5, 0x98, 0xf1 +.byte 0x99, 0x2e, 0x6c, 0xe3, 0xc9, 0x44, 0xf9, 0xb5, 0x43, 0x27, 0x08, 0x4d, 0xf6, 0x7e, 0xde, 0x44 +.byte 0x79, 0xbb, 0xb2, 0x8c, 0x1c, 0xda, 0xd3, 0x4b, 0x6c, 0x2e, 0xd6, 0xc3, 0x78, 0xb7, 0x4c, 0xd5 +.byte 0xa4, 0xe4, 0xda, 0xdc, 0x8a, 0x8e, 0x0e, 0xff, 0x0f, 0xc3, 0xa6, 0x60, 0x26, 0x28, 0xcf, 0x36 +.byte 0xbf, 0xfa, 0x57, 0x0a, 0xec, 0x5b, 0x3f, 0xe9, 0x30, 0x16, 0x7b, 0xc4, 0xdb, 0xc4, 0xd4, 0x64 +.byte 0xa0, 0x30, 0xfb, 0xe5, 0xfd, 0x1d, 0x71, 0x92, 0xdd, 0x29, 0x8f, 0x41, 0x58, 0xde, 0x00, 0xad +.byte 0x3a, 0xfd, 0x3d, 0x7c, 0x1a, 0xa8, 0xb1, 0x17, 0xf0, 0x4e, 0x34, 0x78, 0x58, 0x25, 0xd6, 0x85 +.byte 0x21, 0xeb, 0x79, 0x1d, 0xd0, 0xdc, 0xab, 0xcf, 0x62, 0x3c, 0xb0, 0xc7, 0x97, 0x8b, 0xd6, 0xd0 +.byte 0x9f, 0xd3, 0xfe, 0x3c, 0xde, 0xc5, 0xe3, 0xfc, 0x3a, 0x83, 0x70, 0x84, 0x21, 0x1d, 0x09, 0xc2 +.byte 0xa1, 0xfc, 0xbb, 0x28, 0x21, 0x65, 0x53, 0x60, 0x7a, 0x90, 0x6d, 0x96, 0x38, 0x5b, 0xff, 0xf1 +.byte 0xd7, 0x7a, 0x5b, 0x6d, 0xd3, 0xc9, 0x70, 0x49, 0x4a, 0xba, 0x1d, 0x3a, 0xd0, 0x50, 0xda, 0x32 +.byte 0x20, 0x19, 0xe4, 0x8b, 0x3f, 0xeb, 0xd5, 0x16, 0x26, 0x37, 0x3c, 0xfb, 0x75, 0x9e, 0xb0, 0x07 +.byte 0x70, 0xb8, 0x14, 0x60, 0x77, 0xdc, 0xf6, 0x0f, 0x5c, 0x52, 0x0a, 0xbc, 0x5d, 0x6d, 0x8d, 0x51 +.byte 0x0a, 0xda, 0xc5, 0x18, 0xc8, 0x9b, 0x6d, 0xdc, 0xb0, 0x83, 0xb3, 0x7f, 0xa3, 0x4e, 0x78, 0x4c +.byte 0x98, 0x25, 0xab, 0xf2, 0x7e, 0x2e, 0x20, 0x5e, 0x82, 0x15, 0xa6, 0xd6, 0xd8, 0x8f, 0xac, 0xe5 +.byte 0xcd, 0x32, 0x86, 0xc8, 0xf9, 0xe4, 0xda, 0x89, 0xe2, 0x3b, 0x3e, 0x93, 0xc5, 0x13, 0x6a, 0xff +.byte 0xc7, 0xf7, 0x18, 0xfc, 0x67, 0xb5, 0xef, 0x18, 0x2c, 0x54, 0xab, 0x40, 0xd3, 0x6c, 0x4d, 0xed +.byte 0xc5, 0xc8, 0xb7, 0x38, 0x4f, 0x64, 0xc4, 0x94, 0x4c, 0x4f, 0xa0, 0xcd, 0xae, 0xa5, 0xc6, 0x27 +.byte 0x25, 0x75, 0x27, 0x6d, 0xc6, 0xda, 0x9c, 0x8e, 0xb0, 0x05, 0x99, 0xd5, 0x28, 0x11, 0xc5, 0x21 +.byte 0xd4, 0xb8, 0xfc, 0xc7, 0x96, 0xab, 0x4a, 0x64, 0x59, 0x61, 0x6b, 0x13, 0xfc, 0x4b, 0xcc, 0x92 +.byte 0xa6, 0x0f, 0xa4, 0x51, 0xbf, 0x0e, 0x58, 0x90, 0xd9, 0x82, 0x83, 0x39, 0xa6, 0x5f, 0xb3, 0xfa +.byte 0x6e, 0x92, 0xb3, 0xcd, 0x33, 0x0e, 0x85, 0xa8, 0xf1, 0x29, 0xd3, 0xab, 0x59, 0xad, 0xd6, 0xdb +.byte 0xde, 0xd4, 0x2b, 0x81, 0x02, 0x03, 0x01, 0x00, 0x01, 0x5c, 0x00, 0x26, 0x02, 0x30, 0x5a, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x25, 0x30, 0x23 +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1c, 0x54, 0x72, 0x75, 0x73, 0x74, 0x41, 0x73, 0x69, 0x61 +.byte 0x20, 0x54, 0x65, 0x63, 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x2c, 0x20, 0x49 +.byte 0x6e, 0x63, 0x2e, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1b, 0x54, 0x72 +.byte 0x75, 0x73, 0x74, 0x41, 0x73, 0x69, 0x61, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x47, 0x33, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06 +.byte 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f +.byte 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xc0, 0x31, 0x82, 0x61, 0x92, 0xe4 +.byte 0x94, 0x1b, 0x0a, 0x2a, 0x65, 0xd0, 0xbe, 0x06, 0xa9, 0x87, 0x3b, 0x51, 0x12, 0xea, 0x70, 0x41 +.byte 0xae, 0xe2, 0xfb, 0x74, 0xea, 0x0a, 0x8d, 0xb9, 0xb3, 0x4c, 0xdc, 0x8f, 0xb7, 0x13, 0x52, 0x4f +.byte 0x54, 0x18, 0xe1, 0x2c, 0x73, 0x95, 0x91, 0xc5, 0x66, 0x3b, 0x6a, 0xcf, 0xac, 0x63, 0x6d, 0x87 +.byte 0x53, 0xf0, 0xf7, 0xf1, 0x39, 0xb7, 0xa0, 0x43, 0x63, 0xb0, 0xc4, 0x03, 0x5d, 0x57, 0xa9, 0xe7 +.byte 0x44, 0xce, 0xc4, 0xa1, 0x83, 0x65, 0xf6, 0x50, 0x3e, 0xb1, 0x7e, 0x16, 0xb8, 0x3a, 0x8a, 0x02 +.byte 0xd0, 0x96, 0x1f, 0x00, 0xcd, 0x05, 0x21, 0xef, 0x06, 0x6d, 0xdd, 0x21, 0x9c, 0x19, 0x43, 0x45 +.byte 0xa1, 0xc5, 0xe8, 0x80, 0xca, 0xc2, 0xad, 0x40, 0x62, 0x17, 0x06, 0xc6, 0xaa, 0xbc, 0xf3, 0xd6 +.byte 0xe6, 0xfc, 0x50, 0x7e, 0x66, 0x42, 0x1f, 0x3c, 0x8b, 0xa6, 0x79, 0x79, 0x86, 0x40, 0x35, 0x9f +.byte 0x20, 0xef, 0x3f, 0xeb, 0x8b, 0x47, 0x1f, 0x8f, 0x8e, 0xc5, 0xd4, 0x8e, 0xb6, 0x2c, 0xc9, 0x44 +.byte 0x04, 0xe3, 0xd4, 0x43, 0x75, 0x3f, 0xd5, 0x3f, 0xaf, 0x1c, 0xcc, 0x7e, 0x46, 0x5f, 0xac, 0xdf +.byte 0x64, 0x10, 0x8a, 0xef, 0x46, 0xf0, 0x90, 0xf0, 0x0f, 0x2d, 0xf4, 0x88, 0x0b, 0xb1, 0x29, 0xaa +.byte 0xaf, 0x85, 0xaa, 0x49, 0x58, 0xa8, 0xbf, 0x63, 0xa0, 0x38, 0x91, 0xe6, 0xb3, 0xe6, 0x77, 0x68 +.byte 0xc4, 0xf9, 0x2a, 0x19, 0x84, 0xbb, 0x0e, 0xe1, 0xf5, 0xaf, 0x89, 0xec, 0xa5, 0x2f, 0x50, 0x20 +.byte 0x74, 0x1e, 0x12, 0x41, 0x73, 0x1e, 0x24, 0xd9, 0xca, 0xce, 0x2c, 0xa1, 0x59, 0x35, 0xc0, 0xc8 +.byte 0x1d, 0x46, 0x27, 0x61, 0x5a, 0x8f, 0xf9, 0x4d, 0xd3, 0x72, 0x79, 0x66, 0x1e, 0x9f, 0x15, 0x90 +.byte 0x21, 0x2d, 0xfd, 0xed, 0x8b, 0x56, 0x70, 0x03, 0x4a, 0x49, 0x3e, 0x7f, 0x69, 0x31, 0x12, 0x69 +.byte 0xc7, 0x1e, 0x5c, 0xca, 0x7a, 0x13, 0x8b, 0xe8, 0xe6, 0xf5, 0x60, 0x0f, 0xcc, 0x93, 0x2c, 0x84 +.byte 0x7f, 0xf1, 0xfc, 0x6a, 0xfc, 0x9b, 0x47, 0x9d, 0xdb, 0xad, 0x88, 0x3d, 0xf3, 0x76, 0x75, 0x33 +.byte 0xd7, 0x4b, 0xa4, 0xc8, 0x8b, 0xf9, 0xf5, 0x43, 0x58, 0x4f, 0xcb, 0xc8, 0x03, 0x54, 0x8f, 0xa5 +.byte 0x85, 0x78, 0x04, 0x1a, 0xf3, 0x73, 0xf2, 0xd7, 0x87, 0x1d, 0x41, 0x9f, 0xe7, 0xd8, 0x17, 0xce +.byte 0x1a, 0x9c, 0x0f, 0x4a, 0xfc, 0xdc, 0x44, 0x68, 0x54, 0x68, 0xe2, 0x41, 0x3c, 0xfe, 0x2c, 0x84 +.byte 0x86, 0x37, 0x3c, 0xcd, 0x3f, 0x2f, 0xa2, 0xdb, 0xe7, 0xf7, 0x54, 0x03, 0x5f, 0x59, 0xd3, 0xf7 +.byte 0x91, 0x78, 0xc7, 0x8b, 0x77, 0x6a, 0x16, 0xe5, 0x49, 0x85, 0x90, 0x45, 0x72, 0x70, 0x2f, 0x91 +.byte 0x5d, 0xf8, 0x3e, 0x65, 0x40, 0x0b, 0x19, 0x99, 0xc9, 0x26, 0x20, 0x5a, 0x68, 0xc1, 0x35, 0xbf +.byte 0x4f, 0xa7, 0x51, 0xf1, 0xd8, 0x11, 0x2b, 0x5b, 0xe0, 0x9a, 0x9e, 0x28, 0x3b, 0x0a, 0x3a, 0x0a +.byte 0x1f, 0xc1, 0x81, 0xe5, 0x2e, 0xf0, 0xa6, 0xb9, 0x69, 0xa5, 0x88, 0x94, 0xe6, 0x6b, 0x13, 0x7f +.byte 0xd1, 0x64, 0x3f, 0x3d, 0x9c, 0x70, 0x46, 0xe5, 0xa2, 0x85, 0x7b, 0x58, 0x84, 0x27, 0xdc, 0xc4 +.byte 0x80, 0x3e, 0x67, 0x9a, 0x9a, 0xc7, 0x9a, 0x31, 0x0e, 0x30, 0xec, 0xe6, 0x17, 0x40, 0x95, 0xd9 +.byte 0x45, 0xed, 0x01, 0x96, 0xaa, 0xbf, 0x0c, 0xf3, 0x4b, 0xd1, 0x63, 0xf7, 0x13, 0x58, 0xc0, 0xb8 +.byte 0xf3, 0xfa, 0x67, 0xdd, 0x9b, 0x7d, 0x6d, 0x4a, 0xff, 0x32, 0x4c, 0xb5, 0x25, 0x3b, 0xff, 0x1c +.byte 0x67, 0x0f, 0x85, 0x22, 0x59, 0x05, 0x91, 0x91, 0x41, 0x77, 0x81, 0xd0, 0x85, 0x4c, 0x87, 0x10 +.byte 0x71, 0xff, 0x9e, 0x43, 0x1b, 0xae, 0x95, 0x75, 0x2d, 0x81, 0x02, 0x03, 0x01, 0x00, 0x01, 0x5c +.byte 0x00, 0x78, 0x00, 0x30, 0x5a, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x43, 0x4e, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1c, 0x54, 0x72, 0x75 +.byte 0x73, 0x74, 0x41, 0x73, 0x69, 0x61, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67 +.byte 0x69, 0x65, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x0c, 0x1b, 0x54, 0x72, 0x75, 0x73, 0x74, 0x41, 0x73, 0x69, 0x61, 0x20, 0x47, 0x6c +.byte 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x47, 0x34, 0x30 +.byte 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81 +.byte 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xf1, 0xb3, 0xcd, 0x38, 0xe4, 0x25, 0x43, 0xe5, 0xde +.byte 0x19, 0x09, 0xbb, 0x81, 0x79, 0xa2, 0x15, 0x5f, 0x15, 0x63, 0x01, 0xde, 0xc2, 0xab, 0xdd, 0xb3 +.byte 0xa6, 0x1b, 0x67, 0x4b, 0x80, 0x83, 0xaf, 0x99, 0xcb, 0xac, 0x17, 0xdb, 0x2b, 0x96, 0xca, 0x7c +.byte 0x52, 0x55, 0xe2, 0x1a, 0xe1, 0x3d, 0x56, 0xf0, 0x2f, 0x16, 0x08, 0xfa, 0x15, 0xbc, 0x9b, 0xbb +.byte 0x47, 0xe6, 0x3f, 0xee, 0xa8, 0xe1, 0x4c, 0x8c, 0xf5, 0xd3, 0x36, 0xf9, 0x38, 0x5d, 0xab, 0x70 +.byte 0x9a, 0x47, 0x0d, 0xe2, 0x81, 0x41, 0x06, 0xeb, 0x49, 0xf9, 0xb0, 0x29, 0xdd, 0x33, 0xec, 0x50 +.byte 0xa5, 0x7f, 0x79, 0x29, 0xb8, 0x20, 0x98, 0x5c, 0x00, 0x26, 0x02, 0x30, 0x5a, 0x31, 0x0b, 0x30 +.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x46, 0x52, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03 +.byte 0x55, 0x04, 0x0a, 0x0c, 0x09, 0x44, 0x68, 0x69, 0x6d, 0x79, 0x6f, 0x74, 0x69, 0x73, 0x31, 0x1c +.byte 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x13, 0x30, 0x30, 0x30, 0x32, 0x20, 0x34, 0x38 +.byte 0x31, 0x34, 0x36, 0x33, 0x30, 0x38, 0x31, 0x30, 0x30, 0x30, 0x33, 0x36, 0x31, 0x19, 0x30, 0x17 +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x10, 0x43, 0x65, 0x72, 0x74, 0x69, 0x67, 0x6e, 0x61, 0x20 +.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a +.byte 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30 +.byte 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xcd, 0x18, 0x39, 0x65, 0x1a, 0x59, 0xb1, 0xea +.byte 0x64, 0x16, 0x0e, 0x8c, 0x94, 0x24, 0x95, 0x7c, 0x83, 0xd3, 0xc5, 0x39, 0x26, 0xdc, 0x0c, 0xef +.byte 0x16, 0x57, 0x8d, 0xd7, 0xd8, 0xac, 0xa3, 0x42, 0x7f, 0x82, 0xca, 0xed, 0xcd, 0x5b, 0xdb, 0x0e +.byte 0xb7, 0x2d, 0xed, 0x45, 0x08, 0x17, 0xb2, 0xd9, 0xb3, 0xcb, 0xd6, 0x17, 0x52, 0x72, 0x28, 0xdb +.byte 0x8e, 0x4e, 0x9e, 0x8a, 0xb6, 0x0b, 0xf9, 0x9e, 0x84, 0x9a, 0x4d, 0x76, 0xde, 0x22, 0x29, 0x5c +.byte 0xd2, 0xb3, 0xd2, 0x06, 0x3e, 0x30, 0x39, 0xa9, 0x74, 0xa3, 0x92, 0x56, 0x1c, 0xa1, 0x6f, 0x4c +.byte 0x0a, 0x20, 0x6d, 0x9f, 0x23, 0x7a, 0xb4, 0xc6, 0xda, 0x2c, 0xe4, 0x1d, 0x2c, 0xdc, 0xb3, 0x28 +.byte 0xd0, 0x13, 0xf2, 0x4c, 0x4e, 0x02, 0x49, 0xa1, 0x54, 0x40, 0x9e, 0xe6, 0xe5, 0x05, 0xa0, 0x2d +.byte 0x84, 0xc8, 0xff, 0x98, 0x6c, 0xd0, 0xeb, 0x8a, 0x1a, 0x84, 0x08, 0x1e, 0xb7, 0x68, 0x23, 0xee +.byte 0x23, 0xd5, 0x70, 0xce, 0x6d, 0x51, 0x69, 0x10, 0xee, 0xa1, 0x7a, 0xc2, 0xd1, 0x22, 0x31, 0xc2 +.byte 0x82, 0x85, 0xd2, 0xf2, 0x55, 0x76, 0x50, 0x7c, 0x25, 0x7a, 0xc9, 0x84, 0x5c, 0x0b, 0xac, 0xdd +.byte 0x42, 0x4e, 0x2b, 0xe7, 0x82, 0xa2, 0x24, 0x89, 0xcb, 0x90, 0xb2, 0xd0, 0xee, 0x23, 0xba, 0x66 +.byte 0x4c, 0xbb, 0x62, 0xa4, 0xf9, 0x53, 0x5a, 0x64, 0x7b, 0x7c, 0x98, 0xfa, 0xa3, 0x48, 0x9e, 0x0f +.byte 0x95, 0xae, 0xa7, 0x18, 0xf4, 0x6a, 0xec, 0x2e, 0x03, 0x45, 0xaf, 0xf0, 0x74, 0xf8, 0x2a, 0xcd +.byte 0x7a, 0x5d, 0xd1, 0xbe, 0x44, 0x26, 0x32, 0x29, 0xf1, 0xf1, 0xf5, 0x6c, 0xcc, 0x7e, 0x02, 0x21 +.byte 0x0b, 0x9f, 0x6f, 0xa4, 0x3f, 0xbe, 0x9d, 0x53, 0xe2, 0xcf, 0x7d, 0xa9, 0x2c, 0x7c, 0x58, 0x1a +.byte 0x97, 0xe1, 0x3d, 0x37, 0x37, 0x18, 0x66, 0x28, 0xd2, 0x40, 0xc5, 0x51, 0x8a, 0x8c, 0xc3, 0x2d +.byte 0xce, 0x53, 0x88, 0x24, 0x58, 0x64, 0x30, 0x16, 0xc5, 0xaa, 0xe0, 0xd6, 0x0a, 0xa6, 0x40, 0xdf +.byte 0x78, 0xf6, 0xf5, 0x04, 0x7c, 0x69, 0x13, 0x84, 0xbc, 0xd1, 0xd1, 0xa7, 0x06, 0xcf, 0x01, 0xf7 +.byte 0x68, 0xc0, 0xa8, 0x57, 0xbb, 0x3a, 0x61, 0xad, 0x04, 0x8c, 0x93, 0xe3, 0xad, 0xfc, 0xf0, 0xdb +.byte 0x44, 0x6d, 0x59, 0xdc, 0x49, 0x59, 0xae, 0xac, 0x9a, 0x99, 0x36, 0x30, 0x41, 0x7b, 0x76, 0x33 +.byte 0x22, 0x87, 0xa3, 0xc2, 0x92, 0x86, 0x6e, 0xf9, 0x70, 0xee, 0xae, 0x87, 0x87, 0x95, 0x1b, 0xc4 +.byte 0x7a, 0xbd, 0x31, 0xf3, 0xd4, 0xd2, 0xe5, 0x99, 0xff, 0xbe, 0x48, 0xec, 0x75, 0xf5, 0x78, 0x16 +.byte 0x1d, 0xa6, 0x70, 0xc1, 0x7f, 0x3c, 0x1b, 0xa1, 0x92, 0xfb, 0xcf, 0xc8, 0x3c, 0xd6, 0xc5, 0x93 +.byte 0x0a, 0x8f, 0xf5, 0x55, 0x3a, 0x76, 0x95, 0xce, 0x59, 0x98, 0x8a, 0x09, 0x95, 0x77, 0x32, 0x9a +.byte 0x83, 0xba, 0x2c, 0x04, 0x3a, 0x97, 0xbd, 0xd4, 0x2f, 0xbe, 0xd7, 0x6c, 0x9b, 0xa2, 0xca, 0x7d +.byte 0x6d, 0x26, 0xc9, 0x55, 0xd5, 0xcf, 0xc3, 0x79, 0x52, 0x08, 0x09, 0x99, 0x07, 0x24, 0x2d, 0x64 +.byte 0x25, 0x6b, 0xa6, 0x21, 0x69, 0x9b, 0x6a, 0xdd, 0x74, 0x4d, 0x6b, 0x97, 0x7a, 0x41, 0xbd, 0xab +.byte 0x17, 0xf9, 0x90, 0x17, 0x48, 0x8f, 0x36, 0xf9, 0x2d, 0xd5, 0xc5, 0xdb, 0xee, 0xaa, 0x85, 0x45 +.byte 0x41, 0xfa, 0xcd, 0x3a, 0x45, 0xb1, 0x68, 0xe6, 0x36, 0x4c, 0x9b, 0x90, 0x57, 0xec, 0x23, 0xb9 +.byte 0x87, 0x08, 0xc2, 0xc4, 0x09, 0xf1, 0x97, 0x86, 0x2a, 0x28, 0x4d, 0xe2, 0x74, 0xc0, 0xda, 0xc4 +.byte 0x8c, 0xdb, 0xdf, 0xe2, 0xa1, 0x17, 0x59, 0xce, 0x24, 0x59, 0x74, 0x31, 0xda, 0x7f, 0xfd, 0x30 +.byte 0x6d, 0xd9, 0xdc, 0xe1, 0x6a, 0xe1, 0xfc, 0x5f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x5c, 0x00, 0x78 +.byte 0x00, 0x30, 0x5a, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53 +.byte 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x0a, 0x65, 0x6d, 0x53, 0x69, 0x67 +.byte 0x6e, 0x20, 0x50, 0x4b, 0x49, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0b +.byte 0x65, 0x4d, 0x75, 0x64, 0x68, 0x72, 0x61, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x20, 0x30, 0x1e, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x17, 0x65, 0x6d, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x45, 0x43, 0x43 +.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x43, 0x33, 0x30, 0x76, 0x30 +.byte 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00 +.byte 0x22, 0x03, 0x62, 0x00, 0x04, 0xfd, 0xa5, 0x61, 0xae, 0x7b, 0x26, 0x10, 0x1d, 0xe9, 0xb7, 0x22 +.byte 0x30, 0xae, 0x06, 0xf4, 0x81, 0xb3, 0xb1, 0x42, 0x71, 0x95, 0x39, 0xbc, 0xd3, 0x52, 0xe3, 0xaf +.byte 0xaf, 0xf9, 0xf2, 0x97, 0x35, 0x92, 0x36, 0x46, 0x0e, 0x87, 0x95, 0x8d, 0xb9, 0x39, 0x5a, 0xe9 +.byte 0xbb, 0xdf, 0xd0, 0xfe, 0xc8, 0x07, 0x41, 0x3c, 0xbb, 0x55, 0x6f, 0x83, 0xa3, 0x6a, 0xfb, 0x62 +.byte 0xb0, 0x81, 0x89, 0x02, 0x70, 0x7d, 0x48, 0xc5, 0x4a, 0xe3, 0xe9, 0x22, 0x54, 0x22, 0x4d, 0x93 +.byte 0xbb, 0x42, 0x0c, 0xaf, 0x77, 0x9c, 0x23, 0xa6, 0x7d, 0xd7, 0x61, 0x11, 0xce, 0x65, 0xc7, 0xf8 +.byte 0x7f, 0xfe, 0xf5, 0xf2, 0xa9, 0x5f, 0x00, 0x26, 0x01, 0x30, 0x5d, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x4a, 0x50, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x1c, 0x53, 0x45, 0x43, 0x4f, 0x4d, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x53 +.byte 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x20, 0x43, 0x4f, 0x2e, 0x2c, 0x4c, 0x54, 0x44, 0x2e, 0x31 +.byte 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1e, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69 +.byte 0x74, 0x79, 0x20, 0x43, 0x6f, 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e +.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x43, 0x41, 0x32, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09 +.byte 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00 +.byte 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xd0, 0x15, 0x39, 0x52, 0xb1, 0x52, 0xb3 +.byte 0xba, 0xc5, 0x59, 0x82, 0xc4, 0x5d, 0x52, 0xae, 0x3a, 0x43, 0x65, 0x80, 0x4b, 0xc7, 0xf2, 0x96 +.byte 0xbc, 0xdb, 0x36, 0x97, 0xd6, 0xa6, 0x64, 0x8c, 0xa8, 0x5e, 0xf0, 0xe3, 0x0a, 0x1c, 0xf7, 0xdf +.byte 0x97, 0x3d, 0x4b, 0xae, 0xf6, 0x5d, 0xec, 0x21, 0xb5, 0x41, 0xab, 0xcd, 0xb9, 0x7e, 0x76, 0x9f +.byte 0xbe, 0xf9, 0x3e, 0x36, 0x34, 0xa0, 0x3b, 0xc1, 0xf6, 0x31, 0x11, 0x45, 0x74, 0x93, 0x3d, 0x57 +.byte 0x80, 0xc5, 0xf9, 0x89, 0x99, 0xca, 0xe5, 0xab, 0x6a, 0xd4, 0xb5, 0xda, 0x41, 0x90, 0x10, 0xc1 +.byte 0xd6, 0xd6, 0x42, 0x89, 0xc2, 0xbf, 0xf4, 0x38, 0x12, 0x95, 0x4c, 0x54, 0x05, 0xf7, 0x36, 0xe4 +.byte 0x45, 0x83, 0x7b, 0x14, 0x65, 0xd6, 0xdc, 0x0c, 0x4d, 0xd1, 0xde, 0x7e, 0x0c, 0xab, 0x3b, 0xc4 +.byte 0x15, 0xbe, 0x3a, 0x56, 0xa6, 0x5a, 0x6f, 0x76, 0x69, 0x52, 0xa9, 0x7a, 0xb9, 0xc8, 0xeb, 0x6a +.byte 0x9a, 0x5d, 0x52, 0xd0, 0x2d, 0x0a, 0x6b, 0x35, 0x16, 0x09, 0x10, 0x84, 0xd0, 0x6a, 0xca, 0x3a +.byte 0x06, 0x00, 0x37, 0x47, 0xe4, 0x7e, 0x57, 0x4f, 0x3f, 0x8b, 0xeb, 0x67, 0xb8, 0x88, 0xaa, 0xc5 +.byte 0xbe, 0x53, 0x55, 0xb2, 0x91, 0xc4, 0x7d, 0xb9, 0xb0, 0x85, 0x19, 0x06, 0x78, 0x2e, 0xdb, 0x61 +.byte 0x1a, 0xfa, 0x85, 0xf5, 0x4a, 0x91, 0xa1, 0xe7, 0x16, 0xd5, 0x8e, 0xa2, 0x39, 0xdf, 0x94, 0xb8 +.byte 0x70, 0x1f, 0x28, 0x3f, 0x8b, 0xfc, 0x40, 0x5e, 0x63, 0x83, 0x3c, 0x83, 0x2a, 0x1a, 0x99, 0x6b +.byte 0xcf, 0xde, 0x59, 0x6a, 0x3b, 0xfc, 0x6f, 0x16, 0xd7, 0x1f, 0xfd, 0x4a, 0x10, 0xeb, 0x4e, 0x82 +.byte 0x16, 0x3a, 0xac, 0x27, 0x0c, 0x53, 0xf1, 0xad, 0xd5, 0x24, 0xb0, 0x6b, 0x03, 0x50, 0xc1, 0x2d +.byte 0x3c, 0x16, 0xdd, 0x44, 0x34, 0x27, 0x1a, 0x75, 0xfb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x60, 0x00 +.byte 0x26, 0x02, 0x30, 0x5e, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x54 +.byte 0x57, 0x31, 0x23, 0x30, 0x21, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1a, 0x43, 0x68, 0x75, 0x6e +.byte 0x67, 0x68, 0x77, 0x61, 0x20, 0x54, 0x65, 0x6c, 0x65, 0x63, 0x6f, 0x6d, 0x20, 0x43, 0x6f, 0x2e +.byte 0x2c, 0x20, 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x2a, 0x30, 0x28, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c +.byte 0x21, 0x65, 0x50, 0x4b, 0x49, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69 +.byte 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69 +.byte 0x74, 0x79, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d +.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82 +.byte 0x02, 0x01, 0x00, 0xe1, 0x25, 0x0f, 0xee, 0x8d, 0xdb, 0x88, 0x33, 0x75, 0x67, 0xcd, 0xad, 0x1f +.byte 0x7d, 0x3a, 0x4e, 0x6d, 0x9d, 0xd3, 0x2f, 0x14, 0xf3, 0x63, 0x74, 0xcb, 0x01, 0x21, 0x6a, 0x37 +.byte 0xea, 0x84, 0x50, 0x07, 0x4b, 0x26, 0x5b, 0x09, 0x43, 0x6c, 0x21, 0x9e, 0x6a, 0xc8, 0xd5, 0x03 +.byte 0xf5, 0x60, 0x69, 0x8f, 0xcc, 0xf0, 0x22, 0xe4, 0x1f, 0xe7, 0xf7, 0x6a, 0x22, 0x31, 0xb7, 0x2c +.byte 0x15, 0xf2, 0xe0, 0xfe, 0x00, 0x6a, 0x43, 0xff, 0x87, 0x65, 0xc6, 0xb5, 0x1a, 0xc1, 0xa7, 0x4c +.byte 0x6d, 0x22, 0x70, 0x21, 0x8a, 0x31, 0xf2, 0x97, 0x74, 0x89, 0x09, 0x12, 0x26, 0x1c, 0x9e, 0xca +.byte 0xd9, 0x12, 0xa2, 0x95, 0x3c, 0xda, 0xe9, 0x67, 0xbf, 0x08, 0xa0, 0x64, 0xe3, 0xd6, 0x42, 0xb7 +.byte 0x45, 0xef, 0x97, 0xf4, 0xf6, 0xf5, 0xd7, 0xb5, 0x4a, 0x15, 0x02, 0x58, 0x7d, 0x98, 0x58, 0x4b +.byte 0x60, 0xbc, 0xcd, 0xd7, 0x0d, 0x9a, 0x13, 0x33, 0x53, 0xd1, 0x61, 0xf9, 0x7a, 0xd5, 0xd7, 0x78 +.byte 0xb3, 0x9a, 0x33, 0xf7, 0x00, 0x86, 0xce, 0x1d, 0x4d, 0x94, 0x38, 0xaf, 0xa8, 0xec, 0x78, 0x51 +.byte 0x70, 0x8a, 0x5c, 0x10, 0x83, 0x51, 0x21, 0xf7, 0x11, 0x3d, 0x34, 0x86, 0x5e, 0xe5, 0x48, 0xcd +.byte 0x97, 0x81, 0x82, 0x35, 0x4c, 0x19, 0xec, 0x65, 0xf6, 0x6b, 0xc5, 0x05, 0xa1, 0xee, 0x47, 0x13 +.byte 0xd6, 0xb3, 0x21, 0x27, 0x94, 0x10, 0x0a, 0xd9, 0x24, 0x3b, 0xba, 0xbe, 0x44, 0x13, 0x46, 0x30 +.byte 0x3f, 0x97, 0x3c, 0xd8, 0xd7, 0xd7, 0x6a, 0xee, 0x3b, 0x38, 0xe3, 0x2b, 0xd4, 0x97, 0x0e, 0xb9 +.byte 0x1b, 0xe7, 0x07, 0x49, 0x7f, 0x37, 0x2a, 0xf9, 0x77, 0x78, 0xcf, 0x54, 0xed, 0x5b, 0x46, 0x9d +.byte 0xa3, 0x80, 0x0e, 0x91, 0x43, 0xc1, 0xd6, 0x5b, 0x5f, 0x14, 0xba, 0x9f, 0xa6, 0x8d, 0x24, 0x47 +.byte 0x40, 0x59, 0xbf, 0x72, 0x38, 0xb2, 0x36, 0x6c, 0x37, 0xff, 0x99, 0xd1, 0x5d, 0x0e, 0x59, 0x0a +.byte 0xab, 0x69, 0xf7, 0xc0, 0xb2, 0x04, 0x45, 0x7a, 0x54, 0x00, 0xae, 0xbe, 0x53, 0xf6, 0xb5, 0xe7 +.byte 0xe1, 0xf8, 0x3c, 0xa3, 0x31, 0xd2, 0xa9, 0xfe, 0x21, 0x52, 0x64, 0xc5, 0xa6, 0x67, 0xf0, 0x75 +.byte 0x07, 0x06, 0x94, 0x14, 0x81, 0x55, 0xc6, 0x27, 0xe4, 0x01, 0x8f, 0x17, 0xc1, 0x6a, 0x71, 0xd7 +.byte 0xbe, 0x4b, 0xfb, 0x94, 0x58, 0x7d, 0x7e, 0x11, 0x33, 0xb1, 0x42, 0xf7, 0x62, 0x6c, 0x18, 0xd6 +.byte 0xcf, 0x09, 0x68, 0x3e, 0x7f, 0x6c, 0xf6, 0x1e, 0x8f, 0x62, 0xad, 0xa5, 0x63, 0xdb, 0x09, 0xa7 +.byte 0x1f, 0x22, 0x42, 0x41, 0x1e, 0x6f, 0x99, 0x8a, 0x3e, 0xd7, 0xf9, 0x3f, 0x40, 0x7a, 0x79, 0xb0 +.byte 0xa5, 0x01, 0x92, 0xd2, 0x9d, 0x3d, 0x08, 0x15, 0xa5, 0x10, 0x01, 0x2d, 0xb3, 0x32, 0x76, 0xa8 +.byte 0x95, 0x0d, 0xb3, 0x7a, 0x9a, 0xfb, 0x07, 0x10, 0x78, 0x11, 0x6f, 0xe1, 0x8f, 0xc7, 0xba, 0x0f +.byte 0x25, 0x1a, 0x74, 0x2a, 0xe5, 0x1c, 0x98, 0x41, 0x99, 0xdf, 0x21, 0x87, 0xe8, 0x95, 0x06, 0x6a +.byte 0x0a, 0xb3, 0x6a, 0x47, 0x76, 0x65, 0xf6, 0x3a, 0xcf, 0x8f, 0x62, 0x17, 0x19, 0x7b, 0x0a, 0x28 +.byte 0xcd, 0x1a, 0xd2, 0x83, 0x1e, 0x21, 0xc7, 0x2c, 0xbf, 0xbe, 0xff, 0x61, 0x68, 0xb7, 0x67, 0x1b +.byte 0xbb, 0x78, 0x4d, 0x8d, 0xce, 0x67, 0xe5, 0xe4, 0xc1, 0x8e, 0xb7, 0x23, 0x66, 0xe2, 0x9d, 0x90 +.byte 0x75, 0x34, 0x98, 0xa9, 0x36, 0x2b, 0x8a, 0x9a, 0x94, 0xb9, 0x9d, 0xec, 0xcc, 0x8a, 0xb1, 0xf8 +.byte 0x25, 0x89, 0x5c, 0x5a, 0xb6, 0x2f, 0x8c, 0x1f, 0x6d, 0x79, 0x24, 0xa7, 0x52, 0x68, 0xc3, 0x84 +.byte 0x35, 0xe2, 0x66, 0x8d, 0x63, 0x0e, 0x25, 0x4d, 0xd5, 0x19, 0xb2, 0xe6, 0x79, 0x37, 0xa7, 0x22 +.byte 0x9d, 0x54, 0x31, 0x02, 0x03, 0x01, 0x00, 0x01, 0x61, 0x00, 0x78, 0x00, 0x30, 0x5f, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x42, 0x31, 0x18, 0x30, 0x16, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0f, 0x53, 0x65, 0x63, 0x74, 0x69, 0x67, 0x6f, 0x20, 0x4c, 0x69 +.byte 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x36, 0x30, 0x34, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x2d +.byte 0x53, 0x65, 0x63, 0x74, 0x69, 0x67, 0x6f, 0x20, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x20, 0x53 +.byte 0x65, 0x72, 0x76, 0x65, 0x72, 0x20, 0x41, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61 +.byte 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x45, 0x34, 0x36, 0x30, 0x76, 0x30 +.byte 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00 +.byte 0x22, 0x03, 0x62, 0x00, 0x04, 0x76, 0xfa, 0x99, 0xa9, 0x6e, 0x20, 0xed, 0xf9, 0xd7, 0x77, 0xe3 +.byte 0x07, 0x3b, 0xa8, 0xdb, 0x3d, 0x5f, 0x38, 0xe8, 0xab, 0x55, 0xa6, 0x56, 0x4f, 0xd6, 0x48, 0xea +.byte 0xec, 0x7f, 0x2d, 0xaa, 0xc3, 0xb2, 0xc5, 0x79, 0xec, 0x99, 0x61, 0x7f, 0x10, 0x79, 0xc7, 0x02 +.byte 0x5a, 0xf9, 0x04, 0x37, 0xf5, 0x34, 0x35, 0x2b, 0x77, 0xce, 0x7f, 0x20, 0x8f, 0x52, 0xa3, 0x00 +.byte 0x89, 0xec, 0xd5, 0xa7, 0xa2, 0x6d, 0x5b, 0xe3, 0x4b, 0x92, 0x93, 0xa0, 0x80, 0xf5, 0x01, 0x94 +.byte 0xdc, 0xf0, 0x68, 0x07, 0x1e, 0xcd, 0xee, 0xfe, 0x25, 0x52, 0xb5, 0x20, 0x43, 0x1c, 0x1b, 0xfe +.byte 0xeb, 0x19, 0xce, 0x43, 0xa3, 0x61, 0x00, 0x26, 0x02, 0x30, 0x5f, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x42, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x0f, 0x53, 0x65, 0x63, 0x74, 0x69, 0x67, 0x6f, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74 +.byte 0x65, 0x64, 0x31, 0x36, 0x30, 0x34, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x2d, 0x53, 0x65, 0x63 +.byte 0x74, 0x69, 0x67, 0x6f, 0x20, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x20, 0x53, 0x65, 0x72, 0x76 +.byte 0x65, 0x72, 0x20, 0x41, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f +.byte 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x52, 0x34, 0x36, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d +.byte 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02 +.byte 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0x93, 0xbe, 0xd5, 0x36, 0x52 +.byte 0x75, 0xd8, 0x01, 0x23, 0xa0, 0x1c, 0x47, 0x42, 0x49, 0xee, 0x63, 0xb6, 0xb7, 0x21, 0xfd, 0xc4 +.byte 0x95, 0xd5, 0x48, 0x2b, 0x26, 0x7c, 0x14, 0x53, 0x10, 0xda, 0x79, 0xfd, 0x2b, 0xb7, 0x2d, 0xa4 +.byte 0xd4, 0x2c, 0xfa, 0xea, 0x32, 0xdd, 0x49, 0xc2, 0xb9, 0xbd, 0x0f, 0x48, 0x3d, 0x7b, 0x5a, 0x98 +.byte 0x54, 0xaf, 0x9e, 0x5d, 0x31, 0x74, 0x4f, 0x07, 0xfc, 0x50, 0x21, 0xdd, 0xa4, 0xcf, 0x68, 0x4f +.byte 0x1b, 0x12, 0x63, 0x6d, 0x25, 0x99, 0x4c, 0x2a, 0x99, 0xf3, 0x48, 0x30, 0x61, 0xfa, 0x81, 0x7c +.byte 0x1e, 0xa7, 0x08, 0x4a, 0xdc, 0x3e, 0x2b, 0x1c, 0x1f, 0x18, 0x4c, 0x71, 0xaa, 0x35, 0x8c, 0xad +.byte 0xf8, 0x6e, 0xe8, 0x3b, 0x4a, 0xd9, 0xe5, 0x94, 0x02, 0xd6, 0x89, 0x84, 0x13, 0xaa, 0x6d, 0xc8 +.byte 0x4f, 0x33, 0xcc, 0x50, 0x96, 0x37, 0x92, 0x33, 0xdc, 0x5f, 0x88, 0xe7, 0x9f, 0x54, 0xd9, 0x48 +.byte 0xf0, 0x98, 0x43, 0xd6, 0x66, 0xfd, 0x9f, 0x17, 0x38, 0x43, 0xc5, 0x01, 0x51, 0x0b, 0xd7, 0xe3 +.byte 0x23, 0x0f, 0x14, 0x5d, 0x5b, 0x14, 0xe7, 0x4b, 0xbe, 0xdd, 0xf4, 0xc8, 0xda, 0x03, 0x37, 0xd1 +.byte 0xd6, 0x39, 0xa1, 0x21, 0x51, 0x30, 0x83, 0xb0, 0x6d, 0xd7, 0x30, 0x4e, 0x96, 0x5b, 0x91, 0xf0 +.byte 0x70, 0x24, 0xab, 0xbf, 0x45, 0x81, 0x64, 0x43, 0x0d, 0xbd, 0x21, 0x3a, 0x2f, 0x3c, 0xe9, 0x9e +.byte 0x0d, 0xcb, 0x20, 0xb5, 0x42, 0x27, 0xcc, 0xda, 0x6f, 0x9b, 0xee, 0x64, 0x30, 0x90, 0x39, 0xcd +.byte 0x93, 0x65, 0x81, 0x21, 0x31, 0xb5, 0x23, 0x50, 0x33, 0x37, 0x22, 0xe3, 0x38, 0xed, 0xf8, 0x31 +.byte 0x30, 0xcc, 0x45, 0xfe, 0x62, 0xf9, 0xd1, 0x5d, 0x32, 0x79, 0x42, 0x87, 0xdf, 0x6a, 0xcc, 0x56 +.byte 0x19, 0x40, 0x4d, 0xce, 0xaa, 0xbb, 0xf9, 0xb5, 0x76, 0x49, 0x94, 0xf1, 0x27, 0xf8, 0x91, 0xa5 +.byte 0x83, 0xe5, 0x06, 0xb3, 0x63, 0x0e, 0x80, 0xdc, 0xe0, 0x12, 0x55, 0x80, 0xa6, 0x3b, 0x66, 0xb4 +.byte 0x39, 0x87, 0x2d, 0xc8, 0xf0, 0xd0, 0xd1, 0x14, 0xe9, 0xe4, 0x0d, 0x4d, 0x0e, 0xf6, 0x5d, 0x57 +.byte 0x72, 0xc5, 0x3b, 0x1c, 0x47, 0x56, 0x9d, 0xe2, 0xd5, 0xfb, 0x81, 0x61, 0x8c, 0xcc, 0x4d, 0x80 +.byte 0x90, 0x34, 0x5b, 0xb7, 0xd7, 0x14, 0x75, 0xdc, 0xd8, 0x04, 0x48, 0x9f, 0xc0, 0xc1, 0x28, 0x88 +.byte 0xb4, 0xe9, 0x1c, 0xca, 0xa7, 0xb1, 0xf1, 0x56, 0xb7, 0x7b, 0x49, 0x4c, 0x59, 0xe5, 0x20, 0x15 +.byte 0xa8, 0x84, 0x02, 0x29, 0xfa, 0x38, 0x94, 0x69, 0x9a, 0x49, 0x06, 0x8f, 0xcd, 0x1f, 0x79, 0x14 +.byte 0x17, 0x12, 0x0c, 0x83, 0x7a, 0xde, 0x1f, 0xb1, 0x97, 0xee, 0xf9, 0x97, 0x78, 0x28, 0xa4, 0xc8 +.byte 0x44, 0x92, 0xe9, 0x7d, 0x26, 0x05, 0xa6, 0x58, 0x72, 0x9b, 0x79, 0x13, 0xd8, 0x11, 0x5f, 0xae +.byte 0xc5, 0x38, 0x62, 0x34, 0x68, 0xb2, 0x86, 0x30, 0x8e, 0xf8, 0x90, 0x61, 0x9e, 0x32, 0x6c, 0xf5 +.byte 0x07, 0x36, 0xcd, 0xa2, 0x4c, 0x6e, 0xec, 0x8a, 0x36, 0xed, 0xf2, 0xe6, 0x99, 0x15, 0x44, 0x70 +.byte 0xc3, 0x7c, 0xbc, 0x9c, 0x39, 0xc0, 0xb4, 0xe1, 0x6b, 0xf7, 0x83, 0x25, 0x23, 0x57, 0xd9, 0x12 +.byte 0x80, 0xe5, 0x49, 0xf0, 0x75, 0x0f, 0xef, 0x8d, 0xeb, 0x1c, 0x9b, 0x54, 0x28, 0xb4, 0x21, 0x3c +.byte 0xfc, 0x7c, 0x0a, 0xff, 0xef, 0x7b, 0x6b, 0x75, 0xff, 0x8b, 0x1d, 0xa0, 0x19, 0x05, 0xab, 0xfa +.byte 0xf8, 0x2b, 0x81, 0x42, 0xe8, 0x38, 0xba, 0xbb, 0xfb, 0xaa, 0xfd, 0x3d, 0xe0, 0xf3, 0xca, 0xdf +.byte 0x4e, 0x97, 0x97, 0x29, 0xed, 0xf3, 0x18, 0x56, 0xe9, 0xa5, 0x96, 0xac, 0xbd, 0xc3, 0x90, 0x98 +.byte 0xb2, 0xe0, 0xf9, 0xa2, 0xd4, 0xa6, 0x47, 0x43, 0x7c, 0x6d, 0xcf, 0x02, 0x03, 0x01, 0x00, 0x01 +.byte 0x61, 0x00, 0x26, 0x01, 0x30, 0x5f, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x54, 0x57, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x09, 0x54, 0x41 +.byte 0x49, 0x57, 0x41, 0x4e, 0x2d, 0x43, 0x41, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x0b +.byte 0x0c, 0x07, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x31, 0x2a, 0x30, 0x28, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x0c, 0x21, 0x54, 0x57, 0x43, 0x41, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65 +.byte 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68 +.byte 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48 +.byte 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01 +.byte 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xb0, 0x7e, 0x72, 0xb8, 0xa4, 0x03, 0x94, 0xe6, 0xa7, 0xde +.byte 0x09, 0x38, 0x91, 0x4a, 0x11, 0x40, 0x87, 0xa7, 0x7c, 0x59, 0x64, 0x14, 0x7b, 0xb5, 0x11, 0x10 +.byte 0xdd, 0xfe, 0xbf, 0xd5, 0xc0, 0xbb, 0x56, 0xe2, 0x85, 0x25, 0xf4, 0x35, 0x72, 0x0f, 0xf8, 0x53 +.byte 0xd0, 0x41, 0xe1, 0x44, 0x01, 0xc2, 0xb4, 0x1c, 0xc3, 0x31, 0x42, 0x16, 0x47, 0x85, 0x33, 0x22 +.byte 0x76, 0xb2, 0x0a, 0x6f, 0x0f, 0xe5, 0x25, 0x50, 0x4f, 0x85, 0x86, 0xbe, 0xbf, 0x98, 0x2e, 0x10 +.byte 0x67, 0x1e, 0xbe, 0x11, 0x05, 0x86, 0x05, 0x90, 0xc4, 0x59, 0xd0, 0x7c, 0x78, 0x10, 0xb0, 0x80 +.byte 0x5c, 0xb7, 0xe1, 0xc7, 0x2b, 0x75, 0xcb, 0x7c, 0x9f, 0xae, 0xb5, 0xd1, 0x9d, 0x23, 0x37, 0x63 +.byte 0xa7, 0xdc, 0x42, 0xa2, 0x2d, 0x92, 0x04, 0x1b, 0x50, 0xc1, 0x7b, 0xb8, 0x3e, 0x1b, 0xc9, 0x56 +.byte 0x04, 0x8b, 0x2f, 0x52, 0x9b, 0xad, 0xa9, 0x56, 0xe9, 0xc1, 0xff, 0xad, 0xa9, 0x58, 0x87, 0x30 +.byte 0xb6, 0x81, 0xf7, 0x97, 0x45, 0xfc, 0x19, 0x57, 0x3b, 0x2b, 0x6f, 0xe4, 0x47, 0xf4, 0x99, 0x45 +.byte 0xfe, 0x1d, 0xf1, 0xf8, 0x97, 0xa3, 0x88, 0x1d, 0x37, 0x1c, 0x5c, 0x8f, 0xe0, 0x76, 0x25, 0x9a +.byte 0x50, 0xf8, 0xa0, 0x54, 0xff, 0x44, 0x90, 0x76, 0x23, 0xd2, 0x32, 0xc6, 0xc3, 0xab, 0x06, 0xbf +.byte 0xfc, 0xfb, 0xbf, 0xf3, 0xad, 0x7d, 0x92, 0x62, 0x02, 0x5b, 0x29, 0xd3, 0x35, 0xa3, 0x93, 0x9a +.byte 0x43, 0x64, 0x60, 0x5d, 0xb2, 0xfa, 0x32, 0xff, 0x3b, 0x04, 0xaf, 0x4d, 0x40, 0x6a, 0xf9, 0xc7 +.byte 0xe3, 0xef, 0x23, 0xfd, 0x6b, 0xcb, 0xe5, 0x0f, 0x8b, 0x38, 0x0d, 0xee, 0x0a, 0xfc, 0xfe, 0x0f +.byte 0x98, 0x9f, 0x30, 0x31, 0xdd, 0x6c, 0x52, 0x65, 0xf9, 0x8b, 0x81, 0xbe, 0x22, 0xe1, 0x1c, 0x58 +.byte 0x03, 0xba, 0x91, 0x1b, 0x89, 0x07, 0x02, 0x03, 0x01, 0x00, 0x01, 0x63, 0x00, 0x78, 0x00, 0x30 +.byte 0x61, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x4a, 0x50, 0x31, 0x25 +.byte 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1c, 0x53, 0x45, 0x43, 0x4f, 0x4d, 0x20, 0x54 +.byte 0x72, 0x75, 0x73, 0x74, 0x20, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x20, 0x43, 0x4f, 0x2e +.byte 0x2c, 0x4c, 0x54, 0x44, 0x2e, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x22 +.byte 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x20, 0x43, 0x6f, 0x6d, 0x6d, 0x75, 0x6e, 0x69 +.byte 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x43 +.byte 0x41, 0x31, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06 +.byte 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xa4, 0xa5, 0x6f, 0x60, 0x03, 0x03 +.byte 0xc3, 0xbd, 0x31, 0xf4, 0xd3, 0x17, 0x9c, 0x2b, 0x84, 0x75, 0xac, 0xe5, 0xfd, 0x3d, 0x57, 0x6e +.byte 0xd7, 0x63, 0xbf, 0xe6, 0x04, 0x89, 0x92, 0x8e, 0x81, 0x9c, 0xe3, 0xe9, 0x47, 0x6e, 0xca, 0x90 +.byte 0x12, 0xc8, 0x13, 0xe0, 0xa7, 0x9d, 0xf7, 0x65, 0x74, 0x1f, 0x6c, 0x10, 0xb2, 0xe8, 0xe4, 0xe9 +.byte 0xef, 0x6d, 0x85, 0x32, 0x99, 0x44, 0xb1, 0x5e, 0xfd, 0xcc, 0x76, 0x10, 0xd8, 0x5b, 0xbd, 0xa2 +.byte 0xc6, 0xf9, 0xd6, 0x42, 0xe4, 0x57, 0x76, 0xdc, 0x90, 0xc2, 0x35, 0xa9, 0x4b, 0x88, 0x3c, 0x12 +.byte 0x47, 0x6d, 0x5c, 0xff, 0x49, 0x4f, 0x1a, 0x4a, 0x50, 0xb1, 0x63, 0x00, 0x26, 0x02, 0x30, 0x61 +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x54, 0x4e, 0x31, 0x37, 0x30 +.byte 0x35, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x2e, 0x41, 0x67, 0x65, 0x6e, 0x63, 0x65, 0x20, 0x4e +.byte 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x65, 0x20, 0x64, 0x65, 0x20, 0x43, 0x65, 0x72, 0x74 +.byte 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x45, 0x6c, 0x65, 0x63, 0x74, 0x72 +.byte 0x6f, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c +.byte 0x10, 0x54, 0x75, 0x6e, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43 +.byte 0x41, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01 +.byte 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02 +.byte 0x01, 0x00, 0xc3, 0xcd, 0xd3, 0xfc, 0xbd, 0x04, 0x53, 0xdd, 0x0c, 0x20, 0x3a, 0xd5, 0x88, 0x2e +.byte 0x05, 0x4b, 0x41, 0xf5, 0x83, 0x82, 0x7e, 0xf7, 0x59, 0x9f, 0x9e, 0x9e, 0x63, 0xe8, 0x73, 0xda +.byte 0xf6, 0x06, 0xa9, 0x4f, 0x1f, 0xb4, 0xf9, 0x0b, 0x1f, 0x39, 0x8c, 0x9a, 0x20, 0xd0, 0x7e, 0x06 +.byte 0xd4, 0xec, 0x34, 0xd9, 0x86, 0xbc, 0x75, 0x5b, 0x87, 0x88, 0xf0, 0xd2, 0xd9, 0xd4, 0xa3, 0x0a +.byte 0xb2, 0x6c, 0x1b, 0xeb, 0x49, 0x2c, 0x3e, 0xac, 0x5d, 0xd8, 0x94, 0x03, 0xa0, 0xec, 0x34, 0xe5 +.byte 0x30, 0xc4, 0x35, 0x7d, 0xfb, 0x26, 0x4d, 0x1b, 0x6e, 0x30, 0x54, 0xd8, 0xf5, 0x80, 0x45, 0x9c +.byte 0x39, 0xad, 0x9c, 0xc9, 0x25, 0x04, 0x4d, 0x9a, 0x90, 0x3e, 0x4e, 0x40, 0x6e, 0x8a, 0x6b, 0xcd +.byte 0x29, 0x67, 0xc6, 0xcc, 0x2d, 0xe0, 0x74, 0xe8, 0x05, 0x57, 0x0a, 0x48, 0x50, 0xfa, 0x7a, 0x43 +.byte 0xda, 0x7e, 0xec, 0x5b, 0x9a, 0x0e, 0x62, 0x76, 0xfe, 0xea, 0x9d, 0x1d, 0x85, 0x72, 0xec, 0x11 +.byte 0xbb, 0x35, 0xe8, 0x1f, 0x27, 0xbf, 0xc1, 0xa1, 0xc7, 0xbb, 0x48, 0x16, 0xdd, 0x56, 0xd7, 0xcc +.byte 0x4e, 0xa0, 0xe1, 0xb9, 0xac, 0xdb, 0xd5, 0x83, 0x19, 0x1a, 0x85, 0xd1, 0x94, 0x97, 0xd7, 0xca +.byte 0xa3, 0x65, 0x0b, 0xf3, 0x38, 0xf9, 0x02, 0xae, 0xdd, 0xf6, 0x67, 0xcf, 0xc9, 0x3f, 0xf5, 0x8a +.byte 0x2c, 0x47, 0x1a, 0x99, 0x6f, 0x05, 0x0d, 0xfd, 0xd0, 0x1d, 0x82, 0x31, 0xfc, 0x29, 0xcc, 0x00 +.byte 0x58, 0x97, 0x91, 0x4c, 0x80, 0x00, 0x1c, 0x33, 0x85, 0x96, 0x2f, 0xcb, 0x41, 0xc2, 0x8b, 0x10 +.byte 0x84, 0xc3, 0x09, 0x24, 0x89, 0x1f, 0xb5, 0x0f, 0xd9, 0xd9, 0x77, 0x47, 0x18, 0x92, 0x94, 0x60 +.byte 0x5c, 0xc7, 0x99, 0x03, 0x3c, 0xfe, 0xf7, 0x95, 0xa7, 0x7d, 0x50, 0xa1, 0x80, 0xc2, 0xa9, 0x83 +.byte 0xad, 0x58, 0x96, 0x55, 0x21, 0xdb, 0x86, 0x59, 0xd4, 0xaf, 0xc6, 0xbc, 0xdd, 0x81, 0x6e, 0x07 +.byte 0xdb, 0x60, 0x62, 0xfe, 0xec, 0x10, 0x6e, 0xda, 0x68, 0x01, 0xf4, 0x83, 0x1b, 0xa9, 0x3e, 0xa2 +.byte 0x5b, 0x23, 0xd7, 0x64, 0xc6, 0xdf, 0xdc, 0xa2, 0x7d, 0xd8, 0x4b, 0xba, 0x82, 0xd2, 0x51, 0xf8 +.byte 0x66, 0xbf, 0x06, 0x46, 0xe4, 0x79, 0x2a, 0x26, 0x36, 0x79, 0x8f, 0x1f, 0x4e, 0x99, 0x1d, 0xb2 +.byte 0x8f, 0x0c, 0x0e, 0x1c, 0xff, 0xc9, 0x5d, 0xc0, 0xfd, 0x90, 0x10, 0xa6, 0xb1, 0x37, 0xf3, 0xcd +.byte 0x3a, 0x24, 0x6e, 0xb4, 0x85, 0x90, 0xbf, 0x80, 0xb9, 0x0c, 0x8c, 0xd5, 0x9b, 0xd6, 0xc8, 0xf1 +.byte 0x56, 0x3f, 0x1a, 0x80, 0x89, 0x7a, 0xa9, 0xe2, 0x1b, 0x32, 0x51, 0x2c, 0x3e, 0xf2, 0xdf, 0x7b +.byte 0xf6, 0x5d, 0x7a, 0x29, 0x19, 0x8e, 0xe5, 0xc8, 0xbd, 0x36, 0x71, 0x8b, 0x5d, 0x4c, 0xc2, 0x1d +.byte 0x3f, 0xad, 0x58, 0xa2, 0xcf, 0x3d, 0x70, 0x4d, 0xa6, 0x50, 0x98, 0x25, 0xdc, 0x23, 0xf9, 0xb8 +.byte 0x58, 0x41, 0x08, 0x71, 0xbf, 0x4f, 0xb8, 0x84, 0xa0, 0x8f, 0x00, 0x54, 0x15, 0xfc, 0x91, 0x6d +.byte 0x58, 0xa7, 0x96, 0x3b, 0xeb, 0x4b, 0x96, 0x27, 0xcd, 0x6b, 0xa2, 0xa1, 0x86, 0xac, 0x0d, 0x7c +.byte 0x54, 0xe6, 0x66, 0x4c, 0x66, 0x5f, 0x90, 0xbe, 0x21, 0x9a, 0x02, 0x46, 0x2d, 0xe4, 0x83, 0xc2 +.byte 0x80, 0xb9, 0xcf, 0x4b, 0x3e, 0xe8, 0x7f, 0x3c, 0x01, 0xec, 0x8f, 0x5e, 0xcd, 0x7f, 0xd2, 0x28 +.byte 0x42, 0x01, 0x95, 0x8a, 0xe2, 0x97, 0x3d, 0x10, 0x21, 0x7d, 0xf6, 0x9d, 0x1c, 0xc5, 0x34, 0xa1 +.byte 0xec, 0x2c, 0x0e, 0x0a, 0x52, 0x2c, 0x12, 0x55, 0x70, 0x24, 0x3d, 0xcb, 0xc2, 0x14, 0x35, 0x43 +.byte 0x5d, 0x27, 0x4e, 0xbe, 0xc0, 0xbd, 0xaa, 0x7c, 0x96, 0xe7, 0xfc, 0x9e, 0x61, 0xad, 0x44, 0xd3 +.byte 0x00, 0x97, 0x02, 0x03, 0x01, 0x00, 0x01, 0x63, 0x00, 0x26, 0x01, 0x30, 0x61, 0x31, 0x0b, 0x30 +.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03 +.byte 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x49, 0x6e +.byte 0x63, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10, 0x77, 0x77, 0x77, 0x2e +.byte 0x64, 0x69, 0x67, 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x20, 0x30, 0x1e +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x17, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20 +.byte 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82 +.byte 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05 +.byte 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xe2 +.byte 0x3b, 0xe1, 0x11, 0x72, 0xde, 0xa8, 0xa4, 0xd3, 0xa3, 0x57, 0xaa, 0x50, 0xa2, 0x8f, 0x0b, 0x77 +.byte 0x90, 0xc9, 0xa2, 0xa5, 0xee, 0x12, 0xce, 0x96, 0x5b, 0x01, 0x09, 0x20, 0xcc, 0x01, 0x93, 0xa7 +.byte 0x4e, 0x30, 0xb7, 0x53, 0xf7, 0x43, 0xc4, 0x69, 0x00, 0x57, 0x9d, 0xe2, 0x8d, 0x22, 0xdd, 0x87 +.byte 0x06, 0x40, 0x00, 0x81, 0x09, 0xce, 0xce, 0x1b, 0x83, 0xbf, 0xdf, 0xcd, 0x3b, 0x71, 0x46, 0xe2 +.byte 0xd6, 0x66, 0xc7, 0x05, 0xb3, 0x76, 0x27, 0x16, 0x8f, 0x7b, 0x9e, 0x1e, 0x95, 0x7d, 0xee, 0xb7 +.byte 0x48, 0xa3, 0x08, 0xda, 0xd6, 0xaf, 0x7a, 0x0c, 0x39, 0x06, 0x65, 0x7f, 0x4a, 0x5d, 0x1f, 0xbc +.byte 0x17, 0xf8, 0xab, 0xbe, 0xee, 0x28, 0xd7, 0x74, 0x7f, 0x7a, 0x78, 0x99, 0x59, 0x85, 0x68, 0x6e +.byte 0x5c, 0x23, 0x32, 0x4b, 0xbf, 0x4e, 0xc0, 0xe8, 0x5a, 0x6d, 0xe3, 0x70, 0xbf, 0x77, 0x10, 0xbf +.byte 0xfc, 0x01, 0xf6, 0x85, 0xd9, 0xa8, 0x44, 0x10, 0x58, 0x32, 0xa9, 0x75, 0x18, 0xd5, 0xd1, 0xa2 +.byte 0xbe, 0x47, 0xe2, 0x27, 0x6a, 0xf4, 0x9a, 0x33, 0xf8, 0x49, 0x08, 0x60, 0x8b, 0xd4, 0x5f, 0xb4 +.byte 0x3a, 0x84, 0xbf, 0xa1, 0xaa, 0x4a, 0x4c, 0x7d, 0x3e, 0xcf, 0x4f, 0x5f, 0x6c, 0x76, 0x5e, 0xa0 +.byte 0x4b, 0x37, 0x91, 0x9e, 0xdc, 0x22, 0xe6, 0x6d, 0xce, 0x14, 0x1a, 0x8e, 0x6a, 0xcb, 0xfe, 0xcd +.byte 0xb3, 0x14, 0x64, 0x17, 0xc7, 0x5b, 0x29, 0x9e, 0x32, 0xbf, 0xf2, 0xee, 0xfa, 0xd3, 0x0b, 0x42 +.byte 0xd4, 0xab, 0xb7, 0x41, 0x32, 0xda, 0x0c, 0xd4, 0xef, 0xf8, 0x81, 0xd5, 0xbb, 0x8d, 0x58, 0x3f +.byte 0xb5, 0x1b, 0xe8, 0x49, 0x28, 0xa2, 0x70, 0xda, 0x31, 0x04, 0xdd, 0xf7, 0xb2, 0x16, 0xf2, 0x4c +.byte 0x0a, 0x4e, 0x07, 0xa8, 0xed, 0x4a, 0x3d, 0x5e, 0xb5, 0x7f, 0xa3, 0x90, 0xc3, 0xaf, 0x27, 0x02 +.byte 0x03, 0x01, 0x00, 0x01, 0x63, 0x00, 0x26, 0x01, 0x30, 0x61, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19 +.byte 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67 +.byte 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x13, 0x17, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x47, 0x6c, 0x6f +.byte 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x32, 0x30, 0x82, 0x01, 0x22, 0x30 +.byte 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82 +.byte 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xbb, 0x37, 0xcd, 0x34 +.byte 0xdc, 0x7b, 0x6b, 0xc9, 0xb2, 0x68, 0x90, 0xad, 0x4a, 0x75, 0xff, 0x46, 0xba, 0x21, 0x0a, 0x08 +.byte 0x8d, 0xf5, 0x19, 0x54, 0xc9, 0xfb, 0x88, 0xdb, 0xf3, 0xae, 0xf2, 0x3a, 0x89, 0x91, 0x3c, 0x7a +.byte 0xe6, 0xab, 0x06, 0x1a, 0x6b, 0xcf, 0xac, 0x2d, 0xe8, 0x5e, 0x09, 0x24, 0x44, 0xba, 0x62, 0x9a +.byte 0x7e, 0xd6, 0xa3, 0xa8, 0x7e, 0xe0, 0x54, 0x75, 0x20, 0x05, 0xac, 0x50, 0xb7, 0x9c, 0x63, 0x1a +.byte 0x6c, 0x30, 0xdc, 0xda, 0x1f, 0x19, 0xb1, 0xd7, 0x1e, 0xde, 0xfd, 0xd7, 0xe0, 0xcb, 0x94, 0x83 +.byte 0x37, 0xae, 0xec, 0x1f, 0x43, 0x4e, 0xdd, 0x7b, 0x2c, 0xd2, 0xbd, 0x2e, 0xa5, 0x2f, 0xe4, 0xa9 +.byte 0xb8, 0xad, 0x3a, 0xd4, 0x99, 0xa4, 0xb6, 0x25, 0xe9, 0x9b, 0x6b, 0x00, 0x60, 0x92, 0x60, 0xff +.byte 0x4f, 0x21, 0x49, 0x18, 0xf7, 0x67, 0x90, 0xab, 0x61, 0x06, 0x9c, 0x8f, 0xf2, 0xba, 0xe9, 0xb4 +.byte 0xe9, 0x92, 0x32, 0x6b, 0xb5, 0xf3, 0x57, 0xe8, 0x5d, 0x1b, 0xcd, 0x8c, 0x1d, 0xab, 0x95, 0x04 +.byte 0x95, 0x49, 0xf3, 0x35, 0x2d, 0x96, 0xe3, 0x49, 0x6d, 0xdd, 0x77, 0xe3, 0xfb, 0x49, 0x4b, 0xb4 +.byte 0xac, 0x55, 0x07, 0xa9, 0x8f, 0x95, 0xb3, 0xb4, 0x23, 0xbb, 0x4c, 0x6d, 0x45, 0xf0, 0xf6, 0xa9 +.byte 0xb2, 0x95, 0x30, 0xb4, 0xfd, 0x4c, 0x55, 0x8c, 0x27, 0x4a, 0x57, 0x14, 0x7c, 0x82, 0x9d, 0xcd +.byte 0x73, 0x92, 0xd3, 0x16, 0x4a, 0x06, 0x0c, 0x8c, 0x50, 0xd1, 0x8f, 0x1e, 0x09, 0xbe, 0x17, 0xa1 +.byte 0xe6, 0x21, 0xca, 0xfd, 0x83, 0xe5, 0x10, 0xbc, 0x83, 0xa5, 0x0a, 0xc4, 0x67, 0x28, 0xf6, 0x73 +.byte 0x14, 0x14, 0x3d, 0x46, 0x76, 0xc3, 0x87, 0x14, 0x89, 0x21, 0x34, 0x4d, 0xaf, 0x0f, 0x45, 0x0c +.byte 0xa6, 0x49, 0xa1, 0xba, 0xbb, 0x9c, 0xc5, 0xb1, 0x33, 0x83, 0x29, 0x85, 0x02, 0x03, 0x01, 0x00 +.byte 0x01, 0x63, 0x00, 0x78, 0x00, 0x30, 0x61, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 +.byte 0x13, 0x02, 0x55, 0x53, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44 +.byte 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17, 0x06 +.byte 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63, 0x65 +.byte 0x72, 0x74, 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13 +.byte 0x17, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c +.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x33, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86 +.byte 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04 +.byte 0xdd, 0xa7, 0xd9, 0xbb, 0x8a, 0xb8, 0x0b, 0xfb, 0x0b, 0x7f, 0x21, 0xd2, 0xf0, 0xbe, 0xbe, 0x73 +.byte 0xf3, 0x33, 0x5d, 0x1a, 0xbc, 0x34, 0xea, 0xde, 0xc6, 0x9b, 0xbc, 0xd0, 0x95, 0xf6, 0xf0, 0xcc +.byte 0xd0, 0x0b, 0xba, 0x61, 0x5b, 0x51, 0x46, 0x7e, 0x9e, 0x2d, 0x9f, 0xee, 0x8e, 0x63, 0x0c, 0x17 +.byte 0xec, 0x07, 0x70, 0xf5, 0xcf, 0x84, 0x2e, 0x40, 0x83, 0x9c, 0xe8, 0x3f, 0x41, 0x6d, 0x3b, 0xad +.byte 0xd3, 0xa4, 0x14, 0x59, 0x36, 0x78, 0x9d, 0x03, 0x43, 0xee, 0x10, 0x13, 0x6c, 0x72, 0xde, 0xae +.byte 0x88, 0xa7, 0xa1, 0x6b, 0xb5, 0x43, 0xce, 0x67, 0xdc, 0x23, 0xff, 0x03, 0x1c, 0xa3, 0xe2, 0x3e +.byte 0x64, 0x00, 0x26, 0x02, 0x30, 0x62, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x43, 0x4e, 0x31, 0x32, 0x30, 0x30, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x29, 0x47, 0x55 +.byte 0x41, 0x4e, 0x47, 0x20, 0x44, 0x4f, 0x4e, 0x47, 0x20, 0x43, 0x45, 0x52, 0x54, 0x49, 0x46, 0x49 +.byte 0x43, 0x41, 0x54, 0x45, 0x20, 0x41, 0x55, 0x54, 0x48, 0x4f, 0x52, 0x49, 0x54, 0x59, 0x20, 0x43 +.byte 0x4f, 0x2e, 0x2c, 0x4c, 0x54, 0x44, 0x2e, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x0c, 0x16, 0x47, 0x44, 0x43, 0x41, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x41, 0x55, 0x54, 0x48 +.byte 0x20, 0x52, 0x35, 0x20, 0x52, 0x4f, 0x4f, 0x54, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09 +.byte 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00 +.byte 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xd9, 0xa3, 0x16, 0xf0, 0xc8, 0x74, 0x74 +.byte 0x77, 0x9b, 0xef, 0x33, 0x0d, 0x3b, 0x06, 0x7e, 0x55, 0xfc, 0xb5, 0x60, 0x8f, 0x76, 0x86, 0x12 +.byte 0x42, 0x7d, 0x56, 0x66, 0x3e, 0x88, 0x82, 0xed, 0x72, 0x63, 0x0e, 0x9e, 0x8b, 0xdd, 0x34, 0x2c +.byte 0x02, 0x51, 0x51, 0xc3, 0x19, 0xfd, 0x59, 0x54, 0x84, 0xc9, 0xf1, 0x6b, 0xb3, 0x4c, 0xb0, 0xe9 +.byte 0xe8, 0x46, 0x5d, 0x38, 0xc6, 0xa2, 0xa7, 0x2e, 0x11, 0x57, 0xba, 0x82, 0x15, 0xa2, 0x9c, 0x8f +.byte 0x6d, 0xb0, 0x99, 0x4a, 0x0a, 0xf2, 0xeb, 0x89, 0x70, 0x63, 0x4e, 0x79, 0xc4, 0xb7, 0x5b, 0xbd +.byte 0xa2, 0x5d, 0xb1, 0xf2, 0x41, 0x02, 0x2b, 0xad, 0xa9, 0x3a, 0xa3, 0xec, 0x79, 0x0a, 0xec, 0x5f +.byte 0x3a, 0xe3, 0xfd, 0xef, 0x80, 0x3c, 0xad, 0x34, 0x9b, 0x1a, 0xab, 0x88, 0x26, 0x7b, 0x56, 0xa2 +.byte 0x82, 0x86, 0x1f, 0xeb, 0x35, 0x89, 0x83, 0x7f, 0x5f, 0xae, 0x29, 0x4e, 0x3d, 0xb6, 0x6e, 0xec +.byte 0xae, 0xc1, 0xf0, 0x27, 0x9b, 0xae, 0xe3, 0xf4, 0xec, 0xef, 0xae, 0x7f, 0xf7, 0x86, 0x3d, 0x72 +.byte 0x7a, 0xeb, 0xa5, 0xfb, 0x59, 0x4e, 0xa7, 0xeb, 0x95, 0x8c, 0x22, 0x39, 0x79, 0xe1, 0x2d, 0x08 +.byte 0x8f, 0xcc, 0xbc, 0x91, 0xb8, 0x41, 0xf7, 0x14, 0xc1, 0x23, 0xa9, 0xc3, 0xad, 0x9a, 0x45, 0x44 +.byte 0xb3, 0xb2, 0xd7, 0x2c, 0xcd, 0xc6, 0x29, 0xe2, 0x50, 0x10, 0xae, 0x5c, 0xcb, 0x82, 0x8e, 0x17 +.byte 0x18, 0x36, 0x7d, 0x97, 0xe6, 0x88, 0x9a, 0xb0, 0x4d, 0x34, 0x09, 0xf4, 0x2c, 0xb9, 0x5a, 0x66 +.byte 0x2a, 0xb0, 0x17, 0x9b, 0x9e, 0x1e, 0x76, 0x9d, 0x4a, 0x66, 0x31, 0x41, 0xdf, 0x3f, 0xfb, 0xc5 +.byte 0x06, 0xef, 0x1b, 0xb6, 0x7e, 0x1a, 0x46, 0x36, 0xf7, 0x64, 0x63, 0x3b, 0xe3, 0x39, 0x18, 0x23 +.byte 0xe7, 0x67, 0x75, 0x14, 0xd5, 0x75, 0x57, 0x92, 0x37, 0xbd, 0xbe, 0x6a, 0x1b, 0x26, 0x50, 0xf2 +.byte 0x36, 0x26, 0x06, 0x90, 0xc5, 0x70, 0x01, 0x64, 0x6d, 0x76, 0x66, 0xe1, 0x91, 0xdb, 0x6e, 0x07 +.byte 0xc0, 0x61, 0x80, 0x2e, 0xb2, 0x2e, 0x2f, 0x8c, 0x70, 0xa7, 0xd1, 0x3b, 0x3c, 0xb3, 0x91, 0xe4 +.byte 0x6e, 0xb6, 0xc4, 0x3b, 0x70, 0xf2, 0x6c, 0x92, 0x97, 0x09, 0xcd, 0x47, 0x7d, 0x18, 0xc0, 0xf3 +.byte 0xbb, 0x9e, 0x0f, 0xd6, 0x8b, 0xae, 0x07, 0xb6, 0x5a, 0x0f, 0xce, 0x0b, 0x0c, 0x47, 0xa7, 0xe5 +.byte 0x3e, 0xb8, 0xbd, 0x7d, 0xc7, 0x9b, 0x35, 0xa0, 0x61, 0x97, 0x3a, 0x41, 0x75, 0x17, 0xcc, 0x2b +.byte 0x96, 0x77, 0x2a, 0x92, 0x21, 0x1e, 0xd9, 0x95, 0x76, 0x20, 0x67, 0x68, 0xcf, 0x0d, 0xbd, 0xdf +.byte 0xd6, 0x1f, 0x09, 0x6a, 0x9a, 0xe2, 0xcc, 0x73, 0x71, 0xa4, 0x2f, 0x7d, 0x12, 0x80, 0xb7, 0x53 +.byte 0x30, 0x46, 0x5e, 0x4b, 0x54, 0x99, 0x0f, 0x67, 0xc9, 0xa5, 0xc8, 0xf2, 0x20, 0xc1, 0x82, 0xec +.byte 0x9d, 0x11, 0xdf, 0xc2, 0x02, 0xfb, 0x1a, 0x3b, 0xd1, 0xed, 0x20, 0x9a, 0xef, 0x65, 0x64, 0x92 +.byte 0x10, 0x0d, 0x2a, 0xe2, 0xde, 0x70, 0xf1, 0x18, 0x67, 0x82, 0x8c, 0x61, 0xde, 0xb8, 0xbc, 0xd1 +.byte 0x2f, 0x9c, 0xfb, 0x0f, 0xd0, 0x2b, 0xed, 0x1b, 0x76, 0xb9, 0xe4, 0x39, 0x55, 0xf8, 0xf8, 0xa1 +.byte 0x1d, 0xb8, 0xaa, 0x80, 0x00, 0x4c, 0x82, 0xe7, 0xb2, 0x7f, 0x09, 0xb8, 0xbc, 0x30, 0xa0, 0x2f +.byte 0x0d, 0xf5, 0x52, 0x9e, 0x8e, 0xf7, 0x92, 0xb3, 0x0a, 0x00, 0x1d, 0x00, 0x54, 0x97, 0x06, 0xe0 +.byte 0xb1, 0x07, 0xd9, 0xc7, 0x0f, 0x5c, 0x65, 0x7d, 0x3c, 0x6d, 0x59, 0x57, 0xe4, 0xed, 0xa5, 0x8d +.byte 0xe9, 0x40, 0x53, 0x9f, 0x15, 0x4b, 0xa0, 0x71, 0xf6, 0x1a, 0x21, 0xe3, 0xda, 0x70, 0x06, 0x21 +.byte 0x58, 0x14, 0x87, 0x85, 0x77, 0x79, 0xaa, 0x82, 0x79, 0x02, 0x03, 0x01, 0x00, 0x01, 0x64, 0x00 +.byte 0x26, 0x02, 0x30, 0x62, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55 +.byte 0x53, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69 +.byte 0x43, 0x65, 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04 +.byte 0x0b, 0x13, 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e +.byte 0x63, 0x6f, 0x6d, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x18, 0x44, 0x69 +.byte 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x65, 0x64, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x34, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86 +.byte 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82 +.byte 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xbf, 0xe6, 0x90, 0x73, 0x68, 0xde, 0xbb, 0xe4, 0x5d +.byte 0x4a, 0x3c, 0x30, 0x22, 0x30, 0x69, 0x33, 0xec, 0xc2, 0xa7, 0x25, 0x2e, 0xc9, 0x21, 0x3d, 0xf2 +.byte 0x8a, 0xd8, 0x59, 0xc2, 0xe1, 0x29, 0xa7, 0x3d, 0x58, 0xab, 0x76, 0x9a, 0xcd, 0xae, 0x7b, 0x1b +.byte 0x84, 0x0d, 0xc4, 0x30, 0x1f, 0xf3, 0x1b, 0xa4, 0x38, 0x16, 0xeb, 0x56, 0xc6, 0x97, 0x6d, 0x1d +.byte 0xab, 0xb2, 0x79, 0xf2, 0xca, 0x11, 0xd2, 0xe4, 0x5f, 0xd6, 0x05, 0x3c, 0x52, 0x0f, 0x52, 0x1f +.byte 0xc6, 0x9e, 0x15, 0xa5, 0x7e, 0xbe, 0x9f, 0xa9, 0x57, 0x16, 0x59, 0x55, 0x72, 0xaf, 0x68, 0x93 +.byte 0x70, 0xc2, 0xb2, 0xba, 0x75, 0x99, 0x6a, 0x73, 0x32, 0x94, 0xd1, 0x10, 0x44, 0x10, 0x2e, 0xdf +.byte 0x82, 0xf3, 0x07, 0x84, 0xe6, 0x74, 0x3b, 0x6d, 0x71, 0xe2, 0x2d, 0x0c, 0x1b, 0xee, 0x20, 0xd5 +.byte 0xc9, 0x20, 0x1d, 0x63, 0x29, 0x2d, 0xce, 0xec, 0x5e, 0x4e, 0xc8, 0x93, 0xf8, 0x21, 0x61, 0x9b +.byte 0x34, 0xeb, 0x05, 0xc6, 0x5e, 0xec, 0x5b, 0x1a, 0xbc, 0xeb, 0xc9, 0xcf, 0xcd, 0xac, 0x34, 0x40 +.byte 0x5f, 0xb1, 0x7a, 0x66, 0xee, 0x77, 0xc8, 0x48, 0xa8, 0x66, 0x57, 0x57, 0x9f, 0x54, 0x58, 0x8e +.byte 0x0c, 0x2b, 0xb7, 0x4f, 0xa7, 0x30, 0xd9, 0x56, 0xee, 0xca, 0x7b, 0x5d, 0xe3, 0xad, 0xc9, 0x4f +.byte 0x5e, 0xe5, 0x35, 0xe7, 0x31, 0xcb, 0xda, 0x93, 0x5e, 0xdc, 0x8e, 0x8f, 0x80, 0xda, 0xb6, 0x91 +.byte 0x98, 0x40, 0x90, 0x79, 0xc3, 0x78, 0xc7, 0xb6, 0xb1, 0xc4, 0xb5, 0x6a, 0x18, 0x38, 0x03, 0x10 +.byte 0x8d, 0xd8, 0xd4, 0x37, 0xa4, 0x2e, 0x05, 0x7d, 0x88, 0xf5, 0x82, 0x3e, 0x10, 0x91, 0x70, 0xab +.byte 0x55, 0x82, 0x41, 0x32, 0xd7, 0xdb, 0x04, 0x73, 0x2a, 0x6e, 0x91, 0x01, 0x7c, 0x21, 0x4c, 0xd4 +.byte 0xbc, 0xae, 0x1b, 0x03, 0x75, 0x5d, 0x78, 0x66, 0xd9, 0x3a, 0x31, 0x44, 0x9a, 0x33, 0x40, 0xbf +.byte 0x08, 0xd7, 0x5a, 0x49, 0xa4, 0xc2, 0xe6, 0xa9, 0xa0, 0x67, 0xdd, 0xa4, 0x27, 0xbc, 0xa1, 0x4f +.byte 0x39, 0xb5, 0x11, 0x58, 0x17, 0xf7, 0x24, 0x5c, 0x46, 0x8f, 0x64, 0xf7, 0xc1, 0x69, 0x88, 0x76 +.byte 0x98, 0x76, 0x3d, 0x59, 0x5d, 0x42, 0x76, 0x87, 0x89, 0x97, 0x69, 0x7a, 0x48, 0xf0, 0xe0, 0xa2 +.byte 0x12, 0x1b, 0x66, 0x9a, 0x74, 0xca, 0xde, 0x4b, 0x1e, 0xe7, 0x0e, 0x63, 0xae, 0xe6, 0xd4, 0xef +.byte 0x92, 0x92, 0x3a, 0x9e, 0x3d, 0xdc, 0x00, 0xe4, 0x45, 0x25, 0x89, 0xb6, 0x9a, 0x44, 0x19, 0x2b +.byte 0x7e, 0xc0, 0x94, 0xb4, 0xd2, 0x61, 0x6d, 0xeb, 0x33, 0xd9, 0xc5, 0xdf, 0x4b, 0x04, 0x00, 0xcc +.byte 0x7d, 0x1c, 0x95, 0xc3, 0x8f, 0xf7, 0x21, 0xb2, 0xb2, 0x11, 0xb7, 0xbb, 0x7f, 0xf2, 0xd5, 0x8c +.byte 0x70, 0x2c, 0x41, 0x60, 0xaa, 0xb1, 0x63, 0x18, 0x44, 0x95, 0x1a, 0x76, 0x62, 0x7e, 0xf6, 0x80 +.byte 0xb0, 0xfb, 0xe8, 0x64, 0xa6, 0x33, 0xd1, 0x89, 0x07, 0xe1, 0xbd, 0xb7, 0xe6, 0x43, 0xa4, 0x18 +.byte 0xb8, 0xa6, 0x77, 0x01, 0xe1, 0x0f, 0x94, 0x0c, 0x21, 0x1d, 0xb2, 0x54, 0x29, 0x25, 0x89, 0x6c +.byte 0xe5, 0x0e, 0x52, 0x51, 0x47, 0x74, 0xbe, 0x26, 0xac, 0xb6, 0x41, 0x75, 0xde, 0x7a, 0xac, 0x5f +.byte 0x8d, 0x3f, 0xc9, 0xbc, 0xd3, 0x41, 0x11, 0x12, 0x5b, 0xe5, 0x10, 0x50, 0xeb, 0x31, 0xc5, 0xca +.byte 0x72, 0x16, 0x22, 0x09, 0xdf, 0x7c, 0x4c, 0x75, 0x3f, 0x63, 0xec, 0x21, 0x5f, 0xc4, 0x20, 0x51 +.byte 0x6b, 0x6f, 0xb1, 0xab, 0x86, 0x8b, 0x4f, 0xc2, 0xd6, 0x45, 0x5f, 0x9d, 0x20, 0xfc, 0xa1, 0x1e +.byte 0xc5, 0xc0, 0x8f, 0xa2, 0xb1, 0x7e, 0x0a, 0x26, 0x99, 0xf5, 0xe4, 0x69, 0x2f, 0x98, 0x1d, 0x2d +.byte 0xf5, 0xd9, 0xa9, 0xb2, 0x1d, 0xe5, 0x1b, 0x02, 0x03, 0x01, 0x00, 0x01, 0x65, 0x00, 0x78, 0x00 +.byte 0x30, 0x63, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x31 +.byte 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1e, 0x44, 0x65, 0x75, 0x74, 0x73, 0x63 +.byte 0x68, 0x65, 0x20, 0x54, 0x65, 0x6c, 0x65, 0x6b, 0x6f, 0x6d, 0x20, 0x53, 0x65, 0x63, 0x75, 0x72 +.byte 0x69, 0x74, 0x79, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x0c, 0x22, 0x54, 0x65, 0x6c, 0x65, 0x6b, 0x6f, 0x6d, 0x20, 0x53, 0x65, 0x63, 0x75, 0x72 +.byte 0x69, 0x74, 0x79, 0x20, 0x54, 0x4c, 0x53, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74 +.byte 0x20, 0x32, 0x30, 0x32, 0x30, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d +.byte 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xce, 0xbf, 0xfe +.byte 0x57, 0xa8, 0xbf, 0xd5, 0xaa, 0xf7, 0x10, 0x9a, 0xcd, 0xbc, 0xd1, 0x11, 0xa2, 0xbd, 0x67, 0x42 +.byte 0xcc, 0x90, 0xeb, 0x15, 0x18, 0x90, 0xd9, 0xa2, 0xcd, 0x0c, 0x2a, 0x25, 0xeb, 0x3e, 0x4f, 0xce +.byte 0xb5, 0xd2, 0x8f, 0x0f, 0xf3, 0x35, 0xda, 0x43, 0x8b, 0x02, 0x80, 0xbe, 0x6f, 0x51, 0x24, 0x1d +.byte 0x0f, 0x6b, 0x2b, 0xca, 0x9f, 0xc2, 0x6f, 0x50, 0x32, 0xe5, 0x37, 0x20, 0xb6, 0x20, 0xff, 0x88 +.byte 0x0d, 0x0f, 0x6d, 0x49, 0xbb, 0xdb, 0x06, 0xa4, 0x87, 0x90, 0x92, 0x94, 0xf4, 0x09, 0xd0, 0xcf +.byte 0x7f, 0xc8, 0x80, 0x0b, 0xc1, 0x97, 0xb3, 0xbb, 0x35, 0x27, 0xc9, 0xc2, 0x1b, 0x65, 0x00, 0x26 +.byte 0x02, 0x30, 0x63, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45 +.byte 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1e, 0x44, 0x65, 0x75, 0x74, 0x73 +.byte 0x63, 0x68, 0x65, 0x20, 0x54, 0x65, 0x6c, 0x65, 0x6b, 0x6f, 0x6d, 0x20, 0x53, 0x65, 0x63, 0x75 +.byte 0x72, 0x69, 0x74, 0x79, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x0c, 0x22, 0x54, 0x65, 0x6c, 0x65, 0x6b, 0x6f, 0x6d, 0x20, 0x53, 0x65, 0x63, 0x75 +.byte 0x72, 0x69, 0x74, 0x79, 0x20, 0x54, 0x4c, 0x53, 0x20, 0x52, 0x53, 0x41, 0x20, 0x52, 0x6f, 0x6f +.byte 0x74, 0x20, 0x32, 0x30, 0x32, 0x33, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86 +.byte 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82 +.byte 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xed, 0x35, 0xa1, 0x81, 0x80, 0xf3, 0xcb, 0x4a, 0x69 +.byte 0x5b, 0xc2, 0xfb, 0x51, 0x83, 0xae, 0x26, 0xfd, 0xe1, 0x6e, 0xf3, 0x81, 0x12, 0x7d, 0x71, 0x40 +.byte 0xff, 0x87, 0x75, 0x42, 0x29, 0x21, 0xed, 0x81, 0x52, 0x2c, 0xdf, 0x12, 0xc1, 0x19, 0x84, 0x89 +.byte 0xc1, 0xbd, 0xc5, 0x28, 0xd5, 0xd5, 0x4b, 0x6c, 0x44, 0xd6, 0x4c, 0xdb, 0x07, 0x96, 0x4a, 0x55 +.byte 0x7a, 0xca, 0x36, 0x82, 0x04, 0x36, 0xa8, 0xa5, 0xfc, 0x27, 0xf6, 0x49, 0xf1, 0xd5, 0x72, 0x9e +.byte 0x91, 0xf9, 0x23, 0xd6, 0x70, 0x7b, 0xbb, 0xf5, 0x9b, 0xc1, 0xec, 0x93, 0xcf, 0x19, 0xea, 0x65 +.byte 0x7e, 0x88, 0x70, 0xa0, 0x73, 0xfc, 0xf6, 0xff, 0xb5, 0x56, 0x62, 0xe1, 0x73, 0x6a, 0x34, 0x98 +.byte 0x3e, 0x82, 0xb8, 0xac, 0x95, 0x53, 0xf4, 0x01, 0xa0, 0x27, 0x07, 0x72, 0xa3, 0x00, 0x53, 0xa0 +.byte 0xe4, 0xb2, 0xab, 0x83, 0x38, 0x57, 0x33, 0x25, 0x94, 0x9f, 0xbe, 0x48, 0x1d, 0x98, 0xe1, 0xa3 +.byte 0xba, 0x9e, 0x5c, 0xcd, 0x04, 0x71, 0x51, 0x7d, 0x75, 0x78, 0xab, 0xf3, 0x59, 0xaa, 0xc4, 0xe0 +.byte 0x60, 0xbe, 0x8f, 0x83, 0x52, 0xb8, 0x75, 0x1a, 0x41, 0x35, 0xed, 0xbc, 0xf3, 0x3a, 0x63, 0xe9 +.byte 0xa9, 0x14, 0x45, 0xd7, 0xe6, 0x52, 0xd1, 0x6e, 0xd2, 0xde, 0xbc, 0xe3, 0xf5, 0x0b, 0x3b, 0xe6 +.byte 0xe0, 0xc4, 0xbd, 0x43, 0x64, 0x13, 0xa6, 0xce, 0xf4, 0x98, 0x37, 0x6c, 0x8a, 0x95, 0xa8, 0x97 +.byte 0xc8, 0x47, 0x0f, 0xf0, 0x5e, 0x10, 0x8b, 0xe7, 0x1d, 0x1c, 0xfe, 0xb1, 0x3b, 0xa0, 0x05, 0x33 +.byte 0x68, 0x05, 0x41, 0x82, 0xc1, 0x03, 0x2b, 0x01, 0xc8, 0xe7, 0x8f, 0x4d, 0xab, 0xe8, 0xb5, 0xf6 +.byte 0xcd, 0x6b, 0x44, 0xb5, 0xe7, 0xdd, 0x8b, 0xec, 0xea, 0x25, 0xb4, 0x00, 0x22, 0x57, 0x4d, 0xb0 +.byte 0xb1, 0xb2, 0x31, 0xc1, 0x16, 0xce, 0xff, 0xfd, 0x14, 0x84, 0xb7, 0x47, 0xfa, 0xb2, 0xf1, 0x70 +.byte 0xde, 0xdb, 0x8b, 0x6c, 0x36, 0x58, 0xa4, 0x7c, 0xb3, 0x11, 0xd1, 0xc3, 0x77, 0x7f, 0x5f, 0xb6 +.byte 0x25, 0xe0, 0x0d, 0xc5, 0xd2, 0xb3, 0xf9, 0xb8, 0xb8, 0x77, 0xdb, 0x37, 0x71, 0x71, 0x47, 0xe3 +.byte 0x60, 0x18, 0x4f, 0x24, 0xb6, 0x75, 0x37, 0x78, 0xb9, 0xa3, 0x62, 0xaf, 0xbd, 0xc9, 0x72, 0x8e +.byte 0x2f, 0xcc, 0xbb, 0xae, 0xdb, 0xe4, 0x15, 0x52, 0x19, 0x07, 0x33, 0xfb, 0x6a, 0xb7, 0x2d, 0x4b +.byte 0x90, 0x28, 0x82, 0x73, 0xfe, 0x18, 0x8b, 0x35, 0x8d, 0xdb, 0xa7, 0x04, 0x6a, 0xbe, 0xea, 0xc1 +.byte 0x4d, 0x36, 0x3b, 0x16, 0x36, 0x91, 0x32, 0xef, 0xb6, 0x40, 0x89, 0x91, 0x43, 0xe0, 0xf2, 0xa2 +.byte 0xab, 0x04, 0x2e, 0xe6, 0xf2, 0x4c, 0x0e, 0x16, 0x34, 0x20, 0xac, 0x87, 0xc1, 0x2d, 0x7e, 0xc9 +.byte 0x66, 0x47, 0x17, 0x14, 0x11, 0xa4, 0xf3, 0xf7, 0xa1, 0x24, 0x89, 0xab, 0xd8, 0x1a, 0xc8, 0xa1 +.byte 0x5c, 0xb1, 0xa3, 0xf7, 0x8c, 0x6d, 0xc8, 0x01, 0xc9, 0x4f, 0xc9, 0xec, 0xc4, 0xfc, 0xac, 0x51 +.byte 0x33, 0xd1, 0xc8, 0x83, 0xd1, 0xc9, 0x9f, 0x1d, 0xd4, 0x47, 0x34, 0x29, 0x3e, 0xcb, 0xb0, 0x0e +.byte 0xfa, 0x83, 0x0b, 0x28, 0x58, 0xe5, 0x29, 0xdc, 0x3f, 0x7c, 0xa8, 0x9f, 0xc9, 0xb6, 0x0a, 0xbb +.byte 0xa6, 0xe8, 0x46, 0x16, 0x0f, 0x96, 0xe5, 0x7b, 0xe4, 0x6a, 0x7a, 0x48, 0x6d, 0x76, 0x98, 0x05 +.byte 0xa5, 0xdc, 0x6d, 0x1e, 0x42, 0x1e, 0x42, 0xda, 0x1a, 0xe0, 0x52, 0xf7, 0xb5, 0x83, 0xc0, 0x1a +.byte 0x7b, 0x78, 0x35, 0x2c, 0x38, 0xf5, 0x1f, 0xfd, 0x49, 0xa3, 0x2e, 0xd2, 0x59, 0x63, 0xbf, 0x80 +.byte 0xb0, 0x8c, 0x93, 0x73, 0xcb, 0x35, 0xa6, 0x99, 0x95, 0x22, 0x61, 0x65, 0x03, 0x60, 0xfb, 0x2f +.byte 0x93, 0x4b, 0xfa, 0x9a, 0x9c, 0x80, 0x3b, 0x02, 0x03, 0x01, 0x00, 0x01, 0x67, 0x00, 0x26, 0x01 +.byte 0x30, 0x65, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31 +.byte 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65 +.byte 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13 +.byte 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e, 0x63, 0x6f +.byte 0x6d, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1b, 0x44, 0x69, 0x67, 0x69 +.byte 0x43, 0x65, 0x72, 0x74, 0x20, 0x41, 0x73, 0x73, 0x75, 0x72, 0x65, 0x64, 0x20, 0x49, 0x44, 0x20 +.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a +.byte 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30 +.byte 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xad, 0x0e, 0x15, 0xce, 0xe4, 0x43, 0x80, 0x5c +.byte 0xb1, 0x87, 0xf3, 0xb7, 0x60, 0xf9, 0x71, 0x12, 0xa5, 0xae, 0xdc, 0x26, 0x94, 0x88, 0xaa, 0xf4 +.byte 0xce, 0xf5, 0x20, 0x39, 0x28, 0x58, 0x60, 0x0c, 0xf8, 0x80, 0xda, 0xa9, 0x15, 0x95, 0x32, 0x61 +.byte 0x3c, 0xb5, 0xb1, 0x28, 0x84, 0x8a, 0x8a, 0xdc, 0x9f, 0x0a, 0x0c, 0x83, 0x17, 0x7a, 0x8f, 0x90 +.byte 0xac, 0x8a, 0xe7, 0x79, 0x53, 0x5c, 0x31, 0x84, 0x2a, 0xf6, 0x0f, 0x98, 0x32, 0x36, 0x76, 0xcc +.byte 0xde, 0xdd, 0x3c, 0xa8, 0xa2, 0xef, 0x6a, 0xfb, 0x21, 0xf2, 0x52, 0x61, 0xdf, 0x9f, 0x20, 0xd7 +.byte 0x1f, 0xe2, 0xb1, 0xd9, 0xfe, 0x18, 0x64, 0xd2, 0x12, 0x5b, 0x5f, 0xf9, 0x58, 0x18, 0x35, 0xbc +.byte 0x47, 0xcd, 0xa1, 0x36, 0xf9, 0x6b, 0x7f, 0xd4, 0xb0, 0x38, 0x3e, 0xc1, 0x1b, 0xc3, 0x8c, 0x33 +.byte 0xd9, 0xd8, 0x2f, 0x18, 0xfe, 0x28, 0x0f, 0xb3, 0xa7, 0x83, 0xd6, 0xc3, 0x6e, 0x44, 0xc0, 0x61 +.byte 0x35, 0x96, 0x16, 0xfe, 0x59, 0x9c, 0x8b, 0x76, 0x6d, 0xd7, 0xf1, 0xa2, 0x4b, 0x0d, 0x2b, 0xff +.byte 0x0b, 0x72, 0xda, 0x9e, 0x60, 0xd0, 0x8e, 0x90, 0x35, 0xc6, 0x78, 0x55, 0x87, 0x20, 0xa1, 0xcf +.byte 0xe5, 0x6d, 0x0a, 0xc8, 0x49, 0x7c, 0x31, 0x98, 0x33, 0x6c, 0x22, 0xe9, 0x87, 0xd0, 0x32, 0x5a +.byte 0xa2, 0xba, 0x13, 0x82, 0x11, 0xed, 0x39, 0x17, 0x9d, 0x99, 0x3a, 0x72, 0xa1, 0xe6, 0xfa, 0xa4 +.byte 0xd9, 0xd5, 0x17, 0x31, 0x75, 0xae, 0x85, 0x7d, 0x22, 0xae, 0x3f, 0x01, 0x46, 0x86, 0xf6, 0x28 +.byte 0x79, 0xc8, 0xb1, 0xda, 0xe4, 0x57, 0x17, 0xc4, 0x7e, 0x1c, 0x0e, 0xb0, 0xb4, 0x92, 0xa6, 0x56 +.byte 0xb3, 0xbd, 0xb2, 0x97, 0xed, 0xaa, 0xa7, 0xf0, 0xb7, 0xc5, 0xa8, 0x3f, 0x95, 0x16, 0xd0, 0xff +.byte 0xa1, 0x96, 0xeb, 0x08, 0x5f, 0x18, 0x77, 0x4f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x67, 0x00, 0x26 +.byte 0x01, 0x30, 0x65, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53 +.byte 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69, 0x43 +.byte 0x65, 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b +.byte 0x13, 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e, 0x63 +.byte 0x6f, 0x6d, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1b, 0x44, 0x69, 0x67 +.byte 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x41, 0x73, 0x73, 0x75, 0x72, 0x65, 0x64, 0x20, 0x49, 0x44 +.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x32, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09 +.byte 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00 +.byte 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xd9, 0xe7, 0x28, 0x2f, 0x52, 0x3f, 0x36 +.byte 0x72, 0x49, 0x88, 0x93, 0x34, 0xf3, 0xf8, 0x6a, 0x1e, 0x31, 0x54, 0x80, 0x9f, 0xad, 0x54, 0x41 +.byte 0xb5, 0x47, 0xdf, 0x96, 0xa8, 0xd4, 0xaf, 0x80, 0x2d, 0xb9, 0x0a, 0xcf, 0x75, 0xfd, 0x89, 0xa5 +.byte 0x7d, 0x24, 0xfa, 0xe3, 0x22, 0x0c, 0x2b, 0xbc, 0x95, 0x17, 0x0b, 0x33, 0xbf, 0x19, 0x4d, 0x41 +.byte 0x06, 0x90, 0x00, 0xbd, 0x0c, 0x4d, 0x10, 0xfe, 0x07, 0xb5, 0xe7, 0x1c, 0x6e, 0x22, 0x55, 0x31 +.byte 0x65, 0x97, 0xbd, 0xd3, 0x17, 0xd2, 0x1e, 0x62, 0xf3, 0xdb, 0xea, 0x6c, 0x50, 0x8c, 0x3f, 0x84 +.byte 0x0c, 0x96, 0xcf, 0xb7, 0xcb, 0x03, 0xe0, 0xca, 0x6d, 0xa1, 0x14, 0x4c, 0x1b, 0x89, 0xdd, 0xed +.byte 0x00, 0xb0, 0x52, 0x7c, 0xaf, 0x91, 0x6c, 0xb1, 0x38, 0x13, 0xd1, 0xe9, 0x12, 0x08, 0xc0, 0x00 +.byte 0xb0, 0x1c, 0x2b, 0x11, 0xda, 0x77, 0x70, 0x36, 0x9b, 0xae, 0xce, 0x79, 0x87, 0xdc, 0x82, 0x70 +.byte 0xe6, 0x09, 0x74, 0x70, 0x55, 0x69, 0xaf, 0xa3, 0x68, 0x9f, 0xbf, 0xdd, 0xb6, 0x79, 0xb3, 0xf2 +.byte 0x9d, 0x70, 0x29, 0x55, 0xf4, 0xab, 0xff, 0x95, 0x61, 0xf3, 0xc9, 0x40, 0x6f, 0x1d, 0xd1, 0xbe +.byte 0x93, 0xbb, 0xd3, 0x88, 0x2a, 0xbb, 0x9d, 0xbf, 0x72, 0x5a, 0x56, 0x71, 0x3b, 0x3f, 0xd4, 0xf3 +.byte 0xd1, 0x0a, 0xfe, 0x28, 0xef, 0xa3, 0xee, 0xd9, 0x99, 0xaf, 0x03, 0xd3, 0x8f, 0x60, 0xb7, 0xf2 +.byte 0x92, 0xa1, 0xb1, 0xbd, 0x89, 0x89, 0x1f, 0x30, 0xcd, 0xc3, 0xa6, 0x2e, 0x62, 0x33, 0xae, 0x16 +.byte 0x02, 0x77, 0x44, 0x5a, 0xe7, 0x81, 0x0a, 0x3c, 0xa7, 0x44, 0x2e, 0x79, 0xb8, 0x3f, 0x04, 0xbc +.byte 0x5c, 0xa0, 0x87, 0xe1, 0x1b, 0xaf, 0x51, 0x8e, 0xcd, 0xec, 0x2c, 0xfa, 0xf8, 0xfe, 0x6d, 0xf0 +.byte 0x3a, 0x7c, 0xaa, 0x8b, 0xe4, 0x67, 0x95, 0x31, 0x8d, 0x02, 0x03, 0x01, 0x00, 0x01, 0x67, 0x00 +.byte 0x78, 0x00, 0x30, 0x65, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55 +.byte 0x53, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69 +.byte 0x43, 0x65, 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04 +.byte 0x0b, 0x13, 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e +.byte 0x63, 0x6f, 0x6d, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1b, 0x44, 0x69 +.byte 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x41, 0x73, 0x73, 0x75, 0x72, 0x65, 0x64, 0x20, 0x49 +.byte 0x44, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x33, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a +.byte 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00 +.byte 0x04, 0x19, 0xe7, 0xbc, 0xac, 0x44, 0x65, 0xed, 0xcd, 0xb8, 0x3f, 0x58, 0xfb, 0x8d, 0xb1, 0x57 +.byte 0xa9, 0x44, 0x2d, 0x05, 0x15, 0xf2, 0xef, 0x0b, 0xff, 0x10, 0x74, 0x9f, 0xb5, 0x62, 0x52, 0x5f +.byte 0x66, 0x7e, 0x1f, 0xe5, 0xdc, 0x1b, 0x45, 0x79, 0x0b, 0xcc, 0xc6, 0x53, 0x0a, 0x9d, 0x8d, 0x5d +.byte 0x02, 0xd9, 0xa9, 0x59, 0xde, 0x02, 0x5a, 0xf6, 0x95, 0x2a, 0x0e, 0x8d, 0x38, 0x4a, 0x8a, 0x49 +.byte 0xc6, 0xbc, 0xc6, 0x03, 0x38, 0x07, 0x5f, 0x55, 0xda, 0x7e, 0x09, 0x6e, 0xe2, 0x7f, 0x5e, 0xd0 +.byte 0x45, 0x20, 0x0f, 0x59, 0x76, 0x10, 0xd6, 0xa0, 0x24, 0xf0, 0x2d, 0xde, 0x36, 0xf2, 0x6c, 0x29 +.byte 0x39, 0x67, 0x00, 0x78, 0x00, 0x30, 0x65, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 +.byte 0x13, 0x02, 0x55, 0x53, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x15, 0x4d +.byte 0x69, 0x63, 0x72, 0x6f, 0x73, 0x6f, 0x66, 0x74, 0x20, 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61 +.byte 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x36, 0x30, 0x34, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x2d, 0x4d +.byte 0x69, 0x63, 0x72, 0x6f, 0x73, 0x6f, 0x66, 0x74, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f +.byte 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x41, 0x75 +.byte 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x32, 0x30, 0x31, 0x37, 0x30, 0x76, 0x30, 0x10 +.byte 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22 +.byte 0x03, 0x62, 0x00, 0x04, 0xd4, 0xbc, 0x3d, 0x02, 0x42, 0x75, 0x41, 0x13, 0x23, 0xcd, 0x80, 0x04 +.byte 0x86, 0x02, 0x51, 0x2f, 0x6a, 0xa8, 0x81, 0x62, 0x0b, 0x65, 0xcc, 0xf6, 0xca, 0x9d, 0x1e, 0x6f +.byte 0x4a, 0x66, 0x51, 0xa2, 0x03, 0xd9, 0x9d, 0x91, 0xfa, 0xb6, 0x16, 0xb1, 0x8c, 0x6e, 0xde, 0x7c +.byte 0xcd, 0xdb, 0x79, 0xa6, 0x2f, 0xce, 0xbb, 0xce, 0x71, 0x2f, 0xe5, 0xa5, 0xab, 0x28, 0xec, 0x63 +.byte 0x04, 0x66, 0x99, 0xf8, 0xfa, 0xf2, 0x93, 0x10, 0x05, 0xe1, 0x81, 0x28, 0x42, 0xe3, 0xc6, 0x68 +.byte 0xf4, 0xe6, 0x1b, 0x84, 0x60, 0x4a, 0x89, 0xaf, 0xed, 0x79, 0x0f, 0x3b, 0xce, 0xf1, 0xf6, 0x44 +.byte 0xf5, 0x01, 0x78, 0xc0, 0x67, 0x00, 0x26, 0x02, 0x30, 0x65, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x13, 0x15, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x6f, 0x66, 0x74, 0x20, 0x43, 0x6f, 0x72, 0x70 +.byte 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x36, 0x30, 0x34, 0x06, 0x03, 0x55, 0x04, 0x03 +.byte 0x13, 0x2d, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x6f, 0x66, 0x74, 0x20, 0x52, 0x53, 0x41, 0x20 +.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65 +.byte 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x32, 0x30, 0x31, 0x37, 0x30 +.byte 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01 +.byte 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00 +.byte 0xca, 0x5b, 0xbe, 0x94, 0x33, 0x8c, 0x29, 0x95, 0x91, 0x16, 0x0a, 0x95, 0xbd, 0x47, 0x62, 0xc1 +.byte 0x89, 0xf3, 0x99, 0x36, 0xdf, 0x46, 0x90, 0xc9, 0xa5, 0xed, 0x78, 0x6a, 0x6f, 0x47, 0x91, 0x68 +.byte 0xf8, 0x27, 0x67, 0x50, 0x33, 0x1d, 0xa1, 0xa6, 0xfb, 0xe0, 0xe5, 0x43, 0xa3, 0x84, 0x02, 0x57 +.byte 0x01, 0x5d, 0x9c, 0x48, 0x40, 0x82, 0x53, 0x10, 0xbc, 0xbf, 0xc7, 0x3b, 0x68, 0x90, 0xb6, 0x82 +.byte 0x2d, 0xe5, 0xf4, 0x65, 0xd0, 0xcc, 0x6d, 0x19, 0xcc, 0x95, 0xf9, 0x7b, 0xac, 0x4a, 0x94, 0xad +.byte 0x0e, 0xde, 0x4b, 0x43, 0x1d, 0x87, 0x07, 0x92, 0x13, 0x90, 0x80, 0x83, 0x64, 0x35, 0x39, 0x04 +.byte 0xfc, 0xe5, 0xe9, 0x6c, 0xb3, 0xb6, 0x1f, 0x50, 0x94, 0x38, 0x65, 0x50, 0x5c, 0x17, 0x46, 0xb9 +.byte 0xb6, 0x85, 0xb5, 0x1c, 0xb5, 0x17, 0xe8, 0xd6, 0x45, 0x9d, 0xd8, 0xb2, 0x26, 0xb0, 0xca, 0xc4 +.byte 0x70, 0x4a, 0xae, 0x60, 0xa4, 0xdd, 0xb3, 0xd9, 0xec, 0xfc, 0x3b, 0xd5, 0x57, 0x72, 0xbc, 0x3f +.byte 0xc8, 0xc9, 0xb2, 0xde, 0x4b, 0x6b, 0xf8, 0x23, 0x6c, 0x03, 0xc0, 0x05, 0xbd, 0x95, 0xc7, 0xcd +.byte 0x73, 0x3b, 0x66, 0x80, 0x64, 0xe3, 0x1a, 0xac, 0x2e, 0xf9, 0x47, 0x05, 0xf2, 0x06, 0xb6, 0x9b +.byte 0x73, 0xf5, 0x78, 0x33, 0x5b, 0xc7, 0xa1, 0xfb, 0x27, 0x2a, 0xa1, 0xb4, 0x9a, 0x91, 0x8c, 0x91 +.byte 0xd3, 0x3a, 0x82, 0x3e, 0x76, 0x40, 0xb4, 0xcd, 0x52, 0x61, 0x51, 0x70, 0x28, 0x3f, 0xc5, 0xc5 +.byte 0x5a, 0xf2, 0xc9, 0x8c, 0x49, 0xbb, 0x14, 0x5b, 0x4d, 0xc8, 0xff, 0x67, 0x4d, 0x4c, 0x12, 0x96 +.byte 0xad, 0xf5, 0xfe, 0x78, 0xa8, 0x97, 0x87, 0xd7, 0xfd, 0x5e, 0x20, 0x80, 0xdc, 0xa1, 0x4b, 0x22 +.byte 0xfb, 0xd4, 0x89, 0xad, 0xba, 0xce, 0x47, 0x97, 0x47, 0x55, 0x7b, 0x8f, 0x45, 0xc8, 0x67, 0x28 +.byte 0x84, 0x95, 0x1c, 0x68, 0x30, 0xef, 0xef, 0x49, 0xe0, 0x35, 0x7b, 0x64, 0xe7, 0x98, 0xb0, 0x94 +.byte 0xda, 0x4d, 0x85, 0x3b, 0x3e, 0x55, 0xc4, 0x28, 0xaf, 0x57, 0xf3, 0x9e, 0x13, 0xdb, 0x46, 0x27 +.byte 0x9f, 0x1e, 0xa2, 0x5e, 0x44, 0x83, 0xa4, 0xa5, 0xca, 0xd5, 0x13, 0xb3, 0x4b, 0x3f, 0xc4, 0xe3 +.byte 0xc2, 0xe6, 0x86, 0x61, 0xa4, 0x52, 0x30, 0xb9, 0x7a, 0x20, 0x4f, 0x6f, 0x0f, 0x38, 0x53, 0xcb +.byte 0x33, 0x0c, 0x13, 0x2b, 0x8f, 0xd6, 0x9a, 0xbd, 0x2a, 0xc8, 0x2d, 0xb1, 0x1c, 0x7d, 0x4b, 0x51 +.byte 0xca, 0x47, 0xd1, 0x48, 0x27, 0x72, 0x5d, 0x87, 0xeb, 0xd5, 0x45, 0xe6, 0x48, 0x65, 0x9d, 0xaf +.byte 0x52, 0x90, 0xba, 0x5b, 0xa2, 0x18, 0x65, 0x57, 0x12, 0x9f, 0x68, 0xb9, 0xd4, 0x15, 0x6b, 0x94 +.byte 0xc4, 0x69, 0x22, 0x98, 0xf4, 0x33, 0xe0, 0xed, 0xf9, 0x51, 0x8e, 0x41, 0x50, 0xc9, 0x34, 0x4f +.byte 0x76, 0x90, 0xac, 0xfc, 0x38, 0xc1, 0xd8, 0xe1, 0x7b, 0xb9, 0xe3, 0xe3, 0x94, 0xe1, 0x46, 0x69 +.byte 0xcb, 0x0e, 0x0a, 0x50, 0x6b, 0x13, 0xba, 0xac, 0x0f, 0x37, 0x5a, 0xb7, 0x12, 0xb5, 0x90, 0x81 +.byte 0x1e, 0x56, 0xae, 0x57, 0x22, 0x86, 0xd9, 0xc9, 0xd2, 0xd1, 0xd7, 0x51, 0xe3, 0xab, 0x3b, 0xc6 +.byte 0x55, 0xfd, 0x1e, 0x0e, 0xd3, 0x74, 0x0a, 0xd1, 0xda, 0xaa, 0xea, 0x69, 0xb8, 0x97, 0x28, 0x8f +.byte 0x48, 0xc4, 0x07, 0xf8, 0x52, 0x43, 0x3a, 0xf4, 0xca, 0x55, 0x35, 0x2c, 0xb0, 0xa6, 0x6a, 0xc0 +.byte 0x9c, 0xf9, 0xf2, 0x81, 0xe1, 0x12, 0x6a, 0xc0, 0x45, 0xd9, 0x67, 0xb3, 0xce, 0xff, 0x23, 0xa2 +.byte 0x89, 0x0a, 0x54, 0xd4, 0x14, 0xb9, 0x2a, 0xa8, 0xd7, 0xec, 0xf9, 0xab, 0xcd, 0x25, 0x58, 0x32 +.byte 0x79, 0x8f, 0x90, 0x5b, 0x98, 0x39, 0xc4, 0x08, 0x06, 0xc1, 0xac, 0x7f, 0x0e, 0x3d, 0x00, 0xa5 +.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x69, 0x00, 0x26, 0x01, 0x30, 0x67, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x49, 0x4e, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04 +.byte 0x0b, 0x13, 0x0a, 0x65, 0x6d, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x50, 0x4b, 0x49, 0x31, 0x25, 0x30 +.byte 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1c, 0x65, 0x4d, 0x75, 0x64, 0x68, 0x72, 0x61, 0x20 +.byte 0x54, 0x65, 0x63, 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x20, 0x4c, 0x69, 0x6d +.byte 0x69, 0x74, 0x65, 0x64, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x13, 0x65 +.byte 0x6d, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20 +.byte 0x47, 0x31, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d +.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82 +.byte 0x01, 0x01, 0x00, 0x93, 0x4b, 0xbb, 0xe9, 0x66, 0x8a, 0xee, 0x9d, 0x5b, 0xd5, 0x34, 0x93, 0xd0 +.byte 0x1b, 0x1e, 0xc3, 0xe7, 0x9e, 0xb8, 0x64, 0x33, 0x7f, 0x63, 0x78, 0x68, 0xb4, 0xcd, 0x2e, 0x71 +.byte 0x75, 0xd7, 0x9b, 0x20, 0xc6, 0x4d, 0x29, 0xbc, 0xb6, 0x68, 0x60, 0x8a, 0xf7, 0x21, 0x9a, 0x56 +.byte 0x35, 0x5a, 0xf3, 0x76, 0xbd, 0xd8, 0xcd, 0x9a, 0xff, 0x93, 0x56, 0x4b, 0xa5, 0x59, 0x06, 0xa1 +.byte 0x93, 0x34, 0x29, 0xdd, 0x16, 0x34, 0x75, 0x4e, 0xf2, 0x81, 0xb4, 0xc7, 0x96, 0x4e, 0xad, 0x19 +.byte 0x15, 0x52, 0x4a, 0xfe, 0x3c, 0x70, 0x75, 0x70, 0xcd, 0xaf, 0x2b, 0xab, 0x15, 0x9a, 0x33, 0x3c +.byte 0xaa, 0xb3, 0x8b, 0xaa, 0xcd, 0x43, 0xfd, 0xf5, 0xea, 0x70, 0xff, 0xed, 0xcf, 0x11, 0x3b, 0x94 +.byte 0xce, 0x4e, 0x32, 0x16, 0xd3, 0x23, 0x40, 0x2a, 0x77, 0xb3, 0xaf, 0x3c, 0x01, 0x2c, 0x6c, 0xed +.byte 0x99, 0x2c, 0x8b, 0xd9, 0x4e, 0x69, 0x98, 0xb2, 0xf7, 0x8f, 0x41, 0xb0, 0x32, 0x78, 0x61, 0xd6 +.byte 0x0d, 0x5f, 0xc3, 0xfa, 0xa2, 0x40, 0x92, 0x1d, 0x5c, 0x17, 0xe6, 0x70, 0x3e, 0x35, 0xe7, 0xa2 +.byte 0xb7, 0xc2, 0x62, 0xe2, 0xab, 0xa4, 0x38, 0x4c, 0xb5, 0x39, 0x35, 0x6f, 0xea, 0x03, 0x69, 0xfa +.byte 0x3a, 0x54, 0x68, 0x85, 0x6d, 0xd6, 0xf2, 0x2f, 0x43, 0x55, 0x1e, 0x91, 0x0d, 0x0e, 0xd8, 0xd5 +.byte 0x6a, 0xa4, 0x96, 0xd1, 0x13, 0x3c, 0x2c, 0x78, 0x50, 0xe8, 0x3a, 0x92, 0xd2, 0x17, 0x56, 0xe5 +.byte 0x35, 0x1a, 0x40, 0x1c, 0x3e, 0x8d, 0x2c, 0xed, 0x39, 0xdf, 0x42, 0xe0, 0x83, 0x41, 0x74, 0xdf +.byte 0xa3, 0xcd, 0xc2, 0x86, 0x60, 0x48, 0x68, 0xe3, 0x69, 0x0b, 0x54, 0x00, 0x8b, 0xe4, 0x76, 0x69 +.byte 0x21, 0x0d, 0x79, 0x4e, 0x34, 0x08, 0x5e, 0x14, 0xc2, 0xcc, 0xb1, 0xb7, 0xad, 0xd7, 0x7c, 0x70 +.byte 0x8a, 0xc7, 0x85, 0x02, 0x03, 0x01, 0x00, 0x01, 0x6a, 0x00, 0x24, 0x01, 0x30, 0x68, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x25, 0x30, 0x23, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1c, 0x53, 0x74, 0x61, 0x72, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x20 +.byte 0x54, 0x65, 0x63, 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x2c, 0x20, 0x49, 0x6e +.byte 0x63, 0x2e, 0x31, 0x32, 0x30, 0x30, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x29, 0x53, 0x74, 0x61 +.byte 0x72, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x32, 0x20, 0x43 +.byte 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74 +.byte 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x82, 0x01, 0x20, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86 +.byte 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0d, 0x00, 0x30, 0x82 +.byte 0x01, 0x08, 0x02, 0x82, 0x01, 0x01, 0x00, 0xb7, 0x32, 0xc8, 0xfe, 0xe9, 0x71, 0xa6, 0x04, 0x85 +.byte 0xad, 0x0c, 0x11, 0x64, 0xdf, 0xce, 0x4d, 0xef, 0xc8, 0x03, 0x18, 0x87, 0x3f, 0xa1, 0xab, 0xfb +.byte 0x3c, 0xa6, 0x9f, 0xf0, 0xc3, 0xa1, 0xda, 0xd4, 0xd8, 0x6e, 0x2b, 0x53, 0x90, 0xfb, 0x24, 0xa4 +.byte 0x3e, 0x84, 0xf0, 0x9e, 0xe8, 0x5f, 0xec, 0xe5, 0x27, 0x44, 0xf5, 0x28, 0xa6, 0x3f, 0x7b, 0xde +.byte 0xe0, 0x2a, 0xf0, 0xc8, 0xaf, 0x53, 0x2f, 0x9e, 0xca, 0x05, 0x01, 0x93, 0x1e, 0x8f, 0x66, 0x1c +.byte 0x39, 0xa7, 0x4d, 0xfa, 0x5a, 0xb6, 0x73, 0x04, 0x25, 0x66, 0xeb, 0x77, 0x7f, 0xe7, 0x59, 0xc6 +.byte 0x4a, 0x99, 0x25, 0x14, 0x54, 0xeb, 0x26, 0xc7, 0xf3, 0x7f, 0x19, 0xd5, 0x30, 0x70, 0x8f, 0xaf +.byte 0xb0, 0x46, 0x2a, 0xff, 0xad, 0xeb, 0x29, 0xed, 0xd7, 0x9f, 0xaa, 0x04, 0x87, 0xa3, 0xd4, 0xf9 +.byte 0x89, 0xa5, 0x34, 0x5f, 0xdb, 0x43, 0x91, 0x82, 0x36, 0xd9, 0x66, 0x3c, 0xb1, 0xb8, 0xb9, 0x82 +.byte 0xfd, 0x9c, 0x3a, 0x3e, 0x10, 0xc8, 0x3b, 0xef, 0x06, 0x65, 0x66, 0x7a, 0x9b, 0x19, 0x18, 0x3d +.byte 0xff, 0x71, 0x51, 0x3c, 0x30, 0x2e, 0x5f, 0xbe, 0x3d, 0x77, 0x73, 0xb2, 0x5d, 0x06, 0x6c, 0xc3 +.byte 0x23, 0x56, 0x9a, 0x2b, 0x85, 0x26, 0x92, 0x1c, 0xa7, 0x02, 0xb3, 0xe4, 0x3f, 0x0d, 0xaf, 0x08 +.byte 0x79, 0x82, 0xb8, 0x36, 0x3d, 0xea, 0x9c, 0xd3, 0x35, 0xb3, 0xbc, 0x69, 0xca, 0xf5, 0xcc, 0x9d +.byte 0xe8, 0xfd, 0x64, 0x8d, 0x17, 0x80, 0x33, 0x6e, 0x5e, 0x4a, 0x5d, 0x99, 0xc9, 0x1e, 0x87, 0xb4 +.byte 0x9d, 0x1a, 0xc0, 0xd5, 0x6e, 0x13, 0x35, 0x23, 0x5e, 0xdf, 0x9b, 0x5f, 0x3d, 0xef, 0xd6, 0xf7 +.byte 0x76, 0xc2, 0xea, 0x3e, 0xbb, 0x78, 0x0d, 0x1c, 0x42, 0x67, 0x6b, 0x04, 0xd8, 0xf8, 0xd6, 0xda +.byte 0x6f, 0x8b, 0xf2, 0x44, 0xa0, 0x01, 0xab, 0x02, 0x01, 0x03, 0x6b, 0x00, 0x26, 0x02, 0x30, 0x69 +.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x4b, 0x52, 0x31, 0x26, 0x30 +.byte 0x24, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1d, 0x4e, 0x41, 0x56, 0x45, 0x52, 0x20, 0x42, 0x55 +.byte 0x53, 0x49, 0x4e, 0x45, 0x53, 0x53, 0x20, 0x50, 0x4c, 0x41, 0x54, 0x46, 0x4f, 0x52, 0x4d, 0x20 +.byte 0x43, 0x6f, 0x72, 0x70, 0x2e, 0x31, 0x32, 0x30, 0x30, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x29 +.byte 0x4e, 0x41, 0x56, 0x45, 0x52, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f +.byte 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20 +.byte 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06 +.byte 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f +.byte 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xb6, 0xd4, 0xf1, 0x93, 0x5c, 0xb5 +.byte 0x40, 0x89, 0x0a, 0xab, 0x0d, 0x90, 0x5b, 0x50, 0x63, 0xae, 0x90, 0x94, 0x74, 0x17, 0x45, 0x72 +.byte 0xd6, 0x7b, 0x65, 0x5a, 0x29, 0x4b, 0xa7, 0x56, 0xa0, 0x4b, 0xb8, 0x2f, 0x42, 0x75, 0xe9, 0xd9 +.byte 0x7b, 0x24, 0x5a, 0x31, 0x65, 0xab, 0x17, 0x17, 0xd1, 0x33, 0x3a, 0xd9, 0x11, 0xdc, 0x40, 0x36 +.byte 0x87, 0xdf, 0xc7, 0x6a, 0xe9, 0x26, 0x5e, 0x59, 0x8a, 0x77, 0xe3, 0xe8, 0x48, 0x9c, 0x31, 0x16 +.byte 0xfa, 0x3e, 0x91, 0xb1, 0xca, 0xc9, 0xa3, 0xe2, 0x9f, 0xce, 0x21, 0x53, 0xa3, 0x02, 0x36, 0x30 +.byte 0xcb, 0x52, 0x02, 0xe5, 0xda, 0x32, 0x5d, 0xc3, 0xc5, 0xe6, 0xf9, 0xee, 0x11, 0xc7, 0x8b, 0xc9 +.byte 0x44, 0x1e, 0x84, 0x93, 0x18, 0x4a, 0xb4, 0x9f, 0xe5, 0x12, 0x64, 0x69, 0xd0, 0x26, 0x85, 0x62 +.byte 0x01, 0xb6, 0xc9, 0x02, 0x1d, 0xbe, 0x83, 0x51, 0xbb, 0x5c, 0xda, 0xf8, 0xad, 0x15, 0x6a, 0x99 +.byte 0xf7, 0x92, 0x54, 0xf7, 0x34, 0x5b, 0xe9, 0xbf, 0xea, 0x29, 0x81, 0x12, 0xd4, 0x53, 0x91, 0x96 +.byte 0xb3, 0x91, 0x5a, 0xdd, 0xfe, 0x90, 0x73, 0x28, 0xfb, 0x30, 0x46, 0xb5, 0xca, 0x08, 0x07, 0xc7 +.byte 0x71, 0x72, 0xc9, 0x66, 0xd3, 0x34, 0x97, 0xf6, 0x8c, 0xf4, 0x18, 0x4a, 0xe1, 0xd0, 0x3d, 0x5a +.byte 0x45, 0xb6, 0x69, 0xa7, 0x29, 0xfb, 0x23, 0xce, 0x88, 0xd8, 0x12, 0x9c, 0x00, 0x48, 0xa8, 0xa6 +.byte 0x0f, 0xb3, 0x3b, 0x92, 0x8d, 0x71, 0x0e, 0x74, 0xc5, 0x8b, 0xc8, 0x4c, 0xf9, 0xf4, 0x9b, 0x8e +.byte 0xb8, 0x3c, 0x69, 0xed, 0x6f, 0x3b, 0x50, 0x2f, 0x58, 0xed, 0xc4, 0xb0, 0xd0, 0x1c, 0x1b, 0x6a +.byte 0x0c, 0xe2, 0xbc, 0x44, 0xaa, 0xd8, 0xcd, 0x14, 0x5d, 0x94, 0x78, 0x61, 0xbf, 0x0e, 0x6e, 0xda +.byte 0x2a, 0xbc, 0x2f, 0x0c, 0x0b, 0x71, 0xa6, 0xb3, 0x16, 0x3f, 0x9c, 0xe6, 0xf9, 0xcc, 0x9f, 0x53 +.byte 0x35, 0xe2, 0x03, 0xa0, 0xa0, 0x18, 0xbf, 0xbb, 0xf1, 0xbe, 0xf4, 0xd6, 0x8c, 0x87, 0x0d, 0x42 +.byte 0xf7, 0x06, 0xb9, 0xf1, 0x6d, 0xed, 0x04, 0x94, 0xa8, 0xfe, 0xb6, 0xd3, 0x06, 0xc6, 0x40, 0x61 +.byte 0xdf, 0x9d, 0x9d, 0xf3, 0x54, 0x76, 0xce, 0x53, 0x3a, 0x01, 0xa6, 0x92, 0x41, 0xec, 0x04, 0xa3 +.byte 0x8f, 0x0d, 0xa2, 0xd5, 0x09, 0xca, 0xd6, 0xcb, 0x9a, 0xf1, 0xef, 0x43, 0x5d, 0xc0, 0xab, 0xa5 +.byte 0x41, 0xcf, 0x5c, 0x53, 0x70, 0x70, 0xc9, 0x88, 0xa6, 0x2d, 0xd4, 0x6b, 0x61, 0x73, 0x50, 0x26 +.byte 0x86, 0x61, 0x0e, 0x5f, 0x1b, 0xc2, 0x2b, 0xe2, 0x8c, 0xd5, 0xbb, 0x9d, 0xc1, 0x03, 0x42, 0xba +.byte 0x94, 0xda, 0x5f, 0xa9, 0xb0, 0xca, 0xcc, 0x4d, 0x0a, 0xef, 0x47, 0x69, 0x03, 0x2f, 0x22, 0xfb +.byte 0xf1, 0x28, 0xce, 0xbf, 0x5d, 0x50, 0x65, 0xa8, 0x90, 0x6d, 0xb3, 0x74, 0xb0, 0x08, 0xc7, 0xac +.byte 0xa8, 0xd1, 0xeb, 0x3e, 0x9c, 0xfc, 0x5d, 0x1a, 0x83, 0x2e, 0x2b, 0xcb, 0xb5, 0xf3, 0x44, 0x9d +.byte 0x3a, 0xa7, 0x17, 0x61, 0x96, 0xa2, 0x71, 0xd3, 0x70, 0x96, 0x15, 0x4d, 0xb7, 0x4c, 0x73, 0xee +.byte 0x19, 0x5c, 0xc5, 0x5b, 0x3e, 0x41, 0xfe, 0xac, 0x75, 0x60, 0x3b, 0x1b, 0x63, 0xce, 0x00, 0xdd +.byte 0xda, 0x08, 0x90, 0x62, 0xb4, 0xe5, 0x2d, 0xee, 0x48, 0xa7, 0x6b, 0x17, 0x99, 0x54, 0xbe, 0x87 +.byte 0x4a, 0xe3, 0xa9, 0x5e, 0x04, 0x4c, 0xeb, 0x10, 0x6d, 0x54, 0xd6, 0xef, 0xf1, 0xe8, 0xf2, 0x62 +.byte 0x16, 0xcb, 0x80, 0x6b, 0xed, 0x3d, 0xed, 0xf5, 0x1f, 0x30, 0xa5, 0xae, 0x4b, 0xc9, 0x13, 0xed +.byte 0x8a, 0x01, 0x01, 0xc9, 0xb8, 0x51, 0x58, 0xc0, 0x66, 0x3a, 0xb1, 0x66, 0x4b, 0xc4, 0xd5, 0x31 +.byte 0x02, 0x62, 0xe9, 0x74, 0x84, 0x0c, 0xdb, 0x4d, 0x46, 0x2d, 0x02, 0x03, 0x01, 0x00, 0x01, 0x6d +.byte 0x00, 0x78, 0x00, 0x30, 0x6b, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x49, 0x4e, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x0a, 0x65, 0x6d, 0x53 +.byte 0x69, 0x67, 0x6e, 0x20, 0x50, 0x4b, 0x49, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a +.byte 0x13, 0x1c, 0x65, 0x4d, 0x75, 0x64, 0x68, 0x72, 0x61, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6e, 0x6f +.byte 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x20 +.byte 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x17, 0x65, 0x6d, 0x53, 0x69, 0x67, 0x6e, 0x20 +.byte 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x47, 0x33 +.byte 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b +.byte 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x23, 0xa5, 0x0c, 0xb8, 0x2d, 0x12, 0xf5, 0x28 +.byte 0xf3, 0xb1, 0xb2, 0xdd, 0xe2, 0x02, 0x12, 0x80, 0x9e, 0x39, 0x5f, 0x49, 0x4d, 0x9f, 0xc9, 0x25 +.byte 0x34, 0x59, 0x74, 0xec, 0xbb, 0x06, 0x1c, 0xe7, 0xc0, 0x72, 0xaf, 0xe8, 0xae, 0x2f, 0xe1, 0x41 +.byte 0x54, 0x87, 0x14, 0xa8, 0x4a, 0xb2, 0xe8, 0x7c, 0x82, 0xe6, 0x5b, 0x6a, 0xb5, 0xdc, 0xb3, 0x75 +.byte 0xce, 0x8b, 0x06, 0xd0, 0x86, 0x23, 0xbf, 0x46, 0xd5, 0x8e, 0x0f, 0x3f, 0x04, 0xf4, 0xd7, 0x1c +.byte 0x92, 0x7e, 0xf6, 0xa5, 0x63, 0xc2, 0xf5, 0x5f, 0x8e, 0x2e, 0x4f, 0xa1, 0x18, 0x19, 0x02, 0x2b +.byte 0x32, 0x0a, 0x82, 0x64, 0x7d, 0x16, 0x93, 0xd1, 0x6d, 0x00, 0x26, 0x02, 0x30, 0x6b, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x49, 0x54, 0x31, 0x0e, 0x30, 0x0c, 0x06 +.byte 0x03, 0x55, 0x04, 0x07, 0x0c, 0x05, 0x4d, 0x69, 0x6c, 0x61, 0x6e, 0x31, 0x23, 0x30, 0x21, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1a, 0x41, 0x63, 0x74, 0x61, 0x6c, 0x69, 0x73, 0x20, 0x53, 0x2e +.byte 0x70, 0x2e, 0x41, 0x2e, 0x2f, 0x30, 0x33, 0x33, 0x35, 0x38, 0x35, 0x32, 0x30, 0x39, 0x36, 0x37 +.byte 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1e, 0x41, 0x63, 0x74, 0x61, 0x6c +.byte 0x69, 0x73, 0x20, 0x41, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f +.byte 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06 +.byte 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f +.byte 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xa7, 0xc6, 0xc4, 0xa5, 0x29, 0xa4 +.byte 0x2c, 0xef, 0xe5, 0x18, 0xc5, 0xb0, 0x50, 0xa3, 0x6f, 0x51, 0x3b, 0x9f, 0x0a, 0x5a, 0xc9, 0xc2 +.byte 0x48, 0x38, 0x0a, 0xc2, 0x1c, 0xa0, 0x18, 0x7f, 0x91, 0xb5, 0x87, 0xb9, 0x40, 0x3f, 0xdd, 0x1d +.byte 0x68, 0x1f, 0x08, 0x83, 0xd5, 0x2d, 0x1e, 0x88, 0xa0, 0xf8, 0x8f, 0x56, 0x8f, 0x6d, 0x99, 0x02 +.byte 0x92, 0x90, 0x16, 0xd5, 0x5f, 0x08, 0x6c, 0x89, 0xd7, 0xe1, 0xac, 0xbc, 0x20, 0xc2, 0xb1, 0xe0 +.byte 0x83, 0x51, 0x8a, 0x69, 0x4d, 0x00, 0x96, 0x5a, 0x6f, 0x2f, 0xc0, 0x44, 0x7e, 0xa3, 0x0e, 0xe4 +.byte 0x91, 0xcd, 0x58, 0xee, 0xdc, 0xfb, 0xc7, 0x1e, 0x45, 0x47, 0xdd, 0x27, 0xb9, 0x08, 0x01, 0x9f +.byte 0xa6, 0x21, 0x1d, 0xf5, 0x41, 0x2d, 0x2f, 0x4c, 0xfd, 0x28, 0xad, 0xe0, 0x8a, 0xad, 0x22, 0xb4 +.byte 0x56, 0x65, 0x8e, 0x86, 0x54, 0x8f, 0x93, 0x43, 0x29, 0xde, 0x39, 0x46, 0x78, 0xa3, 0x30, 0x23 +.byte 0xba, 0xcd, 0xf0, 0x7d, 0x13, 0x57, 0xc0, 0x5d, 0xd2, 0x83, 0x6b, 0x48, 0x4c, 0xc4, 0xab, 0x9f +.byte 0x80, 0x5a, 0x5b, 0x3a, 0xbd, 0xc9, 0xa7, 0x22, 0x3f, 0x80, 0x27, 0x33, 0x5b, 0x0e, 0xb7, 0x8a +.byte 0x0c, 0x5d, 0x07, 0x37, 0x08, 0xcb, 0x6c, 0xd2, 0x7a, 0x47, 0x22, 0x44, 0x35, 0xc5, 0xcc, 0xcc +.byte 0x2e, 0x8e, 0xdd, 0x2a, 0xed, 0xb7, 0x7d, 0x66, 0x0d, 0x5f, 0x61, 0x51, 0x22, 0x55, 0x1b, 0xe3 +.byte 0x46, 0xe3, 0xe3, 0x3d, 0xd0, 0x35, 0x62, 0x9a, 0xdb, 0xaf, 0x14, 0xc8, 0x5b, 0xa1, 0xcc, 0x89 +.byte 0x1b, 0xe1, 0x30, 0x26, 0xfc, 0xa0, 0x9b, 0x1f, 0x81, 0xa7, 0x47, 0x1f, 0x04, 0xeb, 0xa3, 0x39 +.byte 0x92, 0x06, 0x9f, 0x99, 0xd3, 0xbf, 0xd3, 0xea, 0x4f, 0x50, 0x9c, 0x19, 0xfe, 0x96, 0x87, 0x1e +.byte 0x3c, 0x65, 0xf6, 0xa3, 0x18, 0x24, 0x83, 0x86, 0x10, 0xe7, 0x54, 0x3e, 0xa8, 0x3a, 0x76, 0x24 +.byte 0x4f, 0x81, 0x21, 0xc5, 0xe3, 0x0f, 0x02, 0xf8, 0x93, 0x94, 0x47, 0x20, 0xbb, 0xfe, 0xd4, 0x0e +.byte 0xd3, 0x68, 0xb9, 0xdd, 0xc4, 0x7a, 0x84, 0x82, 0xe3, 0x53, 0x54, 0x79, 0xdd, 0xdb, 0x9c, 0xd2 +.byte 0xf2, 0x07, 0x9b, 0x2e, 0xb6, 0xbc, 0x3e, 0xed, 0x85, 0x6d, 0xef, 0x25, 0x11, 0xf2, 0x97, 0x1a +.byte 0x42, 0x61, 0xf7, 0x4a, 0x97, 0xe8, 0x8b, 0xb1, 0x10, 0x07, 0xfa, 0x65, 0x81, 0xb2, 0xa2, 0x39 +.byte 0xcf, 0xf7, 0x3c, 0xff, 0x18, 0xfb, 0xc6, 0xf1, 0x5a, 0x8b, 0x59, 0xe2, 0x02, 0xac, 0x7b, 0x92 +.byte 0xd0, 0x4e, 0x14, 0x4f, 0x59, 0x45, 0xf6, 0x0c, 0x5e, 0x28, 0x5f, 0xb0, 0xe8, 0x3f, 0x45, 0xcf +.byte 0xcf, 0xaf, 0x9b, 0x6f, 0xfb, 0x84, 0xd3, 0x77, 0x5a, 0x95, 0x6f, 0xac, 0x94, 0x84, 0x9e, 0xee +.byte 0xbc, 0xc0, 0x4a, 0x8f, 0x4a, 0x93, 0xf8, 0x44, 0x21, 0xe2, 0x31, 0x45, 0x61, 0x50, 0x4e, 0x10 +.byte 0xd8, 0xe3, 0x35, 0x7c, 0x4c, 0x19, 0xb4, 0xde, 0x05, 0xbf, 0xa3, 0x06, 0x9f, 0xc8, 0xb5, 0xcd +.byte 0xe4, 0x1f, 0xd7, 0x17, 0x06, 0x0d, 0x7a, 0x95, 0x74, 0x55, 0x0d, 0x68, 0x1a, 0xfc, 0x10, 0x1b +.byte 0x62, 0x64, 0x9d, 0x6d, 0xe0, 0x95, 0xa0, 0xc3, 0x94, 0x07, 0x57, 0x0d, 0x14, 0xe6, 0xbd, 0x05 +.byte 0xfb, 0xb8, 0x9f, 0xe6, 0xdf, 0x8b, 0xe2, 0xc6, 0xe7, 0x7e, 0x96, 0xf6, 0x53, 0xc5, 0x80, 0x34 +.byte 0x50, 0x28, 0x58, 0xf0, 0x12, 0x50, 0x71, 0x17, 0x30, 0xba, 0xe6, 0x78, 0x63, 0xbc, 0xf4, 0xb2 +.byte 0xad, 0x9b, 0x2b, 0xb2, 0xfe, 0xe1, 0x39, 0x8c, 0x5e, 0xba, 0x0b, 0x20, 0x94, 0xde, 0x7b, 0x83 +.byte 0xb8, 0xff, 0xe3, 0x56, 0x8d, 0xb7, 0x11, 0xe9, 0x3b, 0x8c, 0xf2, 0xb1, 0xc1, 0x5d, 0x9d, 0xa4 +.byte 0x0b, 0x4c, 0x2b, 0xd9, 0xb2, 0x18, 0xf5, 0xb5, 0x9f, 0x4b, 0x02, 0x03, 0x01, 0x00, 0x01, 0x6e +.byte 0x00, 0x78, 0x00, 0x30, 0x6c, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x47, 0x52, 0x31, 0x37, 0x30, 0x35, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x2e, 0x48, 0x65, 0x6c +.byte 0x6c, 0x65, 0x6e, 0x69, 0x63, 0x20, 0x41, 0x63, 0x61, 0x64, 0x65, 0x6d, 0x69, 0x63, 0x20, 0x61 +.byte 0x6e, 0x64, 0x20, 0x52, 0x65, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x20, 0x49, 0x6e, 0x73, 0x74 +.byte 0x69, 0x74, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x43, 0x41, 0x31, 0x24, 0x30, 0x22, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1b, 0x48, 0x41, 0x52, 0x49, 0x43, 0x41, 0x20, 0x54, 0x4c, 0x53 +.byte 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x32, 0x30, 0x32 +.byte 0x31, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05 +.byte 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x38, 0x08, 0xfe, 0xb1, 0xa0, 0x96, 0xd2 +.byte 0x7a, 0xac, 0xaf, 0x49, 0x3a, 0xd0, 0xc0, 0xe0, 0xc3, 0x3b, 0x28, 0xaa, 0xf1, 0x72, 0x6d, 0x65 +.byte 0x00, 0x47, 0x88, 0x84, 0xfc, 0x9a, 0x26, 0x6b, 0xaa, 0x4b, 0xba, 0x6c, 0x04, 0x0a, 0x88, 0x5e +.byte 0x17, 0xf2, 0x55, 0x87, 0xfc, 0x30, 0xb0, 0x34, 0xe2, 0x34, 0x58, 0x57, 0x1a, 0x84, 0x53, 0xe9 +.byte 0x30, 0xd9, 0xa9, 0xf2, 0x96, 0x74, 0xc3, 0x51, 0x1f, 0x58, 0x49, 0x31, 0xcc, 0x98, 0x4e, 0x60 +.byte 0x11, 0x87, 0x75, 0xd3, 0x72, 0x94, 0x90, 0x4f, 0x9b, 0x10, 0x25, 0x2a, 0xa8, 0x78, 0x2d, 0xbe +.byte 0x90, 0x41, 0x58, 0x90, 0x15, 0x72, 0xa7, 0xa1, 0xb7, 0x6e, 0x00, 0x26, 0x02, 0x30, 0x6c, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x52, 0x31, 0x37, 0x30, 0x35 +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x2e, 0x48, 0x65, 0x6c, 0x6c, 0x65, 0x6e, 0x69, 0x63, 0x20 +.byte 0x41, 0x63, 0x61, 0x64, 0x65, 0x6d, 0x69, 0x63, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x52, 0x65, 0x73 +.byte 0x65, 0x61, 0x72, 0x63, 0x68, 0x20, 0x49, 0x6e, 0x73, 0x74, 0x69, 0x74, 0x75, 0x74, 0x69, 0x6f +.byte 0x6e, 0x73, 0x20, 0x43, 0x41, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1b +.byte 0x48, 0x41, 0x52, 0x49, 0x43, 0x41, 0x20, 0x54, 0x4c, 0x53, 0x20, 0x52, 0x53, 0x41, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x32, 0x30, 0x32, 0x31, 0x30, 0x82, 0x02, 0x22, 0x30 +.byte 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82 +.byte 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0x8b, 0xc2, 0xe7, 0xaf +.byte 0x65, 0x9b, 0x05, 0x67, 0x96, 0xc9, 0x0d, 0x24, 0xb9, 0xd0, 0x0e, 0x64, 0xfc, 0xce, 0xe2, 0x24 +.byte 0x18, 0x2c, 0x84, 0x7f, 0x77, 0x51, 0xcb, 0x04, 0x11, 0x36, 0xb8, 0x5e, 0xed, 0x69, 0x71, 0xa7 +.byte 0x9e, 0xe4, 0x25, 0x09, 0x97, 0x67, 0xc1, 0x47, 0xc2, 0xcf, 0x91, 0x16, 0x36, 0x62, 0x3d, 0x38 +.byte 0x04, 0xe1, 0x51, 0x82, 0xff, 0xac, 0xd2, 0xb4, 0x69, 0xdd, 0x2e, 0xec, 0x11, 0xa3, 0x45, 0xee +.byte 0x6b, 0x6b, 0x3b, 0x4c, 0xbf, 0x8c, 0x8d, 0xa4, 0x1e, 0x9d, 0x11, 0xb9, 0xe9, 0x38, 0xf9, 0x7a +.byte 0x0e, 0x0c, 0x98, 0xe2, 0x23, 0x1d, 0xd1, 0x4e, 0x63, 0xd4, 0xe7, 0xb8, 0x41, 0x44, 0xfb, 0x6b +.byte 0xaf, 0x6b, 0xda, 0x1f, 0xd3, 0xc5, 0x91, 0x88, 0x5b, 0xa4, 0x89, 0x92, 0xd1, 0x81, 0xe6, 0x8c +.byte 0x39, 0x58, 0xa0, 0xd6, 0x69, 0x43, 0xa9, 0xad, 0x98, 0x52, 0x58, 0x6e, 0xdb, 0x0a, 0xfb, 0x6b +.byte 0xcf, 0x68, 0xfa, 0xe3, 0xa4, 0x5e, 0x3a, 0x45, 0x73, 0x98, 0x07, 0xea, 0x5f, 0x02, 0x72, 0xde +.byte 0x0c, 0xa5, 0xb3, 0x9f, 0xae, 0xa9, 0x1d, 0xb7, 0x1d, 0xb3, 0xfc, 0x8a, 0x59, 0xe7, 0x6e, 0x72 +.byte 0x65, 0xad, 0xf5, 0x30, 0x94, 0x23, 0x07, 0xf3, 0x82, 0x16, 0x4b, 0x35, 0x98, 0x9c, 0x53, 0xbb +.byte 0x2f, 0xca, 0xe4, 0x5a, 0xd9, 0xc7, 0x8d, 0x1d, 0xfc, 0x98, 0x99, 0xfb, 0x2c, 0xa4, 0x82, 0x6b +.byte 0xf0, 0x2a, 0x1f, 0x8e, 0x0b, 0x5f, 0x71, 0x5c, 0x5c, 0xae, 0x42, 0x7b, 0x29, 0x89, 0x81, 0xcb +.byte 0x03, 0xa3, 0x99, 0xca, 0x88, 0x9e, 0x0b, 0x40, 0x09, 0x41, 0x33, 0xdb, 0xe6, 0x58, 0x7a, 0xfd +.byte 0xae, 0x99, 0x70, 0xc0, 0x5a, 0x0f, 0xd6, 0x13, 0x86, 0x71, 0x2f, 0x76, 0x69, 0xfc, 0x90, 0xdd +.byte 0xdb, 0x2d, 0x6e, 0xd1, 0xf2, 0x9b, 0xf5, 0x1a, 0x6b, 0x9e, 0x6f, 0x15, 0x8c, 0x7a, 0xf0, 0x4b +.byte 0x28, 0xa0, 0x22, 0x38, 0x80, 0x24, 0x6c, 0x36, 0xa4, 0x3b, 0xf2, 0x30, 0x91, 0xf3, 0x78, 0x13 +.byte 0xcf, 0xc1, 0x3f, 0x35, 0xab, 0xf1, 0x1d, 0x11, 0x23, 0xb5, 0x43, 0x22, 0x9e, 0x01, 0x92, 0xb7 +.byte 0x18, 0x02, 0xe5, 0x11, 0xd1, 0x82, 0xdb, 0x15, 0x00, 0xcc, 0x61, 0x37, 0xc1, 0x2a, 0x7c, 0x9a +.byte 0xe1, 0xd0, 0xba, 0xb3, 0x50, 0x46, 0xee, 0x82, 0xac, 0x9d, 0x31, 0xf8, 0xfb, 0x23, 0xe2, 0x03 +.byte 0x00, 0x48, 0x70, 0xa3, 0x09, 0x26, 0x79, 0x15, 0x53, 0x60, 0xf3, 0x38, 0x5c, 0xad, 0x38, 0xea +.byte 0x81, 0x00, 0x63, 0x14, 0xb9, 0x33, 0x5e, 0xdd, 0x0b, 0xdb, 0xa0, 0x45, 0x07, 0x1a, 0x33, 0x09 +.byte 0xf8, 0x4d, 0xb4, 0xa7, 0x02, 0xa6, 0x69, 0xf4, 0xc2, 0x59, 0x05, 0x88, 0x65, 0x85, 0x56, 0xae +.byte 0x4b, 0xcb, 0xe0, 0xde, 0x3c, 0x7d, 0x2d, 0x1a, 0xc8, 0xe9, 0xfb, 0x1f, 0xa3, 0x61, 0x4a, 0xd6 +.byte 0x2a, 0x13, 0xad, 0x77, 0x4c, 0x1a, 0x18, 0x9b, 0x91, 0x0f, 0x58, 0xd8, 0x06, 0x54, 0xc5, 0x97 +.byte 0xf8, 0xaa, 0x3f, 0x20, 0x8a, 0xa6, 0x85, 0xa6, 0x77, 0xf6, 0xa6, 0xfc, 0x1c, 0xe2, 0xee, 0x6e +.byte 0x94, 0x33, 0x2a, 0x83, 0x50, 0x84, 0x0a, 0xe5, 0x4f, 0x86, 0xf8, 0x50, 0x45, 0x78, 0x00, 0x81 +.byte 0xeb, 0x5b, 0x68, 0xe3, 0x26, 0x8d, 0xcc, 0x7b, 0x5c, 0x51, 0xf4, 0x14, 0x2c, 0x40, 0xbe, 0x1a +.byte 0x60, 0x1d, 0x7a, 0x72, 0x61, 0x1d, 0x1f, 0x63, 0x2d, 0x88, 0xaa, 0xce, 0xa2, 0x45, 0x90, 0x08 +.byte 0xfc, 0x6b, 0xbe, 0xb3, 0x50, 0x2a, 0x5a, 0xfd, 0xa8, 0x48, 0x18, 0x46, 0xd6, 0x90, 0x40, 0x92 +.byte 0x90, 0x0a, 0x84, 0x5e, 0x68, 0x31, 0xf8, 0xeb, 0xed, 0x0d, 0xd3, 0x1d, 0xc6, 0x7d, 0x99, 0x18 +.byte 0x55, 0x56, 0x27, 0x65, 0x2e, 0x8d, 0x45, 0xc5, 0x24, 0xec, 0xce, 0xe3, 0x02, 0x03, 0x01, 0x00 +.byte 0x01, 0x6e, 0x00, 0x26, 0x01, 0x30, 0x6c, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 +.byte 0x13, 0x02, 0x55, 0x53, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44 +.byte 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17, 0x06 +.byte 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63, 0x65 +.byte 0x72, 0x74, 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13 +.byte 0x22, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x48, 0x69, 0x67, 0x68, 0x20, 0x41 +.byte 0x73, 0x73, 0x75, 0x72, 0x61, 0x6e, 0x63, 0x65, 0x20, 0x45, 0x56, 0x20, 0x52, 0x6f, 0x6f, 0x74 +.byte 0x20, 0x43, 0x41, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7 +.byte 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02 +.byte 0x82, 0x01, 0x01, 0x00, 0xc6, 0xcc, 0xe5, 0x73, 0xe6, 0xfb, 0xd4, 0xbb, 0xe5, 0x2d, 0x2d, 0x32 +.byte 0xa6, 0xdf, 0xe5, 0x81, 0x3f, 0xc9, 0xcd, 0x25, 0x49, 0xb6, 0x71, 0x2a, 0xc3, 0xd5, 0x94, 0x34 +.byte 0x67, 0xa2, 0x0a, 0x1c, 0xb0, 0x5f, 0x69, 0xa6, 0x40, 0xb1, 0xc4, 0xb7, 0xb2, 0x8f, 0xd0, 0x98 +.byte 0xa4, 0xa9, 0x41, 0x59, 0x3a, 0xd3, 0xdc, 0x94, 0xd6, 0x3c, 0xdb, 0x74, 0x38, 0xa4, 0x4a, 0xcc +.byte 0x4d, 0x25, 0x82, 0xf7, 0x4a, 0xa5, 0x53, 0x12, 0x38, 0xee, 0xf3, 0x49, 0x6d, 0x71, 0x91, 0x7e +.byte 0x63, 0xb6, 0xab, 0xa6, 0x5f, 0xc3, 0xa4, 0x84, 0xf8, 0x4f, 0x62, 0x51, 0xbe, 0xf8, 0xc5, 0xec +.byte 0xdb, 0x38, 0x92, 0xe3, 0x06, 0xe5, 0x08, 0x91, 0x0c, 0xc4, 0x28, 0x41, 0x55, 0xfb, 0xcb, 0x5a +.byte 0x89, 0x15, 0x7e, 0x71, 0xe8, 0x35, 0xbf, 0x4d, 0x72, 0x09, 0x3d, 0xbe, 0x3a, 0x38, 0x50, 0x5b +.byte 0x77, 0x31, 0x1b, 0x8d, 0xb3, 0xc7, 0x24, 0x45, 0x9a, 0xa7, 0xac, 0x6d, 0x00, 0x14, 0x5a, 0x04 +.byte 0xb7, 0xba, 0x13, 0xeb, 0x51, 0x0a, 0x98, 0x41, 0x41, 0x22, 0x4e, 0x65, 0x61, 0x87, 0x81, 0x41 +.byte 0x50, 0xa6, 0x79, 0x5c, 0x89, 0xde, 0x19, 0x4a, 0x57, 0xd5, 0x2e, 0xe6, 0x5d, 0x1c, 0x53, 0x2c +.byte 0x7e, 0x98, 0xcd, 0x1a, 0x06, 0x16, 0xa4, 0x68, 0x73, 0xd0, 0x34, 0x04, 0x13, 0x5c, 0xa1, 0x71 +.byte 0xd3, 0x5a, 0x7c, 0x55, 0xdb, 0x5e, 0x64, 0xe1, 0x37, 0x87, 0x30, 0x56, 0x04, 0xe5, 0x11, 0xb4 +.byte 0x29, 0x80, 0x12, 0xf1, 0x79, 0x39, 0x88, 0xa2, 0x02, 0x11, 0x7c, 0x27, 0x66, 0xb7, 0x88, 0xb7 +.byte 0x78, 0xf2, 0xca, 0x0a, 0xa8, 0x38, 0xab, 0x0a, 0x64, 0xc2, 0xbf, 0x66, 0x5d, 0x95, 0x84, 0xc1 +.byte 0xa1, 0x25, 0x1e, 0x87, 0x5d, 0x1a, 0x50, 0x0b, 0x20, 0x12, 0xcc, 0x41, 0xbb, 0x6e, 0x0b, 0x51 +.byte 0x38, 0xb8, 0x4b, 0xcb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x6f, 0x00, 0x26, 0x01, 0x30, 0x6d, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x48, 0x31, 0x10, 0x30, 0x0e +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x07, 0x57, 0x49, 0x53, 0x65, 0x4b, 0x65, 0x79, 0x31, 0x22 +.byte 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x19, 0x4f, 0x49, 0x53, 0x54, 0x45, 0x20, 0x46 +.byte 0x6f, 0x75, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x45, 0x6e, 0x64, 0x6f, 0x72, 0x73 +.byte 0x65, 0x64, 0x31, 0x28, 0x30, 0x26, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1f, 0x4f, 0x49, 0x53 +.byte 0x54, 0x45, 0x20, 0x57, 0x49, 0x53, 0x65, 0x4b, 0x65, 0x79, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61 +.byte 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x42, 0x20, 0x43, 0x41, 0x30, 0x82, 0x01, 0x22 +.byte 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03 +.byte 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xd8, 0x17, 0xb7 +.byte 0x1c, 0x4a, 0x24, 0x2a, 0xd6, 0x97, 0xb1, 0xca, 0xe2, 0x1e, 0xfb, 0x7d, 0x38, 0xef, 0x98, 0xf5 +.byte 0xb2, 0x39, 0x98, 0x4e, 0x27, 0xb8, 0x11, 0x5d, 0x7b, 0xd2, 0x25, 0x94, 0x88, 0x82, 0x15, 0x26 +.byte 0x6a, 0x1b, 0x31, 0xbb, 0xa8, 0x5b, 0x21, 0x21, 0x2b, 0xd8, 0x0f, 0x4e, 0x9f, 0x5a, 0xf1, 0xb1 +.byte 0x5a, 0xe4, 0x79, 0xd6, 0x32, 0x23, 0x2b, 0xe1, 0x53, 0xcc, 0x99, 0x45, 0x5c, 0x7b, 0x4f, 0xad +.byte 0xbc, 0xbf, 0x87, 0x4a, 0x0b, 0x4b, 0x97, 0x5a, 0xa8, 0xf6, 0x48, 0xec, 0x7d, 0x7b, 0x0d, 0xcd +.byte 0x21, 0x06, 0xdf, 0x9e, 0x15, 0xfd, 0x41, 0x8a, 0x48, 0xb7, 0x20, 0xf4, 0xa1, 0x7a, 0x1b, 0x57 +.byte 0xd4, 0x5d, 0x50, 0xff, 0xba, 0x67, 0xd8, 0x23, 0x99, 0x1f, 0xc8, 0x3f, 0xe3, 0xde, 0xff, 0x6f +.byte 0x5b, 0x77, 0xb1, 0x6b, 0x6e, 0xb8, 0xc9, 0x64, 0xf7, 0xe1, 0xca, 0x41, 0x46, 0x0e, 0x29, 0x71 +.byte 0xd0, 0xb9, 0x23, 0xfc, 0xc9, 0x81, 0x5f, 0x4e, 0xf7, 0x6f, 0xdf, 0xbf, 0x84, 0xad, 0x73, 0x64 +.byte 0xbb, 0xb7, 0x42, 0x8e, 0x69, 0xf6, 0xd4, 0x76, 0x1d, 0x7e, 0x9d, 0xa7, 0xb8, 0x57, 0x8a, 0x51 +.byte 0x67, 0x72, 0xd7, 0xd4, 0xa8, 0xb8, 0x95, 0x54, 0x40, 0x73, 0x03, 0xf6, 0xea, 0xf4, 0xeb, 0xfe +.byte 0x28, 0x42, 0x77, 0x3f, 0x9d, 0x23, 0x1b, 0xb2, 0xb6, 0x3d, 0x80, 0x14, 0x07, 0x4c, 0x2e, 0x4f +.byte 0xf7, 0xd5, 0x0a, 0x16, 0x0d, 0xbd, 0x66, 0x43, 0x37, 0x7e, 0x23, 0x43, 0x79, 0xc3, 0x40, 0x86 +.byte 0xf5, 0x4c, 0x29, 0xda, 0x8e, 0x9a, 0xad, 0x0d, 0xa5, 0x04, 0x87, 0x88, 0x1e, 0x85, 0xe3, 0xe9 +.byte 0x53, 0xd5, 0x9b, 0xc8, 0x8b, 0x03, 0x63, 0x78, 0xeb, 0xe0, 0x19, 0x4a, 0x6e, 0xbb, 0x2f, 0x6b +.byte 0x33, 0x64, 0x58, 0x93, 0xad, 0x69, 0xbf, 0x8f, 0x1b, 0xef, 0x82, 0x48, 0xc7, 0x02, 0x03, 0x01 +.byte 0x00, 0x01, 0x6f, 0x00, 0x78, 0x00, 0x30, 0x6d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x43, 0x48, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x07 +.byte 0x57, 0x49, 0x53, 0x65, 0x4b, 0x65, 0x79, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x0b +.byte 0x13, 0x19, 0x4f, 0x49, 0x53, 0x54, 0x45, 0x20, 0x46, 0x6f, 0x75, 0x6e, 0x64, 0x61, 0x74, 0x69 +.byte 0x6f, 0x6e, 0x20, 0x45, 0x6e, 0x64, 0x6f, 0x72, 0x73, 0x65, 0x64, 0x31, 0x28, 0x30, 0x26, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x1f, 0x4f, 0x49, 0x53, 0x54, 0x45, 0x20, 0x57, 0x49, 0x53, 0x65 +.byte 0x4b, 0x65, 0x79, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20 +.byte 0x47, 0x43, 0x20, 0x43, 0x41, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d +.byte 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x4c, 0xe9, 0x50 +.byte 0xc0, 0xc6, 0x0f, 0x72, 0x18, 0xbc, 0xd8, 0xf1, 0xba, 0xb3, 0x89, 0xe2, 0x79, 0x4a, 0xa3, 0x16 +.byte 0xa7, 0x6b, 0x54, 0x24, 0xdb, 0x51, 0xff, 0xea, 0xf4, 0x09, 0x24, 0xc3, 0x0b, 0x22, 0x9f, 0xcb +.byte 0x6a, 0x27, 0x82, 0x81, 0x0d, 0xd2, 0xc0, 0xaf, 0x31, 0xe4, 0x74, 0x82, 0x6e, 0xca, 0x25, 0xd9 +.byte 0x8c, 0x75, 0x9d, 0xf1, 0xdb, 0xd0, 0x9a, 0xa2, 0x4b, 0x21, 0x7e, 0x16, 0xa7, 0x63, 0x90, 0xd2 +.byte 0x39, 0xd4, 0xb1, 0x87, 0x78, 0x5f, 0x18, 0x96, 0x0f, 0x50, 0x1b, 0x35, 0x37, 0x0f, 0x6a, 0xc6 +.byte 0xdc, 0xd9, 0x13, 0x4d, 0xa4, 0x8e, 0x90, 0x37, 0xe6, 0xbd, 0x5b, 0x31, 0x91, 0x70, 0x00, 0x78 +.byte 0x00, 0x30, 0x6e, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x45, 0x53 +.byte 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x13, 0x46, 0x69, 0x72, 0x6d, 0x61 +.byte 0x70, 0x72, 0x6f, 0x66, 0x65, 0x73, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x20, 0x53, 0x41, 0x31, 0x18 +.byte 0x30, 0x16, 0x06, 0x03, 0x55, 0x04, 0x61, 0x0c, 0x0f, 0x56, 0x41, 0x54, 0x45, 0x53, 0x2d, 0x41 +.byte 0x36, 0x32, 0x36, 0x33, 0x34, 0x30, 0x36, 0x38, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x0c, 0x1e, 0x46, 0x49, 0x52, 0x4d, 0x41, 0x50, 0x52, 0x4f, 0x46, 0x45, 0x53, 0x49, 0x4f +.byte 0x4e, 0x41, 0x4c, 0x20, 0x43, 0x41, 0x20, 0x52, 0x4f, 0x4f, 0x54, 0x2d, 0x41, 0x20, 0x57, 0x45 +.byte 0x42, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05 +.byte 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x47, 0x53, 0xea, 0x2c, 0x11, 0xa4, 0x77 +.byte 0xc7, 0x2a, 0xea, 0xf3, 0xd6, 0x5f, 0x7b, 0xd3, 0x04, 0x91, 0x5c, 0xfa, 0x88, 0xc6, 0x22, 0xb9 +.byte 0x83, 0x10, 0x62, 0x77, 0x84, 0x33, 0x2d, 0xe9, 0x03, 0x88, 0xd4, 0xe0, 0x33, 0xf7, 0xed, 0x77 +.byte 0x2c, 0x4a, 0x60, 0xea, 0xe4, 0x6f, 0xad, 0x6d, 0xb4, 0xf8, 0x4c, 0x8a, 0xa4, 0xe4, 0x1f, 0xca +.byte 0xea, 0x4f, 0x38, 0x4a, 0x2e, 0x82, 0x73, 0x2b, 0xc7, 0x66, 0x9b, 0x0a, 0x8c, 0x40, 0x9c, 0x7c +.byte 0x8a, 0xf6, 0xf2, 0x39, 0x60, 0xb2, 0xde, 0xcb, 0xec, 0xb8, 0xe4, 0x6f, 0xea, 0x9b, 0x5d, 0xb7 +.byte 0x53, 0x90, 0x18, 0x32, 0x55, 0xc5, 0x20, 0xb7, 0x94, 0x71, 0x00, 0x26, 0x02, 0x30, 0x6f, 0x31 +.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x48, 0x4b, 0x31, 0x12, 0x30, 0x10 +.byte 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x09, 0x48, 0x6f, 0x6e, 0x67, 0x20, 0x4b, 0x6f, 0x6e, 0x67 +.byte 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x09, 0x48, 0x6f, 0x6e, 0x67, 0x20 +.byte 0x4b, 0x6f, 0x6e, 0x67, 0x31, 0x16, 0x30, 0x14, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0d, 0x48 +.byte 0x6f, 0x6e, 0x67, 0x6b, 0x6f, 0x6e, 0x67, 0x20, 0x50, 0x6f, 0x73, 0x74, 0x31, 0x20, 0x30, 0x1e +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x17, 0x48, 0x6f, 0x6e, 0x67, 0x6b, 0x6f, 0x6e, 0x67, 0x20 +.byte 0x50, 0x6f, 0x73, 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x33, 0x30, 0x82 +.byte 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05 +.byte 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xb3 +.byte 0x88, 0xd7, 0xea, 0xce, 0x0f, 0x20, 0x4e, 0xbe, 0xe6, 0xd6, 0x03, 0x6d, 0xee, 0x59, 0xfc, 0xc2 +.byte 0x57, 0xdf, 0x29, 0x68, 0xa1, 0x83, 0x0e, 0x3e, 0x68, 0xc7, 0x68, 0x58, 0x9c, 0x1c, 0x60, 0x4b +.byte 0x89, 0x43, 0x0c, 0xb9, 0xd4, 0x15, 0xb2, 0xee, 0xc1, 0x4e, 0x75, 0xe9, 0xb5, 0xa7, 0xef, 0xe5 +.byte 0xe9, 0x35, 0x99, 0xe4, 0xcc, 0x1c, 0xe7, 0x4b, 0x5f, 0x8d, 0x33, 0x30, 0x20, 0x33, 0x53, 0xd9 +.byte 0xa6, 0xbb, 0xd5, 0x3e, 0x13, 0x8e, 0xe9, 0x1f, 0x87, 0x49, 0xad, 0x50, 0x2d, 0x50, 0xca, 0x18 +.byte 0xbe, 0x01, 0x58, 0xa2, 0x13, 0x70, 0x96, 0xbb, 0x89, 0x88, 0x56, 0x80, 0x5c, 0xf8, 0xbd, 0x2c +.byte 0x3c, 0xe1, 0x4c, 0x57, 0x88, 0xbb, 0xd3, 0xb9, 0x95, 0xef, 0xcb, 0xc7, 0xf6, 0xda, 0x31, 0x74 +.byte 0x28, 0xa6, 0xe6, 0x54, 0x89, 0xf5, 0x41, 0x31, 0xca, 0xe5, 0x26, 0x1a, 0xcd, 0x82, 0xe0, 0x70 +.byte 0xda, 0x3b, 0x29, 0xbb, 0xd5, 0x03, 0xf5, 0x99, 0xba, 0x55, 0xf5, 0x64, 0xd1, 0x60, 0x0e, 0xb3 +.byte 0x89, 0x49, 0xb8, 0x8a, 0x2f, 0x05, 0xd2, 0x84, 0x45, 0x28, 0x7c, 0x8f, 0x68, 0x50, 0x12, 0x78 +.byte 0xfc, 0x0b, 0xb5, 0x53, 0xcb, 0xc2, 0x98, 0x1c, 0x84, 0xa3, 0x9e, 0xb0, 0xbe, 0x23, 0xa4, 0xda +.byte 0xdc, 0xc8, 0x2b, 0x1e, 0xda, 0x6e, 0x45, 0x1e, 0x89, 0x98, 0xda, 0xf9, 0x00, 0x2e, 0x06, 0xe9 +.byte 0x0c, 0x3b, 0x70, 0xd5, 0x50, 0x25, 0x88, 0x99, 0xcb, 0xcd, 0x73, 0x60, 0xf7, 0xd5, 0xff, 0x35 +.byte 0x67, 0xc5, 0xa1, 0xbc, 0x5e, 0xab, 0xcd, 0x4a, 0xb8, 0x45, 0xeb, 0xc8, 0x68, 0x1e, 0x0d, 0x0d +.byte 0x14, 0x46, 0x12, 0xe3, 0xd2, 0x64, 0x62, 0x8a, 0x42, 0x98, 0xbc, 0xb4, 0xc6, 0x08, 0x08, 0xf8 +.byte 0xfd, 0xa8, 0x4c, 0x64, 0x9c, 0x76, 0x01, 0xbd, 0x2f, 0xa9, 0x6c, 0x33, 0x0f, 0xd8, 0x3f, 0x28 +.byte 0xb8, 0x3c, 0x69, 0x01, 0x42, 0x86, 0x7e, 0x69, 0xc1, 0xc9, 0x06, 0xca, 0xe5, 0x7a, 0x46, 0x65 +.byte 0xe9, 0xc2, 0xd6, 0x50, 0x41, 0x2e, 0x3f, 0xb7, 0xe4, 0xed, 0x6c, 0xd7, 0xbf, 0x26, 0x01, 0x11 +.byte 0xa2, 0x16, 0x29, 0x4a, 0x6b, 0x34, 0x06, 0x90, 0xec, 0x13, 0xd2, 0xb6, 0xfb, 0x6a, 0x76, 0xd2 +.byte 0x3c, 0xed, 0xf0, 0xd6, 0x2d, 0xdd, 0xe1, 0x15, 0xec, 0xa3, 0x9b, 0x2f, 0x2c, 0xc9, 0x3e, 0x2b +.byte 0xe4, 0x69, 0x3b, 0xff, 0x72, 0x25, 0xb1, 0x36, 0x86, 0x5b, 0xc7, 0x7f, 0x6b, 0x8b, 0x55, 0x1b +.byte 0x4a, 0xc5, 0x20, 0x61, 0x3d, 0xae, 0xcb, 0x50, 0xe1, 0x08, 0x3a, 0xbe, 0xb0, 0x8f, 0x63, 0x41 +.byte 0x53, 0x30, 0x08, 0x59, 0x3c, 0x98, 0x1d, 0x77, 0xba, 0x63, 0x91, 0x7a, 0xca, 0x10, 0x50, 0x60 +.byte 0xbf, 0xf0, 0xd7, 0xbc, 0x95, 0x87, 0x8f, 0x97, 0xc5, 0xfe, 0x97, 0x6a, 0x01, 0x94, 0xa3, 0x7c +.byte 0x5b, 0x85, 0x1d, 0x2a, 0x39, 0x3a, 0xd0, 0x54, 0xa1, 0xd1, 0x39, 0x71, 0x9d, 0xfd, 0x21, 0xf9 +.byte 0xb5, 0x7b, 0xf0, 0xe2, 0xe0, 0x02, 0x8f, 0x6e, 0x96, 0x24, 0x25, 0x2c, 0xa0, 0x1e, 0x2c, 0xa8 +.byte 0xc4, 0x89, 0xa7, 0xef, 0xed, 0x99, 0x06, 0x2f, 0xb6, 0x0a, 0x4c, 0x4f, 0xdb, 0xa2, 0xcc, 0x37 +.byte 0x1a, 0xaf, 0x47, 0x85, 0x2d, 0x8a, 0x5f, 0xc4, 0x34, 0x34, 0x4c, 0x00, 0xfd, 0x18, 0x93, 0x67 +.byte 0x13, 0xd1, 0x37, 0xe6, 0x48, 0xb4, 0x8b, 0x06, 0xc5, 0x57, 0x7b, 0x19, 0x86, 0x0a, 0x79, 0xcb +.byte 0x00, 0xc9, 0x52, 0xaf, 0x42, 0xff, 0x37, 0x8f, 0xe1, 0xa3, 0x1e, 0x7a, 0x3d, 0x50, 0xab, 0x63 +.byte 0x06, 0xe7, 0x15, 0xb5, 0x3f, 0xb6, 0x45, 0x37, 0x94, 0x37, 0xb1, 0x7e, 0xf2, 0x48, 0xc3, 0x7f +.byte 0xc5, 0x75, 0xfe, 0x97, 0x8d, 0x45, 0x8f, 0x1a, 0xa7, 0x1a, 0x72, 0x28, 0x1a, 0x40, 0x0f, 0x02 +.byte 0x03, 0x01, 0x00, 0x01, 0x73, 0x00, 0x5b, 0x00, 0x30, 0x71, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x48, 0x55, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x07 +.byte 0x0c, 0x08, 0x42, 0x75, 0x64, 0x61, 0x70, 0x65, 0x73, 0x74, 0x31, 0x16, 0x30, 0x14, 0x06, 0x03 +.byte 0x55, 0x04, 0x0a, 0x0c, 0x0d, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x65, 0x63, 0x20, 0x4c, 0x74 +.byte 0x64, 0x2e, 0x31, 0x17, 0x30, 0x15, 0x06, 0x03, 0x55, 0x04, 0x61, 0x0c, 0x0e, 0x56, 0x41, 0x54 +.byte 0x48, 0x55, 0x2d, 0x32, 0x33, 0x35, 0x38, 0x34, 0x34, 0x39, 0x37, 0x31, 0x1e, 0x30, 0x1c, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x0c, 0x15, 0x65, 0x2d, 0x53, 0x7a, 0x69, 0x67, 0x6e, 0x6f, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x32, 0x30, 0x31, 0x37, 0x30, 0x59, 0x30, 0x13, 0x06 +.byte 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x08, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x03 +.byte 0x01, 0x07, 0x03, 0x42, 0x00, 0x04, 0x96, 0xdc, 0x3d, 0x8a, 0xd8, 0xb0, 0x7b, 0x6f, 0xc6, 0x27 +.byte 0xbe, 0x44, 0x90, 0xb1, 0xb3, 0x56, 0x15, 0x7b, 0x8e, 0x43, 0x24, 0x7d, 0x1a, 0x84, 0x59, 0xee +.byte 0x63, 0x68, 0xb2, 0xc6, 0x5e, 0x87, 0xd0, 0x15, 0x48, 0x1e, 0xa8, 0x90, 0xad, 0xbd, 0x53, 0xa2 +.byte 0xda, 0xde, 0x3a, 0x90, 0xa6, 0x60, 0x5f, 0x68, 0x32, 0xb5, 0x86, 0x41, 0xdf, 0x87, 0x5b, 0x2c +.byte 0x7b, 0xc5, 0xfe, 0x7c, 0x7a, 0xda, 0x76, 0x00, 0x78, 0x00, 0x30, 0x74, 0x31, 0x0b, 0x30, 0x09 +.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x50, 0x4c, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55 +.byte 0x04, 0x0a, 0x13, 0x18, 0x41, 0x73, 0x73, 0x65, 0x63, 0x6f, 0x20, 0x44, 0x61, 0x74, 0x61, 0x20 +.byte 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x20, 0x53, 0x2e, 0x41, 0x2e, 0x31, 0x27, 0x30, 0x25 +.byte 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1e, 0x43, 0x65, 0x72, 0x74, 0x75, 0x6d, 0x20, 0x43, 0x65 +.byte 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68 +.byte 0x6f, 0x72, 0x69, 0x74, 0x79, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x10 +.byte 0x43, 0x65, 0x72, 0x74, 0x75, 0x6d, 0x20, 0x45, 0x43, 0x2d, 0x33, 0x38, 0x34, 0x20, 0x43, 0x41 +.byte 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b +.byte 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xc4, 0x28, 0x8e, 0xab, 0x18, 0x5b, 0x6a, 0xbe +.byte 0x6e, 0x64, 0x37, 0x63, 0xe4, 0xcd, 0xec, 0xab, 0x3a, 0xf7, 0xcc, 0xa1, 0xb8, 0x0e, 0x82, 0x49 +.byte 0xd7, 0x86, 0x29, 0x9f, 0xa1, 0x94, 0xf2, 0xe3, 0x60, 0x78, 0x98, 0x81, 0x78, 0x06, 0x4d, 0xf2 +.byte 0xec, 0x9a, 0x0e, 0x57, 0x60, 0x83, 0x9f, 0xb4, 0xe6, 0x17, 0x2f, 0x1a, 0xb3, 0x5d, 0x02, 0x5b +.byte 0x89, 0x23, 0x3c, 0xc2, 0x11, 0x05, 0x2a, 0xa7, 0x88, 0x13, 0x18, 0xf3, 0x50, 0x84, 0xd7, 0xbd +.byte 0x34, 0x2c, 0x27, 0x89, 0x55, 0xff, 0xce, 0x4c, 0xe7, 0xdf, 0xa6, 0x1f, 0x28, 0xc4, 0xf0, 0x54 +.byte 0xc3, 0xb9, 0x7c, 0xb7, 0x53, 0xad, 0xeb, 0xc2, 0x7a, 0x00, 0x78, 0x00, 0x30, 0x78, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x45, 0x53, 0x31, 0x11, 0x30, 0x0f, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x08, 0x46, 0x4e, 0x4d, 0x54, 0x2d, 0x52, 0x43, 0x4d, 0x31, 0x0e +.byte 0x30, 0x0c, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x05, 0x43, 0x65, 0x72, 0x65, 0x73, 0x31, 0x18 +.byte 0x30, 0x16, 0x06, 0x03, 0x55, 0x04, 0x61, 0x0c, 0x0f, 0x56, 0x41, 0x54, 0x45, 0x53, 0x2d, 0x51 +.byte 0x32, 0x38, 0x32, 0x36, 0x30, 0x30, 0x34, 0x4a, 0x31, 0x2c, 0x30, 0x2a, 0x06, 0x03, 0x55, 0x04 +.byte 0x03, 0x0c, 0x23, 0x41, 0x43, 0x20, 0x52, 0x41, 0x49, 0x5a, 0x20, 0x46, 0x4e, 0x4d, 0x54, 0x2d +.byte 0x52, 0x43, 0x4d, 0x20, 0x53, 0x45, 0x52, 0x56, 0x49, 0x44, 0x4f, 0x52, 0x45, 0x53, 0x20, 0x53 +.byte 0x45, 0x47, 0x55, 0x52, 0x4f, 0x53, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce +.byte 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xf6, 0xba +.byte 0x57, 0x53, 0xc8, 0xca, 0xab, 0xdf, 0x36, 0x4a, 0x52, 0x21, 0xe4, 0x97, 0xd2, 0x83, 0x67, 0x9e +.byte 0xf0, 0x65, 0x51, 0xd0, 0x5e, 0x87, 0xc7, 0x47, 0xb1, 0x59, 0xf2, 0x57, 0x47, 0x9b, 0x00, 0x02 +.byte 0x93, 0x44, 0x17, 0x69, 0xdb, 0x42, 0xc7, 0xb1, 0xb2, 0x3a, 0x18, 0x0e, 0xb4, 0x5d, 0x8c, 0xb3 +.byte 0x66, 0x5d, 0xa1, 0x34, 0xf9, 0x36, 0x2c, 0x49, 0xdb, 0xf3, 0x46, 0xfc, 0xb3, 0x44, 0x69, 0x44 +.byte 0x13, 0x66, 0xfd, 0xd7, 0xc5, 0xfd, 0xaf, 0x36, 0x4d, 0xce, 0x03, 0x4d, 0x07, 0x71, 0xcf, 0xaf +.byte 0x6a, 0x05, 0xd2, 0xa2, 0x43, 0x5a, 0x0a, 0x52, 0x6f, 0x01, 0x03, 0x4e, 0x8e, 0x8b, 0x7c, 0x00 +.byte 0x26, 0x02, 0x30, 0x7a, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x50 +.byte 0x4c, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x18, 0x41, 0x73, 0x73, 0x65 +.byte 0x63, 0x6f, 0x20, 0x44, 0x61, 0x74, 0x61, 0x20, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x20 +.byte 0x53, 0x2e, 0x41, 0x2e, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1e, 0x43 +.byte 0x65, 0x72, 0x74, 0x75, 0x6d, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74 +.byte 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x31, 0x1f, 0x30 +.byte 0x1d, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x16, 0x43, 0x65, 0x72, 0x74, 0x75, 0x6d, 0x20, 0x54 +.byte 0x72, 0x75, 0x73, 0x74, 0x65, 0x64, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82 +.byte 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05 +.byte 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xd1 +.byte 0x2d, 0x8e, 0xbb, 0xb7, 0x36, 0xea, 0x6d, 0x37, 0x91, 0x9f, 0x4e, 0x93, 0xa7, 0x05, 0xe4, 0x29 +.byte 0x03, 0x25, 0xce, 0x1c, 0x82, 0xf7, 0x7c, 0x99, 0x9f, 0x41, 0x06, 0xcd, 0xed, 0xa3, 0xba, 0xc0 +.byte 0xdb, 0x09, 0x2c, 0xc1, 0x7c, 0xdf, 0x29, 0x7e, 0x4b, 0x65, 0x2f, 0x93, 0xa7, 0xd4, 0x01, 0x6b +.byte 0x03, 0x28, 0x18, 0xa3, 0xd8, 0x9d, 0x05, 0xc1, 0x2a, 0xd8, 0x45, 0xf1, 0x91, 0xde, 0xdf, 0x3b +.byte 0xd0, 0x80, 0x02, 0x8c, 0xcf, 0x38, 0x0f, 0xea, 0xa7, 0x5c, 0x78, 0x11, 0xa4, 0xc1, 0xc8, 0x85 +.byte 0x5c, 0x25, 0xd3, 0xd3, 0xb2, 0xe7, 0x25, 0xcf, 0x11, 0x54, 0x97, 0xab, 0x35, 0xc0, 0x1e, 0x76 +.byte 0x1c, 0xef, 0x00, 0x53, 0x9f, 0x39, 0xdc, 0x14, 0xa5, 0x2c, 0x22, 0x25, 0xb3, 0x72, 0x72, 0xfc +.byte 0x8d, 0xb3, 0xe5, 0x3e, 0x08, 0x1e, 0x14, 0x2a, 0x37, 0x0b, 0x88, 0x3c, 0xca, 0xb0, 0xf4, 0xc8 +.byte 0xc2, 0xa1, 0xae, 0xbc, 0xc1, 0xbe, 0x29, 0x67, 0x55, 0xe2, 0xfc, 0xad, 0x59, 0x5c, 0xfe, 0xbd +.byte 0x57, 0x2c, 0xb0, 0x90, 0x8d, 0xc2, 0xed, 0x37, 0xb6, 0x7c, 0x99, 0x88, 0xb5, 0xd5, 0x03, 0x9a +.byte 0x3d, 0x15, 0x0d, 0x3d, 0x3a, 0xa8, 0xa8, 0x45, 0xf0, 0x95, 0x4e, 0x25, 0x59, 0x1d, 0xcd, 0x98 +.byte 0x69, 0xbb, 0xd3, 0xcc, 0x32, 0xc9, 0x8d, 0xef, 0x81, 0xfe, 0xad, 0x7d, 0x89, 0xbb, 0xba, 0x60 +.byte 0x13, 0xca, 0x65, 0x95, 0x67, 0xa0, 0xf3, 0x19, 0xf6, 0x03, 0x56, 0xd4, 0x6a, 0xd3, 0x27, 0xe2 +.byte 0xa1, 0xad, 0x83, 0xf0, 0x4a, 0x12, 0x22, 0x77, 0x1c, 0x05, 0x73, 0xe2, 0x19, 0x71, 0x42, 0xc0 +.byte 0xec, 0x75, 0x46, 0x9a, 0x90, 0x58, 0xe0, 0x6a, 0x8e, 0x2b, 0xa5, 0x46, 0x30, 0x04, 0x8e, 0x19 +.byte 0xb2, 0x17, 0xe3, 0xbe, 0xa9, 0xba, 0x7f, 0x56, 0xf1, 0x24, 0x03, 0xd7, 0xb2, 0x21, 0x28, 0x76 +.byte 0x0e, 0x36, 0x30, 0x4c, 0x79, 0xd5, 0x41, 0x9a, 0x9a, 0xa8, 0xb8, 0x35, 0xba, 0x0c, 0x3a, 0xf2 +.byte 0x44, 0x1b, 0x20, 0x88, 0xf7, 0xc5, 0x25, 0xd7, 0x3d, 0xc6, 0xe3, 0x3e, 0x43, 0xdd, 0x87, 0xfe +.byte 0xc4, 0xea, 0xf5, 0x53, 0x3e, 0x4c, 0x65, 0xff, 0x3b, 0x4a, 0xcb, 0x78, 0x5a, 0x6b, 0x17, 0x5f +.byte 0x0d, 0xc7, 0xc3, 0x4f, 0x4e, 0x9a, 0x2a, 0xa2, 0xed, 0x57, 0x4d, 0x22, 0xe2, 0x46, 0x9a, 0x3f +.byte 0x0f, 0x91, 0x34, 0x24, 0x7d, 0x55, 0xe3, 0x8c, 0x95, 0x37, 0xd3, 0x1a, 0xf0, 0x09, 0x2b, 0x2c +.byte 0xd2, 0xc9, 0x8d, 0xb4, 0x0d, 0x00, 0xab, 0x67, 0x29, 0x28, 0xd8, 0x01, 0xf5, 0x19, 0x04, 0xb6 +.byte 0x1d, 0xbe, 0x76, 0xfe, 0x72, 0x5c, 0xc4, 0x85, 0xca, 0xd2, 0x80, 0x41, 0xdf, 0x05, 0xa8, 0xa3 +.byte 0xd5, 0x84, 0x90, 0x4f, 0x0b, 0xf3, 0xe0, 0x3f, 0x9b, 0x19, 0xd2, 0x37, 0x89, 0x3f, 0xf2, 0x7b +.byte 0x52, 0x1c, 0x8c, 0xf6, 0xe1, 0xf7, 0x3c, 0x07, 0x97, 0x8c, 0x0e, 0xa2, 0x59, 0x81, 0x0c, 0xb2 +.byte 0x90, 0x3d, 0xd3, 0xe3, 0x59, 0x46, 0xed, 0x0f, 0xa9, 0xa7, 0xde, 0x80, 0x6b, 0x5a, 0xaa, 0x07 +.byte 0xb6, 0x19, 0xcb, 0xbc, 0x57, 0xf3, 0x97, 0x21, 0x7a, 0x0c, 0xb1, 0x2b, 0x74, 0x3e, 0xeb, 0xda +.byte 0xa7, 0x67, 0x2d, 0x4c, 0xc4, 0x98, 0x9e, 0x36, 0x09, 0x76, 0x66, 0x66, 0xfc, 0x1a, 0x3f, 0xea +.byte 0x48, 0x54, 0x1c, 0xbe, 0x30, 0xbd, 0x80, 0x50, 0xbf, 0x7c, 0xb5, 0xce, 0x00, 0xf6, 0x0c, 0x61 +.byte 0xd9, 0xe7, 0x24, 0x03, 0xe0, 0xe3, 0x01, 0x81, 0x0e, 0xbd, 0xd8, 0x85, 0x34, 0x88, 0xbd, 0xb2 +.byte 0x36, 0xa8, 0x7b, 0x5c, 0x08, 0xe5, 0x44, 0x80, 0x8c, 0x6f, 0xf8, 0x2f, 0xd5, 0x21, 0xca, 0x1d +.byte 0x1c, 0xd0, 0xfb, 0xc4, 0xb5, 0x87, 0xd1, 0x3a, 0x4e, 0xc7, 0x76, 0xb5, 0x35, 0x48, 0xb5, 0x02 +.byte 0x03, 0x01, 0x00, 0x01, 0x7d, 0x00, 0x26, 0x01, 0x30, 0x7b, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x42, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x08 +.byte 0x0c, 0x12, 0x47, 0x72, 0x65, 0x61, 0x74, 0x65, 0x72, 0x20, 0x4d, 0x61, 0x6e, 0x63, 0x68, 0x65 +.byte 0x73, 0x74, 0x65, 0x72, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x07, 0x53 +.byte 0x61, 0x6c, 0x66, 0x6f, 0x72, 0x64, 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c +.byte 0x11, 0x43, 0x6f, 0x6d, 0x6f, 0x64, 0x6f, 0x20, 0x43, 0x41, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74 +.byte 0x65, 0x64, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x18, 0x41, 0x41, 0x41 +.byte 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x53, 0x65, 0x72 +.byte 0x76, 0x69, 0x63, 0x65, 0x73, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48 +.byte 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01 +.byte 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xbe, 0x40, 0x9d, 0xf4, 0x6e, 0xe1, 0xea, 0x76, 0x87, 0x1c +.byte 0x4d, 0x45, 0x44, 0x8e, 0xbe, 0x46, 0xc8, 0x83, 0x06, 0x9d, 0xc1, 0x2a, 0xfe, 0x18, 0x1f, 0x8e +.byte 0xe4, 0x02, 0xfa, 0xf3, 0xab, 0x5d, 0x50, 0x8a, 0x16, 0x31, 0x0b, 0x9a, 0x06, 0xd0, 0xc5, 0x70 +.byte 0x22, 0xcd, 0x49, 0x2d, 0x54, 0x63, 0xcc, 0xb6, 0x6e, 0x68, 0x46, 0x0b, 0x53, 0xea, 0xcb, 0x4c +.byte 0x24, 0xc0, 0xbc, 0x72, 0x4e, 0xea, 0xf1, 0x15, 0xae, 0xf4, 0x54, 0x9a, 0x12, 0x0a, 0xc3, 0x7a +.byte 0xb2, 0x33, 0x60, 0xe2, 0xda, 0x89, 0x55, 0xf3, 0x22, 0x58, 0xf3, 0xde, 0xdc, 0xcf, 0xef, 0x83 +.byte 0x86, 0xa2, 0x8c, 0x94, 0x4f, 0x9f, 0x68, 0xf2, 0x98, 0x90, 0x46, 0x84, 0x27, 0xc7, 0x76, 0xbf +.byte 0xe3, 0xcc, 0x35, 0x2c, 0x8b, 0x5e, 0x07, 0x64, 0x65, 0x82, 0xc0, 0x48, 0xb0, 0xa8, 0x91, 0xf9 +.byte 0x61, 0x9f, 0x76, 0x20, 0x50, 0xa8, 0x91, 0xc7, 0x66, 0xb5, 0xeb, 0x78, 0x62, 0x03, 0x56, 0xf0 +.byte 0x8a, 0x1a, 0x13, 0xea, 0x31, 0xa3, 0x1e, 0xa0, 0x99, 0xfd, 0x38, 0xf6, 0xf6, 0x27, 0x32, 0x58 +.byte 0x6f, 0x07, 0xf5, 0x6b, 0xb8, 0xfb, 0x14, 0x2b, 0xaf, 0xb7, 0xaa, 0xcc, 0xd6, 0x63, 0x5f, 0x73 +.byte 0x8c, 0xda, 0x05, 0x99, 0xa8, 0x38, 0xa8, 0xcb, 0x17, 0x78, 0x36, 0x51, 0xac, 0xe9, 0x9e, 0xf4 +.byte 0x78, 0x3a, 0x8d, 0xcf, 0x0f, 0xd9, 0x42, 0xe2, 0x98, 0x0c, 0xab, 0x2f, 0x9f, 0x0e, 0x01, 0xde +.byte 0xef, 0x9f, 0x99, 0x49, 0xf1, 0x2d, 0xdf, 0xac, 0x74, 0x4d, 0x1b, 0x98, 0xb5, 0x47, 0xc5, 0xe5 +.byte 0x29, 0xd1, 0xf9, 0x90, 0x18, 0xc7, 0x62, 0x9c, 0xbe, 0x83, 0xc7, 0x26, 0x7b, 0x3e, 0x8a, 0x25 +.byte 0xc7, 0xc0, 0xdd, 0x9d, 0xe6, 0x35, 0x68, 0x10, 0x20, 0x9d, 0x8f, 0xd8, 0xde, 0xd2, 0xc3, 0x84 +.byte 0x9c, 0x0d, 0x5e, 0xe8, 0x2f, 0xc9, 0x02, 0x03, 0x01, 0x00, 0x01, 0x7e, 0x00, 0x78, 0x00, 0x30 +.byte 0x7c, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x0e +.byte 0x30, 0x0c, 0x06, 0x03, 0x55, 0x04, 0x08, 0x0c, 0x05, 0x54, 0x65, 0x78, 0x61, 0x73, 0x31, 0x10 +.byte 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x07, 0x48, 0x6f, 0x75, 0x73, 0x74, 0x6f, 0x6e +.byte 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0f, 0x53, 0x53, 0x4c, 0x20, 0x43 +.byte 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x31, 0x30, 0x2f, 0x06, 0x03 +.byte 0x55, 0x04, 0x03, 0x0c, 0x28, 0x53, 0x53, 0x4c, 0x2e, 0x63, 0x6f, 0x6d, 0x20, 0x52, 0x6f, 0x6f +.byte 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20 +.byte 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x45, 0x43, 0x43, 0x30, 0x76, 0x30 +.byte 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00 +.byte 0x22, 0x03, 0x62, 0x00, 0x04, 0x45, 0x6e, 0xa9, 0x50, 0xc4, 0xa6, 0x23, 0x36, 0x9e, 0x5f, 0x28 +.byte 0x8d, 0x17, 0xcb, 0x96, 0x22, 0x64, 0x3f, 0xdc, 0x7a, 0x8e, 0x1d, 0xcc, 0x08, 0xb3, 0xa2, 0x71 +.byte 0x24, 0xba, 0x8e, 0x49, 0xb9, 0x04, 0x1b, 0x47, 0x96, 0x58, 0xab, 0x2d, 0x95, 0xc8, 0xed, 0x9e +.byte 0x08, 0x35, 0xc8, 0x27, 0xeb, 0x89, 0x8c, 0x53, 0x58, 0xeb, 0x62, 0x8a, 0xfe, 0xf0, 0x5b, 0x0f +.byte 0x6b, 0x31, 0x52, 0x63, 0x41, 0x3b, 0x89, 0xcd, 0xec, 0xec, 0xb6, 0x8d, 0x19, 0xd3, 0x34, 0x07 +.byte 0xdc, 0xbb, 0xc6, 0x06, 0x7f, 0xc2, 0x45, 0x95, 0xec, 0xcb, 0x7f, 0xa8, 0x23, 0xe0, 0x09, 0xe9 +.byte 0x81, 0xfa, 0xf3, 0x47, 0xd3, 0x7e, 0x00, 0x26, 0x02, 0x30, 0x7c, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x0e, 0x30, 0x0c, 0x06, 0x03, 0x55, 0x04 +.byte 0x08, 0x0c, 0x05, 0x54, 0x65, 0x78, 0x61, 0x73, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04 +.byte 0x07, 0x0c, 0x07, 0x48, 0x6f, 0x75, 0x73, 0x74, 0x6f, 0x6e, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03 +.byte 0x55, 0x04, 0x0a, 0x0c, 0x0f, 0x53, 0x53, 0x4c, 0x20, 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61 +.byte 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x31, 0x30, 0x2f, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x28, 0x53 +.byte 0x53, 0x4c, 0x2e, 0x63, 0x6f, 0x6d, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74 +.byte 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72 +.byte 0x69, 0x74, 0x79, 0x20, 0x52, 0x53, 0x41, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a +.byte 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30 +.byte 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xf9, 0x0f, 0xdd, 0xa3, 0x2b, 0x7d, 0xcb, 0xd0 +.byte 0x2a, 0xfe, 0xec, 0x67, 0x85, 0xa6, 0xe7, 0x2e, 0x1b, 0xba, 0x77, 0xe1, 0xe3, 0xf5, 0xaf, 0xa4 +.byte 0xec, 0xfa, 0x4a, 0x5d, 0x91, 0xc4, 0x57, 0x47, 0x6b, 0x18, 0x77, 0x6b, 0x76, 0xf2, 0xfd, 0x93 +.byte 0xe4, 0x3d, 0x0f, 0xc2, 0x16, 0x9e, 0x0b, 0x66, 0xc3, 0x56, 0x94, 0x9e, 0x17, 0x83, 0x85, 0xce +.byte 0x56, 0xef, 0xf2, 0x16, 0xfd, 0x00, 0x62, 0xf5, 0x22, 0x09, 0x54, 0xe8, 0x65, 0x17, 0x4e, 0x41 +.byte 0xb9, 0xe0, 0x4f, 0x46, 0x97, 0xaa, 0x1b, 0xc8, 0xb8, 0x6e, 0x62, 0x5e, 0x69, 0xb1, 0x5f, 0xdb +.byte 0x2a, 0x02, 0x7e, 0xfc, 0x6c, 0xca, 0xf3, 0x41, 0xd8, 0xed, 0xd0, 0xe8, 0xfc, 0x3f, 0x61, 0x48 +.byte 0xed, 0xb0, 0x03, 0x14, 0x1d, 0x10, 0x0e, 0x4b, 0x19, 0xe0, 0xbb, 0x4e, 0xec, 0x86, 0x65, 0xff +.byte 0x36, 0xf3, 0x5e, 0x67, 0x02, 0x0b, 0x9d, 0x86, 0x55, 0x61, 0xfd, 0x7a, 0x38, 0xed, 0xfe, 0xe2 +.byte 0x19, 0x00, 0xb7, 0x6f, 0xa1, 0x50, 0x62, 0x75, 0x74, 0x3c, 0xa0, 0xfa, 0xc8, 0x25, 0x92, 0xb4 +.byte 0x6e, 0x7a, 0x22, 0xc7, 0xf8, 0x1e, 0xa1, 0xe3, 0xb2, 0xdd, 0x91, 0x31, 0xab, 0x2b, 0x1d, 0x04 +.byte 0xff, 0xa5, 0x4a, 0x04, 0x37, 0xe9, 0x85, 0xa4, 0x33, 0x2b, 0xfd, 0xe2, 0xd6, 0x55, 0x34, 0x7c +.byte 0x19, 0xa4, 0x4a, 0x68, 0xc7, 0xb2, 0xa8, 0xd3, 0xb7, 0xca, 0xa1, 0x93, 0x88, 0xeb, 0xc1, 0x97 +.byte 0xbc, 0x8c, 0xf9, 0x1d, 0xd9, 0x22, 0x84, 0x24, 0x74, 0xc7, 0x04, 0x3d, 0x6a, 0xa9, 0x29, 0x93 +.byte 0xcc, 0xeb, 0xb8, 0x5b, 0xe1, 0xfe, 0x5f, 0x25, 0xaa, 0x34, 0x58, 0xc8, 0xc1, 0x23, 0x54, 0x9d +.byte 0x1b, 0x98, 0x11, 0xc3, 0x38, 0x9c, 0x7e, 0x3d, 0x86, 0x6c, 0xa5, 0x0f, 0x40, 0x86, 0x7c, 0x02 +.byte 0xf4, 0x5c, 0x02, 0x4f, 0x28, 0xcb, 0xae, 0x71, 0x9f, 0x0f, 0x3a, 0xc8, 0x33, 0xfe, 0x11, 0x25 +.byte 0x35, 0xea, 0xfc, 0xba, 0xc5, 0x60, 0x3d, 0xd9, 0x7c, 0x18, 0xd5, 0xb2, 0xa9, 0xd3, 0x75, 0x78 +.byte 0x03, 0x72, 0x22, 0xca, 0x3a, 0xc3, 0x1f, 0xef, 0x2c, 0xe5, 0x2e, 0xa9, 0xfa, 0x9e, 0x2c, 0xb6 +.byte 0x51, 0x46, 0xfd, 0xaf, 0x03, 0xd6, 0xea, 0x60, 0x68, 0xea, 0x85, 0x16, 0x36, 0x6b, 0x85, 0xe9 +.byte 0x1e, 0xc0, 0xb3, 0xdd, 0xc4, 0x24, 0xdc, 0x80, 0x2a, 0x81, 0x41, 0x6d, 0x94, 0x3e, 0xc8, 0xe0 +.byte 0xc9, 0x81, 0x41, 0x00, 0x9e, 0x5e, 0xbf, 0x7f, 0xc5, 0x08, 0x98, 0xa2, 0x18, 0x2c, 0x42, 0x40 +.byte 0xb3, 0xf9, 0x6f, 0x38, 0x27, 0x4b, 0x4e, 0x80, 0xf4, 0x3d, 0x81, 0x47, 0xe0, 0x88, 0x7c, 0xea +.byte 0x1c, 0xce, 0xb5, 0x75, 0x5c, 0x51, 0x2e, 0x1c, 0x2b, 0x7f, 0x1a, 0x72, 0x28, 0xe7, 0x00, 0xb5 +.byte 0xd1, 0x74, 0xc6, 0xd7, 0xe4, 0x9f, 0xad, 0x07, 0x93, 0xb6, 0x53, 0x35, 0x35, 0xfc, 0x37, 0xe4 +.byte 0xc3, 0xf6, 0x5d, 0x16, 0xbe, 0x21, 0x73, 0xde, 0x92, 0x0a, 0xf8, 0xa0, 0x63, 0x6a, 0xbc, 0x96 +.byte 0x92, 0x6a, 0x3e, 0xf8, 0xbc, 0x65, 0x55, 0x9b, 0xde, 0xf5, 0x0d, 0x89, 0x26, 0x04, 0xfc, 0x25 +.byte 0x1a, 0xa6, 0x25, 0x69, 0xcb, 0xc2, 0x6d, 0xca, 0x7c, 0xe2, 0x59, 0x5f, 0x97, 0xac, 0xeb, 0xef +.byte 0x2e, 0xc8, 0xbc, 0xd7, 0x1b, 0x59, 0x3c, 0x2b, 0xcc, 0xf2, 0x19, 0xc8, 0x93, 0x6b, 0x27, 0x63 +.byte 0x19, 0xcf, 0xfc, 0xe9, 0x26, 0xf8, 0xca, 0x71, 0x9b, 0x7f, 0x93, 0xfe, 0x34, 0x67, 0x84, 0x4e +.byte 0x99, 0xeb, 0xfc, 0xb3, 0x78, 0x09, 0x33, 0x70, 0xba, 0x66, 0xa6, 0x76, 0xed, 0x1b, 0x73, 0xeb +.byte 0x1a, 0xa5, 0x0d, 0xc4, 0x22, 0x13, 0x20, 0x94, 0x56, 0x0a, 0x4e, 0x2c, 0x6c, 0x4e, 0xb1, 0xfd +.byte 0xcf, 0x9c, 0x09, 0xba, 0xa2, 0x33, 0xed, 0x87, 0x02, 0x03, 0x01, 0x00, 0x01, 0x80, 0x00, 0x26 +.byte 0x01, 0x30, 0x7e, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x50, 0x4c +.byte 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x19, 0x55, 0x6e, 0x69, 0x7a, 0x65 +.byte 0x74, 0x6f, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x20 +.byte 0x53, 0x2e, 0x41, 0x2e, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1e, 0x43 +.byte 0x65, 0x72, 0x74, 0x75, 0x6d, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74 +.byte 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x31, 0x22, 0x30 +.byte 0x20, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x19, 0x43, 0x65, 0x72, 0x74, 0x75, 0x6d, 0x20, 0x54 +.byte 0x72, 0x75, 0x73, 0x74, 0x65, 0x64, 0x20, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x20, 0x43 +.byte 0x41, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01 +.byte 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01 +.byte 0x01, 0x00, 0xe3, 0xfb, 0x7d, 0xa3, 0x72, 0xba, 0xc2, 0xf0, 0xc9, 0x14, 0x87, 0xf5, 0x6b, 0x01 +.byte 0x4e, 0xe1, 0x6e, 0x40, 0x07, 0xba, 0x6d, 0x27, 0x5d, 0x7f, 0xf7, 0x5b, 0x2d, 0xb3, 0x5a, 0xc7 +.byte 0x51, 0x5f, 0xab, 0xa4, 0x32, 0xa6, 0x61, 0x87, 0xb6, 0x6e, 0x0f, 0x86, 0xd2, 0x30, 0x02, 0x97 +.byte 0xf8, 0xd7, 0x69, 0x57, 0xa1, 0x18, 0x39, 0x5d, 0x6a, 0x64, 0x79, 0xc6, 0x01, 0x59, 0xac, 0x3c +.byte 0x31, 0x4a, 0x38, 0x7c, 0xd2, 0x04, 0xd2, 0x4b, 0x28, 0xe8, 0x20, 0x5f, 0x3b, 0x07, 0xa2, 0xcc +.byte 0x4d, 0x73, 0xdb, 0xf3, 0xae, 0x4f, 0xc7, 0x56, 0xd5, 0x5a, 0xa7, 0x96, 0x89, 0xfa, 0xf3, 0xab +.byte 0x68, 0xd4, 0x23, 0x86, 0x59, 0x27, 0xcf, 0x09, 0x27, 0xbc, 0xac, 0x6e, 0x72, 0x83, 0x1c, 0x30 +.byte 0x72, 0xdf, 0xe0, 0xa2, 0xe9, 0xd2, 0xe1, 0x74, 0x75, 0x19, 0xbd, 0x2a, 0x9e, 0x7b, 0x15, 0x54 +.byte 0x04, 0x1b, 0xd7, 0x43, 0x39, 0xad, 0x55, 0x28, 0xc5, 0xe2, 0x1a, 0xbb, 0xf4, 0xc0, 0xe4, 0xae +.byte 0x38, 0x49, 0x33, 0xcc, 0x76, 0x85, 0x9f, 0x39, 0x45, 0xd2, 0xa4, 0x9e, 0xf2, 0x12, 0x8c, 0x51 +.byte 0xf8, 0x7c, 0xe4, 0x2d, 0x7f, 0xf5, 0xac, 0x5f, 0xeb, 0x16, 0x9f, 0xb1, 0x2d, 0xd1, 0xba, 0xcc +.byte 0x91, 0x42, 0x77, 0x4c, 0x25, 0xc9, 0x90, 0x38, 0x6f, 0xdb, 0xf0, 0xcc, 0xfb, 0x8e, 0x1e, 0x97 +.byte 0x59, 0x3e, 0xd5, 0x60, 0x4e, 0xe6, 0x05, 0x28, 0xed, 0x49, 0x79, 0x13, 0x4b, 0xba, 0x48, 0xdb +.byte 0x2f, 0xf9, 0x72, 0xd3, 0x39, 0xca, 0xfe, 0x1f, 0xd8, 0x34, 0x72, 0xf5, 0xb4, 0x40, 0xcf, 0x31 +.byte 0x01, 0xc3, 0xec, 0xde, 0x11, 0x2d, 0x17, 0x5d, 0x1f, 0xb8, 0x50, 0xd1, 0x5e, 0x19, 0xa7, 0x69 +.byte 0xde, 0x07, 0x33, 0x28, 0xca, 0x50, 0x95, 0xf9, 0xa7, 0x54, 0xcb, 0x54, 0x86, 0x50, 0x45, 0xa9 +.byte 0xf9, 0x49, 0x02, 0x03, 0x01, 0x00, 0x01, 0x81, 0x00, 0x78, 0x00, 0x30, 0x7f, 0x31, 0x0b, 0x30 +.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x0e, 0x30, 0x0c, 0x06, 0x03 +.byte 0x55, 0x04, 0x08, 0x0c, 0x05, 0x54, 0x65, 0x78, 0x61, 0x73, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03 +.byte 0x55, 0x04, 0x07, 0x0c, 0x07, 0x48, 0x6f, 0x75, 0x73, 0x74, 0x6f, 0x6e, 0x31, 0x18, 0x30, 0x16 +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0f, 0x53, 0x53, 0x4c, 0x20, 0x43, 0x6f, 0x72, 0x70, 0x6f +.byte 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x34, 0x30, 0x32, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c +.byte 0x2b, 0x53, 0x53, 0x4c, 0x2e, 0x63, 0x6f, 0x6d, 0x20, 0x45, 0x56, 0x20, 0x52, 0x6f, 0x6f, 0x74 +.byte 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41 +.byte 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x45, 0x43, 0x43, 0x30, 0x76, 0x30, 0x10 +.byte 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22 +.byte 0x03, 0x62, 0x00, 0x04, 0xaa, 0x12, 0x47, 0x90, 0x98, 0x1b, 0xfb, 0xef, 0xc3, 0x40, 0x07, 0x83 +.byte 0x20, 0x4e, 0xf1, 0x30, 0x82, 0xa2, 0x06, 0xd1, 0xf2, 0x92, 0x86, 0x61, 0xf2, 0xf6, 0x21, 0x68 +.byte 0xca, 0x00, 0xc4, 0xc7, 0xea, 0x43, 0x00, 0x54, 0x86, 0xdc, 0xfd, 0x1f, 0xdf, 0x00, 0xb8, 0x41 +.byte 0x62, 0x5c, 0xdc, 0x70, 0x16, 0x32, 0xde, 0x1f, 0x99, 0xd4, 0xcc, 0xc5, 0x07, 0xc8, 0x08, 0x1f +.byte 0x61, 0x16, 0x07, 0x51, 0x3d, 0x7d, 0x5c, 0x07, 0x53, 0xe3, 0x35, 0x38, 0x8c, 0xdf, 0xcd, 0x9f +.byte 0xd9, 0x2e, 0x0d, 0x4a, 0xb6, 0x19, 0x2e, 0x5a, 0x70, 0x5a, 0x06, 0xed, 0xbe, 0xf0, 0xa1, 0xb0 +.byte 0xca, 0xd0, 0x09, 0x29, 0x83, 0x00, 0x26, 0x02, 0x30, 0x81, 0x80, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x50, 0x4c, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x19, 0x55, 0x6e, 0x69, 0x7a, 0x65, 0x74, 0x6f, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6e +.byte 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x20, 0x53, 0x2e, 0x41, 0x2e, 0x31, 0x27, 0x30, 0x25 +.byte 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1e, 0x43, 0x65, 0x72, 0x74, 0x75, 0x6d, 0x20, 0x43, 0x65 +.byte 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68 +.byte 0x6f, 0x72, 0x69, 0x74, 0x79, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1b +.byte 0x43, 0x65, 0x72, 0x74, 0x75, 0x6d, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x65, 0x64, 0x20, 0x4e +.byte 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x20, 0x43, 0x41, 0x20, 0x32, 0x30, 0x82, 0x02, 0x22, 0x30 +.byte 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82 +.byte 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xbd, 0xf9, 0x78, 0xf8 +.byte 0xe6, 0xd5, 0x80, 0x0c, 0x64, 0x9d, 0x86, 0x1b, 0x96, 0x64, 0x67, 0x3f, 0x22, 0x3a, 0x1e, 0x75 +.byte 0x01, 0x7d, 0xef, 0xfb, 0x5c, 0x67, 0x8c, 0xc9, 0xcc, 0x5c, 0x6b, 0xa9, 0x91, 0xe6, 0xb9, 0x42 +.byte 0xe5, 0x20, 0x4b, 0x9b, 0xda, 0x9b, 0x7b, 0xb9, 0x99, 0x5d, 0xd9, 0x9b, 0x80, 0x4b, 0xd7, 0x84 +.byte 0x40, 0x2b, 0x27, 0xd3, 0xe8, 0xba, 0x30, 0xbb, 0x3e, 0x09, 0x1a, 0xa7, 0x49, 0x95, 0xef, 0x2b +.byte 0x40, 0x24, 0xc2, 0x97, 0xc7, 0xa7, 0xee, 0x9b, 0x25, 0xef, 0xa8, 0x0a, 0x00, 0x97, 0x85, 0x5a +.byte 0xaa, 0x9d, 0xdc, 0x29, 0xc9, 0xe2, 0x35, 0x07, 0xeb, 0x70, 0x4d, 0x4a, 0xd6, 0xc1, 0xb3, 0x56 +.byte 0xb8, 0xa1, 0x41, 0x38, 0x9b, 0xd1, 0xfb, 0x31, 0x7f, 0x8f, 0xe0, 0x5f, 0xe1, 0xb1, 0x3f, 0x0f +.byte 0x8e, 0x16, 0x49, 0x60, 0xd7, 0x06, 0x8d, 0x18, 0xf9, 0xaa, 0x26, 0x10, 0xab, 0x2a, 0xd3, 0xd0 +.byte 0xd1, 0x67, 0x8d, 0x1b, 0x46, 0xbe, 0x47, 0x30, 0xd5, 0x2e, 0x72, 0xd1, 0xc5, 0x63, 0xda, 0xe7 +.byte 0x63, 0x79, 0x44, 0x7e, 0x4b, 0x63, 0x24, 0x89, 0x86, 0x2e, 0x34, 0x3f, 0x29, 0x4c, 0x52, 0x8b +.byte 0x2a, 0xa7, 0xc0, 0xe2, 0x91, 0x28, 0x89, 0xb9, 0xc0, 0x5b, 0xf9, 0x1d, 0xd9, 0xe7, 0x27, 0xad +.byte 0xff, 0x9a, 0x02, 0x97, 0xc1, 0xc6, 0x50, 0x92, 0x9b, 0x02, 0x2c, 0xbd, 0xa9, 0xb9, 0x34, 0x59 +.byte 0x0a, 0xbf, 0x84, 0x4a, 0xff, 0xdf, 0xfe, 0xb3, 0x9f, 0xeb, 0xd9, 0x9e, 0xe0, 0x98, 0x23, 0xec +.byte 0xa6, 0x6b, 0x77, 0x16, 0x2a, 0xdb, 0xcc, 0xad, 0x3b, 0x1c, 0xa4, 0x87, 0xdc, 0x46, 0x73, 0x5e +.byte 0x19, 0x62, 0x68, 0x45, 0x57, 0xe4, 0x90, 0x82, 0x42, 0xbb, 0x42, 0xd6, 0xf0, 0x61, 0xe0, 0xc1 +.byte 0xa3, 0x3d, 0x66, 0xa3, 0x5d, 0xf4, 0x18, 0xee, 0x88, 0xc9, 0x8d, 0x17, 0x45, 0x29, 0x99, 0x32 +.byte 0x75, 0x02, 0x31, 0xee, 0x29, 0x26, 0xc8, 0x6b, 0x02, 0xe6, 0xb5, 0x62, 0x45, 0x7f, 0x37, 0x15 +.byte 0x5a, 0x23, 0x68, 0x89, 0xd4, 0x3e, 0xde, 0x4e, 0x27, 0xb0, 0xf0, 0x40, 0x0c, 0xbc, 0x4d, 0x17 +.byte 0xcb, 0x4d, 0xa2, 0xb3, 0x1e, 0xd0, 0x06, 0x5a, 0xdd, 0xf6, 0x93, 0xcf, 0x57, 0x75, 0x99, 0xf5 +.byte 0xfa, 0x86, 0x1a, 0x67, 0x78, 0xb3, 0xbf, 0x96, 0xfe, 0x34, 0xdc, 0xbd, 0xe7, 0x52, 0x56, 0xe5 +.byte 0xb3, 0xe5, 0x75, 0x7b, 0xd7, 0x41, 0x91, 0x05, 0xdc, 0x5d, 0x69, 0xe3, 0x95, 0x0d, 0x43, 0xb9 +.byte 0xfc, 0x83, 0x96, 0x39, 0x95, 0x7b, 0x6c, 0x80, 0x5a, 0x4f, 0x13, 0x72, 0xc6, 0xd7, 0x7d, 0x29 +.byte 0x7a, 0x44, 0xba, 0x52, 0xa4, 0x2a, 0xd5, 0x41, 0x46, 0x09, 0x20, 0xfe, 0x22, 0xa0, 0xb6, 0x5b +.byte 0x30, 0x8d, 0xbc, 0x89, 0x0c, 0xd5, 0xd7, 0x70, 0xf8, 0x87, 0x52, 0xfd, 0xda, 0xef, 0xac, 0x51 +.byte 0x2e, 0x07, 0xb3, 0x4e, 0xfe, 0xd0, 0x09, 0xda, 0x70, 0xef, 0x98, 0xfa, 0x56, 0xe6, 0x6d, 0xdb +.byte 0xb5, 0x57, 0x4b, 0xdc, 0xe5, 0x2c, 0x25, 0x15, 0xc8, 0x9e, 0x2e, 0x78, 0x4e, 0xf8, 0xda, 0x9c +.byte 0x9e, 0x86, 0x2c, 0xca, 0x57, 0xf3, 0x1a, 0xe5, 0xc8, 0x92, 0x8b, 0x1a, 0x82, 0x96, 0x7a, 0xc3 +.byte 0xbc, 0x50, 0x12, 0x69, 0xd8, 0x0e, 0x5a, 0x46, 0x8b, 0x3a, 0xeb, 0x26, 0xfa, 0x23, 0xc9, 0xb6 +.byte 0xb0, 0x81, 0xbe, 0x42, 0x00, 0xa4, 0xf8, 0xd6, 0xfe, 0x30, 0x2e, 0xc7, 0xd2, 0x46, 0xf6, 0xe5 +.byte 0x8e, 0x75, 0xfd, 0xf2, 0xcc, 0xb9, 0xd0, 0x87, 0x5b, 0xcc, 0x06, 0x10, 0x60, 0xbb, 0x83, 0x35 +.byte 0xb7, 0x5e, 0x67, 0xde, 0x47, 0xec, 0x99, 0x48, 0xf1, 0xa4, 0xa1, 0x15, 0xfe, 0xad, 0x8c, 0x62 +.byte 0x8e, 0x39, 0x55, 0x4f, 0x39, 0x16, 0xb9, 0xb1, 0x63, 0x9d, 0xff, 0xb7, 0x02, 0x03, 0x01, 0x00 +.byte 0x01, 0x84, 0x00, 0x26, 0x01, 0x30, 0x81, 0x81, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 +.byte 0x06, 0x13, 0x02, 0x47, 0x42, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x12 +.byte 0x47, 0x72, 0x65, 0x61, 0x74, 0x65, 0x72, 0x20, 0x4d, 0x61, 0x6e, 0x63, 0x68, 0x65, 0x73, 0x74 +.byte 0x65, 0x72, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x07, 0x53, 0x61, 0x6c +.byte 0x66, 0x6f, 0x72, 0x64, 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x11, 0x43 +.byte 0x4f, 0x4d, 0x4f, 0x44, 0x4f, 0x20, 0x43, 0x41, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64 +.byte 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1e, 0x43, 0x4f, 0x4d, 0x4f, 0x44 +.byte 0x4f, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20 +.byte 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06 +.byte 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f +.byte 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xd0, 0x40, 0x8b, 0x8b, 0x72, 0xe3 +.byte 0x91, 0x1b, 0xf7, 0x51, 0xc1, 0x1b, 0x54, 0x04, 0x98, 0xd3, 0xa9, 0xbf, 0xc1, 0xe6, 0x8a, 0x5d +.byte 0x3b, 0x87, 0xfb, 0xbb, 0x88, 0xce, 0x0d, 0xe3, 0x2f, 0x3f, 0x06, 0x96, 0xf0, 0xa2, 0x29, 0x50 +.byte 0x99, 0xae, 0xdb, 0x3b, 0xa1, 0x57, 0xb0, 0x74, 0x51, 0x71, 0xcd, 0xed, 0x42, 0x91, 0x4d, 0x41 +.byte 0xfe, 0xa9, 0xc8, 0xd8, 0x6a, 0x86, 0x77, 0x44, 0xbb, 0x59, 0x66, 0x97, 0x50, 0x5e, 0xb4, 0xd4 +.byte 0x2c, 0x70, 0x44, 0xcf, 0xda, 0x37, 0x95, 0x42, 0x69, 0x3c, 0x30, 0xc4, 0x71, 0xb3, 0x52, 0xf0 +.byte 0x21, 0x4d, 0xa1, 0xd8, 0xba, 0x39, 0x7c, 0x1c, 0x9e, 0xa3, 0x24, 0x9d, 0xf2, 0x83, 0x16, 0x98 +.byte 0xaa, 0x16, 0x7c, 0x43, 0x9b, 0x15, 0x5b, 0xb7, 0xae, 0x34, 0x91, 0xfe, 0xd4, 0x62, 0x26, 0x18 +.byte 0x46, 0x9a, 0x3f, 0xeb, 0xc1, 0xf9, 0xf1, 0x90, 0x57, 0xeb, 0xac, 0x7a, 0x0d, 0x8b, 0xdb, 0x72 +.byte 0x30, 0x6a, 0x66, 0xd5, 0xe0, 0x46, 0xa3, 0x70, 0xdc, 0x68, 0xd9, 0xff, 0x04, 0x48, 0x89, 0x77 +.byte 0xde, 0xb5, 0xe9, 0xfb, 0x67, 0x6d, 0x41, 0xe9, 0xbc, 0x39, 0xbd, 0x32, 0xd9, 0x62, 0x02, 0xf1 +.byte 0xb1, 0xa8, 0x3d, 0x6e, 0x37, 0x9c, 0xe2, 0x2f, 0xe2, 0xd3, 0xa2, 0x26, 0x8b, 0xc6, 0xb8, 0x55 +.byte 0x43, 0x88, 0xe1, 0x23, 0x3e, 0xa5, 0xd2, 0x24, 0x39, 0x6a, 0x47, 0xab, 0x00, 0xd4, 0xa1, 0xb3 +.byte 0xa9, 0x25, 0xfe, 0x0d, 0x3f, 0xa7, 0x1d, 0xba, 0xd3, 0x51, 0xc1, 0x0b, 0xa4, 0xda, 0xac, 0x38 +.byte 0xef, 0x55, 0x50, 0x24, 0x05, 0x65, 0x46, 0x93, 0x34, 0x4f, 0x2d, 0x8d, 0xad, 0xc6, 0xd4, 0x21 +.byte 0x19, 0xd2, 0x8e, 0xca, 0x05, 0x61, 0x71, 0x07, 0x73, 0x47, 0xe5, 0x8a, 0x19, 0x12, 0xbd, 0x04 +.byte 0x4d, 0xce, 0x4e, 0x9c, 0xa5, 0x48, 0xac, 0xbb, 0x26, 0xf7, 0x02, 0x03, 0x01, 0x00, 0x01, 0x85 +.byte 0x00, 0x26, 0x01, 0x30, 0x81, 0x82, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x44, 0x45, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x22, 0x54, 0x2d +.byte 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x20, 0x45, 0x6e, 0x74, 0x65, 0x72, 0x70, 0x72, 0x69 +.byte 0x73, 0x65, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x47, 0x6d, 0x62, 0x48 +.byte 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x16, 0x54, 0x2d, 0x53, 0x79, 0x73 +.byte 0x74, 0x65, 0x6d, 0x73, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x43, 0x65, 0x6e, 0x74, 0x65 +.byte 0x72, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1c, 0x54, 0x2d, 0x54, 0x65 +.byte 0x6c, 0x65, 0x53, 0x65, 0x63, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x52, 0x6f, 0x6f, 0x74 +.byte 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x32, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09 +.byte 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00 +.byte 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xaa, 0x5f, 0xda, 0x1b, 0x5f, 0xe8, 0x73 +.byte 0x91, 0xe5, 0xda, 0x5c, 0xf4, 0xa2, 0xe6, 0x47, 0xe5, 0xf3, 0x68, 0x55, 0x60, 0x05, 0x1d, 0x02 +.byte 0xa4, 0xb3, 0x9b, 0x59, 0xf3, 0x1e, 0x8a, 0xaf, 0x34, 0xad, 0xfc, 0x0d, 0xc2, 0xd9, 0x48, 0x19 +.byte 0xee, 0x69, 0x8f, 0xc9, 0x20, 0xfc, 0x21, 0xaa, 0x07, 0x19, 0xed, 0xb0, 0x5c, 0xac, 0x65, 0xc7 +.byte 0x5f, 0xed, 0x02, 0x7c, 0x7b, 0x7c, 0x2d, 0x1b, 0xd6, 0xba, 0xb9, 0x80, 0xc2, 0x18, 0x82, 0x16 +.byte 0x84, 0xfa, 0x66, 0xb0, 0x08, 0xc6, 0x54, 0x23, 0x81, 0xe4, 0xcd, 0xb9, 0x49, 0x3f, 0xf6, 0x4f +.byte 0x6e, 0x37, 0x48, 0x28, 0x38, 0x0f, 0xc5, 0xbe, 0xe7, 0x68, 0x70, 0xfd, 0x39, 0x97, 0x4d, 0xd2 +.byte 0xc7, 0x98, 0x91, 0x50, 0xaa, 0xc4, 0x44, 0xb3, 0x23, 0x7d, 0x39, 0x47, 0xe9, 0x52, 0x62, 0xd6 +.byte 0x12, 0x93, 0x5e, 0xb7, 0x31, 0x96, 0x42, 0x05, 0xfb, 0x76, 0xa7, 0x1e, 0xa3, 0xf5, 0xc2, 0xfc +.byte 0xe9, 0x7a, 0xc5, 0x6c, 0xa9, 0x71, 0x4f, 0xea, 0xcb, 0x78, 0xbc, 0x60, 0xaf, 0xc7, 0xde, 0xf4 +.byte 0xd9, 0xcb, 0xbe, 0x7e, 0x33, 0xa5, 0x6e, 0x94, 0x83, 0xf0, 0x34, 0xfa, 0x21, 0xab, 0xea, 0x8e +.byte 0x72, 0xa0, 0x3f, 0xa4, 0xde, 0x30, 0x5b, 0xef, 0x86, 0x4d, 0x6a, 0x95, 0x5b, 0x43, 0x44, 0xa8 +.byte 0x10, 0x15, 0x1c, 0xe5, 0x01, 0x57, 0xc5, 0x98, 0xf1, 0xe6, 0x06, 0x28, 0x91, 0xaa, 0x20, 0xc5 +.byte 0xb7, 0x53, 0x26, 0x51, 0x43, 0xb2, 0x0b, 0x11, 0x95, 0x58, 0xe1, 0xc0, 0x0f, 0x76, 0xd9, 0xc0 +.byte 0x8d, 0x7c, 0x81, 0xf3, 0x72, 0x70, 0x9e, 0x6f, 0xfe, 0x1a, 0x8e, 0xd9, 0x5f, 0x35, 0xc6, 0xb2 +.byte 0x6f, 0x34, 0x7c, 0xbe, 0x48, 0x4f, 0xe2, 0x5a, 0x39, 0xd7, 0xd8, 0x9d, 0x78, 0x9e, 0x9f, 0x86 +.byte 0x3e, 0x03, 0x5e, 0x19, 0x8b, 0x44, 0xa2, 0xd5, 0xc7, 0x02, 0x03, 0x01, 0x00, 0x01, 0x85, 0x00 +.byte 0x26, 0x01, 0x30, 0x81, 0x82, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x44, 0x45, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x22, 0x54, 0x2d, 0x53 +.byte 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x20, 0x45, 0x6e, 0x74, 0x65, 0x72, 0x70, 0x72, 0x69, 0x73 +.byte 0x65, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31 +.byte 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x16, 0x54, 0x2d, 0x53, 0x79, 0x73, 0x74 +.byte 0x65, 0x6d, 0x73, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72 +.byte 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1c, 0x54, 0x2d, 0x54, 0x65, 0x6c +.byte 0x65, 0x53, 0x65, 0x63, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x52, 0x6f, 0x6f, 0x74, 0x20 +.byte 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x33, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a +.byte 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30 +.byte 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xbd, 0x75, 0x93, 0xf0, 0x62, 0x22, 0x6f, 0x24 +.byte 0xae, 0xe0, 0x7a, 0x76, 0xac, 0x7d, 0xbd, 0xd9, 0x24, 0xd5, 0xb8, 0xb7, 0xfc, 0xcd, 0xf0, 0x42 +.byte 0xe0, 0xeb, 0x78, 0x88, 0x56, 0x5e, 0x9b, 0x9a, 0x54, 0x1d, 0x4d, 0x0c, 0x8a, 0xf6, 0xd3, 0xcf +.byte 0x70, 0xf4, 0x52, 0xb5, 0xd8, 0x93, 0x04, 0xe3, 0x46, 0x86, 0x71, 0x41, 0x4a, 0x2b, 0xf0, 0x2a +.byte 0x2c, 0x55, 0x03, 0xd6, 0x48, 0xc3, 0xe0, 0x39, 0x38, 0xed, 0xf2, 0x5c, 0x3c, 0x3f, 0x44, 0xbc +.byte 0x93, 0x3d, 0x61, 0xab, 0x4e, 0xcd, 0x0d, 0xbe, 0xf0, 0x20, 0x27, 0x58, 0x0e, 0x44, 0x7f, 0x04 +.byte 0x1a, 0x87, 0xa5, 0xd7, 0x96, 0x14, 0x36, 0x90, 0xd0, 0x49, 0x7b, 0xa1, 0x75, 0xfb, 0x1a, 0x6b +.byte 0x73, 0xb1, 0xf8, 0xce, 0xa9, 0x09, 0x2c, 0xf2, 0x53, 0xd5, 0xc3, 0x14, 0x44, 0xb8, 0x86, 0xa5 +.byte 0xf6, 0x8b, 0x2b, 0x39, 0xda, 0xa3, 0x33, 0x54, 0xd9, 0xfa, 0x72, 0x1a, 0xf7, 0x22, 0x15, 0x1c +.byte 0x88, 0x91, 0x6b, 0x7f, 0x66, 0xe5, 0xc3, 0x6a, 0x80, 0xb0, 0x24, 0xf3, 0xdf, 0x86, 0x45, 0x88 +.byte 0xfd, 0x19, 0x7f, 0x75, 0x87, 0x1f, 0x1f, 0xb1, 0x1b, 0x0a, 0x73, 0x24, 0x5b, 0xb9, 0x65, 0xe0 +.byte 0x2c, 0x54, 0xc8, 0x60, 0xd3, 0x66, 0x17, 0x3f, 0xe1, 0xcc, 0x54, 0x33, 0x73, 0x91, 0x02, 0x3a +.byte 0xa6, 0x7f, 0x7b, 0x76, 0x39, 0xa2, 0x1f, 0x96, 0xb6, 0x38, 0xae, 0xb5, 0xc8, 0x93, 0x74, 0x1d +.byte 0x9e, 0xb9, 0xb4, 0xe5, 0x60, 0x9d, 0x2f, 0x56, 0xd1, 0xe0, 0xeb, 0x5e, 0x5b, 0x4c, 0x12, 0x70 +.byte 0x0c, 0x6c, 0x44, 0x20, 0xab, 0x11, 0xd8, 0xf4, 0x19, 0xf6, 0xd2, 0x9c, 0x52, 0x37, 0xe7, 0xfa +.byte 0xb6, 0xc2, 0x31, 0x3b, 0x4a, 0xd4, 0x14, 0x99, 0xad, 0xc7, 0x1a, 0xf5, 0x5d, 0x5f, 0xfa, 0x07 +.byte 0xb8, 0x7c, 0x0d, 0x1f, 0xd6, 0x83, 0x1e, 0xb3, 0x02, 0x03, 0x01, 0x00, 0x01, 0x85, 0x00, 0x26 +.byte 0x01, 0x30, 0x81, 0x82, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x48 +.byte 0x55, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x08, 0x42, 0x75, 0x64, 0x61 +.byte 0x70, 0x65, 0x73, 0x74, 0x31, 0x16, 0x30, 0x14, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0d, 0x4d +.byte 0x69, 0x63, 0x72, 0x6f, 0x73, 0x65, 0x63, 0x20, 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x27, 0x30, 0x25 +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1e, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x65, 0x63, 0x20 +.byte 0x65, 0x2d, 0x53, 0x7a, 0x69, 0x67, 0x6e, 0x6f, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41 +.byte 0x20, 0x32, 0x30, 0x30, 0x39, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7 +.byte 0x0d, 0x01, 0x09, 0x01, 0x16, 0x10, 0x69, 0x6e, 0x66, 0x6f, 0x40, 0x65, 0x2d, 0x73, 0x7a, 0x69 +.byte 0x67, 0x6e, 0x6f, 0x2e, 0x68, 0x75, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86 +.byte 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82 +.byte 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xe9, 0xf8, 0x8f, 0xf3, 0x63, 0xad, 0xda, 0x86, 0xd8 +.byte 0xa7, 0xe0, 0x42, 0xfb, 0xcf, 0x91, 0xde, 0xa6, 0x26, 0xf8, 0x99, 0xa5, 0x63, 0x70, 0xad, 0x9b +.byte 0xae, 0xca, 0x33, 0x40, 0x7d, 0x6d, 0x96, 0x6e, 0xa1, 0x0e, 0x44, 0xee, 0xe1, 0x13, 0x9d, 0x94 +.byte 0x42, 0x52, 0x9a, 0xbd, 0x75, 0x85, 0x74, 0x2c, 0xa8, 0x0e, 0x1d, 0x93, 0xb6, 0x18, 0xb7, 0x8c +.byte 0x2c, 0xa8, 0xcf, 0xfb, 0x5c, 0x71, 0xb9, 0xda, 0xec, 0xfe, 0xe8, 0x7e, 0x8f, 0xe4, 0x2f, 0x1d +.byte 0xb2, 0xa8, 0x75, 0x87, 0xd8, 0xb7, 0xa1, 0xe5, 0x3b, 0xcf, 0x99, 0x4a, 0x46, 0xd0, 0x83, 0x19 +.byte 0x7d, 0xc0, 0xa1, 0x12, 0x1c, 0x95, 0x6d, 0x4a, 0xf4, 0xd8, 0xc7, 0xa5, 0x4d, 0x33, 0x2e, 0x85 +.byte 0x39, 0x40, 0x75, 0x7e, 0x14, 0x7c, 0x80, 0x12, 0x98, 0x50, 0xc7, 0x41, 0x67, 0xb8, 0xa0, 0x80 +.byte 0x61, 0x54, 0xa6, 0x6c, 0x4e, 0x1f, 0xe0, 0x9d, 0x0e, 0x07, 0xe9, 0xc9, 0xba, 0x33, 0xe7, 0xfe +.byte 0xc0, 0x55, 0x28, 0x2c, 0x02, 0x80, 0xa7, 0x19, 0xf5, 0x9e, 0xdc, 0x55, 0x53, 0x03, 0x97, 0x7b +.byte 0x07, 0x48, 0xff, 0x99, 0xfb, 0x37, 0x8a, 0x24, 0xc4, 0x59, 0xcc, 0x50, 0x10, 0x63, 0x8e, 0xaa +.byte 0xa9, 0x1a, 0xb0, 0x84, 0x1a, 0x86, 0xf9, 0x5f, 0xbb, 0xb1, 0x50, 0x6e, 0xa4, 0xd1, 0x0a, 0xcc +.byte 0xd5, 0x71, 0x7e, 0x1f, 0xa7, 0x1b, 0x7c, 0xf5, 0x53, 0x6e, 0x22, 0x5f, 0xcb, 0x2b, 0xe6, 0xd4 +.byte 0x7c, 0x5d, 0xae, 0xd6, 0xc2, 0xc6, 0x4c, 0xe5, 0x05, 0x01, 0xd9, 0xed, 0x57, 0xfc, 0xc1, 0x23 +.byte 0x79, 0xfc, 0xfa, 0xc8, 0x24, 0x83, 0x95, 0xf3, 0xb5, 0x6a, 0x51, 0x01, 0xd0, 0x77, 0xd6, 0xe9 +.byte 0x12, 0xa1, 0xf9, 0x1a, 0x83, 0xfb, 0x82, 0x1b, 0xb9, 0xb0, 0x97, 0xf4, 0x76, 0x06, 0x33, 0x43 +.byte 0x49, 0xa0, 0xff, 0x0b, 0xb5, 0xfa, 0xb5, 0x02, 0x03, 0x01, 0x00, 0x01, 0x85, 0x00, 0x26, 0x02 +.byte 0x30, 0x81, 0x82, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53 +.byte 0x31, 0x0e, 0x30, 0x0c, 0x06, 0x03, 0x55, 0x04, 0x08, 0x0c, 0x05, 0x54, 0x65, 0x78, 0x61, 0x73 +.byte 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x07, 0x48, 0x6f, 0x75, 0x73, 0x74 +.byte 0x6f, 0x6e, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0f, 0x53, 0x53, 0x4c +.byte 0x20, 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x37, 0x30, 0x35 +.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x2e, 0x53, 0x53, 0x4c, 0x2e, 0x63, 0x6f, 0x6d, 0x20, 0x45 +.byte 0x56, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61 +.byte 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x52 +.byte 0x53, 0x41, 0x20, 0x52, 0x32, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48 +.byte 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02 +.byte 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0x8f, 0x36, 0x65, 0x40, 0xe1, 0xd6, 0x4d, 0xc0, 0xd7, 0xb4 +.byte 0xe9, 0x46, 0xda, 0x6b, 0xea, 0x33, 0x47, 0xcd, 0x4c, 0xf9, 0x7d, 0x7d, 0xbe, 0xbd, 0x2d, 0x3d +.byte 0xf0, 0xdb, 0x78, 0xe1, 0x86, 0xa5, 0xd9, 0xba, 0x09, 0x57, 0x68, 0xed, 0x57, 0x3e, 0xa0, 0xd0 +.byte 0x08, 0x41, 0x83, 0xe7, 0x28, 0x41, 0x24, 0x1f, 0xe3, 0x72, 0x15, 0xd0, 0x01, 0x1a, 0xfb, 0x5e +.byte 0x70, 0x23, 0xb2, 0xcb, 0x9f, 0x39, 0xe3, 0xcf, 0xc5, 0x4e, 0xc6, 0x92, 0x6d, 0x26, 0xc6, 0x7b +.byte 0xbb, 0xb3, 0xda, 0x27, 0x9d, 0x0a, 0x86, 0xe9, 0x81, 0x37, 0x05, 0xfe, 0xf0, 0x71, 0x71, 0xec +.byte 0xc3, 0x1c, 0xe9, 0x63, 0xa2, 0x17, 0x14, 0x9d, 0xef, 0x1b, 0x67, 0xd3, 0x85, 0x55, 0x02, 0x02 +.byte 0xd6, 0x49, 0xc9, 0xcc, 0x5a, 0xe1, 0xb1, 0xf7, 0x6f, 0x32, 0x9f, 0xc9, 0xd4, 0x3b, 0x88, 0x41 +.byte 0xa8, 0x9c, 0xbd, 0xcb, 0xab, 0xdb, 0x6d, 0x7b, 0x09, 0x1f, 0xa2, 0x4c, 0x72, 0x90, 0xda, 0x2b +.byte 0x08, 0xfc, 0xcf, 0x3c, 0x54, 0xce, 0x67, 0x0f, 0xa8, 0xcf, 0x5d, 0x96, 0x19, 0x0b, 0xc4, 0xe3 +.byte 0x72, 0xeb, 0xad, 0xd1, 0x7d, 0x1d, 0x27, 0xef, 0x92, 0xeb, 0x10, 0xbf, 0x5b, 0xeb, 0x3b, 0xaf +.byte 0xcf, 0x80, 0xdd, 0xc1, 0xd2, 0x96, 0x04, 0x5b, 0x7a, 0x7e, 0xa4, 0xa9, 0x3c, 0x38, 0x76, 0xa4 +.byte 0x62, 0x8e, 0xa0, 0x39, 0x5e, 0xea, 0x77, 0xcf, 0x5d, 0x00, 0x59, 0x8f, 0x66, 0x2c, 0x3e, 0x07 +.byte 0xa2, 0xa3, 0x05, 0x26, 0x11, 0x69, 0x97, 0xea, 0x85, 0xb7, 0x0f, 0x96, 0x0b, 0x4b, 0xc8, 0x40 +.byte 0xe1, 0x50, 0xba, 0x2e, 0x8a, 0xcb, 0xf7, 0x0f, 0x9a, 0x22, 0xe7, 0x7f, 0x9a, 0x37, 0x13, 0xcd +.byte 0xf2, 0x4d, 0x13, 0x6b, 0x21, 0xd1, 0xc0, 0xcc, 0x22, 0xf2, 0xa1, 0x46, 0xf6, 0x44, 0x69, 0x9c +.byte 0xca, 0x61, 0x35, 0x07, 0x00, 0x6f, 0xd6, 0x61, 0x08, 0x11, 0xea, 0xba, 0xb8, 0xf6, 0xe9, 0xb3 +.byte 0x60, 0xe5, 0x4d, 0xb9, 0xec, 0x9f, 0x14, 0x66, 0xc9, 0x57, 0x58, 0xdb, 0xcd, 0x87, 0x69, 0xf8 +.byte 0x8a, 0x86, 0x12, 0x03, 0x47, 0xbf, 0x66, 0x13, 0x76, 0xac, 0x77, 0x7d, 0x34, 0x24, 0x85, 0x83 +.byte 0xcd, 0xd7, 0xaa, 0x9c, 0x90, 0x1a, 0x9f, 0x21, 0x2c, 0x7f, 0x78, 0xb7, 0x64, 0xb8, 0xd8, 0xe8 +.byte 0xa6, 0xf4, 0x78, 0xb3, 0x55, 0xcb, 0x84, 0xd2, 0x32, 0xc4, 0x78, 0xae, 0xa3, 0x8f, 0x61, 0xdd +.byte 0xce, 0x08, 0x53, 0xad, 0xec, 0x88, 0xfc, 0x15, 0xe4, 0x9a, 0x0d, 0xe6, 0x9f, 0x1a, 0x77, 0xce +.byte 0x4c, 0x8f, 0xb8, 0x14, 0x15, 0x3d, 0x62, 0x9c, 0x86, 0x38, 0x06, 0x00, 0x66, 0x12, 0xe4, 0x59 +.byte 0x76, 0x5a, 0x53, 0xc0, 0x02, 0x98, 0xa2, 0x10, 0x2b, 0x68, 0x44, 0x7b, 0x8e, 0x79, 0xce, 0x33 +.byte 0x4a, 0x76, 0xaa, 0x5b, 0x81, 0x16, 0x1b, 0xb5, 0x8a, 0xd8, 0xd0, 0x00, 0x7b, 0x5e, 0x62, 0xb4 +.byte 0x09, 0xd6, 0x86, 0x63, 0x0e, 0xa6, 0x05, 0x95, 0x49, 0xba, 0x28, 0x8b, 0x88, 0x93, 0xb2, 0x34 +.byte 0x1c, 0xd8, 0xa4, 0x55, 0x6e, 0xb7, 0x1c, 0xd0, 0xde, 0x99, 0x55, 0x3b, 0x23, 0xf4, 0x22, 0xe0 +.byte 0xf9, 0x29, 0x66, 0x26, 0xec, 0x20, 0x50, 0x77, 0xdb, 0x4a, 0x0b, 0x8f, 0xbe, 0xe5, 0x02, 0x60 +.byte 0x70, 0x41, 0x5e, 0xd4, 0xae, 0x50, 0x39, 0x22, 0x14, 0x26, 0xcb, 0xb2, 0x3b, 0x73, 0x74, 0x55 +.byte 0x47, 0x07, 0x79, 0x81, 0x39, 0xa8, 0x30, 0x13, 0x44, 0xe5, 0x04, 0x8a, 0xae, 0x96, 0x13, 0x25 +.byte 0x42, 0x0f, 0xb9, 0x53, 0xc4, 0x9b, 0xfc, 0xcd, 0xe4, 0x1c, 0xde, 0x3c, 0xfa, 0xab, 0xd6, 0x06 +.byte 0x4a, 0x1f, 0x67, 0xa6, 0x98, 0x30, 0x1c, 0xdd, 0x2c, 0xdb, 0xdc, 0x18, 0x95, 0x57, 0x66, 0xc6 +.byte 0xff, 0x5c, 0x8b, 0x56, 0xf5, 0x77, 0x02, 0x03, 0x01, 0x00, 0x01, 0x86, 0x00, 0x26, 0x01, 0x30 +.byte 0x81, 0x83, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31 +.byte 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x07, 0x41, 0x72, 0x69, 0x7a, 0x6f, 0x6e +.byte 0x61, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x0a, 0x53, 0x63, 0x6f, 0x74 +.byte 0x74, 0x73, 0x64, 0x61, 0x6c, 0x65, 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 +.byte 0x11, 0x47, 0x6f, 0x44, 0x61, 0x64, 0x64, 0x79, 0x2e, 0x63, 0x6f, 0x6d, 0x2c, 0x20, 0x49, 0x6e +.byte 0x63, 0x2e, 0x31, 0x31, 0x30, 0x2f, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x28, 0x47, 0x6f, 0x20 +.byte 0x44, 0x61, 0x64, 0x64, 0x79, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69 +.byte 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79 +.byte 0x20, 0x2d, 0x20, 0x47, 0x32, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48 +.byte 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01 +.byte 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xbf, 0x71, 0x62, 0x08, 0xf1, 0xfa, 0x59, 0x34, 0xf7, 0x1b +.byte 0xc9, 0x18, 0xa3, 0xf7, 0x80, 0x49, 0x58, 0xe9, 0x22, 0x83, 0x13, 0xa6, 0xc5, 0x20, 0x43, 0x01 +.byte 0x3b, 0x84, 0xf1, 0xe6, 0x85, 0x49, 0x9f, 0x27, 0xea, 0xf6, 0x84, 0x1b, 0x4e, 0xa0, 0xb4, 0xdb +.byte 0x70, 0x98, 0xc7, 0x32, 0x01, 0xb1, 0x05, 0x3e, 0x07, 0x4e, 0xee, 0xf4, 0xfa, 0x4f, 0x2f, 0x59 +.byte 0x30, 0x22, 0xe7, 0xab, 0x19, 0x56, 0x6b, 0xe2, 0x80, 0x07, 0xfc, 0xf3, 0x16, 0x75, 0x80, 0x39 +.byte 0x51, 0x7b, 0xe5, 0xf9, 0x35, 0xb6, 0x74, 0x4e, 0xa9, 0x8d, 0x82, 0x13, 0xe4, 0xb6, 0x3f, 0xa9 +.byte 0x03, 0x83, 0xfa, 0xa2, 0xbe, 0x8a, 0x15, 0x6a, 0x7f, 0xde, 0x0b, 0xc3, 0xb6, 0x19, 0x14, 0x05 +.byte 0xca, 0xea, 0xc3, 0xa8, 0x04, 0x94, 0x3b, 0x46, 0x7c, 0x32, 0x0d, 0xf3, 0x00, 0x66, 0x22, 0xc8 +.byte 0x8d, 0x69, 0x6d, 0x36, 0x8c, 0x11, 0x18, 0xb7, 0xd3, 0xb2, 0x1c, 0x60, 0xb4, 0x38, 0xfa, 0x02 +.byte 0x8c, 0xce, 0xd3, 0xdd, 0x46, 0x07, 0xde, 0x0a, 0x3e, 0xeb, 0x5d, 0x7c, 0xc8, 0x7c, 0xfb, 0xb0 +.byte 0x2b, 0x53, 0xa4, 0x92, 0x62, 0x69, 0x51, 0x25, 0x05, 0x61, 0x1a, 0x44, 0x81, 0x8c, 0x2c, 0xa9 +.byte 0x43, 0x96, 0x23, 0xdf, 0xac, 0x3a, 0x81, 0x9a, 0x0e, 0x29, 0xc5, 0x1c, 0xa9, 0xe9, 0x5d, 0x1e +.byte 0xb6, 0x9e, 0x9e, 0x30, 0x0a, 0x39, 0xce, 0xf1, 0x88, 0x80, 0xfb, 0x4b, 0x5d, 0xcc, 0x32, 0xec +.byte 0x85, 0x62, 0x43, 0x25, 0x34, 0x02, 0x56, 0x27, 0x01, 0x91, 0xb4, 0x3b, 0x70, 0x2a, 0x3f, 0x6e +.byte 0xb1, 0xe8, 0x9c, 0x88, 0x01, 0x7d, 0x9f, 0xd4, 0xf9, 0xdb, 0x53, 0x6d, 0x60, 0x9d, 0xbf, 0x2c +.byte 0xe7, 0x58, 0xab, 0xb8, 0x5f, 0x46, 0xfc, 0xce, 0xc4, 0x1b, 0x03, 0x3c, 0x09, 0xeb, 0x49, 0x31 +.byte 0x5c, 0x69, 0x46, 0xb3, 0xe0, 0x47, 0x02, 0x03, 0x01, 0x00, 0x01, 0x87, 0x00, 0x26, 0x02, 0x30 +.byte 0x81, 0x84, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x05, 0x13, 0x09, 0x47, 0x36, 0x33 +.byte 0x32, 0x38, 0x37, 0x35, 0x31, 0x30, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x45, 0x53, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1e, 0x41, 0x4e +.byte 0x46, 0x20, 0x41, 0x75, 0x74, 0x6f, 0x72, 0x69, 0x64, 0x61, 0x64, 0x20, 0x64, 0x65, 0x20, 0x43 +.byte 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x63, 0x69, 0x6f, 0x6e, 0x31, 0x14, 0x30, 0x12 +.byte 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x0b, 0x41, 0x4e, 0x46, 0x20, 0x43, 0x41, 0x20, 0x52, 0x61 +.byte 0x69, 0x7a, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x19, 0x41, 0x4e, 0x46 +.byte 0x20, 0x53, 0x65, 0x63, 0x75, 0x72, 0x65, 0x20, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x20, 0x52 +.byte 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86 +.byte 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82 +.byte 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xdb, 0xeb, 0x6b, 0x2b, 0xe6, 0x64, 0x54, 0x95, 0x82 +.byte 0x90, 0xa3, 0x72, 0xa4, 0x19, 0x01, 0x9d, 0x9c, 0x0b, 0x81, 0x5f, 0x73, 0x49, 0xba, 0xa7, 0xac +.byte 0xf3, 0x04, 0x4e, 0x7b, 0x96, 0x0b, 0xec, 0x11, 0xe0, 0x5b, 0xa6, 0x1c, 0xce, 0x1b, 0xd2, 0x0d +.byte 0x83, 0x1c, 0x2b, 0xb8, 0x9e, 0x1d, 0x7e, 0x45, 0x32, 0x60, 0x0f, 0x07, 0xe9, 0x77, 0x58, 0x7e +.byte 0x9f, 0x6a, 0xc8, 0x61, 0x4e, 0xb6, 0x26, 0xc1, 0x4c, 0x8d, 0xff, 0x4c, 0xef, 0x34, 0xb2, 0x1f +.byte 0x65, 0xd8, 0xb9, 0x78, 0xf5, 0xad, 0xa9, 0x71, 0xb9, 0xef, 0x4f, 0x58, 0x1d, 0xa5, 0xde, 0x74 +.byte 0x20, 0x97, 0xa1, 0xed, 0x68, 0x4c, 0xde, 0x92, 0x17, 0x4b, 0xbc, 0xab, 0xff, 0x65, 0x9a, 0x9e +.byte 0xfb, 0x47, 0xd9, 0x57, 0x72, 0xf3, 0x09, 0xa1, 0xae, 0x76, 0x44, 0x13, 0x6e, 0x9c, 0x2d, 0x44 +.byte 0x39, 0xbc, 0xf9, 0xc7, 0x3b, 0xa4, 0x58, 0x3d, 0x41, 0xbd, 0xb4, 0xc2, 0x49, 0xa3, 0xc8, 0x0d +.byte 0xd2, 0x97, 0x2f, 0x07, 0x65, 0x52, 0x00, 0xa7, 0x6e, 0xc8, 0xaf, 0x68, 0xec, 0xf4, 0x14, 0x96 +.byte 0xb6, 0x57, 0x1f, 0x56, 0xc3, 0x39, 0x9f, 0x2b, 0x6d, 0xe4, 0xf3, 0x3e, 0xf6, 0x35, 0x64, 0xda +.byte 0x0c, 0x1c, 0xa1, 0x84, 0x4b, 0x2f, 0x4b, 0x4b, 0xe2, 0x2c, 0x24, 0x9d, 0x6d, 0x93, 0x40, 0xeb +.byte 0xb5, 0x23, 0x8e, 0x32, 0xca, 0x6f, 0x45, 0xd3, 0xa8, 0x89, 0x7b, 0x1e, 0xcf, 0x1e, 0xfa, 0x5b +.byte 0x43, 0x8b, 0xcd, 0xcd, 0xa8, 0x0f, 0x6a, 0xca, 0x0c, 0x5e, 0xb9, 0x9e, 0x47, 0x8f, 0xf0, 0xd9 +.byte 0xb6, 0x0a, 0x0b, 0x58, 0x65, 0x17, 0x33, 0xb9, 0x23, 0xe4, 0x77, 0x19, 0x7d, 0xcb, 0x4a, 0x2e +.byte 0x92, 0x7b, 0x4f, 0x2f, 0x10, 0x77, 0xb1, 0x8d, 0x2f, 0x68, 0x9c, 0x62, 0xcc, 0xe0, 0x50, 0xf8 +.byte 0xec, 0x91, 0xa7, 0x54, 0x4c, 0x57, 0x09, 0xd5, 0x76, 0x63, 0xc5, 0xe8, 0x65, 0x1e, 0xee, 0x6d +.byte 0x6a, 0xcf, 0x09, 0x9d, 0xfa, 0x7c, 0x4f, 0xad, 0x60, 0x08, 0xfd, 0x56, 0x99, 0x0f, 0x15, 0x2c +.byte 0x7b, 0xa9, 0x80, 0xab, 0x8c, 0x61, 0x8f, 0x4a, 0x07, 0x76, 0x42, 0xde, 0x3d, 0xf4, 0xdd, 0xb2 +.byte 0x24, 0x33, 0x5b, 0xb8, 0xb5, 0xa3, 0x44, 0xc9, 0xac, 0x7f, 0x77, 0x3c, 0x1d, 0x23, 0xec, 0x82 +.byte 0xa9, 0xa6, 0xe2, 0xc8, 0x06, 0x4c, 0x02, 0xfe, 0xac, 0x5c, 0x99, 0x99, 0x0b, 0x2f, 0x10, 0x8a +.byte 0xa6, 0xf4, 0x7f, 0xd5, 0x87, 0x74, 0x0d, 0x59, 0x49, 0x45, 0xf6, 0xf0, 0x71, 0x5c, 0x39, 0x29 +.byte 0xd6, 0xbf, 0x4a, 0x23, 0x8b, 0xf5, 0x5f, 0x01, 0x63, 0xd2, 0x87, 0x73, 0x28, 0xb5, 0x4b, 0x0a +.byte 0xf5, 0xf8, 0xab, 0x82, 0x2c, 0x7e, 0x73, 0x25, 0x32, 0x1d, 0x0b, 0x63, 0x0a, 0x17, 0x81, 0x00 +.byte 0xff, 0xb6, 0x76, 0x5e, 0xe7, 0xb4, 0xb1, 0x40, 0xca, 0x21, 0xbb, 0xd5, 0x80, 0x51, 0xe5, 0x48 +.byte 0x52, 0x67, 0x2c, 0xd2, 0x61, 0x89, 0x07, 0x0d, 0x0f, 0xce, 0x42, 0x77, 0xc0, 0x44, 0x73, 0x9c +.byte 0x44, 0x50, 0xa0, 0xdb, 0x10, 0x0a, 0x2d, 0x95, 0x1c, 0x81, 0xaf, 0xe4, 0x1c, 0xe5, 0x14, 0x1e +.byte 0xf1, 0x36, 0x41, 0x01, 0x02, 0x2f, 0x7d, 0x73, 0xa7, 0xde, 0x42, 0xcc, 0x4c, 0xe9, 0x89, 0x0d +.byte 0x56, 0xf7, 0x9f, 0x91, 0xd4, 0x03, 0xc6, 0x6c, 0xc9, 0x8f, 0xdb, 0xd8, 0x1c, 0xe0, 0x40, 0x98 +.byte 0x5d, 0x66, 0x99, 0x98, 0x80, 0x6e, 0x2d, 0xff, 0x01, 0xc5, 0xce, 0xcb, 0x46, 0x1f, 0xac, 0x02 +.byte 0xc6, 0x43, 0xe6, 0xae, 0xa2, 0x84, 0x3c, 0xc5, 0x4e, 0x1e, 0x3d, 0x6d, 0xc9, 0x14, 0x4c, 0xe3 +.byte 0x2e, 0x41, 0xbb, 0xca, 0x39, 0xbf, 0x36, 0x3c, 0x2a, 0x19, 0xaa, 0x41, 0x87, 0x4e, 0xa5, 0xce +.byte 0x4b, 0x32, 0x79, 0xdd, 0x90, 0x49, 0x7f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x88, 0x00, 0x78, 0x00 +.byte 0x30, 0x81, 0x85, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x42 +.byte 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x12, 0x47, 0x72, 0x65, 0x61, 0x74 +.byte 0x65, 0x72, 0x20, 0x4d, 0x61, 0x6e, 0x63, 0x68, 0x65, 0x73, 0x74, 0x65, 0x72, 0x31, 0x10, 0x30 +.byte 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x07, 0x53, 0x61, 0x6c, 0x66, 0x6f, 0x72, 0x64, 0x31 +.byte 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x11, 0x43, 0x4f, 0x4d, 0x4f, 0x44, 0x4f +.byte 0x20, 0x43, 0x41, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x2b, 0x30, 0x29, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x22, 0x43, 0x4f, 0x4d, 0x4f, 0x44, 0x4f, 0x20, 0x45, 0x43, 0x43 +.byte 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41 +.byte 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86 +.byte 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04 +.byte 0x03, 0x47, 0x7b, 0x2f, 0x75, 0xc9, 0x82, 0x15, 0x85, 0xfb, 0x75, 0xe4, 0x91, 0x16, 0xd4, 0xab +.byte 0x62, 0x99, 0xf5, 0x3e, 0x52, 0x0b, 0x06, 0xce, 0x41, 0x00, 0x7f, 0x97, 0xe1, 0x0a, 0x24, 0x3c +.byte 0x1d, 0x01, 0x04, 0xee, 0x3d, 0xd2, 0x8d, 0x09, 0x97, 0x0c, 0xe0, 0x75, 0xe4, 0xfa, 0xfb, 0x77 +.byte 0x8a, 0x2a, 0xf5, 0x03, 0x60, 0x4b, 0x36, 0x8b, 0x16, 0x23, 0x16, 0xad, 0x09, 0x71, 0xf4, 0x4a +.byte 0xf4, 0x28, 0x50, 0xb4, 0xfe, 0x88, 0x1c, 0x6e, 0x3f, 0x6c, 0x2f, 0x2f, 0x09, 0x59, 0x5b, 0xa5 +.byte 0x5b, 0x0b, 0x33, 0x99, 0xe2, 0xc3, 0x3d, 0x89, 0xf9, 0x6a, 0x2c, 0xef, 0xb2, 0xd3, 0x06, 0xe9 +.byte 0x88, 0x00, 0x26, 0x02, 0x30, 0x81, 0x85, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 +.byte 0x13, 0x02, 0x47, 0x42, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x12, 0x47 +.byte 0x72, 0x65, 0x61, 0x74, 0x65, 0x72, 0x20, 0x4d, 0x61, 0x6e, 0x63, 0x68, 0x65, 0x73, 0x74, 0x65 +.byte 0x72, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x07, 0x53, 0x61, 0x6c, 0x66 +.byte 0x6f, 0x72, 0x64, 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x11, 0x43, 0x4f +.byte 0x4d, 0x4f, 0x44, 0x4f, 0x20, 0x43, 0x41, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31 +.byte 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x22, 0x43, 0x4f, 0x4d, 0x4f, 0x44, 0x4f +.byte 0x20, 0x52, 0x53, 0x41, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69 +.byte 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x82, 0x02, 0x22 +.byte 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03 +.byte 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0x91, 0xe8, 0x54 +.byte 0x92, 0xd2, 0x0a, 0x56, 0xb1, 0xac, 0x0d, 0x24, 0xdd, 0xc5, 0xcf, 0x44, 0x67, 0x74, 0x99, 0x2b +.byte 0x37, 0xa3, 0x7d, 0x23, 0x70, 0x00, 0x71, 0xbc, 0x53, 0xdf, 0xc4, 0xfa, 0x2a, 0x12, 0x8f, 0x4b +.byte 0x7f, 0x10, 0x56, 0xbd, 0x9f, 0x70, 0x72, 0xb7, 0x61, 0x7f, 0xc9, 0x4b, 0x0f, 0x17, 0xa7, 0x3d +.byte 0xe3, 0xb0, 0x04, 0x61, 0xee, 0xff, 0x11, 0x97, 0xc7, 0xf4, 0x86, 0x3e, 0x0a, 0xfa, 0x3e, 0x5c +.byte 0xf9, 0x93, 0xe6, 0x34, 0x7a, 0xd9, 0x14, 0x6b, 0xe7, 0x9c, 0xb3, 0x85, 0xa0, 0x82, 0x7a, 0x76 +.byte 0xaf, 0x71, 0x90, 0xd7, 0xec, 0xfd, 0x0d, 0xfa, 0x9c, 0x6c, 0xfa, 0xdf, 0xb0, 0x82, 0xf4, 0x14 +.byte 0x7e, 0xf9, 0xbe, 0xc4, 0xa6, 0x2f, 0x4f, 0x7f, 0x99, 0x7f, 0xb5, 0xfc, 0x67, 0x43, 0x72, 0xbd +.byte 0x0c, 0x00, 0xd6, 0x89, 0xeb, 0x6b, 0x2c, 0xd3, 0xed, 0x8f, 0x98, 0x1c, 0x14, 0xab, 0x7e, 0xe5 +.byte 0xe3, 0x6e, 0xfc, 0xd8, 0xa8, 0xe4, 0x92, 0x24, 0xda, 0x43, 0x6b, 0x62, 0xb8, 0x55, 0xfd, 0xea +.byte 0xc1, 0xbc, 0x6c, 0xb6, 0x8b, 0xf3, 0x0e, 0x8d, 0x9a, 0xe4, 0x9b, 0x6c, 0x69, 0x99, 0xf8, 0x78 +.byte 0x48, 0x30, 0x45, 0xd5, 0xad, 0xe1, 0x0d, 0x3c, 0x45, 0x60, 0xfc, 0x32, 0x96, 0x51, 0x27, 0xbc +.byte 0x67, 0xc3, 0xca, 0x2e, 0xb6, 0x6b, 0xea, 0x46, 0xc7, 0xc7, 0x20, 0xa0, 0xb1, 0x1f, 0x65, 0xde +.byte 0x48, 0x08, 0xba, 0xa4, 0x4e, 0xa9, 0xf2, 0x83, 0x46, 0x37, 0x84, 0xeb, 0xe8, 0xcc, 0x81, 0x48 +.byte 0x43, 0x67, 0x4e, 0x72, 0x2a, 0x9b, 0x5c, 0xbd, 0x4c, 0x1b, 0x28, 0x8a, 0x5c, 0x22, 0x7b, 0xb4 +.byte 0xab, 0x98, 0xd9, 0xee, 0xe0, 0x51, 0x83, 0xc3, 0x09, 0x46, 0x4e, 0x6d, 0x3e, 0x99, 0xfa, 0x95 +.byte 0x17, 0xda, 0x7c, 0x33, 0x57, 0x41, 0x3c, 0x8d, 0x51, 0xed, 0x0b, 0xb6, 0x5c, 0xaf, 0x2c, 0x63 +.byte 0x1a, 0xdf, 0x57, 0xc8, 0x3f, 0xbc, 0xe9, 0x5d, 0xc4, 0x9b, 0xaf, 0x45, 0x99, 0xe2, 0xa3, 0x5a +.byte 0x24, 0xb4, 0xba, 0xa9, 0x56, 0x3d, 0xcf, 0x6f, 0xaa, 0xff, 0x49, 0x58, 0xbe, 0xf0, 0xa8, 0xff +.byte 0xf4, 0xb8, 0xad, 0xe9, 0x37, 0xfb, 0xba, 0xb8, 0xf4, 0x0b, 0x3a, 0xf9, 0xe8, 0x43, 0x42, 0x1e +.byte 0x89, 0xd8, 0x84, 0xcb, 0x13, 0xf1, 0xd9, 0xbb, 0xe1, 0x89, 0x60, 0xb8, 0x8c, 0x28, 0x56, 0xac +.byte 0x14, 0x1d, 0x9c, 0x0a, 0xe7, 0x71, 0xeb, 0xcf, 0x0e, 0xdd, 0x3d, 0xa9, 0x96, 0xa1, 0x48, 0xbd +.byte 0x3c, 0xf7, 0xaf, 0xb5, 0x0d, 0x22, 0x4c, 0xc0, 0x11, 0x81, 0xec, 0x56, 0x3b, 0xf6, 0xd3, 0xa2 +.byte 0xe2, 0x5b, 0xb7, 0xb2, 0x04, 0x22, 0x52, 0x95, 0x80, 0x93, 0x69, 0xe8, 0x8e, 0x4c, 0x65, 0xf1 +.byte 0x91, 0x03, 0x2d, 0x70, 0x74, 0x02, 0xea, 0x8b, 0x67, 0x15, 0x29, 0x69, 0x52, 0x02, 0xbb, 0xd7 +.byte 0xdf, 0x50, 0x6a, 0x55, 0x46, 0xbf, 0xa0, 0xa3, 0x28, 0x61, 0x7f, 0x70, 0xd0, 0xc3, 0xa2, 0xaa +.byte 0x2c, 0x21, 0xaa, 0x47, 0xce, 0x28, 0x9c, 0x06, 0x45, 0x76, 0xbf, 0x82, 0x18, 0x27, 0xb4, 0xd5 +.byte 0xae, 0xb4, 0xcb, 0x50, 0xe6, 0x6b, 0xf4, 0x4c, 0x86, 0x71, 0x30, 0xe9, 0xa6, 0xdf, 0x16, 0x86 +.byte 0xe0, 0xd8, 0xff, 0x40, 0xdd, 0xfb, 0xd0, 0x42, 0x88, 0x7f, 0xa3, 0x33, 0x3a, 0x2e, 0x5c, 0x1e +.byte 0x41, 0x11, 0x81, 0x63, 0xce, 0x18, 0x71, 0x6b, 0x2b, 0xec, 0xa6, 0x8a, 0xb7, 0x31, 0x5c, 0x3a +.byte 0x6a, 0x47, 0xe0, 0xc3, 0x79, 0x59, 0xd6, 0x20, 0x1a, 0xaf, 0xf2, 0x6a, 0x98, 0xaa, 0x72, 0xbc +.byte 0x57, 0x4a, 0xd2, 0x4b, 0x9d, 0xbb, 0x10, 0xfc, 0xb0, 0x4c, 0x41, 0xe5, 0xed, 0x1d, 0x3d, 0x5e +.byte 0x28, 0x9d, 0x9c, 0xcc, 0xbf, 0xb3, 0x51, 0xda, 0xa7, 0x47, 0xe5, 0x84, 0x53, 0x02, 0x03, 0x01 +.byte 0x00, 0x01, 0x8b, 0x00, 0x26, 0x02, 0x30, 0x81, 0x88, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x08, 0x0c +.byte 0x08, 0x49, 0x6c, 0x6c, 0x69, 0x6e, 0x6f, 0x69, 0x73, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55 +.byte 0x04, 0x07, 0x0c, 0x07, 0x43, 0x68, 0x69, 0x63, 0x61, 0x67, 0x6f, 0x31, 0x21, 0x30, 0x1f, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x18, 0x54, 0x72, 0x75, 0x73, 0x74, 0x77, 0x61, 0x76, 0x65, 0x20 +.byte 0x48, 0x6f, 0x6c, 0x64, 0x69, 0x6e, 0x67, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x31 +.byte 0x30, 0x2f, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x28, 0x54, 0x72, 0x75, 0x73, 0x74, 0x77, 0x61 +.byte 0x76, 0x65, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66 +.byte 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74 +.byte 0x79, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01 +.byte 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02 +.byte 0x01, 0x00, 0xb9, 0x5d, 0x51, 0x28, 0x4b, 0x3c, 0x37, 0x92, 0xd1, 0x82, 0xce, 0xbd, 0x1d, 0xbd +.byte 0xcd, 0xdd, 0xb8, 0xab, 0xcf, 0x0a, 0x3e, 0xe1, 0x5d, 0xe5, 0xdc, 0xaa, 0x09, 0xb9, 0x57, 0x02 +.byte 0x3e, 0xe6, 0x63, 0x61, 0xdf, 0xf2, 0x0f, 0x82, 0x63, 0xae, 0xa3, 0xf7, 0xac, 0x73, 0xd1, 0x7c +.byte 0xe7, 0xb3, 0x0b, 0xaf, 0x08, 0x00, 0x09, 0x59, 0x7f, 0xcd, 0x29, 0x2a, 0x88, 0x93, 0x87, 0x17 +.byte 0x18, 0x80, 0xed, 0x88, 0xb2, 0xb4, 0xb6, 0x10, 0x1f, 0x2d, 0xd6, 0x5f, 0x55, 0xa2, 0x13, 0x5d +.byte 0xd1, 0xc6, 0xeb, 0x06, 0x56, 0x89, 0x88, 0xfe, 0xac, 0x32, 0x9d, 0xfd, 0x5c, 0xc3, 0x05, 0xc7 +.byte 0x6e, 0xee, 0x86, 0x89, 0xba, 0x88, 0x03, 0x9d, 0x72, 0x21, 0x86, 0x90, 0xae, 0x8f, 0x03, 0xa5 +.byte 0xdc, 0x9f, 0x88, 0x28, 0xcb, 0xa3, 0x92, 0x49, 0x0f, 0xec, 0xd0, 0x0f, 0xe2, 0x6d, 0x44, 0x4f +.byte 0x80, 0x6a, 0xb2, 0xd4, 0xe7, 0xa0, 0x0a, 0x53, 0x01, 0xba, 0x8e, 0x97, 0x91, 0x76, 0x6e, 0xbc +.byte 0xfc, 0xd5, 0x6b, 0x36, 0xe6, 0x40, 0x88, 0xd6, 0x7b, 0x2f, 0x5f, 0x05, 0xe8, 0x2c, 0x6d, 0x11 +.byte 0xf3, 0xe7, 0xb2, 0xbe, 0x92, 0x44, 0x4c, 0xd2, 0x97, 0xa4, 0xfe, 0xd2, 0x72, 0x81, 0x43, 0x07 +.byte 0x9c, 0xe9, 0x11, 0x3e, 0xf5, 0x8b, 0x1a, 0x59, 0x7d, 0x1f, 0x68, 0x58, 0xdd, 0x04, 0x00, 0x2c +.byte 0x96, 0xf3, 0x43, 0xb3, 0x7e, 0x98, 0x19, 0x74, 0xd9, 0x9c, 0x73, 0xd9, 0x18, 0xbe, 0x41, 0xc7 +.byte 0x34, 0x79, 0xd9, 0xf4, 0x62, 0xc2, 0x43, 0xb9, 0xb3, 0x27, 0xb0, 0x22, 0xcb, 0xf9, 0x3d, 0x52 +.byte 0xc7, 0x30, 0x47, 0xb3, 0xc9, 0x3e, 0xb8, 0x6a, 0xe2, 0xe7, 0xe8, 0x81, 0x70, 0x5e, 0x42, 0x8b +.byte 0x4f, 0x26, 0xa5, 0xfe, 0x3a, 0xc2, 0x20, 0x6e, 0xbb, 0xf8, 0x16, 0x8e, 0xcd, 0x0c, 0xa9, 0xb4 +.byte 0x1b, 0x6c, 0x76, 0x10, 0xe1, 0x58, 0x79, 0x46, 0x3e, 0x54, 0xce, 0x80, 0xa8, 0x57, 0x09, 0x37 +.byte 0x29, 0x1b, 0x99, 0x13, 0x8f, 0x0c, 0xc8, 0xd6, 0x2c, 0x1c, 0xfb, 0x05, 0xe8, 0x08, 0x95, 0x3d +.byte 0x65, 0x46, 0xdc, 0xee, 0xcd, 0x69, 0xe2, 0x4d, 0x8f, 0x87, 0x28, 0x4e, 0x34, 0x0b, 0x3e, 0xcf +.byte 0x14, 0xd9, 0xbb, 0xdd, 0xb6, 0x50, 0x9a, 0xad, 0x77, 0xd4, 0x19, 0xd6, 0xda, 0x1a, 0x88, 0xc8 +.byte 0x4e, 0x1b, 0x27, 0x75, 0xd8, 0xb2, 0x08, 0xf1, 0xae, 0x83, 0x30, 0xb9, 0x11, 0x0e, 0xcd, 0x87 +.byte 0xf0, 0x84, 0x8d, 0x15, 0x72, 0x7c, 0xa1, 0xef, 0xcc, 0xf2, 0x88, 0x61, 0xba, 0xf4, 0x69, 0xbb +.byte 0x0c, 0x8c, 0x0b, 0x75, 0x57, 0x04, 0xb8, 0x4e, 0x2a, 0x14, 0x2e, 0x3d, 0x0f, 0x1c, 0x1e, 0x32 +.byte 0xa6, 0x62, 0x36, 0xee, 0x66, 0xe2, 0x22, 0xb8, 0x05, 0x40, 0x63, 0x10, 0x22, 0xf3, 0x33, 0x1d +.byte 0x74, 0x72, 0x8a, 0x2c, 0xf5, 0x39, 0x29, 0xa0, 0xd3, 0xe7, 0x1b, 0x80, 0x84, 0x2d, 0xc5, 0x3d +.byte 0xe3, 0x4d, 0xb1, 0xfd, 0x1a, 0x6f, 0xba, 0x65, 0x07, 0x3b, 0x58, 0xec, 0x42, 0x45, 0x26, 0xfb +.byte 0xd8, 0xda, 0x25, 0x72, 0xc4, 0xf6, 0x00, 0xb1, 0x22, 0x79, 0xbd, 0xe3, 0x7c, 0x59, 0x62, 0x4a +.byte 0x9c, 0x05, 0x6f, 0x3d, 0xce, 0xe6, 0xd6, 0x47, 0x63, 0x99, 0xc6, 0x24, 0x6f, 0x72, 0x12, 0xc8 +.byte 0xac, 0x7f, 0x90, 0xb4, 0x0b, 0x91, 0x70, 0xe8, 0xb7, 0xe6, 0x16, 0x10, 0x71, 0x17, 0xce, 0xde +.byte 0x06, 0x4f, 0x48, 0x41, 0x7d, 0x35, 0x4a, 0xa3, 0x89, 0xf2, 0xc9, 0x4b, 0x7b, 0x41, 0x11, 0x6d +.byte 0x67, 0xb7, 0x08, 0x98, 0x4c, 0xe5, 0x11, 0x19, 0xae, 0x42, 0x80, 0xdc, 0xfb, 0x90, 0x05, 0xd4 +.byte 0xf8, 0x50, 0xca, 0xbe, 0xe4, 0xad, 0xc7, 0xc2, 0x94, 0xd7, 0x16, 0x9d, 0xe6, 0x17, 0x8f, 0xaf +.byte 0x36, 0xfb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x8b, 0x00, 0x78, 0x00, 0x30, 0x81, 0x88, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x13, 0x30, 0x11, 0x06 +.byte 0x03, 0x55, 0x04, 0x08, 0x13, 0x0a, 0x4e, 0x65, 0x77, 0x20, 0x4a, 0x65, 0x72, 0x73, 0x65, 0x79 +.byte 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x0b, 0x4a, 0x65, 0x72, 0x73, 0x65 +.byte 0x79, 0x20, 0x43, 0x69, 0x74, 0x79, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 +.byte 0x15, 0x54, 0x68, 0x65, 0x20, 0x55, 0x53, 0x45, 0x52, 0x54, 0x52, 0x55, 0x53, 0x54, 0x20, 0x4e +.byte 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x31, 0x2e, 0x30, 0x2c, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13 +.byte 0x25, 0x55, 0x53, 0x45, 0x52, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x45, 0x43, 0x43, 0x20, 0x43 +.byte 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74 +.byte 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce +.byte 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x1a, 0xac +.byte 0x54, 0x5a, 0xa9, 0xf9, 0x68, 0x23, 0xe7, 0x7a, 0xd5, 0x24, 0x6f, 0x53, 0xc6, 0x5a, 0xd8, 0x4b +.byte 0xab, 0xc6, 0xd5, 0xb6, 0xd1, 0xe6, 0x73, 0x71, 0xae, 0xdd, 0x9c, 0xd6, 0x0c, 0x61, 0xfd, 0xdb +.byte 0xa0, 0x89, 0x03, 0xb8, 0x05, 0x14, 0xec, 0x57, 0xce, 0xee, 0x5d, 0x3f, 0xe2, 0x21, 0xb3, 0xce +.byte 0xf7, 0xd4, 0x8a, 0x79, 0xe0, 0xa3, 0x83, 0x7e, 0x2d, 0x97, 0xd0, 0x61, 0xc4, 0xf1, 0x99, 0xdc +.byte 0x25, 0x91, 0x63, 0xab, 0x7f, 0x30, 0xa3, 0xb4, 0x70, 0xe2, 0xc7, 0xa1, 0x33, 0x9c, 0xf3, 0xbf +.byte 0x2e, 0x5c, 0x53, 0xb1, 0x5f, 0xb3, 0x7d, 0x32, 0x7f, 0x8a, 0x34, 0xe3, 0x79, 0x79, 0x8b, 0x00 +.byte 0x26, 0x02, 0x30, 0x81, 0x88, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x55, 0x53, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x0a, 0x4e, 0x65, 0x77 +.byte 0x20, 0x4a, 0x65, 0x72, 0x73, 0x65, 0x79, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x07 +.byte 0x13, 0x0b, 0x4a, 0x65, 0x72, 0x73, 0x65, 0x79, 0x20, 0x43, 0x69, 0x74, 0x79, 0x31, 0x1e, 0x30 +.byte 0x1c, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x15, 0x54, 0x68, 0x65, 0x20, 0x55, 0x53, 0x45, 0x52 +.byte 0x54, 0x52, 0x55, 0x53, 0x54, 0x20, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x31, 0x2e, 0x30 +.byte 0x2c, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x25, 0x55, 0x53, 0x45, 0x52, 0x54, 0x72, 0x75, 0x73 +.byte 0x74, 0x20, 0x52, 0x53, 0x41, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74 +.byte 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x82, 0x02 +.byte 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00 +.byte 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0x80, 0x12 +.byte 0x65, 0x17, 0x36, 0x0e, 0xc3, 0xdb, 0x08, 0xb3, 0xd0, 0xac, 0x57, 0x0d, 0x76, 0xed, 0xcd, 0x27 +.byte 0xd3, 0x4c, 0xad, 0x50, 0x83, 0x61, 0xe2, 0xaa, 0x20, 0x4d, 0x09, 0x2d, 0x64, 0x09, 0xdc, 0xce +.byte 0x89, 0x9f, 0xcc, 0x3d, 0xa9, 0xec, 0xf6, 0xcf, 0xc1, 0xdc, 0xf1, 0xd3, 0xb1, 0xd6, 0x7b, 0x37 +.byte 0x28, 0x11, 0x2b, 0x47, 0xda, 0x39, 0xc6, 0xbc, 0x3a, 0x19, 0xb4, 0x5f, 0xa6, 0xbd, 0x7d, 0x9d +.byte 0xa3, 0x63, 0x42, 0xb6, 0x76, 0xf2, 0xa9, 0x3b, 0x2b, 0x91, 0xf8, 0xe2, 0x6f, 0xd0, 0xec, 0x16 +.byte 0x20, 0x90, 0x09, 0x3e, 0xe2, 0xe8, 0x74, 0xc9, 0x18, 0xb4, 0x91, 0xd4, 0x62, 0x64, 0xdb, 0x7f +.byte 0xa3, 0x06, 0xf1, 0x88, 0x18, 0x6a, 0x90, 0x22, 0x3c, 0xbc, 0xfe, 0x13, 0xf0, 0x87, 0x14, 0x7b +.byte 0xf6, 0xe4, 0x1f, 0x8e, 0xd4, 0xe4, 0x51, 0xc6, 0x11, 0x67, 0x46, 0x08, 0x51, 0xcb, 0x86, 0x14 +.byte 0x54, 0x3f, 0xbc, 0x33, 0xfe, 0x7e, 0x6c, 0x9c, 0xff, 0x16, 0x9d, 0x18, 0xbd, 0x51, 0x8e, 0x35 +.byte 0xa6, 0xa7, 0x66, 0xc8, 0x72, 0x67, 0xdb, 0x21, 0x66, 0xb1, 0xd4, 0x9b, 0x78, 0x03, 0xc0, 0x50 +.byte 0x3a, 0xe8, 0xcc, 0xf0, 0xdc, 0xbc, 0x9e, 0x4c, 0xfe, 0xaf, 0x05, 0x96, 0x35, 0x1f, 0x57, 0x5a +.byte 0xb7, 0xff, 0xce, 0xf9, 0x3d, 0xb7, 0x2c, 0xb6, 0xf6, 0x54, 0xdd, 0xc8, 0xe7, 0x12, 0x3a, 0x4d +.byte 0xae, 0x4c, 0x8a, 0xb7, 0x5c, 0x9a, 0xb4, 0xb7, 0x20, 0x3d, 0xca, 0x7f, 0x22, 0x34, 0xae, 0x7e +.byte 0x3b, 0x68, 0x66, 0x01, 0x44, 0xe7, 0x01, 0x4e, 0x46, 0x53, 0x9b, 0x33, 0x60, 0xf7, 0x94, 0xbe +.byte 0x53, 0x37, 0x90, 0x73, 0x43, 0xf3, 0x32, 0xc3, 0x53, 0xef, 0xdb, 0xaa, 0xfe, 0x74, 0x4e, 0x69 +.byte 0xc7, 0x6b, 0x8c, 0x60, 0x93, 0xde, 0xc4, 0xc7, 0x0c, 0xdf, 0xe1, 0x32, 0xae, 0xcc, 0x93, 0x3b +.byte 0x51, 0x78, 0x95, 0x67, 0x8b, 0xee, 0x3d, 0x56, 0xfe, 0x0c, 0xd0, 0x69, 0x0f, 0x1b, 0x0f, 0xf3 +.byte 0x25, 0x26, 0x6b, 0x33, 0x6d, 0xf7, 0x6e, 0x47, 0xfa, 0x73, 0x43, 0xe5, 0x7e, 0x0e, 0xa5, 0x66 +.byte 0xb1, 0x29, 0x7c, 0x32, 0x84, 0x63, 0x55, 0x89, 0xc4, 0x0d, 0xc1, 0x93, 0x54, 0x30, 0x19, 0x13 +.byte 0xac, 0xd3, 0x7d, 0x37, 0xa7, 0xeb, 0x5d, 0x3a, 0x6c, 0x35, 0x5c, 0xdb, 0x41, 0xd7, 0x12, 0xda +.byte 0xa9, 0x49, 0x0b, 0xdf, 0xd8, 0x80, 0x8a, 0x09, 0x93, 0x62, 0x8e, 0xb5, 0x66, 0xcf, 0x25, 0x88 +.byte 0xcd, 0x84, 0xb8, 0xb1, 0x3f, 0xa4, 0x39, 0x0f, 0xd9, 0x02, 0x9e, 0xeb, 0x12, 0x4c, 0x95, 0x7c +.byte 0xf3, 0x6b, 0x05, 0xa9, 0x5e, 0x16, 0x83, 0xcc, 0xb8, 0x67, 0xe2, 0xe8, 0x13, 0x9d, 0xcc, 0x5b +.byte 0x82, 0xd3, 0x4c, 0xb3, 0xed, 0x5b, 0xff, 0xde, 0xe5, 0x73, 0xac, 0x23, 0x3b, 0x2d, 0x00, 0xbf +.byte 0x35, 0x55, 0x74, 0x09, 0x49, 0xd8, 0x49, 0x58, 0x1a, 0x7f, 0x92, 0x36, 0xe6, 0x51, 0x92, 0x0e +.byte 0xf3, 0x26, 0x7d, 0x1c, 0x4d, 0x17, 0xbc, 0xc9, 0xec, 0x43, 0x26, 0xd0, 0xbf, 0x41, 0x5f, 0x40 +.byte 0xa9, 0x44, 0x44, 0xf4, 0x99, 0xe7, 0x57, 0x87, 0x9e, 0x50, 0x1f, 0x57, 0x54, 0xa8, 0x3e, 0xfd +.byte 0x74, 0x63, 0x2f, 0xb1, 0x50, 0x65, 0x09, 0xe6, 0x58, 0x42, 0x2e, 0x43, 0x1a, 0x4c, 0xb4, 0xf0 +.byte 0x25, 0x47, 0x59, 0xfa, 0x04, 0x1e, 0x93, 0xd4, 0x26, 0x46, 0x4a, 0x50, 0x81, 0xb2, 0xde, 0xbe +.byte 0x78, 0xb7, 0xfc, 0x67, 0x15, 0xe1, 0xc9, 0x57, 0x84, 0x1e, 0x0f, 0x63, 0xd6, 0xe9, 0x62, 0xba +.byte 0xd6, 0x5f, 0x55, 0x2e, 0xea, 0x5c, 0xc6, 0x28, 0x08, 0x04, 0x25, 0x39, 0xb8, 0x0e, 0x2b, 0xa9 +.byte 0xf2, 0x4c, 0x97, 0x1c, 0x07, 0x3f, 0x0d, 0x52, 0xf5, 0xed, 0xef, 0x2f, 0x82, 0x0f, 0x02, 0x03 +.byte 0x01, 0x00, 0x01, 0x92, 0x00, 0x26, 0x01, 0x30, 0x81, 0x8f, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 +.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x08 +.byte 0x13, 0x07, 0x41, 0x72, 0x69, 0x7a, 0x6f, 0x6e, 0x61, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55 +.byte 0x04, 0x07, 0x13, 0x0a, 0x53, 0x63, 0x6f, 0x74, 0x74, 0x73, 0x64, 0x61, 0x6c, 0x65, 0x31, 0x25 +.byte 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1c, 0x53, 0x74, 0x61, 0x72, 0x66, 0x69, 0x65 +.byte 0x6c, 0x64, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x2c +.byte 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x32, 0x30, 0x30, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x29 +.byte 0x53, 0x74, 0x61, 0x72, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43 +.byte 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f +.byte 0x72, 0x69, 0x74, 0x79, 0x20, 0x2d, 0x20, 0x47, 0x32, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06 +.byte 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f +.byte 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xbd, 0xed, 0xc1, 0x03, 0xfc, 0xf6 +.byte 0x8f, 0xfc, 0x02, 0xb1, 0x6f, 0x5b, 0x9f, 0x48, 0xd9, 0x9d, 0x79, 0xe2, 0xa2, 0xb7, 0x03, 0x61 +.byte 0x56, 0x18, 0xc3, 0x47, 0xb6, 0xd7, 0xca, 0x3d, 0x35, 0x2e, 0x89, 0x43, 0xf7, 0xa1, 0x69, 0x9b +.byte 0xde, 0x8a, 0x1a, 0xfd, 0x13, 0x20, 0x9c, 0xb4, 0x49, 0x77, 0x32, 0x29, 0x56, 0xfd, 0xb9, 0xec +.byte 0x8c, 0xdd, 0x22, 0xfa, 0x72, 0xdc, 0x27, 0x61, 0x97, 0xee, 0xf6, 0x5a, 0x84, 0xec, 0x6e, 0x19 +.byte 0xb9, 0x89, 0x2c, 0xdc, 0x84, 0x5b, 0xd5, 0x74, 0xfb, 0x6b, 0x5f, 0xc5, 0x89, 0xa5, 0x10, 0x52 +.byte 0x89, 0x46, 0x55, 0xf4, 0xb8, 0x75, 0x1c, 0xe6, 0x7f, 0xe4, 0x54, 0xae, 0x4b, 0xf8, 0x55, 0x72 +.byte 0x57, 0x02, 0x19, 0xf8, 0x17, 0x71, 0x59, 0xeb, 0x1e, 0x28, 0x07, 0x74, 0xc5, 0x9d, 0x48, 0xbe +.byte 0x6c, 0xb4, 0xf4, 0xa4, 0xb0, 0xf3, 0x64, 0x37, 0x79, 0x92, 0xc0, 0xec, 0x46, 0x5e, 0x7f, 0xe1 +.byte 0x6d, 0x53, 0x4c, 0x62, 0xaf, 0xcd, 0x1f, 0x0b, 0x63, 0xbb, 0x3a, 0x9d, 0xfb, 0xfc, 0x79, 0x00 +.byte 0x98, 0x61, 0x74, 0xcf, 0x26, 0x82, 0x40, 0x63, 0xf3, 0xb2, 0x72, 0x6a, 0x19, 0x0d, 0x99, 0xca +.byte 0xd4, 0x0e, 0x75, 0xcc, 0x37, 0xfb, 0x8b, 0x89, 0xc1, 0x59, 0xf1, 0x62, 0x7f, 0x5f, 0xb3, 0x5f +.byte 0x65, 0x30, 0xf8, 0xa7, 0xb7, 0x4d, 0x76, 0x5a, 0x1e, 0x76, 0x5e, 0x34, 0xc0, 0xe8, 0x96, 0x56 +.byte 0x99, 0x8a, 0xb3, 0xf0, 0x7f, 0xa4, 0xcd, 0xbd, 0xdc, 0x32, 0x31, 0x7c, 0x91, 0xcf, 0xe0, 0x5f +.byte 0x11, 0xf8, 0x6b, 0xaa, 0x49, 0x5c, 0xd1, 0x99, 0x94, 0xd1, 0xa2, 0xe3, 0x63, 0x5b, 0x09, 0x76 +.byte 0xb5, 0x56, 0x62, 0xe1, 0x4b, 0x74, 0x1d, 0x96, 0xd4, 0x26, 0xd4, 0x08, 0x04, 0x59, 0xd0, 0x98 +.byte 0x0e, 0x0e, 0xe6, 0xde, 0xfc, 0xc3, 0xec, 0x1f, 0x90, 0xf1, 0x02, 0x03, 0x01, 0x00, 0x01, 0x94 +.byte 0x00, 0x5b, 0x00, 0x30, 0x81, 0x91, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x55, 0x53, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x08, 0x49, 0x6c +.byte 0x6c, 0x69, 0x6e, 0x6f, 0x69, 0x73, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13 +.byte 0x07, 0x43, 0x68, 0x69, 0x63, 0x61, 0x67, 0x6f, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x18, 0x54, 0x72, 0x75, 0x73, 0x74, 0x77, 0x61, 0x76, 0x65, 0x20, 0x48, 0x6f, 0x6c +.byte 0x64, 0x69, 0x6e, 0x67, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x3a, 0x30, 0x38, 0x06 +.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x31, 0x54, 0x72, 0x75, 0x73, 0x74, 0x77, 0x61, 0x76, 0x65, 0x20 +.byte 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x45, 0x43, 0x43, 0x20, 0x50, 0x32, 0x35, 0x36, 0x20 +.byte 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75 +.byte 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x59, 0x30, 0x13, 0x06, 0x07, 0x2a, 0x86, 0x48 +.byte 0xce, 0x3d, 0x02, 0x01, 0x06, 0x08, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x03, 0x01, 0x07, 0x03, 0x42 +.byte 0x00, 0x04, 0x7e, 0xfb, 0x6c, 0xe6, 0x23, 0xe3, 0x73, 0x32, 0x08, 0xca, 0x60, 0xe6, 0x53, 0x9c +.byte 0xba, 0x74, 0x8d, 0x18, 0xb0, 0x78, 0x90, 0x52, 0x80, 0xdd, 0x38, 0xc0, 0x4a, 0x1d, 0xd1, 0xa8 +.byte 0xcc, 0x93, 0xa4, 0x97, 0x06, 0x38, 0xca, 0x0d, 0x15, 0x62, 0xc6, 0x8e, 0x01, 0x2a, 0x65, 0x9d +.byte 0xaa, 0xdf, 0x34, 0x91, 0x2e, 0x81, 0xc1, 0xe4, 0x33, 0x92, 0x31, 0xc4, 0xfd, 0x09, 0x3a, 0xa6 +.byte 0x3f, 0xad, 0x94, 0x00, 0x78, 0x00, 0x30, 0x81, 0x91, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13 +.byte 0x08, 0x49, 0x6c, 0x6c, 0x69, 0x6e, 0x6f, 0x69, 0x73, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55 +.byte 0x04, 0x07, 0x13, 0x07, 0x43, 0x68, 0x69, 0x63, 0x61, 0x67, 0x6f, 0x31, 0x21, 0x30, 0x1f, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x13, 0x18, 0x54, 0x72, 0x75, 0x73, 0x74, 0x77, 0x61, 0x76, 0x65, 0x20 +.byte 0x48, 0x6f, 0x6c, 0x64, 0x69, 0x6e, 0x67, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x3a +.byte 0x30, 0x38, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x31, 0x54, 0x72, 0x75, 0x73, 0x74, 0x77, 0x61 +.byte 0x76, 0x65, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x45, 0x43, 0x43, 0x20, 0x50, 0x33 +.byte 0x38, 0x34, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e +.byte 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07 +.byte 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62 +.byte 0x00, 0x04, 0x6b, 0xda, 0x0d, 0x75, 0x35, 0x08, 0x31, 0x47, 0x05, 0xae, 0x45, 0x99, 0x55, 0xf1 +.byte 0x11, 0x13, 0x2e, 0x4a, 0xf8, 0x10, 0x31, 0x23, 0xa3, 0x7e, 0x83, 0xd3, 0x7f, 0x28, 0x08, 0x3a +.byte 0x26, 0x1a, 0x3a, 0xcf, 0x97, 0x82, 0x1f, 0x80, 0xb7, 0x27, 0x09, 0x8f, 0xd1, 0x8e, 0x30, 0xc4 +.byte 0x0a, 0x9b, 0x0e, 0xac, 0x58, 0x04, 0xab, 0xf7, 0x36, 0x7d, 0x94, 0x23, 0xa4, 0x9b, 0x0a, 0x8a +.byte 0x8b, 0xab, 0xeb, 0xfd, 0x39, 0x25, 0x66, 0xf1, 0x5e, 0xfe, 0x8c, 0xae, 0x8d, 0x41, 0x79, 0x9d +.byte 0x09, 0x60, 0xce, 0x28, 0xa9, 0xd3, 0x8a, 0x6d, 0xf3, 0xd6, 0x45, 0xd4, 0xf2, 0x98, 0x84, 0x38 +.byte 0x65, 0xa0, 0x9b, 0x00, 0x26, 0x01, 0x30, 0x81, 0x98, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 +.byte 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13 +.byte 0x07, 0x41, 0x72, 0x69, 0x7a, 0x6f, 0x6e, 0x61, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04 +.byte 0x07, 0x13, 0x0a, 0x53, 0x63, 0x6f, 0x74, 0x74, 0x73, 0x64, 0x61, 0x6c, 0x65, 0x31, 0x25, 0x30 +.byte 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1c, 0x53, 0x74, 0x61, 0x72, 0x66, 0x69, 0x65, 0x6c +.byte 0x64, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x2c, 0x20 +.byte 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x3b, 0x30, 0x39, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x32, 0x53 +.byte 0x74, 0x61, 0x72, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65 +.byte 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61 +.byte 0x74, 0x65, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x2d, 0x20, 0x47 +.byte 0x32, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01 +.byte 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01 +.byte 0x01, 0x00, 0xd5, 0x0c, 0x3a, 0xc4, 0x2a, 0xf9, 0x4e, 0xe2, 0xf5, 0xbe, 0x19, 0x97, 0x5f, 0x8e +.byte 0x88, 0x53, 0xb1, 0x1f, 0x3f, 0xcb, 0xcf, 0x9f, 0x20, 0x13, 0x6d, 0x29, 0x3a, 0xc8, 0x0f, 0x7d +.byte 0x3c, 0xf7, 0x6b, 0x76, 0x38, 0x63, 0xd9, 0x36, 0x60, 0xa8, 0x9b, 0x5e, 0x5c, 0x00, 0x80, 0xb2 +.byte 0x2f, 0x59, 0x7f, 0xf6, 0x87, 0xf9, 0x25, 0x43, 0x86, 0xe7, 0x69, 0x1b, 0x52, 0x9a, 0x90, 0xe1 +.byte 0x71, 0xe3, 0xd8, 0x2d, 0x0d, 0x4e, 0x6f, 0xf6, 0xc8, 0x49, 0xd9, 0xb6, 0xf3, 0x1a, 0x56, 0xae +.byte 0x2b, 0xb6, 0x74, 0x14, 0xeb, 0xcf, 0xfb, 0x26, 0xe3, 0x1a, 0xba, 0x1d, 0x96, 0x2e, 0x6a, 0x3b +.byte 0x58, 0x94, 0x89, 0x47, 0x56, 0xff, 0x25, 0xa0, 0x93, 0x70, 0x53, 0x83, 0xda, 0x84, 0x74, 0x14 +.byte 0xc3, 0x67, 0x9e, 0x04, 0x68, 0x3a, 0xdf, 0x8e, 0x40, 0x5a, 0x1d, 0x4a, 0x4e, 0xcf, 0x43, 0x91 +.byte 0x3b, 0xe7, 0x56, 0xd6, 0x00, 0x70, 0xcb, 0x52, 0xee, 0x7b, 0x7d, 0xae, 0x3a, 0xe7, 0xbc, 0x31 +.byte 0xf9, 0x45, 0xf6, 0xc2, 0x60, 0xcf, 0x13, 0x59, 0x02, 0x2b, 0x80, 0xcc, 0x34, 0x47, 0xdf, 0xb9 +.byte 0xde, 0x90, 0x65, 0x6d, 0x02, 0xcf, 0x2c, 0x91, 0xa6, 0xa6, 0xe7, 0xde, 0x85, 0x18, 0x49, 0x7c +.byte 0x66, 0x4e, 0xa3, 0x3a, 0x6d, 0xa9, 0xb5, 0xee, 0x34, 0x2e, 0xba, 0x0d, 0x03, 0xb8, 0x33, 0xdf +.byte 0x47, 0xeb, 0xb1, 0x6b, 0x8d, 0x25, 0xd9, 0x9b, 0xce, 0x81, 0xd1, 0x45, 0x46, 0x32, 0x96, 0x70 +.byte 0x87, 0xde, 0x02, 0x0e, 0x49, 0x43, 0x85, 0xb6, 0x6c, 0x73, 0xbb, 0x64, 0xea, 0x61, 0x41, 0xac +.byte 0xc9, 0xd4, 0x54, 0xdf, 0x87, 0x2f, 0xc7, 0x22, 0xb2, 0x26, 0xcc, 0x9f, 0x59, 0x54, 0x68, 0x9f +.byte 0xfc, 0xbe, 0x2a, 0x2f, 0xc4, 0x55, 0x1c, 0x75, 0x40, 0x60, 0x17, 0x85, 0x02, 0x55, 0x39, 0x8b +.byte 0x7f, 0x05, 0x02, 0x03, 0x01, 0x00, 0x01, 0xa9, 0x00, 0x26, 0x02, 0x30, 0x81, 0xa6, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x52, 0x31, 0x0f, 0x30, 0x0d, 0x06 +.byte 0x03, 0x55, 0x04, 0x07, 0x13, 0x06, 0x41, 0x74, 0x68, 0x65, 0x6e, 0x73, 0x31, 0x44, 0x30, 0x42 +.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x3b, 0x48, 0x65, 0x6c, 0x6c, 0x65, 0x6e, 0x69, 0x63, 0x20 +.byte 0x41, 0x63, 0x61, 0x64, 0x65, 0x6d, 0x69, 0x63, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x52, 0x65, 0x73 +.byte 0x65, 0x61, 0x72, 0x63, 0x68, 0x20, 0x49, 0x6e, 0x73, 0x74, 0x69, 0x74, 0x75, 0x74, 0x69, 0x6f +.byte 0x6e, 0x73, 0x20, 0x43, 0x65, 0x72, 0x74, 0x2e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69 +.byte 0x74, 0x79, 0x31, 0x40, 0x30, 0x3e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x37, 0x48, 0x65, 0x6c +.byte 0x6c, 0x65, 0x6e, 0x69, 0x63, 0x20, 0x41, 0x63, 0x61, 0x64, 0x65, 0x6d, 0x69, 0x63, 0x20, 0x61 +.byte 0x6e, 0x64, 0x20, 0x52, 0x65, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x20, 0x49, 0x6e, 0x73, 0x74 +.byte 0x69, 0x74, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x43, 0x41, 0x20 +.byte 0x32, 0x30, 0x31, 0x35, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86 +.byte 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a +.byte 0x02, 0x82, 0x02, 0x01, 0x00, 0xc2, 0xf8, 0xa9, 0x3f, 0x1b, 0x89, 0xfc, 0x3c, 0x3c, 0x04, 0x5d +.byte 0x3d, 0x90, 0x36, 0xb0, 0x91, 0x3a, 0x79, 0x3c, 0x66, 0x5a, 0xef, 0x6d, 0x39, 0x01, 0x49, 0x1a +.byte 0xb4, 0xb7, 0xcf, 0x7f, 0x4d, 0x23, 0x53, 0xb7, 0x90, 0x00, 0xe3, 0x13, 0x2a, 0x28, 0xa6, 0x31 +.byte 0xf1, 0x91, 0x00, 0xe3, 0x28, 0xec, 0xae, 0x21, 0x41, 0xce, 0x1f, 0xda, 0xfd, 0x7d, 0x12, 0x5b +.byte 0x01, 0x83, 0x0f, 0xb9, 0xb0, 0x5f, 0x99, 0xe1, 0xf2, 0x12, 0x83, 0x80, 0x4d, 0x06, 0x3e, 0xdf +.byte 0xac, 0xaf, 0xe7, 0xa1, 0x88, 0x6b, 0x31, 0xaf, 0xf0, 0x8b, 0xd0, 0x18, 0x33, 0xb8, 0xdb, 0x45 +.byte 0x6a, 0x34, 0xf4, 0x02, 0x80, 0x24, 0x28, 0x0a, 0x02, 0x15, 0x95, 0x5e, 0x76, 0x2a, 0x0d, 0x99 +.byte 0x3a, 0x14, 0x5b, 0xf6, 0xcb, 0xcb, 0x53, 0xbc, 0x13, 0x4d, 0x01, 0x88, 0x37, 0x94, 0x25, 0x1b +.byte 0x42, 0xbc, 0x22, 0xd8, 0x8e, 0xa3, 0x96, 0x5e, 0x3a, 0xd9, 0x32, 0xdb, 0x3e, 0xe8, 0xf0, 0x10 +.byte 0x65, 0xed, 0x74, 0xe1, 0x2f, 0xa7, 0x7c, 0xaf, 0x27, 0x34, 0xbb, 0x29, 0x7d, 0x9b, 0xb6, 0xcf +.byte 0x09, 0xc8, 0xe5, 0xd3, 0x0a, 0xfc, 0x88, 0x65, 0x65, 0x74, 0x0a, 0xdc, 0x73, 0x1c, 0x5c, 0xcd +.byte 0x40, 0xb1, 0x1c, 0xd4, 0xb6, 0x84, 0x8c, 0x4c, 0x50, 0xcf, 0x68, 0x8e, 0xa8, 0x59, 0xae, 0xc2 +.byte 0x27, 0x4e, 0x82, 0xa2, 0x35, 0xdd, 0x14, 0xf4, 0x1f, 0xff, 0xb2, 0x77, 0xd5, 0x87, 0x2f, 0xaa +.byte 0x6e, 0x7d, 0x24, 0x27, 0xe7, 0xc6, 0xcb, 0x26, 0xe6, 0xe5, 0xfe, 0x67, 0x07, 0x63, 0xd8, 0x45 +.byte 0x0d, 0xdd, 0x3a, 0x59, 0x65, 0x39, 0x58, 0x7a, 0x92, 0x99, 0x72, 0x3d, 0x9c, 0x84, 0x5e, 0x88 +.byte 0x21, 0xb8, 0xd5, 0xf4, 0x2c, 0xfc, 0xd9, 0x70, 0x52, 0x4f, 0x78, 0xb8, 0xbd, 0x3c, 0x2b, 0x8b +.byte 0x95, 0x98, 0xf5, 0xb3, 0xd1, 0x68, 0xcf, 0x20, 0x14, 0x7e, 0x4c, 0x5c, 0x5f, 0xe7, 0x8b, 0xe5 +.byte 0xf5, 0x35, 0x81, 0x19, 0x37, 0xd7, 0x11, 0x08, 0xb7, 0x66, 0xbe, 0xd3, 0x4a, 0xce, 0x83, 0x57 +.byte 0x00, 0x3a, 0xc3, 0x81, 0xf8, 0x17, 0xcb, 0x92, 0x36, 0x5d, 0xd1, 0xa3, 0xd8, 0x75, 0x1b, 0xe1 +.byte 0x8b, 0x27, 0xea, 0x7a, 0x48, 0x41, 0xfd, 0x45, 0x19, 0x06, 0xad, 0x27, 0x99, 0x4e, 0xc1, 0x70 +.byte 0x47, 0xdd, 0xb5, 0x9f, 0x81, 0x53, 0x12, 0xe5, 0xb1, 0x8c, 0x48, 0x5d, 0x31, 0x43, 0x17, 0xe3 +.byte 0x8c, 0xc6, 0x7a, 0x63, 0x96, 0x4b, 0x29, 0x30, 0x4e, 0x84, 0x4e, 0x62, 0x19, 0x5e, 0x3c, 0xce +.byte 0x97, 0x90, 0xa5, 0x7f, 0x01, 0xeb, 0x9d, 0xe0, 0xf8, 0x8b, 0x89, 0xdd, 0x25, 0x98, 0x3d, 0x92 +.byte 0xb6, 0x7e, 0xef, 0xd9, 0xf1, 0x51, 0x51, 0x7d, 0x2d, 0x26, 0xc8, 0x69, 0x59, 0x61, 0xe0, 0xac +.byte 0x6a, 0xb8, 0x2a, 0x36, 0x11, 0x04, 0x7a, 0x50, 0xbd, 0x32, 0x84, 0xbe, 0x2f, 0xdc, 0x72, 0xd5 +.byte 0xd7, 0x1d, 0x16, 0x47, 0xe4, 0x47, 0x66, 0x20, 0x3f, 0xf4, 0x96, 0xc5, 0xaf, 0x8e, 0x01, 0x7a +.byte 0xa5, 0x0f, 0x7a, 0x64, 0xf5, 0x0d, 0x18, 0x87, 0xd9, 0xae, 0x88, 0xd5, 0xfa, 0x84, 0xc1, 0x3a +.byte 0xc0, 0x69, 0x28, 0x2d, 0xf2, 0x0d, 0x68, 0x51, 0xaa, 0xe3, 0xa5, 0x77, 0xc6, 0xa4, 0x90, 0x0e +.byte 0xa1, 0x37, 0x8b, 0x31, 0x23, 0x47, 0xc1, 0x09, 0x08, 0xeb, 0x6e, 0xf7, 0x78, 0x9b, 0xd7, 0x82 +.byte 0xfc, 0x84, 0x20, 0x99, 0x49, 0x19, 0xb6, 0x12, 0x46, 0xb1, 0xfb, 0x45, 0x55, 0x16, 0xa9, 0xa3 +.byte 0x65, 0xac, 0x9c, 0x07, 0x0f, 0xea, 0x6b, 0xdc, 0x1f, 0x2e, 0x06, 0x72, 0xec, 0x86, 0x88, 0x12 +.byte 0xe4, 0x2d, 0xdb, 0x5f, 0x05, 0x2f, 0xe4, 0xf0, 0x03, 0xd3, 0x26, 0x33, 0xe7, 0x80, 0xc2, 0xcd +.byte 0x42, 0xa1, 0x17, 0x34, 0x0b, 0x02, 0x03, 0x01, 0x00, 0x01, 0xaa, 0x00, 0x26, 0x01, 0x30, 0x81 +.byte 0xa7, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x48, 0x55, 0x31, 0x11 +.byte 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x08, 0x42, 0x75, 0x64, 0x61, 0x70, 0x65, 0x73 +.byte 0x74, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0c, 0x4e, 0x65, 0x74, 0x4c +.byte 0x6f, 0x63, 0x6b, 0x20, 0x4b, 0x66, 0x74, 0x2e, 0x31, 0x37, 0x30, 0x35, 0x06, 0x03, 0x55, 0x04 +.byte 0x0b, 0x0c, 0x2e, 0x54, 0x61, 0x6e, 0xc3, 0xba, 0x73, 0xc3, 0xad, 0x74, 0x76, 0xc3, 0xa1, 0x6e +.byte 0x79, 0x6b, 0x69, 0x61, 0x64, 0xc3, 0xb3, 0x6b, 0x20, 0x28, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66 +.byte 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73 +.byte 0x29, 0x31, 0x35, 0x30, 0x33, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x2c, 0x4e, 0x65, 0x74, 0x4c +.byte 0x6f, 0x63, 0x6b, 0x20, 0x41, 0x72, 0x61, 0x6e, 0x79, 0x20, 0x28, 0x43, 0x6c, 0x61, 0x73, 0x73 +.byte 0x20, 0x47, 0x6f, 0x6c, 0x64, 0x29, 0x20, 0x46, 0xc5, 0x91, 0x74, 0x61, 0x6e, 0xc3, 0xba, 0x73 +.byte 0xc3, 0xad, 0x74, 0x76, 0xc3, 0xa1, 0x6e, 0x79, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09 +.byte 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00 +.byte 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xc4, 0x24, 0x5e, 0x73, 0xbe, 0x4b, 0x6d +.byte 0x14, 0xc3, 0xa1, 0xf4, 0xe3, 0x97, 0x90, 0x6e, 0xd2, 0x30, 0x45, 0x1e, 0x3c, 0xee, 0x67, 0xd9 +.byte 0x64, 0xe0, 0x1a, 0x8a, 0x7f, 0xca, 0x30, 0xca, 0x83, 0xe3, 0x20, 0xc1, 0xe3, 0xf4, 0x3a, 0xd3 +.byte 0x94, 0x5f, 0x1a, 0x7c, 0x5b, 0x6d, 0xbf, 0x30, 0x4f, 0x84, 0x27, 0xf6, 0x9f, 0x1f, 0x49, 0xbc +.byte 0xc6, 0x99, 0x0a, 0x90, 0xf2, 0x0f, 0xf5, 0x7f, 0x43, 0x84, 0x37, 0x63, 0x51, 0x8b, 0x7a, 0xa5 +.byte 0x70, 0xfc, 0x7a, 0x58, 0xcd, 0x8e, 0x9b, 0xed, 0xc3, 0x46, 0x6c, 0x84, 0x70, 0x5d, 0xda, 0xf3 +.byte 0x01, 0x90, 0x23, 0xfc, 0x4e, 0x30, 0xa9, 0x7e, 0xe1, 0x27, 0x63, 0xe7, 0xed, 0x64, 0x3c, 0xa0 +.byte 0xb8, 0xc9, 0x33, 0x63, 0xfe, 0x16, 0x90, 0xff, 0xb0, 0xb8, 0xfd, 0xd7, 0xa8, 0xc0, 0xc0, 0x94 +.byte 0x43, 0x0b, 0xb6, 0xd5, 0x59, 0xa6, 0x9e, 0x56, 0xd0, 0x24, 0x1f, 0x70, 0x79, 0xaf, 0xdb, 0x39 +.byte 0x54, 0x0d, 0x65, 0x75, 0xd9, 0x15, 0x41, 0x94, 0x01, 0xaf, 0x5e, 0xec, 0xf6, 0x8d, 0xf1, 0xff +.byte 0xad, 0x64, 0xfe, 0x20, 0x9a, 0xd7, 0x5c, 0xeb, 0xfe, 0xa6, 0x1f, 0x08, 0x64, 0xa3, 0x8b, 0x76 +.byte 0x55, 0xad, 0x1e, 0x3b, 0x28, 0x60, 0x2e, 0x87, 0x25, 0xe8, 0xaa, 0xaf, 0x1f, 0xc6, 0x64, 0x46 +.byte 0x20, 0xb7, 0x70, 0x7f, 0x3c, 0xde, 0x48, 0xdb, 0x96, 0x53, 0xb7, 0x39, 0x77, 0xe4, 0x1a, 0xe2 +.byte 0xc7, 0x16, 0x84, 0x76, 0x97, 0x5b, 0x2f, 0xbb, 0x19, 0x15, 0x85, 0xf8, 0x69, 0x85, 0xf5, 0x99 +.byte 0xa7, 0xa9, 0xf2, 0x34, 0xa7, 0xa9, 0xb6, 0xa6, 0x03, 0xfc, 0x6f, 0x86, 0x3d, 0x54, 0x7c, 0x76 +.byte 0x04, 0x9b, 0x6b, 0xf9, 0x40, 0x5d, 0x00, 0x34, 0xc7, 0x2e, 0x99, 0x75, 0x9d, 0xe5, 0x88, 0x03 +.byte 0xaa, 0x4d, 0xf8, 0x03, 0xd2, 0x42, 0x76, 0xc0, 0x1b, 0x02, 0x03, 0x00, 0xa8, 0x8b, 0xad, 0x00 +.byte 0x78, 0x00, 0x30, 0x81, 0xaa, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 +.byte 0x47, 0x52, 0x31, 0x0f, 0x30, 0x0d, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x06, 0x41, 0x74, 0x68 +.byte 0x65, 0x6e, 0x73, 0x31, 0x44, 0x30, 0x42, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x3b, 0x48, 0x65 +.byte 0x6c, 0x6c, 0x65, 0x6e, 0x69, 0x63, 0x20, 0x41, 0x63, 0x61, 0x64, 0x65, 0x6d, 0x69, 0x63, 0x20 +.byte 0x61, 0x6e, 0x64, 0x20, 0x52, 0x65, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x20, 0x49, 0x6e, 0x73 +.byte 0x74, 0x69, 0x74, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x43, 0x65, 0x72, 0x74, 0x2e, 0x20 +.byte 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x31, 0x44, 0x30, 0x42, 0x06, 0x03, 0x55 +.byte 0x04, 0x03, 0x13, 0x3b, 0x48, 0x65, 0x6c, 0x6c, 0x65, 0x6e, 0x69, 0x63, 0x20, 0x41, 0x63, 0x61 +.byte 0x64, 0x65, 0x6d, 0x69, 0x63, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x52, 0x65, 0x73, 0x65, 0x61, 0x72 +.byte 0x63, 0x68, 0x20, 0x49, 0x6e, 0x73, 0x74, 0x69, 0x74, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20 +.byte 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x43, 0x41, 0x20, 0x32, 0x30, 0x31, 0x35, 0x30 +.byte 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81 +.byte 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x92, 0xa0, 0x41, 0xe8, 0x4b, 0x82, 0x84, 0x5c, 0xe2 +.byte 0xf8, 0x31, 0x11, 0x99, 0x86, 0x64, 0x4e, 0x09, 0x25, 0x2f, 0x9d, 0x41, 0x2f, 0x0a, 0xae, 0x35 +.byte 0x4f, 0x74, 0x95, 0xb2, 0x51, 0x64, 0x6b, 0x8d, 0x6b, 0xe6, 0x3f, 0x70, 0x95, 0xf0, 0x05, 0x44 +.byte 0x47, 0xa6, 0x72, 0x38, 0x50, 0x76, 0x95, 0x02, 0x5a, 0x8e, 0xae, 0x28, 0x9e, 0xf9, 0x2d, 0x4e +.byte 0x99, 0xef, 0x2c, 0x48, 0x6f, 0x4c, 0x25, 0x29, 0xe8, 0xd1, 0x71, 0x5b, 0xdf, 0x1d, 0xc1, 0x75 +.byte 0x37, 0xb4, 0xd7, 0xfa, 0x7b, 0x7a, 0x42, 0x9c, 0x6a, 0x0a, 0x56, 0x5a, 0x7c, 0x69, 0x0b, 0xaa +.byte 0x80, 0x09, 0x24, 0x6c, 0x7e, 0xc1, 0x46, 0xb3, 0x00, 0x26, 0x01, 0x30, 0x81, 0xb0, 0x31, 0x0b +.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x16, 0x30, 0x14, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0d, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2c, 0x20, 0x49 +.byte 0x6e, 0x63, 0x2e, 0x31, 0x39, 0x30, 0x37, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x30, 0x77, 0x77 +.byte 0x77, 0x2e, 0x65, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2e, 0x6e, 0x65, 0x74, 0x2f, 0x43, 0x50 +.byte 0x53, 0x20, 0x69, 0x73, 0x20, 0x69, 0x6e, 0x63, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x65 +.byte 0x64, 0x20, 0x62, 0x79, 0x20, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x31, 0x1f +.byte 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x16, 0x28, 0x63, 0x29, 0x20, 0x32, 0x30, 0x30 +.byte 0x36, 0x20, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31 +.byte 0x2d, 0x30, 0x2b, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x24, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73 +.byte 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61 +.byte 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x82 +.byte 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05 +.byte 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xb6 +.byte 0x95, 0xb6, 0x43, 0x42, 0xfa, 0xc6, 0x6d, 0x2a, 0x6f, 0x48, 0xdf, 0x94, 0x4c, 0x39, 0x57, 0x05 +.byte 0xee, 0xc3, 0x79, 0x11, 0x41, 0x68, 0x36, 0xed, 0xec, 0xfe, 0x9a, 0x01, 0x8f, 0xa1, 0x38, 0x28 +.byte 0xfc, 0xf7, 0x10, 0x46, 0x66, 0x2e, 0x4d, 0x1e, 0x1a, 0xb1, 0x1a, 0x4e, 0xc6, 0xd1, 0xc0, 0x95 +.byte 0x88, 0xb0, 0xc9, 0xff, 0x31, 0x8b, 0x33, 0x03, 0xdb, 0xb7, 0x83, 0x7b, 0x3e, 0x20, 0x84, 0x5e +.byte 0xed, 0xb2, 0x56, 0x28, 0xa7, 0xf8, 0xe0, 0xb9, 0x40, 0x71, 0x37, 0xc5, 0xcb, 0x47, 0x0e, 0x97 +.byte 0x2a, 0x68, 0xc0, 0x22, 0x95, 0x62, 0x15, 0xdb, 0x47, 0xd9, 0xf5, 0xd0, 0x2b, 0xff, 0x82, 0x4b +.byte 0xc9, 0xad, 0x3e, 0xde, 0x4c, 0xdb, 0x90, 0x80, 0x50, 0x3f, 0x09, 0x8a, 0x84, 0x00, 0xec, 0x30 +.byte 0x0a, 0x3d, 0x18, 0xcd, 0xfb, 0xfd, 0x2a, 0x59, 0x9a, 0x23, 0x95, 0x17, 0x2c, 0x45, 0x9e, 0x1f +.byte 0x6e, 0x43, 0x79, 0x6d, 0x0c, 0x5c, 0x98, 0xfe, 0x48, 0xa7, 0xc5, 0x23, 0x47, 0x5c, 0x5e, 0xfd +.byte 0x6e, 0xe7, 0x1e, 0xb4, 0xf6, 0x68, 0x45, 0xd1, 0x86, 0x83, 0x5b, 0xa2, 0x8a, 0x8d, 0xb1, 0xe3 +.byte 0x29, 0x80, 0xfe, 0x25, 0x71, 0x88, 0xad, 0xbe, 0xbc, 0x8f, 0xac, 0x52, 0x96, 0x4b, 0xaa, 0x51 +.byte 0x8d, 0xe4, 0x13, 0x31, 0x19, 0xe8, 0x4e, 0x4d, 0x9f, 0xdb, 0xac, 0xb3, 0x6a, 0xd5, 0xbc, 0x39 +.byte 0x54, 0x71, 0xca, 0x7a, 0x7a, 0x7f, 0x90, 0xdd, 0x7d, 0x1d, 0x80, 0xd9, 0x81, 0xbb, 0x59, 0x26 +.byte 0xc2, 0x11, 0xfe, 0xe6, 0x93, 0xe2, 0xf7, 0x80, 0xe4, 0x65, 0xfb, 0x34, 0x37, 0x0e, 0x29, 0x80 +.byte 0x70, 0x4d, 0xaf, 0x38, 0x86, 0x2e, 0x9e, 0x7f, 0x57, 0xaf, 0x9e, 0x17, 0xae, 0xeb, 0x1c, 0xcb +.byte 0x28, 0x21, 0x5f, 0xb6, 0x1c, 0xd8, 0xe7, 0xa2, 0x04, 0x22, 0xf9, 0xd3, 0xda, 0xd8, 0xcb, 0x02 +.byte 0x03, 0x01, 0x00, 0x01, 0xc1, 0x00, 0x26, 0x01, 0x30, 0x81, 0xbe, 0x31, 0x0b, 0x30, 0x09, 0x06 +.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x16, 0x30, 0x14, 0x06, 0x03, 0x55, 0x04 +.byte 0x0a, 0x13, 0x0d, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e +.byte 0x31, 0x28, 0x30, 0x26, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1f, 0x53, 0x65, 0x65, 0x20, 0x77 +.byte 0x77, 0x77, 0x2e, 0x65, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2e, 0x6e, 0x65, 0x74, 0x2f, 0x6c +.byte 0x65, 0x67, 0x61, 0x6c, 0x2d, 0x74, 0x65, 0x72, 0x6d, 0x73, 0x31, 0x39, 0x30, 0x37, 0x06, 0x03 +.byte 0x55, 0x04, 0x0b, 0x13, 0x30, 0x28, 0x63, 0x29, 0x20, 0x32, 0x30, 0x30, 0x39, 0x20, 0x45, 0x6e +.byte 0x74, 0x72, 0x75, 0x73, 0x74, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x20, 0x2d, 0x20, 0x66, 0x6f +.byte 0x72, 0x20, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x20, 0x75, 0x73, 0x65 +.byte 0x20, 0x6f, 0x6e, 0x6c, 0x79, 0x31, 0x32, 0x30, 0x30, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x29 +.byte 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72 +.byte 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f +.byte 0x72, 0x69, 0x74, 0x79, 0x20, 0x2d, 0x20, 0x47, 0x32, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06 +.byte 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f +.byte 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xba, 0x84, 0xb6, 0x72, 0xdb, 0x9e +.byte 0x0c, 0x6b, 0xe2, 0x99, 0xe9, 0x30, 0x01, 0xa7, 0x76, 0xea, 0x32, 0xb8, 0x95, 0x41, 0x1a, 0xc9 +.byte 0xda, 0x61, 0x4e, 0x58, 0x72, 0xcf, 0xfe, 0xf6, 0x82, 0x79, 0xbf, 0x73, 0x61, 0x06, 0x0a, 0xa5 +.byte 0x27, 0xd8, 0xb3, 0x5f, 0xd3, 0x45, 0x4e, 0x1c, 0x72, 0xd6, 0x4e, 0x32, 0xf2, 0x72, 0x8a, 0x0f +.byte 0xf7, 0x83, 0x19, 0xd0, 0x6a, 0x80, 0x80, 0x00, 0x45, 0x1e, 0xb0, 0xc7, 0xe7, 0x9a, 0xbf, 0x12 +.byte 0x57, 0x27, 0x1c, 0xa3, 0x68, 0x2f, 0x0a, 0x87, 0xbd, 0x6a, 0x6b, 0x0e, 0x5e, 0x65, 0xf3, 0x1c +.byte 0x77, 0xd5, 0xd4, 0x85, 0x8d, 0x70, 0x21, 0xb4, 0xb3, 0x32, 0xe7, 0x8b, 0xa2, 0xd5, 0x86, 0x39 +.byte 0x02, 0xb1, 0xb8, 0xd2, 0x47, 0xce, 0xe4, 0xc9, 0x49, 0xc4, 0x3b, 0xa7, 0xde, 0xfb, 0x54, 0x7d +.byte 0x57, 0xbe, 0xf0, 0xe8, 0x6e, 0xc2, 0x79, 0xb2, 0x3a, 0x0b, 0x55, 0xe2, 0x50, 0x98, 0x16, 0x32 +.byte 0x13, 0x5c, 0x2f, 0x78, 0x56, 0xc1, 0xc2, 0x94, 0xb3, 0xf2, 0x5a, 0xe4, 0x27, 0x9a, 0x9f, 0x24 +.byte 0xd7, 0xc6, 0xec, 0xd0, 0x9b, 0x25, 0x82, 0xe3, 0xcc, 0xc2, 0xc4, 0x45, 0xc5, 0x8c, 0x97, 0x7a +.byte 0x06, 0x6b, 0x2a, 0x11, 0x9f, 0xa9, 0x0a, 0x6e, 0x48, 0x3b, 0x6f, 0xdb, 0xd4, 0x11, 0x19, 0x42 +.byte 0xf7, 0x8f, 0x07, 0xbf, 0xf5, 0x53, 0x5f, 0x9c, 0x3e, 0xf4, 0x17, 0x2c, 0xe6, 0x69, 0xac, 0x4e +.byte 0x32, 0x4c, 0x62, 0x77, 0xea, 0xb7, 0xe8, 0xe5, 0xbb, 0x34, 0xbc, 0x19, 0x8b, 0xae, 0x9c, 0x51 +.byte 0xe7, 0xb7, 0x7e, 0xb5, 0x53, 0xb1, 0x33, 0x22, 0xe5, 0x6d, 0xcf, 0x70, 0x3c, 0x1a, 0xfa, 0xe2 +.byte 0x9b, 0x67, 0xb6, 0x83, 0xf4, 0x8d, 0xa5, 0xaf, 0x62, 0x4c, 0x4d, 0xe0, 0x58, 0xac, 0x64, 0x34 +.byte 0x12, 0x03, 0xf8, 0xb6, 0x8d, 0x94, 0x63, 0x24, 0xa4, 0x71, 0x02, 0x03, 0x01, 0x00, 0x01, 0xc2 +.byte 0x00, 0x78, 0x00, 0x30, 0x81, 0xbf, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 +.byte 0x02, 0x55, 0x53, 0x31, 0x16, 0x30, 0x14, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0d, 0x45, 0x6e +.byte 0x74, 0x72, 0x75, 0x73, 0x74, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x28, 0x30, 0x26, 0x06 +.byte 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1f, 0x53, 0x65, 0x65, 0x20, 0x77, 0x77, 0x77, 0x2e, 0x65, 0x6e +.byte 0x74, 0x72, 0x75, 0x73, 0x74, 0x2e, 0x6e, 0x65, 0x74, 0x2f, 0x6c, 0x65, 0x67, 0x61, 0x6c, 0x2d +.byte 0x74, 0x65, 0x72, 0x6d, 0x73, 0x31, 0x39, 0x30, 0x37, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x30 +.byte 0x28, 0x63, 0x29, 0x20, 0x32, 0x30, 0x31, 0x32, 0x20, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74 +.byte 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x20, 0x2d, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x61, 0x75, 0x74 +.byte 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x20, 0x75, 0x73, 0x65, 0x20, 0x6f, 0x6e, 0x6c, 0x79 +.byte 0x31, 0x33, 0x30, 0x31, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x2a, 0x45, 0x6e, 0x74, 0x72, 0x75 +.byte 0x73, 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63 +.byte 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20 +.byte 0x2d, 0x20, 0x45, 0x43, 0x31, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d +.byte 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x84, 0x13, 0xc9 +.byte 0xd0, 0xba, 0x6d, 0x41, 0x7b, 0xe2, 0x6c, 0xd0, 0xeb, 0x55, 0x5f, 0x66, 0x02, 0x1a, 0x24, 0xf4 +.byte 0x5b, 0x89, 0x69, 0x47, 0xe3, 0xb8, 0xc2, 0x7d, 0xf1, 0xf2, 0x02, 0xc5, 0x9f, 0xa0, 0xf6, 0x5b +.byte 0xd5, 0x8b, 0x06, 0x19, 0x86, 0x4f, 0x53, 0x10, 0x6d, 0x07, 0x24, 0x27, 0xa1, 0xa0, 0xf8, 0xd5 +.byte 0x47, 0x19, 0x61, 0x4c, 0x7d, 0xca, 0x93, 0x27, 0xea, 0x74, 0x0c, 0xef, 0x6f, 0x96, 0x09, 0xfe +.byte 0x63, 0xec, 0x70, 0x5d, 0x36, 0xad, 0x67, 0x77, 0xae, 0xc9, 0x9d, 0x7c, 0x55, 0x44, 0x3a, 0xa2 +.byte 0x63, 0x51, 0x1f, 0xf5, 0xe3, 0x62, 0xd4, 0xa9, 0x47, 0x07, 0x3e, 0xcc, 0x20, 0xd5, 0x00, 0x26 +.byte 0x01, 0x30, 0x81, 0xd2, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x54 +.byte 0x52, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x0f, 0x47, 0x65, 0x62, 0x7a +.byte 0x65, 0x20, 0x2d, 0x20, 0x4b, 0x6f, 0x63, 0x61, 0x65, 0x6c, 0x69, 0x31, 0x42, 0x30, 0x40, 0x06 +.byte 0x03, 0x55, 0x04, 0x0a, 0x13, 0x39, 0x54, 0x75, 0x72, 0x6b, 0x69, 0x79, 0x65, 0x20, 0x42, 0x69 +.byte 0x6c, 0x69, 0x6d, 0x73, 0x65, 0x6c, 0x20, 0x76, 0x65, 0x20, 0x54, 0x65, 0x6b, 0x6e, 0x6f, 0x6c +.byte 0x6f, 0x6a, 0x69, 0x6b, 0x20, 0x41, 0x72, 0x61, 0x73, 0x74, 0x69, 0x72, 0x6d, 0x61, 0x20, 0x4b +.byte 0x75, 0x72, 0x75, 0x6d, 0x75, 0x20, 0x2d, 0x20, 0x54, 0x55, 0x42, 0x49, 0x54, 0x41, 0x4b, 0x31 +.byte 0x2d, 0x30, 0x2b, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x24, 0x4b, 0x61, 0x6d, 0x75, 0x20, 0x53 +.byte 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x6b, 0x61, 0x73, 0x79, 0x6f, 0x6e, 0x20, 0x4d, 0x65, 0x72 +.byte 0x6b, 0x65, 0x7a, 0x69, 0x20, 0x2d, 0x20, 0x4b, 0x61, 0x6d, 0x75, 0x20, 0x53, 0x4d, 0x31, 0x36 +.byte 0x30, 0x34, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x2d, 0x54, 0x55, 0x42, 0x49, 0x54, 0x41, 0x4b +.byte 0x20, 0x4b, 0x61, 0x6d, 0x75, 0x20, 0x53, 0x4d, 0x20, 0x53, 0x53, 0x4c, 0x20, 0x4b, 0x6f, 0x6b +.byte 0x20, 0x53, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x6b, 0x61, 0x73, 0x69, 0x20, 0x2d, 0x20, 0x53 +.byte 0x75, 0x72, 0x75, 0x6d, 0x20, 0x31, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86 +.byte 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82 +.byte 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xaf, 0x75, 0x30, 0x33, 0xaa, 0xbb, 0x6b, 0xd3, 0x99 +.byte 0x2c, 0x12, 0x37, 0x84, 0xd9, 0x8d, 0x7b, 0x97, 0x80, 0xd3, 0x6e, 0xe7, 0xff, 0x9b, 0x50, 0x95 +.byte 0x3e, 0x90, 0x95, 0x56, 0x42, 0xd7, 0x19, 0x7c, 0x26, 0x84, 0x8d, 0x92, 0xfa, 0x01, 0x1d, 0x3a +.byte 0x0f, 0xe2, 0x64, 0x38, 0xb7, 0x8c, 0xbc, 0xe8, 0x88, 0xf9, 0x8b, 0x24, 0xab, 0x2e, 0xa3, 0xf5 +.byte 0x37, 0xe4, 0x40, 0x8e, 0x18, 0x25, 0x79, 0x83, 0x75, 0x1f, 0x3b, 0xff, 0x6c, 0xa8, 0xc5, 0xc6 +.byte 0x56, 0xf8, 0xb4, 0xed, 0x8a, 0x44, 0xa3, 0xab, 0x6c, 0x4c, 0xfc, 0x1d, 0xd0, 0xdc, 0xef, 0x68 +.byte 0xbd, 0xcf, 0xe4, 0xaa, 0xce, 0xf0, 0x55, 0xf7, 0xa2, 0x34, 0xd4, 0x83, 0x6b, 0x37, 0x7c, 0x1c +.byte 0xc2, 0xfe, 0xb5, 0x03, 0xec, 0x57, 0xce, 0xbc, 0xb4, 0xb5, 0xc5, 0xed, 0x00, 0x0f, 0x53, 0x37 +.byte 0x2a, 0x4d, 0xf4, 0x4f, 0x0c, 0x83, 0xfb, 0x86, 0xcf, 0xcb, 0xfe, 0x8c, 0x4e, 0xbd, 0x87, 0xf9 +.byte 0xa7, 0x8b, 0x21, 0x57, 0x9c, 0x7a, 0xdf, 0x03, 0x67, 0x89, 0x2c, 0x9d, 0x97, 0x61, 0xa7, 0x10 +.byte 0xb8, 0x55, 0x90, 0x7f, 0x0e, 0x2d, 0x27, 0x38, 0x74, 0xdf, 0xe7, 0xfd, 0xda, 0x4e, 0x12, 0xe3 +.byte 0x4d, 0x15, 0x22, 0x02, 0xc8, 0xe0, 0xe0, 0xfc, 0x0f, 0xad, 0x8a, 0xd7, 0xc9, 0x54, 0x50, 0xcc +.byte 0x3b, 0x0f, 0xca, 0x16, 0x80, 0x84, 0xd0, 0x51, 0x56, 0xc3, 0x8e, 0x56, 0x7f, 0x89, 0x22, 0x33 +.byte 0x2f, 0xe6, 0x85, 0x0a, 0xbd, 0xa5, 0xa8, 0x1b, 0x36, 0xde, 0xd3, 0xdc, 0x2c, 0x6d, 0x3b, 0xc7 +.byte 0x13, 0xbd, 0x59, 0x23, 0x2c, 0xe6, 0xe5, 0xa4, 0xf7, 0xd8, 0x0b, 0xed, 0xea, 0x90, 0x40, 0x44 +.byte 0xa8, 0x95, 0xbb, 0x93, 0xd5, 0xd0, 0x80, 0x34, 0xb6, 0x46, 0x78, 0x0e, 0x1f, 0x00, 0x93, 0x46 +.byte 0xe1, 0xee, 0xe9, 0xf9, 0xec, 0x4f, 0x17, 0x02, 0x03, 0x01, 0x00, 0x01 + +.global _binary_x509_crt_bundle_end +_binary_x509_crt_bundle_end: /* for objcopy compatibility */ + + +.global x509_crt_bundle_length +x509_crt_bundle_length: +.long 67532 + +#if defined (__linux__) +.section .note.GNU-stack,"",@progbits +#endif diff --git a/main/CMakeLists.txt b/main/CMakeLists.txt new file mode 100644 index 0000000..c467b1b --- /dev/null +++ b/main/CMakeLists.txt @@ -0,0 +1,12 @@ +idf_component_register( + SRCS + "main.c" + "modbus_memory.c" + "modbus_points.c" + "modbus_rtu.c" + "config_store.c" + INCLUDE_DIRS + "." +) + +spiffs_create_partition_image(spiffs ../spiffs FLASH_IN_PROJECT) \ No newline at end of file diff --git a/main/config_store.c b/main/config_store.c new file mode 100644 index 0000000..bf3c260 --- /dev/null +++ b/main/config_store.c @@ -0,0 +1,407 @@ +#include "config_store.h" + +#include +#include +#include +#include + +static void trim_whitespace(char *s) +{ + char *start; + char *end; + + if (s == NULL || *s == '\0') + return; + + start = s; + while (*start != '\0' && isspace((unsigned char)*start)) + start++; + + if (start != s) + memmove(s, start, strlen(start) + 1U); + + if (*s == '\0') + return; + + end = s + strlen(s) - 1; + while (end >= s && isspace((unsigned char)*end)) + { + *end = '\0'; + end--; + } +} + +static bool str_ieq(const char *a, const char *b) +{ + unsigned char ca, cb; + + if (a == NULL || b == NULL) + return false; + + while (*a != '\0' && *b != '\0') + { + ca = (unsigned char)tolower((unsigned char)*a); + cb = (unsigned char)tolower((unsigned char)*b); + + if (ca != cb) + return false; + + a++; + b++; + } + + return (*a == '\0' && *b == '\0'); +} + +static bool parse_bool(const char *s, bool *out) +{ + if (s == NULL || out == NULL) + return false; + + if (str_ieq(s, "true") || str_ieq(s, "yes") || strcmp(s, "1") == 0) + { + *out = true; + return true; + } + + if (str_ieq(s, "false") || str_ieq(s, "no") || strcmp(s, "0") == 0) + { + *out = false; + return true; + } + + return false; +} + +static bool parse_u32(const char *s, uint32_t *out) +{ + char *endptr = NULL; + unsigned long v; + + if (s == NULL || out == NULL || *s == '\0') + return false; + + v = strtoul(s, &endptr, 10); + if (endptr == NULL || *endptr != '\0') + return false; + + *out = (uint32_t)v; + return true; +} + +static bool parse_i32(const char *s, int *out) +{ + char *endptr = NULL; + long v; + + if (s == NULL || out == NULL || *s == '\0') + return false; + + v = strtol(s, &endptr, 10); + if (endptr == NULL || *endptr != '\0') + return false; + + *out = (int)v; + return true; +} + +static void copy_str(char *dst, size_t dst_size, const char *src) +{ + if (dst == NULL || dst_size == 0U) + return; + + if (src == NULL) + src = ""; + + strncpy(dst, src, dst_size - 1U); + dst[dst_size - 1U] = '\0'; +} + +static int parse_device_section_index(const char *section) +{ + unsigned long idx; + char *endptr = NULL; + + if (section == NULL) + return -1; + + if (strlen(section) < 8U) + return -1; + + if (tolower((unsigned char)section[0]) != 'd' || + tolower((unsigned char)section[1]) != 'e' || + tolower((unsigned char)section[2]) != 'v' || + tolower((unsigned char)section[3]) != 'i' || + tolower((unsigned char)section[4]) != 'c' || + tolower((unsigned char)section[5]) != 'e') + { + return -1; + } + + if (section[6] != ' ') + return -1; + + idx = strtoul(§ion[7], &endptr, 10); + if (endptr == NULL || *endptr != '\0') + return -1; + + if (idx == 0UL || idx > MAX_VIRTUAL_DEVICES) + return -1; + + return (int)(idx - 1UL); +} + +static bool parse_parity(const char *s, modbus_rtu_parity_t *out) +{ + if (s == NULL || out == NULL) + return false; + + if (str_ieq(s, "none")) + { + *out = MB_RTU_PARITY_NONE; + return true; + } + + if (str_ieq(s, "even")) + { + *out = MB_RTU_PARITY_EVEN; + return true; + } + + if (str_ieq(s, "odd")) + { + *out = MB_RTU_PARITY_ODD; + return true; + } + + return false; +} + +static void set_device_defaults(virtual_device_settings_t *dev, uint8_t index) +{ + char default_name[DEVICE_NAME_MAX_LEN]; + + if (dev == NULL) + return; + + memset(dev, 0, sizeof(*dev)); + + dev->enabled = false; + dev->unit_id = (uint8_t)(index + 1U); + + snprintf(default_name, sizeof(default_name), "Device_%u", (unsigned)(index + 1U)); + copy_str(dev->name, sizeof(dev->name), default_name); + dev->csv[0] = '\0'; +} + +void config_store_set_defaults(device_config_t *cfg) +{ + size_t i; + + if (cfg == NULL) + return; + + memset(cfg, 0, sizeof(*cfg)); + + cfg->rtu.baud_rate = 19200U; + cfg->rtu.parity = MB_RTU_PARITY_NONE; + cfg->rtu.stop_bits = 1U; + cfg->rtu.uart_num = 1U; + cfg->rtu.tx_pin = 17; + cfg->rtu.rx_pin = 16; + cfg->rtu.de_pin = -1; /* shield AUTO mode */ + + cfg->modbus.device_count = 1U; + + for (i = 0; i < MAX_VIRTUAL_DEVICES; i++) + set_device_defaults(&cfg->devices[i], (uint8_t)i); +} + +bool config_store_load(const char *filename, device_config_t *cfg) +{ + FILE *fp; + char line[256]; + char section[32]; + + if (filename == NULL || cfg == NULL) + return false; + + config_store_set_defaults(cfg); + memset(section, 0, sizeof(section)); + + fp = fopen(filename, "r"); + if (fp == NULL) + return false; + + while (fgets(line, sizeof(line), fp) != NULL) + { + char *eq; + char *key; + char *value; + + line[strcspn(line, "\r\n")] = '\0'; + trim_whitespace(line); + + if (line[0] == '\0') + continue; + + if (line[0] == ';' || line[0] == '#') + continue; + + if (line[0] == '[') + { + size_t len = strlen(line); + + if (len >= 3U && line[len - 1U] == ']') + { + line[len - 1U] = '\0'; + copy_str(section, sizeof(section), &line[1]); + trim_whitespace(section); + } + continue; + } + + eq = strchr(line, '='); + if (eq == NULL) + continue; + + *eq = '\0'; + key = line; + value = eq + 1; + + trim_whitespace(key); + trim_whitespace(value); + + if (str_ieq(section, "rtu")) + { + uint32_t v; + int iv; + modbus_rtu_parity_t parity; + + if (str_ieq(key, "baud_rate")) + { + if (parse_u32(value, &v) && v > 0U) + cfg->rtu.baud_rate = v; + } + else if (str_ieq(key, "parity")) + { + if (parse_parity(value, &parity)) + cfg->rtu.parity = parity; + } + else if (str_ieq(key, "stop_bits")) + { + if (parse_u32(value, &v) && (v == 1U || v == 2U)) + cfg->rtu.stop_bits = (uint8_t)v; + } + else if (str_ieq(key, "uart_num")) + { + if (parse_u32(value, &v) && v <= 2U) + cfg->rtu.uart_num = (uint8_t)v; + } + else if (str_ieq(key, "tx_pin")) + { + if (parse_i32(value, &iv)) + cfg->rtu.tx_pin = iv; + } + else if (str_ieq(key, "rx_pin")) + { + if (parse_i32(value, &iv)) + cfg->rtu.rx_pin = iv; + } + else if (str_ieq(key, "de_pin")) + { + if (parse_i32(value, &iv)) + cfg->rtu.de_pin = iv; + } + } + else if (str_ieq(section, "modbus")) + { + uint32_t v; + + if (str_ieq(key, "device_count")) + { + if (parse_u32(value, &v) && v > 0U) + { + if (v > MAX_VIRTUAL_DEVICES) + cfg->modbus.device_count = MAX_VIRTUAL_DEVICES; + else + cfg->modbus.device_count = (uint8_t)v; + } + } + } + else + { + int dev_index = parse_device_section_index(section); + + if (dev_index >= 0) + { + virtual_device_settings_t *dev = &cfg->devices[dev_index]; + uint32_t v; + + if (str_ieq(key, "enabled")) + { + bool b; + if (parse_bool(value, &b)) + dev->enabled = b; + } + else if (str_ieq(key, "unit_id")) + { + if (parse_u32(value, &v) && v > 0U && v <= 247U) + dev->unit_id = (uint8_t)v; + } + else if (str_ieq(key, "name")) + { + copy_str(dev->name, sizeof(dev->name), value); + } + else if (str_ieq(key, "csv")) + { + copy_str(dev->csv, sizeof(dev->csv), value); + } + } + } + } + + fclose(fp); + + if (cfg->rtu.baud_rate == 0U) + return false; + + if (cfg->rtu.stop_bits != 1U && cfg->rtu.stop_bits != 2U) + return false; + + if (cfg->modbus.device_count == 0U || cfg->modbus.device_count > MAX_VIRTUAL_DEVICES) + return false; + + for (uint8_t i = 0; i < cfg->modbus.device_count; i++) + { + uint8_t j; + virtual_device_settings_t *dev = &cfg->devices[i]; + + if (!dev->enabled) + continue; + + if (dev->unit_id == 0U || dev->unit_id > 247U) + return false; + + if (dev->csv[0] == '\0') + return false; + + if (dev->name[0] == '\0') + { + char default_name[DEVICE_NAME_MAX_LEN]; + snprintf(default_name, sizeof(default_name), "Device_%u", (unsigned)(i + 1U)); + copy_str(dev->name, sizeof(dev->name), default_name); + } + + for (j = (uint8_t)(i + 1U); j < cfg->modbus.device_count; j++) + { + if (!cfg->devices[j].enabled) + continue; + + if (dev->unit_id == cfg->devices[j].unit_id) + return false; + } + } + + return true; +} \ No newline at end of file diff --git a/main/config_store.h b/main/config_store.h new file mode 100644 index 0000000..612f688 --- /dev/null +++ b/main/config_store.h @@ -0,0 +1,53 @@ +#ifndef CONFIG_STORE_H +#define CONFIG_STORE_H + +#include +#include +#include + +#define DEVICE_NAME_MAX_LEN 32 +#define DEVICE_CSV_MAX_LEN 64 +#define MAX_VIRTUAL_DEVICES 3 + +typedef enum +{ + MB_RTU_PARITY_NONE = 0, + MB_RTU_PARITY_EVEN, + MB_RTU_PARITY_ODD +} modbus_rtu_parity_t; + +typedef struct +{ + uint32_t baud_rate; + modbus_rtu_parity_t parity; + uint8_t stop_bits; /* 1 or 2 */ + uint8_t uart_num; /* UART_NUM_0/1/2 as integer */ + int tx_pin; + int rx_pin; + int de_pin; /* -1 if unused / auto-direction shield */ +} modbus_rtu_settings_t; + +typedef struct +{ + uint8_t device_count; +} modbus_settings_t; + +typedef struct +{ + bool enabled; + uint8_t unit_id; + char name[DEVICE_NAME_MAX_LEN]; + char csv[DEVICE_CSV_MAX_LEN]; +} virtual_device_settings_t; + +typedef struct +{ + modbus_rtu_settings_t rtu; + modbus_settings_t modbus; + virtual_device_settings_t devices[MAX_VIRTUAL_DEVICES]; +} device_config_t; + +void config_store_set_defaults(device_config_t *cfg); +bool config_store_load(const char *filename, device_config_t *cfg); + +#endif /* CONFIG_STORE_H */ \ No newline at end of file diff --git a/main/main.c b/main/main.c new file mode 100644 index 0000000..3ead7f9 --- /dev/null +++ b/main/main.c @@ -0,0 +1,931 @@ +#include +#include +#include +#include + +#include "freertos/FreeRTOS.h" +#include "freertos/task.h" + +#include "driver/uart.h" +#include "driver/gpio.h" +#include "esp_heap_caps.h" +#include "esp_log.h" +#include "esp_err.h" +#include "esp_rom_sys.h" +#include "nvs_flash.h" +#include "esp_spiffs.h" + +#include "config_store.h" +#include "modbus_memory.h" +#include "modbus_points.h" +#include "modbus_rtu.h" + +#define DEVICE_CONFIG_PATH "/spiffs/device_config.ini" +#define TAG "MODBUS_MAIN" +#define MODBUS_RX_BUF_SIZE MODBUS_RTU_MAX_ADU_LEN +#define MODBUS_TX_BUF_SIZE MODBUS_RTU_MAX_ADU_LEN + +/* Manual DE polarity: + * First try active-high: + * idle receive = 0 + * transmit = 1 + * + * If this still does not work, flip these two values: + * MANUAL_DE_TX_LEVEL 0 + * MANUAL_DE_RX_LEVEL 1 + */ +#define MANUAL_DE_TX_LEVEL 1 +#define MANUAL_DE_RX_LEVEL 0 + +static device_config_t g_device_cfg; +static modbus_rtu_ctx_t g_rtu_ctx; + +typedef struct +{ + uint8_t unit_id; + char name[DEVICE_NAME_MAX_LEN]; + char csv_path[128]; + + modbus_db_t db; + modbus_memory_t mem; +} modbus_device_t; + +static modbus_device_t *g_devices = NULL; +static size_t g_device_count = 0U; +static int g_manual_de_pin = -1; + +/* ------------------------------------------------------------ */ +/* Helpers */ +/* ------------------------------------------------------------ */ + +static bool file_exists(const char *path) +{ + FILE *fp; + + if (path == NULL) + return false; + + fp = fopen(path, "r"); + if (fp == NULL) + return false; + + fclose(fp); + return true; +} + +static void spiffs_list_files(void) +{ + DIR *dir; + struct dirent *entry; + + dir = opendir("/spiffs"); + if (dir == NULL) + { + ESP_LOGE(TAG, "Failed to open /spiffs for listing"); + return; + } + + ESP_LOGI(TAG, "----- SPIFFS file list -----"); + + while ((entry = readdir(dir)) != NULL) + { + ESP_LOGI(TAG, "SPIFFS file: %s", entry->d_name); + } + + ESP_LOGI(TAG, "----------------------------"); + + closedir(dir); +} + +/* ------------------------------------------------------------ */ +/* SPIFFS */ +/* ------------------------------------------------------------ */ + +static esp_err_t spiffs_init(void) +{ + esp_vfs_spiffs_conf_t conf = { + .base_path = "/spiffs", + .partition_label = NULL, + .max_files = 8, + .format_if_mount_failed = true + }; + + esp_err_t ret = esp_vfs_spiffs_register(&conf); + if (ret != ESP_OK) + { + ESP_LOGE(TAG, "Failed to mount SPIFFS (%s)", esp_err_to_name(ret)); + return ret; + } + + { + size_t total = 0; + size_t used = 0; + ret = esp_spiffs_info(NULL, &total, &used); + if (ret == ESP_OK) + { + ESP_LOGI(TAG, "SPIFFS mounted: total=%u used=%u", + (unsigned)total, (unsigned)used); + } + } + + return ESP_OK; +} + +/* ------------------------------------------------------------ */ +/* UART / RTU */ +/* ------------------------------------------------------------ */ + +static uart_parity_t cfg_parity_to_uart(modbus_rtu_parity_t parity) +{ + switch (parity) + { + case MB_RTU_PARITY_EVEN: + return UART_PARITY_EVEN; + + case MB_RTU_PARITY_ODD: + return UART_PARITY_ODD; + + case MB_RTU_PARITY_NONE: + default: + return UART_PARITY_DISABLE; + } +} + +static uart_stop_bits_t cfg_stop_bits_to_uart(uint8_t stop_bits) +{ + if (stop_bits == 2U) + return UART_STOP_BITS_2; + + return UART_STOP_BITS_1; +} + +static esp_err_t modbus_uart_init(const device_config_t *cfg) +{ + uart_config_t uart_cfg; + esp_err_t ret; + uart_port_t uart_num; + + if (cfg == NULL) + return ESP_ERR_INVALID_ARG; + + uart_num = (uart_port_t)cfg->rtu.uart_num; + + memset(&uart_cfg, 0, sizeof(uart_cfg)); + uart_cfg.baud_rate = (int)cfg->rtu.baud_rate; + uart_cfg.data_bits = UART_DATA_8_BITS; + uart_cfg.parity = cfg_parity_to_uart(cfg->rtu.parity); + uart_cfg.stop_bits = cfg_stop_bits_to_uart(cfg->rtu.stop_bits); + uart_cfg.flow_ctrl = UART_HW_FLOWCTRL_DISABLE; + uart_cfg.source_clk = UART_SCLK_DEFAULT; + + uart_driver_delete(uart_num); + + ret = uart_driver_install(uart_num, + MODBUS_RX_BUF_SIZE * 2, + MODBUS_TX_BUF_SIZE * 2, + 0, + NULL, + 0); + if (ret != ESP_OK) + { + ESP_LOGE(TAG, "uart_driver_install failed: %s", esp_err_to_name(ret)); + return ret; + } + + ret = uart_param_config(uart_num, &uart_cfg); + if (ret != ESP_OK) + { + ESP_LOGE(TAG, "uart_param_config failed: %s", esp_err_to_name(ret)); + return ret; + } + + /* Manual DE mode: + * do NOT hand DE pin to UART RTS here. + * TX/RX only. + */ + ret = uart_set_pin(uart_num, + cfg->rtu.tx_pin, + cfg->rtu.rx_pin, + UART_PIN_NO_CHANGE, + UART_PIN_NO_CHANGE); + if (ret != ESP_OK) + { + ESP_LOGE(TAG, "uart_set_pin failed: %s", esp_err_to_name(ret)); + return ret; + } + + ESP_LOGI(TAG, "UART normal mode enabled (manual DE control)"); + ESP_LOGI(TAG, + "RTU UART configured: uart=%u baud=%u parity=%d stop_bits=%u tx=%d rx=%d de=%d", + (unsigned)cfg->rtu.uart_num, + (unsigned)cfg->rtu.baud_rate, + (int)cfg->rtu.parity, + (unsigned)cfg->rtu.stop_bits, + cfg->rtu.tx_pin, + cfg->rtu.rx_pin, + cfg->rtu.de_pin); + + return ESP_OK; +} + +static void modbus_rtu_task(void *arg) +{ + uint8_t rx_buf[MODBUS_RX_BUF_SIZE]; + uint8_t tx_buf[MODBUS_TX_BUF_SIZE]; + + (void)arg; + + ESP_LOGI(TAG, "modbus_rtu_task started"); + + while (1) + { + int len; + size_t resp_len = 0U; + bool ok; + + len = modbus_rtu_read_frame(&g_rtu_ctx, + rx_buf, + sizeof(rx_buf), + pdMS_TO_TICKS(100)); + + if (len < 0) + { + ESP_LOGW(TAG, "RTU frame read error"); + vTaskDelay(pdMS_TO_TICKS(10)); + continue; + } + + if (len == 0) + continue; + + ok = modbus_rtu_process_request(&g_rtu_ctx, + rx_buf, + (size_t)len, + tx_buf, + sizeof(tx_buf), + &resp_len); + + if (!ok) + continue; + + if (resp_len > 0U) + { + int written; + + if (g_manual_de_pin >= 0) + { + gpio_set_level((gpio_num_t)g_manual_de_pin, MANUAL_DE_TX_LEVEL); + esp_rom_delay_us(200); + } + + written = uart_write_bytes(g_rtu_ctx.uart_num, + (const char *)tx_buf, + (uint32_t)resp_len); + + if (written < 0) + { + ESP_LOGW(TAG, "uart_write_bytes failed"); + + if (g_manual_de_pin >= 0) + gpio_set_level((gpio_num_t)g_manual_de_pin, MANUAL_DE_RX_LEVEL); + + continue; + } + + ESP_ERROR_CHECK( + uart_wait_tx_done(g_rtu_ctx.uart_num, + pdMS_TO_TICKS(100))); + + if (g_manual_de_pin >= 0) + { + esp_rom_delay_us(200); + gpio_set_level((gpio_num_t)g_manual_de_pin, MANUAL_DE_RX_LEVEL); + } + } + } +} + +/* ------------------------------------------------------------ */ +/* Override Sync Task */ +/* ------------------------------------------------------------ */ + +static void modbus_override_task(void *arg) +{ + (void)arg; + + while (1) + { + size_t d; + + for (d = 0; d < g_device_count; d++) + { + modbus_device_t *dev = &g_devices[d]; + size_t i; + + for (i = 0; i < dev->db.count; i++) + { + modbus_point_t *pt = &dev->db.points[i]; + + if (pt->is_helper) + continue; + + if (!pt->has_control_address) + continue; + + if (pt->data_type == MB_DATA_BOOL) + { + uint8_t value; + + if (modbus_memory_read_bit(&dev->mem, + modbus_points_type_to_mem(pt->control_type), + pt->control_offset, + &value)) + { + modbus_memory_write_bit(&dev->mem, + modbus_points_type_to_mem(pt->type), + pt->offset, + value); + } + } + else if (pt->data_type == MB_DATA_UINT16) + { + uint16_t value; + + if (modbus_memory_read_reg(&dev->mem, + modbus_points_type_to_mem(pt->control_type), + pt->control_offset, + &value)) + { + modbus_memory_write_reg(&dev->mem, + modbus_points_type_to_mem(pt->type), + pt->offset, + value); + } + } + else if (pt->data_type == MB_DATA_UINT32 || + pt->data_type == MB_DATA_FLOAT) + { + uint16_t w1, w2; + + if (modbus_memory_read_reg(&dev->mem, + modbus_points_type_to_mem(pt->control_type), + pt->control_offset, + &w1) && + modbus_memory_read_reg(&dev->mem, + modbus_points_type_to_mem(pt->control_type), + (uint16_t)(pt->control_offset + 1U), + &w2)) + { + modbus_memory_write_reg(&dev->mem, + modbus_points_type_to_mem(pt->type), + pt->offset, + w1); + + modbus_memory_write_reg(&dev->mem, + modbus_points_type_to_mem(pt->type), + (uint16_t)(pt->offset + 1U), + w2); + } + } + else if (pt->data_type == MB_DATA_DOUBLE) + { + uint16_t w1, w2, w3, w4; + + if (modbus_memory_read_reg(&dev->mem, + modbus_points_type_to_mem(pt->control_type), + pt->control_offset, + &w1) && + modbus_memory_read_reg(&dev->mem, + modbus_points_type_to_mem(pt->control_type), + (uint16_t)(pt->control_offset + 1U), + &w2) && + modbus_memory_read_reg(&dev->mem, + modbus_points_type_to_mem(pt->control_type), + (uint16_t)(pt->control_offset + 2U), + &w3) && + modbus_memory_read_reg(&dev->mem, + modbus_points_type_to_mem(pt->control_type), + (uint16_t)(pt->control_offset + 3U), + &w4)) + { + modbus_memory_write_reg(&dev->mem, + modbus_points_type_to_mem(pt->type), + pt->offset, + w1); + + modbus_memory_write_reg(&dev->mem, + modbus_points_type_to_mem(pt->type), + (uint16_t)(pt->offset + 1U), + w2); + + modbus_memory_write_reg(&dev->mem, + modbus_points_type_to_mem(pt->type), + (uint16_t)(pt->offset + 2U), + w3); + + modbus_memory_write_reg(&dev->mem, + modbus_points_type_to_mem(pt->type), + (uint16_t)(pt->offset + 3U), + w4); + } + } + } + } + + vTaskDelay(pdMS_TO_TICKS(100)); + } +} + +/* ------------------------------------------------------------ */ +/* Helpers for app_main */ +/* ------------------------------------------------------------ */ + +static uint8_t data_type_internal_cost(modbus_data_type_t type) +{ + switch (type) + { + case MB_DATA_BOOL: + case MB_DATA_UINT16: + return 1U; + + case MB_DATA_UINT32: + case MB_DATA_FLOAT: + return 2U; + + case MB_DATA_DOUBLE: + return 4U; + + default: + return 0U; + } +} + +static uint8_t pics_type_cost(pics_data_type_t type) +{ + switch (type) + { + case PICS_DATA_BOOLEAN: + return 1U; + case PICS_DATA_INTEGER: + return 2U; + case PICS_DATA_FLOAT: + return 4U; + case PICS_DATA_NONE: + default: + return 0U; + } +} + +static void print_device_type_mix(const modbus_device_t *dev) +{ + size_t i; + size_t bool_count = 0; + size_t uint16_count = 0; + size_t uint32_count = 0; + size_t float_count = 0; + size_t double_count = 0; + + size_t pics_bool_count = 0; + size_t pics_int_count = 0; + size_t pics_float_count = 0; + size_t pics_none_count = 0; + + size_t internal_points_from_base_rows = 0; + size_t pics_registers_from_base_rows = 0; + size_t base_rows = 0; + + if (dev == NULL) + return; + + for (i = 0; i < dev->db.count; i++) + { + const modbus_point_t *pt = &dev->db.points[i]; + + if (pt->is_helper) + continue; + + base_rows++; + + switch (pt->data_type) + { + case MB_DATA_BOOL: + bool_count++; + break; + case MB_DATA_UINT16: + uint16_count++; + break; + case MB_DATA_UINT32: + uint32_count++; + break; + case MB_DATA_FLOAT: + float_count++; + break; + case MB_DATA_DOUBLE: + double_count++; + break; + default: + break; + } + + switch (pt->pics_data_type) + { + case PICS_DATA_BOOLEAN: + pics_bool_count++; + break; + case PICS_DATA_INTEGER: + pics_int_count++; + break; + case PICS_DATA_FLOAT: + pics_float_count++; + break; + case PICS_DATA_NONE: + default: + pics_none_count++; + break; + } + + internal_points_from_base_rows += data_type_internal_cost(pt->data_type); + pics_registers_from_base_rows += pics_type_cost(pt->pics_data_type); + } + + ESP_LOGI(TAG, + "Device %u (%s) type mix: base_rows=%u internal_points=%u pics_regs=%u", + (unsigned)dev->unit_id, + dev->name, + (unsigned)base_rows, + (unsigned)internal_points_from_base_rows, + (unsigned)pics_registers_from_base_rows); + + ESP_LOGI(TAG, + " data_type counts: bool=%u uint16=%u uint32=%u float=%u double=%u", + (unsigned)bool_count, + (unsigned)uint16_count, + (unsigned)uint32_count, + (unsigned)float_count, + (unsigned)double_count); + + ESP_LOGI(TAG, + " pics_data_type counts: none=%u Boolean=%u Integer=%u Float=%u", + (unsigned)pics_none_count, + (unsigned)pics_bool_count, + (unsigned)pics_int_count, + (unsigned)pics_float_count); +} + +/* ------------------------------------------------------------ */ +/* app_main */ +/* ------------------------------------------------------------ */ + +void app_main(void) +{ + esp_err_t ret; + size_t i; + + ESP_LOGI(TAG, "Starting Modbus RTU device"); + + ret = nvs_flash_init(); + if (ret == ESP_ERR_NVS_NO_FREE_PAGES || ret == ESP_ERR_NVS_NEW_VERSION_FOUND) + { + ESP_ERROR_CHECK(nvs_flash_erase()); + ret = nvs_flash_init(); + } + ESP_ERROR_CHECK(ret); + + ESP_ERROR_CHECK(spiffs_init()); + spiffs_list_files(); + + if (!config_store_load(DEVICE_CONFIG_PATH, &g_device_cfg)) + { + ESP_LOGE(TAG, "Failed to load device config: %s", DEVICE_CONFIG_PATH); + return; + } + + ESP_LOGI(TAG, + "RTU config: uart=%u baud=%u parity=%d stop_bits=%u tx=%d rx=%d de=%d", + (unsigned)g_device_cfg.rtu.uart_num, + (unsigned)g_device_cfg.rtu.baud_rate, + (int)g_device_cfg.rtu.parity, + (unsigned)g_device_cfg.rtu.stop_bits, + g_device_cfg.rtu.tx_pin, + g_device_cfg.rtu.rx_pin, + g_device_cfg.rtu.de_pin); + + ESP_LOGI(TAG, "Configured device_count = %u", + (unsigned)g_device_cfg.modbus.device_count); + + for (i = 0; i < g_device_cfg.modbus.device_count; i++) + { + ESP_LOGI(TAG, + "CFG device[%u]: enabled=%u unit_id=%u name=%s csv=%s", + (unsigned)i, + g_device_cfg.devices[i].enabled ? 1 : 0, + (unsigned)g_device_cfg.devices[i].unit_id, + g_device_cfg.devices[i].name, + g_device_cfg.devices[i].csv); + } + + if (g_device_cfg.modbus.device_count == 0U) + { + ESP_LOGE(TAG, "No Modbus devices configured"); + return; + } + + if (g_device_cfg.modbus.device_count > MAX_VIRTUAL_DEVICES) + { + ESP_LOGE(TAG, "Too many virtual devices (%u)", + (unsigned)g_device_cfg.modbus.device_count); + return; + } + + if (g_devices != NULL) + { + free(g_devices); + g_devices = NULL; + } + + g_devices = calloc(g_device_cfg.modbus.device_count, sizeof(modbus_device_t)); + if (g_devices == NULL) + { + ESP_LOGE(TAG, "Failed to allocate device table for %u devices", + (unsigned)g_device_cfg.modbus.device_count); + return; + } + + g_device_count = 0U; + + modbus_rtu_init(&g_rtu_ctx, + (uart_port_t)g_device_cfg.rtu.uart_num, + g_device_cfg.rtu.baud_rate); + + ESP_ERROR_CHECK(modbus_uart_init(&g_device_cfg)); + + g_manual_de_pin = g_device_cfg.rtu.de_pin; + if (g_manual_de_pin >= 0) + { + gpio_reset_pin((gpio_num_t)g_manual_de_pin); + gpio_set_direction((gpio_num_t)g_manual_de_pin, GPIO_MODE_OUTPUT); + gpio_set_level((gpio_num_t)g_manual_de_pin, MANUAL_DE_RX_LEVEL); + ESP_LOGI(TAG, "Manual DE initialized on GPIO%d, idle level=%d", + g_manual_de_pin, MANUAL_DE_RX_LEVEL); + } + + ESP_LOGI(TAG, + "UART driver installed: uart=%d tx=%d rx=%d de=%d baud=%d", + g_device_cfg.rtu.uart_num, + g_device_cfg.rtu.tx_pin, + g_device_cfg.rtu.rx_pin, + g_device_cfg.rtu.de_pin, + (int)g_device_cfg.rtu.baud_rate); + + for (i = 0; i < g_device_cfg.modbus.device_count; i++) + { + modbus_device_t *dev; + const virtual_device_settings_t *cfg_dev = &g_device_cfg.devices[i]; + + if (!cfg_dev->enabled) + { + ESP_LOGI(TAG, "Skipping disabled device[%u]", (unsigned)i); + continue; + } + + dev = &g_devices[g_device_count]; + memset(dev, 0, sizeof(*dev)); + + dev->unit_id = cfg_dev->unit_id; + + strncpy(dev->name, cfg_dev->name, sizeof(dev->name) - 1U); + dev->name[sizeof(dev->name) - 1U] = '\0'; + + if (strncmp(cfg_dev->csv, "/spiffs/", 8U) == 0) + { + strncpy(dev->csv_path, cfg_dev->csv, sizeof(dev->csv_path) - 1U); + dev->csv_path[sizeof(dev->csv_path) - 1U] = '\0'; + } + else + { + snprintf(dev->csv_path, + sizeof(dev->csv_path), + "/spiffs/%s", + cfg_dev->csv); + } + + ESP_LOGI(TAG, + "Preparing device[%u]: unit_id=%u name=%s csv=%s", + (unsigned)i, + (unsigned)dev->unit_id, + dev->name, + dev->csv_path); + + if (!file_exists(dev->csv_path)) + { + ESP_LOGE(TAG, "CSV file not found for device %u: %s", + (unsigned)dev->unit_id, + dev->csv_path); + continue; + } + + modbus_points_init(&dev->db); + + if (!modbus_points_load(&dev->db, dev->csv_path)) + { + ESP_LOGE(TAG, "Failed to load CSV for device %u: %s", + (unsigned)dev->unit_id, + dev->csv_path); + continue; + } + + if (dev->db.count > MODBUS_MAX_POINTS) + { + ESP_LOGE(TAG, + "Device %u exceeded MODBUS_MAX_POINTS (%u > %u)", + (unsigned)dev->unit_id, + (unsigned)dev->db.count, + (unsigned)MODBUS_MAX_POINTS); + abort(); + } + + if (!modbus_memory_init(&dev->mem, &dev->db)) + { + ESP_LOGE(TAG, "Memory init failed for device %u", + (unsigned)dev->unit_id); + continue; + } + + if (!modbus_rtu_add_device(&g_rtu_ctx, + dev->unit_id, + &dev->mem, + dev->name)) + { + ESP_LOGE(TAG, "Failed to register RTU device unit_id=%u name=%s", + (unsigned)dev->unit_id, + dev->name); + continue; + } + + ESP_LOGI(TAG, "Device %u (%s) loaded %u Modbus points from %s", + (unsigned)dev->unit_id, + dev->name, + (unsigned)dev->db.count, + dev->csv_path); + + g_device_count++; + } + + ESP_LOGI(TAG, "----- Runtime Modbus Device Table -----"); + + for (i = 0; i < g_device_count; i++) + { + ESP_LOGI(TAG, + "RUNTIME device[%u]: unit_id=%u name=%s csv=%s points=%u", + (unsigned)i, + (unsigned)g_devices[i].unit_id, + g_devices[i].name, + g_devices[i].csv_path, + (unsigned)g_devices[i].db.count); + } + + ESP_LOGI(TAG, "---------------------------------------"); + + ESP_LOGI(TAG, "----- Modbus Point Capacity -----"); + + { + size_t total_points_used = 0; + size_t total_points_capacity = g_device_count * MODBUS_MAX_POINTS; + size_t total_points_remaining = 0; + + size_t free_heap = heap_caps_get_free_size(MALLOC_CAP_8BIT); + size_t largest_block = heap_caps_get_largest_free_block(MALLOC_CAP_8BIT); + + size_t point_struct_size = sizeof(modbus_point_t); + size_t heap_equivalent_points = 0; + + if (point_struct_size > 0U) + heap_equivalent_points = free_heap / point_struct_size; + + for (i = 0; i < g_device_count; i++) + { + const modbus_device_t *dev = &g_devices[i]; + size_t remaining = 0; + float pct = 0.0f; + + if (dev->db.count < MODBUS_MAX_POINTS) + remaining = MODBUS_MAX_POINTS - dev->db.count; + + if (MODBUS_MAX_POINTS > 0U) + pct = (100.0f * (float)dev->db.count) / (float)MODBUS_MAX_POINTS; + + ESP_LOGI(TAG, + "Device %u (%s): used=%u / max=%u, remaining=%u (%.1f%% used)", + (unsigned)dev->unit_id, + dev->name, + (unsigned)dev->db.count, + (unsigned)MODBUS_MAX_POINTS, + (unsigned)remaining, + pct); + + total_points_used += dev->db.count; + total_points_remaining += remaining; + } + + ESP_LOGI(TAG, + "Configured capacity: used=%u / max=%u, remaining=%u", + (unsigned)total_points_used, + (unsigned)total_points_capacity, + (unsigned)total_points_remaining); + + ESP_LOGI(TAG, + "Free heap: %u bytes, largest block: %u bytes, point size: %u bytes", + (unsigned)free_heap, + (unsigned)largest_block, + (unsigned)point_struct_size); + + ESP_LOGI(TAG, + "Heap-equivalent points available (informational only): %u", + (unsigned)heap_equivalent_points); + } + + ESP_LOGI(TAG, "---------------------------------"); + + ESP_LOGI(TAG, "----- Point Cost Guide -----"); + ESP_LOGI(TAG, "Internal point usage (counts against MODBUS_MAX_POINTS):"); + ESP_LOGI(TAG, " data_type=bool -> 1 point"); + ESP_LOGI(TAG, " data_type=uint16 -> 1 point"); + ESP_LOGI(TAG, " data_type=uint32 -> 2 points"); + ESP_LOGI(TAG, " data_type=float -> 2 points"); + ESP_LOGI(TAG, " data_type=double -> 4 points"); + + ESP_LOGI(TAG, "PICS staging usage (for pics_address spacing only):"); + ESP_LOGI(TAG, " pics_data_type=Boolean -> 1 register"); + ESP_LOGI(TAG, " pics_data_type=Integer -> 2 registers"); + ESP_LOGI(TAG, " pics_data_type=Float -> 4 registers"); + ESP_LOGI(TAG, " pics_data_type=None -> 0 registers"); + + ESP_LOGI(TAG, "Planning examples:"); + ESP_LOGI(TAG, " 100 uint16 CSV rows -> about 100 internal points"); + ESP_LOGI(TAG, " 100 float CSV rows -> about 200 internal points"); + ESP_LOGI(TAG, " 100 double CSV rows -> about 400 internal points"); + ESP_LOGI(TAG, "--------------------------------"); + + ESP_LOGI(TAG, "----- Device Type Mix -----"); + + for (i = 0; i < g_device_count; i++) + { + print_device_type_mix(&g_devices[i]); + } + + ESP_LOGI(TAG, "---------------------------"); + + ESP_LOGI(TAG, "----- Modbus Memory Usage -----"); + + { + size_t total_points = 0; + size_t d; + + for (d = 0; d < g_device_count; d++) + { + const modbus_device_t *dev = &g_devices[d]; + + ESP_LOGI(TAG, + "Device %u (%s): %u / %u points used (%.1f%%)", + (unsigned)dev->unit_id, + dev->name, + (unsigned)dev->db.count, + (unsigned)MODBUS_MAX_POINTS, + (100.0f * (float)dev->db.count) / (float)MODBUS_MAX_POINTS); + + total_points += dev->db.count; + } + + ESP_LOGI(TAG, "TOTAL POINTS LOADED: %u", (unsigned)total_points); + } + + ESP_LOGI(TAG, "--------------------------------"); + + if (g_device_count == 0U) + { + ESP_LOGE(TAG, "No valid Modbus devices loaded, not starting RTU"); + return; + } + + { + BaseType_t rc; + + ESP_LOGI(TAG, "Creating modbus_rtu_task"); + rc = xTaskCreate(modbus_rtu_task, + "modbus_rtu_task", + 8192, + NULL, + 5, + NULL); + ESP_LOGI(TAG, "modbus_rtu_task create rc=%ld", (long)rc); + + ESP_LOGI(TAG, "Creating modbus_override_task"); + rc = xTaskCreate(modbus_override_task, + "modbus_override_task", + 8192, + NULL, + 5, + NULL); + ESP_LOGI(TAG, "modbus_override_task create rc=%ld", (long)rc); + } +} \ No newline at end of file diff --git a/main/modbus_memory.c b/main/modbus_memory.c new file mode 100644 index 0000000..c50bb17 --- /dev/null +++ b/main/modbus_memory.c @@ -0,0 +1,877 @@ +#include "modbus_memory.h" +#include "modbus_points.h" + +#include + +static modbus_point_type_t mem_to_point_type(modbus_mem_type_t type) +{ + switch (type) + { + case MB_MEM_COIL: + return MB_POINT_COIL; + + case MB_MEM_DISCRETE_INPUT: + return MB_POINT_DISCRETE_INPUT; + + case MB_MEM_INPUT_REGISTER: + return MB_POINT_INPUT_REGISTER; + + case MB_MEM_HOLDING_REGISTER: + return MB_POINT_HOLDING_REGISTER; + + default: + return MB_POINT_INVALID; + } +} + +static modbus_point_t *find_point_rw(modbus_memory_t *mem, + modbus_mem_type_t mem_type, + uint16_t offset) +{ + size_t i; + modbus_point_type_t point_type; + + if (mem == NULL || mem->db == NULL) + return NULL; + + point_type = mem_to_point_type(mem_type); + if (point_type == MB_POINT_INVALID) + return NULL; + + for (i = 0; i < mem->db->count; i++) + { + if (mem->db->points[i].type == point_type && + mem->db->points[i].offset == offset) + { + return &mem->db->points[i]; + } + } + + return NULL; +} + +static const modbus_point_t *find_point_ro(modbus_memory_t *mem, + modbus_mem_type_t mem_type, + uint16_t offset) +{ + size_t i; + modbus_point_type_t point_type; + + if (mem == NULL || mem->db == NULL) + return NULL; + + point_type = mem_to_point_type(mem_type); + if (point_type == MB_POINT_INVALID) + return NULL; + + for (i = 0; i < mem->db->count; i++) + { + if (mem->db->points[i].type == point_type && + mem->db->points[i].offset == offset) + { + return &mem->db->points[i]; + } + } + + return NULL; +} + +static modbus_point_t *find_pics_point_rw(modbus_memory_t *mem, + modbus_mem_type_t mem_type, + uint16_t offset) +{ + modbus_point_type_t point_type; + const modbus_point_t *pt; + + if (mem == NULL || mem->db == NULL) + return NULL; + + point_type = mem_to_point_type(mem_type); + if (point_type == MB_POINT_INVALID) + return NULL; + + pt = modbus_points_find_by_pics_range(mem->db, point_type, offset); + return (modbus_point_t *)pt; +} + +static bool write_point_words(modbus_memory_t *mem, + modbus_point_t *pt, + const uint16_t *words, + uint8_t span) +{ + uint8_t i; + modbus_mem_type_t mem_type; + + if (mem == NULL || pt == NULL || words == NULL) + return false; + + if (modbus_points_is_bit_type(pt->type)) + { + pt->bit_value = (words[0] != 0U) ? 1U : 0U; + return true; + } + + mem_type = modbus_points_type_to_mem(pt->type); + + for (i = 0; i < span; i++) + { + modbus_point_t *word_pt; + + word_pt = find_point_rw(mem, mem_type, (uint16_t)(pt->offset + i)); + if (word_pt == NULL) + return false; + + word_pt->reg_value = words[i]; + } + + return true; +} + +static void sync_points_controlled_by(modbus_memory_t *mem, + const modbus_point_t *control_pt) +{ + size_t i; + uint8_t j; + modbus_mem_type_t control_mem_type; + modbus_mem_type_t target_mem_type; + + if (mem == NULL || mem->db == NULL || control_pt == NULL) + return; + + for (i = 0; i < mem->db->count; i++) + { + modbus_point_t *target_pt = &mem->db->points[i]; + + if (!target_pt->has_control_address) + continue; + + if (target_pt->control_type != control_pt->type) + continue; + + if (target_pt->control_offset != control_pt->offset) + continue; + + if (modbus_points_is_bit_type(target_pt->type)) + { + target_pt->bit_value = control_pt->bit_value; + continue; + } + + control_mem_type = modbus_points_type_to_mem(control_pt->type); + target_mem_type = modbus_points_type_to_mem(target_pt->type); + + for (j = 0; j < target_pt->reg_span; j++) + { + const modbus_point_t *src_pt; + modbus_point_t *dst_pt; + + src_pt = find_point_ro(mem, control_mem_type, + (uint16_t)(control_pt->offset + j)); + dst_pt = find_point_rw(mem, target_mem_type, + (uint16_t)(target_pt->offset + j)); + + if (src_pt == NULL || dst_pt == NULL) + break; + + dst_pt->reg_value = src_pt->reg_value; + } + } +} + +static bool apply_pics_to_official_point(modbus_memory_t *mem, modbus_point_t *pt) +{ + uint16_t out_words[4] = {0U, 0U, 0U, 0U}; + + if (mem == NULL || pt == NULL || !pt->has_pics_address) + return false; + + switch (pt->pics_data_type) + { + case PICS_DATA_BOOLEAN: + { + uint16_t v = (pt->pics_words[0] != 0U) ? 1U : 0U; + + if (modbus_points_is_bit_type(pt->type)) + { + pt->bit_value = (v != 0U) ? 1U : 0U; + sync_points_controlled_by(mem, pt); + return true; + } + + out_words[0] = v; + if (!write_point_words(mem, pt, out_words, 1U)) + return false; + + sync_points_controlled_by(mem, pt); + return true; + } + + case PICS_DATA_INTEGER: + { + uint32_t raw_u32; + int32_t pics_i32; + + raw_u32 = ((uint32_t)pt->pics_words[1] << 16) | + (uint32_t)pt->pics_words[0]; + pics_i32 = (int32_t)raw_u32; + + switch (pt->data_type) + { + case MB_DATA_UINT16: + { + uint32_t v = (pics_i32 < 0) ? 0U : (uint32_t)pics_i32; + if (v > 65535U) + v = 65535U; + + out_words[0] = (uint16_t)v; + if (!write_point_words(mem, pt, out_words, 1U)) + return false; + break; + } + + case MB_DATA_UINT32: + { + uint32_t v = (pics_i32 < 0) ? 0U : (uint32_t)pics_i32; + + out_words[0] = (uint16_t)((v >> 16) & 0xFFFFU); + out_words[1] = (uint16_t)(v & 0xFFFFU); + + if (!write_point_words(mem, pt, out_words, 2U)) + return false; + break; + } + + case MB_DATA_FLOAT: + { + float f = (float)pics_i32; + uint32_t raw_f32; + + memcpy(&raw_f32, &f, sizeof(raw_f32)); + + out_words[0] = (uint16_t)((raw_f32 >> 16) & 0xFFFFU); + out_words[1] = (uint16_t)(raw_f32 & 0xFFFFU); + + if (!write_point_words(mem, pt, out_words, 2U)) + return false; + break; + } + + case MB_DATA_DOUBLE: + { + double d = (double)pics_i32; + uint64_t raw_f64; + + memcpy(&raw_f64, &d, sizeof(raw_f64)); + + out_words[0] = (uint16_t)((raw_f64 >> 48) & 0xFFFFU); + out_words[1] = (uint16_t)((raw_f64 >> 32) & 0xFFFFU); + out_words[2] = (uint16_t)((raw_f64 >> 16) & 0xFFFFU); + out_words[3] = (uint16_t)(raw_f64 & 0xFFFFU); + + if (!write_point_words(mem, pt, out_words, 4U)) + return false; + break; + } + + default: + return false; + } + + sync_points_controlled_by(mem, pt); + return true; + } + + case PICS_DATA_FLOAT: + { + uint64_t raw_f64; + double pics_d; + + raw_f64 = ((uint64_t)pt->pics_words[0] << 48) | + ((uint64_t)pt->pics_words[1] << 32) | + ((uint64_t)pt->pics_words[2] << 16) | + (uint64_t)pt->pics_words[3]; + + memcpy(&pics_d, &raw_f64, sizeof(pics_d)); + + switch (pt->data_type) + { + case MB_DATA_UINT16: + { + double v = pics_d; + if (v < 0.0) + v = 0.0; + if (v > 65535.0) + v = 65535.0; + + out_words[0] = (uint16_t)v; + if (!write_point_words(mem, pt, out_words, 1U)) + return false; + break; + } + + case MB_DATA_UINT32: + { + double v = pics_d; + uint32_t u32; + + if (v < 0.0) + v = 0.0; + if (v > 4294967295.0) + v = 4294967295.0; + + u32 = (uint32_t)v; + + out_words[0] = (uint16_t)((u32 >> 16) & 0xFFFFU); + out_words[1] = (uint16_t)(u32 & 0xFFFFU); + + if (!write_point_words(mem, pt, out_words, 2U)) + return false; + break; + } + + case MB_DATA_FLOAT: + { + float f = (float)pics_d; + uint32_t raw_f32; + + memcpy(&raw_f32, &f, sizeof(raw_f32)); + + out_words[0] = (uint16_t)((raw_f32 >> 16) & 0xFFFFU); + out_words[1] = (uint16_t)(raw_f32 & 0xFFFFU); + + if (!write_point_words(mem, pt, out_words, 2U)) + return false; + break; + } + + case MB_DATA_DOUBLE: + { + uint64_t raw_out_f64; + + memcpy(&raw_out_f64, &pics_d, sizeof(raw_out_f64)); + + out_words[0] = (uint16_t)((raw_out_f64 >> 48) & 0xFFFFU); + out_words[1] = (uint16_t)((raw_out_f64 >> 32) & 0xFFFFU); + out_words[2] = (uint16_t)((raw_out_f64 >> 16) & 0xFFFFU); + out_words[3] = (uint16_t)(raw_out_f64 & 0xFFFFU); + + if (!write_point_words(mem, pt, out_words, 4U)) + return false; + break; + } + + default: + return false; + } + + sync_points_controlled_by(mem, pt); + return true; + } + + default: + return false; + } +} + +static bool write_pics_staging_word(modbus_memory_t *mem, + modbus_mem_type_t mem_type, + uint16_t offset, + uint16_t value) +{ + modbus_point_t *pt; + uint16_t word_index; + + pt = find_pics_point_rw(mem, mem_type, offset); + if (pt == NULL) + return false; + + if (!pt->has_pics_address || pt->pics_reg_span == 0U) + return false; + + if (offset < pt->pics_offset) + return false; + + word_index = (uint16_t)(offset - pt->pics_offset); + if (word_index >= pt->pics_reg_span || word_index >= 4U) + return false; + + pt->pics_words[word_index] = value; + return true; +} + +bool modbus_memory_init(modbus_memory_t *mem, modbus_db_t *db) +{ + if (mem == NULL || db == NULL) + return false; + + mem->db = db; + modbus_memory_reset(mem); + return true; +} + +void modbus_memory_deinit(modbus_memory_t *mem) +{ + if (mem == NULL) + return; + + mem->db = NULL; +} + +void modbus_memory_reset(modbus_memory_t *mem) +{ + size_t i; + + if (mem == NULL || mem->db == NULL) + return; + + for (i = 0; i < mem->db->count; i++) + { + mem->db->points[i].bit_value = 0U; + mem->db->points[i].reg_value = 0U; + memset(mem->db->points[i].pics_words, 0, sizeof(mem->db->points[i].pics_words)); + } +} + +bool modbus_memory_read_coil(modbus_memory_t *mem, uint16_t offset, uint8_t *value) +{ + const modbus_point_t *pt; + + if (mem == NULL || value == NULL) + return false; + + pt = find_point_ro(mem, MB_MEM_COIL, offset); + if (pt == NULL) + return false; + + *value = (pt->bit_value != 0U) ? 1U : 0U; + return true; +} + +bool modbus_memory_write_coil(modbus_memory_t *mem, uint16_t offset, uint8_t value) +{ + modbus_point_t *pt; + + if (mem == NULL) + return false; + + pt = find_point_rw(mem, MB_MEM_COIL, offset); + if (pt != NULL) + { + pt->bit_value = (value != 0U) ? 1U : 0U; + sync_points_controlled_by(mem, pt); + return true; + } + + pt = find_pics_point_rw(mem, MB_MEM_COIL, offset); + if (pt != NULL) + { + uint16_t staged = (value != 0U) ? 1U : 0U; + return write_pics_staging_word(mem, MB_MEM_COIL, offset, staged); + } + + return false; +} + +bool modbus_memory_read_discrete_input(modbus_memory_t *mem, uint16_t offset, uint8_t *value) +{ + const modbus_point_t *pt; + + if (mem == NULL || value == NULL) + return false; + + pt = find_point_ro(mem, MB_MEM_DISCRETE_INPUT, offset); + if (pt == NULL) + return false; + + *value = (pt->bit_value != 0U) ? 1U : 0U; + return true; +} + +bool modbus_memory_write_discrete_input(modbus_memory_t *mem, uint16_t offset, uint8_t value) +{ + modbus_point_t *pt; + + if (mem == NULL) + return false; + + pt = find_point_rw(mem, MB_MEM_DISCRETE_INPUT, offset); + if (pt == NULL) + return false; + + pt->bit_value = (value != 0U) ? 1U : 0U; + return true; +} + +bool modbus_memory_read_input_register(modbus_memory_t *mem, uint16_t offset, uint16_t *value) +{ + const modbus_point_t *pt; + + if (mem == NULL || value == NULL) + return false; + + pt = find_point_ro(mem, MB_MEM_INPUT_REGISTER, offset); + if (pt == NULL) + return false; + + *value = pt->reg_value; + return true; +} + +bool modbus_memory_write_input_register(modbus_memory_t *mem, uint16_t offset, uint16_t value) +{ + modbus_point_t *pt; + + if (mem == NULL) + return false; + + pt = find_point_rw(mem, MB_MEM_INPUT_REGISTER, offset); + if (pt == NULL) + return false; + + pt->reg_value = value; + return true; +} + +bool modbus_memory_read_holding_register(modbus_memory_t *mem, uint16_t offset, uint16_t *value) +{ + const modbus_point_t *pt; + + if (mem == NULL || value == NULL) + return false; + + pt = find_point_ro(mem, MB_MEM_HOLDING_REGISTER, offset); + if (pt == NULL) + return false; + + *value = pt->reg_value; + return true; +} + +bool modbus_memory_write_holding_register(modbus_memory_t *mem, uint16_t offset, uint16_t value) +{ + modbus_point_t *pt; + + if (mem == NULL) + return false; + + pt = find_point_rw(mem, MB_MEM_HOLDING_REGISTER, offset); + if (pt != NULL) + { + pt->reg_value = value; + sync_points_controlled_by(mem, pt); + return true; + } + + if (write_pics_staging_word(mem, MB_MEM_HOLDING_REGISTER, offset, value)) + return true; + + return false; +} + +bool modbus_memory_read_bit(modbus_memory_t *mem, + modbus_mem_type_t type, + uint16_t offset, + uint8_t *value) +{ + switch (type) + { + case MB_MEM_COIL: + return modbus_memory_read_coil(mem, offset, value); + + case MB_MEM_DISCRETE_INPUT: + return modbus_memory_read_discrete_input(mem, offset, value); + + default: + return false; + } +} + +bool modbus_memory_write_bit(modbus_memory_t *mem, + modbus_mem_type_t type, + uint16_t offset, + uint8_t value) +{ + switch (type) + { + case MB_MEM_COIL: + return modbus_memory_write_coil(mem, offset, value); + + case MB_MEM_DISCRETE_INPUT: + return modbus_memory_write_discrete_input(mem, offset, value); + + default: + return false; + } +} + +bool modbus_memory_read_reg(modbus_memory_t *mem, + modbus_mem_type_t type, + uint16_t offset, + uint16_t *value) +{ + switch (type) + { + case MB_MEM_INPUT_REGISTER: + return modbus_memory_read_input_register(mem, offset, value); + + case MB_MEM_HOLDING_REGISTER: + return modbus_memory_read_holding_register(mem, offset, value); + + default: + return false; + } +} + +bool modbus_memory_write_reg(modbus_memory_t *mem, + modbus_mem_type_t type, + uint16_t offset, + uint16_t value) +{ + switch (type) + { + case MB_MEM_INPUT_REGISTER: + return modbus_memory_write_input_register(mem, offset, value); + + case MB_MEM_HOLDING_REGISTER: + return modbus_memory_write_holding_register(mem, offset, value); + + default: + return false; + } +} + +bool modbus_memory_valid_bit_range(modbus_memory_t *mem, + modbus_mem_type_t type, + uint16_t start_offset, + uint16_t quantity) +{ + uint32_t end_offset; + + (void)type; + + if (mem == NULL || mem->db == NULL || quantity == 0U) + return false; + + end_offset = (uint32_t)start_offset + (uint32_t)quantity - 1U; + if (end_offset > 0xFFFFU) + return false; + + return true; +} + +bool modbus_memory_valid_reg_range(modbus_memory_t *mem, + modbus_mem_type_t type, + uint16_t start_offset, + uint16_t quantity) +{ + uint32_t end_offset; + + (void)type; + + if (mem == NULL || mem->db == NULL || quantity == 0U) + return false; + + end_offset = (uint32_t)start_offset + (uint32_t)quantity - 1U; + if (end_offset > 0xFFFFU) + return false; + + return true; +} + +bool modbus_memory_read_coils(modbus_memory_t *mem, + uint16_t start_offset, + uint16_t quantity, + uint8_t *dest) +{ + uint16_t i; + + if (dest == NULL || !modbus_memory_valid_bit_range(mem, MB_MEM_COIL, start_offset, quantity)) + return false; + + for (i = 0; i < quantity; i++) + { + uint8_t value = 0U; + + if (!modbus_memory_read_coil(mem, (uint16_t)(start_offset + i), &value)) + value = 0U; + + dest[i] = value; + } + + return true; +} + +bool modbus_memory_write_coils(modbus_memory_t *mem, + uint16_t start_offset, + uint16_t quantity, + const uint8_t *src) +{ + uint16_t i; + + if (src == NULL || !modbus_memory_valid_bit_range(mem, MB_MEM_COIL, start_offset, quantity)) + return false; + + for (i = 0; i < quantity; i++) + { + if (!modbus_memory_write_coil(mem, (uint16_t)(start_offset + i), src[i])) + return false; + } + + return true; +} + +bool modbus_memory_read_discrete_inputs(modbus_memory_t *mem, + uint16_t start_offset, + uint16_t quantity, + uint8_t *dest) +{ + uint16_t i; + + if (dest == NULL || !modbus_memory_valid_bit_range(mem, MB_MEM_DISCRETE_INPUT, start_offset, quantity)) + return false; + + for (i = 0; i < quantity; i++) + { + uint8_t value = 0U; + + if (!modbus_memory_read_discrete_input(mem, (uint16_t)(start_offset + i), &value)) + value = 0U; + + dest[i] = value; + } + + return true; +} + +bool modbus_memory_write_discrete_inputs(modbus_memory_t *mem, + uint16_t start_offset, + uint16_t quantity, + const uint8_t *src) +{ + uint16_t i; + + if (src == NULL || !modbus_memory_valid_bit_range(mem, MB_MEM_DISCRETE_INPUT, start_offset, quantity)) + return false; + + for (i = 0; i < quantity; i++) + { + if (!modbus_memory_write_discrete_input(mem, (uint16_t)(start_offset + i), src[i])) + return false; + } + + return true; +} + +bool modbus_memory_read_input_registers(modbus_memory_t *mem, + uint16_t start_offset, + uint16_t quantity, + uint16_t *dest) +{ + uint16_t i; + + if (dest == NULL || !modbus_memory_valid_reg_range(mem, MB_MEM_INPUT_REGISTER, start_offset, quantity)) + return false; + + for (i = 0; i < quantity; i++) + { + uint16_t value = 0U; + + if (!modbus_memory_read_input_register(mem, (uint16_t)(start_offset + i), &value)) + value = 0U; + + dest[i] = value; + } + + return true; +} + +bool modbus_memory_write_input_registers(modbus_memory_t *mem, + uint16_t start_offset, + uint16_t quantity, + const uint16_t *src) +{ + uint16_t i; + + if (src == NULL || !modbus_memory_valid_reg_range(mem, MB_MEM_INPUT_REGISTER, start_offset, quantity)) + return false; + + for (i = 0; i < quantity; i++) + { + if (!modbus_memory_write_input_register(mem, (uint16_t)(start_offset + i), src[i])) + return false; + } + + return true; +} + +bool modbus_memory_read_holding_registers(modbus_memory_t *mem, + uint16_t start_offset, + uint16_t quantity, + uint16_t *dest) +{ + uint16_t i; + + if (dest == NULL || !modbus_memory_valid_reg_range(mem, MB_MEM_HOLDING_REGISTER, start_offset, quantity)) + return false; + + for (i = 0; i < quantity; i++) + { + uint16_t value = 0U; + + if (!modbus_memory_read_holding_register(mem, (uint16_t)(start_offset + i), &value)) + value = 0U; + + dest[i] = value; + } + + return true; +} + +bool modbus_memory_write_holding_registers(modbus_memory_t *mem, + uint16_t start_offset, + uint16_t quantity, + const uint16_t *src) +{ + uint16_t i; + + if (src == NULL || quantity == 0U || mem == NULL || mem->db == NULL) + return false; + + for (i = 0; i < quantity; i++) + { + uint16_t off = (uint16_t)(start_offset + i); + + if (find_point_rw(mem, MB_MEM_HOLDING_REGISTER, off) == NULL) + { + if (modbus_points_find_by_pics_range(mem->db, + MB_POINT_HOLDING_REGISTER, + off) == NULL) + { + return false; + } + } + } + + for (i = 0; i < quantity; i++) + { + if (!modbus_memory_write_holding_register(mem, + (uint16_t)(start_offset + i), + src[i])) + { + return false; + } + } + + { + modbus_point_t *pics_pt; + + pics_pt = find_pics_point_rw(mem, MB_MEM_HOLDING_REGISTER, start_offset); + if (pics_pt != NULL) + { + if (!apply_pics_to_official_point(mem, pics_pt)) + return false; + } + } + + return true; +} \ No newline at end of file diff --git a/main/modbus_memory.h b/main/modbus_memory.h new file mode 100644 index 0000000..7583d05 --- /dev/null +++ b/main/modbus_memory.h @@ -0,0 +1,131 @@ +#ifndef MODBUS_MEMORY_H +#define MODBUS_MEMORY_H + +#include +#include +#include + +typedef enum +{ + MB_MEM_COIL = 0, + MB_MEM_DISCRETE_INPUT, + MB_MEM_INPUT_REGISTER, + MB_MEM_HOLDING_REGISTER +} modbus_mem_type_t; + +typedef struct modbus_db modbus_db_t; + +typedef struct +{ + modbus_db_t *db; +} modbus_memory_t; + +/* ---------------------------------------------------- */ +/* Init / deinit */ +/* ---------------------------------------------------- */ + +bool modbus_memory_init(modbus_memory_t *mem, modbus_db_t *db); +void modbus_memory_deinit(modbus_memory_t *mem); + +/* Clear all runtime point values back to 0 */ +void modbus_memory_reset(modbus_memory_t *mem); + +/* ---------------------------------------------------- */ +/* Single-point access helpers */ +/* ---------------------------------------------------- */ + +bool modbus_memory_read_coil(modbus_memory_t *mem, uint16_t offset, uint8_t *value); +bool modbus_memory_write_coil(modbus_memory_t *mem, uint16_t offset, uint8_t value); + +bool modbus_memory_read_discrete_input(modbus_memory_t *mem, uint16_t offset, uint8_t *value); +bool modbus_memory_write_discrete_input(modbus_memory_t *mem, uint16_t offset, uint8_t value); + +bool modbus_memory_read_input_register(modbus_memory_t *mem, uint16_t offset, uint16_t *value); +bool modbus_memory_write_input_register(modbus_memory_t *mem, uint16_t offset, uint16_t value); + +bool modbus_memory_read_holding_register(modbus_memory_t *mem, uint16_t offset, uint16_t *value); +bool modbus_memory_write_holding_register(modbus_memory_t *mem, uint16_t offset, uint16_t value); + +/* ---------------------------------------------------- */ +/* Generic access helpers */ +/* ---------------------------------------------------- */ + +bool modbus_memory_read_bit(modbus_memory_t *mem, + modbus_mem_type_t type, + uint16_t offset, + uint8_t *value); + +bool modbus_memory_write_bit(modbus_memory_t *mem, + modbus_mem_type_t type, + uint16_t offset, + uint8_t value); + +bool modbus_memory_read_reg(modbus_memory_t *mem, + modbus_mem_type_t type, + uint16_t offset, + uint16_t *value); + +bool modbus_memory_write_reg(modbus_memory_t *mem, + modbus_mem_type_t type, + uint16_t offset, + uint16_t value); + +/* ---------------------------------------------------- */ +/* Multi-point access helpers */ +/* ---------------------------------------------------- */ + +bool modbus_memory_read_coils(modbus_memory_t *mem, + uint16_t start_offset, + uint16_t quantity, + uint8_t *dest); + +bool modbus_memory_write_coils(modbus_memory_t *mem, + uint16_t start_offset, + uint16_t quantity, + const uint8_t *src); + +bool modbus_memory_read_discrete_inputs(modbus_memory_t *mem, + uint16_t start_offset, + uint16_t quantity, + uint8_t *dest); + +bool modbus_memory_write_discrete_inputs(modbus_memory_t *mem, + uint16_t start_offset, + uint16_t quantity, + const uint8_t *src); + +bool modbus_memory_read_input_registers(modbus_memory_t *mem, + uint16_t start_offset, + uint16_t quantity, + uint16_t *dest); + +bool modbus_memory_write_input_registers(modbus_memory_t *mem, + uint16_t start_offset, + uint16_t quantity, + const uint16_t *src); + +bool modbus_memory_read_holding_registers(modbus_memory_t *mem, + uint16_t start_offset, + uint16_t quantity, + uint16_t *dest); + +bool modbus_memory_write_holding_registers(modbus_memory_t *mem, + uint16_t start_offset, + uint16_t quantity, + const uint16_t *src); + +/* ---------------------------------------------------- */ +/* Utility helpers */ +/* ---------------------------------------------------- */ + +bool modbus_memory_valid_bit_range(modbus_memory_t *mem, + modbus_mem_type_t type, + uint16_t start_offset, + uint16_t quantity); + +bool modbus_memory_valid_reg_range(modbus_memory_t *mem, + modbus_mem_type_t type, + uint16_t start_offset, + uint16_t quantity); + +#endif /* MODBUS_MEMORY_H */ \ No newline at end of file diff --git a/main/modbus_points.c b/main/modbus_points.c new file mode 100644 index 0000000..9be5993 --- /dev/null +++ b/main/modbus_points.c @@ -0,0 +1,886 @@ +#include "modbus_points.h" + +#include +#include +#include +#include + +/* ---------- local helpers ---------- */ + +static void trim_whitespace(char *s) +{ + char *start; + char *end; + + if (s == NULL || *s == '\0') + return; + + start = s; + while (*start != '\0' && isspace((unsigned char)*start)) + start++; + + if (start != s) + memmove(s, start, strlen(start) + 1U); + + if (*s == '\0') + return; + + end = s + strlen(s) - 1; + while (end >= s && isspace((unsigned char)*end)) + { + *end = '\0'; + end--; + } +} + +static bool str_equals(const char *a, const char *b) +{ + if (a == NULL || b == NULL) + return false; + + return strcmp(a, b) == 0; +} + +static modbus_point_type_t parse_point_type(const char *s) +{ + if (str_equals(s, "Coil")) + return MB_POINT_COIL; + if (str_equals(s, "Discrete_Input")) + return MB_POINT_DISCRETE_INPUT; + if (str_equals(s, "Input_Register")) + return MB_POINT_INPUT_REGISTER; + if (str_equals(s, "Holding_Register")) + return MB_POINT_HOLDING_REGISTER; + + return MB_POINT_INVALID; +} + +static modbus_data_type_t parse_data_type(const char *s) +{ + if (str_equals(s, "bool")) + return MB_DATA_BOOL; + if (str_equals(s, "uint16")) + return MB_DATA_UINT16; + if (str_equals(s, "uint32")) + return MB_DATA_UINT32; + if (str_equals(s, "float")) + return MB_DATA_FLOAT; + if (str_equals(s, "double")) + return MB_DATA_DOUBLE; + + return MB_DATA_INVALID; +} + +static pics_data_type_t parse_pics_data_type(const char *s) +{ + if (str_equals(s, "Boolean")) + return PICS_DATA_BOOLEAN; + + if (str_equals(s, "Integer")) + return PICS_DATA_INTEGER; + + if (str_equals(s, "Float")) + return PICS_DATA_FLOAT; + + if (str_equals(s, "String")) + return PICS_DATA_STRING; + + if (s == NULL || *s == '\0') + return PICS_DATA_NONE; + + return PICS_DATA_INVALID; +} + +static bool parse_u32(const char *s, uint32_t *value) +{ + char *endptr; + unsigned long v; + + if (s == NULL || value == NULL || *s == '\0') + return false; + + v = strtoul(s, &endptr, 10); + if (*endptr != '\0') + return false; + + *value = (uint32_t)v; + return true; +} + +static modbus_point_type_t infer_point_type_from_address(uint32_t raw_address) +{ + uint32_t family_digit; + + if (raw_address == 0U) + return MB_POINT_INVALID; + + if (raw_address < 10000U) + return MB_POINT_COIL; + + if (raw_address >= 100000U) + family_digit = raw_address / 100000U; + else + family_digit = raw_address / 10000U; + + switch (family_digit) + { + case 1U: + return MB_POINT_DISCRETE_INPUT; + case 3U: + return MB_POINT_INPUT_REGISTER; + case 4U: + return MB_POINT_HOLDING_REGISTER; + default: + return MB_POINT_INVALID; + } +} + +static bool normalize_address(modbus_point_type_t type, uint32_t raw_address, uint16_t *offset) +{ + uint32_t index_1_based; + uint32_t off; + uint32_t family_digit = 0U; + + if (offset == NULL || raw_address == 0U) + return false; + + if (raw_address >= 100000U) + { + family_digit = raw_address / 100000U; + index_1_based = raw_address % 100000U; + } + else if (raw_address >= 10000U) + { + family_digit = raw_address / 10000U; + index_1_based = raw_address % 10000U; + } + else + { + family_digit = 0U; + index_1_based = raw_address; + } + + if (index_1_based == 0U) + return false; + + switch (type) + { + case MB_POINT_COIL: + if (family_digit != 0U) + return false; + off = index_1_based - 1U; + break; + + case MB_POINT_DISCRETE_INPUT: + if (family_digit != 1U) + return false; + off = index_1_based - 1U; + break; + + case MB_POINT_INPUT_REGISTER: + if (family_digit != 3U) + return false; + off = index_1_based - 1U; + break; + + case MB_POINT_HOLDING_REGISTER: + if (family_digit != 4U) + return false; + off = index_1_based - 1U; + break; + + default: + return false; + } + + if (off > 0xFFFFU) + return false; + + *offset = (uint16_t)off; + return true; +} + +static bool validate_type_and_datatype(modbus_point_type_t type, modbus_data_type_t data_type) +{ + switch (type) + { + case MB_POINT_COIL: + case MB_POINT_DISCRETE_INPUT: + return data_type == MB_DATA_BOOL; + + case MB_POINT_INPUT_REGISTER: + case MB_POINT_HOLDING_REGISTER: + return data_type == MB_DATA_UINT16 || + data_type == MB_DATA_UINT32 || + data_type == MB_DATA_FLOAT || + data_type == MB_DATA_DOUBLE; + + default: + return false; + } +} + +static uint8_t data_type_reg_span(modbus_data_type_t data_type) +{ + switch (data_type) + { + case MB_DATA_BOOL: + case MB_DATA_UINT16: + return 1U; + + case MB_DATA_UINT32: + case MB_DATA_FLOAT: + return 2U; + + case MB_DATA_DOUBLE: + return 4U; + + default: + return 0U; + } +} + +static bool db_has_duplicate_name(const modbus_db_t *db, const char *name) +{ + size_t i; + + if (db == NULL || name == NULL) + return false; + + for (i = 0; i < db->count; i++) + { + if (strcmp(db->points[i].name, name) == 0) + return true; + } + + return false; +} + +static bool db_has_duplicate_type_offset(const modbus_db_t *db, + modbus_point_type_t type, + uint16_t offset) +{ + size_t i; + + if (db == NULL) + return false; + + for (i = 0; i < db->count; i++) + { + if (db->points[i].type == type && db->points[i].offset == offset) + return true; + } + + return false; +} + +static bool ranges_overlap(uint16_t start_a, uint8_t span_a, + uint16_t start_b, uint8_t span_b) +{ + uint32_t end_a; + uint32_t end_b; + + if (span_a == 0U || span_b == 0U) + return false; + + end_a = (uint32_t)start_a + (uint32_t)span_a - 1U; + end_b = (uint32_t)start_b + (uint32_t)span_b - 1U; + + return !((end_a < start_b) || (end_b < start_a)); +} + +const modbus_point_t *modbus_points_find_by_pics_offset(const modbus_db_t *db, + modbus_point_type_t type, + uint16_t offset) +{ + size_t i; + + if (db == NULL) + return NULL; + + for (i = 0; i < db->count; i++) + { + if (db->points[i].has_pics_address && + db->points[i].pics_type == type && + db->points[i].pics_offset == offset) + return &db->points[i]; + } + + return NULL; +} + +const modbus_point_t *modbus_points_find_by_pics_range(const modbus_db_t *db, + modbus_point_type_t type, + uint16_t offset) +{ + size_t i; + + if (db == NULL) + return NULL; + + for (i = 0; i < db->count; i++) + { + const modbus_point_t *pt = &db->points[i]; + uint32_t end_offset; + + if (!pt->has_pics_address || pt->pics_reg_span == 0U) + continue; + + if (pt->pics_type != type) + continue; + + end_offset = (uint32_t)pt->pics_offset + (uint32_t)pt->pics_reg_span - 1U; + + if ((uint32_t)offset >= (uint32_t)pt->pics_offset && + (uint32_t)offset <= end_offset) + return pt; + } + + return NULL; +} + +static bool db_has_duplicate_pics_range(const modbus_db_t *db, + modbus_point_type_t pics_type, + uint16_t pics_offset, + uint8_t pics_reg_span) +{ + size_t i; + + if (db == NULL || pics_reg_span == 0U) + return false; + + for (i = 0; i < db->count; i++) + { + const modbus_point_t *pt = &db->points[i]; + + if (!pt->has_pics_address || pt->pics_reg_span == 0U) + continue; + + if (pt->pics_type != pics_type) + continue; + + if (ranges_overlap(pt->pics_offset, pt->pics_reg_span, + pics_offset, pics_reg_span)) + return true; + } + + return false; +} + +static bool validate_control_mapping(const modbus_point_t *pt) +{ + if (pt == NULL) + return false; + + if (!pt->has_control_address) + return true; + + if (!modbus_points_is_writable_type(pt->control_type)) + return false; + + switch (pt->type) + { + case MB_POINT_DISCRETE_INPUT: + return pt->control_type == MB_POINT_COIL; + + case MB_POINT_INPUT_REGISTER: + return pt->control_type == MB_POINT_HOLDING_REGISTER; + + case MB_POINT_COIL: + case MB_POINT_HOLDING_REGISTER: + return false; + + default: + return false; + } +} + +static bool append_helper_points(modbus_db_t *db, const modbus_point_t *base_pt) +{ + uint8_t i; + + if (db == NULL || base_pt == NULL) + return false; + + if (base_pt->reg_span <= 1U) + return true; + + for (i = 1U; i < base_pt->reg_span; i++) + { + modbus_point_t helper = *base_pt; + + helper.raw_address = base_pt->raw_address + (uint32_t)i; + helper.offset = (uint16_t)(base_pt->offset + i); + helper.data_type = MB_DATA_UINT16; + helper.reg_span = 1U; + helper.is_helper = true; + helper.has_control_address = false; + helper.control_raw_address = 0U; + helper.control_type = MB_POINT_INVALID; + helper.control_offset = 0U; + helper.has_pics_address = false; + helper.pics_raw_address = 0U; + helper.pics_type = MB_POINT_INVALID; + helper.pics_offset = 0U; + helper.pics_data_type = PICS_DATA_NONE; + helper.pics_reg_span = 0U; + memset(helper.pics_words, 0, sizeof(helper.pics_words)); + helper.bit_value = 0U; + helper.reg_value = 0U; + + snprintf(helper.name, + sizeof(helper.name), + "%.25s__w%u", + base_pt->name, + (unsigned)(i + 1U)); + + if (db->count >= MODBUS_MAX_POINTS) + return false; + + if (db_has_duplicate_name(db, helper.name)) + return false; + + if (db_has_duplicate_type_offset(db, helper.type, helper.offset)) + return false; + + db->points[db->count++] = helper; + } + + return true; +} + +static bool parse_csv_line(const char *line_in, modbus_point_t *pt) +{ + char line[MODBUS_MAX_CSV_LINE_LEN]; + char *fields[8]; + size_t field_count = 0; + char *p; + uint32_t raw_address; + + if (line_in == NULL || pt == NULL) + return false; + + strncpy(line, line_in, sizeof(line) - 1U); + line[sizeof(line) - 1U] = '\0'; + + p = line; + fields[field_count++] = p; + + while (*p != '\0' && field_count < 8U) + { + if (*p == ',') + { + *p = '\0'; + fields[field_count++] = p + 1; + } + p++; + } + + if (field_count != 8U) + return false; + + for (size_t i = 0; i < field_count; i++) + trim_whitespace(fields[i]); + + memset(pt, 0, sizeof(*pt)); + pt->control_type = MB_POINT_INVALID; + pt->bit_value = 0U; + pt->reg_value = 0U; + + pt->type = parse_point_type(fields[0]); + if (pt->type == MB_POINT_INVALID) + return false; + + if (!parse_u32(fields[1], &raw_address)) + return false; + pt->raw_address = raw_address; + + if (!normalize_address(pt->type, pt->raw_address, &pt->offset)) + return false; + + if (fields[2][0] == '\0') + return false; + + strncpy(pt->name, fields[2], sizeof(pt->name) - 1U); + pt->name[sizeof(pt->name) - 1U] = '\0'; + + pt->data_type = parse_data_type(fields[3]); + if (pt->data_type == MB_DATA_INVALID) + return false; + + if (!validate_type_and_datatype(pt->type, pt->data_type)) + return false; + + pt->reg_span = data_type_reg_span(pt->data_type); + pt->is_helper = false; + + if (pt->reg_span == 0U) + return false; + + if (fields[4][0] != '\0') + { + uint32_t control_raw; + + if (!parse_u32(fields[4], &control_raw)) + return false; + + pt->has_control_address = true; + pt->control_raw_address = control_raw; + pt->control_type = infer_point_type_from_address(control_raw); + + if (pt->control_type == MB_POINT_INVALID) + return false; + + if (!normalize_address(pt->control_type, pt->control_raw_address, &pt->control_offset)) + return false; + + if (!validate_control_mapping(pt)) + return false; + } + else + { + pt->has_control_address = false; + pt->control_raw_address = 0U; + pt->control_type = MB_POINT_INVALID; + pt->control_offset = 0U; + } + + if (fields[5][0] != '\0') + { + uint32_t pics_raw; + + if (!parse_u32(fields[5], &pics_raw)) + return false; + + pt->has_pics_address = true; + pt->pics_raw_address = pics_raw; + pt->pics_type = infer_point_type_from_address(pics_raw); + + if (pt->pics_type == MB_POINT_INVALID) + return false; + + if (!normalize_address(pt->pics_type, pt->pics_raw_address, &pt->pics_offset)) + return false; + } + else + { + pt->has_pics_address = false; + pt->pics_raw_address = 0U; + pt->pics_type = MB_POINT_INVALID; + pt->pics_offset = 0U; + } + + pt->pics_data_type = parse_pics_data_type(fields[6]); + + if (pt->pics_data_type == PICS_DATA_INVALID) + return false; + + if (pt->pics_data_type == PICS_DATA_STRING) + return false; + + switch (pt->pics_data_type) + { + case PICS_DATA_BOOLEAN: + pt->pics_reg_span = 1U; + break; + case PICS_DATA_INTEGER: + pt->pics_reg_span = 2U; + break; + case PICS_DATA_FLOAT: + pt->pics_reg_span = 4U; + break; + case PICS_DATA_NONE: + pt->pics_reg_span = 0U; + break; + default: + pt->pics_reg_span = 0U; + break; + } + + if (pt->has_pics_address && pt->pics_data_type == PICS_DATA_NONE) + return false; + + if (!pt->has_pics_address && pt->pics_data_type != PICS_DATA_NONE) + return false; + + if (pt->has_pics_address) + { + switch (pt->pics_data_type) + { + case PICS_DATA_INTEGER: + case PICS_DATA_FLOAT: + if (pt->pics_type != MB_POINT_HOLDING_REGISTER) + return false; + break; + + case PICS_DATA_BOOLEAN: + if (pt->pics_type != MB_POINT_COIL && + pt->pics_type != MB_POINT_HOLDING_REGISTER) + return false; + break; + + default: + break; + } + } + + strncpy(pt->notes, fields[7], sizeof(pt->notes) - 1U); + pt->notes[sizeof(pt->notes) - 1U] = '\0'; + + return true; +} + +/* ---------- public API ---------- */ + +void modbus_points_init(modbus_db_t *db) +{ + if (db == NULL) + return; + + db->points = NULL; + db->count = 0; + db->capacity = 0; +} + +void modbus_points_reset(modbus_db_t *db) +{ + if (db == NULL) + return; + + if (db->points != NULL) + { + free(db->points); + db->points = NULL; + } + + db->count = 0; + db->capacity = 0; +} + +bool modbus_points_load(modbus_db_t *db, const char *filename) +{ + FILE *fp; + char line[MODBUS_MAX_CSV_LINE_LEN]; + size_t line_num = 0; + + if (db == NULL || filename == NULL) + return false; + + fp = fopen(filename, "r"); + if (fp == NULL) + { + printf("CSV ERROR: failed to open file: %s\n", filename); + return false; + } + + modbus_points_reset(db); + + db->capacity = MODBUS_MAX_POINTS; + db->points = calloc(db->capacity, sizeof(modbus_point_t)); + if (db->points == NULL) + { + printf("CSV ERROR: failed to allocate point table (%u points)\n", + (unsigned)MODBUS_MAX_POINTS); + fclose(fp); + return false; + } + + while (fgets(line, sizeof(line), fp) != NULL) + { + modbus_point_t pt; + char *newline; + + line_num++; + + newline = strchr(line, '\n'); + if (newline != NULL) + *newline = '\0'; + + newline = strchr(line, '\r'); + if (newline != NULL) + *newline = '\0'; + + trim_whitespace(line); + + if (line[0] == '\0') + continue; + + if (line_num == 1U) + continue; + + { + char temp_line[MODBUS_MAX_CSV_LINE_LEN]; + char *fields[8]; + size_t field_count = 0; + char *p; + bool all_fields_empty = true; + size_t i; + + strncpy(temp_line, line, sizeof(temp_line) - 1U); + temp_line[sizeof(temp_line) - 1U] = '\0'; + + p = temp_line; + fields[field_count++] = p; + + while (*p != '\0' && field_count < 8U) + { + if (*p == ',') + { + *p = '\0'; + fields[field_count++] = p + 1; + } + p++; + } + + if (field_count == 8U) + { + for (i = 0; i < field_count; i++) + { + trim_whitespace(fields[i]); + if (fields[i][0] != '\0') + { + all_fields_empty = false; + break; + } + } + + if (all_fields_empty) + continue; + } + } + + if (db->count >= MODBUS_MAX_POINTS) + { + printf("CSV ERROR line %u: exceeded MODBUS_MAX_POINTS (%u)\n", + (unsigned)line_num, + (unsigned)MODBUS_MAX_POINTS); + fclose(fp); + return false; + } + + if (!parse_csv_line(line, &pt)) + { + printf("CSV ERROR line %u: parse failed: %s\n", + (unsigned)line_num, + line); + fclose(fp); + return false; + } + + if (db_has_duplicate_name(db, pt.name)) + { + printf("CSV ERROR line %u: duplicate name '%s'\n", + (unsigned)line_num, + pt.name); + fclose(fp); + return false; + } + + if (db_has_duplicate_type_offset(db, pt.type, pt.offset)) + { + printf("CSV ERROR line %u: duplicate Modbus address for name '%s' raw=%lu offset=%u\n", + (unsigned)line_num, + pt.name, + (unsigned long)pt.raw_address, + (unsigned)pt.offset); + fclose(fp); + return false; + } + + if (pt.has_pics_address && + db_has_duplicate_pics_range(db, + pt.pics_type, + pt.pics_offset, + pt.pics_reg_span)) + { + printf("CSV ERROR line %u: overlapping PICS range for name '%s' pics_raw=%lu pics_offset=%u span=%u\n", + (unsigned)line_num, + pt.name, + (unsigned long)pt.pics_raw_address, + (unsigned)pt.pics_offset, + (unsigned)pt.pics_reg_span); + fclose(fp); + return false; + } + + db->points[db->count++] = pt; + + if (!append_helper_points(db, &pt)) + { + printf("CSV ERROR line %u: failed to append helper points for '%s'\n", + (unsigned)line_num, + pt.name); + fclose(fp); + return false; + } + } + + fclose(fp); + return true; +} + +const modbus_point_t *modbus_points_find_by_name(const modbus_db_t *db, const char *name) +{ + size_t i; + + if (db == NULL || name == NULL) + return NULL; + + for (i = 0; i < db->count; i++) + { + if (strcmp(db->points[i].name, name) == 0) + return &db->points[i]; + } + + return NULL; +} + +const modbus_point_t *modbus_points_find_by_type_offset(const modbus_db_t *db, + modbus_point_type_t type, + uint16_t offset) +{ + size_t i; + + if (db == NULL) + return NULL; + + for (i = 0; i < db->count; i++) + { + if (db->points[i].type == type && db->points[i].offset == offset) + return &db->points[i]; + } + + return NULL; +} + +modbus_mem_type_t modbus_points_type_to_mem(modbus_point_type_t type) +{ + switch (type) + { + case MB_POINT_COIL: + return MB_MEM_COIL; + case MB_POINT_DISCRETE_INPUT: + return MB_MEM_DISCRETE_INPUT; + case MB_POINT_INPUT_REGISTER: + return MB_MEM_INPUT_REGISTER; + case MB_POINT_HOLDING_REGISTER: + return MB_MEM_HOLDING_REGISTER; + default: + return MB_MEM_COIL; + } +} + +bool modbus_points_is_bit_type(modbus_point_type_t type) +{ + return (type == MB_POINT_COIL || type == MB_POINT_DISCRETE_INPUT); +} + +bool modbus_points_is_reg_type(modbus_point_type_t type) +{ + return (type == MB_POINT_INPUT_REGISTER || type == MB_POINT_HOLDING_REGISTER); +} + +bool modbus_points_is_writable_type(modbus_point_type_t type) +{ + return (type == MB_POINT_COIL || type == MB_POINT_HOLDING_REGISTER); +} \ No newline at end of file diff --git a/main/modbus_points.h b/main/modbus_points.h new file mode 100644 index 0000000..fc9dc34 --- /dev/null +++ b/main/modbus_points.h @@ -0,0 +1,113 @@ +#ifndef MODBUS_POINTS_H +#define MODBUS_POINTS_H + +#include +#include +#include + +#include "modbus_memory.h" + +#define MODBUS_MAX_POINTS 384 +#define MODBUS_MAX_NAME_LEN 32 +#define MODBUS_MAX_NOTES_LEN 64 +#define MODBUS_MAX_CSV_LINE_LEN 256 + +typedef enum +{ + MB_POINT_COIL = 0, + MB_POINT_DISCRETE_INPUT, + MB_POINT_INPUT_REGISTER, + MB_POINT_HOLDING_REGISTER, + MB_POINT_INVALID +} modbus_point_type_t; + +typedef enum +{ + MB_DATA_BOOL = 0, + MB_DATA_UINT16, + MB_DATA_UINT32, + MB_DATA_FLOAT, + MB_DATA_DOUBLE, + MB_DATA_INVALID +} modbus_data_type_t; + +typedef enum +{ + PICS_DATA_NONE = 0, + PICS_DATA_BOOLEAN, + PICS_DATA_INTEGER, /* PICS Integer = 32-bit */ + PICS_DATA_FLOAT, /* PICS Float = 64-bit double */ + PICS_DATA_STRING, + PICS_DATA_INVALID +} pics_data_type_t; + +typedef struct modbus_point +{ + modbus_point_type_t type; + uint32_t raw_address; + uint16_t offset; + + char name[MODBUS_MAX_NAME_LEN]; + modbus_data_type_t data_type; + + uint8_t reg_span; + bool is_helper; + + bool has_control_address; + uint32_t control_raw_address; + modbus_point_type_t control_type; + uint16_t control_offset; + + bool has_pics_address; + uint32_t pics_raw_address; + modbus_point_type_t pics_type; + uint16_t pics_offset; + pics_data_type_t pics_data_type; + uint8_t pics_reg_span; + + uint16_t pics_words[4]; + + char notes[MODBUS_MAX_NOTES_LEN]; + + uint8_t bit_value; + uint16_t reg_value; +} modbus_point_t; + +typedef struct modbus_db +{ + modbus_point_t *points; + size_t count; + size_t capacity; +} modbus_db_t; + +/* Initialize / clear point database */ +void modbus_points_init(modbus_db_t *db); +void modbus_points_reset(modbus_db_t *db); + +/* Load points from CSV */ +bool modbus_points_load(modbus_db_t *db, const char *filename); + +/* Lookup helpers */ +const modbus_point_t *modbus_points_find_by_name(const modbus_db_t *db, + const char *name); + +const modbus_point_t *modbus_points_find_by_type_offset(const modbus_db_t *db, + modbus_point_type_t type, + uint16_t offset); + +/* Optional helpers for PICS staging lookup */ +const modbus_point_t *modbus_points_find_by_pics_offset(const modbus_db_t *db, + modbus_point_type_t type, + uint16_t offset); + +const modbus_point_t *modbus_points_find_by_pics_range(const modbus_db_t *db, + modbus_point_type_t type, + uint16_t offset); + +/* Helpers */ +modbus_mem_type_t modbus_points_type_to_mem(modbus_point_type_t type); +bool modbus_points_is_bit_type(modbus_point_type_t type); +bool modbus_points_is_reg_type(modbus_point_type_t type); +bool modbus_points_is_writable_type(modbus_point_type_t type); + +#endif /* MODBUS_POINTS_H */ \ No newline at end of file diff --git a/main/modbus_rtu.c b/main/modbus_rtu.c new file mode 100644 index 0000000..122a174 --- /dev/null +++ b/main/modbus_rtu.c @@ -0,0 +1,703 @@ +#include "modbus_rtu.h" + +#include + +#include "esp_log.h" + +#define TAG "MODBUS_RTU" + +static uint16_t get_u16_be(const uint8_t *src) +{ + return (uint16_t)(((uint16_t)src[0] << 8) | (uint16_t)src[1]); +} + +static void put_u16_be(uint8_t *dst, uint16_t value) +{ + dst[0] = (uint8_t)((value >> 8) & 0xFF); + dst[1] = (uint8_t)(value & 0xFF); +} + +uint16_t modbus_rtu_crc16(const uint8_t *data, size_t len) +{ + uint16_t crc = 0xFFFF; + size_t i; + int bit; + + for (i = 0; i < len; i++) + { + crc ^= data[i]; + + for (bit = 0; bit < 8; bit++) + { + if (crc & 0x0001U) + crc = (uint16_t)((crc >> 1) ^ 0xA001U); + else + crc >>= 1; + } + } + + return crc; +} + +static size_t build_exception_response(uint8_t unit_id, + uint8_t function_code, + uint8_t exception_code, + uint8_t *resp, + size_t resp_size) +{ + uint16_t crc; + + if (resp == NULL || resp_size < 5U) + return 0U; + + resp[0] = unit_id; + resp[1] = (uint8_t)(function_code | 0x80U); + resp[2] = exception_code; + + crc = modbus_rtu_crc16(resp, 3U); + resp[3] = (uint8_t)(crc & 0xFFU); + resp[4] = (uint8_t)((crc >> 8) & 0xFFU); + + return 5U; +} + +void modbus_rtu_init(modbus_rtu_ctx_t *ctx, uart_port_t uart_num, uint32_t baud_rate) +{ + if (ctx == NULL) + return; + + memset(ctx, 0, sizeof(*ctx)); + ctx->uart_num = uart_num; + ctx->baud_rate = baud_rate; +} + +bool modbus_rtu_add_device(modbus_rtu_ctx_t *ctx, + uint8_t unit_id, + modbus_memory_t *mem, + const char *name) +{ + uint8_t i; + modbus_rtu_device_t *dev; + + if (ctx == NULL || mem == NULL) + return false; + + if (unit_id == 0U || unit_id > 247U) + return false; + + if (ctx->unit_count >= MODBUS_RTU_MAX_DEVICES) + return false; + + for (i = 0; i < ctx->unit_count; i++) + { + if (ctx->devices[i].unit_id == unit_id) + return false; + } + + dev = &ctx->devices[ctx->unit_count++]; + dev->unit_id = unit_id; + dev->mem = mem; + dev->name = name; + + ESP_LOGI(TAG, "Registered RTU device unit_id=%u name=%s", + unit_id, (name != NULL) ? name : "(unnamed)"); + + return true; +} + +modbus_rtu_device_t *modbus_rtu_find_device(modbus_rtu_ctx_t *ctx, uint8_t unit_id) +{ + uint8_t i; + + if (ctx == NULL) + return NULL; + + for (i = 0; i < ctx->unit_count; i++) + { + if (ctx->devices[i].unit_id == unit_id) + return &ctx->devices[i]; + } + + return NULL; +} + +int modbus_rtu_read_frame(modbus_rtu_ctx_t *ctx, + uint8_t *buf, + size_t buf_size, + TickType_t first_byte_timeout) +{ + int total; + int n; + + if (ctx == NULL || buf == NULL || buf_size == 0U) + return -1; + + total = uart_read_bytes(ctx->uart_num, buf, 1, first_byte_timeout); + if (total <= 0) + return 0; + + while ((size_t)total < buf_size) + { + n = uart_read_bytes(ctx->uart_num, + buf + total, + (uint32_t)(buf_size - (size_t)total), + pdMS_TO_TICKS(10)); + if (n <= 0) + break; + + total += n; + } + + return total; +} + +static bool handle_read_bits(uint8_t unit_id, + uint8_t function_code, + modbus_memory_t *mem, + const uint8_t *req, + size_t req_len, + uint8_t *resp, + size_t resp_size, + size_t *resp_len) +{ + uint16_t start_addr; + uint16_t quantity; + uint8_t byte_count; + uint16_t i; + uint16_t crc; + + if (req == NULL || mem == NULL || resp == NULL || resp_len == NULL || req_len < 8U) + return false; + + start_addr = get_u16_be(&req[2]); + quantity = get_u16_be(&req[4]); + + if (quantity == 0U || quantity > 2000U) + { + *resp_len = build_exception_response(unit_id, function_code, 0x03, resp, resp_size); + return true; + } + + byte_count = (uint8_t)((quantity + 7U) / 8U); + + if (resp_size < (size_t)(3U + byte_count + 2U)) + return false; + + resp[0] = unit_id; + resp[1] = function_code; + resp[2] = byte_count; + memset(&resp[3], 0, byte_count); + + for (i = 0; i < quantity; i++) + { + uint8_t bit = 0U; + bool ok; + + if (function_code == 0x01U) + ok = modbus_memory_read_coil(mem, (uint16_t)(start_addr + i), &bit); + else + ok = modbus_memory_read_discrete_input(mem, (uint16_t)(start_addr + i), &bit); + + if (!ok) + { + *resp_len = build_exception_response(unit_id, function_code, 0x02, resp, resp_size); + return true; + } + + if (bit != 0U) + resp[3 + (i / 8U)] |= (uint8_t)(1U << (i % 8U)); + } + + *resp_len = (size_t)(3U + byte_count + 2U); + crc = modbus_rtu_crc16(resp, *resp_len - 2U); + resp[*resp_len - 2U] = (uint8_t)(crc & 0xFFU); + resp[*resp_len - 1U] = (uint8_t)((crc >> 8) & 0xFFU); + + return true; +} + +static bool handle_read_registers(uint8_t unit_id, + uint8_t function_code, + modbus_memory_t *mem, + const uint8_t *req, + size_t req_len, + uint8_t *resp, + size_t resp_size, + size_t *resp_len) +{ + uint16_t start_addr; + uint16_t quantity; + uint8_t byte_count; + uint16_t i; + uint16_t crc; + + if (req == NULL || mem == NULL || resp == NULL || resp_len == NULL || req_len < 8U) + return false; + + start_addr = get_u16_be(&req[2]); + quantity = get_u16_be(&req[4]); + + if (quantity == 0U || quantity > 125U) + { + *resp_len = build_exception_response(unit_id, function_code, 0x03, resp, resp_size); + return true; + } + + byte_count = (uint8_t)(quantity * 2U); + + if (resp_size < (size_t)(3U + byte_count + 2U)) + return false; + + resp[0] = unit_id; + resp[1] = function_code; + resp[2] = byte_count; + + for (i = 0; i < quantity; i++) + { + uint16_t value = 0U; + bool ok; + + if (function_code == 0x03U) + ok = modbus_memory_read_holding_register(mem, (uint16_t)(start_addr + i), &value); + else + ok = modbus_memory_read_input_register(mem, (uint16_t)(start_addr + i), &value); + + if (!ok) + { + *resp_len = build_exception_response(unit_id, function_code, 0x02, resp, resp_size); + return true; + } + + put_u16_be(&resp[3U + (i * 2U)], value); + } + + *resp_len = (size_t)(3U + byte_count + 2U); + crc = modbus_rtu_crc16(resp, *resp_len - 2U); + resp[*resp_len - 2U] = (uint8_t)(crc & 0xFFU); + resp[*resp_len - 1U] = (uint8_t)((crc >> 8) & 0xFFU); + + return true; +} + +static bool handle_write_single_coil(uint8_t unit_id, + modbus_memory_t *mem, + const uint8_t *req, + size_t req_len, + uint8_t *resp, + size_t resp_size, + size_t *resp_len, + bool is_broadcast) +{ + uint16_t addr; + uint16_t raw; + uint16_t crc; + + if (req == NULL || mem == NULL || resp_len == NULL || req_len < 8U) + return false; + + addr = get_u16_be(&req[2]); + raw = get_u16_be(&req[4]); + + if (raw != 0x0000U && raw != 0xFF00U) + { + if (!is_broadcast) + *resp_len = build_exception_response(unit_id, 0x05U, 0x03U, resp, resp_size); + else + *resp_len = 0U; + return true; + } + + if (!modbus_memory_write_coil(mem, addr, (raw == 0xFF00U) ? 1U : 0U)) + { + if (!is_broadcast) + *resp_len = build_exception_response(unit_id, 0x05U, 0x02U, resp, resp_size); + else + *resp_len = 0U; + return true; + } + + if (is_broadcast) + { + *resp_len = 0U; + return true; + } + + if (resp == NULL || resp_size < 8U) + return false; + + memcpy(resp, req, 6U); + resp[0] = unit_id; + + crc = modbus_rtu_crc16(resp, 6U); + resp[6] = (uint8_t)(crc & 0xFFU); + resp[7] = (uint8_t)((crc >> 8) & 0xFFU); + + *resp_len = 8U; + return true; +} + +static bool handle_write_single_register(uint8_t unit_id, + modbus_memory_t *mem, + const uint8_t *req, + size_t req_len, + uint8_t *resp, + size_t resp_size, + size_t *resp_len, + bool is_broadcast) +{ + uint16_t addr; + uint16_t value; + uint16_t crc; + + if (req == NULL || mem == NULL || resp_len == NULL || req_len < 8U) + return false; + + addr = get_u16_be(&req[2]); + value = get_u16_be(&req[4]); + + if (!modbus_memory_write_holding_register(mem, addr, value)) + { + if (!is_broadcast) + *resp_len = build_exception_response(unit_id, 0x06U, 0x02U, resp, resp_size); + else + *resp_len = 0U; + return true; + } + + if (is_broadcast) + { + *resp_len = 0U; + return true; + } + + if (resp == NULL || resp_size < 8U) + return false; + + memcpy(resp, req, 6U); + resp[0] = unit_id; + + crc = modbus_rtu_crc16(resp, 6U); + resp[6] = (uint8_t)(crc & 0xFFU); + resp[7] = (uint8_t)((crc >> 8) & 0xFFU); + + *resp_len = 8U; + return true; +} + +static bool handle_write_multiple_coils(uint8_t unit_id, + modbus_memory_t *mem, + const uint8_t *req, + size_t req_len, + uint8_t *resp, + size_t resp_size, + size_t *resp_len, + bool is_broadcast) +{ + uint16_t start_addr; + uint16_t quantity; + uint8_t byte_count; + uint16_t i; + uint8_t values[1968]; + uint16_t crc; + + if (req == NULL || mem == NULL || resp_len == NULL || req_len < 9U) + return false; + + start_addr = get_u16_be(&req[2]); + quantity = get_u16_be(&req[4]); + byte_count = req[6]; + + if (quantity == 0U || quantity > 0x07B0U) + { + if (!is_broadcast) + *resp_len = build_exception_response(unit_id, 0x0FU, 0x03U, resp, resp_size); + else + *resp_len = 0U; + return true; + } + + if (byte_count != (uint8_t)((quantity + 7U) / 8U)) + { + if (!is_broadcast) + *resp_len = build_exception_response(unit_id, 0x0FU, 0x03U, resp, resp_size); + else + *resp_len = 0U; + return true; + } + + if (req_len < (size_t)(7U + byte_count + 2U)) + return false; + + for (i = 0; i < quantity; i++) + values[i] = (uint8_t)((req[7U + (i / 8U)] >> (i % 8U)) & 0x01U); + + if (!modbus_memory_write_coils(mem, start_addr, quantity, values)) + { + if (!is_broadcast) + *resp_len = build_exception_response(unit_id, 0x0FU, 0x02U, resp, resp_size); + else + *resp_len = 0U; + return true; + } + + if (is_broadcast) + { + *resp_len = 0U; + return true; + } + + if (resp == NULL || resp_size < 8U) + return false; + + resp[0] = unit_id; + resp[1] = 0x0FU; + resp[2] = req[2]; + resp[3] = req[3]; + resp[4] = req[4]; + resp[5] = req[5]; + + crc = modbus_rtu_crc16(resp, 6U); + resp[6] = (uint8_t)(crc & 0xFFU); + resp[7] = (uint8_t)((crc >> 8) & 0xFFU); + + *resp_len = 8U; + return true; +} + +static bool handle_write_multiple_registers(uint8_t unit_id, + modbus_memory_t *mem, + const uint8_t *req, + size_t req_len, + uint8_t *resp, + size_t resp_size, + size_t *resp_len, + bool is_broadcast) +{ + uint16_t start_addr; + uint16_t quantity; + uint8_t byte_count; + uint16_t values[123]; + uint16_t i; + uint16_t crc; + + if (req == NULL || mem == NULL || resp_len == NULL || req_len < 9U) + return false; + + start_addr = get_u16_be(&req[2]); + quantity = get_u16_be(&req[4]); + byte_count = req[6]; + + if (quantity == 0U || quantity > 123U) + { + if (!is_broadcast) + *resp_len = build_exception_response(unit_id, 0x10U, 0x03U, resp, resp_size); + else + *resp_len = 0U; + return true; + } + + if (byte_count != (uint8_t)(quantity * 2U)) + { + if (!is_broadcast) + *resp_len = build_exception_response(unit_id, 0x10U, 0x03U, resp, resp_size); + else + *resp_len = 0U; + return true; + } + + if (req_len < (size_t)(7U + byte_count + 2U)) + return false; + + for (i = 0; i < quantity; i++) + values[i] = get_u16_be(&req[7U + (i * 2U)]); + + if (!modbus_memory_write_holding_registers(mem, start_addr, quantity, values)) + { + if (!is_broadcast) + *resp_len = build_exception_response(unit_id, 0x10U, 0x02U, resp, resp_size); + else + *resp_len = 0U; + return true; + } + + if (is_broadcast) + { + *resp_len = 0U; + return true; + } + + if (resp == NULL || resp_size < 8U) + return false; + + resp[0] = unit_id; + resp[1] = 0x10U; + resp[2] = req[2]; + resp[3] = req[3]; + resp[4] = req[4]; + resp[5] = req[5]; + + crc = modbus_rtu_crc16(resp, 6U); + resp[6] = (uint8_t)(crc & 0xFFU); + resp[7] = (uint8_t)((crc >> 8) & 0xFFU); + + *resp_len = 8U; + return true; +} + +bool modbus_rtu_process_request(modbus_rtu_ctx_t *ctx, + const uint8_t *req, + size_t req_len, + uint8_t *resp, + size_t resp_size, + size_t *resp_len) +{ + uint8_t unit_id; + uint8_t function_code; + bool is_broadcast; + uint16_t rx_crc; + uint16_t calc_crc; + modbus_rtu_device_t *dev; + uint8_t i; + + if (ctx == NULL || req == NULL || resp == NULL || resp_len == NULL) + return false; + + *resp_len = 0U; + + if (req_len < 4U) + return false; + + unit_id = req[0]; + function_code = req[1]; + is_broadcast = (unit_id == 0U); + + rx_crc = (uint16_t)req[req_len - 2U] | + (uint16_t)((uint16_t)req[req_len - 1U] << 8); + + calc_crc = modbus_rtu_crc16(req, req_len - 2U); + if (rx_crc != calc_crc) + { + ESP_LOGW(TAG, "CRC mismatch rx=%04X calc=%04X", rx_crc, calc_crc); + return false; + } + + if (is_broadcast) + { + bool handled = false; + + for (i = 0; i < ctx->unit_count; i++) + { + modbus_memory_t *mem = ctx->devices[i].mem; + size_t ignored_len = 0U; + + if (mem == NULL) + continue; + + switch (function_code) + { + case 0x05U: + handled |= handle_write_single_coil(ctx->devices[i].unit_id, + mem, + req, req_len, + resp, resp_size, + &ignored_len, + true); + break; + + case 0x06U: + handled |= handle_write_single_register(ctx->devices[i].unit_id, + mem, + req, req_len, + resp, resp_size, + &ignored_len, + true); + break; + + case 0x0FU: + handled |= handle_write_multiple_coils(ctx->devices[i].unit_id, + mem, + req, req_len, + resp, resp_size, + &ignored_len, + true); + break; + + case 0x10U: + handled |= handle_write_multiple_registers(ctx->devices[i].unit_id, + mem, + req, req_len, + resp, resp_size, + &ignored_len, + true); + break; + + default: + break; + } + } + + *resp_len = 0U; + return handled; + } + + dev = modbus_rtu_find_device(ctx, unit_id); + if (dev == NULL || dev->mem == NULL) + return false; + + switch (function_code) + { + case 0x01U: + case 0x02U: + return handle_read_bits(unit_id, + function_code, + dev->mem, + req, req_len, + resp, resp_size, + resp_len); + + case 0x03U: + case 0x04U: + return handle_read_registers(unit_id, + function_code, + dev->mem, + req, req_len, + resp, resp_size, + resp_len); + + case 0x05U: + return handle_write_single_coil(unit_id, + dev->mem, + req, req_len, + resp, resp_size, + resp_len, + false); + + case 0x06U: + return handle_write_single_register(unit_id, + dev->mem, + req, req_len, + resp, resp_size, + resp_len, + false); + + case 0x0FU: + return handle_write_multiple_coils(unit_id, + dev->mem, + req, req_len, + resp, resp_size, + resp_len, + false); + + case 0x10U: + return handle_write_multiple_registers(unit_id, + dev->mem, + req, req_len, + resp, resp_size, + resp_len, + false); + + default: + *resp_len = build_exception_response(unit_id, function_code, 0x01U, resp, resp_size); + return true; + } +} \ No newline at end of file diff --git a/main/modbus_rtu.h b/main/modbus_rtu.h new file mode 100644 index 0000000..adcaade --- /dev/null +++ b/main/modbus_rtu.h @@ -0,0 +1,63 @@ +#ifndef MODBUS_RTU_H +#define MODBUS_RTU_H + +#include +#include +#include + +#include "driver/uart.h" +#include "freertos/FreeRTOS.h" +#include "freertos/task.h" + +#include "modbus_memory.h" + +#ifdef __cplusplus +extern "C" { +#endif + +#define MODBUS_RTU_MAX_ADU_LEN 256 +#define MODBUS_RTU_MAX_DEVICES 16 + +typedef struct +{ + uint8_t unit_id; + modbus_memory_t *mem; + const char *name; +} modbus_rtu_device_t; + +typedef struct +{ + uart_port_t uart_num; + uint32_t baud_rate; + uint8_t unit_count; + modbus_rtu_device_t devices[MODBUS_RTU_MAX_DEVICES]; +} modbus_rtu_ctx_t; + +void modbus_rtu_init(modbus_rtu_ctx_t *ctx, uart_port_t uart_num, uint32_t baud_rate); + +bool modbus_rtu_add_device(modbus_rtu_ctx_t *ctx, + uint8_t unit_id, + modbus_memory_t *mem, + const char *name); + +modbus_rtu_device_t *modbus_rtu_find_device(modbus_rtu_ctx_t *ctx, uint8_t unit_id); + +int modbus_rtu_read_frame(modbus_rtu_ctx_t *ctx, + uint8_t *buf, + size_t buf_size, + TickType_t first_byte_timeout); + +bool modbus_rtu_process_request(modbus_rtu_ctx_t *ctx, + const uint8_t *req, + size_t req_len, + uint8_t *resp, + size_t resp_size, + size_t *resp_len); + +uint16_t modbus_rtu_crc16(const uint8_t *data, size_t len); + +#ifdef __cplusplus +} +#endif + +#endif /* MODBUS_RTU_H */ \ No newline at end of file diff --git a/modbus_uart.txt b/modbus_uart.txt new file mode 100644 index 0000000..c87e8a2 --- /dev/null +++ b/modbus_uart.txt @@ -0,0 +1,32 @@ +if (cfg->rtu.de_pin >= 0) + { + ret = uart_set_mode(uart_num, UART_MODE_RS485_HALF_DUPLEX); + if (ret != ESP_OK) + { + ESP_LOGE(TAG, "uart_set_mode(RS485_HALF_DUPLEX) failed: %s", esp_err_to_name(ret)); + return ret; + } + + ESP_LOGI(TAG, "UART RS485 half-duplex mode enabled (DE pin=%d)", cfg->rtu.de_pin); + } + else + { + ESP_LOGI(TAG, "UART normal mode enabled (shield auto-direction assumed)"); + } + + if (resp_len > 0U) + { + int written = uart_write_bytes(g_rtu_ctx.uart_num, + (const char *)tx_buf, + (uint32_t)resp_len); + + ESP_LOGI(TAG, "UART wrote %d bytes", written); + + if (written < 0) + { + ESP_LOGW(TAG, "uart_write_bytes failed"); + continue; + } + + ESP_ERROR_CHECK(uart_wait_tx_done(g_rtu_ctx.uart_num, pdMS_TO_TICKS(100))); + } \ No newline at end of file diff --git a/partitions.csv b/partitions.csv new file mode 100644 index 0000000..885c4ef --- /dev/null +++ b/partitions.csv @@ -0,0 +1,5 @@ +# Name, Type, SubType, Offset, Size, Flags +nvs, data, nvs, , 0x6000, +phy_init, data, phy, , 0x1000, +factory, app, factory, , 1M, +spiffs, data, spiffs, , 0xF0000, \ No newline at end of file diff --git a/sdkconfig b/sdkconfig new file mode 100644 index 0000000..63552e0 --- /dev/null +++ b/sdkconfig @@ -0,0 +1,3453 @@ +# +# Automatically generated file. DO NOT EDIT. +# Espressif IoT Development Framework (ESP-IDF) 6.0.0 Project Configuration +# +# default: +CONFIG_SOC_CAPS_ECO_VER_MAX=301 +# default: +CONFIG_SOC_ADC_SUPPORTED=y +# default: +CONFIG_SOC_DAC_SUPPORTED=y +# default: +CONFIG_SOC_UART_SUPPORTED=y +# default: +CONFIG_SOC_MCPWM_SUPPORTED=y +# default: +CONFIG_SOC_GPTIMER_SUPPORTED=y +# default: +CONFIG_SOC_SDMMC_HOST_SUPPORTED=y +# default: +CONFIG_SOC_BT_SUPPORTED=y +# default: +CONFIG_SOC_PCNT_SUPPORTED=y +# default: +CONFIG_SOC_PHY_SUPPORTED=y +# default: +CONFIG_SOC_WIFI_SUPPORTED=y +# default: +CONFIG_SOC_SDIO_SLAVE_SUPPORTED=y +# default: +CONFIG_SOC_TWAI_SUPPORTED=y +# default: +CONFIG_SOC_EFUSE_SUPPORTED=y +# default: +CONFIG_SOC_EMAC_SUPPORTED=y +# default: +CONFIG_SOC_ULP_SUPPORTED=y +# default: +CONFIG_SOC_CCOMP_TIMER_SUPPORTED=y +# default: +CONFIG_SOC_RTC_FAST_MEM_SUPPORTED=y +# default: +CONFIG_SOC_RTC_SLOW_MEM_SUPPORTED=y +# default: +CONFIG_SOC_RTC_MEM_SUPPORTED=y +# default: +CONFIG_SOC_RTC_TIMER_V1_SUPPORTED=y +# default: +CONFIG_SOC_I2S_SUPPORTED=y +# default: +CONFIG_SOC_I2S_I80_LCD_SUPPORTED=y +# default: +CONFIG_SOC_LCD_I80_SUPPORTED=y +# default: +CONFIG_SOC_RMT_SUPPORTED=y +# default: +CONFIG_SOC_SDM_SUPPORTED=y +# default: +CONFIG_SOC_GPSPI_SUPPORTED=y +# default: +CONFIG_SOC_LEDC_SUPPORTED=y +# default: +CONFIG_SOC_I2C_SUPPORTED=y +# default: +CONFIG_SOC_SUPPORT_COEXISTENCE=y +# default: +CONFIG_SOC_AES_SUPPORTED=y +# default: +CONFIG_SOC_MPI_SUPPORTED=y +# default: +CONFIG_SOC_SHA_SUPPORTED=y +# default: +CONFIG_SOC_FLASH_ENC_SUPPORTED=y +# default: +CONFIG_SOC_SECURE_BOOT_SUPPORTED=y +# default: +CONFIG_SOC_TOUCH_SENSOR_SUPPORTED=y +# default: +CONFIG_SOC_BOD_SUPPORTED=y +# default: +CONFIG_SOC_ULP_FSM_SUPPORTED=y +# default: +CONFIG_SOC_CLK_TREE_SUPPORTED=y +# default: +CONFIG_SOC_MPU_SUPPORTED=y +# default: +CONFIG_SOC_WDT_SUPPORTED=y +# default: +CONFIG_SOC_SPI_FLASH_SUPPORTED=y +# default: +CONFIG_SOC_RNG_SUPPORTED=y +# default: +CONFIG_SOC_LIGHT_SLEEP_SUPPORTED=y +# default: +CONFIG_SOC_DEEP_SLEEP_SUPPORTED=y +# default: +CONFIG_SOC_LP_PERIPH_SHARE_INTERRUPT=y +# default: +CONFIG_SOC_PM_SUPPORTED=y +# default: +CONFIG_SOC_DPORT_WORKAROUND_DIS_INTERRUPT_LVL=5 +# default: +CONFIG_SOC_XTAL_SUPPORT_26M=y +# default: +CONFIG_SOC_XTAL_SUPPORT_40M=y +# default: +CONFIG_SOC_ADC_RTC_CTRL_SUPPORTED=y +# default: +CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED=y +# default: +CONFIG_SOC_ADC_DMA_SUPPORTED=y +# default: +CONFIG_SOC_ADC_PERIPH_NUM=2 +# default: +CONFIG_SOC_ADC_MAX_CHANNEL_NUM=10 +# default: +CONFIG_SOC_ADC_ATTEN_NUM=4 +# default: +CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM=2 +# default: +CONFIG_SOC_ADC_PATT_LEN_MAX=16 +# default: +CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH=9 +# default: +CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH=12 +# default: +CONFIG_SOC_ADC_DIGI_RESULT_BYTES=2 +# default: +CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV=4 +# default: +CONFIG_SOC_ADC_DIGI_MONITOR_NUM=0 +# default: +CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH=2000000 +# default: +CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW=20000 +# default: +CONFIG_SOC_ADC_RTC_MIN_BITWIDTH=9 +# default: +CONFIG_SOC_ADC_RTC_MAX_BITWIDTH=12 +# default: +CONFIG_SOC_ADC_SHARED_POWER=y +# default: +CONFIG_SOC_BROWNOUT_RESET_SUPPORTED=y +# default: +CONFIG_SOC_SHARED_IDCACHE_SUPPORTED=y +# default: +CONFIG_SOC_IDCACHE_PER_CORE=y +# default: +CONFIG_SOC_CPU_CORES_NUM=2 +# default: +CONFIG_SOC_CPU_INTR_NUM=32 +# default: +CONFIG_SOC_CPU_HAS_FPU=y +# default: +CONFIG_SOC_HP_CPU_HAS_MULTIPLE_CORES=y +# default: +CONFIG_SOC_CPU_BREAKPOINTS_NUM=2 +# default: +CONFIG_SOC_CPU_WATCHPOINTS_NUM=2 +# default: +CONFIG_SOC_CPU_WATCHPOINT_MAX_REGION_SIZE=0x40 +# default: +CONFIG_SOC_DAC_CHAN_NUM=2 +# default: +CONFIG_SOC_DAC_RESOLUTION=8 +# default: +CONFIG_SOC_DAC_DMA_16BIT_ALIGN=y +# default: +CONFIG_SOC_GPIO_PORT=1 +# default: +CONFIG_SOC_GPIO_PIN_COUNT=40 +# default: +CONFIG_SOC_GPIO_VALID_GPIO_MASK=0xFFFFFFFFFF +# default: +CONFIG_SOC_GPIO_IN_RANGE_MAX=39 +# default: +CONFIG_SOC_GPIO_OUT_RANGE_MAX=33 +# default: +CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK=0xEF0FEA +# default: +CONFIG_SOC_GPIO_CLOCKOUT_BY_IO_MUX=y +# default: +CONFIG_SOC_GPIO_CLOCKOUT_CHANNEL_NUM=3 +# default: +CONFIG_SOC_I2C_NUM=2 +# default: +CONFIG_SOC_HP_I2C_NUM=2 +# default: +CONFIG_SOC_I2C_SUPPORT_APB=y +# default: +CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR=y +# default: +CONFIG_SOC_I2C_SUPPORT_SLAVE=y +# default: +CONFIG_SOC_I2C_STOP_INDEPENDENT=y +# default: +CONFIG_SOC_I2S_HW_VERSION_1=y +# default: +CONFIG_SOC_I2S_SUPPORTS_APLL=y +# default: +CONFIG_SOC_I2S_SUPPORTS_PDM=y +# default: +CONFIG_SOC_I2S_SUPPORTS_PDM_TX=y +# default: +CONFIG_SOC_I2S_SUPPORTS_PCM2PDM=y +# default: +CONFIG_SOC_I2S_SUPPORTS_PDM_RX=y +# default: +CONFIG_SOC_I2S_SUPPORTS_PDM2PCM=y +# default: +CONFIG_SOC_I2S_PDM_MAX_TX_LINES=1 +# default: +CONFIG_SOC_I2S_PDM_MAX_RX_LINES=1 +# default: +CONFIG_SOC_LEDC_HAS_TIMER_SPECIFIC_MUX=y +# default: +CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK=y +# default: +CONFIG_SOC_LEDC_SUPPORT_REF_TICK=y +# default: +CONFIG_SOC_LEDC_SUPPORT_HS_MODE=y +# default: +CONFIG_SOC_LEDC_TIMER_NUM=4 +# default: +CONFIG_SOC_LEDC_CHANNEL_NUM=8 +# default: +CONFIG_SOC_LEDC_TIMER_BIT_WIDTH=20 +# default: +CONFIG_SOC_MMU_PERIPH_NUM=2 +# default: +CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM=3 +# default: +CONFIG_SOC_MPU_MIN_REGION_SIZE=0x20000000 +# default: +CONFIG_SOC_MPU_REGIONS_MAX_NUM=8 +# default: +CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL=64 +# default: +CONFIG_SOC_RTCIO_PIN_COUNT=18 +# default: +CONFIG_SOC_RTCIO_INPUT_OUTPUT_SUPPORTED=y +# default: +CONFIG_SOC_RTCIO_HOLD_SUPPORTED=y +# default: +CONFIG_SOC_RTCIO_WAKE_SUPPORTED=y +# default: +CONFIG_SOC_SPI_HD_BOTH_INOUT_SUPPORTED=y +# default: +CONFIG_SOC_SPI_AS_CS_SUPPORTED=y +# default: +CONFIG_SOC_SPI_PERIPH_NUM=3 +# default: +CONFIG_SOC_SPI_DMA_CHAN_NUM=2 +# default: +CONFIG_SOC_SPI_MAX_CS_NUM=3 +# default: +CONFIG_SOC_SPI_SUPPORT_CLK_APB=y +# default: +CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE=64 +# default: +CONFIG_SOC_SPI_MAX_PRE_DIVIDER=8192 +# default: +CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED=y +# default: +CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED=y +# default: +CONFIG_SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED=y +# default: +CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED=y +# default: +CONFIG_SOC_LP_TIMER_BIT_WIDTH_LO=32 +# default: +CONFIG_SOC_LP_TIMER_BIT_WIDTH_HI=16 +# default: +CONFIG_SOC_TOUCH_SENSOR_VERSION=1 +# default: +CONFIG_SOC_TOUCH_MIN_CHAN_ID=0 +# default: +CONFIG_SOC_TOUCH_MAX_CHAN_ID=9 +# default: +CONFIG_SOC_TOUCH_SUPPORT_SLEEP_WAKEUP=y +# default: +CONFIG_SOC_TOUCH_SAMPLE_CFG_NUM=1 +# default: +CONFIG_SOC_TWAI_CONTROLLER_NUM=1 +# default: +CONFIG_SOC_TWAI_MASK_FILTER_NUM=1 +# default: +CONFIG_SOC_UART_NUM=3 +# default: +CONFIG_SOC_UART_HP_NUM=3 +# default: +CONFIG_SOC_UART_SUPPORT_APB_CLK=y +# default: +CONFIG_SOC_UART_SUPPORT_REF_TICK=y +# default: +CONFIG_SOC_UART_FIFO_LEN=128 +# default: +CONFIG_SOC_UART_BITRATE_MAX=5000000 +# default: +CONFIG_SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE=y +# default: +CONFIG_SOC_SPIRAM_SUPPORTED=y +# default: +CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE=y +# default: +CONFIG_SOC_SHA_SUPPORT_PARALLEL_ENG=y +# default: +CONFIG_SOC_SHA_ENDIANNESS_BE=y +# default: +CONFIG_SOC_SHA_SUPPORT_SHA1=y +# default: +CONFIG_SOC_SHA_SUPPORT_SHA256=y +# default: +CONFIG_SOC_SHA_SUPPORT_SHA384=y +# default: +CONFIG_SOC_SHA_SUPPORT_SHA512=y +# default: +CONFIG_SOC_MPI_MEM_BLOCKS_NUM=4 +# default: +CONFIG_SOC_MPI_OPERATIONS_NUM=1 +# default: +CONFIG_SOC_RSA_MAX_BIT_LEN=4096 +# default: +CONFIG_SOC_AES_SUPPORT_AES_128=y +# default: +CONFIG_SOC_AES_SUPPORT_AES_192=y +# default: +CONFIG_SOC_AES_SUPPORT_AES_256=y +# default: +CONFIG_SOC_SECURE_BOOT_V1=y +# default: +CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS=1 +# default: +CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX=32 +# default: +CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE=21 +# default: +CONFIG_SOC_PM_SUPPORT_EXT0_WAKEUP=y +# default: +CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP=y +# default: +CONFIG_SOC_PM_SUPPORT_EXT_WAKEUP=y +# default: +CONFIG_SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP=y +# default: +CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD=y +# default: +CONFIG_SOC_PM_SUPPORT_RTC_FAST_MEM_PD=y +# default: +CONFIG_SOC_PM_SUPPORT_RTC_SLOW_MEM_PD=y +# default: +CONFIG_SOC_PM_SUPPORT_RC_FAST_PD=y +# default: +CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD=y +# default: +CONFIG_SOC_PM_SUPPORT_MODEM_PD=y +# default: +CONFIG_SOC_CONFIGURABLE_VDDSDIO_SUPPORTED=y +# default: +CONFIG_SOC_PM_MODEM_PD_BY_SW=y +# default: +CONFIG_SOC_CLK_APLL_SUPPORTED=y +# default: +CONFIG_SOC_CLK_RC_FAST_D256_SUPPORTED=y +# default: +CONFIG_SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256=y +# default: +CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION=y +# default: +CONFIG_SOC_CLK_XTAL32K_SUPPORTED=y +# default: +CONFIG_SOC_CLK_LP_FAST_SUPPORT_XTAL_D4=y +# default: +CONFIG_SOC_SDMMC_USE_IOMUX=y +# default: +CONFIG_SOC_SDMMC_NUM_SLOTS=2 +# default: +CONFIG_SOC_SDMMC_DATA_WIDTH_MAX=8 +# default: +CONFIG_SOC_WIFI_WAPI_SUPPORT=y +# default: +CONFIG_SOC_WIFI_CSI_SUPPORT=y +# default: +CONFIG_SOC_WIFI_MESH_SUPPORT=y +# default: +CONFIG_SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW=y +# default: +CONFIG_SOC_WIFI_NAN_SUPPORT=y +# default: +CONFIG_SOC_BLE_SUPPORTED=y +# default: +CONFIG_SOC_BLE_MESH_SUPPORTED=y +# default: +CONFIG_SOC_BT_CLASSIC_SUPPORTED=y +# default: +CONFIG_SOC_BLUFI_SUPPORTED=y +# default: +CONFIG_SOC_BT_H2C_ENC_KEY_CTRL_ENH_VSC_SUPPORTED=y +# default: +CONFIG_SOC_BLE_MULTI_CONN_OPTIMIZATION=y +# default: +CONFIG_SOC_ULP_HAS_ADC=y +# default: +CONFIG_SOC_PHY_COMBO_MODULE=y +# default: +CONFIG_SOC_EMAC_RMII_CLK_OUT_INTERNAL_LOOPBACK=y +# default: +CONFIG_IDF_CMAKE=y +# default: +CONFIG_IDF_TOOLCHAIN="gcc" +# default: +CONFIG_IDF_TOOLCHAIN_GCC=y +# default: +CONFIG_IDF_TARGET_ARCH_XTENSA=y +# default: +CONFIG_IDF_TARGET_ARCH="xtensa" +# default: +CONFIG_IDF_TARGET="esp32" +# default: +CONFIG_IDF_INIT_VERSION="6.0.0" +# default: +CONFIG_IDF_TARGET_ESP32=y +# default: +CONFIG_IDF_FIRMWARE_CHIP_ID=0x0000 + +# +# Build type +# +# default: +CONFIG_APP_BUILD_TYPE_APP_2NDBOOT=y +# default: +# CONFIG_APP_BUILD_TYPE_RAM is not set +# default: +CONFIG_APP_BUILD_GENERATE_BINARIES=y +# default: +CONFIG_APP_BUILD_BOOTLOADER=y +# default: +CONFIG_APP_BUILD_USE_FLASH_SECTIONS=y +# default: +# CONFIG_APP_REPRODUCIBLE_BUILD is not set +# default: +# CONFIG_APP_NO_BLOBS is not set +# default: +# CONFIG_APP_COMPATIBLE_PRE_V2_1_BOOTLOADERS is not set +# default: +# CONFIG_APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS is not set +# end of Build type + +# +# Bootloader config +# + +# +# Bootloader manager +# +# default: +CONFIG_BOOTLOADER_COMPILE_TIME_DATE=y +# default: +CONFIG_BOOTLOADER_PROJECT_VER=1 +# end of Bootloader manager + +# +# Application Rollback +# +# default: +# CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE is not set +# end of Application Rollback + +# +# Recovery Bootloader and Rollback +# +# end of Recovery Bootloader and Rollback + +# default: +CONFIG_BOOTLOADER_OFFSET_IN_FLASH=0x1000 +# default: +CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE=y +# default: +# CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG is not set +# default: +# CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF is not set + +# +# Log +# +# default: +CONFIG_BOOTLOADER_LOG_VERSION_1=y +# default: +CONFIG_BOOTLOADER_LOG_VERSION=1 +# default: +# CONFIG_BOOTLOADER_LOG_LEVEL_NONE is not set +# default: +# CONFIG_BOOTLOADER_LOG_LEVEL_ERROR is not set +# default: +# CONFIG_BOOTLOADER_LOG_LEVEL_WARN is not set +# default: +CONFIG_BOOTLOADER_LOG_LEVEL_INFO=y +# default: +# CONFIG_BOOTLOADER_LOG_LEVEL_DEBUG is not set +# default: +# CONFIG_BOOTLOADER_LOG_LEVEL_VERBOSE is not set +# default: +CONFIG_BOOTLOADER_LOG_LEVEL=3 + +# +# Format +# +# default: +# CONFIG_BOOTLOADER_LOG_COLORS is not set +# default: +CONFIG_BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS=y +# end of Format + +# +# Settings +# +# default: +CONFIG_BOOTLOADER_LOG_MODE_TEXT_EN=y +# default: +CONFIG_BOOTLOADER_LOG_MODE_TEXT=y +# end of Settings +# end of Log + +# default: +CONFIG_BOOTLOADER_CPU_CLK_FREQ_MHZ=80 + +# +# Serial Flash Configurations +# +# default: +# CONFIG_BOOTLOADER_FLASH_DC_AWARE is not set +# default: +CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT=y +# end of Serial Flash Configurations + +# default: +# CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_8V is not set +# default: +CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V=y +# default: +# CONFIG_BOOTLOADER_FACTORY_RESET is not set +# default: +# CONFIG_BOOTLOADER_APP_TEST is not set +# default: +CONFIG_BOOTLOADER_REGION_PROTECTION_ENABLE=y +# default: +CONFIG_BOOTLOADER_WDT_ENABLE=y +# default: +# CONFIG_BOOTLOADER_WDT_DISABLE_IN_USER_CODE is not set +# default: +CONFIG_BOOTLOADER_WDT_TIME_MS=9000 +# default: +# CONFIG_BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP is not set +# default: +# CONFIG_BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON is not set +# default: +# CONFIG_BOOTLOADER_SKIP_VALIDATE_ALWAYS is not set +# default: +CONFIG_BOOTLOADER_RESERVE_RTC_SIZE=0 +# default: +# CONFIG_BOOTLOADER_CUSTOM_RESERVE_RTC is not set +# end of Bootloader config + +# +# Security features +# +# default: +CONFIG_SECURE_BOOT_V1_SUPPORTED=y +# default: +# CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT is not set +# default: +# CONFIG_SECURE_BOOT is not set +# default: +# CONFIG_SECURE_FLASH_ENC_ENABLED is not set +# end of Security features + +# +# Application manager +# +# default: +CONFIG_APP_COMPILE_TIME_DATE=y +# default: +# CONFIG_APP_EXCLUDE_PROJECT_VER_VAR is not set +# default: +# CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR is not set +# default: +# CONFIG_APP_PROJECT_VER_FROM_CONFIG is not set +# default: +CONFIG_APP_RETRIEVE_LEN_ELF_SHA=9 +# end of Application manager + +# default: +CONFIG_ESP_ROM_HAS_CRC_LE=y +# default: +CONFIG_ESP_ROM_HAS_CRC_BE=y +# default: +CONFIG_ESP_ROM_HAS_MZ_CRC32=y +# default: +CONFIG_ESP_ROM_HAS_JPEG_DECODE=y +# default: +CONFIG_ESP_ROM_HAS_UART_BUF_SWITCH=y +# default: +CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND=y +# default: +CONFIG_ESP_ROM_HAS_NEWLIB=y +# default: +CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT=y +# default: +CONFIG_ESP_ROM_HAS_NEWLIB_32BIT_TIME=y +# default: +CONFIG_ESP_ROM_HAS_SW_FLOAT=y +# default: +CONFIG_ESP_ROM_USB_OTG_NUM=-1 +# default: +CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM=-1 +# default: +CONFIG_ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB=y +# default: +CONFIG_ESP_ROM_HAS_OUTPUT_PUTC_FUNC=y + +# +# Serial flasher config +# +# default: +# CONFIG_ESPTOOLPY_NO_STUB is not set +# default: +# CONFIG_ESPTOOLPY_FLASHMODE_QIO is not set +# default: +# CONFIG_ESPTOOLPY_FLASHMODE_QOUT is not set +# default: +CONFIG_ESPTOOLPY_FLASHMODE_DIO=y +# default: +# CONFIG_ESPTOOLPY_FLASHMODE_DOUT is not set +# default: +CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR=y +# default: +CONFIG_ESPTOOLPY_FLASHMODE="dio" +# default: +# CONFIG_ESPTOOLPY_FLASHFREQ_80M is not set +# default: +CONFIG_ESPTOOLPY_FLASHFREQ_40M=y +# default: +# CONFIG_ESPTOOLPY_FLASHFREQ_26M is not set +# default: +# CONFIG_ESPTOOLPY_FLASHFREQ_20M is not set +# default: +CONFIG_ESPTOOLPY_FLASHFREQ="40m" +# default: +# CONFIG_ESPTOOLPY_FLASHSIZE_1MB is not set +# default: +CONFIG_ESPTOOLPY_FLASHSIZE_2MB=y +# default: +# CONFIG_ESPTOOLPY_FLASHSIZE_4MB is not set +# default: +# CONFIG_ESPTOOLPY_FLASHSIZE_8MB is not set +# default: +# CONFIG_ESPTOOLPY_FLASHSIZE_16MB is not set +# default: +# CONFIG_ESPTOOLPY_FLASHSIZE_32MB is not set +# default: +# CONFIG_ESPTOOLPY_FLASHSIZE_64MB is not set +# default: +# CONFIG_ESPTOOLPY_FLASHSIZE_128MB is not set +# default: +CONFIG_ESPTOOLPY_FLASHSIZE="2MB" +# default: +# CONFIG_ESPTOOLPY_HEADER_FLASHSIZE_UPDATE is not set +# default: +CONFIG_ESPTOOLPY_BEFORE_RESET=y +# default: +# CONFIG_ESPTOOLPY_BEFORE_NORESET is not set +# default: +CONFIG_ESPTOOLPY_BEFORE="default-reset" +# default: +CONFIG_ESPTOOLPY_AFTER_RESET=y +# default: +# CONFIG_ESPTOOLPY_AFTER_NORESET is not set +# default: +CONFIG_ESPTOOLPY_AFTER="hard-reset" +# default: +CONFIG_ESPTOOLPY_MONITOR_BAUD=115200 +# end of Serial flasher config + +# +# Partition Table +# +# CONFIG_PARTITION_TABLE_SINGLE_APP is not set +# CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE is not set +# CONFIG_PARTITION_TABLE_TWO_OTA is not set +# CONFIG_PARTITION_TABLE_TWO_OTA_LARGE is not set +CONFIG_PARTITION_TABLE_CUSTOM=y +# default: +CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="partitions.csv" +# default: +CONFIG_PARTITION_TABLE_FILENAME="partitions.csv" +# default: +CONFIG_PARTITION_TABLE_OFFSET=0x8000 +# default: +CONFIG_PARTITION_TABLE_MD5=y +# end of Partition Table + +# +# Compiler options +# +# default: +CONFIG_COMPILER_OPTIMIZATION_DEBUG=y +# default: +# CONFIG_COMPILER_OPTIMIZATION_SIZE is not set +# default: +# CONFIG_COMPILER_OPTIMIZATION_PERF is not set +# default: +# CONFIG_COMPILER_OPTIMIZATION_NONE is not set +# default: +CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE=y +# default: +# CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT is not set +# default: +# CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE is not set +# default: +# CONFIG_COMPILER_ASSERT_NDEBUG_EVALUATE is not set +# default: +CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB=y +# default: +CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL=2 +# default: +# CONFIG_COMPILER_OPTIMIZATION_CHECKS_SILENT is not set +# default: +CONFIG_COMPILER_HIDE_PATHS_MACROS=y +# default: +# CONFIG_COMPILER_CXX_EXCEPTIONS is not set +# default: +# CONFIG_COMPILER_CXX_RTTI is not set +# default: +CONFIG_COMPILER_STACK_CHECK_MODE_NONE=y +# default: +# CONFIG_COMPILER_STACK_CHECK_MODE_NORM is not set +# default: +# CONFIG_COMPILER_STACK_CHECK_MODE_STRONG is not set +# default: +# CONFIG_COMPILER_STACK_CHECK_MODE_ALL is not set +# default: +# CONFIG_COMPILER_NO_MERGE_CONSTANTS is not set +# default: +# CONFIG_COMPILER_WARN_WRITE_STRINGS is not set +# default: +# CONFIG_COMPILER_DISABLE_DEFAULT_ERRORS is not set +# default: +# CONFIG_COMPILER_DISABLE_GCC12_WARNINGS is not set +# default: +# CONFIG_COMPILER_DISABLE_GCC13_WARNINGS is not set +# default: +# CONFIG_COMPILER_DISABLE_GCC14_WARNINGS is not set +# default: +# CONFIG_COMPILER_DISABLE_GCC15_WARNINGS is not set +# default: +# CONFIG_COMPILER_DUMP_RTL_FILES is not set +# default: +CONFIG_COMPILER_RT_LIB_GCCLIB=y +# default: +CONFIG_COMPILER_RT_LIB_NAME="gcc" +# default: +CONFIG_COMPILER_ORPHAN_SECTIONS_ERROR=y +# default: +# CONFIG_COMPILER_ORPHAN_SECTIONS_WARNING is not set +# default: +# CONFIG_COMPILER_ORPHAN_SECTIONS_PLACE is not set +# default: +# CONFIG_COMPILER_STATIC_ANALYZER is not set +# default: +CONFIG_COMPILER_CXX_GLIBCXX_CONSTEXPR_NO_CHANGE=y +# default: +# CONFIG_COMPILER_CXX_GLIBCXX_CONSTEXPR_COLD_CONSTEXPR is not set +# default: +# CONFIG_COMPILER_CXX_GLIBCXX_CONSTEXPR_COLD is not set +# end of Compiler options + +# +# Component config +# + +# +# Bluetooth +# +# default: +# CONFIG_BT_ENABLED is not set + +# +# Common Options +# + +# +# BLE Log +# +# default: +# CONFIG_BLE_LOG_ENABLED is not set +# end of BLE Log + +# default: +# CONFIG_BT_BLE_LOG_SPI_OUT_ENABLED is not set +# default: +# CONFIG_BT_BLE_LOG_UHCI_OUT_ENABLED is not set +# default: +# CONFIG_BT_LE_USED_MEM_STATISTICS_ENABLED is not set +# end of Common Options +# end of Bluetooth + +# +# Console Library +# +# default: +# CONFIG_CONSOLE_SORTED_HELP is not set +# end of Console Library + +# +# Legacy Driver Configurations +# + +# +# Legacy TWAI Driver Configurations +# +# default: +# CONFIG_TWAI_ISR_IN_IRAM_LEGACY is not set +# default: +# CONFIG_TWAI_SUPPRESS_DEPRECATE_WARN is not set +# default: +# CONFIG_TWAI_SKIP_LEGACY_CONFLICT_CHECK is not set +# end of Legacy TWAI Driver Configurations + +# +# Legacy I2C Driver Configurations +# +# default: +# CONFIG_I2C_SUPPRESS_DEPRECATE_WARN is not set +# default: +# CONFIG_I2C_SKIP_LEGACY_CONFLICT_CHECK is not set +# end of Legacy I2C Driver Configurations + +# +# Legacy Touch Sensor Driver Configurations +# +# default: +# CONFIG_TOUCH_SUPPRESS_DEPRECATE_WARN is not set +# default: +# CONFIG_TOUCH_SKIP_LEGACY_CONFLICT_CHECK is not set +# end of Legacy Touch Sensor Driver Configurations +# end of Legacy Driver Configurations + +# +# eFuse Bit Manager +# +# default: +# CONFIG_EFUSE_CUSTOM_TABLE is not set +# default: +# CONFIG_EFUSE_VIRTUAL is not set +# default: +# CONFIG_EFUSE_CODE_SCHEME_COMPAT_NONE is not set +# default: +CONFIG_EFUSE_CODE_SCHEME_COMPAT_3_4=y +# default: +# CONFIG_EFUSE_CODE_SCHEME_COMPAT_REPEAT is not set +# default: +CONFIG_EFUSE_MAX_BLK_LEN=192 +# end of eFuse Bit Manager + +# +# ESP-TLS +# +# default: +CONFIG_ESP_TLS_USING_MBEDTLS=y +# default: +# CONFIG_ESP_TLS_CUSTOM_STACK is not set +# default: +# CONFIG_ESP_TLS_USE_SECURE_ELEMENT is not set +# default: +# CONFIG_ESP_TLS_CLIENT_SESSION_TICKETS is not set +# default: +# CONFIG_ESP_TLS_SERVER_SESSION_TICKETS is not set +# default: +# CONFIG_ESP_TLS_SERVER_CERT_SELECT_HOOK is not set +# default: +# CONFIG_ESP_TLS_SERVER_MIN_AUTH_MODE_OPTIONAL is not set +# default: +# CONFIG_ESP_TLS_PSK_VERIFICATION is not set +# default: +# CONFIG_ESP_TLS_INSECURE is not set +# default: +CONFIG_ESP_TLS_DYN_BUF_STRATEGY_SUPPORTED=y +# end of ESP-TLS + +# +# ADC and ADC Calibration +# +# default: +# CONFIG_ADC_ONESHOT_CTRL_FUNC_IN_IRAM is not set +# default: +# CONFIG_ADC_CONTINUOUS_ISR_IRAM_SAFE is not set + +# +# ADC Calibration Configurations +# +# default: +CONFIG_ADC_CALI_EFUSE_TP_ENABLE=y +# default: +CONFIG_ADC_CALI_EFUSE_VREF_ENABLE=y +# default: +CONFIG_ADC_CALI_LUT_ENABLE=y +# end of ADC Calibration Configurations + +# default: +CONFIG_ADC_DISABLE_DAC_OUTPUT=y +# default: +# CONFIG_ADC_ENABLE_DEBUG_LOG is not set +# end of ADC and ADC Calibration + +# +# Wireless Coexistence +# +# default: +CONFIG_ESP_COEX_ENABLED=y +# default: +# CONFIG_ESP_COEX_GPIO_DEBUG is not set +# end of Wireless Coexistence + +# +# Common ESP-related +# +# default: +CONFIG_ESP_ERR_TO_NAME_LOOKUP=y +# end of Common ESP-related + +# +# ESP-Driver:DAC Configurations +# +# default: +# CONFIG_DAC_CTRL_FUNC_IN_IRAM is not set +# default: +# CONFIG_DAC_ISR_IRAM_SAFE is not set +# default: +# CONFIG_DAC_ENABLE_DEBUG_LOG is not set +# default: +CONFIG_DAC_DMA_AUTO_16BIT_ALIGN=y +# end of ESP-Driver:DAC Configurations + +# +# ESP-Driver:GPIO Configurations +# +# default: +# CONFIG_GPIO_CTRL_FUNC_IN_IRAM is not set +# end of ESP-Driver:GPIO Configurations + +# +# ESP-Driver:GPTimer Configurations +# +# default: +CONFIG_GPTIMER_ISR_HANDLER_IN_IRAM=y +# default: +# CONFIG_GPTIMER_CTRL_FUNC_IN_IRAM is not set +# default: +# CONFIG_GPTIMER_ISR_CACHE_SAFE is not set +# default: +CONFIG_GPTIMER_OBJ_CACHE_SAFE=y +# default: +# CONFIG_GPTIMER_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:GPTimer Configurations + +# +# ESP-Driver:I2C Configurations +# +# default: +# CONFIG_I2C_ISR_IRAM_SAFE is not set +# default: +# CONFIG_I2C_ENABLE_DEBUG_LOG is not set +# default: +CONFIG_I2C_MASTER_ISR_HANDLER_IN_IRAM=y +# end of ESP-Driver:I2C Configurations + +# +# ESP-Driver:I2S Configurations +# +# default: +# CONFIG_I2S_ISR_IRAM_SAFE is not set +# default: +# CONFIG_I2S_CTRL_FUNC_IN_IRAM is not set +# default: +# CONFIG_I2S_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:I2S Configurations + +# +# ESP-Driver:I3C Master Configurations +# +# default: +# CONFIG_I3C_MASTER_ISR_CACHE_SAFE is not set +# default: +# CONFIG_I3C_MASTER_ENABLE_DEBUG_LOG is not set +# default: +# CONFIG_I3C_MASTER_ISR_HANDLER_IN_IRAM is not set +# end of ESP-Driver:I3C Master Configurations + +# +# ESP-Driver:LEDC Configurations +# +# default: +# CONFIG_LEDC_CTRL_FUNC_IN_IRAM is not set +# end of ESP-Driver:LEDC Configurations + +# +# ESP-Driver:MCPWM Configurations +# +# default: +CONFIG_MCPWM_ISR_HANDLER_IN_IRAM=y +# default: +# CONFIG_MCPWM_ISR_CACHE_SAFE is not set +# default: +# CONFIG_MCPWM_CTRL_FUNC_IN_IRAM is not set +# default: +CONFIG_MCPWM_OBJ_CACHE_SAFE=y +# default: +# CONFIG_MCPWM_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:MCPWM Configurations + +# +# ESP-Driver:PCNT Configurations +# +# default: +# CONFIG_PCNT_CTRL_FUNC_IN_IRAM is not set +# default: +# CONFIG_PCNT_ISR_IRAM_SAFE is not set +# default: +# CONFIG_PCNT_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:PCNT Configurations + +# +# ESP-Driver:RMT Configurations +# +# default: +CONFIG_RMT_ENCODER_FUNC_IN_IRAM=y +# default: +CONFIG_RMT_TX_ISR_HANDLER_IN_IRAM=y +# default: +CONFIG_RMT_RX_ISR_HANDLER_IN_IRAM=y +# default: +# CONFIG_RMT_RECV_FUNC_IN_IRAM is not set +# default: +# CONFIG_RMT_TX_ISR_CACHE_SAFE is not set +# default: +# CONFIG_RMT_RX_ISR_CACHE_SAFE is not set +# default: +CONFIG_RMT_OBJ_CACHE_SAFE=y +# default: +# CONFIG_RMT_ENABLE_DEBUG_LOG is not set +# default: +# CONFIG_RMT_ISR_IRAM_SAFE is not set +# end of ESP-Driver:RMT Configurations + +# +# ESP-Driver:Sigma Delta Modulator Configurations +# +# default: +# CONFIG_SDM_CTRL_FUNC_IN_IRAM is not set +# default: +# CONFIG_SDM_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:Sigma Delta Modulator Configurations + +# +# ESP-Driver:SD Host SDMMC Controller Configurations +# +# default: +# CONFIG_SD_HOST_SDMMC_ISR_CACHE_SAFE is not set +# end of ESP-Driver:SD Host SDMMC Controller Configurations + +# +# ESP-Driver:SPI Configurations +# +# default: +CONFIG_SPI_MASTER_ISR_IN_IRAM=y +# default: +# CONFIG_SPI_SLAVE_IN_IRAM is not set +# default: +CONFIG_SPI_SLAVE_ISR_IN_IRAM=y +# end of ESP-Driver:SPI Configurations + +# +# ESP-Driver:Touch Sensor Configurations +# +# default: +# CONFIG_TOUCH_CTRL_FUNC_IN_IRAM is not set +# default: +# CONFIG_TOUCH_ISR_IRAM_SAFE is not set +# default: +# CONFIG_TOUCH_ENABLE_DEBUG_LOG is not set +# default: +# CONFIG_TOUCH_SKIP_FSM_CHECK is not set +# end of ESP-Driver:Touch Sensor Configurations + +# +# ESP-Driver:TWAI Configurations +# +# default: +# CONFIG_TWAI_ISR_IN_IRAM is not set +# default: +# CONFIG_TWAI_IO_FUNC_IN_IRAM is not set +# default: +# CONFIG_TWAI_ISR_CACHE_SAFE is not set +# default: +# CONFIG_TWAI_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:TWAI Configurations + +# +# ESP-Driver:UART Configurations +# +# default: +# CONFIG_UART_ISR_IN_IRAM is not set +# end of ESP-Driver:UART Configurations + +# +# ESP-Driver:UHCI Configurations +# +# default: +# CONFIG_UHCI_ISR_HANDLER_IN_IRAM is not set +# default: +# CONFIG_UHCI_ISR_CACHE_SAFE is not set +# default: +# CONFIG_UHCI_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:UHCI Configurations + +# +# Ethernet +# +# default: +CONFIG_ETH_ENABLED=y +# default: +CONFIG_ETH_USE_ESP32_EMAC=y +# default: +CONFIG_ETH_DMA_BUFFER_SIZE=512 +# default: +CONFIG_ETH_DMA_RX_BUFFER_NUM=10 +# default: +CONFIG_ETH_DMA_TX_BUFFER_NUM=10 +# default: +# CONFIG_ETH_IRAM_OPTIMIZATION is not set +# default: +CONFIG_ETH_USE_SPI_ETHERNET=y +# default: +# CONFIG_ETH_USE_OPENETH is not set +# default: +# CONFIG_ETH_TRANSMIT_MUTEX is not set +# end of Ethernet + +# +# Event Loop Library +# +# default: +# CONFIG_ESP_EVENT_LOOP_PROFILING is not set +# default: +CONFIG_ESP_EVENT_POST_FROM_ISR=y +# default: +CONFIG_ESP_EVENT_POST_FROM_IRAM_ISR=y +# end of Event Loop Library + +# +# GDB Stub +# +# default: +CONFIG_ESP_GDBSTUB_ENABLED=y +# default: +# CONFIG_ESP_SYSTEM_GDBSTUB_RUNTIME is not set +# default: +CONFIG_ESP_GDBSTUB_SUPPORT_TASKS=y +# default: +CONFIG_ESP_GDBSTUB_MAX_TASKS=32 +# end of GDB Stub + +# +# ESP HID +# +# default: +CONFIG_ESPHID_TASK_SIZE_BT=2048 +# default: +CONFIG_ESPHID_TASK_SIZE_BLE=4096 +# end of ESP HID + +# +# ESP HTTP client +# +# default: +CONFIG_ESP_HTTP_CLIENT_ENABLE_HTTPS=y +# default: +# CONFIG_ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH is not set +# default: +# CONFIG_ESP_HTTP_CLIENT_ENABLE_DIGEST_AUTH is not set +# default: +# CONFIG_ESP_HTTP_CLIENT_ENABLE_CUSTOM_TRANSPORT is not set +# default: +# CONFIG_ESP_HTTP_CLIENT_ENABLE_GET_CONTENT_RANGE is not set +# default: +CONFIG_ESP_HTTP_CLIENT_EVENT_POST_TIMEOUT=2000 +# end of ESP HTTP client + +# +# HTTP Server +# +# default: +CONFIG_HTTPD_MAX_REQ_HDR_LEN=1024 +# default: +CONFIG_HTTPD_MAX_URI_LEN=512 +# default: +CONFIG_HTTPD_ERR_RESP_NO_DELAY=y +# default: +CONFIG_HTTPD_PURGE_BUF_LEN=32 +# default: +# CONFIG_HTTPD_LOG_PURGE_DATA is not set +# default: +# CONFIG_HTTPD_WS_SUPPORT is not set +# default: +# CONFIG_HTTPD_QUEUE_WORK_BLOCKING is not set +# default: +CONFIG_HTTPD_SERVER_EVENT_POST_TIMEOUT=2000 +# end of HTTP Server + +# +# ESP HTTPS OTA +# +# default: +# CONFIG_ESP_HTTPS_OTA_DECRYPT_CB is not set +# default: +# CONFIG_ESP_HTTPS_OTA_ALLOW_HTTP is not set +# default: +CONFIG_ESP_HTTPS_OTA_EVENT_POST_TIMEOUT=2000 +# default: +# CONFIG_ESP_HTTPS_OTA_ENABLE_PARTIAL_DOWNLOAD is not set +# end of ESP HTTPS OTA + +# +# ESP HTTPS server +# +# default: +# CONFIG_ESP_HTTPS_SERVER_ENABLE is not set +# default: +CONFIG_ESP_HTTPS_SERVER_EVENT_POST_TIMEOUT=2000 +# default: +# CONFIG_ESP_HTTPS_SERVER_CERT_SELECT_HOOK is not set +# end of ESP HTTPS server + +# +# Hardware Settings +# +# default: +CONFIG_ESP_HW_SUPPORT_FUNC_IN_IRAM=y + +# +# Chip revision +# +# default: +CONFIG_ESP32_REV_MIN_0=y +# default: +# CONFIG_ESP32_REV_MIN_1 is not set +# default: +# CONFIG_ESP32_REV_MIN_1_1 is not set +# default: +# CONFIG_ESP32_REV_MIN_2 is not set +# default: +# CONFIG_ESP32_REV_MIN_3 is not set +# default: +# CONFIG_ESP32_REV_MIN_3_1 is not set +# default: +CONFIG_ESP32_REV_MIN=0 +# default: +CONFIG_ESP32_REV_MIN_FULL=0 +# default: +CONFIG_ESP_REV_MIN_FULL=0 + +# +# Maximum Supported ESP32 Revision (Rev v3.99) +# +# default: +CONFIG_ESP32_REV_MAX_FULL=399 +# default: +CONFIG_ESP_REV_MAX_FULL=399 +# default: +CONFIG_ESP_EFUSE_BLOCK_REV_MIN_FULL=0 +# default: +CONFIG_ESP_EFUSE_BLOCK_REV_MAX_FULL=99 + +# +# Maximum Supported ESP32 eFuse Block Revision (eFuse Block Rev v0.99) +# +# end of Chip revision + +# +# MAC Config +# +# default: +CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA=y +# default: +CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP=y +# default: +CONFIG_ESP_MAC_ADDR_UNIVERSE_BT=y +# default: +CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH=y +# default: +CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR=y +# default: +CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES=4 +# default: +# CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_TWO is not set +# default: +CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR=y +# default: +CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES=4 +# default: +# CONFIG_ESP_MAC_IGNORE_MAC_CRC_ERROR is not set +# default: +# CONFIG_ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC is not set +# end of MAC Config + +# +# Sleep Config +# +# default: +# CONFIG_ESP_SLEEP_POWER_DOWN_FLASH is not set +# default: +CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND=y +# default: +# CONFIG_ESP_SLEEP_MSPI_NEED_ALL_IO_PU is not set +# default: +CONFIG_ESP_SLEEP_RTC_BUS_ISO_WORKAROUND=y +# default: +# CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND is not set +# default: +CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY=2000 +# default: +# CONFIG_ESP_SLEEP_CACHE_SAFE_ASSERTION is not set +# default: +# CONFIG_ESP_SLEEP_DEBUG is not set +# default: +CONFIG_ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS=y +# end of Sleep Config + +# +# RTC Clock Config +# +# default: +CONFIG_RTC_CLK_SRC_INT_RC=y +# default: +# CONFIG_RTC_CLK_SRC_EXT_CRYS is not set +# default: +# CONFIG_RTC_CLK_SRC_EXT_OSC is not set +# default: +# CONFIG_RTC_CLK_SRC_INT_8MD256 is not set +# default: +CONFIG_RTC_CLK_CAL_CYCLES=1024 +# default: +CONFIG_RTC_CLK_FUNC_IN_IRAM=y +# default: +CONFIG_RTC_TIME_FUNC_IN_IRAM=y +# end of RTC Clock Config + +# +# Peripheral Control +# +# default: +CONFIG_ESP_PERIPH_CTRL_FUNC_IN_IRAM=y +# default: +CONFIG_ESP_REGI2C_CTRL_FUNC_IN_IRAM=y +# end of Peripheral Control + +# +# Main XTAL Config +# +# default: +# CONFIG_XTAL_FREQ_26 is not set +# default: +# CONFIG_XTAL_FREQ_32 is not set +# default: +CONFIG_XTAL_FREQ_40=y +# default: +# CONFIG_XTAL_FREQ_AUTO is not set +# default: +CONFIG_XTAL_FREQ=40 +# end of Main XTAL Config + +# +# Power Supplier +# + +# +# Brownout Detector +# +# default: +CONFIG_ESP_BROWNOUT_DET=y +# default: +CONFIG_ESP_BROWNOUT_DET_LVL_SEL_0=y +# default: +# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_1 is not set +# default: +# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_2 is not set +# default: +# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_3 is not set +# default: +# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_4 is not set +# default: +# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_5 is not set +# default: +# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_6 is not set +# default: +# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7 is not set +# default: +CONFIG_ESP_BROWNOUT_DET_LVL=0 +# default: +CONFIG_ESP_BROWNOUT_USE_INTR=y +# end of Brownout Detector +# end of Power Supplier + +# default: +CONFIG_ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM=y +# default: +CONFIG_ESP_INTR_IN_IRAM=y +# end of Hardware Settings + +# +# ESP-Driver:LCD Controller Configurations +# +# default: +# CONFIG_LCD_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:LCD Controller Configurations + +# +# LibC +# +# default: +# CONFIG_LIBC_NEWLIB is not set +# default: +CONFIG_LIBC_PICOLIBC=y +# default: +CONFIG_LIBC_PICOLIBC_NEWLIB_COMPATIBILITY=y +# default: +CONFIG_LIBC_MISC_IN_IRAM=y +# default: +CONFIG_LIBC_LOCKS_PLACE_IN_IRAM=y +# default: +CONFIG_LIBC_STDOUT_LINE_ENDING_CRLF=y +# default: +# CONFIG_LIBC_STDOUT_LINE_ENDING_LF is not set +# default: +# CONFIG_LIBC_STDOUT_LINE_ENDING_CR is not set +# default: +# CONFIG_LIBC_STDIN_LINE_ENDING_CRLF is not set +# default: +# CONFIG_LIBC_STDIN_LINE_ENDING_LF is not set +# default: +CONFIG_LIBC_STDIN_LINE_ENDING_CR=y +# default: +CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT=y +# default: +# CONFIG_LIBC_TIME_SYSCALL_USE_RTC is not set +# default: +# CONFIG_LIBC_TIME_SYSCALL_USE_HRT is not set +# default: +# CONFIG_LIBC_TIME_SYSCALL_USE_NONE is not set +# default: +CONFIG_LIBC_ASSERT_BUFFER_SIZE=200 +# end of LibC + +# +# ESP-MM: Memory Management Configurations +# +# end of ESP-MM: Memory Management Configurations + +# +# ESP NETIF Adapter +# +# default: +CONFIG_ESP_NETIF_LOST_IP_TIMER_ENABLE=y +# default: +CONFIG_ESP_NETIF_IP_LOST_TIMER_INTERVAL=120 +# default: +# CONFIG_ESP_NETIF_PROVIDE_CUSTOM_IMPLEMENTATION is not set +# default: +CONFIG_ESP_NETIF_TCPIP_LWIP=y +# default: +# CONFIG_ESP_NETIF_LOOPBACK is not set +# default: +CONFIG_ESP_NETIF_USES_TCPIP_WITH_BSD_API=y +# default: +CONFIG_ESP_NETIF_REPORT_DATA_TRAFFIC=y +# default: +CONFIG_ESP_NETIF_RECEIVE_REPORT_ERRORS=y +# default: +# CONFIG_ESP_NETIF_L2_TAP is not set +# default: +# CONFIG_ESP_NETIF_BRIDGE_EN is not set +# default: +# CONFIG_ESP_NETIF_SET_DNS_PER_DEFAULT_NETIF is not set +# end of ESP NETIF Adapter + +# +# Partition API Configuration +# +# end of Partition API Configuration + +# +# PHY +# +# default: +CONFIG_ESP_PHY_ENABLED=y +# default: +CONFIG_ESP_PHY_CALIBRATION_AND_DATA_STORAGE=y +# default: +# CONFIG_ESP_PHY_INIT_DATA_IN_PARTITION is not set +# default: +CONFIG_ESP_PHY_MAX_WIFI_TX_POWER=20 +# default: +CONFIG_ESP_PHY_MAX_TX_POWER=20 +# default: +# CONFIG_ESP_PHY_REDUCE_TX_POWER is not set +# default: +# CONFIG_ESP_PHY_ENABLE_CERT_TEST is not set +# default: +CONFIG_ESP_PHY_RF_CAL_PARTIAL=y +# default: +# CONFIG_ESP_PHY_RF_CAL_NONE is not set +# default: +# CONFIG_ESP_PHY_RF_CAL_FULL is not set +# default: +CONFIG_ESP_PHY_CALIBRATION_MODE=0 +# default: +CONFIG_ESP_PHY_PLL_TRACK_PERIOD_MS=1000 +# default: +# CONFIG_ESP_PHY_PLL_TRACK_DEBUG is not set +# default: +# CONFIG_ESP_PHY_RECORD_USED_TIME is not set +# default: +CONFIG_ESP_PHY_IRAM_OPT=y +# default: +# CONFIG_ESP_PHY_DEBUG is not set +# end of PHY + +# +# Power Management +# +# default: +# CONFIG_PM_SLEEP_FUNC_IN_IRAM is not set +# default: +# CONFIG_PM_ENABLE is not set +# default: +# CONFIG_PM_SLP_IRAM_OPT is not set +# end of Power Management + +# +# ESP PSRAM +# +# default: +# CONFIG_SPIRAM is not set +# end of ESP PSRAM + +# +# ESP Ringbuf +# +# default: +# CONFIG_RINGBUF_IN_IRAM is not set +# default: +# CONFIG_RINGBUF_PLACE_ISR_FUNCTIONS_INTO_FLASH is not set +# end of ESP Ringbuf + +# +# ESP-ROM +# +# default: +CONFIG_ESP_ROM_PRINT_IN_IRAM=y +# end of ESP-ROM + +# +# ESP Security Specific +# +# end of ESP Security Specific + +# +# ESP-STDIO +# +# default: +CONFIG_ESP_CONSOLE_UART_DEFAULT=y +# default: +# CONFIG_ESP_CONSOLE_UART_CUSTOM is not set +# default: +# CONFIG_ESP_CONSOLE_NONE is not set +# default: +CONFIG_ESP_CONSOLE_UART=y +# default: +CONFIG_ESP_CONSOLE_UART_NUM=0 +# default: +CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM=0 +# default: +CONFIG_ESP_CONSOLE_UART_BAUDRATE=115200 +# end of ESP-STDIO + +# +# ESP System Settings +# +# default: +# CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_80 is not set +# default: +CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160=y +# default: +# CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240 is not set +# default: +CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ=160 + +# +# Memory +# +# default: +# CONFIG_ESP32_USE_FIXED_STATIC_RAM_SIZE is not set + +# +# Non-backward compatible options +# +# default: +# CONFIG_ESP_SYSTEM_ESP32_SRAM1_REGION_AS_IRAM is not set +# end of Non-backward compatible options +# end of Memory + +# +# Trace memory +# +# default: +# CONFIG_ESP32_TRAX is not set +# default: +CONFIG_ESP32_TRACEMEM_RESERVE_DRAM=0x0 +# end of Trace memory + +# default: +CONFIG_ESP_SYSTEM_IN_IRAM=y +# default: +# CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT is not set +# default: +CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT=y +# default: +# CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT is not set +# default: +# CONFIG_ESP_SYSTEM_PANIC_GDBSTUB is not set +# default: +CONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS=0 +# default: +CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE=32 +# default: +CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE=2304 +# default: +CONFIG_ESP_MAIN_TASK_STACK_SIZE=3584 +# default: +CONFIG_ESP_MAIN_TASK_AFFINITY_CPU0=y +# default: +# CONFIG_ESP_MAIN_TASK_AFFINITY_CPU1 is not set +# default: +# CONFIG_ESP_MAIN_TASK_AFFINITY_NO_AFFINITY is not set +# default: +CONFIG_ESP_MAIN_TASK_AFFINITY=0x0 +# default: +CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE=2048 +# default: +CONFIG_ESP_INT_WDT=y +# default: +CONFIG_ESP_INT_WDT_TIMEOUT_MS=300 +# default: +CONFIG_ESP_INT_WDT_CHECK_CPU1=y +# default: +CONFIG_ESP_TASK_WDT_EN=y +# default: +CONFIG_ESP_TASK_WDT_INIT=y +# default: +# CONFIG_ESP_TASK_WDT_PANIC is not set +# default: +CONFIG_ESP_TASK_WDT_TIMEOUT_S=5 +# default: +CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0=y +# default: +CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1=y +# default: +# CONFIG_ESP_PANIC_HANDLER_IRAM is not set +# default: +# CONFIG_ESP_DEBUG_STUBS_ENABLE is not set +# default: +CONFIG_ESP_DEBUG_OCDAWARE=y +# default: +# CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_5 is not set +# default: +CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4=y +# default: +# CONFIG_ESP32_DISABLE_BASIC_ROM_CONSOLE is not set +# end of ESP System Settings + +# +# IPC (Inter-Processor Call) +# +# default: +CONFIG_ESP_IPC_ENABLE=y +# default: +CONFIG_ESP_IPC_TASK_STACK_SIZE=1024 +# default: +CONFIG_ESP_IPC_USES_CALLERS_PRIORITY=y +# default: +CONFIG_ESP_IPC_ISR_ENABLE=y +# end of IPC (Inter-Processor Call) + +# +# ESP Timer (High Resolution Timer) +# +# default: +CONFIG_ESP_TIMER_IN_IRAM=y +# default: +# CONFIG_ESP_TIMER_PROFILING is not set +# default: +CONFIG_ESP_TIME_FUNCS_USE_RTC_TIMER=y +# default: +CONFIG_ESP_TIME_FUNCS_USE_ESP_TIMER=y +# default: +CONFIG_ESP_TIMER_TASK_STACK_SIZE=3584 +# default: +CONFIG_ESP_TIMER_INTERRUPT_LEVEL=1 +# default: +# CONFIG_ESP_TIMER_SHOW_EXPERIMENTAL is not set +# default: +CONFIG_ESP_TIMER_TASK_AFFINITY=0x0 +# default: +CONFIG_ESP_TIMER_TASK_AFFINITY_CPU0=y +# default: +CONFIG_ESP_TIMER_ISR_AFFINITY_CPU0=y +# default: +# CONFIG_ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD is not set +# default: +CONFIG_ESP_TIMER_IMPL_TG0_LAC=y +# end of ESP Timer (High Resolution Timer) + +# +# ESP Trace Configuration +# +# default: +# CONFIG_ESP_TRACE_LIB_EXTERNAL is not set +# default: +CONFIG_ESP_TRACE_LIB_NONE=y +# default: +CONFIG_ESP_TRACE_LIB_NAME="none" +# default: +# CONFIG_ESP_TRACE_TRANSPORT_APPTRACE is not set +# default: +CONFIG_ESP_TRACE_TRANSPORT_NONE=y +# default: +CONFIG_ESP_TRACE_TRANSPORT_NAME="none" +# end of ESP Trace Configuration + +# +# Wi-Fi +# +# default: +CONFIG_ESP_WIFI_ENABLED=y +# default: +CONFIG_ESP_WIFI_STATIC_RX_BUFFER_NUM=10 +# default: +CONFIG_ESP_WIFI_DYNAMIC_RX_BUFFER_NUM=32 +# default: +# CONFIG_ESP_WIFI_STATIC_TX_BUFFER is not set +# default: +CONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER=y +# default: +CONFIG_ESP_WIFI_TX_BUFFER_TYPE=1 +# default: +CONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER_NUM=32 +# default: +CONFIG_ESP_WIFI_STATIC_RX_MGMT_BUFFER=y +# default: +# CONFIG_ESP_WIFI_DYNAMIC_RX_MGMT_BUFFER is not set +# default: +CONFIG_ESP_WIFI_DYNAMIC_RX_MGMT_BUF=0 +# default: +CONFIG_ESP_WIFI_RX_MGMT_BUF_NUM_DEF=5 +# default: +# CONFIG_ESP_WIFI_CSI_ENABLED is not set +# default: +CONFIG_ESP_WIFI_AMPDU_TX_ENABLED=y +# default: +CONFIG_ESP_WIFI_TX_BA_WIN=6 +# default: +CONFIG_ESP_WIFI_AMPDU_RX_ENABLED=y +# default: +CONFIG_ESP_WIFI_RX_BA_WIN=6 +# default: +CONFIG_ESP_WIFI_NVS_ENABLED=y +# default: +CONFIG_ESP_WIFI_TASK_PINNED_TO_CORE_0=y +# default: +# CONFIG_ESP_WIFI_TASK_PINNED_TO_CORE_1 is not set +# default: +CONFIG_ESP_WIFI_SOFTAP_BEACON_MAX_LEN=752 +# default: +CONFIG_ESP_WIFI_MGMT_SBUF_NUM=32 +# default: +CONFIG_ESP_WIFI_IRAM_OPT=y +# default: +# CONFIG_ESP_WIFI_EXTRA_IRAM_OPT is not set +# default: +CONFIG_ESP_WIFI_RX_IRAM_OPT=y +# default: +CONFIG_ESP_WIFI_ENABLE_WPA3_SAE=y +# default: +CONFIG_ESP_WIFI_ENABLE_SAE_H2E=y +# default: +CONFIG_ESP_WIFI_ENABLE_SAE_PK=y +# default: +CONFIG_ESP_WIFI_SOFTAP_SAE_SUPPORT=y +# default: +CONFIG_ESP_WIFI_ENABLE_WPA3_OWE_STA=y +# default: +CONFIG_ESP_WIFI_WPA3_COMPATIBLE_SUPPORT=y +# default: +# CONFIG_ESP_WIFI_SLP_IRAM_OPT is not set +# default: +CONFIG_ESP_WIFI_SLP_DEFAULT_MIN_ACTIVE_TIME=50 +# default: +# CONFIG_ESP_WIFI_BSS_MAX_IDLE_SUPPORT is not set +# default: +CONFIG_ESP_WIFI_SLP_DEFAULT_MAX_ACTIVE_TIME=10 +# default: +CONFIG_ESP_WIFI_SLP_DEFAULT_WAIT_BROADCAST_DATA_TIME=15 +# default: +CONFIG_ESP_WIFI_STA_DISCONNECTED_PM_ENABLE=y +# default: +CONFIG_ESP_WIFI_GMAC_SUPPORT=y +# default: +CONFIG_ESP_WIFI_SOFTAP_SUPPORT=y +# default: +# CONFIG_ESP_WIFI_SLP_BEACON_LOST_OPT is not set +# default: +CONFIG_ESP_WIFI_ESPNOW_MAX_ENCRYPT_NUM=7 +# default: +# CONFIG_ESP_WIFI_NAN_SYNC_ENABLE is not set +# default: +CONFIG_ESP_WIFI_MBEDTLS_CRYPTO=y +# default: +CONFIG_ESP_WIFI_MBEDTLS_TLS_CLIENT=y +# default: +# CONFIG_ESP_WIFI_WAPI_PSK is not set +# default: +# CONFIG_ESP_WIFI_11KV_SUPPORT is not set +# default: +# CONFIG_ESP_WIFI_MBO_SUPPORT is not set +# default: +# CONFIG_ESP_WIFI_DPP_SUPPORT is not set +# default: +# CONFIG_ESP_WIFI_11R_SUPPORT is not set +# default: +# CONFIG_ESP_WIFI_WPS_SOFTAP_REGISTRAR is not set + +# +# WPS Configuration Options +# +# default: +# CONFIG_ESP_WIFI_WPS_STRICT is not set +# default: +# CONFIG_ESP_WIFI_WPS_PASSPHRASE is not set +# default: +# CONFIG_ESP_WIFI_WPS_RECONNECT_ON_FAIL is not set +# end of WPS Configuration Options + +# default: +# CONFIG_ESP_WIFI_DEBUG_PRINT is not set +# default: +CONFIG_ESP_WIFI_ENTERPRISE_SUPPORT=y +# default: +# CONFIG_ESP_WIFI_ENT_FREE_DYNAMIC_BUFFER is not set +# end of Wi-Fi + +# +# Core dump +# +# default: +# CONFIG_ESP_COREDUMP_ENABLE_TO_FLASH is not set +# default: +# CONFIG_ESP_COREDUMP_ENABLE_TO_UART is not set +# default: +CONFIG_ESP_COREDUMP_ENABLE_TO_NONE=y +# end of Core dump + +# +# FAT Filesystem support +# +# default: +CONFIG_FATFS_VOLUME_COUNT=2 +# default: +# CONFIG_FATFS_LFN_NONE is not set +# default: +CONFIG_FATFS_LFN_HEAP=y +# default: +# CONFIG_FATFS_LFN_STACK is not set +# default: +# CONFIG_FATFS_SECTOR_512 is not set +# default: +CONFIG_FATFS_SECTOR_4096=y +# default: +# CONFIG_FATFS_CODEPAGE_DYNAMIC is not set +# default: +CONFIG_FATFS_CODEPAGE_437=y +# default: +# CONFIG_FATFS_CODEPAGE_720 is not set +# default: +# CONFIG_FATFS_CODEPAGE_737 is not set +# default: +# CONFIG_FATFS_CODEPAGE_771 is not set +# default: +# CONFIG_FATFS_CODEPAGE_775 is not set +# default: +# CONFIG_FATFS_CODEPAGE_850 is not set +# default: +# CONFIG_FATFS_CODEPAGE_852 is not set +# default: +# CONFIG_FATFS_CODEPAGE_855 is not set +# default: +# CONFIG_FATFS_CODEPAGE_857 is not set +# default: +# CONFIG_FATFS_CODEPAGE_860 is not set +# default: +# CONFIG_FATFS_CODEPAGE_861 is not set +# default: +# CONFIG_FATFS_CODEPAGE_862 is not set +# default: +# CONFIG_FATFS_CODEPAGE_863 is not set +# default: +# CONFIG_FATFS_CODEPAGE_864 is not set +# default: +# CONFIG_FATFS_CODEPAGE_865 is not set +# default: +# CONFIG_FATFS_CODEPAGE_866 is not set +# default: +# CONFIG_FATFS_CODEPAGE_869 is not set +# default: +# CONFIG_FATFS_CODEPAGE_932 is not set +# default: +# CONFIG_FATFS_CODEPAGE_936 is not set +# default: +# CONFIG_FATFS_CODEPAGE_949 is not set +# default: +# CONFIG_FATFS_CODEPAGE_950 is not set +# default: +CONFIG_FATFS_CODEPAGE=437 +# default: +CONFIG_FATFS_MAX_LFN=255 +# default: +CONFIG_FATFS_API_ENCODING_ANSI_OEM=y +# default: +# CONFIG_FATFS_API_ENCODING_UTF_8 is not set +# default: +CONFIG_FATFS_FS_LOCK=0 +# default: +CONFIG_FATFS_TIMEOUT_MS=10000 +# default: +CONFIG_FATFS_PER_FILE_CACHE=y +# default: +# CONFIG_FATFS_USE_FASTSEEK is not set +# default: +CONFIG_FATFS_USE_STRFUNC_NONE=y +# default: +# CONFIG_FATFS_USE_STRFUNC_WITHOUT_CRLF_CONV is not set +# default: +# CONFIG_FATFS_USE_STRFUNC_WITH_CRLF_CONV is not set +# default: +CONFIG_FATFS_VFS_FSTAT_BLKSIZE=0 +# default: +# CONFIG_FATFS_IMMEDIATE_FSYNC is not set +# default: +# CONFIG_FATFS_USE_LABEL is not set +# default: +CONFIG_FATFS_LINK_LOCK=y +# default: +CONFIG_FATFS_USE_DYN_BUFFERS=y + +# +# File system free space calculation behavior +# +# default: +CONFIG_FATFS_DONT_TRUST_FREE_CLUSTER_CNT=0 +# default: +CONFIG_FATFS_DONT_TRUST_LAST_ALLOC=0 +# end of File system free space calculation behavior +# end of FAT Filesystem support + +# +# FreeRTOS +# + +# +# Kernel +# +# default: +# CONFIG_FREERTOS_SMP is not set +# default: +# CONFIG_FREERTOS_UNICORE is not set +# default: +CONFIG_FREERTOS_HZ=100 +# default: +# CONFIG_FREERTOS_CHECK_STACKOVERFLOW_NONE is not set +# default: +# CONFIG_FREERTOS_CHECK_STACKOVERFLOW_PTRVAL is not set +# default: +CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY=y +# default: +CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS=1 +# default: +CONFIG_FREERTOS_IDLE_TASK_STACKSIZE=1536 +# default: +# CONFIG_FREERTOS_USE_IDLE_HOOK is not set +# default: +# CONFIG_FREERTOS_USE_TICK_HOOK is not set +# default: +CONFIG_FREERTOS_MAX_TASK_NAME_LEN=16 +# default: +# CONFIG_FREERTOS_ENABLE_BACKWARD_COMPATIBILITY is not set +# default: +CONFIG_FREERTOS_USE_TIMERS=y +# default: +CONFIG_FREERTOS_TIMER_SERVICE_TASK_NAME="Tmr Svc" +# default: +# CONFIG_FREERTOS_TIMER_TASK_AFFINITY_CPU0 is not set +# default: +# CONFIG_FREERTOS_TIMER_TASK_AFFINITY_CPU1 is not set +# default: +CONFIG_FREERTOS_TIMER_TASK_NO_AFFINITY=y +# default: +CONFIG_FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY=0x7FFFFFFF +# default: +CONFIG_FREERTOS_TIMER_TASK_PRIORITY=1 +# default: +CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH=2048 +# default: +CONFIG_FREERTOS_TIMER_QUEUE_LENGTH=10 +# default: +CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE=0 +# default: +CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES=1 +# default: +# CONFIG_FREERTOS_USE_TRACE_FACILITY is not set +# default: +# CONFIG_FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES is not set +# default: +# CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS is not set +# default: +# CONFIG_FREERTOS_USE_APPLICATION_TASK_TAG is not set +# end of Kernel + +# +# Port +# +# default: +CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER=y +# default: +# CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK is not set +# default: +CONFIG_FREERTOS_TLSP_DELETION_CALLBACKS=y +# default: +# CONFIG_FREERTOS_TASK_PRE_DELETION_HOOK is not set +# default: +CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER=y +# default: +CONFIG_FREERTOS_ISR_STACKSIZE=1536 +# default: +CONFIG_FREERTOS_INTERRUPT_BACKTRACE=y +# default: +# CONFIG_FREERTOS_FPU_IN_ISR is not set +# default: +CONFIG_FREERTOS_TICK_SUPPORT_CORETIMER=y +# default: +CONFIG_FREERTOS_CORETIMER_0=y +# default: +# CONFIG_FREERTOS_CORETIMER_1 is not set +# default: +CONFIG_FREERTOS_SYSTICK_USES_CCOUNT=y +# default: +# CONFIG_FREERTOS_IN_IRAM is not set +# default: +# CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE is not set +# end of Port + +# +# Extra +# +# end of Extra + +# default: +CONFIG_FREERTOS_PORT=y +# default: +CONFIG_FREERTOS_NO_AFFINITY=0x7FFFFFFF +# default: +CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION=y +# default: +CONFIG_FREERTOS_DEBUG_OCDAWARE=y +# default: +CONFIG_FREERTOS_NUMBER_OF_CORES=2 +# end of FreeRTOS + +# +# Hardware Abstraction Layer (HAL) and Low Level (LL) +# +# default: +CONFIG_HAL_ASSERTION_EQUALS_SYSTEM=y +# default: +# CONFIG_HAL_ASSERTION_DISABLE is not set +# default: +# CONFIG_HAL_ASSERTION_SILENT is not set +# default: +# CONFIG_HAL_ASSERTION_ENABLE is not set +# default: +CONFIG_HAL_DEFAULT_ASSERTION_LEVEL=2 +# default: +CONFIG_HAL_GPIO_USE_ROM_IMPL=y +# end of Hardware Abstraction Layer (HAL) and Low Level (LL) + +# +# Heap memory debugging +# +# default: +CONFIG_HEAP_HAS_EXEC_HEAP=y +# default: +CONFIG_HEAP_POISONING_DISABLED=y +# default: +# CONFIG_HEAP_POISONING_LIGHT is not set +# default: +# CONFIG_HEAP_POISONING_COMPREHENSIVE is not set +# default: +CONFIG_HEAP_TRACING_OFF=y +# default: +# CONFIG_HEAP_TRACING_STANDALONE is not set +# default: +# CONFIG_HEAP_TRACING_TOHOST is not set +# default: +# CONFIG_HEAP_USE_HOOKS is not set +# default: +# CONFIG_HEAP_TASK_TRACKING is not set +# default: +# CONFIG_HEAP_ABORT_WHEN_ALLOCATION_FAILS is not set +# default: +# CONFIG_HEAP_PLACE_FUNCTION_INTO_FLASH is not set +# end of Heap memory debugging + +# +# Log +# +# default: +CONFIG_LOG_VERSION_1=y +# default: +# CONFIG_LOG_VERSION_2 is not set +# default: +CONFIG_LOG_VERSION=1 + +# +# Log Level +# +# default: +# CONFIG_LOG_DEFAULT_LEVEL_NONE is not set +# default: +# CONFIG_LOG_DEFAULT_LEVEL_ERROR is not set +# default: +# CONFIG_LOG_DEFAULT_LEVEL_WARN is not set +# default: +CONFIG_LOG_DEFAULT_LEVEL_INFO=y +# default: +# CONFIG_LOG_DEFAULT_LEVEL_DEBUG is not set +# default: +# CONFIG_LOG_DEFAULT_LEVEL_VERBOSE is not set +# default: +CONFIG_LOG_DEFAULT_LEVEL=3 +# default: +CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT=y +# default: +# CONFIG_LOG_MAXIMUM_LEVEL_DEBUG is not set +# default: +# CONFIG_LOG_MAXIMUM_LEVEL_VERBOSE is not set +# default: +CONFIG_LOG_MAXIMUM_LEVEL=3 + +# +# Level Settings +# +# default: +# CONFIG_LOG_MASTER_LEVEL is not set +# default: +CONFIG_LOG_DYNAMIC_LEVEL_CONTROL=y +# default: +# CONFIG_LOG_TAG_LEVEL_IMPL_NONE is not set +# default: +# CONFIG_LOG_TAG_LEVEL_IMPL_LINKED_LIST is not set +# default: +CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST=y +# default: +# CONFIG_LOG_TAG_LEVEL_CACHE_ARRAY is not set +# default: +CONFIG_LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP=y +# default: +CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_SIZE=31 +# end of Level Settings +# end of Log Level + +# +# Format +# +# default: +# CONFIG_LOG_COLORS is not set +# default: +CONFIG_LOG_TIMESTAMP_SOURCE_RTOS=y +# default: +# CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM is not set +# end of Format + +# +# Settings +# +# default: +CONFIG_LOG_MODE_TEXT_EN=y +# default: +CONFIG_LOG_MODE_TEXT=y +# end of Settings + +# default: +CONFIG_LOG_IN_IRAM=y +# end of Log + +# +# LWIP +# +# default: +CONFIG_LWIP_ENABLE=y +# default: +CONFIG_LWIP_LOCAL_HOSTNAME="espressif" +# default: +CONFIG_LWIP_TCPIP_TASK_PRIO=18 +# default: +# CONFIG_LWIP_TCPIP_CORE_LOCKING is not set +# default: +# CONFIG_LWIP_CHECK_THREAD_SAFETY is not set +# default: +CONFIG_LWIP_DNS_SUPPORT_MDNS_QUERIES=y +# default: +# CONFIG_LWIP_L2_TO_L3_COPY is not set +# default: +# CONFIG_LWIP_IRAM_OPTIMIZATION is not set +# default: +# CONFIG_LWIP_EXTRA_IRAM_OPTIMIZATION is not set +# default: +CONFIG_LWIP_TIMERS_ONDEMAND=y +# default: +CONFIG_LWIP_ND6=y +# default: +# CONFIG_LWIP_FORCE_ROUTER_FORWARDING is not set +# default: +CONFIG_LWIP_MAX_SOCKETS=10 +# default: +# CONFIG_LWIP_USE_ONLY_LWIP_SELECT is not set +# default: +# CONFIG_LWIP_SO_LINGER is not set +# default: +CONFIG_LWIP_SO_REUSE=y +# default: +CONFIG_LWIP_SO_REUSE_RXTOALL=y +# default: +# CONFIG_LWIP_SO_RCVBUF is not set +# default: +# CONFIG_LWIP_NETBUF_RECVINFO is not set +# default: +CONFIG_LWIP_IP_DEFAULT_TTL=64 +# default: +CONFIG_LWIP_IP4_FRAG=y +# default: +CONFIG_LWIP_IP6_FRAG=y +# default: +# CONFIG_LWIP_IP4_REASSEMBLY is not set +# default: +# CONFIG_LWIP_IP6_REASSEMBLY is not set +# default: +CONFIG_LWIP_IP_REASS_MAX_PBUFS=10 +# default: +CONFIG_LWIP_IPV6_DUP_DETECT_ATTEMPTS=1 +# default: +# CONFIG_LWIP_IP_FORWARD is not set +# default: +# CONFIG_LWIP_STATS is not set +# default: +CONFIG_LWIP_ESP_GRATUITOUS_ARP=y +# default: +CONFIG_LWIP_GARP_TMR_INTERVAL=60 +# default: +CONFIG_LWIP_ESP_MLDV6_REPORT=y +# default: +CONFIG_LWIP_MLDV6_TMR_INTERVAL=40 +# default: +CONFIG_LWIP_TCPIP_RECVMBOX_SIZE=32 +# default: +CONFIG_LWIP_DHCP_DOES_ARP_CHECK=y +# default: +# CONFIG_LWIP_DHCP_DOES_ACD_CHECK is not set +# default: +# CONFIG_LWIP_DHCP_DOES_NOT_CHECK_OFFERED_IP is not set +# default: +# CONFIG_LWIP_DHCP_DISABLE_CLIENT_ID is not set +# default: +CONFIG_LWIP_DHCP_DISABLE_VENDOR_CLASS_ID=y +# default: +# CONFIG_LWIP_DHCP_RESTORE_LAST_IP is not set +# default: +CONFIG_LWIP_DHCP_OPTIONS_LEN=69 +# default: +CONFIG_LWIP_NUM_NETIF_CLIENT_DATA=0 +# default: +CONFIG_LWIP_DHCP_COARSE_TIMER_SECS=1 + +# +# DHCP server +# +# default: +CONFIG_LWIP_DHCPS=y +# default: +CONFIG_LWIP_DHCPS_REPORT_CLIENT_HOSTNAME=y +# default: +CONFIG_LWIP_DHCPS_LEASE_UNIT=60 +# default: +CONFIG_LWIP_DHCPS_MAX_STATION_NUM=8 +# default: +CONFIG_LWIP_DHCPS_MAX_HOSTNAME_LEN=64 +# default: +CONFIG_LWIP_DHCPS_STATIC_ENTRIES=y +# end of DHCP server + +# default: +# CONFIG_LWIP_AUTOIP is not set +# default: +CONFIG_LWIP_IPV4=y +# default: +CONFIG_LWIP_IPV6=y +# default: +# CONFIG_LWIP_IPV6_AUTOCONFIG is not set +# default: +CONFIG_LWIP_IPV6_NUM_ADDRESSES=3 +# default: +# CONFIG_LWIP_IPV6_FORWARD is not set +# default: +# CONFIG_LWIP_NETIF_STATUS_CALLBACK is not set +# default: +# CONFIG_LWIP_NETIF_LINK_CALLBACK is not set +# default: +CONFIG_LWIP_NETIF_LOOPBACK=y +# default: +CONFIG_LWIP_LOOPBACK_MAX_PBUFS=8 + +# +# TCP +# +# default: +CONFIG_LWIP_MAX_ACTIVE_TCP=16 +# default: +CONFIG_LWIP_MAX_LISTENING_TCP=16 +# default: +CONFIG_LWIP_TCP_HIGH_SPEED_RETRANSMISSION=y +# default: +CONFIG_LWIP_TCP_MAXRTX=12 +# default: +CONFIG_LWIP_TCP_SYNMAXRTX=12 +# default: +CONFIG_LWIP_TCP_MSS=1440 +# default: +CONFIG_LWIP_TCP_TMR_INTERVAL=250 +# default: +CONFIG_LWIP_TCP_MSL=60000 +# default: +CONFIG_LWIP_TCP_FIN_WAIT_TIMEOUT=20000 +# default: +CONFIG_LWIP_TCP_SND_BUF_DEFAULT=5760 +# default: +CONFIG_LWIP_TCP_WND_DEFAULT=5760 +# default: +CONFIG_LWIP_TCP_RECVMBOX_SIZE=6 +# default: +CONFIG_LWIP_TCP_ACCEPTMBOX_SIZE=6 +# default: +CONFIG_LWIP_TCP_QUEUE_OOSEQ=y +# default: +CONFIG_LWIP_TCP_OOSEQ_TIMEOUT=6 +# default: +CONFIG_LWIP_TCP_OOSEQ_MAX_PBUFS=4 +# default: +# CONFIG_LWIP_TCP_SACK_OUT is not set +# default: +CONFIG_LWIP_TCP_OVERSIZE_MSS=y +# default: +# CONFIG_LWIP_TCP_OVERSIZE_QUARTER_MSS is not set +# default: +# CONFIG_LWIP_TCP_OVERSIZE_DISABLE is not set +# default: +CONFIG_LWIP_TCP_RTO_TIME=1500 +# end of TCP + +# +# UDP +# +# default: +CONFIG_LWIP_MAX_UDP_PCBS=16 +# default: +CONFIG_LWIP_UDP_RECVMBOX_SIZE=6 +# end of UDP + +# +# Checksums +# +# default: +# CONFIG_LWIP_CHECKSUM_CHECK_IP is not set +# default: +# CONFIG_LWIP_CHECKSUM_CHECK_UDP is not set +# default: +CONFIG_LWIP_CHECKSUM_CHECK_ICMP=y +# end of Checksums + +# default: +CONFIG_LWIP_TCPIP_TASK_STACK_SIZE=3072 +# default: +CONFIG_LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY=y +# default: +# CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU0 is not set +# default: +# CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU1 is not set +# default: +CONFIG_LWIP_TCPIP_TASK_AFFINITY=0x7FFFFFFF +# default: +CONFIG_LWIP_IPV6_MEMP_NUM_ND6_QUEUE=3 +# default: +CONFIG_LWIP_IPV6_ND6_NUM_NEIGHBORS=5 +# default: +CONFIG_LWIP_IPV6_ND6_NUM_PREFIXES=5 +# default: +CONFIG_LWIP_IPV6_ND6_NUM_ROUTERS=3 +# default: +CONFIG_LWIP_IPV6_ND6_NUM_DESTINATIONS=10 +# default: +# CONFIG_LWIP_IPV6_ND6_ROUTE_INFO_OPTION_SUPPORT is not set +# default: +# CONFIG_LWIP_PPP_SUPPORT is not set +# default: +# CONFIG_LWIP_SLIP_SUPPORT is not set + +# +# ICMP +# +# default: +CONFIG_LWIP_ICMP=y +# default: +# CONFIG_LWIP_MULTICAST_PING is not set +# default: +# CONFIG_LWIP_BROADCAST_PING is not set +# end of ICMP + +# +# LWIP RAW API +# +# default: +CONFIG_LWIP_MAX_RAW_PCBS=16 +# end of LWIP RAW API + +# +# SNTP +# +# default: +CONFIG_LWIP_SNTP_MAX_SERVERS=1 +# default: +# CONFIG_LWIP_DHCP_GET_NTP_SRV is not set +# default: +CONFIG_LWIP_SNTP_UPDATE_DELAY=3600000 +# default: +CONFIG_LWIP_SNTP_STARTUP_DELAY=y +# default: +CONFIG_LWIP_SNTP_MAXIMUM_STARTUP_DELAY=5000 +# end of SNTP + +# +# DNS +# +# default: +CONFIG_LWIP_DNS_MAX_HOST_IP=1 +# default: +CONFIG_LWIP_DNS_MAX_SERVERS=3 +# default: +# CONFIG_LWIP_FALLBACK_DNS_SERVER_SUPPORT is not set +# default: +# CONFIG_LWIP_DNS_SETSERVER_WITH_NETIF is not set +# default: +# CONFIG_LWIP_USE_ESP_GETADDRINFO is not set +# end of DNS + +# default: +CONFIG_LWIP_BRIDGEIF_MAX_PORTS=7 +# default: +CONFIG_LWIP_ESP_LWIP_ASSERT=y + +# +# Hooks +# +# default: +# CONFIG_LWIP_HOOK_TCP_ISN_NONE is not set +# default: +CONFIG_LWIP_HOOK_TCP_ISN_DEFAULT=y +# default: +# CONFIG_LWIP_HOOK_TCP_ISN_CUSTOM is not set +# default: +CONFIG_LWIP_HOOK_IP6_ROUTE_NONE=y +# default: +# CONFIG_LWIP_HOOK_IP6_ROUTE_DEFAULT is not set +# default: +# CONFIG_LWIP_HOOK_IP6_ROUTE_CUSTOM is not set +# default: +CONFIG_LWIP_HOOK_ND6_GET_GW_NONE=y +# default: +# CONFIG_LWIP_HOOK_ND6_GET_GW_DEFAULT is not set +# default: +# CONFIG_LWIP_HOOK_ND6_GET_GW_CUSTOM is not set +# default: +CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_NONE=y +# default: +# CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_DEFAULT is not set +# default: +# CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_CUSTOM is not set +# default: +CONFIG_LWIP_HOOK_DHCP_EXTRA_OPTION_NONE=y +# default: +# CONFIG_LWIP_HOOK_DHCP_EXTRA_OPTION_DEFAULT is not set +# default: +# CONFIG_LWIP_HOOK_DHCP_EXTRA_OPTION_CUSTOM is not set +# default: +CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_NONE=y +# default: +# CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_DEFAULT is not set +# default: +# CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_CUSTOM is not set +# default: +CONFIG_LWIP_HOOK_DNS_EXT_RESOLVE_NONE=y +# default: +# CONFIG_LWIP_HOOK_DNS_EXT_RESOLVE_CUSTOM is not set +# default: +# CONFIG_LWIP_HOOK_IP6_INPUT_NONE is not set +# default: +CONFIG_LWIP_HOOK_IP6_INPUT_DEFAULT=y +# default: +# CONFIG_LWIP_HOOK_IP6_INPUT_CUSTOM is not set +# end of Hooks + +# default: +# CONFIG_LWIP_DEBUG is not set +# end of LWIP + +# +# mbedTLS +# + +# +# Core Configuration +# +# default: +CONFIG_MBEDTLS_VER_4_X_SUPPORT=y +# default: +# CONFIG_MBEDTLS_COMPILER_OPTIMIZATION_NONE is not set +# default: +CONFIG_MBEDTLS_COMPILER_OPTIMIZATION_SIZE=y +# default: +# CONFIG_MBEDTLS_COMPILER_OPTIMIZATION_PERF is not set +# default: +CONFIG_MBEDTLS_FS_IO=y +# default: +CONFIG_MBEDTLS_THREADING_C=y +# default: +# CONFIG_MBEDTLS_THREADING_ALT is not set +# default: +CONFIG_MBEDTLS_THREADING_PTHREAD=y +# default: +CONFIG_MBEDTLS_ERROR_STRINGS=y +# default: +CONFIG_MBEDTLS_VERSION_C=y +# default: +CONFIG_MBEDTLS_HAVE_TIME=y +# default: +# CONFIG_MBEDTLS_PLATFORM_TIME_ALT is not set +# default: +# CONFIG_MBEDTLS_HAVE_TIME_DATE is not set +# default: +CONFIG_MBEDTLS_INTERNAL_MEM_ALLOC=y +# default: +# CONFIG_MBEDTLS_DEFAULT_MEM_ALLOC is not set +# default: +# CONFIG_MBEDTLS_CUSTOM_MEM_ALLOC is not set +# default: +CONFIG_MBEDTLS_ASYMMETRIC_CONTENT_LEN=y +# default: +CONFIG_MBEDTLS_SSL_IN_CONTENT_LEN=16384 +# default: +CONFIG_MBEDTLS_SSL_OUT_CONTENT_LEN=4096 +# default: +# CONFIG_MBEDTLS_DYNAMIC_BUFFER is not set +# default: +# CONFIG_MBEDTLS_VERSION_FEATURES is not set +# default: +# CONFIG_MBEDTLS_DEBUG is not set +# default: +CONFIG_MBEDTLS_SELF_TEST=y +# end of Core Configuration + +# +# Certificates +# +# default: +CONFIG_MBEDTLS_X509_USE_C=y +# default: +CONFIG_MBEDTLS_PEM_PARSE_C=y +# default: +CONFIG_MBEDTLS_PEM_WRITE_C=y +# default: +CONFIG_MBEDTLS_PK_C=y +# default: +CONFIG_MBEDTLS_PK_PARSE_C=y +# default: +CONFIG_MBEDTLS_PK_WRITE_C=y +# default: +# CONFIG_MBEDTLS_X509_REMOVE_INFO is not set +# default: +CONFIG_MBEDTLS_X509_CRL_PARSE_C=y +# default: +CONFIG_MBEDTLS_X509_CRT_PARSE_C=y +# default: +CONFIG_MBEDTLS_X509_CSR_PARSE_C=y +# default: +# CONFIG_MBEDTLS_X509_CREATE_C is not set +# default: +CONFIG_MBEDTLS_X509_RSASSA_PSS_SUPPORT=y +# default: +# CONFIG_MBEDTLS_X509_TRUSTED_CERT_CALLBACK is not set +# default: +CONFIG_MBEDTLS_ASN1_PARSE_C=y +# default: +CONFIG_MBEDTLS_ASN1_WRITE_C=y +# default: +CONFIG_MBEDTLS_CERTIFICATE_BUNDLE=y + +# +# Certificate Bundle Configuration +# +# default: +CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL=y +# default: +# CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN is not set +# default: +# CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE is not set +# default: +# CONFIG_MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE is not set +# default: +# CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEPRECATED_LIST is not set +# default: +CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS=200 +# end of Certificate Bundle Configuration + +# default: +# CONFIG_MBEDTLS_ALLOW_WEAK_CERTIFICATE_VERIFICATION is not set +# default: +# CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_CROSS_SIGNED_VERIFY is not set +# end of Certificates + +# default: +CONFIG_MBEDTLS_TLS_ENABLED=y + +# +# TLS Protocol Configuration +# +# default: +CONFIG_MBEDTLS_SSL_PROTO_TLS1_2=y +# default: +# CONFIG_MBEDTLS_SSL_PROTO_TLS1_3 is not set +# default: +# CONFIG_MBEDTLS_SSL_PROTO_GMTSSL1_1 is not set +# default: +CONFIG_MBEDTLS_TLS_SERVER=y +# default: +CONFIG_MBEDTLS_TLS_CLIENT=y +# default: +CONFIG_MBEDTLS_TLS_SERVER_AND_CLIENT=y +# default: +# CONFIG_MBEDTLS_TLS_SERVER_ONLY is not set +# default: +# CONFIG_MBEDTLS_TLS_CLIENT_ONLY is not set +# default: +# CONFIG_MBEDTLS_TLS_DISABLED is not set +# default: +# CONFIG_MBEDTLS_SSL_KEEP_PEER_CERTIFICATE is not set +# default: +# CONFIG_MBEDTLS_SSL_CONTEXT_SERIALIZATION is not set +# default: +CONFIG_MBEDTLS_SSL_CACHE_C=y +# default: +CONFIG_MBEDTLS_SSL_ALL_ALERT_MESSAGES=y + +# +# TLS Key Exchange Configuration +# +# default: +# CONFIG_MBEDTLS_PSK_MODES is not set +# default: +CONFIG_MBEDTLS_KEY_EXCHANGE_RSA=y +# default: +CONFIG_MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE=y +# default: +CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_RSA=y +# default: +CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA=y +# end of TLS Key Exchange Configuration + +# default: +CONFIG_MBEDTLS_SSL_SERVER_NAME_INDICATION=y +# default: +CONFIG_MBEDTLS_SSL_ALPN=y +# default: +CONFIG_MBEDTLS_SSL_MAX_FRAGMENT_LENGTH=y +# default: +# CONFIG_MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH is not set +# default: +CONFIG_MBEDTLS_SSL_RENEGOTIATION=y +# default: +CONFIG_MBEDTLS_CLIENT_SSL_SESSION_TICKETS=y +# default: +CONFIG_MBEDTLS_SERVER_SSL_SESSION_TICKETS=y +# default: +# CONFIG_MBEDTLS_SSL_KEYING_MATERIAL_EXPORT is not set +# end of TLS Protocol Configuration + +# default: +# CONFIG_MBEDTLS_SSL_PROTO_DTLS is not set + +# +# Symmetric Ciphers +# +# default: +CONFIG_MBEDTLS_AES_C=y +# default: +# CONFIG_MBEDTLS_CAMELLIA_C is not set +# default: +# CONFIG_MBEDTLS_ARIA_C is not set +# default: +# CONFIG_MBEDTLS_DES_C is not set +# default: +CONFIG_MBEDTLS_CCM_C=y +# default: +CONFIG_MBEDTLS_CIPHER_MODE_CBC=y +# default: +CONFIG_MBEDTLS_CIPHER_MODE_CFB=y +# default: +CONFIG_MBEDTLS_CIPHER_MODE_CTR=y +# default: +CONFIG_MBEDTLS_CIPHER_MODE_OFB=y +# default: +CONFIG_MBEDTLS_CIPHER_MODE_XTS=y +# default: +CONFIG_MBEDTLS_GCM_C=y +# default: +# CONFIG_MBEDTLS_NIST_KW_C is not set +# default: +CONFIG_MBEDTLS_AES_ROM_TABLES=y +# default: +# CONFIG_MBEDTLS_AES_FEWER_TABLES is not set +# default: +# CONFIG_MBEDTLS_AES_ONLY_128_BIT_KEY_LENGTH is not set +# default: +CONFIG_MBEDTLS_CMAC_C=y +# end of Symmetric Ciphers + +# +# Asymmetric Ciphers +# +# default: +CONFIG_MBEDTLS_BIGNUM_C=y +# default: +CONFIG_MBEDTLS_RSA_C=y +# default: +CONFIG_MBEDTLS_ECP_C=y + +# +# Supported Curves +# +# default: +CONFIG_MBEDTLS_ECP_DP_SECP256R1_ENABLED=y +# default: +CONFIG_MBEDTLS_ECP_DP_SECP384R1_ENABLED=y +# default: +CONFIG_MBEDTLS_ECP_DP_SECP521R1_ENABLED=y +# default: +CONFIG_MBEDTLS_ECP_DP_SECP256K1_ENABLED=y +# default: +CONFIG_MBEDTLS_ECP_DP_BP256R1_ENABLED=y +# default: +CONFIG_MBEDTLS_ECP_DP_BP384R1_ENABLED=y +# default: +CONFIG_MBEDTLS_ECP_DP_BP512R1_ENABLED=y +# default: +CONFIG_MBEDTLS_ECP_DP_CURVE25519_ENABLED=y +# end of Supported Curves + +# +# Elliptic Curve Ciphers Configuration +# +# default: +CONFIG_MBEDTLS_ECP_NIST_OPTIM=y +# default: +# CONFIG_MBEDTLS_ECP_FIXED_POINT_OPTIM is not set +# default: +# CONFIG_MBEDTLS_DHM_C is not set +# default: +CONFIG_MBEDTLS_ECDH_C=y +# default: +# CONFIG_MBEDTLS_ECJPAKE_C is not set +# default: +CONFIG_MBEDTLS_ECDSA_C=y +# default: +CONFIG_MBEDTLS_PK_PARSE_EC_EXTENDED=y +# default: +CONFIG_MBEDTLS_PK_PARSE_EC_COMPRESSED=y +# default: +CONFIG_MBEDTLS_ECDSA_DETERMINISTIC=y +# default: +# CONFIG_MBEDTLS_ECP_RESTARTABLE is not set +# end of Elliptic Curve Ciphers Configuration +# end of Asymmetric Ciphers + +# +# Hash functions +# +# default: +# CONFIG_MBEDTLS_RIPEMD160_C is not set +# default: +CONFIG_MBEDTLS_MD_C=y +# default: +CONFIG_MBEDTLS_MD5_C=y +# default: +CONFIG_MBEDTLS_SHA1_C=y +# default: +# CONFIG_MBEDTLS_SHA224_C is not set +# default: +CONFIG_MBEDTLS_SHA256_C=y +# default: +CONFIG_MBEDTLS_SHA384_C=y +# default: +CONFIG_MBEDTLS_SHA512_C=y +# default: +# CONFIG_MBEDTLS_SHA3_C is not set +# default: +CONFIG_MBEDTLS_ROM_MD5=y +# end of Hash functions + +# +# Hardware Acceleration +# +# default: +CONFIG_MBEDTLS_HARDWARE_SHA=y +# default: +CONFIG_MBEDTLS_HARDWARE_MPI=y +# default: +CONFIG_MBEDTLS_LARGE_KEY_SOFTWARE_MPI=y +# default: +CONFIG_MBEDTLS_HARDWARE_AES=y +# default: +# CONFIG_MBEDTLS_AES_SOFT_FALLBACK is not set +# default: +CONFIG_MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER=y +# default: +# CONFIG_MBEDTLS_ATCA_HW_ECDSA_SIGN is not set +# default: +# CONFIG_MBEDTLS_ATCA_HW_ECDSA_VERIFY is not set +# end of Hardware Acceleration + +# +# Entropy and Random Number Generation +# +# default: +# CONFIG_MBEDTLS_ENTROPY_FORCE_SHA256 is not set +# default: +CONFIG_MBEDTLS_CTR_DRBG_C=y +# default: +CONFIG_MBEDTLS_HMAC_DRBG_C=y +# end of Entropy and Random Number Generation + +# +# Encoding/Decoding +# +# default: +CONFIG_MBEDTLS_BASE64_C=y +# default: +CONFIG_MBEDTLS_PKCS5_C=y +# default: +CONFIG_MBEDTLS_PKCS7_C=y +# default: +CONFIG_MBEDTLS_PKCS1_V15=y +# default: +CONFIG_MBEDTLS_PKCS1_V21=y +# end of Encoding/Decoding + +# +# Stream Cipher +# +# default: +# CONFIG_MBEDTLS_CHACHA20_C is not set +# end of Stream Cipher +# end of mbedTLS + +# +# NVS +# +# default: +# CONFIG_NVS_ASSERT_ERROR_CHECK is not set +# default: +# CONFIG_NVS_LEGACY_DUP_KEYS_COMPATIBILITY is not set +# default: +# CONFIG_NVS_BDL_STACK is not set +# end of NVS + +# +# OpenThread +# +# default: +# CONFIG_OPENTHREAD_ENABLED is not set + +# +# OpenThread Spinel +# +# default: +# CONFIG_OPENTHREAD_SPINEL_ONLY is not set +# end of OpenThread Spinel + +# default: +# CONFIG_OPENTHREAD_DEBUG is not set +# end of OpenThread + +# +# Protocomm +# +# default: +# CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_0 is not set +# default: +# CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_1 is not set +# default: +CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_2=y +# default: +CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_PATCH_VERSION=y +# end of Protocomm + +# +# PThreads +# +# default: +CONFIG_PTHREAD_TASK_PRIO_DEFAULT=5 +# default: +CONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT=3072 +# default: +CONFIG_PTHREAD_STACK_MIN=768 +# default: +CONFIG_PTHREAD_DEFAULT_CORE_NO_AFFINITY=y +# default: +# CONFIG_PTHREAD_DEFAULT_CORE_0 is not set +# default: +# CONFIG_PTHREAD_DEFAULT_CORE_1 is not set +# default: +CONFIG_PTHREAD_TASK_CORE_DEFAULT=-1 +# default: +CONFIG_PTHREAD_TASK_NAME_DEFAULT="pthread" +# end of PThreads + +# +# SD Protocol Layer Configuration +# +# default: +CONFIG_SD_ENABLE_SDIO_SUPPORT=y +# end of SD Protocol Layer Configuration + +# +# MMU Config +# +# default: +CONFIG_MMU_PAGE_SIZE_64KB=y +# default: +CONFIG_MMU_PAGE_MODE="64KB" +# default: +CONFIG_MMU_PAGE_SIZE=0x10000 +# end of MMU Config + +# +# Main Flash configuration +# + +# +# SPI Flash behavior when brownout +# +# default: +CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC=y +# default: +CONFIG_SPI_FLASH_BROWNOUT_RESET=y +# end of SPI Flash behavior when brownout + +# +# Optional and Experimental Features (READ DOCS FIRST) +# + +# +# Features here require specific hardware (READ DOCS FIRST!) +# +# default: +CONFIG_SPI_FLASH_SUSPEND_TSUS_VAL_US=50 +# default: +# CONFIG_SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND is not set +# default: +# CONFIG_SPI_FLASH_FORCE_ENABLE_C6_H2_SUSPEND is not set +# default: +CONFIG_SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM=y +# end of Optional and Experimental Features (READ DOCS FIRST) +# end of Main Flash configuration + +# +# SPI Flash driver +# +# default: +# CONFIG_SPI_FLASH_VERIFY_WRITE is not set +# default: +# CONFIG_SPI_FLASH_ENABLE_COUNTERS is not set +# default: +CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS=y +# default: +# CONFIG_SPI_FLASH_DANGEROUS_WRITE_FAILS is not set +# default: +# CONFIG_SPI_FLASH_DANGEROUS_WRITE_ALLOWED is not set +# default: +# CONFIG_SPI_FLASH_SHARE_SPI1_BUS is not set +# default: +# CONFIG_SPI_FLASH_BYPASS_BLOCK_ERASE is not set +# default: +CONFIG_SPI_FLASH_YIELD_DURING_ERASE=y +# default: +CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS=20 +# default: +CONFIG_SPI_FLASH_ERASE_YIELD_TICKS=1 +# default: +CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE=8192 +# default: +# CONFIG_SPI_FLASH_SIZE_OVERRIDE is not set +# default: +# CONFIG_SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED is not set +# default: +# CONFIG_SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST is not set + +# +# Auto-detect flash chips +# +# default: +CONFIG_SPI_FLASH_VENDOR_XMC_SUPPORT_ENABLED=y +# default: +CONFIG_SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED=y +# default: +CONFIG_SPI_FLASH_VENDOR_ISSI_SUPPORT_ENABLED=y +# default: +CONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORT_ENABLED=y +# default: +CONFIG_SPI_FLASH_VENDOR_WINBOND_SUPPORT_ENABLED=y +# default: +CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP=y +# default: +CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP=y +# default: +CONFIG_SPI_FLASH_SUPPORT_GD_CHIP=y +# default: +CONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP=y +# default: +# CONFIG_SPI_FLASH_SUPPORT_BOYA_CHIP is not set +# default: +# CONFIG_SPI_FLASH_SUPPORT_TH_CHIP is not set +# end of Auto-detect flash chips + +# default: +CONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE=y +# end of SPI Flash driver + +# +# SPIFFS Configuration +# +# default: +CONFIG_SPIFFS_MAX_PARTITIONS=3 + +# +# SPIFFS Cache Configuration +# +# default: +CONFIG_SPIFFS_CACHE=y +# default: +CONFIG_SPIFFS_CACHE_WR=y +# default: +# CONFIG_SPIFFS_CACHE_STATS is not set +# end of SPIFFS Cache Configuration + +# default: +CONFIG_SPIFFS_PAGE_CHECK=y +# default: +CONFIG_SPIFFS_GC_MAX_RUNS=10 +# default: +# CONFIG_SPIFFS_GC_STATS is not set +# default: +CONFIG_SPIFFS_PAGE_SIZE=256 +# default: +CONFIG_SPIFFS_OBJ_NAME_LEN=32 +# default: +# CONFIG_SPIFFS_FOLLOW_SYMLINKS is not set +# default: +CONFIG_SPIFFS_USE_MAGIC=y +# default: +CONFIG_SPIFFS_USE_MAGIC_LENGTH=y +# default: +CONFIG_SPIFFS_META_LENGTH=4 +# default: +CONFIG_SPIFFS_USE_MTIME=y + +# +# Debug Configuration +# +# default: +# CONFIG_SPIFFS_DBG is not set +# default: +# CONFIG_SPIFFS_API_DBG is not set +# default: +# CONFIG_SPIFFS_GC_DBG is not set +# default: +# CONFIG_SPIFFS_CACHE_DBG is not set +# default: +# CONFIG_SPIFFS_CHECK_DBG is not set +# default: +# CONFIG_SPIFFS_TEST_VISUALISATION is not set +# end of Debug Configuration +# end of SPIFFS Configuration + +# +# TCP Transport +# + +# +# Websocket +# +# default: +CONFIG_WS_TRANSPORT=y +# default: +CONFIG_WS_BUFFER_SIZE=1024 +# default: +# CONFIG_WS_DYNAMIC_BUFFER is not set +# end of Websocket +# end of TCP Transport + +# +# Ultra Low Power (ULP) Co-processor +# +# default: +# CONFIG_ULP_COPROC_ENABLED is not set + +# +# ULP Debugging Options +# +# end of ULP Debugging Options +# end of Ultra Low Power (ULP) Co-processor + +# +# Unity unit testing library +# +# default: +CONFIG_UNITY_ENABLE_FLOAT=y +# default: +CONFIG_UNITY_ENABLE_DOUBLE=y +# default: +# CONFIG_UNITY_ENABLE_64BIT is not set +# default: +# CONFIG_UNITY_ENABLE_COLOR is not set +# default: +CONFIG_UNITY_ENABLE_IDF_TEST_RUNNER=y +# default: +# CONFIG_UNITY_ENABLE_FIXTURE is not set +# default: +# CONFIG_UNITY_ENABLE_BACKTRACE_ON_FAIL is not set +# end of Unity unit testing library + +# +# Virtual file system +# +# default: +CONFIG_VFS_SUPPORT_IO=y +# default: +CONFIG_VFS_SUPPORT_DIR=y +# default: +CONFIG_VFS_SUPPORT_SELECT=y +# default: +CONFIG_VFS_SUPPRESS_SELECT_DEBUG_OUTPUT=y +# default: +# CONFIG_VFS_SELECT_IN_RAM is not set +# default: +# CONFIG_VFS_SUPPORT_TERMIOS is not set +# default: +CONFIG_VFS_MAX_COUNT=8 + +# +# Host File System I/O (Semihosting) +# +# default: +CONFIG_VFS_SEMIHOSTFS_MAX_MOUNT_POINTS=1 +# end of Host File System I/O (Semihosting) + +# default: +CONFIG_VFS_INITIALIZE_DEV_NULL=y +# end of Virtual file system + +# +# Wear Levelling +# +# default: +# CONFIG_WL_SECTOR_SIZE_512 is not set +# default: +CONFIG_WL_SECTOR_SIZE_4096=y +# default: +CONFIG_WL_SECTOR_SIZE=4096 +# end of Wear Levelling +# end of Component config + +# default: +# CONFIG_IDF_EXPERIMENTAL_FEATURES is not set + +# Deprecated options for backward compatibility +# CONFIG_APP_BUILD_TYPE_ELF_RAM is not set +# CONFIG_NO_BLOBS is not set +# CONFIG_ESP32_NO_BLOBS is not set +# CONFIG_ESP32_COMPATIBLE_PRE_V2_1_BOOTLOADERS is not set +# CONFIG_ESP32_COMPATIBLE_PRE_V3_1_BOOTLOADERS is not set +# CONFIG_APP_ROLLBACK_ENABLE is not set +# CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_NONE is not set +# CONFIG_LOG_BOOTLOADER_LEVEL_NONE is not set +# CONFIG_LOG_BOOTLOADER_LEVEL_ERROR is not set +# CONFIG_LOG_BOOTLOADER_LEVEL_WARN is not set +CONFIG_LOG_BOOTLOADER_LEVEL_INFO=y +# CONFIG_LOG_BOOTLOADER_LEVEL_DEBUG is not set +# CONFIG_LOG_BOOTLOADER_LEVEL_VERBOSE is not set +CONFIG_LOG_BOOTLOADER_LEVEL=3 +# CONFIG_FLASH_ENCRYPTION_ENABLED is not set +# CONFIG_FLASHMODE_QIO is not set +# CONFIG_FLASHMODE_QOUT is not set +CONFIG_FLASHMODE_DIO=y +# CONFIG_FLASHMODE_DOUT is not set +CONFIG_MONITOR_BAUD=115200 +CONFIG_OPTIMIZATION_LEVEL_DEBUG=y +CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG=y +CONFIG_COMPILER_OPTIMIZATION_DEFAULT=y +# CONFIG_OPTIMIZATION_LEVEL_RELEASE is not set +# CONFIG_COMPILER_OPTIMIZATION_LEVEL_RELEASE is not set +CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED=y +# CONFIG_OPTIMIZATION_ASSERTIONS_SILENT is not set +# CONFIG_OPTIMIZATION_ASSERTIONS_DISABLED is not set +CONFIG_OPTIMIZATION_ASSERTION_LEVEL=2 +# CONFIG_CXX_EXCEPTIONS is not set +CONFIG_STACK_CHECK_NONE=y +# CONFIG_STACK_CHECK_NORM is not set +# CONFIG_STACK_CHECK_STRONG is not set +# CONFIG_STACK_CHECK_ALL is not set +# CONFIG_WARN_WRITE_STRINGS is not set +CONFIG_ADC_CAL_EFUSE_TP_ENABLE=y +CONFIG_ADC_CAL_EFUSE_VREF_ENABLE=y +CONFIG_ADC_CAL_LUT_ENABLE=y +CONFIG_ADC_DISABLE_DAC=y +# CONFIG_GPTIMER_ISR_IRAM_SAFE is not set +# CONFIG_MCPWM_ISR_IRAM_SAFE is not set +# CONFIG_EVENT_LOOP_PROFILING is not set +CONFIG_POST_EVENTS_FROM_ISR=y +CONFIG_POST_EVENTS_FROM_IRAM_ISR=y +CONFIG_GDBSTUB_SUPPORT_TASKS=y +CONFIG_GDBSTUB_MAX_TASKS=32 +# CONFIG_OTA_ALLOW_HTTP is not set +# CONFIG_TWO_UNIVERSAL_MAC_ADDRESS is not set +CONFIG_FOUR_UNIVERSAL_MAC_ADDRESS=y +CONFIG_NUMBER_OF_UNIVERSAL_MAC_ADDRESS=4 +# CONFIG_ESP_SYSTEM_PD_FLASH is not set +CONFIG_ESP32_DEEP_SLEEP_WAKEUP_DELAY=2000 +CONFIG_ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY=2000 +CONFIG_ESP32_RTC_CLK_SRC_INT_RC=y +CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_RC=y +# CONFIG_ESP32_RTC_CLK_SRC_EXT_CRYS is not set +# CONFIG_ESP32_RTC_CLOCK_SOURCE_EXTERNAL_CRYSTAL is not set +# CONFIG_ESP32_RTC_CLK_SRC_EXT_OSC is not set +# CONFIG_ESP32_RTC_CLOCK_SOURCE_EXTERNAL_OSC is not set +# CONFIG_ESP32_RTC_CLK_SRC_INT_8MD256 is not set +# CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_8MD256 is not set +CONFIG_ESP32_RTC_CLK_CAL_CYCLES=1024 +CONFIG_PERIPH_CTRL_FUNC_IN_IRAM=y +# CONFIG_ESP32_XTAL_FREQ_26 is not set +CONFIG_ESP32_XTAL_FREQ_40=y +# CONFIG_ESP32_XTAL_FREQ_AUTO is not set +CONFIG_ESP32_XTAL_FREQ=40 +CONFIG_BROWNOUT_DET=y +CONFIG_ESP32_BROWNOUT_DET=y +CONFIG_BROWNOUT_DET_LVL_SEL_0=y +CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_0=y +# CONFIG_BROWNOUT_DET_LVL_SEL_1 is not set +# CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_1 is not set +# CONFIG_BROWNOUT_DET_LVL_SEL_2 is not set +# CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_2 is not set +# CONFIG_BROWNOUT_DET_LVL_SEL_3 is not set +# CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_3 is not set +# CONFIG_BROWNOUT_DET_LVL_SEL_4 is not set +# CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_4 is not set +# CONFIG_BROWNOUT_DET_LVL_SEL_5 is not set +# CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_5 is not set +# CONFIG_BROWNOUT_DET_LVL_SEL_6 is not set +# CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_6 is not set +# CONFIG_BROWNOUT_DET_LVL_SEL_7 is not set +# CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_7 is not set +CONFIG_BROWNOUT_DET_LVL=0 +CONFIG_ESP32_BROWNOUT_DET_LVL=0 +CONFIG_ESP_SYSTEM_BROWNOUT_INTR=y +CONFIG_NEWLIB_STDOUT_LINE_ENDING_CRLF=y +# CONFIG_NEWLIB_STDOUT_LINE_ENDING_LF is not set +# CONFIG_NEWLIB_STDOUT_LINE_ENDING_CR is not set +# CONFIG_NEWLIB_STDIN_LINE_ENDING_CRLF is not set +# CONFIG_NEWLIB_STDIN_LINE_ENDING_LF is not set +CONFIG_NEWLIB_STDIN_LINE_ENDING_CR=y +CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT=y +CONFIG_ESP32_TIME_SYSCALL_USE_RTC_HRT=y +CONFIG_ESP32_TIME_SYSCALL_USE_RTC_FRC1=y +# CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC is not set +# CONFIG_ESP32_TIME_SYSCALL_USE_RTC is not set +# CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT is not set +# CONFIG_ESP32_TIME_SYSCALL_USE_HRT is not set +# CONFIG_ESP32_TIME_SYSCALL_USE_FRC1 is not set +# CONFIG_NEWLIB_TIME_SYSCALL_USE_NONE is not set +# CONFIG_ESP32_TIME_SYSCALL_USE_NONE is not set +CONFIG_ESP32_PHY_CALIBRATION_AND_DATA_STORAGE=y +# CONFIG_ESP32_PHY_INIT_DATA_IN_PARTITION is not set +CONFIG_ESP32_PHY_MAX_WIFI_TX_POWER=20 +CONFIG_ESP32_PHY_MAX_TX_POWER=20 +# CONFIG_REDUCE_PHY_TX_POWER is not set +# CONFIG_ESP32_REDUCE_PHY_TX_POWER is not set +# CONFIG_SPIRAM_SUPPORT is not set +# CONFIG_ESP32_SPIRAM_SUPPORT is not set +CONFIG_CONSOLE_UART_DEFAULT=y +# CONFIG_CONSOLE_UART_CUSTOM is not set +# CONFIG_CONSOLE_UART_NONE is not set +# CONFIG_ESP_CONSOLE_UART_NONE is not set +CONFIG_CONSOLE_UART=y +CONFIG_CONSOLE_UART_NUM=0 +CONFIG_CONSOLE_UART_BAUDRATE=115200 +# CONFIG_ESP32_DEFAULT_CPU_FREQ_80 is not set +CONFIG_ESP32_DEFAULT_CPU_FREQ_160=y +# CONFIG_ESP32_DEFAULT_CPU_FREQ_240 is not set +CONFIG_ESP32_DEFAULT_CPU_FREQ_MHZ=160 +CONFIG_TRACEMEM_RESERVE_DRAM=0x0 +# CONFIG_ESP32_PANIC_PRINT_HALT is not set +CONFIG_ESP32_PANIC_PRINT_REBOOT=y +# CONFIG_ESP32_PANIC_SILENT_REBOOT is not set +# CONFIG_ESP32_PANIC_GDBSTUB is not set +CONFIG_SYSTEM_EVENT_QUEUE_SIZE=32 +CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE=2304 +CONFIG_MAIN_TASK_STACK_SIZE=3584 +CONFIG_INT_WDT=y +CONFIG_INT_WDT_TIMEOUT_MS=300 +CONFIG_INT_WDT_CHECK_CPU1=y +CONFIG_TASK_WDT=y +CONFIG_ESP_TASK_WDT=y +# CONFIG_TASK_WDT_PANIC is not set +CONFIG_TASK_WDT_TIMEOUT_S=5 +CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0=y +CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU1=y +# CONFIG_ESP32_DEBUG_STUBS_ENABLE is not set +CONFIG_ESP32_DEBUG_OCDAWARE=y +# CONFIG_DISABLE_BASIC_ROM_CONSOLE is not set +CONFIG_IPC_TASK_STACK_SIZE=1024 +CONFIG_TIMER_TASK_STACK_SIZE=3584 +# CONFIG_ESP32_APPTRACE_ENABLE is not set +CONFIG_ESP32_WIFI_ENABLED=y +CONFIG_ESP32_WIFI_STATIC_RX_BUFFER_NUM=10 +CONFIG_ESP32_WIFI_DYNAMIC_RX_BUFFER_NUM=32 +# CONFIG_ESP32_WIFI_STATIC_TX_BUFFER is not set +CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER=y +CONFIG_ESP32_WIFI_TX_BUFFER_TYPE=1 +CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM=32 +# CONFIG_ESP32_WIFI_CSI_ENABLED is not set +CONFIG_ESP32_WIFI_AMPDU_TX_ENABLED=y +CONFIG_ESP32_WIFI_TX_BA_WIN=6 +CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED=y +CONFIG_ESP32_WIFI_RX_BA_WIN=6 +CONFIG_ESP32_WIFI_NVS_ENABLED=y +CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_0=y +# CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_1 is not set +CONFIG_ESP32_WIFI_SOFTAP_BEACON_MAX_LEN=752 +CONFIG_ESP32_WIFI_MGMT_SBUF_NUM=32 +CONFIG_ESP32_WIFI_IRAM_OPT=y +CONFIG_ESP32_WIFI_RX_IRAM_OPT=y +CONFIG_ESP32_WIFI_ENABLE_WPA3_SAE=y +CONFIG_ESP32_WIFI_ENABLE_WPA3_OWE_STA=y +# CONFIG_ESP_WIFI_NAN_ENABLE is not set +CONFIG_WPA_MBEDTLS_CRYPTO=y +CONFIG_WPA_MBEDTLS_TLS_CLIENT=y +# CONFIG_WPA_WAPI_PSK is not set +# CONFIG_WPA_11KV_SUPPORT is not set +# CONFIG_WPA_MBO_SUPPORT is not set +# CONFIG_WPA_DPP_SUPPORT is not set +# CONFIG_WPA_11R_SUPPORT is not set +# CONFIG_WPA_WPS_SOFTAP_REGISTRAR is not set +# CONFIG_WPA_WPS_STRICT is not set +# CONFIG_WPA_DEBUG_PRINT is not set +# CONFIG_ESP32_ENABLE_COREDUMP_TO_FLASH is not set +# CONFIG_ESP32_ENABLE_COREDUMP_TO_UART is not set +CONFIG_ESP32_ENABLE_COREDUMP_TO_NONE=y +CONFIG_TIMER_TASK_PRIORITY=1 +CONFIG_TIMER_TASK_STACK_DEPTH=2048 +CONFIG_TIMER_QUEUE_LENGTH=10 +# CONFIG_ENABLE_STATIC_TASK_CLEAN_UP_HOOK is not set +# CONFIG_HAL_ASSERTION_SILIENT is not set +# CONFIG_L2_TO_L3_COPY is not set +CONFIG_ESP_GRATUITOUS_ARP=y +CONFIG_GARP_TMR_INTERVAL=60 +CONFIG_TCPIP_RECVMBOX_SIZE=32 +CONFIG_TCP_MAXRTX=12 +CONFIG_TCP_SYNMAXRTX=12 +CONFIG_TCP_MSS=1440 +CONFIG_TCP_MSL=60000 +CONFIG_TCP_SND_BUF_DEFAULT=5760 +CONFIG_TCP_WND_DEFAULT=5760 +CONFIG_TCP_RECVMBOX_SIZE=6 +CONFIG_TCP_QUEUE_OOSEQ=y +CONFIG_TCP_OVERSIZE_MSS=y +# CONFIG_TCP_OVERSIZE_QUARTER_MSS is not set +# CONFIG_TCP_OVERSIZE_DISABLE is not set +CONFIG_UDP_RECVMBOX_SIZE=6 +CONFIG_TCPIP_TASK_STACK_SIZE=3072 +CONFIG_TCPIP_TASK_AFFINITY_NO_AFFINITY=y +# CONFIG_TCPIP_TASK_AFFINITY_CPU0 is not set +# CONFIG_TCPIP_TASK_AFFINITY_CPU1 is not set +CONFIG_TCPIP_TASK_AFFINITY=0x7FFFFFFF +# CONFIG_PPP_SUPPORT is not set +CONFIG_ESP32_PTHREAD_TASK_PRIO_DEFAULT=5 +CONFIG_ESP32_PTHREAD_TASK_STACK_SIZE_DEFAULT=3072 +CONFIG_ESP32_PTHREAD_STACK_MIN=768 +CONFIG_ESP32_DEFAULT_PTHREAD_CORE_NO_AFFINITY=y +# CONFIG_ESP32_DEFAULT_PTHREAD_CORE_0 is not set +# CONFIG_ESP32_DEFAULT_PTHREAD_CORE_1 is not set +CONFIG_ESP32_PTHREAD_TASK_CORE_DEFAULT=-1 +CONFIG_ESP32_PTHREAD_TASK_NAME_DEFAULT="pthread" +CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS=y +# CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_FAILS is not set +# CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ALLOWED is not set +# CONFIG_ESP32_ULP_COPROC_ENABLED is not set +CONFIG_SUPPRESS_SELECT_DEBUG_OUTPUT=y +# CONFIG_SUPPORT_TERMIOS is not set +CONFIG_SEMIHOSTFS_MAX_MOUNT_POINTS=1 +# End of deprecated options diff --git a/sdkconfig.old b/sdkconfig.old new file mode 100644 index 0000000..c3e2247 --- /dev/null +++ b/sdkconfig.old @@ -0,0 +1,3232 @@ +# +# Automatically generated file. DO NOT EDIT. +# Espressif IoT Development Framework (ESP-IDF) 6.0.0 Project Configuration +# +# default: +CONFIG_SOC_CAPS_ECO_VER_MAX=301 +# default: +CONFIG_SOC_ADC_SUPPORTED=y +# default: +CONFIG_SOC_DAC_SUPPORTED=y +# default: +CONFIG_SOC_UART_SUPPORTED=y +# default: +CONFIG_SOC_MCPWM_SUPPORTED=y +# default: +CONFIG_SOC_GPTIMER_SUPPORTED=y +# default: +CONFIG_SOC_SDMMC_HOST_SUPPORTED=y +# default: +CONFIG_SOC_BT_SUPPORTED=y +# default: +CONFIG_SOC_PCNT_SUPPORTED=y +# default: +CONFIG_SOC_PHY_SUPPORTED=y +# default: +CONFIG_SOC_WIFI_SUPPORTED=y +# default: +CONFIG_SOC_SDIO_SLAVE_SUPPORTED=y +# default: +CONFIG_SOC_TWAI_SUPPORTED=y +# default: +CONFIG_SOC_EFUSE_SUPPORTED=y +# default: +CONFIG_SOC_EMAC_SUPPORTED=y +# default: +CONFIG_SOC_ULP_SUPPORTED=y +# default: +CONFIG_SOC_CCOMP_TIMER_SUPPORTED=y +# default: +CONFIG_SOC_RTC_FAST_MEM_SUPPORTED=y +# default: +CONFIG_SOC_RTC_SLOW_MEM_SUPPORTED=y +# default: +CONFIG_SOC_RTC_MEM_SUPPORTED=y +# default: +CONFIG_SOC_RTC_TIMER_V1_SUPPORTED=y +# default: +CONFIG_SOC_I2S_SUPPORTED=y +# default: +CONFIG_SOC_I2S_I80_LCD_SUPPORTED=y +# default: +CONFIG_SOC_LCD_I80_SUPPORTED=y +# default: +CONFIG_SOC_RMT_SUPPORTED=y +# default: +CONFIG_SOC_SDM_SUPPORTED=y +# default: +CONFIG_SOC_GPSPI_SUPPORTED=y +# default: +CONFIG_SOC_LEDC_SUPPORTED=y +# default: +CONFIG_SOC_I2C_SUPPORTED=y +# default: +CONFIG_SOC_SUPPORT_COEXISTENCE=y +# default: +CONFIG_SOC_AES_SUPPORTED=y +# default: +CONFIG_SOC_MPI_SUPPORTED=y +# default: +CONFIG_SOC_SHA_SUPPORTED=y +# default: +CONFIG_SOC_FLASH_ENC_SUPPORTED=y +# default: +CONFIG_SOC_SECURE_BOOT_SUPPORTED=y +# default: +CONFIG_SOC_TOUCH_SENSOR_SUPPORTED=y +# default: +CONFIG_SOC_BOD_SUPPORTED=y +# default: +CONFIG_SOC_ULP_FSM_SUPPORTED=y +# default: +CONFIG_SOC_CLK_TREE_SUPPORTED=y +# default: +CONFIG_SOC_MPU_SUPPORTED=y +# default: +CONFIG_SOC_WDT_SUPPORTED=y +# default: +CONFIG_SOC_SPI_FLASH_SUPPORTED=y +# default: +CONFIG_SOC_RNG_SUPPORTED=y +# default: +CONFIG_SOC_LIGHT_SLEEP_SUPPORTED=y +# default: +CONFIG_SOC_DEEP_SLEEP_SUPPORTED=y +# default: +CONFIG_SOC_LP_PERIPH_SHARE_INTERRUPT=y +# default: +CONFIG_SOC_PM_SUPPORTED=y +# default: +CONFIG_SOC_DPORT_WORKAROUND_DIS_INTERRUPT_LVL=5 +# default: +CONFIG_SOC_XTAL_SUPPORT_26M=y +# default: +CONFIG_SOC_XTAL_SUPPORT_40M=y +# default: +CONFIG_SOC_ADC_RTC_CTRL_SUPPORTED=y +# default: +CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED=y +# default: +CONFIG_SOC_ADC_DMA_SUPPORTED=y +# default: +CONFIG_SOC_ADC_PERIPH_NUM=2 +# default: +CONFIG_SOC_ADC_MAX_CHANNEL_NUM=10 +# default: +CONFIG_SOC_ADC_ATTEN_NUM=4 +# default: +CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM=2 +# default: +CONFIG_SOC_ADC_PATT_LEN_MAX=16 +# default: +CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH=9 +# default: +CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH=12 +# default: +CONFIG_SOC_ADC_DIGI_RESULT_BYTES=2 +# default: +CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV=4 +# default: +CONFIG_SOC_ADC_DIGI_MONITOR_NUM=0 +# default: +CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH=2000000 +# default: +CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW=20000 +# default: +CONFIG_SOC_ADC_RTC_MIN_BITWIDTH=9 +# default: +CONFIG_SOC_ADC_RTC_MAX_BITWIDTH=12 +# default: +CONFIG_SOC_ADC_SHARED_POWER=y +# default: +CONFIG_SOC_BROWNOUT_RESET_SUPPORTED=y +# default: +CONFIG_SOC_SHARED_IDCACHE_SUPPORTED=y +# default: +CONFIG_SOC_IDCACHE_PER_CORE=y +# default: +CONFIG_SOC_CPU_CORES_NUM=2 +# default: +CONFIG_SOC_CPU_INTR_NUM=32 +# default: +CONFIG_SOC_CPU_HAS_FPU=y +# default: +CONFIG_SOC_HP_CPU_HAS_MULTIPLE_CORES=y +# default: +CONFIG_SOC_CPU_BREAKPOINTS_NUM=2 +# default: +CONFIG_SOC_CPU_WATCHPOINTS_NUM=2 +# default: +CONFIG_SOC_CPU_WATCHPOINT_MAX_REGION_SIZE=0x40 +# default: +CONFIG_SOC_DAC_CHAN_NUM=2 +# default: +CONFIG_SOC_DAC_RESOLUTION=8 +# default: +CONFIG_SOC_DAC_DMA_16BIT_ALIGN=y +# default: +CONFIG_SOC_GPIO_PORT=1 +# default: +CONFIG_SOC_GPIO_PIN_COUNT=40 +# default: +CONFIG_SOC_GPIO_VALID_GPIO_MASK=0xFFFFFFFFFF +# default: +CONFIG_SOC_GPIO_IN_RANGE_MAX=39 +# default: +CONFIG_SOC_GPIO_OUT_RANGE_MAX=33 +# default: +CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK=0xEF0FEA +# default: +CONFIG_SOC_GPIO_CLOCKOUT_BY_IO_MUX=y +# default: +CONFIG_SOC_GPIO_CLOCKOUT_CHANNEL_NUM=3 +# default: +CONFIG_SOC_I2C_NUM=2 +# default: +CONFIG_SOC_HP_I2C_NUM=2 +# default: +CONFIG_SOC_I2C_SUPPORT_APB=y +# default: +CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR=y +# default: +CONFIG_SOC_I2C_SUPPORT_SLAVE=y +# default: +CONFIG_SOC_I2C_STOP_INDEPENDENT=y +# default: +CONFIG_SOC_I2S_HW_VERSION_1=y +# default: +CONFIG_SOC_I2S_SUPPORTS_APLL=y +# default: +CONFIG_SOC_I2S_SUPPORTS_PDM=y +# default: +CONFIG_SOC_I2S_SUPPORTS_PDM_TX=y +# default: +CONFIG_SOC_I2S_SUPPORTS_PCM2PDM=y +# default: +CONFIG_SOC_I2S_SUPPORTS_PDM_RX=y +# default: +CONFIG_SOC_I2S_SUPPORTS_PDM2PCM=y +# default: +CONFIG_SOC_I2S_PDM_MAX_TX_LINES=1 +# default: +CONFIG_SOC_I2S_PDM_MAX_RX_LINES=1 +# default: +CONFIG_SOC_LEDC_HAS_TIMER_SPECIFIC_MUX=y +# default: +CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK=y +# default: +CONFIG_SOC_LEDC_SUPPORT_REF_TICK=y +# default: +CONFIG_SOC_LEDC_SUPPORT_HS_MODE=y +# default: +CONFIG_SOC_LEDC_TIMER_NUM=4 +# default: +CONFIG_SOC_LEDC_CHANNEL_NUM=8 +# default: +CONFIG_SOC_LEDC_TIMER_BIT_WIDTH=20 +# default: +CONFIG_SOC_MMU_PERIPH_NUM=2 +# default: +CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM=3 +# default: +CONFIG_SOC_MPU_MIN_REGION_SIZE=0x20000000 +# default: +CONFIG_SOC_MPU_REGIONS_MAX_NUM=8 +# default: +CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL=64 +# default: +CONFIG_SOC_RTCIO_PIN_COUNT=18 +# default: +CONFIG_SOC_RTCIO_INPUT_OUTPUT_SUPPORTED=y +# default: +CONFIG_SOC_RTCIO_HOLD_SUPPORTED=y +# default: +CONFIG_SOC_RTCIO_WAKE_SUPPORTED=y +# default: +CONFIG_SOC_SPI_HD_BOTH_INOUT_SUPPORTED=y +# default: +CONFIG_SOC_SPI_AS_CS_SUPPORTED=y +# default: +CONFIG_SOC_SPI_PERIPH_NUM=3 +# default: +CONFIG_SOC_SPI_DMA_CHAN_NUM=2 +# default: +CONFIG_SOC_SPI_MAX_CS_NUM=3 +# default: +CONFIG_SOC_SPI_SUPPORT_CLK_APB=y +# default: +CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE=64 +# default: +CONFIG_SOC_SPI_MAX_PRE_DIVIDER=8192 +# default: +CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED=y +# default: +CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED=y +# default: +CONFIG_SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED=y +# default: +CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED=y +# default: +CONFIG_SOC_LP_TIMER_BIT_WIDTH_LO=32 +# default: +CONFIG_SOC_LP_TIMER_BIT_WIDTH_HI=16 +# default: +CONFIG_SOC_TOUCH_SENSOR_VERSION=1 +# default: +CONFIG_SOC_TOUCH_MIN_CHAN_ID=0 +# default: +CONFIG_SOC_TOUCH_MAX_CHAN_ID=9 +# default: +CONFIG_SOC_TOUCH_SUPPORT_SLEEP_WAKEUP=y +# default: +CONFIG_SOC_TOUCH_SAMPLE_CFG_NUM=1 +# default: +CONFIG_SOC_TWAI_CONTROLLER_NUM=1 +# default: +CONFIG_SOC_TWAI_MASK_FILTER_NUM=1 +# default: +CONFIG_SOC_UART_NUM=3 +# default: +CONFIG_SOC_UART_HP_NUM=3 +# default: +CONFIG_SOC_UART_SUPPORT_APB_CLK=y +# default: +CONFIG_SOC_UART_SUPPORT_REF_TICK=y +# default: +CONFIG_SOC_UART_FIFO_LEN=128 +# default: +CONFIG_SOC_UART_BITRATE_MAX=5000000 +# default: +CONFIG_SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE=y +# default: +CONFIG_SOC_SPIRAM_SUPPORTED=y +# default: +CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE=y +# default: +CONFIG_SOC_SHA_SUPPORT_PARALLEL_ENG=y +# default: +CONFIG_SOC_SHA_ENDIANNESS_BE=y +# default: +CONFIG_SOC_SHA_SUPPORT_SHA1=y +# default: +CONFIG_SOC_SHA_SUPPORT_SHA256=y +# default: +CONFIG_SOC_SHA_SUPPORT_SHA384=y +# default: +CONFIG_SOC_SHA_SUPPORT_SHA512=y +# default: +CONFIG_SOC_MPI_MEM_BLOCKS_NUM=4 +# default: +CONFIG_SOC_MPI_OPERATIONS_NUM=1 +# default: +CONFIG_SOC_RSA_MAX_BIT_LEN=4096 +# default: +CONFIG_SOC_AES_SUPPORT_AES_128=y +# default: +CONFIG_SOC_AES_SUPPORT_AES_192=y +# default: +CONFIG_SOC_AES_SUPPORT_AES_256=y +# default: +CONFIG_SOC_SECURE_BOOT_V1=y +# default: +CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS=1 +# default: +CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX=32 +# default: +CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE=21 +# default: +CONFIG_SOC_PM_SUPPORT_EXT0_WAKEUP=y +# default: +CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP=y +# default: +CONFIG_SOC_PM_SUPPORT_EXT_WAKEUP=y +# default: +CONFIG_SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP=y +# default: +CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD=y +# default: +CONFIG_SOC_PM_SUPPORT_RTC_FAST_MEM_PD=y +# default: +CONFIG_SOC_PM_SUPPORT_RTC_SLOW_MEM_PD=y +# default: +CONFIG_SOC_PM_SUPPORT_RC_FAST_PD=y +# default: +CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD=y +# default: +CONFIG_SOC_PM_SUPPORT_MODEM_PD=y +# default: +CONFIG_SOC_CONFIGURABLE_VDDSDIO_SUPPORTED=y +# default: +CONFIG_SOC_PM_MODEM_PD_BY_SW=y +# default: +CONFIG_SOC_CLK_APLL_SUPPORTED=y +# default: +CONFIG_SOC_CLK_RC_FAST_D256_SUPPORTED=y +# default: +CONFIG_SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256=y +# default: +CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION=y +# default: +CONFIG_SOC_CLK_XTAL32K_SUPPORTED=y +# default: +CONFIG_SOC_CLK_LP_FAST_SUPPORT_XTAL_D4=y +# default: +CONFIG_SOC_SDMMC_USE_IOMUX=y +# default: +CONFIG_SOC_SDMMC_NUM_SLOTS=2 +# default: +CONFIG_SOC_SDMMC_DATA_WIDTH_MAX=8 +# default: +CONFIG_SOC_WIFI_WAPI_SUPPORT=y +# default: +CONFIG_SOC_WIFI_CSI_SUPPORT=y +# default: +CONFIG_SOC_WIFI_MESH_SUPPORT=y +# default: +CONFIG_SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW=y +# default: +CONFIG_SOC_WIFI_NAN_SUPPORT=y +# default: +CONFIG_SOC_BLE_SUPPORTED=y +# default: +CONFIG_SOC_BLE_MESH_SUPPORTED=y +# default: +CONFIG_SOC_BT_CLASSIC_SUPPORTED=y +# default: +CONFIG_SOC_BLUFI_SUPPORTED=y +# default: +CONFIG_SOC_BT_H2C_ENC_KEY_CTRL_ENH_VSC_SUPPORTED=y +# default: +CONFIG_SOC_BLE_MULTI_CONN_OPTIMIZATION=y +# default: +CONFIG_SOC_ULP_HAS_ADC=y +# default: +CONFIG_SOC_PHY_COMBO_MODULE=y +# default: +CONFIG_SOC_EMAC_RMII_CLK_OUT_INTERNAL_LOOPBACK=y +# default: +CONFIG_IDF_CMAKE=y +# default: +CONFIG_IDF_TOOLCHAIN="gcc" +# default: +CONFIG_IDF_TOOLCHAIN_GCC=y +# default: +CONFIG_IDF_TARGET_ARCH_XTENSA=y +# default: +CONFIG_IDF_TARGET_ARCH="xtensa" +# default: +CONFIG_IDF_TARGET="esp32" +# default: +CONFIG_IDF_INIT_VERSION="6.0.0" +# default: +CONFIG_IDF_TARGET_ESP32=y +# default: +CONFIG_IDF_FIRMWARE_CHIP_ID=0x0000 + +# +# Build type +# +# default: +CONFIG_APP_BUILD_TYPE_APP_2NDBOOT=y +# default: +# CONFIG_APP_BUILD_TYPE_RAM is not set +# default: +CONFIG_APP_BUILD_GENERATE_BINARIES=y +# default: +CONFIG_APP_BUILD_BOOTLOADER=y +# default: +CONFIG_APP_BUILD_USE_FLASH_SECTIONS=y +# default: +# CONFIG_APP_REPRODUCIBLE_BUILD is not set +# default: +# CONFIG_APP_NO_BLOBS is not set +# default: +# CONFIG_APP_COMPATIBLE_PRE_V2_1_BOOTLOADERS is not set +# default: +# CONFIG_APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS is not set +# end of Build type + +# +# Bootloader config +# + +# +# Bootloader manager +# +# default: +CONFIG_BOOTLOADER_COMPILE_TIME_DATE=y +# default: +CONFIG_BOOTLOADER_PROJECT_VER=1 +# end of Bootloader manager + +# +# Application Rollback +# +# default: +# CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE is not set +# end of Application Rollback + +# +# Recovery Bootloader and Rollback +# +# end of Recovery Bootloader and Rollback + +# default: +CONFIG_BOOTLOADER_OFFSET_IN_FLASH=0x1000 +# default: +CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE=y +# default: +# CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG is not set +# default: +# CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF is not set + +# +# Log +# +# default: +CONFIG_BOOTLOADER_LOG_VERSION_1=y +# default: +CONFIG_BOOTLOADER_LOG_VERSION=1 +# default: +# CONFIG_BOOTLOADER_LOG_LEVEL_NONE is not set +# default: +# CONFIG_BOOTLOADER_LOG_LEVEL_ERROR is not set +# default: +# CONFIG_BOOTLOADER_LOG_LEVEL_WARN is not set +# default: +CONFIG_BOOTLOADER_LOG_LEVEL_INFO=y +# default: +# CONFIG_BOOTLOADER_LOG_LEVEL_DEBUG is not set +# default: +# CONFIG_BOOTLOADER_LOG_LEVEL_VERBOSE is not set +# default: +CONFIG_BOOTLOADER_LOG_LEVEL=3 + +# +# Format +# +# default: +# CONFIG_BOOTLOADER_LOG_COLORS is not set +# default: +CONFIG_BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS=y +# end of Format + +# +# Settings +# +# default: +CONFIG_BOOTLOADER_LOG_MODE_TEXT_EN=y +# default: +CONFIG_BOOTLOADER_LOG_MODE_TEXT=y +# end of Settings +# end of Log + +# default: +CONFIG_BOOTLOADER_CPU_CLK_FREQ_MHZ=80 + +# +# Serial Flash Configurations +# +# default: +# CONFIG_BOOTLOADER_FLASH_DC_AWARE is not set +# default: +CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT=y +# end of Serial Flash Configurations + +# default: +# CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_8V is not set +# default: +CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V=y +# default: +# CONFIG_BOOTLOADER_FACTORY_RESET is not set +# default: +# CONFIG_BOOTLOADER_APP_TEST is not set +# default: +CONFIG_BOOTLOADER_REGION_PROTECTION_ENABLE=y +# default: +CONFIG_BOOTLOADER_WDT_ENABLE=y +# default: +# CONFIG_BOOTLOADER_WDT_DISABLE_IN_USER_CODE is not set +# default: +CONFIG_BOOTLOADER_WDT_TIME_MS=9000 +# default: +# CONFIG_BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP is not set +# default: +# CONFIG_BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON is not set +# default: +# CONFIG_BOOTLOADER_SKIP_VALIDATE_ALWAYS is not set +# default: +CONFIG_BOOTLOADER_RESERVE_RTC_SIZE=0 +# default: +# CONFIG_BOOTLOADER_CUSTOM_RESERVE_RTC is not set +# end of Bootloader config + +# +# Security features +# +# default: +CONFIG_SECURE_BOOT_V1_SUPPORTED=y +# default: +# CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT is not set +# default: +# CONFIG_SECURE_BOOT is not set +# default: +# CONFIG_SECURE_FLASH_ENC_ENABLED is not set +# end of Security features + +# +# Application manager +# +# default: +CONFIG_APP_COMPILE_TIME_DATE=y +# default: +# CONFIG_APP_EXCLUDE_PROJECT_VER_VAR is not set +# default: +# CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR is not set +# default: +# CONFIG_APP_PROJECT_VER_FROM_CONFIG is not set +# default: +CONFIG_APP_RETRIEVE_LEN_ELF_SHA=9 +# end of Application manager + +# default: +CONFIG_ESP_ROM_HAS_CRC_LE=y +# default: +CONFIG_ESP_ROM_HAS_CRC_BE=y +# default: +CONFIG_ESP_ROM_HAS_MZ_CRC32=y +# default: +CONFIG_ESP_ROM_HAS_JPEG_DECODE=y +# default: +CONFIG_ESP_ROM_HAS_UART_BUF_SWITCH=y +# default: +CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND=y +# default: +CONFIG_ESP_ROM_HAS_NEWLIB=y +# default: +CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT=y +# default: +CONFIG_ESP_ROM_HAS_NEWLIB_32BIT_TIME=y +# default: +CONFIG_ESP_ROM_HAS_SW_FLOAT=y +# default: +CONFIG_ESP_ROM_USB_OTG_NUM=-1 +# default: +CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM=-1 +# default: +CONFIG_ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB=y +# default: +CONFIG_ESP_ROM_HAS_OUTPUT_PUTC_FUNC=y + +# +# Serial flasher config +# +# default: +# CONFIG_ESPTOOLPY_NO_STUB is not set +# default: +# CONFIG_ESPTOOLPY_FLASHMODE_QIO is not set +# default: +# CONFIG_ESPTOOLPY_FLASHMODE_QOUT is not set +# default: +CONFIG_ESPTOOLPY_FLASHMODE_DIO=y +# default: +# CONFIG_ESPTOOLPY_FLASHMODE_DOUT is not set +# default: +CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR=y +# default: +CONFIG_ESPTOOLPY_FLASHMODE="dio" +# default: +# CONFIG_ESPTOOLPY_FLASHFREQ_80M is not set +# default: +CONFIG_ESPTOOLPY_FLASHFREQ_40M=y +# default: +# CONFIG_ESPTOOLPY_FLASHFREQ_26M is not set +# default: +# CONFIG_ESPTOOLPY_FLASHFREQ_20M is not set +# default: +CONFIG_ESPTOOLPY_FLASHFREQ="40m" +# default: +# CONFIG_ESPTOOLPY_FLASHSIZE_1MB is not set +# default: +CONFIG_ESPTOOLPY_FLASHSIZE_2MB=y +# default: +# CONFIG_ESPTOOLPY_FLASHSIZE_4MB is not set +# default: +# CONFIG_ESPTOOLPY_FLASHSIZE_8MB is not set +# default: +# CONFIG_ESPTOOLPY_FLASHSIZE_16MB is not set +# default: +# CONFIG_ESPTOOLPY_FLASHSIZE_32MB is not set +# default: +# CONFIG_ESPTOOLPY_FLASHSIZE_64MB is not set +# default: +# CONFIG_ESPTOOLPY_FLASHSIZE_128MB is not set +# default: +CONFIG_ESPTOOLPY_FLASHSIZE="2MB" +# default: +# CONFIG_ESPTOOLPY_HEADER_FLASHSIZE_UPDATE is not set +# default: +CONFIG_ESPTOOLPY_BEFORE_RESET=y +# default: +# CONFIG_ESPTOOLPY_BEFORE_NORESET is not set +# default: +CONFIG_ESPTOOLPY_BEFORE="default-reset" +# default: +CONFIG_ESPTOOLPY_AFTER_RESET=y +# default: +# CONFIG_ESPTOOLPY_AFTER_NORESET is not set +# default: +CONFIG_ESPTOOLPY_AFTER="hard-reset" +# default: +CONFIG_ESPTOOLPY_MONITOR_BAUD=115200 +# end of Serial flasher config + +# +# Partition Table +# +# default: +CONFIG_PARTITION_TABLE_SINGLE_APP=y +# default: +# CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE is not set +# default: +# CONFIG_PARTITION_TABLE_TWO_OTA is not set +# default: +# CONFIG_PARTITION_TABLE_TWO_OTA_LARGE is not set +# default: +# CONFIG_PARTITION_TABLE_CUSTOM is not set +# default: +CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="partitions.csv" +# default: +CONFIG_PARTITION_TABLE_FILENAME="partitions_singleapp.csv" +# default: +CONFIG_PARTITION_TABLE_OFFSET=0x8000 +# default: +CONFIG_PARTITION_TABLE_MD5=y +# end of Partition Table + +# +# Compiler options +# +# default: +CONFIG_COMPILER_OPTIMIZATION_DEBUG=y +# default: +# CONFIG_COMPILER_OPTIMIZATION_SIZE is not set +# default: +# CONFIG_COMPILER_OPTIMIZATION_PERF is not set +# default: +# CONFIG_COMPILER_OPTIMIZATION_NONE is not set +# default: +CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE=y +# default: +# CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT is not set +# default: +# CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE is not set +# default: +# CONFIG_COMPILER_ASSERT_NDEBUG_EVALUATE is not set +# default: +CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB=y +# default: +CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL=2 +# default: +# CONFIG_COMPILER_OPTIMIZATION_CHECKS_SILENT is not set +# default: +CONFIG_COMPILER_HIDE_PATHS_MACROS=y +# default: +# CONFIG_COMPILER_CXX_EXCEPTIONS is not set +# default: +# CONFIG_COMPILER_CXX_RTTI is not set +# default: +CONFIG_COMPILER_STACK_CHECK_MODE_NONE=y +# default: +# CONFIG_COMPILER_STACK_CHECK_MODE_NORM is not set +# default: +# CONFIG_COMPILER_STACK_CHECK_MODE_STRONG is not set +# default: +# CONFIG_COMPILER_STACK_CHECK_MODE_ALL is not set +# default: +# CONFIG_COMPILER_NO_MERGE_CONSTANTS is not set +# default: +# CONFIG_COMPILER_WARN_WRITE_STRINGS is not set +# default: +# CONFIG_COMPILER_DISABLE_DEFAULT_ERRORS is not set +# default: +# CONFIG_COMPILER_DISABLE_GCC12_WARNINGS is not set +# default: +# CONFIG_COMPILER_DISABLE_GCC13_WARNINGS is not set +# default: +# CONFIG_COMPILER_DISABLE_GCC14_WARNINGS is not set +# default: +# CONFIG_COMPILER_DISABLE_GCC15_WARNINGS is not set +# default: +# CONFIG_COMPILER_DUMP_RTL_FILES is not set +# default: +CONFIG_COMPILER_RT_LIB_GCCLIB=y +# default: +CONFIG_COMPILER_RT_LIB_NAME="gcc" +# default: +CONFIG_COMPILER_ORPHAN_SECTIONS_ERROR=y +# default: +# CONFIG_COMPILER_ORPHAN_SECTIONS_WARNING is not set +# default: +# CONFIG_COMPILER_ORPHAN_SECTIONS_PLACE is not set +# default: +# CONFIG_COMPILER_STATIC_ANALYZER is not set +# default: +CONFIG_COMPILER_CXX_GLIBCXX_CONSTEXPR_NO_CHANGE=y +# default: +# CONFIG_COMPILER_CXX_GLIBCXX_CONSTEXPR_COLD_CONSTEXPR is not set +# default: +# CONFIG_COMPILER_CXX_GLIBCXX_CONSTEXPR_COLD is not set +# end of Compiler options + +# +# Component config +# + +# +# Bluetooth +# +# default: +# CONFIG_BT_ENABLED is not set + +# +# Common Options +# + +# +# BLE Log +# +# default: +# CONFIG_BLE_LOG_ENABLED is not set +# end of BLE Log + +# default: +# CONFIG_BT_BLE_LOG_SPI_OUT_ENABLED is not set +# default: +# CONFIG_BT_BLE_LOG_UHCI_OUT_ENABLED is not set +# default: +# CONFIG_BT_LE_USED_MEM_STATISTICS_ENABLED is not set +# end of Common Options +# end of Bluetooth + +# +# Console Library +# +# default: +# CONFIG_CONSOLE_SORTED_HELP is not set +# end of Console Library + +# +# Legacy Driver Configurations +# + +# +# Legacy TWAI Driver Configurations +# +# default: +# CONFIG_TWAI_ISR_IN_IRAM_LEGACY is not set +# default: +# CONFIG_TWAI_SUPPRESS_DEPRECATE_WARN is not set +# default: +# CONFIG_TWAI_SKIP_LEGACY_CONFLICT_CHECK is not set +# end of Legacy TWAI Driver Configurations + +# +# Legacy I2C Driver Configurations +# +# default: +# CONFIG_I2C_SUPPRESS_DEPRECATE_WARN is not set +# default: +# CONFIG_I2C_SKIP_LEGACY_CONFLICT_CHECK is not set +# end of Legacy I2C Driver Configurations + +# +# Legacy Touch Sensor Driver Configurations +# +# default: +# CONFIG_TOUCH_SUPPRESS_DEPRECATE_WARN is not set +# default: +# CONFIG_TOUCH_SKIP_LEGACY_CONFLICT_CHECK is not set +# end of Legacy Touch Sensor Driver Configurations +# end of Legacy Driver Configurations + +# +# eFuse Bit Manager +# +# default: +# CONFIG_EFUSE_CUSTOM_TABLE is not set +# default: +# CONFIG_EFUSE_VIRTUAL is not set +# default: +# CONFIG_EFUSE_CODE_SCHEME_COMPAT_NONE is not set +# default: +CONFIG_EFUSE_CODE_SCHEME_COMPAT_3_4=y +# default: +# CONFIG_EFUSE_CODE_SCHEME_COMPAT_REPEAT is not set +# default: +CONFIG_EFUSE_MAX_BLK_LEN=192 +# end of eFuse Bit Manager + +# +# ESP-TLS +# +# default: +CONFIG_ESP_TLS_USING_MBEDTLS=y +# default: +# CONFIG_ESP_TLS_CUSTOM_STACK is not set +# default: +# CONFIG_ESP_TLS_USE_SECURE_ELEMENT is not set +# default: +# CONFIG_ESP_TLS_CLIENT_SESSION_TICKETS is not set +# default: +# CONFIG_ESP_TLS_SERVER_SESSION_TICKETS is not set +# default: +# CONFIG_ESP_TLS_SERVER_CERT_SELECT_HOOK is not set +# default: +# CONFIG_ESP_TLS_SERVER_MIN_AUTH_MODE_OPTIONAL is not set +# default: +# CONFIG_ESP_TLS_PSK_VERIFICATION is not set +# default: +# CONFIG_ESP_TLS_INSECURE is not set +# default: +CONFIG_ESP_TLS_DYN_BUF_STRATEGY_SUPPORTED=y +# end of ESP-TLS + +# +# ADC and ADC Calibration +# +# default: +# CONFIG_ADC_ONESHOT_CTRL_FUNC_IN_IRAM is not set +# default: +# CONFIG_ADC_CONTINUOUS_ISR_IRAM_SAFE is not set + +# +# ADC Calibration Configurations +# +# default: +CONFIG_ADC_CALI_EFUSE_TP_ENABLE=y +# default: +CONFIG_ADC_CALI_EFUSE_VREF_ENABLE=y +# default: +CONFIG_ADC_CALI_LUT_ENABLE=y +# end of ADC Calibration Configurations + +# default: +CONFIG_ADC_DISABLE_DAC_OUTPUT=y +# default: +# CONFIG_ADC_ENABLE_DEBUG_LOG is not set +# end of ADC and ADC Calibration + +# +# Wireless Coexistence +# +# default: +CONFIG_ESP_COEX_ENABLED=y +# default: +# CONFIG_ESP_COEX_GPIO_DEBUG is not set +# end of Wireless Coexistence + +# +# Common ESP-related +# +# default: +CONFIG_ESP_ERR_TO_NAME_LOOKUP=y +# end of Common ESP-related + +# +# ESP-Driver:DAC Configurations +# +# default: +# CONFIG_DAC_CTRL_FUNC_IN_IRAM is not set +# default: +# CONFIG_DAC_ISR_IRAM_SAFE is not set +# default: +# CONFIG_DAC_ENABLE_DEBUG_LOG is not set +# default: +CONFIG_DAC_DMA_AUTO_16BIT_ALIGN=y +# end of ESP-Driver:DAC Configurations + +# +# ESP-Driver:GPIO Configurations +# +# default: +# CONFIG_GPIO_CTRL_FUNC_IN_IRAM is not set +# end of ESP-Driver:GPIO Configurations + +# +# ESP-Driver:GPTimer Configurations +# +# default: +CONFIG_GPTIMER_ISR_HANDLER_IN_IRAM=y +# default: +# CONFIG_GPTIMER_CTRL_FUNC_IN_IRAM is not set +# default: +# CONFIG_GPTIMER_ISR_CACHE_SAFE is not set +# default: +CONFIG_GPTIMER_OBJ_CACHE_SAFE=y +# default: +# CONFIG_GPTIMER_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:GPTimer Configurations + +# +# ESP-Driver:I2C Configurations +# +# default: +# CONFIG_I2C_ISR_IRAM_SAFE is not set +# default: +# CONFIG_I2C_ENABLE_DEBUG_LOG is not set +# default: +CONFIG_I2C_MASTER_ISR_HANDLER_IN_IRAM=y +# end of ESP-Driver:I2C Configurations + +# +# ESP-Driver:I2S Configurations +# +# default: +# CONFIG_I2S_ISR_IRAM_SAFE is not set +# default: +# CONFIG_I2S_CTRL_FUNC_IN_IRAM is not set +# default: +# CONFIG_I2S_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:I2S Configurations + +# +# ESP-Driver:I3C Master Configurations +# +# default: +# CONFIG_I3C_MASTER_ISR_CACHE_SAFE is not set +# default: +# CONFIG_I3C_MASTER_ENABLE_DEBUG_LOG is not set +# default: +# CONFIG_I3C_MASTER_ISR_HANDLER_IN_IRAM is not set +# end of ESP-Driver:I3C Master Configurations + +# +# ESP-Driver:LEDC Configurations +# +# default: +# CONFIG_LEDC_CTRL_FUNC_IN_IRAM is not set +# end of ESP-Driver:LEDC Configurations + +# +# ESP-Driver:MCPWM Configurations +# +# default: +CONFIG_MCPWM_ISR_HANDLER_IN_IRAM=y +# default: +# CONFIG_MCPWM_ISR_CACHE_SAFE is not set +# default: +# CONFIG_MCPWM_CTRL_FUNC_IN_IRAM is not set +# default: +CONFIG_MCPWM_OBJ_CACHE_SAFE=y +# default: +# CONFIG_MCPWM_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:MCPWM Configurations + +# +# ESP-Driver:PCNT Configurations +# +# default: +# CONFIG_PCNT_CTRL_FUNC_IN_IRAM is not set +# default: +# CONFIG_PCNT_ISR_IRAM_SAFE is not set +# default: +# CONFIG_PCNT_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:PCNT Configurations + +# +# ESP-Driver:RMT Configurations +# +# default: +CONFIG_RMT_ENCODER_FUNC_IN_IRAM=y +# default: +CONFIG_RMT_TX_ISR_HANDLER_IN_IRAM=y +# default: +CONFIG_RMT_RX_ISR_HANDLER_IN_IRAM=y +# default: +# CONFIG_RMT_RECV_FUNC_IN_IRAM is not set +# default: +# CONFIG_RMT_TX_ISR_CACHE_SAFE is not set +# default: +# CONFIG_RMT_RX_ISR_CACHE_SAFE is not set +# default: +CONFIG_RMT_OBJ_CACHE_SAFE=y +# default: +# CONFIG_RMT_ENABLE_DEBUG_LOG is not set +# default: +# CONFIG_RMT_ISR_IRAM_SAFE is not set +# end of ESP-Driver:RMT Configurations + +# +# ESP-Driver:Sigma Delta Modulator Configurations +# +# default: +# CONFIG_SDM_CTRL_FUNC_IN_IRAM is not set +# default: +# CONFIG_SDM_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:Sigma Delta Modulator Configurations + +# +# ESP-Driver:SD Host SDMMC Controller Configurations +# +# default: +# CONFIG_SD_HOST_SDMMC_ISR_CACHE_SAFE is not set +# end of ESP-Driver:SD Host SDMMC Controller Configurations + +# +# ESP-Driver:SPI Configurations +# +# default: +CONFIG_SPI_MASTER_ISR_IN_IRAM=y +# default: +# CONFIG_SPI_SLAVE_IN_IRAM is not set +# default: +CONFIG_SPI_SLAVE_ISR_IN_IRAM=y +# end of ESP-Driver:SPI Configurations + +# +# ESP-Driver:Touch Sensor Configurations +# +# default: +# CONFIG_TOUCH_CTRL_FUNC_IN_IRAM is not set +# default: +# CONFIG_TOUCH_ISR_IRAM_SAFE is not set +# default: +# CONFIG_TOUCH_ENABLE_DEBUG_LOG is not set +# default: +# CONFIG_TOUCH_SKIP_FSM_CHECK is not set +# end of ESP-Driver:Touch Sensor Configurations + +# +# ESP-Driver:TWAI Configurations +# +# default: +# CONFIG_TWAI_ISR_IN_IRAM is not set +# default: +# CONFIG_TWAI_IO_FUNC_IN_IRAM is not set +# default: +# CONFIG_TWAI_ISR_CACHE_SAFE is not set +# default: +# CONFIG_TWAI_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:TWAI Configurations + +# +# ESP-Driver:UART Configurations +# +# default: +# CONFIG_UART_ISR_IN_IRAM is not set +# end of ESP-Driver:UART Configurations + +# +# ESP-Driver:UHCI Configurations +# +# default: +# CONFIG_UHCI_ISR_HANDLER_IN_IRAM is not set +# default: +# CONFIG_UHCI_ISR_CACHE_SAFE is not set +# default: +# CONFIG_UHCI_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:UHCI Configurations + +# +# Ethernet +# +# default: +CONFIG_ETH_ENABLED=y +# default: +CONFIG_ETH_USE_ESP32_EMAC=y +# default: +CONFIG_ETH_DMA_BUFFER_SIZE=512 +# default: +CONFIG_ETH_DMA_RX_BUFFER_NUM=10 +# default: +CONFIG_ETH_DMA_TX_BUFFER_NUM=10 +# default: +# CONFIG_ETH_IRAM_OPTIMIZATION is not set +# default: +CONFIG_ETH_USE_SPI_ETHERNET=y +# default: +# CONFIG_ETH_USE_OPENETH is not set +# default: +# CONFIG_ETH_TRANSMIT_MUTEX is not set +# end of Ethernet + +# +# Event Loop Library +# +# default: +# CONFIG_ESP_EVENT_LOOP_PROFILING is not set +# default: +CONFIG_ESP_EVENT_POST_FROM_ISR=y +# default: +CONFIG_ESP_EVENT_POST_FROM_IRAM_ISR=y +# end of Event Loop Library + +# +# GDB Stub +# +# default: +CONFIG_ESP_GDBSTUB_ENABLED=y +# default: +# CONFIG_ESP_SYSTEM_GDBSTUB_RUNTIME is not set +# default: +CONFIG_ESP_GDBSTUB_SUPPORT_TASKS=y +# default: +CONFIG_ESP_GDBSTUB_MAX_TASKS=32 +# end of GDB Stub + +# +# ESP HID +# +# default: +CONFIG_ESPHID_TASK_SIZE_BT=2048 +# default: +CONFIG_ESPHID_TASK_SIZE_BLE=4096 +# end of ESP HID + +# +# ESP HTTP client +# +# default: +CONFIG_ESP_HTTP_CLIENT_ENABLE_HTTPS=y +# default: +# CONFIG_ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH is not set +# default: +# CONFIG_ESP_HTTP_CLIENT_ENABLE_DIGEST_AUTH is not set +# default: +# CONFIG_ESP_HTTP_CLIENT_ENABLE_CUSTOM_TRANSPORT is not set +# default: +# CONFIG_ESP_HTTP_CLIENT_ENABLE_GET_CONTENT_RANGE is not set +# default: +CONFIG_ESP_HTTP_CLIENT_EVENT_POST_TIMEOUT=2000 +# end of ESP HTTP client + +# +# HTTP Server +# +# default: +CONFIG_HTTPD_MAX_REQ_HDR_LEN=1024 +# default: +CONFIG_HTTPD_MAX_URI_LEN=512 +# default: +CONFIG_HTTPD_ERR_RESP_NO_DELAY=y +# default: +CONFIG_HTTPD_PURGE_BUF_LEN=32 +# default: +# CONFIG_HTTPD_LOG_PURGE_DATA is not set +# default: +# CONFIG_HTTPD_WS_SUPPORT is not set +# default: +# CONFIG_HTTPD_QUEUE_WORK_BLOCKING is not set +# default: +CONFIG_HTTPD_SERVER_EVENT_POST_TIMEOUT=2000 +# end of HTTP Server + +# +# ESP HTTPS OTA +# +# default: +# CONFIG_ESP_HTTPS_OTA_DECRYPT_CB is not set +# default: +# CONFIG_ESP_HTTPS_OTA_ALLOW_HTTP is not set +# default: +CONFIG_ESP_HTTPS_OTA_EVENT_POST_TIMEOUT=2000 +# default: +# CONFIG_ESP_HTTPS_OTA_ENABLE_PARTIAL_DOWNLOAD is not set +# end of ESP HTTPS OTA + +# +# ESP HTTPS server +# +# default: +# CONFIG_ESP_HTTPS_SERVER_ENABLE is not set +# default: +CONFIG_ESP_HTTPS_SERVER_EVENT_POST_TIMEOUT=2000 +# default: +# CONFIG_ESP_HTTPS_SERVER_CERT_SELECT_HOOK is not set +# end of ESP HTTPS server + +# +# Hardware Settings +# +# default: +CONFIG_ESP_HW_SUPPORT_FUNC_IN_IRAM=y + +# +# Chip revision +# +# default: +CONFIG_ESP32_REV_MIN_0=y +# default: +# CONFIG_ESP32_REV_MIN_1 is not set +# default: +# CONFIG_ESP32_REV_MIN_1_1 is not set +# default: +# CONFIG_ESP32_REV_MIN_2 is not set +# default: +# CONFIG_ESP32_REV_MIN_3 is not set +# default: +# CONFIG_ESP32_REV_MIN_3_1 is not set +# default: +CONFIG_ESP32_REV_MIN=0 +# default: +CONFIG_ESP32_REV_MIN_FULL=0 +# default: +CONFIG_ESP_REV_MIN_FULL=0 + +# +# Maximum Supported ESP32 Revision (Rev v3.99) +# +# default: +CONFIG_ESP32_REV_MAX_FULL=399 +# default: +CONFIG_ESP_REV_MAX_FULL=399 +# default: +CONFIG_ESP_EFUSE_BLOCK_REV_MIN_FULL=0 +# default: +CONFIG_ESP_EFUSE_BLOCK_REV_MAX_FULL=99 + +# +# Maximum Supported ESP32 eFuse Block Revision (eFuse Block Rev v0.99) +# +# end of Chip revision + +# +# MAC Config +# +# default: +CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA=y +# default: +CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP=y +# default: +CONFIG_ESP_MAC_ADDR_UNIVERSE_BT=y +# default: +CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH=y +# default: +CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR=y +# default: +CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES=4 +# default: +# CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_TWO is not set +# default: +CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR=y +# default: +CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES=4 +# default: +# CONFIG_ESP_MAC_IGNORE_MAC_CRC_ERROR is not set +# default: +# CONFIG_ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC is not set +# end of MAC Config + +# +# Sleep Config +# +# default: +# CONFIG_ESP_SLEEP_POWER_DOWN_FLASH is not set +# default: +CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND=y +# default: +# CONFIG_ESP_SLEEP_MSPI_NEED_ALL_IO_PU is not set +# default: +CONFIG_ESP_SLEEP_RTC_BUS_ISO_WORKAROUND=y +# default: +# CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND is not set +# default: +CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY=2000 +# default: +# CONFIG_ESP_SLEEP_CACHE_SAFE_ASSERTION is not set +# default: +# CONFIG_ESP_SLEEP_DEBUG is not set +# default: +CONFIG_ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS=y +# end of Sleep Config + +# +# RTC Clock Config +# +# default: +CONFIG_RTC_CLK_SRC_INT_RC=y +# default: +# CONFIG_RTC_CLK_SRC_EXT_CRYS is not set +# default: +# CONFIG_RTC_CLK_SRC_EXT_OSC is not set +# default: +# CONFIG_RTC_CLK_SRC_INT_8MD256 is not set +# default: +CONFIG_RTC_CLK_CAL_CYCLES=1024 +# default: +CONFIG_RTC_CLK_FUNC_IN_IRAM=y +# default: +CONFIG_RTC_TIME_FUNC_IN_IRAM=y +# end of RTC Clock Config + +# +# Peripheral Control +# +# default: +CONFIG_ESP_PERIPH_CTRL_FUNC_IN_IRAM=y +# default: +CONFIG_ESP_REGI2C_CTRL_FUNC_IN_IRAM=y +# end of Peripheral Control + +# +# Main XTAL Config +# +# default: +# CONFIG_XTAL_FREQ_26 is not set +# default: +# CONFIG_XTAL_FREQ_32 is not set +# default: +CONFIG_XTAL_FREQ_40=y +# default: +# CONFIG_XTAL_FREQ_AUTO is not set +# default: +CONFIG_XTAL_FREQ=40 +# end of Main XTAL Config + +# +# Power Supplier +# + +# +# Brownout Detector +# +# default: +CONFIG_ESP_BROWNOUT_DET=y +# default: +CONFIG_ESP_BROWNOUT_DET_LVL_SEL_0=y +# default: +# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_1 is not set +# default: +# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_2 is not set +# default: +# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_3 is not set +# default: +# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_4 is not set +# default: +# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_5 is not set +# default: +# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_6 is not set +# default: +# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7 is not set +# default: +CONFIG_ESP_BROWNOUT_DET_LVL=0 +# default: +CONFIG_ESP_BROWNOUT_USE_INTR=y +# end of Brownout Detector +# end of Power Supplier + +# default: +CONFIG_ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM=y +# default: +CONFIG_ESP_INTR_IN_IRAM=y +# end of Hardware Settings + +# +# ESP-Driver:LCD Controller Configurations +# +# default: +# CONFIG_LCD_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:LCD Controller Configurations + +# +# LibC +# +# default: +# CONFIG_LIBC_NEWLIB is not set +# default: +CONFIG_LIBC_PICOLIBC=y +# default: +CONFIG_LIBC_PICOLIBC_NEWLIB_COMPATIBILITY=y +# default: +CONFIG_LIBC_MISC_IN_IRAM=y +# default: +CONFIG_LIBC_LOCKS_PLACE_IN_IRAM=y +# default: +CONFIG_LIBC_STDOUT_LINE_ENDING_CRLF=y +# default: +# CONFIG_LIBC_STDOUT_LINE_ENDING_LF is not set +# default: +# CONFIG_LIBC_STDOUT_LINE_ENDING_CR is not set +# default: +# CONFIG_LIBC_STDIN_LINE_ENDING_CRLF is not set +# default: +# CONFIG_LIBC_STDIN_LINE_ENDING_LF is not set +# default: +CONFIG_LIBC_STDIN_LINE_ENDING_CR=y +# default: +CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT=y +# default: +# CONFIG_LIBC_TIME_SYSCALL_USE_RTC is not set +# default: +# CONFIG_LIBC_TIME_SYSCALL_USE_HRT is not set +# default: +# CONFIG_LIBC_TIME_SYSCALL_USE_NONE is not set +# default: +CONFIG_LIBC_ASSERT_BUFFER_SIZE=200 +# end of LibC + +# +# ESP-MM: Memory Management Configurations +# +# end of ESP-MM: Memory Management Configurations + +# +# ESP NETIF Adapter +# +# default: +CONFIG_ESP_NETIF_LOST_IP_TIMER_ENABLE=y +# default: +CONFIG_ESP_NETIF_IP_LOST_TIMER_INTERVAL=120 +# default: +# CONFIG_ESP_NETIF_PROVIDE_CUSTOM_IMPLEMENTATION is not set +# default: +CONFIG_ESP_NETIF_TCPIP_LWIP=y +# default: +# CONFIG_ESP_NETIF_LOOPBACK is not set +# default: +CONFIG_ESP_NETIF_USES_TCPIP_WITH_BSD_API=y +# default: +CONFIG_ESP_NETIF_REPORT_DATA_TRAFFIC=y +# default: +CONFIG_ESP_NETIF_RECEIVE_REPORT_ERRORS=y +# default: +# CONFIG_ESP_NETIF_L2_TAP is not set +# default: +# CONFIG_ESP_NETIF_BRIDGE_EN is not set +# default: +# CONFIG_ESP_NETIF_SET_DNS_PER_DEFAULT_NETIF is not set +# end of ESP NETIF Adapter + +# +# Partition API Configuration +# +# end of Partition API Configuration + +# +# PHY +# +# default: +CONFIG_ESP_PHY_ENABLED=y +# default: +CONFIG_ESP_PHY_CALIBRATION_AND_DATA_STORAGE=y +# default: +# CONFIG_ESP_PHY_INIT_DATA_IN_PARTITION is not set +# default: +CONFIG_ESP_PHY_MAX_WIFI_TX_POWER=20 +# default: +CONFIG_ESP_PHY_MAX_TX_POWER=20 +# default: +# CONFIG_ESP_PHY_REDUCE_TX_POWER is not set +# default: +# CONFIG_ESP_PHY_ENABLE_CERT_TEST is not set +# default: +CONFIG_ESP_PHY_RF_CAL_PARTIAL=y +# default: +# CONFIG_ESP_PHY_RF_CAL_NONE is not set +# default: +# CONFIG_ESP_PHY_RF_CAL_FULL is not set +# default: +CONFIG_ESP_PHY_CALIBRATION_MODE=0 +# default: +CONFIG_ESP_PHY_PLL_TRACK_PERIOD_MS=1000 +# default: +# CONFIG_ESP_PHY_PLL_TRACK_DEBUG is not set +# default: +# CONFIG_ESP_PHY_RECORD_USED_TIME is not set +# default: +CONFIG_ESP_PHY_IRAM_OPT=y +# default: +# CONFIG_ESP_PHY_DEBUG is not set +# end of PHY + +# +# Power Management +# +# default: +# CONFIG_PM_SLEEP_FUNC_IN_IRAM is not set +# default: +# CONFIG_PM_ENABLE is not set +# default: +# CONFIG_PM_SLP_IRAM_OPT is not set +# end of Power Management + +# +# ESP PSRAM +# +# default: +# CONFIG_SPIRAM is not set +# end of ESP PSRAM + +# +# ESP Ringbuf +# +# default: +# CONFIG_RINGBUF_IN_IRAM is not set +# default: +# CONFIG_RINGBUF_PLACE_ISR_FUNCTIONS_INTO_FLASH is not set +# end of ESP Ringbuf + +# +# ESP-ROM +# +# default: +CONFIG_ESP_ROM_PRINT_IN_IRAM=y +# end of ESP-ROM + +# +# ESP Security Specific +# +# end of ESP Security Specific + +# +# ESP-STDIO +# +# default: +CONFIG_ESP_CONSOLE_UART_DEFAULT=y +# default: +# CONFIG_ESP_CONSOLE_UART_CUSTOM is not set +# default: +# CONFIG_ESP_CONSOLE_NONE is not set +# default: +CONFIG_ESP_CONSOLE_UART=y +# default: +CONFIG_ESP_CONSOLE_UART_NUM=0 +# default: +CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM=0 +# default: +CONFIG_ESP_CONSOLE_UART_BAUDRATE=115200 +# end of ESP-STDIO + +# +# ESP System Settings +# +# default: +# CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_80 is not set +# default: +CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160=y +# default: +# CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240 is not set +# default: +CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ=160 + +# +# Memory +# +# default: +# CONFIG_ESP32_USE_FIXED_STATIC_RAM_SIZE is not set + +# +# Non-backward compatible options +# +# default: +# CONFIG_ESP_SYSTEM_ESP32_SRAM1_REGION_AS_IRAM is not set +# end of Non-backward compatible options +# end of Memory + +# +# Trace memory +# +# default: +# CONFIG_ESP32_TRAX is not set +# default: +CONFIG_ESP32_TRACEMEM_RESERVE_DRAM=0x0 +# end of Trace memory + +# default: +CONFIG_ESP_SYSTEM_IN_IRAM=y +# default: +# CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT is not set +# default: +CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT=y +# default: +# CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT is not set +# default: +# CONFIG_ESP_SYSTEM_PANIC_GDBSTUB is not set +# default: +CONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS=0 +# default: +CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE=32 +# default: +CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE=2304 +# default: +CONFIG_ESP_MAIN_TASK_STACK_SIZE=3584 +# default: +CONFIG_ESP_MAIN_TASK_AFFINITY_CPU0=y +# default: +# CONFIG_ESP_MAIN_TASK_AFFINITY_CPU1 is not set +# default: +# CONFIG_ESP_MAIN_TASK_AFFINITY_NO_AFFINITY is not set +# default: +CONFIG_ESP_MAIN_TASK_AFFINITY=0x0 +# default: +CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE=2048 +# default: +CONFIG_ESP_INT_WDT=y +# default: +CONFIG_ESP_INT_WDT_TIMEOUT_MS=300 +# default: +CONFIG_ESP_INT_WDT_CHECK_CPU1=y +# default: +CONFIG_ESP_TASK_WDT_EN=y +# default: +CONFIG_ESP_TASK_WDT_INIT=y +# default: +# CONFIG_ESP_TASK_WDT_PANIC is not set +# default: +CONFIG_ESP_TASK_WDT_TIMEOUT_S=5 +# default: +CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0=y +# default: +CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1=y +# default: +# CONFIG_ESP_PANIC_HANDLER_IRAM is not set +# default: +# CONFIG_ESP_DEBUG_STUBS_ENABLE is not set +# default: +CONFIG_ESP_DEBUG_OCDAWARE=y +# default: +# CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_5 is not set +# default: +CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4=y +# default: +# CONFIG_ESP32_DISABLE_BASIC_ROM_CONSOLE is not set +# end of ESP System Settings + +# +# IPC (Inter-Processor Call) +# +# default: +CONFIG_ESP_IPC_ENABLE=y +# default: +CONFIG_ESP_IPC_TASK_STACK_SIZE=1024 +# default: +CONFIG_ESP_IPC_USES_CALLERS_PRIORITY=y +# default: +CONFIG_ESP_IPC_ISR_ENABLE=y +# end of IPC (Inter-Processor Call) + +# +# ESP Timer (High Resolution Timer) +# +# default: +CONFIG_ESP_TIMER_IN_IRAM=y +# default: +# CONFIG_ESP_TIMER_PROFILING is not set +# default: +CONFIG_ESP_TIME_FUNCS_USE_RTC_TIMER=y +# default: +CONFIG_ESP_TIME_FUNCS_USE_ESP_TIMER=y +# default: +CONFIG_ESP_TIMER_TASK_STACK_SIZE=3584 +# default: +CONFIG_ESP_TIMER_INTERRUPT_LEVEL=1 +# default: +# CONFIG_ESP_TIMER_SHOW_EXPERIMENTAL is not set +# default: +CONFIG_ESP_TIMER_TASK_AFFINITY=0x0 +# default: +CONFIG_ESP_TIMER_TASK_AFFINITY_CPU0=y +# default: +CONFIG_ESP_TIMER_ISR_AFFINITY_CPU0=y +# default: +# CONFIG_ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD is not set +# default: +CONFIG_ESP_TIMER_IMPL_TG0_LAC=y +# end of ESP Timer (High Resolution Timer) + +# +# ESP Trace Configuration +# +# default: +# CONFIG_ESP_TRACE_LIB_EXTERNAL is not set +# default: +CONFIG_ESP_TRACE_LIB_NONE=y +# default: +CONFIG_ESP_TRACE_LIB_NAME="none" +# default: +# CONFIG_ESP_TRACE_TRANSPORT_APPTRACE is not set +# default: +CONFIG_ESP_TRACE_TRANSPORT_NONE=y +# default: +CONFIG_ESP_TRACE_TRANSPORT_NAME="none" +# end of ESP Trace Configuration + +# +# Wi-Fi +# +# default: +CONFIG_ESP_WIFI_ENABLED=y +# default: +CONFIG_ESP_WIFI_STATIC_RX_BUFFER_NUM=10 +# default: +CONFIG_ESP_WIFI_DYNAMIC_RX_BUFFER_NUM=32 +# default: +# CONFIG_ESP_WIFI_STATIC_TX_BUFFER is not set +# default: +CONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER=y +# default: +CONFIG_ESP_WIFI_TX_BUFFER_TYPE=1 +# default: +CONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER_NUM=32 +# default: +CONFIG_ESP_WIFI_STATIC_RX_MGMT_BUFFER=y +# default: +# CONFIG_ESP_WIFI_DYNAMIC_RX_MGMT_BUFFER is not set +# default: +CONFIG_ESP_WIFI_DYNAMIC_RX_MGMT_BUF=0 +# default: +CONFIG_ESP_WIFI_RX_MGMT_BUF_NUM_DEF=5 +# default: +# CONFIG_ESP_WIFI_CSI_ENABLED is not set +# default: +CONFIG_ESP_WIFI_AMPDU_TX_ENABLED=y +# default: +CONFIG_ESP_WIFI_TX_BA_WIN=6 +# default: +CONFIG_ESP_WIFI_AMPDU_RX_ENABLED=y +# default: +CONFIG_ESP_WIFI_RX_BA_WIN=6 +# default: +CONFIG_ESP_WIFI_NVS_ENABLED=y +# default: +CONFIG_ESP_WIFI_TASK_PINNED_TO_CORE_0=y +# default: +# CONFIG_ESP_WIFI_TASK_PINNED_TO_CORE_1 is not set +# default: +CONFIG_ESP_WIFI_SOFTAP_BEACON_MAX_LEN=752 +# default: +CONFIG_ESP_WIFI_MGMT_SBUF_NUM=32 +# default: +CONFIG_ESP_WIFI_IRAM_OPT=y +# default: +# CONFIG_ESP_WIFI_EXTRA_IRAM_OPT is not set +# default: +CONFIG_ESP_WIFI_RX_IRAM_OPT=y +# default: +CONFIG_ESP_WIFI_ENABLE_WPA3_SAE=y +# default: +CONFIG_ESP_WIFI_ENABLE_SAE_H2E=y +# default: +CONFIG_ESP_WIFI_ENABLE_SAE_PK=y +# default: +CONFIG_ESP_WIFI_SOFTAP_SAE_SUPPORT=y +# default: +CONFIG_ESP_WIFI_ENABLE_WPA3_OWE_STA=y +# default: +CONFIG_ESP_WIFI_WPA3_COMPATIBLE_SUPPORT=y +# default: +# CONFIG_ESP_WIFI_SLP_IRAM_OPT is not set +# default: +CONFIG_ESP_WIFI_SLP_DEFAULT_MIN_ACTIVE_TIME=50 +# default: +# CONFIG_ESP_WIFI_BSS_MAX_IDLE_SUPPORT is not set +# default: +CONFIG_ESP_WIFI_SLP_DEFAULT_MAX_ACTIVE_TIME=10 +# default: +CONFIG_ESP_WIFI_SLP_DEFAULT_WAIT_BROADCAST_DATA_TIME=15 +# default: +CONFIG_ESP_WIFI_STA_DISCONNECTED_PM_ENABLE=y +# default: +CONFIG_ESP_WIFI_GMAC_SUPPORT=y +# default: +CONFIG_ESP_WIFI_SOFTAP_SUPPORT=y +# default: +# CONFIG_ESP_WIFI_SLP_BEACON_LOST_OPT is not set +# default: +CONFIG_ESP_WIFI_ESPNOW_MAX_ENCRYPT_NUM=7 +# default: +# CONFIG_ESP_WIFI_NAN_SYNC_ENABLE is not set +# default: +CONFIG_ESP_WIFI_MBEDTLS_CRYPTO=y +# default: +CONFIG_ESP_WIFI_MBEDTLS_TLS_CLIENT=y +# default: +# CONFIG_ESP_WIFI_WAPI_PSK is not set +# default: +# CONFIG_ESP_WIFI_11KV_SUPPORT is not set +# default: +# CONFIG_ESP_WIFI_MBO_SUPPORT is not set +# default: +# CONFIG_ESP_WIFI_DPP_SUPPORT is not set +# default: +# CONFIG_ESP_WIFI_11R_SUPPORT is not set +# default: +# CONFIG_ESP_WIFI_WPS_SOFTAP_REGISTRAR is not set + +# +# WPS Configuration Options +# +# default: +# CONFIG_ESP_WIFI_WPS_STRICT is not set +# default: +# CONFIG_ESP_WIFI_WPS_PASSPHRASE is not set +# default: +# CONFIG_ESP_WIFI_WPS_RECONNECT_ON_FAIL is not set +# end of WPS Configuration Options + +# default: +# CONFIG_ESP_WIFI_DEBUG_PRINT is not set +# default: +CONFIG_ESP_WIFI_ENTERPRISE_SUPPORT=y +# default: +# CONFIG_ESP_WIFI_ENT_FREE_DYNAMIC_BUFFER is not set +# end of Wi-Fi + +# +# Core dump +# +# default: +# CONFIG_ESP_COREDUMP_ENABLE_TO_FLASH is not set +# default: +# CONFIG_ESP_COREDUMP_ENABLE_TO_UART is not set +# default: +CONFIG_ESP_COREDUMP_ENABLE_TO_NONE=y +# end of Core dump + +# +# FAT Filesystem support +# +# default: +CONFIG_FATFS_VOLUME_COUNT=2 +# default: +# CONFIG_FATFS_LFN_NONE is not set +# default: +CONFIG_FATFS_LFN_HEAP=y +# default: +# CONFIG_FATFS_LFN_STACK is not set +# default: +# CONFIG_FATFS_SECTOR_512 is not set +# default: +CONFIG_FATFS_SECTOR_4096=y +# default: +# CONFIG_FATFS_CODEPAGE_DYNAMIC is not set +# default: +CONFIG_FATFS_CODEPAGE_437=y +# default: +# CONFIG_FATFS_CODEPAGE_720 is not set +# default: +# CONFIG_FATFS_CODEPAGE_737 is not set +# default: +# CONFIG_FATFS_CODEPAGE_771 is not set +# default: +# CONFIG_FATFS_CODEPAGE_775 is not set +# default: +# CONFIG_FATFS_CODEPAGE_850 is not set +# default: +# CONFIG_FATFS_CODEPAGE_852 is not set +# default: +# CONFIG_FATFS_CODEPAGE_855 is not set +# default: +# CONFIG_FATFS_CODEPAGE_857 is not set +# default: +# CONFIG_FATFS_CODEPAGE_860 is not set +# default: +# CONFIG_FATFS_CODEPAGE_861 is not set +# default: +# CONFIG_FATFS_CODEPAGE_862 is not set +# default: +# CONFIG_FATFS_CODEPAGE_863 is not set +# default: +# CONFIG_FATFS_CODEPAGE_864 is not set +# default: +# CONFIG_FATFS_CODEPAGE_865 is not set +# default: +# CONFIG_FATFS_CODEPAGE_866 is not set +# default: +# CONFIG_FATFS_CODEPAGE_869 is not set +# default: +# CONFIG_FATFS_CODEPAGE_932 is not set +# default: +# CONFIG_FATFS_CODEPAGE_936 is not set +# default: +# CONFIG_FATFS_CODEPAGE_949 is not set +# default: +# CONFIG_FATFS_CODEPAGE_950 is not set +# default: +CONFIG_FATFS_CODEPAGE=437 +# default: +CONFIG_FATFS_MAX_LFN=255 +# default: +CONFIG_FATFS_API_ENCODING_ANSI_OEM=y +# default: +# CONFIG_FATFS_API_ENCODING_UTF_8 is not set +# default: +CONFIG_FATFS_FS_LOCK=0 +# default: +CONFIG_FATFS_TIMEOUT_MS=10000 +# default: +CONFIG_FATFS_PER_FILE_CACHE=y +# default: +# CONFIG_FATFS_USE_FASTSEEK is not set +# default: +CONFIG_FATFS_USE_STRFUNC_NONE=y +# default: +# CONFIG_FATFS_USE_STRFUNC_WITHOUT_CRLF_CONV is not set +# default: +# CONFIG_FATFS_USE_STRFUNC_WITH_CRLF_CONV is not set +# default: +CONFIG_FATFS_VFS_FSTAT_BLKSIZE=0 +# default: +# CONFIG_FATFS_IMMEDIATE_FSYNC is not set +# default: +# CONFIG_FATFS_USE_LABEL is not set +# default: +CONFIG_FATFS_LINK_LOCK=y +# default: +CONFIG_FATFS_USE_DYN_BUFFERS=y + +# +# File system free space calculation behavior +# +# default: +CONFIG_FATFS_DONT_TRUST_FREE_CLUSTER_CNT=0 +# default: +CONFIG_FATFS_DONT_TRUST_LAST_ALLOC=0 +# end of File system free space calculation behavior +# end of FAT Filesystem support + +# +# FreeRTOS +# + +# +# Kernel +# +# default: +# CONFIG_FREERTOS_SMP is not set +# default: +# CONFIG_FREERTOS_UNICORE is not set +# default: +CONFIG_FREERTOS_HZ=100 +# default: +# CONFIG_FREERTOS_CHECK_STACKOVERFLOW_NONE is not set +# default: +# CONFIG_FREERTOS_CHECK_STACKOVERFLOW_PTRVAL is not set +# default: +CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY=y +# default: +CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS=1 +# default: +CONFIG_FREERTOS_IDLE_TASK_STACKSIZE=1536 +# default: +# CONFIG_FREERTOS_USE_IDLE_HOOK is not set +# default: +# CONFIG_FREERTOS_USE_TICK_HOOK is not set +# default: +CONFIG_FREERTOS_MAX_TASK_NAME_LEN=16 +# default: +# CONFIG_FREERTOS_ENABLE_BACKWARD_COMPATIBILITY is not set +# default: +CONFIG_FREERTOS_USE_TIMERS=y +# default: +CONFIG_FREERTOS_TIMER_SERVICE_TASK_NAME="Tmr Svc" +# default: +# CONFIG_FREERTOS_TIMER_TASK_AFFINITY_CPU0 is not set +# default: +# CONFIG_FREERTOS_TIMER_TASK_AFFINITY_CPU1 is not set +# default: +CONFIG_FREERTOS_TIMER_TASK_NO_AFFINITY=y +# default: +CONFIG_FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY=0x7FFFFFFF +# default: +CONFIG_FREERTOS_TIMER_TASK_PRIORITY=1 +# default: +CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH=2048 +# default: +CONFIG_FREERTOS_TIMER_QUEUE_LENGTH=10 +# default: +CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE=0 +# default: +CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES=1 +# default: +# CONFIG_FREERTOS_USE_TRACE_FACILITY is not set +# default: +# CONFIG_FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES is not set +# default: +# CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS is not set +# default: +# CONFIG_FREERTOS_USE_APPLICATION_TASK_TAG is not set +# end of Kernel + +# +# Port +# +# default: +CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER=y +# default: +# CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK is not set +# default: +CONFIG_FREERTOS_TLSP_DELETION_CALLBACKS=y +# default: +# CONFIG_FREERTOS_TASK_PRE_DELETION_HOOK is not set +# default: +CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER=y +# default: +CONFIG_FREERTOS_ISR_STACKSIZE=1536 +# default: +CONFIG_FREERTOS_INTERRUPT_BACKTRACE=y +# default: +# CONFIG_FREERTOS_FPU_IN_ISR is not set +# default: +CONFIG_FREERTOS_TICK_SUPPORT_CORETIMER=y +# default: +CONFIG_FREERTOS_CORETIMER_0=y +# default: +# CONFIG_FREERTOS_CORETIMER_1 is not set +# default: +CONFIG_FREERTOS_SYSTICK_USES_CCOUNT=y +# default: +# CONFIG_FREERTOS_IN_IRAM is not set +# default: +# CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE is not set +# end of Port + +# +# Extra +# +# end of Extra + +# default: +CONFIG_FREERTOS_PORT=y +# default: +CONFIG_FREERTOS_NO_AFFINITY=0x7FFFFFFF +# default: +CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION=y +# default: +CONFIG_FREERTOS_DEBUG_OCDAWARE=y +# default: +CONFIG_FREERTOS_NUMBER_OF_CORES=2 +# end of FreeRTOS + +# +# Hardware Abstraction Layer (HAL) and Low Level (LL) +# +# default: +CONFIG_HAL_ASSERTION_EQUALS_SYSTEM=y +# default: +# CONFIG_HAL_ASSERTION_DISABLE is not set +# default: +# CONFIG_HAL_ASSERTION_SILENT is not set +# default: +# CONFIG_HAL_ASSERTION_ENABLE is not set +# default: +CONFIG_HAL_DEFAULT_ASSERTION_LEVEL=2 +# default: +CONFIG_HAL_GPIO_USE_ROM_IMPL=y +# end of Hardware Abstraction Layer (HAL) and Low Level (LL) + +# +# Heap memory debugging +# +# default: +CONFIG_HEAP_HAS_EXEC_HEAP=y +# default: +CONFIG_HEAP_POISONING_DISABLED=y +# default: +# CONFIG_HEAP_POISONING_LIGHT is not set +# default: +# CONFIG_HEAP_POISONING_COMPREHENSIVE is not set +# default: +CONFIG_HEAP_TRACING_OFF=y +# default: +# CONFIG_HEAP_TRACING_STANDALONE is not set +# default: +# CONFIG_HEAP_TRACING_TOHOST is not set +# default: +# CONFIG_HEAP_USE_HOOKS is not set +# default: +# CONFIG_HEAP_TASK_TRACKING is not set +# default: +# CONFIG_HEAP_ABORT_WHEN_ALLOCATION_FAILS is not set +# default: +# CONFIG_HEAP_PLACE_FUNCTION_INTO_FLASH is not set +# end of Heap memory debugging + +# +# Log +# +# default: +CONFIG_LOG_VERSION_1=y +# default: +# CONFIG_LOG_VERSION_2 is not set +# default: +CONFIG_LOG_VERSION=1 + +# +# Log Level +# +# default: +# CONFIG_LOG_DEFAULT_LEVEL_NONE is not set +# default: +# CONFIG_LOG_DEFAULT_LEVEL_ERROR is not set +# default: +# CONFIG_LOG_DEFAULT_LEVEL_WARN is not set +# default: +CONFIG_LOG_DEFAULT_LEVEL_INFO=y +# default: +# CONFIG_LOG_DEFAULT_LEVEL_DEBUG is not set +# default: +# CONFIG_LOG_DEFAULT_LEVEL_VERBOSE is not set +# default: +CONFIG_LOG_DEFAULT_LEVEL=3 +# default: +CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT=y +# default: +# CONFIG_LOG_MAXIMUM_LEVEL_DEBUG is not set +# default: +# CONFIG_LOG_MAXIMUM_LEVEL_VERBOSE is not set +# default: +CONFIG_LOG_MAXIMUM_LEVEL=3 + +# +# Level Settings +# +# default: +# CONFIG_LOG_MASTER_LEVEL is not set +# default: +CONFIG_LOG_DYNAMIC_LEVEL_CONTROL=y +# default: +# CONFIG_LOG_TAG_LEVEL_IMPL_NONE is not set +# default: +# CONFIG_LOG_TAG_LEVEL_IMPL_LINKED_LIST is not set +# default: +CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST=y +# default: +# CONFIG_LOG_TAG_LEVEL_CACHE_ARRAY is not set +# default: +CONFIG_LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP=y +# default: +CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_SIZE=31 +# end of Level Settings +# end of Log Level + +# +# Format +# +# default: +# CONFIG_LOG_COLORS is not set +# default: +CONFIG_LOG_TIMESTAMP_SOURCE_RTOS=y +# default: +# CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM is not set +# end of Format + +# +# Settings +# +# default: +CONFIG_LOG_MODE_TEXT_EN=y +# default: +CONFIG_LOG_MODE_TEXT=y +# end of Settings + +# default: +CONFIG_LOG_IN_IRAM=y +# end of Log + +# +# LWIP +# +# default: +CONFIG_LWIP_ENABLE=y +# default: +CONFIG_LWIP_LOCAL_HOSTNAME="espressif" +# default: +CONFIG_LWIP_TCPIP_TASK_PRIO=18 +# default: +# CONFIG_LWIP_TCPIP_CORE_LOCKING is not set +# default: +# CONFIG_LWIP_CHECK_THREAD_SAFETY is not set +# default: +CONFIG_LWIP_DNS_SUPPORT_MDNS_QUERIES=y +# default: +# CONFIG_LWIP_L2_TO_L3_COPY is not set +# default: +# CONFIG_LWIP_IRAM_OPTIMIZATION is not set +# default: +# CONFIG_LWIP_EXTRA_IRAM_OPTIMIZATION is not set +# default: +CONFIG_LWIP_TIMERS_ONDEMAND=y +# default: +CONFIG_LWIP_ND6=y +# default: +# CONFIG_LWIP_FORCE_ROUTER_FORWARDING is not set +# default: +CONFIG_LWIP_MAX_SOCKETS=10 +# default: +# CONFIG_LWIP_USE_ONLY_LWIP_SELECT is not set +# default: +# CONFIG_LWIP_SO_LINGER is not set +# default: +CONFIG_LWIP_SO_REUSE=y +# default: +CONFIG_LWIP_SO_REUSE_RXTOALL=y +# default: +# CONFIG_LWIP_SO_RCVBUF is not set +# default: +# CONFIG_LWIP_NETBUF_RECVINFO is not set +# default: +CONFIG_LWIP_IP_DEFAULT_TTL=64 +# default: +CONFIG_LWIP_IP4_FRAG=y +# default: +CONFIG_LWIP_IP6_FRAG=y +# default: +# CONFIG_LWIP_IP4_REASSEMBLY is not set +# default: +# CONFIG_LWIP_IP6_REASSEMBLY is not set +# default: +CONFIG_LWIP_IP_REASS_MAX_PBUFS=10 +# default: +CONFIG_LWIP_IPV6_DUP_DETECT_ATTEMPTS=1 +# default: +# CONFIG_LWIP_IP_FORWARD is not set +# default: +# CONFIG_LWIP_STATS is not set +# default: +CONFIG_LWIP_ESP_GRATUITOUS_ARP=y +# default: +CONFIG_LWIP_GARP_TMR_INTERVAL=60 +# default: +CONFIG_LWIP_ESP_MLDV6_REPORT=y +# default: +CONFIG_LWIP_MLDV6_TMR_INTERVAL=40 +# default: +CONFIG_LWIP_TCPIP_RECVMBOX_SIZE=32 +# default: +CONFIG_LWIP_DHCP_DOES_ARP_CHECK=y +# default: +# CONFIG_LWIP_DHCP_DOES_ACD_CHECK is not set +# default: +# CONFIG_LWIP_DHCP_DOES_NOT_CHECK_OFFERED_IP is not set +# default: +# CONFIG_LWIP_DHCP_DISABLE_CLIENT_ID is not set +# default: +CONFIG_LWIP_DHCP_DISABLE_VENDOR_CLASS_ID=y +# default: +# CONFIG_LWIP_DHCP_RESTORE_LAST_IP is not set +# default: +CONFIG_LWIP_DHCP_OPTIONS_LEN=69 +# default: +CONFIG_LWIP_NUM_NETIF_CLIENT_DATA=0 +# default: +CONFIG_LWIP_DHCP_COARSE_TIMER_SECS=1 + +# +# DHCP server +# +# default: +CONFIG_LWIP_DHCPS=y +# default: +CONFIG_LWIP_DHCPS_REPORT_CLIENT_HOSTNAME=y +# default: +CONFIG_LWIP_DHCPS_LEASE_UNIT=60 +# default: +CONFIG_LWIP_DHCPS_MAX_STATION_NUM=8 +# default: +CONFIG_LWIP_DHCPS_MAX_HOSTNAME_LEN=64 +# default: +CONFIG_LWIP_DHCPS_STATIC_ENTRIES=y +# end of DHCP server + +# default: +# CONFIG_LWIP_AUTOIP is not set +# default: +CONFIG_LWIP_IPV4=y +# default: +CONFIG_LWIP_IPV6=y +# default: +# CONFIG_LWIP_IPV6_AUTOCONFIG is not set +# default: +CONFIG_LWIP_IPV6_NUM_ADDRESSES=3 +# default: +# CONFIG_LWIP_IPV6_FORWARD is not set +# default: +# CONFIG_LWIP_NETIF_STATUS_CALLBACK is not set +# default: +# CONFIG_LWIP_NETIF_LINK_CALLBACK is not set +# default: +CONFIG_LWIP_NETIF_LOOPBACK=y +# default: +CONFIG_LWIP_LOOPBACK_MAX_PBUFS=8 + +# +# TCP +# +# default: +CONFIG_LWIP_MAX_ACTIVE_TCP=16 +# default: +CONFIG_LWIP_MAX_LISTENING_TCP=16 +# default: +CONFIG_LWIP_TCP_HIGH_SPEED_RETRANSMISSION=y +# default: +CONFIG_LWIP_TCP_MAXRTX=12 +# default: +CONFIG_LWIP_TCP_SYNMAXRTX=12 +# default: +CONFIG_LWIP_TCP_MSS=1440 +# default: +CONFIG_LWIP_TCP_TMR_INTERVAL=250 +# default: +CONFIG_LWIP_TCP_MSL=60000 +# default: +CONFIG_LWIP_TCP_FIN_WAIT_TIMEOUT=20000 +# default: +CONFIG_LWIP_TCP_SND_BUF_DEFAULT=5760 +# default: +CONFIG_LWIP_TCP_WND_DEFAULT=5760 +# default: +CONFIG_LWIP_TCP_RECVMBOX_SIZE=6 +# default: +CONFIG_LWIP_TCP_ACCEPTMBOX_SIZE=6 +# default: +CONFIG_LWIP_TCP_QUEUE_OOSEQ=y +# default: +CONFIG_LWIP_TCP_OOSEQ_TIMEOUT=6 +# default: +CONFIG_LWIP_TCP_OOSEQ_MAX_PBUFS=4 +# default: +# CONFIG_LWIP_TCP_SACK_OUT is not set +# default: +CONFIG_LWIP_TCP_OVERSIZE_MSS=y +# default: +# CONFIG_LWIP_TCP_OVERSIZE_QUARTER_MSS is not set +# default: +# CONFIG_LWIP_TCP_OVERSIZE_DISABLE is not set +# default: +CONFIG_LWIP_TCP_RTO_TIME=1500 +# end of TCP + +# +# UDP +# +# default: +CONFIG_LWIP_MAX_UDP_PCBS=16 +# default: +CONFIG_LWIP_UDP_RECVMBOX_SIZE=6 +# end of UDP + +# +# Checksums +# +# default: +# CONFIG_LWIP_CHECKSUM_CHECK_IP is not set +# default: +# CONFIG_LWIP_CHECKSUM_CHECK_UDP is not set +# default: +CONFIG_LWIP_CHECKSUM_CHECK_ICMP=y +# end of Checksums + +# default: +CONFIG_LWIP_TCPIP_TASK_STACK_SIZE=3072 +# default: +CONFIG_LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY=y +# default: +# CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU0 is not set +# default: +# CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU1 is not set +# default: +CONFIG_LWIP_TCPIP_TASK_AFFINITY=0x7FFFFFFF +# default: +CONFIG_LWIP_IPV6_MEMP_NUM_ND6_QUEUE=3 +# default: +CONFIG_LWIP_IPV6_ND6_NUM_NEIGHBORS=5 +# default: +CONFIG_LWIP_IPV6_ND6_NUM_PREFIXES=5 +# default: +CONFIG_LWIP_IPV6_ND6_NUM_ROUTERS=3 +# default: +CONFIG_LWIP_IPV6_ND6_NUM_DESTINATIONS=10 +# default: +# CONFIG_LWIP_IPV6_ND6_ROUTE_INFO_OPTION_SUPPORT is not set +# default: +# CONFIG_LWIP_PPP_SUPPORT is not set +# default: +# CONFIG_LWIP_SLIP_SUPPORT is not set + +# +# ICMP +# +# default: +CONFIG_LWIP_ICMP=y +# default: +# CONFIG_LWIP_MULTICAST_PING is not set +# default: +# CONFIG_LWIP_BROADCAST_PING is not set +# end of ICMP + +# +# LWIP RAW API +# +# default: +CONFIG_LWIP_MAX_RAW_PCBS=16 +# end of LWIP RAW API + +# +# SNTP +# +# default: +CONFIG_LWIP_SNTP_MAX_SERVERS=1 +# default: +# CONFIG_LWIP_DHCP_GET_NTP_SRV is not set +# default: +CONFIG_LWIP_SNTP_UPDATE_DELAY=3600000 +# default: +CONFIG_LWIP_SNTP_STARTUP_DELAY=y +# default: +CONFIG_LWIP_SNTP_MAXIMUM_STARTUP_DELAY=5000 +# end of SNTP + +# +# DNS +# +# default: +CONFIG_LWIP_DNS_MAX_HOST_IP=1 +# default: +CONFIG_LWIP_DNS_MAX_SERVERS=3 +# default: +# CONFIG_LWIP_FALLBACK_DNS_SERVER_SUPPORT is not set +# default: +# CONFIG_LWIP_DNS_SETSERVER_WITH_NETIF is not set +# default: +# CONFIG_LWIP_USE_ESP_GETADDRINFO is not set +# end of DNS + +# default: +CONFIG_LWIP_BRIDGEIF_MAX_PORTS=7 +# default: +CONFIG_LWIP_ESP_LWIP_ASSERT=y + +# +# Hooks +# +# default: +# CONFIG_LWIP_HOOK_TCP_ISN_NONE is not set +# default: +CONFIG_LWIP_HOOK_TCP_ISN_DEFAULT=y +# default: +# CONFIG_LWIP_HOOK_TCP_ISN_CUSTOM is not set +# default: +CONFIG_LWIP_HOOK_IP6_ROUTE_NONE=y +# default: +# CONFIG_LWIP_HOOK_IP6_ROUTE_DEFAULT is not set +# default: +# CONFIG_LWIP_HOOK_IP6_ROUTE_CUSTOM is not set +# default: +CONFIG_LWIP_HOOK_ND6_GET_GW_NONE=y +# default: +# CONFIG_LWIP_HOOK_ND6_GET_GW_DEFAULT is not set +# default: +# CONFIG_LWIP_HOOK_ND6_GET_GW_CUSTOM is not set +# default: +CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_NONE=y +# default: +# CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_DEFAULT is not set +# default: +# CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_CUSTOM is not set +# default: +CONFIG_LWIP_HOOK_DHCP_EXTRA_OPTION_NONE=y +# default: +# CONFIG_LWIP_HOOK_DHCP_EXTRA_OPTION_DEFAULT is not set +# default: +# CONFIG_LWIP_HOOK_DHCP_EXTRA_OPTION_CUSTOM is not set +# default: +CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_NONE=y +# default: +# CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_DEFAULT is not set +# default: +# CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_CUSTOM is not set +# default: +CONFIG_LWIP_HOOK_DNS_EXT_RESOLVE_NONE=y +# default: +# CONFIG_LWIP_HOOK_DNS_EXT_RESOLVE_CUSTOM is not set +# default: +# CONFIG_LWIP_HOOK_IP6_INPUT_NONE is not set +# default: +CONFIG_LWIP_HOOK_IP6_INPUT_DEFAULT=y +# default: +# CONFIG_LWIP_HOOK_IP6_INPUT_CUSTOM is not set +# end of Hooks + +# default: +# CONFIG_LWIP_DEBUG is not set +# end of LWIP + +# +# mbedTLS +# + +# +# Core Configuration +# +# default: +CONFIG_MBEDTLS_VER_4_X_SUPPORT=y +# default: +# CONFIG_MBEDTLS_COMPILER_OPTIMIZATION_NONE is not set +# default: +CONFIG_MBEDTLS_COMPILER_OPTIMIZATION_SIZE=y +# default: +# CONFIG_MBEDTLS_COMPILER_OPTIMIZATION_PERF is not set +# default: +CONFIG_MBEDTLS_FS_IO=y +# default: +CONFIG_MBEDTLS_THREADING_C=y +# default: +# CONFIG_MBEDTLS_THREADING_ALT is not set +# default: +CONFIG_MBEDTLS_THREADING_PTHREAD=y +# default: +CONFIG_MBEDTLS_ERROR_STRINGS=y +# default: +CONFIG_MBEDTLS_VERSION_C=y +# default: +CONFIG_MBEDTLS_HAVE_TIME=y +# default: +# CONFIG_MBEDTLS_PLATFORM_TIME_ALT is not set +# default: +# CONFIG_MBEDTLS_HAVE_TIME_DATE is not set +# default: +CONFIG_MBEDTLS_INTERNAL_MEM_ALLOC=y +# default: +# CONFIG_MBEDTLS_DEFAULT_MEM_ALLOC is not set +# default: +# CONFIG_MBEDTLS_CUSTOM_MEM_ALLOC is not set +# default: +CONFIG_MBEDTLS_ASYMMETRIC_CONTENT_LEN=y +# default: +CONFIG_MBEDTLS_SSL_IN_CONTENT_LEN=16384 +# default: +CONFIG_MBEDTLS_SSL_OUT_CONTENT_LEN=4096 +# default: +# CONFIG_MBEDTLS_DYNAMIC_BUFFER is not set +# default: +# CONFIG_MBEDTLS_VERSION_FEATURES is not set +# default: +# CONFIG_MBEDTLS_DEBUG is not set +# default: +CONFIG_MBEDTLS_SELF_TEST=y +# end of Core Configuration + +# +# Certificates +# +# default: +CONFIG_MBEDTLS_X509_USE_C=y +# default: +CONFIG_MBEDTLS_PEM_PARSE_C=y +# default: +CONFIG_MBEDTLS_PEM_WRITE_C=y +# default: +CONFIG_MBEDTLS_PK_C=y +# default: +CONFIG_MBEDTLS_PK_PARSE_C=y +# default: +CONFIG_MBEDTLS_PK_WRITE_C=y +# default: +# CONFIG_MBEDTLS_X509_REMOVE_INFO is not set +# default: +CONFIG_MBEDTLS_X509_CRL_PARSE_C=y +# default: +CONFIG_MBEDTLS_X509_CRT_PARSE_C=y +# default: +CONFIG_MBEDTLS_X509_CSR_PARSE_C=y +# default: +# CONFIG_MBEDTLS_X509_CREATE_C is not set +# default: +CONFIG_MBEDTLS_X509_RSASSA_PSS_SUPPORT=y +# default: +# CONFIG_MBEDTLS_X509_TRUSTED_CERT_CALLBACK is not set +# default: +CONFIG_MBEDTLS_ASN1_PARSE_C=y +# default: +CONFIG_MBEDTLS_ASN1_WRITE_C=y +# default: +CONFIG_MBEDTLS_CERTIFICATE_BUNDLE=y + +# +# Certificate Bundle Configuration +# +# default: +CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL=y +# default: +# CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN is not set +# default: +# CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE is not set +# default: +# CONFIG_MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE is not set +# default: +# CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEPRECATED_LIST is not set +# default: +CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS=200 +# end of Certificate Bundle Configuration + +# default: +# CONFIG_MBEDTLS_ALLOW_WEAK_CERTIFICATE_VERIFICATION is not set +# default: +# CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_CROSS_SIGNED_VERIFY is not set +# end of Certificates + +# default: +CONFIG_MBEDTLS_TLS_ENABLED=y + +# +# TLS Protocol Configuration +# +# default: +CONFIG_MBEDTLS_SSL_PROTO_TLS1_2=y +# default: +# CONFIG_MBEDTLS_SSL_PROTO_TLS1_3 is not set +# default: +# CONFIG_MBEDTLS_SSL_PROTO_GMTSSL1_1 is not set +# default: +CONFIG_MBEDTLS_TLS_SERVER=y +# default: +CONFIG_MBEDTLS_TLS_CLIENT=y +# default: +CONFIG_MBEDTLS_TLS_SERVER_AND_CLIENT=y +# default: +# CONFIG_MBEDTLS_TLS_SERVER_ONLY is not set +# default: +# CONFIG_MBEDTLS_TLS_CLIENT_ONLY is not set +# default: +# CONFIG_MBEDTLS_TLS_DISABLED is not set +# default: +# CONFIG_MBEDTLS_SSL_KEEP_PEER_CERTIFICATE is not set +# default: +# CONFIG_MBEDTLS_SSL_CONTEXT_SERIALIZATION is not set +# default: +CONFIG_MBEDTLS_SSL_CACHE_C=y +# default: +CONFIG_MBEDTLS_SSL_ALL_ALERT_MESSAGES=y + +# +# TLS Key Exchange Configuration +# +# default: +# CONFIG_MBEDTLS_PSK_MODES is not set +# default: +CONFIG_MBEDTLS_KEY_EXCHANGE_RSA=y +# default: +CONFIG_MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE=y +# default: +CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_RSA=y +# default: +CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA=y +# end of TLS Key Exchange Configuration + +# default: +CONFIG_MBEDTLS_SSL_SERVER_NAME_INDICATION=y +# default: +CONFIG_MBEDTLS_SSL_ALPN=y +# default: +CONFIG_MBEDTLS_SSL_MAX_FRAGMENT_LENGTH=y +# default: +# CONFIG_MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH is not set +# default: +CONFIG_MBEDTLS_SSL_RENEGOTIATION=y +# default: +CONFIG_MBEDTLS_CLIENT_SSL_SESSION_TICKETS=y +# default: +CONFIG_MBEDTLS_SERVER_SSL_SESSION_TICKETS=y +# default: +# CONFIG_MBEDTLS_SSL_KEYING_MATERIAL_EXPORT is not set +# end of TLS Protocol Configuration + +# default: +# CONFIG_MBEDTLS_SSL_PROTO_DTLS is not set + +# +# Symmetric Ciphers +# +# default: +CONFIG_MBEDTLS_AES_C=y +# default: +# CONFIG_MBEDTLS_CAMELLIA_C is not set +# default: +# CONFIG_MBEDTLS_ARIA_C is not set +# default: +# CONFIG_MBEDTLS_DES_C is not set +# default: +CONFIG_MBEDTLS_CCM_C=y +# default: +CONFIG_MBEDTLS_CIPHER_MODE_CBC=y +# default: +CONFIG_MBEDTLS_CIPHER_MODE_CFB=y +# default: +CONFIG_MBEDTLS_CIPHER_MODE_CTR=y +# default: +CONFIG_MBEDTLS_CIPHER_MODE_OFB=y +# default: +CONFIG_MBEDTLS_CIPHER_MODE_XTS=y +# default: +CONFIG_MBEDTLS_GCM_C=y +# default: +# CONFIG_MBEDTLS_NIST_KW_C is not set +# default: +CONFIG_MBEDTLS_AES_ROM_TABLES=y +# default: +# CONFIG_MBEDTLS_AES_FEWER_TABLES is not set +# default: +# CONFIG_MBEDTLS_AES_ONLY_128_BIT_KEY_LENGTH is not set +# default: +CONFIG_MBEDTLS_CMAC_C=y +# end of Symmetric Ciphers + +# +# Asymmetric Ciphers +# +# default: +CONFIG_MBEDTLS_BIGNUM_C=y +# default: +CONFIG_MBEDTLS_RSA_C=y +# default: +CONFIG_MBEDTLS_ECP_C=y + +# +# Supported Curves +# +# default: +CONFIG_MBEDTLS_ECP_DP_SECP256R1_ENABLED=y +# default: +CONFIG_MBEDTLS_ECP_DP_SECP384R1_ENABLED=y +# default: +CONFIG_MBEDTLS_ECP_DP_SECP521R1_ENABLED=y +# default: +CONFIG_MBEDTLS_ECP_DP_SECP256K1_ENABLED=y +# default: +CONFIG_MBEDTLS_ECP_DP_BP256R1_ENABLED=y +# default: +CONFIG_MBEDTLS_ECP_DP_BP384R1_ENABLED=y +# default: +CONFIG_MBEDTLS_ECP_DP_BP512R1_ENABLED=y +# default: +CONFIG_MBEDTLS_ECP_DP_CURVE25519_ENABLED=y +# end of Supported Curves + +# +# Elliptic Curve Ciphers Configuration +# +# default: +CONFIG_MBEDTLS_ECP_NIST_OPTIM=y +# default: +# CONFIG_MBEDTLS_ECP_FIXED_POINT_OPTIM is not set +# default: +# CONFIG_MBEDTLS_DHM_C is not set +# default: +CONFIG_MBEDTLS_ECDH_C=y +# default: +# CONFIG_MBEDTLS_ECJPAKE_C is not set +# default: +CONFIG_MBEDTLS_ECDSA_C=y +# default: +CONFIG_MBEDTLS_PK_PARSE_EC_EXTENDED=y +# default: +CONFIG_MBEDTLS_PK_PARSE_EC_COMPRESSED=y +# default: +CONFIG_MBEDTLS_ECDSA_DETERMINISTIC=y +# default: +# CONFIG_MBEDTLS_ECP_RESTARTABLE is not set +# end of Elliptic Curve Ciphers Configuration +# end of Asymmetric Ciphers + +# +# Hash functions +# +# default: +# CONFIG_MBEDTLS_RIPEMD160_C is not set +# default: +CONFIG_MBEDTLS_MD_C=y +# default: +CONFIG_MBEDTLS_MD5_C=y +# default: +CONFIG_MBEDTLS_SHA1_C=y +# default: +# CONFIG_MBEDTLS_SHA224_C is not set +# default: +CONFIG_MBEDTLS_SHA256_C=y +# default: +CONFIG_MBEDTLS_SHA384_C=y +# default: +CONFIG_MBEDTLS_SHA512_C=y +# default: +# CONFIG_MBEDTLS_SHA3_C is not set +# default: +CONFIG_MBEDTLS_ROM_MD5=y +# end of Hash functions + +# +# Hardware Acceleration +# +# default: +CONFIG_MBEDTLS_HARDWARE_SHA=y +# default: +CONFIG_MBEDTLS_HARDWARE_MPI=y +# default: +CONFIG_MBEDTLS_LARGE_KEY_SOFTWARE_MPI=y +# default: +CONFIG_MBEDTLS_HARDWARE_AES=y +# default: +# CONFIG_MBEDTLS_AES_SOFT_FALLBACK is not set +# default: +CONFIG_MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER=y +# default: +# CONFIG_MBEDTLS_ATCA_HW_ECDSA_SIGN is not set +# default: +# CONFIG_MBEDTLS_ATCA_HW_ECDSA_VERIFY is not set +# end of Hardware Acceleration + +# +# Entropy and Random Number Generation +# +# default: +# CONFIG_MBEDTLS_ENTROPY_FORCE_SHA256 is not set +# default: +CONFIG_MBEDTLS_CTR_DRBG_C=y +# default: +CONFIG_MBEDTLS_HMAC_DRBG_C=y +# end of Entropy and Random Number Generation + +# +# Encoding/Decoding +# +# default: +CONFIG_MBEDTLS_BASE64_C=y +# default: +CONFIG_MBEDTLS_PKCS5_C=y +# default: +CONFIG_MBEDTLS_PKCS7_C=y +# default: +CONFIG_MBEDTLS_PKCS1_V15=y +# default: +CONFIG_MBEDTLS_PKCS1_V21=y +# end of Encoding/Decoding + +# +# Stream Cipher +# +# default: +# CONFIG_MBEDTLS_CHACHA20_C is not set +# end of Stream Cipher +# end of mbedTLS + +# +# NVS +# +# default: +# CONFIG_NVS_ASSERT_ERROR_CHECK is not set +# default: +# CONFIG_NVS_LEGACY_DUP_KEYS_COMPATIBILITY is not set +# default: +# CONFIG_NVS_BDL_STACK is not set +# end of NVS + +# +# OpenThread +# +# default: +# CONFIG_OPENTHREAD_ENABLED is not set + +# +# OpenThread Spinel +# +# default: +# CONFIG_OPENTHREAD_SPINEL_ONLY is not set +# end of OpenThread Spinel + +# default: +# CONFIG_OPENTHREAD_DEBUG is not set +# end of OpenThread + +# +# Protocomm +# +# default: +# CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_0 is not set +# default: +# CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_1 is not set +# default: +CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_2=y +# default: +CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_PATCH_VERSION=y +# end of Protocomm + +# +# PThreads +# +# default: +CONFIG_PTHREAD_TASK_PRIO_DEFAULT=5 +# default: +CONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT=3072 +# default: +CONFIG_PTHREAD_STACK_MIN=768 +# default: +CONFIG_PTHREAD_DEFAULT_CORE_NO_AFFINITY=y +# default: +# CONFIG_PTHREAD_DEFAULT_CORE_0 is not set +# default: +# CONFIG_PTHREAD_DEFAULT_CORE_1 is not set +# default: +CONFIG_PTHREAD_TASK_CORE_DEFAULT=-1 +# default: +CONFIG_PTHREAD_TASK_NAME_DEFAULT="pthread" +# end of PThreads + +# +# SD Protocol Layer Configuration +# +# default: +CONFIG_SD_ENABLE_SDIO_SUPPORT=y +# end of SD Protocol Layer Configuration + +# +# MMU Config +# +# default: +CONFIG_MMU_PAGE_SIZE_64KB=y +# default: +CONFIG_MMU_PAGE_MODE="64KB" +# default: +CONFIG_MMU_PAGE_SIZE=0x10000 +# end of MMU Config + +# +# Main Flash configuration +# + +# +# SPI Flash behavior when brownout +# +# default: +CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC=y +# default: +CONFIG_SPI_FLASH_BROWNOUT_RESET=y +# end of SPI Flash behavior when brownout + +# +# Optional and Experimental Features (READ DOCS FIRST) +# + +# +# Features here require specific hardware (READ DOCS FIRST!) +# +# default: +CONFIG_SPI_FLASH_SUSPEND_TSUS_VAL_US=50 +# default: +# CONFIG_SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND is not set +# default: +# CONFIG_SPI_FLASH_FORCE_ENABLE_C6_H2_SUSPEND is not set +# default: +CONFIG_SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM=y +# end of Optional and Experimental Features (READ DOCS FIRST) +# end of Main Flash configuration + +# +# SPI Flash driver +# +# default: +# CONFIG_SPI_FLASH_VERIFY_WRITE is not set +# default: +# CONFIG_SPI_FLASH_ENABLE_COUNTERS is not set +# default: +CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS=y +# default: +# CONFIG_SPI_FLASH_DANGEROUS_WRITE_FAILS is not set +# default: +# CONFIG_SPI_FLASH_DANGEROUS_WRITE_ALLOWED is not set +# default: +# CONFIG_SPI_FLASH_SHARE_SPI1_BUS is not set +# default: +# CONFIG_SPI_FLASH_BYPASS_BLOCK_ERASE is not set +# default: +CONFIG_SPI_FLASH_YIELD_DURING_ERASE=y +# default: +CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS=20 +# default: +CONFIG_SPI_FLASH_ERASE_YIELD_TICKS=1 +# default: +CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE=8192 +# default: +# CONFIG_SPI_FLASH_SIZE_OVERRIDE is not set +# default: +# CONFIG_SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED is not set +# default: +# CONFIG_SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST is not set + +# +# Auto-detect flash chips +# +# default: +CONFIG_SPI_FLASH_VENDOR_XMC_SUPPORT_ENABLED=y +# default: +CONFIG_SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED=y +# default: +CONFIG_SPI_FLASH_VENDOR_ISSI_SUPPORT_ENABLED=y +# default: +CONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORT_ENABLED=y +# default: +CONFIG_SPI_FLASH_VENDOR_WINBOND_SUPPORT_ENABLED=y +# default: +CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP=y +# default: +CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP=y +# default: +CONFIG_SPI_FLASH_SUPPORT_GD_CHIP=y +# default: +CONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP=y +# default: +# CONFIG_SPI_FLASH_SUPPORT_BOYA_CHIP is not set +# default: +# CONFIG_SPI_FLASH_SUPPORT_TH_CHIP is not set +# end of Auto-detect flash chips + +# default: +CONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE=y +# end of SPI Flash driver + +# +# SPIFFS Configuration +# +# default: +CONFIG_SPIFFS_MAX_PARTITIONS=3 + +# +# SPIFFS Cache Configuration +# +# default: +CONFIG_SPIFFS_CACHE=y +# default: +CONFIG_SPIFFS_CACHE_WR=y +# default: +# CONFIG_SPIFFS_CACHE_STATS is not set +# end of SPIFFS Cache Configuration + +# default: +CONFIG_SPIFFS_PAGE_CHECK=y +# default: +CONFIG_SPIFFS_GC_MAX_RUNS=10 +# default: +# CONFIG_SPIFFS_GC_STATS is not set +# default: +CONFIG_SPIFFS_PAGE_SIZE=256 +# default: +CONFIG_SPIFFS_OBJ_NAME_LEN=32 +# default: +# CONFIG_SPIFFS_FOLLOW_SYMLINKS is not set +# default: +CONFIG_SPIFFS_USE_MAGIC=y +# default: +CONFIG_SPIFFS_USE_MAGIC_LENGTH=y +# default: +CONFIG_SPIFFS_META_LENGTH=4 +# default: +CONFIG_SPIFFS_USE_MTIME=y + +# +# Debug Configuration +# +# default: +# CONFIG_SPIFFS_DBG is not set +# default: +# CONFIG_SPIFFS_API_DBG is not set +# default: +# CONFIG_SPIFFS_GC_DBG is not set +# default: +# CONFIG_SPIFFS_CACHE_DBG is not set +# default: +# CONFIG_SPIFFS_CHECK_DBG is not set +# default: +# CONFIG_SPIFFS_TEST_VISUALISATION is not set +# end of Debug Configuration +# end of SPIFFS Configuration + +# +# TCP Transport +# + +# +# Websocket +# +# default: +CONFIG_WS_TRANSPORT=y +# default: +CONFIG_WS_BUFFER_SIZE=1024 +# default: +# CONFIG_WS_DYNAMIC_BUFFER is not set +# end of Websocket +# end of TCP Transport + +# +# Ultra Low Power (ULP) Co-processor +# +# default: +# CONFIG_ULP_COPROC_ENABLED is not set + +# +# ULP Debugging Options +# +# end of ULP Debugging Options +# end of Ultra Low Power (ULP) Co-processor + +# +# Unity unit testing library +# +# default: +CONFIG_UNITY_ENABLE_FLOAT=y +# default: +CONFIG_UNITY_ENABLE_DOUBLE=y +# default: +# CONFIG_UNITY_ENABLE_64BIT is not set +# default: +# CONFIG_UNITY_ENABLE_COLOR is not set +# default: +CONFIG_UNITY_ENABLE_IDF_TEST_RUNNER=y +# default: +# CONFIG_UNITY_ENABLE_FIXTURE is not set +# default: +# CONFIG_UNITY_ENABLE_BACKTRACE_ON_FAIL is not set +# end of Unity unit testing library + +# +# Virtual file system +# +# default: +CONFIG_VFS_SUPPORT_IO=y +# default: +CONFIG_VFS_SUPPORT_DIR=y +# default: +CONFIG_VFS_SUPPORT_SELECT=y +# default: +CONFIG_VFS_SUPPRESS_SELECT_DEBUG_OUTPUT=y +# default: +# CONFIG_VFS_SELECT_IN_RAM is not set +# default: +# CONFIG_VFS_SUPPORT_TERMIOS is not set +# default: +CONFIG_VFS_MAX_COUNT=8 + +# +# Host File System I/O (Semihosting) +# +# default: +CONFIG_VFS_SEMIHOSTFS_MAX_MOUNT_POINTS=1 +# end of Host File System I/O (Semihosting) + +# default: +CONFIG_VFS_INITIALIZE_DEV_NULL=y +# end of Virtual file system + +# +# Wear Levelling +# +# default: +# CONFIG_WL_SECTOR_SIZE_512 is not set +# default: +CONFIG_WL_SECTOR_SIZE_4096=y +# default: +CONFIG_WL_SECTOR_SIZE=4096 +# end of Wear Levelling +# end of Component config + +# default: +# CONFIG_IDF_EXPERIMENTAL_FEATURES is not set diff --git a/spiffs/device_1.csv b/spiffs/device_1.csv new file mode 100644 index 0000000..ba4ca08 --- /dev/null +++ b/spiffs/device_1.csv @@ -0,0 +1,19 @@ +type,address,name,data_type,control_address,pics_address,pics_data_type,notes +,,,,,,, +Discrete_Input,140502,Unit_On,bool,0502,,,Unit_On +Coil,0502,Unit_On_Ovr,bool,,,,Unit_On_Ovr +Discrete_Input,140506,Evap_Pump1_Fail,bool,0506,,,Evap_Pump1_Fail +Coil,0506,Evap_Pump1_Fail_Flt,bool,,,,Evap_Pump1_Fail_Flt +Discrete_Input,140507,Evap_Pump2_Fail,bool,0507,,,Evap_Pump2_Fail +Coil,0507,Evap_Pump2_Fail_Flt,bool,,,,Evap_Pump2_Fail_Flt +,,,,,,, +Holding_Register,445101,BMS_On_OFF,uint16,,41001,Integer,BMS_On_OFF +Holding_Register,445103,Cfg_Reg_SetP,uint16,,41003,Integer,Cfg_Reg_SetP +,,,,,,, +Input_Register,349201,BMS_UnitSts,uint16,49201,,,BMS_UnitSts +Holding_Register,49201,BMS_UnitSts_Ovr,uint16,,41005,Integer,BMS_UnitSts_Ovr +Input_Register,349202,W_Reg_UserSetP,uint16,445103,,,W_Reg_UserSetP +Input_Register,349203,UnitInletTempVal,uint16,49203,,,UnitInletTempVal +Holding_Register,49203,UnitInletTempVal_Ovr,uint16,,41007,Integer,UnitInletTempVal_Ovr +Input_Register,349205,UnitOutletTempVal,uint16,49205,,,UnitOutletTempVal +Holding_Register,49205,UnitOutletTempVal_Ovr,uint16,,41009,Integer,UnitOutletTempVal_Ovr \ No newline at end of file diff --git a/spiffs/device_2.csv b/spiffs/device_2.csv new file mode 100644 index 0000000..8cd8db6 --- /dev/null +++ b/spiffs/device_2.csv @@ -0,0 +1,20 @@ +type,address,name,data_type,control_address,pics_address,pics_data_type,notes +,,,,,,, +Discrete_Input,140502,Unit_On,bool,0502,,,Unit_On +Coil,0502,Unit_On_Ovr,bool,,,,Unit_On_Ovr +Discrete_Input,140506,Evap_Pump1_Fail,bool,0506,,,Evap_Pump1_Fail +Coil,0506,Evap_Pump1_Fail_Flt,bool,,,,Evap_Pump1_Fail_Flt +Discrete_Input,140507,Evap_Pump2_Fail,bool,0507,,,Evap_Pump2_Fail +Coil,0507,Evap_Pump2_Fail_Flt,bool,,,,Evap_Pump2_Fail_Flt + +,,,,,,, +Holding_Register,445101,BMS_On_OFF,uint16,,41001,Integer,BMS_On_OFF +Holding_Register,445103,Cfg_Reg_SetP,uint16,,41003,Integer,Cfg_Reg_SetP +,,,,,,, +Input_Register,349201,BMS_UnitSts,uint16,49201,,,BMS_UnitSts +Holding_Register,49201,BMS_UnitSts_Ovr,uint16,,41005,Integer,BMS_UnitSts_Ovr +Input_Register,349202,W_Reg_UserSetP,uint16,445103,,,W_Reg_UserSetP +Input_Register,349203,UnitInletTempVal,uint16,49203,,,UnitInletTempVal +Holding_Register,49203,UnitInletTempVal_Ovr,uint16,,41007,Integer,UnitInletTempVal_Ovr +Input_Register,349205,UnitOutletTempVal,uint16,49205,,,UnitOutletTempVal +Holding_Register,49205,UnitOutletTempVal_Ovr,uint16,,41009,Integer,UnitOutletTempVal_Ovr diff --git a/spiffs/device_3.csv b/spiffs/device_3.csv new file mode 100644 index 0000000..fcc4f5c --- /dev/null +++ b/spiffs/device_3.csv @@ -0,0 +1 @@ +type,address,name,data_type,control_address,pics_address,pics_data_type,notes diff --git a/spiffs/device_config.ini b/spiffs/device_config.ini new file mode 100644 index 0000000..b7a1f5f --- /dev/null +++ b/spiffs/device_config.ini @@ -0,0 +1,29 @@ +[rtu] +baud_rate=9600 +parity=none +stop_bits=1 +uart_num=1 +tx_pin=16 +rx_pin=17 +de_pin=4 + +[modbus] +device_count=3 + +[device 1] +enabled=true +unit_id=1 +name=Device_1 +csv=/spiffs/device_1.csv + +[device 2] +enabled=true +unit_id=2 +name=Device_2 +csv=/spiffs/device_2.csv + +[device 3] +enabled=true +unit_id=3 +name=Device_3 +csv=/spiffs/device_3.csv \ No newline at end of file